Skip to content

Commit 0d853b9

Browse files
1 parent 36eb869 commit 0d853b9

File tree

4 files changed

+60
-6
lines changed

4 files changed

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

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

Lines changed: 54 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,22 @@ public final class SourceObjectIdentifier extends com.google.api.client.json.Gen
3838
@com.google.api.client.util.Key
3939
private java.lang.String database;
4040

41+
/**
42+
* Optional. The schema name. This will be required only if the object uses a schema name as part
43+
* of its unique identifier.
44+
* The value may be {@code null}.
45+
*/
46+
@com.google.api.client.util.Key
47+
private java.lang.String schema;
48+
49+
/**
50+
* Optional. The table name. This will be required only if the object is a level below database or
51+
* schema.
52+
* The value may be {@code null}.
53+
*/
54+
@com.google.api.client.util.Key
55+
private java.lang.String table;
56+
4157
/**
4258
* Required. The type of the migration job object.
4359
* The value may be {@code null}.
@@ -64,6 +80,44 @@ public SourceObjectIdentifier setDatabase(java.lang.String database) {
6480
return this;
6581
}
6682

83+
/**
84+
* Optional. The schema name. This will be required only if the object uses a schema name as part
85+
* of its unique identifier.
86+
* @return value or {@code null} for none
87+
*/
88+
public java.lang.String getSchema() {
89+
return schema;
90+
}
91+
92+
/**
93+
* Optional. The schema name. This will be required only if the object uses a schema name as part
94+
* of its unique identifier.
95+
* @param schema schema or {@code null} for none
96+
*/
97+
public SourceObjectIdentifier setSchema(java.lang.String schema) {
98+
this.schema = schema;
99+
return this;
100+
}
101+
102+
/**
103+
* Optional. The table name. This will be required only if the object is a level below database or
104+
* schema.
105+
* @return value or {@code null} for none
106+
*/
107+
public java.lang.String getTable() {
108+
return table;
109+
}
110+
111+
/**
112+
* Optional. The table name. This will be required only if the object is a level below database or
113+
* schema.
114+
* @param table table or {@code null} for none
115+
*/
116+
public SourceObjectIdentifier setTable(java.lang.String table) {
117+
this.table = table;
118+
return this;
119+
}
120+
67121
/**
68122
* Required. The type of the migration job object.
69123
* @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-rev20250409-2.0.0</version>
12-
<name>Database Migration API v1-rev20250409-2.0.0</name>
11+
<version>v1-rev20250416-2.0.0</version>
12+
<name>Database Migration API v1-rev20250416-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-rev20250409-2.0.0</version>
25+
<version>v1-rev20250416-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-rev20250409-2.0.0'
38+
implementation 'com.google.apis:google-api-services-datamigration:v1-rev20250416-2.0.0'
3939
}
4040
```
4141

0 commit comments

Comments
 (0)