Skip to content

Commit e4085f1

Browse files
1 parent 71b6fa9 commit e4085f1

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

44 files changed

+3290
-338
lines changed

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-rev20250910-2.0.0</version>
25+
<version>v1alpha-rev20250925-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-rev20250910-2.0.0'
38+
implementation 'com.google.apis:google-api-services-alloydb:v1alpha-rev20250925-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: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7581,6 +7581,40 @@ public List setPageToken(java.lang.String pageToken) {
75817581
return this;
75827582
}
75837583

7584+
/**
7585+
* When set to `true`, operations that are reachable are returned as normal, and those
7586+
* that are unreachable are returned in the [ListOperationsResponse.unreachable] field.
7587+
* This can only be `true` when reading across collections e.g. when `parent` is set to
7588+
* `"projects/example/locations/-"`. This field is not by default supported and will
7589+
* result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in
7590+
* service or product specific documentation.
7591+
*/
7592+
@com.google.api.client.util.Key
7593+
private java.lang.Boolean returnPartialSuccess;
7594+
7595+
/** When set to `true`, operations that are reachable are returned as normal, and those that are
7596+
unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true`
7597+
when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This
7598+
field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless
7599+
explicitly documented otherwise in service or product specific documentation.
7600+
*/
7601+
public java.lang.Boolean getReturnPartialSuccess() {
7602+
return returnPartialSuccess;
7603+
}
7604+
7605+
/**
7606+
* When set to `true`, operations that are reachable are returned as normal, and those
7607+
* that are unreachable are returned in the [ListOperationsResponse.unreachable] field.
7608+
* This can only be `true` when reading across collections e.g. when `parent` is set to
7609+
* `"projects/example/locations/-"`. This field is not by default supported and will
7610+
* result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in
7611+
* service or product specific documentation.
7612+
*/
7613+
public List setReturnPartialSuccess(java.lang.Boolean returnPartialSuccess) {
7614+
this.returnPartialSuccess = returnPartialSuccess;
7615+
return this;
7616+
}
7617+
75847618
@Override
75857619
public List set(String parameterName, Object value) {
75867620
return (List) super.set(parameterName, value);
Lines changed: 90 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,90 @@
1+
/*
2+
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
3+
* in compliance with the License. You may obtain a copy of the License at
4+
*
5+
* http://www.apache.org/licenses/LICENSE-2.0
6+
*
7+
* Unless required by applicable law or agreed to in writing, software distributed under the License
8+
* is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
9+
* or implied. See the License for the specific language governing permissions and limitations under
10+
* the License.
11+
*/
12+
/*
13+
* This code was generated by https://github.com/googleapis/google-api-java-client-services/
14+
* Modify at your own risk.
15+
*/
16+
17+
package com.google.api.services.alloydb.v1alpha.model;
18+
19+
/**
20+
* Configuration for autoscaling.
21+
*
22+
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
23+
* transmitted over HTTP when working with the AlloyDB API. For a detailed explanation see:
24+
* <a href="https://developers.google.com/api-client-library/java/google-http-java-client/json">https://developers.google.com/api-client-library/java/google-http-java-client/json</a>
25+
* </p>
26+
*
27+
* @author Google, Inc.
28+
*/
29+
@SuppressWarnings("javadoc")
30+
public final class AutoScalingConfig extends com.google.api.client.json.GenericJson {
31+
32+
/**
33+
* Policy for the MIG autoscaler.
34+
* The value may be {@code null}.
35+
*/
36+
@com.google.api.client.util.Key
37+
private Policy policy;
38+
39+
/**
40+
* Optional list of schedules for the MIG autoscaler. If not set, no schedules are created.
41+
* The value may be {@code null}.
42+
*/
43+
@com.google.api.client.util.Key
44+
private java.util.List<Schedule> schedules;
45+
46+
/**
47+
* Policy for the MIG autoscaler.
48+
* @return value or {@code null} for none
49+
*/
50+
public Policy getPolicy() {
51+
return policy;
52+
}
53+
54+
/**
55+
* Policy for the MIG autoscaler.
56+
* @param policy policy or {@code null} for none
57+
*/
58+
public AutoScalingConfig setPolicy(Policy policy) {
59+
this.policy = policy;
60+
return this;
61+
}
62+
63+
/**
64+
* Optional list of schedules for the MIG autoscaler. If not set, no schedules are created.
65+
* @return value or {@code null} for none
66+
*/
67+
public java.util.List<Schedule> getSchedules() {
68+
return schedules;
69+
}
70+
71+
/**
72+
* Optional list of schedules for the MIG autoscaler. If not set, no schedules are created.
73+
* @param schedules schedules or {@code null} for none
74+
*/
75+
public AutoScalingConfig setSchedules(java.util.List<Schedule> schedules) {
76+
this.schedules = schedules;
77+
return this;
78+
}
79+
80+
@Override
81+
public AutoScalingConfig set(String fieldName, Object value) {
82+
return (AutoScalingConfig) super.set(fieldName, value);
83+
}
84+
85+
@Override
86+
public AutoScalingConfig clone() {
87+
return (AutoScalingConfig) super.clone();
88+
}
89+
90+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,69 @@
1+
/*
2+
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
3+
* in compliance with the License. You may obtain a copy of the License at
4+
*
5+
* http://www.apache.org/licenses/LICENSE-2.0
6+
*
7+
* Unless required by applicable law or agreed to in writing, software distributed under the License
8+
* is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
9+
* or implied. See the License for the specific language governing permissions and limitations under
10+
* the License.
11+
*/
12+
/*
13+
* This code was generated by https://github.com/googleapis/google-api-java-client-services/
14+
* Modify at your own risk.
15+
*/
16+
17+
package com.google.api.services.alloydb.v1alpha.model;
18+
19+
/**
20+
* Message describing a BackupDrBackupSource.
21+
*
22+
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
23+
* transmitted over HTTP when working with the AlloyDB API. For a detailed explanation see:
24+
* <a href="https://developers.google.com/api-client-library/java/google-http-java-client/json">https://developers.google.com/api-client-library/java/google-http-java-client/json</a>
25+
* </p>
26+
*
27+
* @author Google, Inc.
28+
*/
29+
@SuppressWarnings("javadoc")
30+
public final class BackupDrBackupSource extends com.google.api.client.json.GenericJson {
31+
32+
/**
33+
* Required. The name of the backup resource with the format: * projects/{project}/locations/{loca
34+
* tion}/backupVaults/{backupvault_id}/dataSources/{datasource_id}/backups/{backup_id}
35+
* The value may be {@code null}.
36+
*/
37+
@com.google.api.client.util.Key
38+
private java.lang.String backup;
39+
40+
/**
41+
* Required. The name of the backup resource with the format: * projects/{project}/locations/{loca
42+
* tion}/backupVaults/{backupvault_id}/dataSources/{datasource_id}/backups/{backup_id}
43+
* @return value or {@code null} for none
44+
*/
45+
public java.lang.String getBackup() {
46+
return backup;
47+
}
48+
49+
/**
50+
* Required. The name of the backup resource with the format: * projects/{project}/locations/{loca
51+
* tion}/backupVaults/{backupvault_id}/dataSources/{datasource_id}/backups/{backup_id}
52+
* @param backup backup or {@code null} for none
53+
*/
54+
public BackupDrBackupSource setBackup(java.lang.String backup) {
55+
this.backup = backup;
56+
return this;
57+
}
58+
59+
@Override
60+
public BackupDrBackupSource set(String fieldName, Object value) {
61+
return (BackupDrBackupSource) super.set(fieldName, value);
62+
}
63+
64+
@Override
65+
public BackupDrBackupSource clone() {
66+
return (BackupDrBackupSource) super.clone();
67+
}
68+
69+
}

0 commit comments

Comments
 (0)