Skip to content

Commit c9d3ce3

Browse files
1 parent aca29e7 commit c9d3ce3

File tree

10 files changed

+118
-12
lines changed

10 files changed

+118
-12
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-rev20250213-2.0.0</version>
25+
<version>v1-rev20250321-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-rev20250213-2.0.0'
38+
implementation 'com.google.apis:google-api-services-vmmigration:v1-rev20250321-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: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -444,6 +444,29 @@ public List setName(java.lang.String name) {
444444
return this;
445445
}
446446

447+
/**
448+
* Optional. A list of extra location types that should be used as conditions for
449+
* controlling the visibility of the locations.
450+
*/
451+
@com.google.api.client.util.Key
452+
private java.util.List<java.lang.String> extraLocationTypes;
453+
454+
/** Optional. A list of extra location types that should be used as conditions for controlling the
455+
visibility of the locations.
456+
*/
457+
public java.util.List<java.lang.String> getExtraLocationTypes() {
458+
return extraLocationTypes;
459+
}
460+
461+
/**
462+
* Optional. A list of extra location types that should be used as conditions for
463+
* controlling the visibility of the locations.
464+
*/
465+
public List setExtraLocationTypes(java.util.List<java.lang.String> extraLocationTypes) {
466+
this.extraLocationTypes = extraLocationTypes;
467+
return this;
468+
}
469+
447470
/**
448471
* A filter to narrow down results to a preferred subset. The filtering language accepts
449472
* strings like `"displayName=tokyo"`, and is documented in more detail in

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,15 @@
2929
@SuppressWarnings("javadoc")
3030
public final class ImageImportOsAdaptationParameters extends com.google.api.client.json.GenericJson {
3131

32+
/**
33+
* Optional. By default the image will keep its existing boot option. Setting this property will
34+
* trigger an internal process which will convert the image from using the existing boot option to
35+
* another. The size of the boot disk might be increased to allow the conversion
36+
* The value may be {@code null}.
37+
*/
38+
@com.google.api.client.util.Key
39+
private java.lang.String bootConversion;
40+
3241
/**
3342
* Optional. Set to true in order to generalize the imported image. The generalization process
3443
* enables co-existence of multiple VMs created from the same image. For Windows, generalizing the
@@ -46,6 +55,27 @@ public final class ImageImportOsAdaptationParameters extends com.google.api.clie
4655
@com.google.api.client.util.Key
4756
private java.lang.String licenseType;
4857

58+
/**
59+
* Optional. By default the image will keep its existing boot option. Setting this property will
60+
* trigger an internal process which will convert the image from using the existing boot option to
61+
* another. The size of the boot disk might be increased to allow the conversion
62+
* @return value or {@code null} for none
63+
*/
64+
public java.lang.String getBootConversion() {
65+
return bootConversion;
66+
}
67+
68+
/**
69+
* Optional. By default the image will keep its existing boot option. Setting this property will
70+
* trigger an internal process which will convert the image from using the existing boot option to
71+
* another. The size of the boot disk might be increased to allow the conversion
72+
* @param bootConversion bootConversion or {@code null} for none
73+
*/
74+
public ImageImportOsAdaptationParameters setBootConversion(java.lang.String bootConversion) {
75+
this.bootConversion = bootConversion;
76+
return this;
77+
}
78+
4979
/**
5080
* Optional. Set to true in order to generalize the imported image. The generalization process
5181
* enables co-existence of multiple VMs created from the same image. For Windows, generalizing the

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-rev20250213-2.0.0</version>
12-
<name>VM Migration API v1-rev20250213-2.0.0</name>
11+
<version>v1-rev20250321-2.0.0</version>
12+
<name>VM Migration API v1-rev20250321-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-rev20250213-2.0.0</version>
25+
<version>v1-rev20250321-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-rev20250213-2.0.0'
38+
implementation 'com.google.apis:google-api-services-vmmigration:v1-rev20250321-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-rev20250213-2.0.0</version>
25+
<version>v1alpha1-rev20250321-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-rev20250213-2.0.0'
38+
implementation 'com.google.apis:google-api-services-vmmigration:v1alpha1-rev20250321-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: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -444,6 +444,29 @@ public List setName(java.lang.String name) {
444444
return this;
445445
}
446446

447+
/**
448+
* Optional. A list of extra location types that should be used as conditions for
449+
* controlling the visibility of the locations.
450+
*/
451+
@com.google.api.client.util.Key
452+
private java.util.List<java.lang.String> extraLocationTypes;
453+
454+
/** Optional. A list of extra location types that should be used as conditions for controlling the
455+
visibility of the locations.
456+
*/
457+
public java.util.List<java.lang.String> getExtraLocationTypes() {
458+
return extraLocationTypes;
459+
}
460+
461+
/**
462+
* Optional. A list of extra location types that should be used as conditions for
463+
* controlling the visibility of the locations.
464+
*/
465+
public List setExtraLocationTypes(java.util.List<java.lang.String> extraLocationTypes) {
466+
this.extraLocationTypes = extraLocationTypes;
467+
return this;
468+
}
469+
447470
/**
448471
* A filter to narrow down results to a preferred subset. The filtering language accepts
449472
* strings like `"displayName=tokyo"`, and is documented in more detail in

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

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

32+
/**
33+
* Optional. By default the image will keep its existing boot option. Setting this property will
34+
* trigger an internal process which will convert the image from using the existing boot option to
35+
* another. The size of the boot disk might be increased to allow the conversion
36+
* The value may be {@code null}.
37+
*/
38+
@com.google.api.client.util.Key
39+
private java.lang.String bootConversion;
40+
3241
/**
3342
* Optional. Set to true in order to generalize the imported image. The generalization process
3443
* enables co-existence of multiple VMs created from the same image. For Windows, generalizing the
@@ -46,6 +55,27 @@ public final class ImageImportOsAdaptationParameters extends com.google.api.clie
4655
@com.google.api.client.util.Key
4756
private java.lang.String licenseType;
4857

58+
/**
59+
* Optional. By default the image will keep its existing boot option. Setting this property will
60+
* trigger an internal process which will convert the image from using the existing boot option to
61+
* another. The size of the boot disk might be increased to allow the conversion
62+
* @return value or {@code null} for none
63+
*/
64+
public java.lang.String getBootConversion() {
65+
return bootConversion;
66+
}
67+
68+
/**
69+
* Optional. By default the image will keep its existing boot option. Setting this property will
70+
* trigger an internal process which will convert the image from using the existing boot option to
71+
* another. The size of the boot disk might be increased to allow the conversion
72+
* @param bootConversion bootConversion or {@code null} for none
73+
*/
74+
public ImageImportOsAdaptationParameters setBootConversion(java.lang.String bootConversion) {
75+
this.bootConversion = bootConversion;
76+
return this;
77+
}
78+
4979
/**
5080
* Optional. Set to true in order to generalize the imported image. The generalization process
5181
* enables co-existence of multiple VMs created from the same image. For Windows, generalizing the

clients/google-api-services-vmmigration/v1alpha1/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>v1alpha1-rev20250213-2.0.0</version>
12-
<name>VM Migration API v1alpha1-rev20250213-2.0.0</name>
11+
<version>v1alpha1-rev20250321-2.0.0</version>
12+
<name>VM Migration API v1alpha1-rev20250321-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

clients/google-api-services-vmmigration/v1alpha1/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-rev20250213-2.0.0</version>
25+
<version>v1alpha1-rev20250321-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-rev20250213-2.0.0'
38+
implementation 'com.google.apis:google-api-services-vmmigration:v1alpha1-rev20250321-2.0.0'
3939
}
4040
```
4141

0 commit comments

Comments
 (0)