Skip to content

Commit 2d6a1cc

Browse files
1 parent 77ff85f commit 2d6a1cc

File tree

21 files changed

+351
-21
lines changed

21 files changed

+351
-21
lines changed

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-rev20251023-2.0.0</version>
25+
<version>v1-rev20251106-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-rev20251023-2.0.0'
38+
implementation 'com.google.apis:google-api-services-alloydb:v1-rev20251106-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: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1121,6 +1121,22 @@ public Get setName(java.lang.String name) {
11211121
return this;
11221122
}
11231123

1124+
/** Optional. The view of the backup to return. */
1125+
@com.google.api.client.util.Key
1126+
private java.lang.String view;
1127+
1128+
/** Optional. The view of the backup to return.
1129+
*/
1130+
public java.lang.String getView() {
1131+
return view;
1132+
}
1133+
1134+
/** Optional. The view of the backup to return. */
1135+
public Get setView(java.lang.String view) {
1136+
this.view = view;
1137+
return this;
1138+
}
1139+
11241140
@Override
11251141
public Get set(String parameterName, Object value) {
11261142
return (Get) super.set(parameterName, value);
@@ -1330,6 +1346,22 @@ public List setPageToken(java.lang.String pageToken) {
13301346
return this;
13311347
}
13321348

1349+
/** Optional. The view of the backup to return. */
1350+
@com.google.api.client.util.Key
1351+
private java.lang.String view;
1352+
1353+
/** Optional. The view of the backup to return.
1354+
*/
1355+
public java.lang.String getView() {
1356+
return view;
1357+
}
1358+
1359+
/** Optional. The view of the backup to return. */
1360+
public List setView(java.lang.String view) {
1361+
this.view = view;
1362+
return this;
1363+
}
1364+
13331365
@Override
13341366
public List set(String parameterName, Object value) {
13351367
return (List) super.set(parameterName, value);

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

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -190,6 +190,14 @@ public final class Cluster extends com.google.api.client.json.GenericJson {
190190
@com.google.api.client.util.Key
191191
private MaintenanceUpdatePolicy maintenanceUpdatePolicy;
192192

193+
/**
194+
* Input only. Policy to use to automatically select the maintenance version to which to update
195+
* the cluster's instances.
196+
* The value may be {@code null}.
197+
*/
198+
@com.google.api.client.util.Key
199+
private java.lang.String maintenanceVersionSelectionPolicy;
200+
193201
/**
194202
* Output only. Cluster created via DMS migration.
195203
* The value may be {@code null}.
@@ -694,6 +702,25 @@ public Cluster setMaintenanceUpdatePolicy(MaintenanceUpdatePolicy maintenanceUpd
694702
return this;
695703
}
696704

705+
/**
706+
* Input only. Policy to use to automatically select the maintenance version to which to update
707+
* the cluster's instances.
708+
* @return value or {@code null} for none
709+
*/
710+
public java.lang.String getMaintenanceVersionSelectionPolicy() {
711+
return maintenanceVersionSelectionPolicy;
712+
}
713+
714+
/**
715+
* Input only. Policy to use to automatically select the maintenance version to which to update
716+
* the cluster's instances.
717+
* @param maintenanceVersionSelectionPolicy maintenanceVersionSelectionPolicy or {@code null} for none
718+
*/
719+
public Cluster setMaintenanceVersionSelectionPolicy(java.lang.String maintenanceVersionSelectionPolicy) {
720+
this.maintenanceVersionSelectionPolicy = maintenanceVersionSelectionPolicy;
721+
return this;
722+
}
723+
697724
/**
698725
* Output only. Cluster created via DMS migration.
699726
* @return value or {@code null} for none

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

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -156,6 +156,14 @@ public final class Instance extends com.google.api.client.json.GenericJson {
156156
@com.google.api.client.util.Key
157157
private MachineConfig machineConfig;
158158

159+
/**
160+
* Output only. Maintenance version of the instance, for example: POSTGRES_15.2025_07_15.04_00.
161+
* Output only. Update this field via the parent cluster's maintenance_version field(s).
162+
* The value may be {@code null}.
163+
*/
164+
@com.google.api.client.util.Key
165+
private java.lang.String maintenanceVersionName;
166+
159167
/**
160168
* Output only. The name of the instance resource with the format: *
161169
* projects/{project}/locations/{region}/clusters/{cluster_id}/instances/{instance_id} where the
@@ -570,6 +578,25 @@ public Instance setMachineConfig(MachineConfig machineConfig) {
570578
return this;
571579
}
572580

581+
/**
582+
* Output only. Maintenance version of the instance, for example: POSTGRES_15.2025_07_15.04_00.
583+
* Output only. Update this field via the parent cluster's maintenance_version field(s).
584+
* @return value or {@code null} for none
585+
*/
586+
public java.lang.String getMaintenanceVersionName() {
587+
return maintenanceVersionName;
588+
}
589+
590+
/**
591+
* Output only. Maintenance version of the instance, for example: POSTGRES_15.2025_07_15.04_00.
592+
* Output only. Update this field via the parent cluster's maintenance_version field(s).
593+
* @param maintenanceVersionName maintenanceVersionName or {@code null} for none
594+
*/
595+
public Instance setMaintenanceVersionName(java.lang.String maintenanceVersionName) {
596+
this.maintenanceVersionName = maintenanceVersionName;
597+
return this;
598+
}
599+
573600
/**
574601
* Output only. The name of the instance resource with the format: *
575602
* projects/{project}/locations/{region}/clusters/{cluster_id}/instances/{instance_id} where the

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: 29
20+
* Common model for database resource instance metadata. Next ID: 30
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:
@@ -123,6 +123,13 @@ public final class StorageDatabasecenterPartnerapiV1mainDatabaseResourceMetadata
123123
@com.google.api.client.util.Key
124124
private java.lang.String instanceType;
125125

126+
/**
127+
* Optional. Whether deletion protection is enabled for this resource.
128+
* The value may be {@code null}.
129+
*/
130+
@com.google.api.client.util.Key
131+
private java.lang.Boolean isDeletionProtectionEnabled;
132+
126133
/**
127134
* The resource location. REQUIRED
128135
* The value may be {@code null}.
@@ -450,6 +457,23 @@ public StorageDatabasecenterPartnerapiV1mainDatabaseResourceMetadata setInstance
450457
return this;
451458
}
452459

460+
/**
461+
* Optional. Whether deletion protection is enabled for this resource.
462+
* @return value or {@code null} for none
463+
*/
464+
public java.lang.Boolean getIsDeletionProtectionEnabled() {
465+
return isDeletionProtectionEnabled;
466+
}
467+
468+
/**
469+
* Optional. Whether deletion protection is enabled for this resource.
470+
* @param isDeletionProtectionEnabled isDeletionProtectionEnabled or {@code null} for none
471+
*/
472+
public StorageDatabasecenterPartnerapiV1mainDatabaseResourceMetadata setIsDeletionProtectionEnabled(java.lang.Boolean isDeletionProtectionEnabled) {
473+
this.isDeletionProtectionEnabled = isDeletionProtectionEnabled;
474+
return this;
475+
}
476+
453477
/**
454478
* The resource location. REQUIRED
455479
* @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-rev20251023-2.0.0</version>
12-
<name>AlloyDB API v1-rev20251023-2.0.0</name>
11+
<version>v1-rev20251106-2.0.0</version>
12+
<name>AlloyDB API v1-rev20251106-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-rev20251023-2.0.0</version>
25+
<version>v1-rev20251106-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-rev20251023-2.0.0'
38+
implementation 'com.google.apis:google-api-services-alloydb:v1-rev20251106-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-rev20251023-2.0.0</version>
25+
<version>v1alpha-rev20251106-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-rev20251023-2.0.0'
38+
implementation 'com.google.apis:google-api-services-alloydb:v1alpha-rev20251106-2.0.0'
3939
}
4040
```
4141

clients/google-api-services-alloydb/v1alpha/2.0.0/com/google/api/services/alloydb/v1alpha/CloudAlloyDBAdmin.java

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1121,6 +1121,22 @@ public Get setName(java.lang.String name) {
11211121
return this;
11221122
}
11231123

1124+
/** Optional. The view of the backup to return. */
1125+
@com.google.api.client.util.Key
1126+
private java.lang.String view;
1127+
1128+
/** Optional. The view of the backup to return.
1129+
*/
1130+
public java.lang.String getView() {
1131+
return view;
1132+
}
1133+
1134+
/** Optional. The view of the backup to return. */
1135+
public Get setView(java.lang.String view) {
1136+
this.view = view;
1137+
return this;
1138+
}
1139+
11241140
@Override
11251141
public Get set(String parameterName, Object value) {
11261142
return (Get) super.set(parameterName, value);
@@ -1330,6 +1346,22 @@ public List setPageToken(java.lang.String pageToken) {
13301346
return this;
13311347
}
13321348

1349+
/** Optional. The view of the backup to return. */
1350+
@com.google.api.client.util.Key
1351+
private java.lang.String view;
1352+
1353+
/** Optional. The view of the backup to return.
1354+
*/
1355+
public java.lang.String getView() {
1356+
return view;
1357+
}
1358+
1359+
/** Optional. The view of the backup to return. */
1360+
public List setView(java.lang.String view) {
1361+
this.view = view;
1362+
return this;
1363+
}
1364+
13331365
@Override
13341366
public List set(String parameterName, Object value) {
13351367
return (List) super.set(parameterName, value);

clients/google-api-services-alloydb/v1alpha/2.0.0/com/google/api/services/alloydb/v1alpha/model/Backup.java

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,14 @@ public final class Backup extends com.google.api.client.json.GenericJson {
3737
@com.google.api.client.util.Key
3838
private java.util.Map<String, java.lang.String> annotations;
3939

40+
/**
41+
* Output only. Set to true if the cluster corresponding to this backup is deleted. This field is
42+
* only populated for when using the BACKUP_VIEW_CLUSTER_DELETED view.
43+
* The value may be {@code null}.
44+
*/
45+
@com.google.api.client.util.Key
46+
private java.lang.Boolean clusterDeleted;
47+
4048
/**
4149
* Required. The full resource name of the backup source cluster (e.g.,
4250
* projects/{project}/locations/{region}/clusters/{cluster_id}).
@@ -240,6 +248,25 @@ public Backup setAnnotations(java.util.Map<String, java.lang.String> annotations
240248
return this;
241249
}
242250

251+
/**
252+
* Output only. Set to true if the cluster corresponding to this backup is deleted. This field is
253+
* only populated for when using the BACKUP_VIEW_CLUSTER_DELETED view.
254+
* @return value or {@code null} for none
255+
*/
256+
public java.lang.Boolean getClusterDeleted() {
257+
return clusterDeleted;
258+
}
259+
260+
/**
261+
* Output only. Set to true if the cluster corresponding to this backup is deleted. This field is
262+
* only populated for when using the BACKUP_VIEW_CLUSTER_DELETED view.
263+
* @param clusterDeleted clusterDeleted or {@code null} for none
264+
*/
265+
public Backup setClusterDeleted(java.lang.Boolean clusterDeleted) {
266+
this.clusterDeleted = clusterDeleted;
267+
return this;
268+
}
269+
243270
/**
244271
* Required. The full resource name of the backup source cluster (e.g.,
245272
* projects/{project}/locations/{region}/clusters/{cluster_id}).

0 commit comments

Comments
 (0)