Skip to content

Commit 8a82d9b

Browse files
1 parent f25d9a0 commit 8a82d9b

File tree

9 files changed

+73
-28
lines changed

9 files changed

+73
-28
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-rev20260304-2.0.0</version>
25+
<version>v1-rev20260320-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-rev20260304-2.0.0'
38+
implementation 'com.google.apis:google-api-services-datamigration:v1-rev20260320-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: 17 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -494,10 +494,14 @@ public Get set(String parameterName, Object value) {
494494
}
495495
}
496496
/**
497-
* Lists information about the supported locations for this service. This method can be called in
498-
* two ways: * **List all public locations:** Use the path `GET /v1/locations`. * **List project-
499-
* visible locations:** Use the path `GET /v1/projects/{project_id}/locations`. This may include
500-
* public locations as well as private or other locations specifically visible to the project.
497+
* Lists information about the supported locations for this service. This method lists locations
498+
* based on the resource scope provided in the [ListLocationsRequest.name] field: * **Global
499+
* locations**: If `name` is empty, the method lists the public locations available to all projects.
500+
* * **Project-specific locations**: If `name` follows the format `projects/{project}`, the method
501+
* lists locations visible to that specific project. This includes public, private, or other
502+
* project-specific locations enabled for the project. For gRPC and client library implementations,
503+
* the resource name is passed as the `name` field. For direct service calls, the resource name is
504+
* incorporated into the request path based on the specific service implementation and version.
501505
*
502506
* Create a request for the method "locations.list".
503507
*
@@ -521,10 +525,15 @@ public class List extends DatabaseMigrationServiceRequest<com.google.api.service
521525
java.util.regex.Pattern.compile("^projects/[^/]+$");
522526

523527
/**
524-
* Lists information about the supported locations for this service. This method can be called in
525-
* two ways: * **List all public locations:** Use the path `GET /v1/locations`. * **List project-
526-
* visible locations:** Use the path `GET /v1/projects/{project_id}/locations`. This may include
527-
* public locations as well as private or other locations specifically visible to the project.
528+
* Lists information about the supported locations for this service. This method lists locations
529+
* based on the resource scope provided in the [ListLocationsRequest.name] field: * **Global
530+
* locations**: If `name` is empty, the method lists the public locations available to all
531+
* projects. * **Project-specific locations**: If `name` follows the format `projects/{project}`,
532+
* the method lists locations visible to that specific project. This includes public, private, or
533+
* other project-specific locations enabled for the project. For gRPC and client library
534+
* implementations, the resource name is passed as the `name` field. For direct service calls, the
535+
* resource name is incorporated into the request path based on the specific service
536+
* implementation and version.
528537
*
529538
* Create a request for the method "locations.list".
530539
*

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

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,14 @@ public final class PostgreSqlConnectionProfile extends com.google.api.client.jso
5353
@com.google.api.client.util.Key
5454
private java.lang.String database;
5555

56+
/**
57+
* Optional. If true, Database Migration Service will use IAM database authentication to connect
58+
* to the database.
59+
* The value may be {@code null}.
60+
*/
61+
@com.google.api.client.util.Key
62+
private java.lang.Boolean enableIamAuthentication;
63+
5664
/**
5765
* Forward SSH tunnel connectivity.
5866
* The value may be {@code null}.
@@ -189,6 +197,25 @@ public PostgreSqlConnectionProfile setDatabase(java.lang.String database) {
189197
return this;
190198
}
191199

200+
/**
201+
* Optional. If true, Database Migration Service will use IAM database authentication to connect
202+
* to the database.
203+
* @return value or {@code null} for none
204+
*/
205+
public java.lang.Boolean getEnableIamAuthentication() {
206+
return enableIamAuthentication;
207+
}
208+
209+
/**
210+
* Optional. If true, Database Migration Service will use IAM database authentication to connect
211+
* to the database.
212+
* @param enableIamAuthentication enableIamAuthentication or {@code null} for none
213+
*/
214+
public PostgreSqlConnectionProfile setEnableIamAuthentication(java.lang.Boolean enableIamAuthentication) {
215+
this.enableIamAuthentication = enableIamAuthentication;
216+
return this;
217+
}
218+
192219
/**
193220
* Forward SSH tunnel connectivity.
194221
* @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-rev20260304-2.0.0</version>
12-
<name>Database Migration API v1-rev20260304-2.0.0</name>
11+
<version>v1-rev20260320-2.0.0</version>
12+
<name>Database Migration API v1-rev20260320-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-rev20260304-2.0.0</version>
25+
<version>v1-rev20260320-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-rev20260304-2.0.0'
38+
implementation 'com.google.apis:google-api-services-datamigration:v1-rev20260320-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-rev20260225-2.0.0</version>
25+
<version>v1beta1-rev20260320-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-rev20260225-2.0.0'
38+
implementation 'com.google.apis:google-api-services-datamigration:v1beta1-rev20260320-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: 17 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -312,10 +312,14 @@ public Get set(String parameterName, Object value) {
312312
}
313313
}
314314
/**
315-
* Lists information about the supported locations for this service. This method can be called in
316-
* two ways: * **List all public locations:** Use the path `GET /v1/locations`. * **List project-
317-
* visible locations:** Use the path `GET /v1/projects/{project_id}/locations`. This may include
318-
* public locations as well as private or other locations specifically visible to the project.
315+
* Lists information about the supported locations for this service. This method lists locations
316+
* based on the resource scope provided in the [ListLocationsRequest.name] field: * **Global
317+
* locations**: If `name` is empty, the method lists the public locations available to all projects.
318+
* * **Project-specific locations**: If `name` follows the format `projects/{project}`, the method
319+
* lists locations visible to that specific project. This includes public, private, or other
320+
* project-specific locations enabled for the project. For gRPC and client library implementations,
321+
* the resource name is passed as the `name` field. For direct service calls, the resource name is
322+
* incorporated into the request path based on the specific service implementation and version.
319323
*
320324
* Create a request for the method "locations.list".
321325
*
@@ -339,10 +343,15 @@ public class List extends DatabaseMigrationServiceRequest<com.google.api.service
339343
java.util.regex.Pattern.compile("^projects/[^/]+$");
340344

341345
/**
342-
* Lists information about the supported locations for this service. This method can be called in
343-
* two ways: * **List all public locations:** Use the path `GET /v1/locations`. * **List project-
344-
* visible locations:** Use the path `GET /v1/projects/{project_id}/locations`. This may include
345-
* public locations as well as private or other locations specifically visible to the project.
346+
* Lists information about the supported locations for this service. This method lists locations
347+
* based on the resource scope provided in the [ListLocationsRequest.name] field: * **Global
348+
* locations**: If `name` is empty, the method lists the public locations available to all
349+
* projects. * **Project-specific locations**: If `name` follows the format `projects/{project}`,
350+
* the method lists locations visible to that specific project. This includes public, private, or
351+
* other project-specific locations enabled for the project. For gRPC and client library
352+
* implementations, the resource name is passed as the `name` field. For direct service calls, the
353+
* resource name is incorporated into the request path based on the specific service
354+
* implementation and version.
346355
*
347356
* Create a request for the method "locations.list".
348357
*

clients/google-api-services-datamigration/v1beta1/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>v1beta1-rev20260225-2.0.0</version>
12-
<name>Database Migration API v1beta1-rev20260225-2.0.0</name>
11+
<version>v1beta1-rev20260320-2.0.0</version>
12+
<name>Database Migration API v1beta1-rev20260320-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

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

0 commit comments

Comments
 (0)