Skip to content

Commit 48502cb

Browse files
1 parent cd112b7 commit 48502cb

File tree

16 files changed

+252
-12
lines changed

16 files changed

+252
-12
lines changed

clients/google-api-services-migrationcenter/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-migrationcenter</artifactId>
25-
<version>v1-rev20240926-2.0.0</version>
25+
<version>v1-rev20241014-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-migrationcenter:v1-rev20240926-2.0.0'
38+
implementation 'com.google.apis:google-api-services-migrationcenter:v1-rev20241014-2.0.0'
3939
}
4040
```
4141

clients/google-api-services-migrationcenter/v1/2.0.0/com/google/api/services/migrationcenter/v1/model/AwsEc2PlatformDetails.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 AwsEc2PlatformDetails extends com.google.api.client.json.GenericJson {
3131

32+
/**
33+
* Optional. Whether the machine is hyperthreaded.
34+
* The value may be {@code null}.
35+
*/
36+
@com.google.api.client.util.Key
37+
private java.lang.String hyperthreading;
38+
3239
/**
3340
* The location of the machine in the AWS format.
3441
* The value may be {@code null}.
@@ -43,6 +50,23 @@ public final class AwsEc2PlatformDetails extends com.google.api.client.json.Gene
4350
@com.google.api.client.util.Key
4451
private java.lang.String machineTypeLabel;
4552

53+
/**
54+
* Optional. Whether the machine is hyperthreaded.
55+
* @return value or {@code null} for none
56+
*/
57+
public java.lang.String getHyperthreading() {
58+
return hyperthreading;
59+
}
60+
61+
/**
62+
* Optional. Whether the machine is hyperthreaded.
63+
* @param hyperthreading hyperthreading or {@code null} for none
64+
*/
65+
public AwsEc2PlatformDetails setHyperthreading(java.lang.String hyperthreading) {
66+
this.hyperthreading = hyperthreading;
67+
return this;
68+
}
69+
4670
/**
4771
* The location of the machine in the AWS format.
4872
* @return value or {@code null} for none

clients/google-api-services-migrationcenter/v1/2.0.0/com/google/api/services/migrationcenter/v1/model/AzureVmPlatformDetails.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 AzureVmPlatformDetails extends com.google.api.client.json.GenericJson {
3131

32+
/**
33+
* Whether the machine is hyperthreaded.
34+
* The value may be {@code null}.
35+
*/
36+
@com.google.api.client.util.Key
37+
private java.lang.String hyperthreading;
38+
3239
/**
3340
* The location of the machine in the Azure format.
3441
* The value may be {@code null}.
@@ -50,6 +57,23 @@ public final class AzureVmPlatformDetails extends com.google.api.client.json.Gen
5057
@com.google.api.client.util.Key
5158
private java.lang.String provisioningState;
5259

60+
/**
61+
* Whether the machine is hyperthreaded.
62+
* @return value or {@code null} for none
63+
*/
64+
public java.lang.String getHyperthreading() {
65+
return hyperthreading;
66+
}
67+
68+
/**
69+
* Whether the machine is hyperthreaded.
70+
* @param hyperthreading hyperthreading or {@code null} for none
71+
*/
72+
public AzureVmPlatformDetails setHyperthreading(java.lang.String hyperthreading) {
73+
this.hyperthreading = hyperthreading;
74+
return this;
75+
}
76+
5377
/**
5478
* The location of the machine in the Azure format.
5579
* @return value or {@code null} for none

clients/google-api-services-migrationcenter/v1/2.0.0/com/google/api/services/migrationcenter/v1/model/GenericPlatformDetails.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 GenericPlatformDetails extends com.google.api.client.json.GenericJson {
3131

32+
/**
33+
* Whether the machine is hyperthreaded.
34+
* The value may be {@code null}.
35+
*/
36+
@com.google.api.client.util.Key
37+
private java.lang.String hyperthreading;
38+
3239
/**
3340
* Free text representation of the machine location. The format of this field should not be relied
3441
* on. Different VMs in the same location may have different string values for this field.
@@ -37,6 +44,23 @@ public final class GenericPlatformDetails extends com.google.api.client.json.Gen
3744
@com.google.api.client.util.Key
3845
private java.lang.String location;
3946

47+
/**
48+
* Whether the machine is hyperthreaded.
49+
* @return value or {@code null} for none
50+
*/
51+
public java.lang.String getHyperthreading() {
52+
return hyperthreading;
53+
}
54+
55+
/**
56+
* Whether the machine is hyperthreaded.
57+
* @param hyperthreading hyperthreading or {@code null} for none
58+
*/
59+
public GenericPlatformDetails setHyperthreading(java.lang.String hyperthreading) {
60+
this.hyperthreading = hyperthreading;
61+
return this;
62+
}
63+
4064
/**
4165
* Free text representation of the machine location. The format of this field should not be relied
4266
* on. Different VMs in the same location may have different string values for this field.

clients/google-api-services-migrationcenter/v1/2.0.0/com/google/api/services/migrationcenter/v1/model/PhysicalPlatformDetails.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 PhysicalPlatformDetails extends com.google.api.client.json.GenericJson {
3131

32+
/**
33+
* Whether the machine is hyperthreaded.
34+
* The value may be {@code null}.
35+
*/
36+
@com.google.api.client.util.Key
37+
private java.lang.String hyperthreading;
38+
3239
/**
3340
* Free text representation of the machine location. The format of this field should not be relied
3441
* on. Different machines in the same location may have different string values for this field.
@@ -37,6 +44,23 @@ public final class PhysicalPlatformDetails extends com.google.api.client.json.Ge
3744
@com.google.api.client.util.Key
3845
private java.lang.String location;
3946

47+
/**
48+
* Whether the machine is hyperthreaded.
49+
* @return value or {@code null} for none
50+
*/
51+
public java.lang.String getHyperthreading() {
52+
return hyperthreading;
53+
}
54+
55+
/**
56+
* Whether the machine is hyperthreaded.
57+
* @param hyperthreading hyperthreading or {@code null} for none
58+
*/
59+
public PhysicalPlatformDetails setHyperthreading(java.lang.String hyperthreading) {
60+
this.hyperthreading = hyperthreading;
61+
return this;
62+
}
63+
4064
/**
4165
* Free text representation of the machine location. The format of this field should not be relied
4266
* on. Different machines in the same location may have different string values for this field.

clients/google-api-services-migrationcenter/v1/2.0.0/com/google/api/services/migrationcenter/v1/model/VmwarePlatformDetails.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 VmwarePlatformDetails extends com.google.api.client.json.GenericJson {
3131

32+
/**
33+
* Whether the ESX is hyperthreaded.
34+
* The value may be {@code null}.
35+
*/
36+
@com.google.api.client.util.Key
37+
private java.lang.String esxHyperthreading;
38+
3239
/**
3340
* ESX version.
3441
* The value may be {@code null}.
@@ -73,6 +80,23 @@ public final class VmwarePlatformDetails extends com.google.api.client.json.Gene
7380
@com.google.api.client.util.Key
7481
private java.lang.String vcenterVmId;
7582

83+
/**
84+
* Whether the ESX is hyperthreaded.
85+
* @return value or {@code null} for none
86+
*/
87+
public java.lang.String getEsxHyperthreading() {
88+
return esxHyperthreading;
89+
}
90+
91+
/**
92+
* Whether the ESX is hyperthreaded.
93+
* @param esxHyperthreading esxHyperthreading or {@code null} for none
94+
*/
95+
public VmwarePlatformDetails setEsxHyperthreading(java.lang.String esxHyperthreading) {
96+
this.esxHyperthreading = esxHyperthreading;
97+
return this;
98+
}
99+
76100
/**
77101
* ESX version.
78102
* @return value or {@code null} for none

clients/google-api-services-migrationcenter/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-migrationcenter</artifactId>
11-
<version>v1-rev20240926-2.0.0</version>
12-
<name>Migration Center API v1-rev20240926-2.0.0</name>
11+
<version>v1-rev20241014-2.0.0</version>
12+
<name>Migration Center API v1-rev20241014-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

clients/google-api-services-migrationcenter/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-migrationcenter</artifactId>
25-
<version>v1-rev20240926-2.0.0</version>
25+
<version>v1-rev20241014-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-migrationcenter:v1-rev20240926-2.0.0'
38+
implementation 'com.google.apis:google-api-services-migrationcenter:v1-rev20241014-2.0.0'
3939
}
4040
```
4141

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

clients/google-api-services-migrationcenter/v1alpha1/2.0.0/com/google/api/services/migrationcenter/v1alpha1/model/AwsEc2PlatformDetails.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 AwsEc2PlatformDetails extends com.google.api.client.json.GenericJson {
3131

32+
/**
33+
* Optional. Whether the machine is hyperthreaded.
34+
* The value may be {@code null}.
35+
*/
36+
@com.google.api.client.util.Key
37+
private java.lang.String hyperthreading;
38+
3239
/**
3340
* The location of the machine in the AWS format.
3441
* The value may be {@code null}.
@@ -43,6 +50,23 @@ public final class AwsEc2PlatformDetails extends com.google.api.client.json.Gene
4350
@com.google.api.client.util.Key
4451
private java.lang.String machineTypeLabel;
4552

53+
/**
54+
* Optional. Whether the machine is hyperthreaded.
55+
* @return value or {@code null} for none
56+
*/
57+
public java.lang.String getHyperthreading() {
58+
return hyperthreading;
59+
}
60+
61+
/**
62+
* Optional. Whether the machine is hyperthreaded.
63+
* @param hyperthreading hyperthreading or {@code null} for none
64+
*/
65+
public AwsEc2PlatformDetails setHyperthreading(java.lang.String hyperthreading) {
66+
this.hyperthreading = hyperthreading;
67+
return this;
68+
}
69+
4670
/**
4771
* The location of the machine in the AWS format.
4872
* @return value or {@code null} for none

0 commit comments

Comments
 (0)