Skip to content

Commit 6958f62

Browse files
1 parent df6a377 commit 6958f62

File tree

8 files changed

+83
-29
lines changed

8 files changed

+83
-29
lines changed

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

clients/google-api-services-datamigration/v1/2.0.0/com/google/api/services/datamigration/v1/model/CloudSqlSettings.java

Lines changed: 57 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -82,6 +82,22 @@ public final class CloudSqlSettings extends com.google.api.client.json.GenericJs
8282
@com.google.api.client.util.Key
8383
private DataCacheConfig dataCacheConfig;
8484

85+
/**
86+
* Optional. Provisioned number of I/O operations per second for the data disk. This field is only
87+
* used for hyperdisk-balanced disk types.
88+
* The value may be {@code null}.
89+
*/
90+
@com.google.api.client.util.Key @com.google.api.client.json.JsonString
91+
private java.lang.Long dataDiskProvisionedIops;
92+
93+
/**
94+
* Optional. Provisioned throughput measured in MiB per second for the data disk. This field is
95+
* only used for hyperdisk-balanced disk types.
96+
* The value may be {@code null}.
97+
*/
98+
@com.google.api.client.util.Key @com.google.api.client.json.JsonString
99+
private java.lang.Long dataDiskProvisionedThroughput;
100+
85101
/**
86102
* The storage capacity available to the database, in GB. The minimum (and default) size is 10GB.
87103
* The value may be {@code null}.
@@ -90,7 +106,7 @@ public final class CloudSqlSettings extends com.google.api.client.json.GenericJs
90106
private java.lang.Long dataDiskSizeGb;
91107

92108
/**
93-
* The type of storage: `PD_SSD` (default) or `PD_HDD`.
109+
* The type of storage: `PD_SSD` (default) or `PD_HDD` or `HYPERDISK_BALANCED`.
94110
* The value may be {@code null}.
95111
*/
96112
@com.google.api.client.util.Key
@@ -319,6 +335,44 @@ public CloudSqlSettings setDataCacheConfig(DataCacheConfig dataCacheConfig) {
319335
return this;
320336
}
321337

338+
/**
339+
* Optional. Provisioned number of I/O operations per second for the data disk. This field is only
340+
* used for hyperdisk-balanced disk types.
341+
* @return value or {@code null} for none
342+
*/
343+
public java.lang.Long getDataDiskProvisionedIops() {
344+
return dataDiskProvisionedIops;
345+
}
346+
347+
/**
348+
* Optional. Provisioned number of I/O operations per second for the data disk. This field is only
349+
* used for hyperdisk-balanced disk types.
350+
* @param dataDiskProvisionedIops dataDiskProvisionedIops or {@code null} for none
351+
*/
352+
public CloudSqlSettings setDataDiskProvisionedIops(java.lang.Long dataDiskProvisionedIops) {
353+
this.dataDiskProvisionedIops = dataDiskProvisionedIops;
354+
return this;
355+
}
356+
357+
/**
358+
* Optional. Provisioned throughput measured in MiB per second for the data disk. This field is
359+
* only used for hyperdisk-balanced disk types.
360+
* @return value or {@code null} for none
361+
*/
362+
public java.lang.Long getDataDiskProvisionedThroughput() {
363+
return dataDiskProvisionedThroughput;
364+
}
365+
366+
/**
367+
* Optional. Provisioned throughput measured in MiB per second for the data disk. This field is
368+
* only used for hyperdisk-balanced disk types.
369+
* @param dataDiskProvisionedThroughput dataDiskProvisionedThroughput or {@code null} for none
370+
*/
371+
public CloudSqlSettings setDataDiskProvisionedThroughput(java.lang.Long dataDiskProvisionedThroughput) {
372+
this.dataDiskProvisionedThroughput = dataDiskProvisionedThroughput;
373+
return this;
374+
}
375+
322376
/**
323377
* The storage capacity available to the database, in GB. The minimum (and default) size is 10GB.
324378
* @return value or {@code null} for none
@@ -337,15 +391,15 @@ public CloudSqlSettings setDataDiskSizeGb(java.lang.Long dataDiskSizeGb) {
337391
}
338392

339393
/**
340-
* The type of storage: `PD_SSD` (default) or `PD_HDD`.
394+
* The type of storage: `PD_SSD` (default) or `PD_HDD` or `HYPERDISK_BALANCED`.
341395
* @return value or {@code null} for none
342396
*/
343397
public java.lang.String getDataDiskType() {
344398
return dataDiskType;
345399
}
346400

347401
/**
348-
* The type of storage: `PD_SSD` (default) or `PD_HDD`.
402+
* The type of storage: `PD_SSD` (default) or `PD_HDD` or `HYPERDISK_BALANCED`.
349403
* @param dataDiskType dataDiskType or {@code null} for none
350404
*/
351405
public CloudSqlSettings setDataDiskType(java.lang.String dataDiskType) {

clients/google-api-services-datamigration/v1/2.0.0/com/google/api/services/datamigration/v1/model/ConnectionProfile.java

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -119,14 +119,14 @@ public final class ConnectionProfile extends com.google.api.client.json.GenericJ
119119
private java.lang.String role;
120120

121121
/**
122-
* Output only. Zone Isolation compliance state of the resource.
122+
* Output only. Reserved for future use.
123123
* The value may be {@code null}.
124124
*/
125125
@com.google.api.client.util.Key
126126
private java.lang.Boolean satisfiesPzi;
127127

128128
/**
129-
* Output only. Zone Separation compliance state of the resource.
129+
* Output only. Reserved for future use.
130130
* The value may be {@code null}.
131131
*/
132132
@com.google.api.client.util.Key
@@ -367,15 +367,15 @@ public ConnectionProfile setRole(java.lang.String role) {
367367
}
368368

369369
/**
370-
* Output only. Zone Isolation compliance state of the resource.
370+
* Output only. Reserved for future use.
371371
* @return value or {@code null} for none
372372
*/
373373
public java.lang.Boolean getSatisfiesPzi() {
374374
return satisfiesPzi;
375375
}
376376

377377
/**
378-
* Output only. Zone Isolation compliance state of the resource.
378+
* Output only. Reserved for future use.
379379
* @param satisfiesPzi satisfiesPzi or {@code null} for none
380380
*/
381381
public ConnectionProfile setSatisfiesPzi(java.lang.Boolean satisfiesPzi) {
@@ -384,15 +384,15 @@ public ConnectionProfile setSatisfiesPzi(java.lang.Boolean satisfiesPzi) {
384384
}
385385

386386
/**
387-
* Output only. Zone Separation compliance state of the resource.
387+
* Output only. Reserved for future use.
388388
* @return value or {@code null} for none
389389
*/
390390
public java.lang.Boolean getSatisfiesPzs() {
391391
return satisfiesPzs;
392392
}
393393

394394
/**
395-
* Output only. Zone Separation compliance state of the resource.
395+
* Output only. Reserved for future use.
396396
* @param satisfiesPzs satisfiesPzs or {@code null} for none
397397
*/
398398
public ConnectionProfile setSatisfiesPzs(java.lang.Boolean satisfiesPzs) {

clients/google-api-services-datamigration/v1/2.0.0/com/google/api/services/datamigration/v1/model/MigrationJob.java

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -187,14 +187,14 @@ public final class MigrationJob extends com.google.api.client.json.GenericJson {
187187
private ReverseSshConnectivity reverseSshConnectivity;
188188

189189
/**
190-
* Output only. Zone Isolation compliance state of the resource.
190+
* Output only. Reserved for future use.
191191
* The value may be {@code null}.
192192
*/
193193
@com.google.api.client.util.Key
194194
private java.lang.Boolean satisfiesPzi;
195195

196196
/**
197-
* Output only. Zone Separation compliance state of the resource.
197+
* Output only. Reserved for future use.
198198
* The value may be {@code null}.
199199
*/
200200
@com.google.api.client.util.Key
@@ -630,15 +630,15 @@ public MigrationJob setReverseSshConnectivity(ReverseSshConnectivity reverseSshC
630630
}
631631

632632
/**
633-
* Output only. Zone Isolation compliance state of the resource.
633+
* Output only. Reserved for future use.
634634
* @return value or {@code null} for none
635635
*/
636636
public java.lang.Boolean getSatisfiesPzi() {
637637
return satisfiesPzi;
638638
}
639639

640640
/**
641-
* Output only. Zone Isolation compliance state of the resource.
641+
* Output only. Reserved for future use.
642642
* @param satisfiesPzi satisfiesPzi or {@code null} for none
643643
*/
644644
public MigrationJob setSatisfiesPzi(java.lang.Boolean satisfiesPzi) {
@@ -647,15 +647,15 @@ public MigrationJob setSatisfiesPzi(java.lang.Boolean satisfiesPzi) {
647647
}
648648

649649
/**
650-
* Output only. Zone Separation compliance state of the resource.
650+
* Output only. Reserved for future use.
651651
* @return value or {@code null} for none
652652
*/
653653
public java.lang.Boolean getSatisfiesPzs() {
654654
return satisfiesPzs;
655655
}
656656

657657
/**
658-
* Output only. Zone Separation compliance state of the resource.
658+
* Output only. Reserved for future use.
659659
* @param satisfiesPzs satisfiesPzs or {@code null} for none
660660
*/
661661
public MigrationJob setSatisfiesPzs(java.lang.Boolean satisfiesPzs) {

clients/google-api-services-datamigration/v1/2.0.0/com/google/api/services/datamigration/v1/model/PrivateConnection.java

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -69,14 +69,14 @@ public final class PrivateConnection extends com.google.api.client.json.GenericJ
6969
private java.lang.String name;
7070

7171
/**
72-
* Output only. Zone Isolation compliance state of the resource.
72+
* Output only. Reserved for future use.
7373
* The value may be {@code null}.
7474
*/
7575
@com.google.api.client.util.Key
7676
private java.lang.Boolean satisfiesPzi;
7777

7878
/**
79-
* Output only. Zone Separation compliance state of the resource.
79+
* Output only. Reserved for future use.
8080
* The value may be {@code null}.
8181
*/
8282
@com.google.api.client.util.Key
@@ -193,15 +193,15 @@ public PrivateConnection setName(java.lang.String name) {
193193
}
194194

195195
/**
196-
* Output only. Zone Isolation compliance state of the resource.
196+
* Output only. Reserved for future use.
197197
* @return value or {@code null} for none
198198
*/
199199
public java.lang.Boolean getSatisfiesPzi() {
200200
return satisfiesPzi;
201201
}
202202

203203
/**
204-
* Output only. Zone Isolation compliance state of the resource.
204+
* Output only. Reserved for future use.
205205
* @param satisfiesPzi satisfiesPzi or {@code null} for none
206206
*/
207207
public PrivateConnection setSatisfiesPzi(java.lang.Boolean satisfiesPzi) {
@@ -210,15 +210,15 @@ public PrivateConnection setSatisfiesPzi(java.lang.Boolean satisfiesPzi) {
210210
}
211211

212212
/**
213-
* Output only. Zone Separation compliance state of the resource.
213+
* Output only. Reserved for future use.
214214
* @return value or {@code null} for none
215215
*/
216216
public java.lang.Boolean getSatisfiesPzs() {
217217
return satisfiesPzs;
218218
}
219219

220220
/**
221-
* Output only. Zone Separation compliance state of the resource.
221+
* Output only. Reserved for future use.
222222
* @param satisfiesPzs satisfiesPzs or {@code null} for none
223223
*/
224224
public PrivateConnection setSatisfiesPzs(java.lang.Boolean satisfiesPzs) {

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

Lines changed: 3 additions & 3 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-datamigration</artifactId>
11-
<version>v1-rev20250207-2.0.0</version>
12-
<name>Database Migration API v1-rev20250207-2.0.0</name>
11+
<version>v1-rev20250217-2.0.0</version>
12+
<name>Database Migration API v1-rev20250217-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>
@@ -90,7 +90,7 @@
9090
<windowtitle>Database Migration API ${project.version}</windowtitle>
9191
<links>
9292
<link>http://docs.oracle.com/javase/7/docs/api</link>
93-
<link>https://googleapis.dev/java/google-http-client/1.46.1/</link>
93+
<link>https://googleapis.dev/java/google-http-client/1.46.3/</link>
9494
<link>https://googleapis.dev/java/google-oauth-client/1.38.0/</link>
9595
<link>https://googleapis.dev/java/google-api-client/2.7.2/</link>
9696
</links>

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

clients/google-api-services-datamigration/v1beta1/2.0.0/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@
9090
<windowtitle>Database Migration API ${project.version}</windowtitle>
9191
<links>
9292
<link>http://docs.oracle.com/javase/7/docs/api</link>
93-
<link>https://googleapis.dev/java/google-http-client/1.46.1/</link>
93+
<link>https://googleapis.dev/java/google-http-client/1.46.3/</link>
9494
<link>https://googleapis.dev/java/google-oauth-client/1.38.0/</link>
9595
<link>https://googleapis.dev/java/google-api-client/2.7.2/</link>
9696
</links>

0 commit comments

Comments
 (0)