Skip to content

Commit c8c968e

Browse files
1 parent 1c9a0d1 commit c8c968e

File tree

10 files changed

+123
-32
lines changed

10 files changed

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

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

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -627,22 +627,22 @@ public List setName(java.lang.String name) {
627627
}
628628

629629
/**
630-
* Optional. A list of extra location types that should be used as conditions for
631-
* controlling the visibility of the locations.
630+
* Optional. Do not use this field. It is unsupported and is ignored unless explicitly
631+
* documented otherwise. This is primarily for internal usage.
632632
*/
633633
@com.google.api.client.util.Key
634634
private java.util.List<java.lang.String> extraLocationTypes;
635635

636-
/** Optional. A list of extra location types that should be used as conditions for controlling the
637-
visibility of the locations.
636+
/** Optional. Do not use this field. It is unsupported and is ignored unless explicitly documented
637+
otherwise. This is primarily for internal usage.
638638
*/
639639
public java.util.List<java.lang.String> getExtraLocationTypes() {
640640
return extraLocationTypes;
641641
}
642642

643643
/**
644-
* Optional. A list of extra location types that should be used as conditions for
645-
* controlling the visibility of the locations.
644+
* Optional. Do not use this field. It is unsupported and is ignored unless explicitly
645+
* documented otherwise. This is primarily for internal usage.
646646
*/
647647
public List setExtraLocationTypes(java.util.List<java.lang.String> extraLocationTypes) {
648648
this.extraLocationTypes = extraLocationTypes;
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,67 @@
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.datamigration.v1.model;
18+
19+
/**
20+
* Metadata for heterogeneous migration jobs objects.
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 Database Migration API. For a detailed explanation
24+
* see:
25+
* <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>
26+
* </p>
27+
*
28+
* @author Google, Inc.
29+
*/
30+
@SuppressWarnings("javadoc")
31+
public final class HeterogeneousMetadata extends com.google.api.client.json.GenericJson {
32+
33+
/**
34+
* The number of unsupported events.
35+
* The value may be {@code null}.
36+
*/
37+
@com.google.api.client.util.Key @com.google.api.client.json.JsonString
38+
private java.lang.Long unsupportedEventsCount;
39+
40+
/**
41+
* The number of unsupported events.
42+
* @return value or {@code null} for none
43+
*/
44+
public java.lang.Long getUnsupportedEventsCount() {
45+
return unsupportedEventsCount;
46+
}
47+
48+
/**
49+
* The number of unsupported events.
50+
* @param unsupportedEventsCount unsupportedEventsCount or {@code null} for none
51+
*/
52+
public HeterogeneousMetadata setUnsupportedEventsCount(java.lang.Long unsupportedEventsCount) {
53+
this.unsupportedEventsCount = unsupportedEventsCount;
54+
return this;
55+
}
56+
57+
@Override
58+
public HeterogeneousMetadata set(String fieldName, Object value) {
59+
return (HeterogeneousMetadata) super.set(fieldName, value);
60+
}
61+
62+
@Override
63+
public HeterogeneousMetadata clone() {
64+
return (HeterogeneousMetadata) super.clone();
65+
}
66+
67+
}

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

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,13 @@ public final class MigrationJobObject extends com.google.api.client.json.Generic
4444
@com.google.api.client.util.Key
4545
private Status error;
4646

47+
/**
48+
* Output only. Metadata for heterogeneous migration jobs objects.
49+
* The value may be {@code null}.
50+
*/
51+
@com.google.api.client.util.Key
52+
private HeterogeneousMetadata heterogeneousMetadata;
53+
4754
/**
4855
* The object's name.
4956
* The value may be {@code null}.
@@ -113,6 +120,23 @@ public MigrationJobObject setError(Status error) {
113120
return this;
114121
}
115122

123+
/**
124+
* Output only. Metadata for heterogeneous migration jobs objects.
125+
* @return value or {@code null} for none
126+
*/
127+
public HeterogeneousMetadata getHeterogeneousMetadata() {
128+
return heterogeneousMetadata;
129+
}
130+
131+
/**
132+
* Output only. Metadata for heterogeneous migration jobs objects.
133+
* @param heterogeneousMetadata heterogeneousMetadata or {@code null} for none
134+
*/
135+
public MigrationJobObject setHeterogeneousMetadata(HeterogeneousMetadata heterogeneousMetadata) {
136+
this.heterogeneousMetadata = heterogeneousMetadata;
137+
return this;
138+
}
139+
116140
/**
117141
* The object's name.
118142
* @return value or {@code null} for none

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

Lines changed: 6 additions & 6 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-rev20250625-2.0.0</version>
12-
<name>Database Migration API v1-rev20250625-2.0.0</name>
11+
<version>v1-rev20250815-2.0.0</version>
12+
<name>Database Migration API v1-rev20250815-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>
@@ -89,9 +89,9 @@
8989
<windowtitle>Database Migration API ${project.version}</windowtitle>
9090
<links>
9191
<link>http://docs.oracle.com/javase/7/docs/api</link>
92-
<link>https://googleapis.dev/java/google-http-client/1.47.1/</link>
93-
<link>https://googleapis.dev/java/google-oauth-client/1.39.0/</link>
94-
<link>https://googleapis.dev/java/google-api-client/2.8.0/</link>
92+
<link>https://googleapis.dev/java/google-http-client/${httpClientLibrary}/</link>
93+
<link>https://googleapis.dev/java/google-oauth-client/${oauthClientLibrary}/</link>
94+
<link>https://googleapis.dev/java/google-api-client/2.7.2/</link>
9595
</links>
9696
</configuration>
9797
</plugin>
@@ -124,7 +124,7 @@
124124
<dependency>
125125
<groupId>com.google.api-client</groupId>
126126
<artifactId>google-api-client</artifactId>
127-
<version>2.8.0</version>
127+
<version>2.7.2</version>
128128
</dependency>
129129
</dependencies>
130130

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

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

clients/google-api-services-datamigration/v1beta1/2.0.0/com/google/api/services/datamigration/v1beta1/DatabaseMigrationService.java

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -445,22 +445,22 @@ public List setName(java.lang.String name) {
445445
}
446446

447447
/**
448-
* Optional. A list of extra location types that should be used as conditions for
449-
* controlling the visibility of the locations.
448+
* Optional. Do not use this field. It is unsupported and is ignored unless explicitly
449+
* documented otherwise. This is primarily for internal usage.
450450
*/
451451
@com.google.api.client.util.Key
452452
private java.util.List<java.lang.String> extraLocationTypes;
453453

454-
/** Optional. A list of extra location types that should be used as conditions for controlling the
455-
visibility of the locations.
454+
/** Optional. Do not use this field. It is unsupported and is ignored unless explicitly documented
455+
otherwise. This is primarily for internal usage.
456456
*/
457457
public java.util.List<java.lang.String> getExtraLocationTypes() {
458458
return extraLocationTypes;
459459
}
460460

461461
/**
462-
* Optional. A list of extra location types that should be used as conditions for
463-
* controlling the visibility of the locations.
462+
* Optional. Do not use this field. It is unsupported and is ignored unless explicitly
463+
* documented otherwise. This is primarily for internal usage.
464464
*/
465465
public List setExtraLocationTypes(java.util.List<java.lang.String> extraLocationTypes) {
466466
this.extraLocationTypes = extraLocationTypes;

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

Lines changed: 6 additions & 6 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>v1beta1-rev20250409-2.0.0</version>
12-
<name>Database Migration API v1beta1-rev20250409-2.0.0</name>
11+
<version>v1beta1-rev20250815-2.0.0</version>
12+
<name>Database Migration API v1beta1-rev20250815-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>
@@ -89,9 +89,9 @@
8989
<windowtitle>Database Migration API ${project.version}</windowtitle>
9090
<links>
9191
<link>http://docs.oracle.com/javase/7/docs/api</link>
92-
<link>https://googleapis.dev/java/google-http-client/1.47.1/</link>
93-
<link>https://googleapis.dev/java/google-oauth-client/1.39.0/</link>
94-
<link>https://googleapis.dev/java/google-api-client/2.8.0/</link>
92+
<link>https://googleapis.dev/java/google-http-client/${httpClientLibrary}/</link>
93+
<link>https://googleapis.dev/java/google-oauth-client/${oauthClientLibrary}/</link>
94+
<link>https://googleapis.dev/java/google-api-client/2.7.2/</link>
9595
</links>
9696
</configuration>
9797
</plugin>
@@ -124,7 +124,7 @@
124124
<dependency>
125125
<groupId>com.google.api-client</groupId>
126126
<artifactId>google-api-client</artifactId>
127-
<version>2.8.0</version>
127+
<version>2.7.2</version>
128128
</dependency>
129129
</dependencies>
130130

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

0 commit comments

Comments
 (0)