Skip to content

Commit ca0e662

Browse files
1 parent b6b0dfa commit ca0e662

File tree

10 files changed

+469
-6
lines changed

10 files changed

+469
-6
lines changed

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

clients/google-api-services-migrationcenter/v1alpha1/2.0.0/com/google/api/services/migrationcenter/v1alpha1/model/DatabaseDeploymentTopology.java

Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,20 @@ public final class DatabaseDeploymentTopology extends com.google.api.client.json
7878
@com.google.api.client.util.Key @com.google.api.client.json.JsonString
7979
private java.lang.Long memoryLimitBytes;
8080

81+
/**
82+
* Optional. Number of total physical cores.
83+
* The value may be {@code null}.
84+
*/
85+
@com.google.api.client.util.Key
86+
private java.lang.Integer physicalCoreCount;
87+
88+
/**
89+
* Optional. Number of total physical cores limited by db deployment.
90+
* The value may be {@code null}.
91+
*/
92+
@com.google.api.client.util.Key
93+
private java.lang.Integer physicalCoreLimit;
94+
8195
/**
8296
* Optional. Number of total logical cores.
8397
* @return value or {@code null} for none
@@ -197,6 +211,40 @@ public DatabaseDeploymentTopology setMemoryLimitBytes(java.lang.Long memoryLimit
197211
return this;
198212
}
199213

214+
/**
215+
* Optional. Number of total physical cores.
216+
* @return value or {@code null} for none
217+
*/
218+
public java.lang.Integer getPhysicalCoreCount() {
219+
return physicalCoreCount;
220+
}
221+
222+
/**
223+
* Optional. Number of total physical cores.
224+
* @param physicalCoreCount physicalCoreCount or {@code null} for none
225+
*/
226+
public DatabaseDeploymentTopology setPhysicalCoreCount(java.lang.Integer physicalCoreCount) {
227+
this.physicalCoreCount = physicalCoreCount;
228+
return this;
229+
}
230+
231+
/**
232+
* Optional. Number of total physical cores limited by db deployment.
233+
* @return value or {@code null} for none
234+
*/
235+
public java.lang.Integer getPhysicalCoreLimit() {
236+
return physicalCoreLimit;
237+
}
238+
239+
/**
240+
* Optional. Number of total physical cores limited by db deployment.
241+
* @param physicalCoreLimit physicalCoreLimit or {@code null} for none
242+
*/
243+
public DatabaseDeploymentTopology setPhysicalCoreLimit(java.lang.Integer physicalCoreLimit) {
244+
this.physicalCoreLimit = physicalCoreLimit;
245+
return this;
246+
}
247+
200248
@Override
201249
public DatabaseDeploymentTopology set(String fieldName, Object value) {
202250
return (DatabaseDeploymentTopology) super.set(fieldName, value);

clients/google-api-services-migrationcenter/v1alpha1/2.0.0/com/google/api/services/migrationcenter/v1alpha1/model/DatabaseInstance.java

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,13 @@ public final class DatabaseInstance extends com.google.api.client.json.GenericJs
3636
@com.google.api.client.util.Key
3737
private java.lang.String instanceName;
3838

39+
/**
40+
* Optional. Networking details.
41+
* The value may be {@code null}.
42+
*/
43+
@com.google.api.client.util.Key
44+
private DatabaseInstanceNetwork network;
45+
3946
/**
4047
* The instance role in the database engine.
4148
* The value may be {@code null}.
@@ -60,6 +67,23 @@ public DatabaseInstance setInstanceName(java.lang.String instanceName) {
6067
return this;
6168
}
6269

70+
/**
71+
* Optional. Networking details.
72+
* @return value or {@code null} for none
73+
*/
74+
public DatabaseInstanceNetwork getNetwork() {
75+
return network;
76+
}
77+
78+
/**
79+
* Optional. Networking details.
80+
* @param network network or {@code null} for none
81+
*/
82+
public DatabaseInstance setNetwork(DatabaseInstanceNetwork network) {
83+
this.network = network;
84+
return this;
85+
}
86+
6387
/**
6488
* The instance role in the database engine.
6589
* @return value or {@code null} for none
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,114 @@
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.migrationcenter.v1alpha1.model;
18+
19+
/**
20+
* Network details of a database instance.
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 Migration Center 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 DatabaseInstanceNetwork extends com.google.api.client.json.GenericJson {
31+
32+
/**
33+
* Optional. The instance's host names.
34+
* The value may be {@code null}.
35+
*/
36+
@com.google.api.client.util.Key
37+
private java.util.List<java.lang.String> hostNames;
38+
39+
/**
40+
* Optional. The instance's IP addresses.
41+
* The value may be {@code null}.
42+
*/
43+
@com.google.api.client.util.Key
44+
private java.util.List<java.lang.String> ipAddresses;
45+
46+
/**
47+
* Optional. The instance's primary MAC address.
48+
* The value may be {@code null}.
49+
*/
50+
@com.google.api.client.util.Key
51+
private java.lang.String primaryMacAddress;
52+
53+
/**
54+
* Optional. The instance's host names.
55+
* @return value or {@code null} for none
56+
*/
57+
public java.util.List<java.lang.String> getHostNames() {
58+
return hostNames;
59+
}
60+
61+
/**
62+
* Optional. The instance's host names.
63+
* @param hostNames hostNames or {@code null} for none
64+
*/
65+
public DatabaseInstanceNetwork setHostNames(java.util.List<java.lang.String> hostNames) {
66+
this.hostNames = hostNames;
67+
return this;
68+
}
69+
70+
/**
71+
* Optional. The instance's IP addresses.
72+
* @return value or {@code null} for none
73+
*/
74+
public java.util.List<java.lang.String> getIpAddresses() {
75+
return ipAddresses;
76+
}
77+
78+
/**
79+
* Optional. The instance's IP addresses.
80+
* @param ipAddresses ipAddresses or {@code null} for none
81+
*/
82+
public DatabaseInstanceNetwork setIpAddresses(java.util.List<java.lang.String> ipAddresses) {
83+
this.ipAddresses = ipAddresses;
84+
return this;
85+
}
86+
87+
/**
88+
* Optional. The instance's primary MAC address.
89+
* @return value or {@code null} for none
90+
*/
91+
public java.lang.String getPrimaryMacAddress() {
92+
return primaryMacAddress;
93+
}
94+
95+
/**
96+
* Optional. The instance's primary MAC address.
97+
* @param primaryMacAddress primaryMacAddress or {@code null} for none
98+
*/
99+
public DatabaseInstanceNetwork setPrimaryMacAddress(java.lang.String primaryMacAddress) {
100+
this.primaryMacAddress = primaryMacAddress;
101+
return this;
102+
}
103+
104+
@Override
105+
public DatabaseInstanceNetwork set(String fieldName, Object value) {
106+
return (DatabaseInstanceNetwork) super.set(fieldName, value);
107+
}
108+
109+
@Override
110+
public DatabaseInstanceNetwork clone() {
111+
return (DatabaseInstanceNetwork) super.clone();
112+
}
113+
114+
}

clients/google-api-services-migrationcenter/v1alpha1/2.0.0/com/google/api/services/migrationcenter/v1alpha1/model/ReportSummaryGroupPreferenceSetFinding.java

Lines changed: 54 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -87,6 +87,13 @@ public final class ReportSummaryGroupPreferenceSetFinding extends com.google.api
8787
@com.google.api.client.util.Key
8888
private Money monthlyCostDatabaseLicensing;
8989

90+
/**
91+
* Output only. GCVE Protected nodes cost for this preference set.
92+
* The value may be {@code null}.
93+
*/
94+
@com.google.api.client.util.Key
95+
private Money monthlyCostGcveProtected;
96+
9097
/**
9198
* Output only. Network Egress monthly cost for this preference set. Only present for virtual
9299
* machines.
@@ -110,6 +117,15 @@ public final class ReportSummaryGroupPreferenceSetFinding extends com.google.api
110117
@com.google.api.client.util.Key
111118
private Money monthlyCostOther;
112119

120+
/**
121+
* Output only. VMware portable license monthly cost for this preference set. Only present for
122+
* VMware target with portable license service type. This cost is not paid to google, but is an
123+
* estimate of license costs paid to VMware.
124+
* The value may be {@code null}.
125+
*/
126+
@com.google.api.client.util.Key
127+
private Money monthlyCostPortableVmwareLicense;
128+
113129
/**
114130
* Output only. Storage monthly cost for this preference set.
115131
* The value may be {@code null}.
@@ -308,6 +324,23 @@ public ReportSummaryGroupPreferenceSetFinding setMonthlyCostDatabaseLicensing(Mo
308324
return this;
309325
}
310326

327+
/**
328+
* Output only. GCVE Protected nodes cost for this preference set.
329+
* @return value or {@code null} for none
330+
*/
331+
public Money getMonthlyCostGcveProtected() {
332+
return monthlyCostGcveProtected;
333+
}
334+
335+
/**
336+
* Output only. GCVE Protected nodes cost for this preference set.
337+
* @param monthlyCostGcveProtected monthlyCostGcveProtected or {@code null} for none
338+
*/
339+
public ReportSummaryGroupPreferenceSetFinding setMonthlyCostGcveProtected(Money monthlyCostGcveProtected) {
340+
this.monthlyCostGcveProtected = monthlyCostGcveProtected;
341+
return this;
342+
}
343+
311344
/**
312345
* Output only. Network Egress monthly cost for this preference set. Only present for virtual
313346
* machines.
@@ -363,6 +396,27 @@ public ReportSummaryGroupPreferenceSetFinding setMonthlyCostOther(Money monthlyC
363396
return this;
364397
}
365398

399+
/**
400+
* Output only. VMware portable license monthly cost for this preference set. Only present for
401+
* VMware target with portable license service type. This cost is not paid to google, but is an
402+
* estimate of license costs paid to VMware.
403+
* @return value or {@code null} for none
404+
*/
405+
public Money getMonthlyCostPortableVmwareLicense() {
406+
return monthlyCostPortableVmwareLicense;
407+
}
408+
409+
/**
410+
* Output only. VMware portable license monthly cost for this preference set. Only present for
411+
* VMware target with portable license service type. This cost is not paid to google, but is an
412+
* estimate of license costs paid to VMware.
413+
* @param monthlyCostPortableVmwareLicense monthlyCostPortableVmwareLicense or {@code null} for none
414+
*/
415+
public ReportSummaryGroupPreferenceSetFinding setMonthlyCostPortableVmwareLicense(Money monthlyCostPortableVmwareLicense) {
416+
this.monthlyCostPortableVmwareLicense = monthlyCostPortableVmwareLicense;
417+
return this;
418+
}
419+
366420
/**
367421
* Output only. Storage monthly cost for this preference set.
368422
* @return value or {@code null} for none

clients/google-api-services-migrationcenter/v1alpha1/2.0.0/com/google/api/services/migrationcenter/v1alpha1/model/SqlServerSchemaDetails.java

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

32+
/**
33+
* Optional. SqlServer number of CLR objects.
34+
* The value may be {@code null}.
35+
*/
36+
@com.google.api.client.util.Key
37+
private java.lang.Integer clrObjectCount;
38+
39+
/**
40+
* Optional. SqlServer number of CLR objects.
41+
* @return value or {@code null} for none
42+
*/
43+
public java.lang.Integer getClrObjectCount() {
44+
return clrObjectCount;
45+
}
46+
47+
/**
48+
* Optional. SqlServer number of CLR objects.
49+
* @param clrObjectCount clrObjectCount or {@code null} for none
50+
*/
51+
public SqlServerSchemaDetails setClrObjectCount(java.lang.Integer clrObjectCount) {
52+
this.clrObjectCount = clrObjectCount;
53+
return this;
54+
}
55+
3256
@Override
3357
public SqlServerSchemaDetails set(String fieldName, Object value) {
3458
return (SqlServerSchemaDetails) super.set(fieldName, value);

0 commit comments

Comments
 (0)