Skip to content

Commit 1b0ce81

Browse files
1 parent 023517d commit 1b0ce81

29 files changed

Lines changed: 3919 additions & 48 deletions

clients/google-api-services-alloydb/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-alloydb</artifactId>
25-
<version>v1-rev20260226-2.0.0</version>
25+
<version>v1-rev20260326-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-alloydb:v1-rev20260226-2.0.0'
38+
implementation 'com.google.apis:google-api-services-alloydb:v1-rev20260326-2.0.0'
3939
}
4040
```
4141

clients/google-api-services-alloydb/v1/2.0.0/com/google/api/services/alloydb/v1/CloudAlloyDBAdmin.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 CloudAlloyDBAdminRequest<com.google.api.services.alloy
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-alloydb/v1/2.0.0/com/google/api/services/alloydb/v1/model/Node.java

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,13 @@ public final class Node extends com.google.api.client.json.GenericJson {
4444
@com.google.api.client.util.Key
4545
private java.lang.String ip;
4646

47+
/**
48+
* Output only. Indicates whether the node set up to be configured as a hot standby.
49+
* The value may be {@code null}.
50+
*/
51+
@com.google.api.client.util.Key
52+
private java.lang.Boolean isHotStandby;
53+
4754
/**
4855
* Output only. Determined by state of the compute VM and postgres-service health. Compute VM
4956
* state can have values listed in https://cloud.google.com/compute/docs/instances/instance-life-
@@ -94,6 +101,23 @@ public Node setIp(java.lang.String ip) {
94101
return this;
95102
}
96103

104+
/**
105+
* Output only. Indicates whether the node set up to be configured as a hot standby.
106+
* @return value or {@code null} for none
107+
*/
108+
public java.lang.Boolean getIsHotStandby() {
109+
return isHotStandby;
110+
}
111+
112+
/**
113+
* Output only. Indicates whether the node set up to be configured as a hot standby.
114+
* @param isHotStandby isHotStandby or {@code null} for none
115+
*/
116+
public Node setIsHotStandby(java.lang.Boolean isHotStandby) {
117+
this.isHotStandby = isHotStandby;
118+
return this;
119+
}
120+
97121
/**
98122
* Output only. Determined by state of the compute VM and postgres-service health. Compute VM
99123
* state can have values listed in https://cloud.google.com/compute/docs/instances/instance-life-

clients/google-api-services-alloydb/v1/2.0.0/com/google/api/services/alloydb/v1/model/StorageDatabasecenterPartnerapiV1mainDatabaseResourceMetadata.java

Lines changed: 25 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
package com.google.api.services.alloydb.v1.model;
1818

1919
/**
20-
* Common model for database resource instance metadata. Next ID: 31
20+
* Common model for database resource instance metadata. Next ID: 32
2121
*
2222
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
2323
* transmitted over HTTP when working with the AlloyDB API. For a detailed explanation see:
@@ -151,6 +151,13 @@ public final class StorageDatabasecenterPartnerapiV1mainDatabaseResourceMetadata
151151
@com.google.api.client.util.Key
152152
private StorageDatabasecenterPartnerapiV1mainResourceMaintenanceInfo maintenanceInfo;
153153

154+
/**
155+
* Optional. The modes of the database resource.
156+
* The value may be {@code null}.
157+
*/
158+
@com.google.api.client.util.Key
159+
private java.util.List<java.lang.String> modes;
160+
154161
/**
155162
* Identifier for this resource's immediate parent/primary resource if the current resource is a
156163
* replica or derived form of another Database resource. Else it would be NULL. REQUIRED if the
@@ -532,6 +539,23 @@ public StorageDatabasecenterPartnerapiV1mainDatabaseResourceMetadata setMaintena
532539
return this;
533540
}
534541

542+
/**
543+
* Optional. The modes of the database resource.
544+
* @return value or {@code null} for none
545+
*/
546+
public java.util.List<java.lang.String> getModes() {
547+
return modes;
548+
}
549+
550+
/**
551+
* Optional. The modes of the database resource.
552+
* @param modes modes or {@code null} for none
553+
*/
554+
public StorageDatabasecenterPartnerapiV1mainDatabaseResourceMetadata setModes(java.util.List<java.lang.String> modes) {
555+
this.modes = modes;
556+
return this;
557+
}
558+
535559
/**
536560
* Identifier for this resource's immediate parent/primary resource if the current resource is a
537561
* replica or derived form of another Database resource. Else it would be NULL. REQUIRED if the

clients/google-api-services-alloydb/v1/2.0.0/com/google/api/services/alloydb/v1/model/StorageDatabasecenterPartnerapiV1mainDatabaseResourceSignalData.java

Lines changed: 25 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
/**
2020
* Database resource signal data. This is used to send signals to Condor which are based on the
2121
* DB/Instance/Fleet level configurations. These will be used to send signals for all inventory
22-
* types. Next ID: 9
22+
* types. Next ID: 10
2323
*
2424
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
2525
* transmitted over HTTP when working with the AlloyDB API. For a detailed explanation see:
@@ -52,6 +52,13 @@ public final class StorageDatabasecenterPartnerapiV1mainDatabaseResourceSignalDa
5252
@com.google.api.client.util.Key
5353
private String lastRefreshTime;
5454

55+
/**
56+
* Resource location.
57+
* The value may be {@code null}.
58+
*/
59+
@com.google.api.client.util.Key
60+
private java.lang.String location;
61+
5562
/**
5663
* Database resource id.
5764
* The value may be {@code null}.
@@ -138,6 +145,23 @@ public StorageDatabasecenterPartnerapiV1mainDatabaseResourceSignalData setLastRe
138145
return this;
139146
}
140147

148+
/**
149+
* Resource location.
150+
* @return value or {@code null} for none
151+
*/
152+
public java.lang.String getLocation() {
153+
return location;
154+
}
155+
156+
/**
157+
* Resource location.
158+
* @param location location or {@code null} for none
159+
*/
160+
public StorageDatabasecenterPartnerapiV1mainDatabaseResourceSignalData setLocation(java.lang.String location) {
161+
this.location = location;
162+
return this;
163+
}
164+
141165
/**
142166
* Database resource id.
143167
* @return value or {@code null} for none

clients/google-api-services-alloydb/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-alloydb</artifactId>
11-
<version>v1-rev20260226-2.0.0</version>
12-
<name>AlloyDB API v1-rev20260226-2.0.0</name>
11+
<version>v1-rev20260326-2.0.0</version>
12+
<name>AlloyDB API v1-rev20260326-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

clients/google-api-services-alloydb/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-alloydb</artifactId>
25-
<version>v1-rev20260226-2.0.0</version>
25+
<version>v1-rev20260326-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-alloydb:v1-rev20260226-2.0.0'
38+
implementation 'com.google.apis:google-api-services-alloydb:v1-rev20260326-2.0.0'
3939
}
4040
```
4141

clients/google-api-services-alloydb/v1alpha/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-alloydb</artifactId>
25-
<version>v1alpha-rev20260226-2.0.0</version>
25+
<version>v1alpha-rev20260326-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-alloydb:v1alpha-rev20260226-2.0.0'
38+
implementation 'com.google.apis:google-api-services-alloydb:v1alpha-rev20260326-2.0.0'
3939
}
4040
```
4141

0 commit comments

Comments
 (0)