Skip to content

Commit 3c4faba

Browse files
1 parent bb056d3 commit 3c4faba

File tree

4 files changed

+54
-6
lines changed

4 files changed

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

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

Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,13 @@ public final class ConversionWorkspace extends com.google.api.client.json.Generi
4444
@com.google.api.client.util.Key
4545
private DatabaseEngineInfo destination;
4646

47+
/**
48+
* Optional. The provider for the destination database.
49+
* The value may be {@code null}.
50+
*/
51+
@com.google.api.client.util.Key
52+
private java.lang.String destinationProvider;
53+
4754
/**
4855
* Optional. The display name for the workspace.
4956
* The value may be {@code null}.
@@ -98,6 +105,13 @@ public final class ConversionWorkspace extends com.google.api.client.json.Generi
98105
@com.google.api.client.util.Key
99106
private DatabaseEngineInfo source;
100107

108+
/**
109+
* Optional. The provider for the source database.
110+
* The value may be {@code null}.
111+
*/
112+
@com.google.api.client.util.Key
113+
private java.lang.String sourceProvider;
114+
101115
/**
102116
* Output only. The timestamp when the workspace resource was last updated.
103117
* The value may be {@code null}.
@@ -139,6 +153,23 @@ public ConversionWorkspace setDestination(DatabaseEngineInfo destination) {
139153
return this;
140154
}
141155

156+
/**
157+
* Optional. The provider for the destination database.
158+
* @return value or {@code null} for none
159+
*/
160+
public java.lang.String getDestinationProvider() {
161+
return destinationProvider;
162+
}
163+
164+
/**
165+
* Optional. The provider for the destination database.
166+
* @param destinationProvider destinationProvider or {@code null} for none
167+
*/
168+
public ConversionWorkspace setDestinationProvider(java.lang.String destinationProvider) {
169+
this.destinationProvider = destinationProvider;
170+
return this;
171+
}
172+
142173
/**
143174
* Optional. The display name for the workspace.
144175
* @return value or {@code null} for none
@@ -268,6 +299,23 @@ public ConversionWorkspace setSource(DatabaseEngineInfo source) {
268299
return this;
269300
}
270301

302+
/**
303+
* Optional. The provider for the source database.
304+
* @return value or {@code null} for none
305+
*/
306+
public java.lang.String getSourceProvider() {
307+
return sourceProvider;
308+
}
309+
310+
/**
311+
* Optional. The provider for the source database.
312+
* @param sourceProvider sourceProvider or {@code null} for none
313+
*/
314+
public ConversionWorkspace setSourceProvider(java.lang.String sourceProvider) {
315+
this.sourceProvider = sourceProvider;
316+
return this;
317+
}
318+
271319
/**
272320
* Output only. The timestamp when the workspace resource was last updated.
273321
* @return value or {@code null} for none

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-rev20250416-2.0.0</version>
12-
<name>Database Migration API v1-rev20250416-2.0.0</name>
11+
<version>v1-rev20250507-2.0.0</version>
12+
<name>Database Migration API v1-rev20250507-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-rev20250416-2.0.0</version>
25+
<version>v1-rev20250507-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-rev20250416-2.0.0'
38+
implementation 'com.google.apis:google-api-services-datamigration:v1-rev20250507-2.0.0'
3939
}
4040
```
4141

0 commit comments

Comments
 (0)