Skip to content

Commit 650dfd8

Browse files
1 parent 490ad7d commit 650dfd8

20 files changed

+954
-16
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-rev20250612-2.0.0</version>
25+
<version>v1alpha-rev20250723-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-rev20250612-2.0.0'
38+
implementation 'com.google.apis:google-api-services-alloydb:v1alpha-rev20250723-2.0.0'
3939
}
4040
```
4141

Original file line numberDiff line numberDiff line change
@@ -0,0 +1,138 @@
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+
* Timing information for the stage execution.
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 StageSchedule extends com.google.api.client.json.GenericJson {
31+
32+
/**
33+
* Actual end time of the stage. Set only if the stage has completed.
34+
* The value may be {@code null}.
35+
*/
36+
@com.google.api.client.util.Key
37+
private String actualEndTime;
38+
39+
/**
40+
* Actual start time of the stage. Set only if the stage has started.
41+
* The value may be {@code null}.
42+
*/
43+
@com.google.api.client.util.Key
44+
private String actualStartTime;
45+
46+
/**
47+
* When the stage is expected to end. Set only if the stage has not completed yet.
48+
* The value may be {@code null}.
49+
*/
50+
@com.google.api.client.util.Key
51+
private String estimatedEndTime;
52+
53+
/**
54+
* When the stage is expected to start. Set only if the stage has not started yet.
55+
* The value may be {@code null}.
56+
*/
57+
@com.google.api.client.util.Key
58+
private String estimatedStartTime;
59+
60+
/**
61+
* Actual end time of the stage. Set only if the stage has completed.
62+
* @return value or {@code null} for none
63+
*/
64+
public String getActualEndTime() {
65+
return actualEndTime;
66+
}
67+
68+
/**
69+
* Actual end time of the stage. Set only if the stage has completed.
70+
* @param actualEndTime actualEndTime or {@code null} for none
71+
*/
72+
public StageSchedule setActualEndTime(String actualEndTime) {
73+
this.actualEndTime = actualEndTime;
74+
return this;
75+
}
76+
77+
/**
78+
* Actual start time of the stage. Set only if the stage has started.
79+
* @return value or {@code null} for none
80+
*/
81+
public String getActualStartTime() {
82+
return actualStartTime;
83+
}
84+
85+
/**
86+
* Actual start time of the stage. Set only if the stage has started.
87+
* @param actualStartTime actualStartTime or {@code null} for none
88+
*/
89+
public StageSchedule setActualStartTime(String actualStartTime) {
90+
this.actualStartTime = actualStartTime;
91+
return this;
92+
}
93+
94+
/**
95+
* When the stage is expected to end. Set only if the stage has not completed yet.
96+
* @return value or {@code null} for none
97+
*/
98+
public String getEstimatedEndTime() {
99+
return estimatedEndTime;
100+
}
101+
102+
/**
103+
* When the stage is expected to end. Set only if the stage has not completed yet.
104+
* @param estimatedEndTime estimatedEndTime or {@code null} for none
105+
*/
106+
public StageSchedule setEstimatedEndTime(String estimatedEndTime) {
107+
this.estimatedEndTime = estimatedEndTime;
108+
return this;
109+
}
110+
111+
/**
112+
* When the stage is expected to start. Set only if the stage has not started yet.
113+
* @return value or {@code null} for none
114+
*/
115+
public String getEstimatedStartTime() {
116+
return estimatedStartTime;
117+
}
118+
119+
/**
120+
* When the stage is expected to start. Set only if the stage has not started yet.
121+
* @param estimatedStartTime estimatedStartTime or {@code null} for none
122+
*/
123+
public StageSchedule setEstimatedStartTime(String estimatedStartTime) {
124+
this.estimatedStartTime = estimatedStartTime;
125+
return this;
126+
}
127+
128+
@Override
129+
public StageSchedule set(String fieldName, Object value) {
130+
return (StageSchedule) super.set(fieldName, value);
131+
}
132+
133+
@Override
134+
public StageSchedule clone() {
135+
return (StageSchedule) super.clone();
136+
}
137+
138+
}

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

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,13 @@ public final class StageStatus extends com.google.api.client.json.GenericJson {
3636
@com.google.api.client.util.Key
3737
private ReadPoolInstancesUpgradeStageStatus readPoolInstancesUpgrade;
3838

39+
/**
40+
* Output only. Timing information for the stage execution.
41+
* The value may be {@code null}.
42+
*/
43+
@com.google.api.client.util.Key
44+
private StageSchedule schedule;
45+
3946
/**
4047
* Upgrade stage.
4148
* The value may be {@code null}.
@@ -67,6 +74,23 @@ public StageStatus setReadPoolInstancesUpgrade(ReadPoolInstancesUpgradeStageStat
6774
return this;
6875
}
6976

77+
/**
78+
* Output only. Timing information for the stage execution.
79+
* @return value or {@code null} for none
80+
*/
81+
public StageSchedule getSchedule() {
82+
return schedule;
83+
}
84+
85+
/**
86+
* Output only. Timing information for the stage execution.
87+
* @param schedule schedule or {@code null} for none
88+
*/
89+
public StageStatus setSchedule(StageSchedule schedule) {
90+
this.schedule = schedule;
91+
return this;
92+
}
93+
7094
/**
7195
* Upgrade stage.
7296
* @return value or {@code null} for none
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,66 @@
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+
* BackupDRConfiguration to capture the backup and disaster recovery details of database resource.
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 StorageDatabasecenterPartnerapiV1mainBackupDRConfiguration extends com.google.api.client.json.GenericJson {
31+
32+
/**
33+
* Indicates if the resource is managed by BackupDR.
34+
* The value may be {@code null}.
35+
*/
36+
@com.google.api.client.util.Key
37+
private java.lang.Boolean backupdrManaged;
38+
39+
/**
40+
* Indicates if the resource is managed by BackupDR.
41+
* @return value or {@code null} for none
42+
*/
43+
public java.lang.Boolean getBackupdrManaged() {
44+
return backupdrManaged;
45+
}
46+
47+
/**
48+
* Indicates if the resource is managed by BackupDR.
49+
* @param backupdrManaged backupdrManaged or {@code null} for none
50+
*/
51+
public StorageDatabasecenterPartnerapiV1mainBackupDRConfiguration setBackupdrManaged(java.lang.Boolean backupdrManaged) {
52+
this.backupdrManaged = backupdrManaged;
53+
return this;
54+
}
55+
56+
@Override
57+
public StorageDatabasecenterPartnerapiV1mainBackupDRConfiguration set(String fieldName, Object value) {
58+
return (StorageDatabasecenterPartnerapiV1mainBackupDRConfiguration) super.set(fieldName, value);
59+
}
60+
61+
@Override
62+
public StorageDatabasecenterPartnerapiV1mainBackupDRConfiguration clone() {
63+
return (StorageDatabasecenterPartnerapiV1mainBackupDRConfiguration) super.clone();
64+
}
65+
66+
}

0 commit comments

Comments
 (0)