Skip to content

Commit fb04c2b

Browse files
1 parent 5c72018 commit fb04c2b

File tree

16 files changed

+252
-12
lines changed

16 files changed

+252
-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-rev20240912-2.0.0</version>
25+
<version>v1-rev20241013-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-rev20240912-2.0.0'
38+
implementation 'com.google.apis:google-api-services-vmmigration:v1-rev20241013-2.0.0'
3939
}
4040
```
4141

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

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

32+
/**
33+
* Output only. The VM architecture.
34+
* The value may be {@code null}.
35+
*/
36+
@com.google.api.client.util.Key
37+
private java.lang.String architecture;
38+
3239
/**
3340
* Output only. The total size of the disks being migrated in bytes.
3441
* The value may be {@code null}.
@@ -63,6 +70,23 @@ public final class AwsSourceVmDetails extends com.google.api.client.json.Generic
6370
@com.google.api.client.util.Key
6471
private VmCapabilities vmCapabilitiesInfo;
6572

73+
/**
74+
* Output only. The VM architecture.
75+
* @return value or {@code null} for none
76+
*/
77+
public java.lang.String getArchitecture() {
78+
return architecture;
79+
}
80+
81+
/**
82+
* Output only. The VM architecture.
83+
* @param architecture architecture or {@code null} for none
84+
*/
85+
public AwsSourceVmDetails setArchitecture(java.lang.String architecture) {
86+
this.architecture = architecture;
87+
return this;
88+
}
89+
6690
/**
6791
* Output only. The total size of the disks being migrated in bytes.
6892
* @return value or {@code null} for none

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

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

32+
/**
33+
* Output only. The VM architecture.
34+
* The value may be {@code null}.
35+
*/
36+
@com.google.api.client.util.Key
37+
private java.lang.String architecture;
38+
3239
/**
3340
* Output only. The total size of the disks being migrated in bytes.
3441
* The value may be {@code null}.
@@ -63,6 +70,23 @@ public final class AzureSourceVmDetails extends com.google.api.client.json.Gener
6370
@com.google.api.client.util.Key
6471
private VmCapabilities vmCapabilitiesInfo;
6572

73+
/**
74+
* Output only. The VM architecture.
75+
* @return value or {@code null} for none
76+
*/
77+
public java.lang.String getArchitecture() {
78+
return architecture;
79+
}
80+
81+
/**
82+
* Output only. The VM architecture.
83+
* @param architecture architecture or {@code null} for none
84+
*/
85+
public AzureSourceVmDetails setArchitecture(java.lang.String architecture) {
86+
this.architecture = architecture;
87+
return this;
88+
}
89+
6690
/**
6791
* Output only. The total size of the disks being migrated in bytes.
6892
* @return value or {@code null} for none

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

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

32+
/**
33+
* The CPU architecture.
34+
* The value may be {@code null}.
35+
*/
36+
@com.google.api.client.util.Key
37+
private java.lang.String architecture;
38+
3239
/**
3340
* The VM Boot Option.
3441
* The value may be {@code null}.
@@ -120,6 +127,23 @@ public final class AzureVmDetails extends com.google.api.client.json.GenericJson
120127
@com.google.api.client.util.Key
121128
private java.lang.String vmSize;
122129

130+
/**
131+
* The CPU architecture.
132+
* @return value or {@code null} for none
133+
*/
134+
public java.lang.String getArchitecture() {
135+
return architecture;
136+
}
137+
138+
/**
139+
* The CPU architecture.
140+
* @param architecture architecture or {@code null} for none
141+
*/
142+
public AzureVmDetails setArchitecture(java.lang.String architecture) {
143+
this.architecture = architecture;
144+
return this;
145+
}
146+
123147
/**
124148
* The VM Boot Option.
125149
* @return value or {@code null} for none

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

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

32+
/**
33+
* Output only. The VM architecture.
34+
* The value may be {@code null}.
35+
*/
36+
@com.google.api.client.util.Key
37+
private java.lang.String architecture;
38+
3239
/**
3340
* Output only. The total size of the disks being migrated in bytes.
3441
* The value may be {@code null}.
@@ -63,6 +70,23 @@ public final class VmwareSourceVmDetails extends com.google.api.client.json.Gene
6370
@com.google.api.client.util.Key
6471
private VmCapabilities vmCapabilitiesInfo;
6572

73+
/**
74+
* Output only. The VM architecture.
75+
* @return value or {@code null} for none
76+
*/
77+
public java.lang.String getArchitecture() {
78+
return architecture;
79+
}
80+
81+
/**
82+
* Output only. The VM architecture.
83+
* @param architecture architecture or {@code null} for none
84+
*/
85+
public VmwareSourceVmDetails setArchitecture(java.lang.String architecture) {
86+
this.architecture = architecture;
87+
return this;
88+
}
89+
6690
/**
6791
* Output only. The total size of the disks being migrated in bytes.
6892
* @return value or {@code null} for none

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

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

32+
/**
33+
* Output only. The CPU architecture.
34+
* The value may be {@code null}.
35+
*/
36+
@com.google.api.client.util.Key
37+
private java.lang.String architecture;
38+
3239
/**
3340
* Output only. The VM Boot Option.
3441
* The value may be {@code null}.
@@ -116,6 +123,23 @@ public final class VmwareVmDetails extends com.google.api.client.json.GenericJso
116123
@com.google.api.client.util.Key
117124
private java.lang.String vmId;
118125

126+
/**
127+
* Output only. The CPU architecture.
128+
* @return value or {@code null} for none
129+
*/
130+
public java.lang.String getArchitecture() {
131+
return architecture;
132+
}
133+
134+
/**
135+
* Output only. The CPU architecture.
136+
* @param architecture architecture or {@code null} for none
137+
*/
138+
public VmwareVmDetails setArchitecture(java.lang.String architecture) {
139+
this.architecture = architecture;
140+
return this;
141+
}
142+
119143
/**
120144
* Output only. The VM Boot Option.
121145
* @return value or {@code null} for none

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-rev20240912-2.0.0</version>
12-
<name>VM Migration API v1-rev20240912-2.0.0</name>
11+
<version>v1-rev20241013-2.0.0</version>
12+
<name>VM Migration API v1-rev20241013-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-rev20240912-2.0.0</version>
25+
<version>v1-rev20241013-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-rev20240912-2.0.0'
38+
implementation 'com.google.apis:google-api-services-vmmigration:v1-rev20241013-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-rev20240912-2.0.0</version>
25+
<version>v1alpha1-rev20241013-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-rev20240912-2.0.0'
38+
implementation 'com.google.apis:google-api-services-vmmigration:v1alpha1-rev20241013-2.0.0'
3939
}
4040
```
4141

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

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

32+
/**
33+
* Output only. The VM architecture.
34+
* The value may be {@code null}.
35+
*/
36+
@com.google.api.client.util.Key
37+
private java.lang.String architecture;
38+
3239
/**
3340
* Output only. The total size of the disks being migrated in bytes.
3441
* The value may be {@code null}.
@@ -63,6 +70,23 @@ public final class AwsSourceVmDetails extends com.google.api.client.json.Generic
6370
@com.google.api.client.util.Key
6471
private VmCapabilities vmCapabilitiesInfo;
6572

73+
/**
74+
* Output only. The VM architecture.
75+
* @return value or {@code null} for none
76+
*/
77+
public java.lang.String getArchitecture() {
78+
return architecture;
79+
}
80+
81+
/**
82+
* Output only. The VM architecture.
83+
* @param architecture architecture or {@code null} for none
84+
*/
85+
public AwsSourceVmDetails setArchitecture(java.lang.String architecture) {
86+
this.architecture = architecture;
87+
return this;
88+
}
89+
6690
/**
6791
* Output only. The total size of the disks being migrated in bytes.
6892
* @return value or {@code null} for none

0 commit comments

Comments
 (0)