Skip to content

Commit 9f52e35

Browse files
1 parent 4980f43 commit 9f52e35

File tree

9 files changed

+162
-18
lines changed

9 files changed

+162
-18
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-rev20241211-2.0.0</version>
25+
<version>v1-rev20241231-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-rev20241211-2.0.0'
38+
implementation 'com.google.apis:google-api-services-datamigration:v1-rev20241231-2.0.0'
3939
}
4040
```
4141

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

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

121+
/**
122+
* Output only. Zone Isolation compliance state of the resource.
123+
* The value may be {@code null}.
124+
*/
125+
@com.google.api.client.util.Key
126+
private java.lang.Boolean satisfiesPzi;
127+
128+
/**
129+
* Output only. Zone Separation compliance state of the resource.
130+
* The value may be {@code null}.
131+
*/
132+
@com.google.api.client.util.Key
133+
private java.lang.Boolean satisfiesPzs;
134+
121135
/**
122136
* Connection profile for a SQL Server data source.
123137
* The value may be {@code null}.
@@ -352,6 +366,40 @@ public ConnectionProfile setRole(java.lang.String role) {
352366
return this;
353367
}
354368

369+
/**
370+
* Output only. Zone Isolation compliance state of the resource.
371+
* @return value or {@code null} for none
372+
*/
373+
public java.lang.Boolean getSatisfiesPzi() {
374+
return satisfiesPzi;
375+
}
376+
377+
/**
378+
* Output only. Zone Isolation compliance state of the resource.
379+
* @param satisfiesPzi satisfiesPzi or {@code null} for none
380+
*/
381+
public ConnectionProfile setSatisfiesPzi(java.lang.Boolean satisfiesPzi) {
382+
this.satisfiesPzi = satisfiesPzi;
383+
return this;
384+
}
385+
386+
/**
387+
* Output only. Zone Separation compliance state of the resource.
388+
* @return value or {@code null} for none
389+
*/
390+
public java.lang.Boolean getSatisfiesPzs() {
391+
return satisfiesPzs;
392+
}
393+
394+
/**
395+
* Output only. Zone Separation compliance state of the resource.
396+
* @param satisfiesPzs satisfiesPzs or {@code null} for none
397+
*/
398+
public ConnectionProfile setSatisfiesPzs(java.lang.Boolean satisfiesPzs) {
399+
this.satisfiesPzs = satisfiesPzs;
400+
return this;
401+
}
402+
355403
/**
356404
* Connection profile for a SQL Server data source.
357405
* @return value or {@code null} for none

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

Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -186,6 +186,20 @@ public final class MigrationJob extends com.google.api.client.json.GenericJson {
186186
@com.google.api.client.util.Key
187187
private ReverseSshConnectivity reverseSshConnectivity;
188188

189+
/**
190+
* Output only. Zone Isolation compliance state of the resource.
191+
* The value may be {@code null}.
192+
*/
193+
@com.google.api.client.util.Key
194+
private java.lang.Boolean satisfiesPzi;
195+
196+
/**
197+
* Output only. Zone Separation compliance state of the resource.
198+
* The value may be {@code null}.
199+
*/
200+
@com.google.api.client.util.Key
201+
private java.lang.Boolean satisfiesPzs;
202+
189203
/**
190204
* Required. The resource name (URI) of the source connection profile.
191205
* The value may be {@code null}.
@@ -615,6 +629,40 @@ public MigrationJob setReverseSshConnectivity(ReverseSshConnectivity reverseSshC
615629
return this;
616630
}
617631

632+
/**
633+
* Output only. Zone Isolation compliance state of the resource.
634+
* @return value or {@code null} for none
635+
*/
636+
public java.lang.Boolean getSatisfiesPzi() {
637+
return satisfiesPzi;
638+
}
639+
640+
/**
641+
* Output only. Zone Isolation compliance state of the resource.
642+
* @param satisfiesPzi satisfiesPzi or {@code null} for none
643+
*/
644+
public MigrationJob setSatisfiesPzi(java.lang.Boolean satisfiesPzi) {
645+
this.satisfiesPzi = satisfiesPzi;
646+
return this;
647+
}
648+
649+
/**
650+
* Output only. Zone Separation compliance state of the resource.
651+
* @return value or {@code null} for none
652+
*/
653+
public java.lang.Boolean getSatisfiesPzs() {
654+
return satisfiesPzs;
655+
}
656+
657+
/**
658+
* Output only. Zone Separation compliance state of the resource.
659+
* @param satisfiesPzs satisfiesPzs or {@code null} for none
660+
*/
661+
public MigrationJob setSatisfiesPzs(java.lang.Boolean satisfiesPzs) {
662+
this.satisfiesPzs = satisfiesPzs;
663+
return this;
664+
}
665+
618666
/**
619667
* Required. The resource name (URI) of the source connection profile.
620668
* @return value or {@code null} for none

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

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

71+
/**
72+
* Output only. Zone Isolation compliance state of the resource.
73+
* The value may be {@code null}.
74+
*/
75+
@com.google.api.client.util.Key
76+
private java.lang.Boolean satisfiesPzi;
77+
78+
/**
79+
* Output only. Zone Separation compliance state of the resource.
80+
* The value may be {@code null}.
81+
*/
82+
@com.google.api.client.util.Key
83+
private java.lang.Boolean satisfiesPzs;
84+
7185
/**
7286
* Output only. The state of the private connection.
7387
* The value may be {@code null}.
@@ -178,6 +192,40 @@ public PrivateConnection setName(java.lang.String name) {
178192
return this;
179193
}
180194

195+
/**
196+
* Output only. Zone Isolation compliance state of the resource.
197+
* @return value or {@code null} for none
198+
*/
199+
public java.lang.Boolean getSatisfiesPzi() {
200+
return satisfiesPzi;
201+
}
202+
203+
/**
204+
* Output only. Zone Isolation compliance state of the resource.
205+
* @param satisfiesPzi satisfiesPzi or {@code null} for none
206+
*/
207+
public PrivateConnection setSatisfiesPzi(java.lang.Boolean satisfiesPzi) {
208+
this.satisfiesPzi = satisfiesPzi;
209+
return this;
210+
}
211+
212+
/**
213+
* Output only. Zone Separation compliance state of the resource.
214+
* @return value or {@code null} for none
215+
*/
216+
public java.lang.Boolean getSatisfiesPzs() {
217+
return satisfiesPzs;
218+
}
219+
220+
/**
221+
* Output only. Zone Separation compliance state of the resource.
222+
* @param satisfiesPzs satisfiesPzs or {@code null} for none
223+
*/
224+
public PrivateConnection setSatisfiesPzs(java.lang.Boolean satisfiesPzs) {
225+
this.satisfiesPzs = satisfiesPzs;
226+
return this;
227+
}
228+
181229
/**
182230
* Output only. The state of the private connection.
183231
* @return value or {@code null} for none

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,22 +31,22 @@
3131
public final class SourceObjectConfig extends com.google.api.client.json.GenericJson {
3232

3333
/**
34-
* The object identifier.
34+
* Optional. The object identifier.
3535
* The value may be {@code null}.
3636
*/
3737
@com.google.api.client.util.Key
3838
private SourceObjectIdentifier objectIdentifier;
3939

4040
/**
41-
* The object identifier.
41+
* Optional. The object identifier.
4242
* @return value or {@code null} for none
4343
*/
4444
public SourceObjectIdentifier getObjectIdentifier() {
4545
return objectIdentifier;
4646
}
4747

4848
/**
49-
* The object identifier.
49+
* Optional. The object identifier.
5050
* @param objectIdentifier objectIdentifier or {@code null} for none
5151
*/
5252
public SourceObjectConfig setObjectIdentifier(SourceObjectIdentifier objectIdentifier) {

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

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,8 @@
3131
public final class SourceObjectIdentifier extends com.google.api.client.json.GenericJson {
3232

3333
/**
34-
* The database name. This will be required only if the object uses a database name as part of its
35-
* unique identifier.
34+
* Optional. The database name. This will be required only if the object uses a database name as
35+
* part of its unique identifier.
3636
* The value may be {@code null}.
3737
*/
3838
@com.google.api.client.util.Key
@@ -46,17 +46,17 @@ public final class SourceObjectIdentifier extends com.google.api.client.json.Gen
4646
private java.lang.String type;
4747

4848
/**
49-
* The database name. This will be required only if the object uses a database name as part of its
50-
* unique identifier.
49+
* Optional. The database name. This will be required only if the object uses a database name as
50+
* part of its unique identifier.
5151
* @return value or {@code null} for none
5252
*/
5353
public java.lang.String getDatabase() {
5454
return database;
5555
}
5656

5757
/**
58-
* The database name. This will be required only if the object uses a database name as part of its
59-
* unique identifier.
58+
* Optional. The database name. This will be required only if the object uses a database name as
59+
* part of its unique identifier.
6060
* @param database database or {@code null} for none
6161
*/
6262
public SourceObjectIdentifier setDatabase(java.lang.String database) {

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
public final class SourceObjectsConfig extends com.google.api.client.json.GenericJson {
3232

3333
/**
34-
* The list of the objects to be migrated.
34+
* Optional. The list of the objects to be migrated.
3535
* The value may be {@code null}.
3636
*/
3737
@com.google.api.client.util.Key
@@ -51,15 +51,15 @@ public final class SourceObjectsConfig extends com.google.api.client.json.Generi
5151
private java.lang.String objectsSelectionType;
5252

5353
/**
54-
* The list of the objects to be migrated.
54+
* Optional. The list of the objects to be migrated.
5555
* @return value or {@code null} for none
5656
*/
5757
public java.util.List<SourceObjectConfig> getObjectConfigs() {
5858
return objectConfigs;
5959
}
6060

6161
/**
62-
* The list of the objects to be migrated.
62+
* Optional. The list of the objects to be migrated.
6363
* @param objectConfigs objectConfigs or {@code null} for none
6464
*/
6565
public SourceObjectsConfig setObjectConfigs(java.util.List<SourceObjectConfig> objectConfigs) {

clients/google-api-services-datamigration/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-datamigration</artifactId>
11-
<version>v1-rev20241211-2.0.0</version>
12-
<name>Database Migration API v1-rev20241211-2.0.0</name>
11+
<version>v1-rev20241231-2.0.0</version>
12+
<name>Database Migration API v1-rev20241231-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

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

0 commit comments

Comments
 (0)