Skip to content

Commit d20cd15

Browse files
1 parent 8ea3352 commit d20cd15

File tree

16 files changed

+382
-16
lines changed

16 files changed

+382
-16
lines changed

clients/google-api-services-vmmigration/v1/2.0.0/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file:
2222
<dependency>
2323
<groupId>com.google.apis</groupId>
2424
<artifactId>google-api-services-vmmigration</artifactId>
25-
<version>v1-rev20250904-2.0.0</version>
25+
<version>v1-rev20250911-2.0.0</version>
2626
</dependency>
2727
</dependencies>
2828
</project>
@@ -35,7 +35,7 @@ repositories {
3535
mavenCentral()
3636
}
3737
dependencies {
38-
implementation 'com.google.apis:google-api-services-vmmigration:v1-rev20250904-2.0.0'
38+
implementation 'com.google.apis:google-api-services-vmmigration:v1-rev20250911-2.0.0'
3939
}
4040
```
4141

clients/google-api-services-vmmigration/v1/2.0.0/com/google/api/services/vmmigration/v1/VMMigrationService.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2527,7 +2527,7 @@ public ImageImportJobs imageImportJobs() {
25272527
public class ImageImportJobs {
25282528

25292529
/**
2530-
* Initiates the cancellation of a running clone job.
2530+
* Initiates the cancellation of a running ImageImportJob.
25312531
*
25322532
* Create a request for the method "imageImportJobs.cancel".
25332533
*
@@ -2552,7 +2552,7 @@ public class Cancel extends VMMigrationServiceRequest<com.google.api.services.vm
25522552
java.util.regex.Pattern.compile("^projects/[^/]+/locations/[^/]+/imageImports/[^/]+/imageImportJobs/[^/]+$");
25532553

25542554
/**
2555-
* Initiates the cancellation of a running clone job.
2555+
* Initiates the cancellation of a running ImageImportJob.
25562556
*
25572557
* Create a request for the method "imageImportJobs.cancel".
25582558
*
Lines changed: 93 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,93 @@
1+
/*
2+
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
3+
* in compliance with the License. You may obtain a copy of the License at
4+
*
5+
* http://www.apache.org/licenses/LICENSE-2.0
6+
*
7+
* Unless required by applicable law or agreed to in writing, software distributed under the License
8+
* is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
9+
* or implied. See the License for the specific language governing permissions and limitations under
10+
* the License.
11+
*/
12+
/*
13+
* This code was generated by https://github.com/googleapis/google-api-java-client-services/
14+
* Modify at your own risk.
15+
*/
16+
17+
package com.google.api.services.vmmigration.v1.model;
18+
19+
/**
20+
* AdaptationModifier a modifier to be used for configuration of the OS adaptation process.
21+
*
22+
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
23+
* transmitted over HTTP when working with the VM Migration API. For a detailed explanation see:
24+
* <a href="https://developers.google.com/api-client-library/java/google-http-java-client/json">https://developers.google.com/api-client-library/java/google-http-java-client/json</a>
25+
* </p>
26+
*
27+
* @author Google, Inc.
28+
*/
29+
@SuppressWarnings("javadoc")
30+
public final class AdaptationModifier extends com.google.api.client.json.GenericJson {
31+
32+
/**
33+
* Optional. The modifier name.
34+
* The value may be {@code null}.
35+
*/
36+
@com.google.api.client.util.Key
37+
private java.lang.String modifier;
38+
39+
/**
40+
* Optional. The value of the modifier. The actual value depends on the modifier and can also be
41+
* empty.
42+
* The value may be {@code null}.
43+
*/
44+
@com.google.api.client.util.Key
45+
private java.lang.String value;
46+
47+
/**
48+
* Optional. The modifier name.
49+
* @return value or {@code null} for none
50+
*/
51+
public java.lang.String getModifier() {
52+
return modifier;
53+
}
54+
55+
/**
56+
* Optional. The modifier name.
57+
* @param modifier modifier or {@code null} for none
58+
*/
59+
public AdaptationModifier setModifier(java.lang.String modifier) {
60+
this.modifier = modifier;
61+
return this;
62+
}
63+
64+
/**
65+
* Optional. The value of the modifier. The actual value depends on the modifier and can also be
66+
* empty.
67+
* @return value or {@code null} for none
68+
*/
69+
public java.lang.String getValue() {
70+
return value;
71+
}
72+
73+
/**
74+
* Optional. The value of the modifier. The actual value depends on the modifier and can also be
75+
* empty.
76+
* @param value value or {@code null} for none
77+
*/
78+
public AdaptationModifier setValue(java.lang.String value) {
79+
this.value = value;
80+
return this;
81+
}
82+
83+
@Override
84+
public AdaptationModifier set(String fieldName, Object value) {
85+
return (AdaptationModifier) super.set(fieldName, value);
86+
}
87+
88+
@Override
89+
public AdaptationModifier clone() {
90+
return (AdaptationModifier) super.clone();
91+
}
92+
93+
}

clients/google-api-services-vmmigration/v1/2.0.0/com/google/api/services/vmmigration/v1/model/ComputeEngineTargetDefaults.java

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,19 @@
3030
@SuppressWarnings("javadoc")
3131
public final class ComputeEngineTargetDefaults extends com.google.api.client.json.GenericJson {
3232

33+
/**
34+
* Optional. AdaptationModifiers are the set of modifiers used during OS adaptation.
35+
* The value may be {@code null}.
36+
*/
37+
@com.google.api.client.util.Key
38+
private java.util.List<AdaptationModifier> adaptationModifiers;
39+
40+
static {
41+
// hack to force ProGuard to consider AdaptationModifier used, since otherwise it would be stripped out
42+
// see https://github.com/google/google-api-java-client/issues/543
43+
com.google.api.client.util.Data.nullOf(AdaptationModifier.class);
44+
}
45+
3346
/**
3447
* Additional licenses to assign to the VM.
3548
* The value may be {@code null}.
@@ -202,6 +215,23 @@ public final class ComputeEngineTargetDefaults extends com.google.api.client.jso
202215
@com.google.api.client.util.Key
203216
private java.lang.String zone;
204217

218+
/**
219+
* Optional. AdaptationModifiers are the set of modifiers used during OS adaptation.
220+
* @return value or {@code null} for none
221+
*/
222+
public java.util.List<AdaptationModifier> getAdaptationModifiers() {
223+
return adaptationModifiers;
224+
}
225+
226+
/**
227+
* Optional. AdaptationModifiers are the set of modifiers used during OS adaptation.
228+
* @param adaptationModifiers adaptationModifiers or {@code null} for none
229+
*/
230+
public ComputeEngineTargetDefaults setAdaptationModifiers(java.util.List<AdaptationModifier> adaptationModifiers) {
231+
this.adaptationModifiers = adaptationModifiers;
232+
return this;
233+
}
234+
205235
/**
206236
* Additional licenses to assign to the VM.
207237
* @return value or {@code null} for none

clients/google-api-services-vmmigration/v1/2.0.0/com/google/api/services/vmmigration/v1/model/ComputeEngineTargetDetails.java

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,19 @@
3030
@SuppressWarnings("javadoc")
3131
public final class ComputeEngineTargetDetails extends com.google.api.client.json.GenericJson {
3232

33+
/**
34+
* Optional. Modifiers to be used as configuration of the OS adaptation process.
35+
* The value may be {@code null}.
36+
*/
37+
@com.google.api.client.util.Key
38+
private java.util.List<AdaptationModifier> adaptationModifiers;
39+
40+
static {
41+
// hack to force ProGuard to consider AdaptationModifier used, since otherwise it would be stripped out
42+
// see https://github.com/google/google-api-java-client/issues/543
43+
com.google.api.client.util.Data.nullOf(AdaptationModifier.class);
44+
}
45+
3346
/**
3447
* Additional licenses to assign to the VM.
3548
* The value may be {@code null}.
@@ -199,6 +212,23 @@ public final class ComputeEngineTargetDetails extends com.google.api.client.json
199212
@com.google.api.client.util.Key
200213
private java.lang.String zone;
201214

215+
/**
216+
* Optional. Modifiers to be used as configuration of the OS adaptation process.
217+
* @return value or {@code null} for none
218+
*/
219+
public java.util.List<AdaptationModifier> getAdaptationModifiers() {
220+
return adaptationModifiers;
221+
}
222+
223+
/**
224+
* Optional. Modifiers to be used as configuration of the OS adaptation process.
225+
* @param adaptationModifiers adaptationModifiers or {@code null} for none
226+
*/
227+
public ComputeEngineTargetDetails setAdaptationModifiers(java.util.List<AdaptationModifier> adaptationModifiers) {
228+
this.adaptationModifiers = adaptationModifiers;
229+
return this;
230+
}
231+
202232
/**
203233
* Additional licenses to assign to the VM.
204234
* @return value or {@code null} for none

clients/google-api-services-vmmigration/v1/2.0.0/com/google/api/services/vmmigration/v1/model/ImageImportOsAdaptationParameters.java

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,19 @@
2929
@SuppressWarnings("javadoc")
3030
public final class ImageImportOsAdaptationParameters extends com.google.api.client.json.GenericJson {
3131

32+
/**
33+
* Optional. Modifiers to be used as configuration of the OS adaptation process.
34+
* The value may be {@code null}.
35+
*/
36+
@com.google.api.client.util.Key
37+
private java.util.List<AdaptationModifier> adaptationModifiers;
38+
39+
static {
40+
// hack to force ProGuard to consider AdaptationModifier used, since otherwise it would be stripped out
41+
// see https://github.com/google/google-api-java-client/issues/543
42+
com.google.api.client.util.Data.nullOf(AdaptationModifier.class);
43+
}
44+
3245
/**
3346
* Optional. By default the image will keep its existing boot option. Setting this property will
3447
* trigger an internal process which will convert the image from using the existing boot option to
@@ -55,6 +68,23 @@ public final class ImageImportOsAdaptationParameters extends com.google.api.clie
5568
@com.google.api.client.util.Key
5669
private java.lang.String licenseType;
5770

71+
/**
72+
* Optional. Modifiers to be used as configuration of the OS adaptation process.
73+
* @return value or {@code null} for none
74+
*/
75+
public java.util.List<AdaptationModifier> getAdaptationModifiers() {
76+
return adaptationModifiers;
77+
}
78+
79+
/**
80+
* Optional. Modifiers to be used as configuration of the OS adaptation process.
81+
* @param adaptationModifiers adaptationModifiers or {@code null} for none
82+
*/
83+
public ImageImportOsAdaptationParameters setAdaptationModifiers(java.util.List<AdaptationModifier> adaptationModifiers) {
84+
this.adaptationModifiers = adaptationModifiers;
85+
return this;
86+
}
87+
5888
/**
5989
* Optional. By default the image will keep its existing boot option. Setting this property will
6090
* trigger an internal process which will convert the image from using the existing boot option to

clients/google-api-services-vmmigration/v1/2.0.0/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88

99
<groupId>com.google.apis</groupId>
1010
<artifactId>google-api-services-vmmigration</artifactId>
11-
<version>v1-rev20250904-2.0.0</version>
12-
<name>VM Migration API v1-rev20250904-2.0.0</name>
11+
<version>v1-rev20250911-2.0.0</version>
12+
<name>VM Migration API v1-rev20250911-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

clients/google-api-services-vmmigration/v1/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file:
2222
<dependency>
2323
<groupId>com.google.apis</groupId>
2424
<artifactId>google-api-services-vmmigration</artifactId>
25-
<version>v1-rev20250904-2.0.0</version>
25+
<version>v1-rev20250911-2.0.0</version>
2626
</dependency>
2727
</dependencies>
2828
</project>
@@ -35,7 +35,7 @@ repositories {
3535
mavenCentral()
3636
}
3737
dependencies {
38-
implementation 'com.google.apis:google-api-services-vmmigration:v1-rev20250904-2.0.0'
38+
implementation 'com.google.apis:google-api-services-vmmigration:v1-rev20250911-2.0.0'
3939
}
4040
```
4141

clients/google-api-services-vmmigration/v1alpha1/2.0.0/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file:
2222
<dependency>
2323
<groupId>com.google.apis</groupId>
2424
<artifactId>google-api-services-vmmigration</artifactId>
25-
<version>v1alpha1-rev20250904-2.0.0</version>
25+
<version>v1alpha1-rev20250911-2.0.0</version>
2626
</dependency>
2727
</dependencies>
2828
</project>
@@ -35,7 +35,7 @@ repositories {
3535
mavenCentral()
3636
}
3737
dependencies {
38-
implementation 'com.google.apis:google-api-services-vmmigration:v1alpha1-rev20250904-2.0.0'
38+
implementation 'com.google.apis:google-api-services-vmmigration:v1alpha1-rev20250911-2.0.0'
3939
}
4040
```
4141

clients/google-api-services-vmmigration/v1alpha1/2.0.0/com/google/api/services/vmmigration/v1alpha1/VMMigrationService.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2527,7 +2527,7 @@ public ImageImportJobs imageImportJobs() {
25272527
public class ImageImportJobs {
25282528

25292529
/**
2530-
* Initiates the cancellation of a running clone job.
2530+
* Initiates the cancellation of a running ImageImportJob.
25312531
*
25322532
* Create a request for the method "imageImportJobs.cancel".
25332533
*
@@ -2552,7 +2552,7 @@ public class Cancel extends VMMigrationServiceRequest<com.google.api.services.vm
25522552
java.util.regex.Pattern.compile("^projects/[^/]+/locations/[^/]+/imageImports/[^/]+/imageImportJobs/[^/]+$");
25532553

25542554
/**
2555-
* Initiates the cancellation of a running clone job.
2555+
* Initiates the cancellation of a running ImageImportJob.
25562556
*
25572557
* Create a request for the method "imageImportJobs.cancel".
25582558
*

0 commit comments

Comments
 (0)