Skip to content

Commit

Permalink
chore: regenerate datamigration client (#18776)
Browse files Browse the repository at this point in the history
  • Loading branch information
yoshi-code-bot authored Nov 3, 2023
1 parent 2bbc3cd commit a42f249
Show file tree
Hide file tree
Showing 4 changed files with 33 additions and 6 deletions.
4 changes: 2 additions & 2 deletions clients/google-api-services-datamigration/v1/2.0.0/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file:
<dependency>
<groupId>com.google.apis</groupId>
<artifactId>google-api-services-datamigration</artifactId>
<version>v1-rev20231011-2.0.0</version>
<version>v1-rev20231031-2.0.0</version>
</dependency>
</dependencies>
</project>
Expand All @@ -35,7 +35,7 @@ repositories {
mavenCentral()
}
dependencies {
implementation 'com.google.apis:google-api-services-datamigration:v1-rev20231011-2.0.0'
implementation 'com.google.apis:google-api-services-datamigration:v1-rev20231031-2.0.0'
}
```

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,14 @@
@SuppressWarnings("javadoc")
public final class PostgreSqlConnectionProfile extends com.google.api.client.json.GenericJson {

/**
* Optional. If the destination is an AlloyDB database, use this field to provide the AlloyDB
* cluster ID.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.lang.String alloydbClusterId;

/**
* If the source is a Cloud SQL database, use this field to provide the Cloud SQL instance ID of
* the source.
Expand Down Expand Up @@ -105,6 +113,25 @@ public final class PostgreSqlConnectionProfile extends com.google.api.client.jso
@com.google.api.client.util.Key
private java.lang.String username;

/**
* Optional. If the destination is an AlloyDB database, use this field to provide the AlloyDB
* cluster ID.
* @return value or {@code null} for none
*/
public java.lang.String getAlloydbClusterId() {
return alloydbClusterId;
}

/**
* Optional. If the destination is an AlloyDB database, use this field to provide the AlloyDB
* cluster ID.
* @param alloydbClusterId alloydbClusterId or {@code null} for none
*/
public PostgreSqlConnectionProfile setAlloydbClusterId(java.lang.String alloydbClusterId) {
this.alloydbClusterId = alloydbClusterId;
return this;
}

/**
* If the source is a Cloud SQL database, use this field to provide the Cloud SQL instance ID of
* the source.
Expand Down
4 changes: 2 additions & 2 deletions clients/google-api-services-datamigration/v1/2.0.0/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@

<groupId>com.google.apis</groupId>
<artifactId>google-api-services-datamigration</artifactId>
<version>v1-rev20231011-2.0.0</version>
<name>Database Migration API v1-rev20231011-2.0.0</name>
<version>v1-rev20231031-2.0.0</version>
<name>Database Migration API v1-rev20231031-2.0.0</name>
<packaging>jar</packaging>

<inceptionYear>2011</inceptionYear>
Expand Down
4 changes: 2 additions & 2 deletions clients/google-api-services-datamigration/v1/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file:
<dependency>
<groupId>com.google.apis</groupId>
<artifactId>google-api-services-datamigration</artifactId>
<version>v1-rev20231011-2.0.0</version>
<version>v1-rev20231031-2.0.0</version>
</dependency>
</dependencies>
</project>
Expand All @@ -35,7 +35,7 @@ repositories {
mavenCentral()
}
dependencies {
implementation 'com.google.apis:google-api-services-datamigration:v1-rev20231011-2.0.0'
implementation 'com.google.apis:google-api-services-datamigration:v1-rev20231031-2.0.0'
}
```

Expand Down

0 comments on commit a42f249

Please sign in to comment.