Skip to content

Commit db086ea

Browse files
1 parent 5821d25 commit db086ea

File tree

10 files changed

+436
-14
lines changed

10 files changed

+436
-14
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-rev20250723-2.0.0</version>
25+
<version>v1-rev20250731-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-rev20250723-2.0.0'
38+
implementation 'com.google.apis:google-api-services-alloydb:v1-rev20250731-2.0.0'
3939
}
4040
```
4141

Original file line numberDiff line numberDiff line change
@@ -0,0 +1,187 @@
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.v1.model;
18+
19+
/**
20+
* BackupDRMetadata contains information about the backup and disaster recovery metadata of a
21+
* database resource.
22+
*
23+
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
24+
* transmitted over HTTP when working with the AlloyDB API. For a detailed explanation see:
25+
* <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>
26+
* </p>
27+
*
28+
* @author Google, Inc.
29+
*/
30+
@SuppressWarnings("javadoc")
31+
public final class StorageDatabasecenterPartnerapiV1mainBackupDRMetadata extends com.google.api.client.json.GenericJson {
32+
33+
/**
34+
* Backup configuration for this instance.
35+
* The value may be {@code null}.
36+
*/
37+
@com.google.api.client.util.Key
38+
private StorageDatabasecenterPartnerapiV1mainBackupConfiguration backupConfiguration;
39+
40+
/**
41+
* Latest backup run information for this instance.
42+
* The value may be {@code null}.
43+
*/
44+
@com.google.api.client.util.Key
45+
private StorageDatabasecenterPartnerapiV1mainBackupRun backupRun;
46+
47+
/**
48+
* BackupDR configuration for this instance.
49+
* The value may be {@code null}.
50+
*/
51+
@com.google.api.client.util.Key
52+
private StorageDatabasecenterPartnerapiV1mainBackupDRConfiguration backupdrConfiguration;
53+
54+
/**
55+
* Required. Full resource name of this instance.
56+
* The value may be {@code null}.
57+
*/
58+
@com.google.api.client.util.Key
59+
private java.lang.String fullResourceName;
60+
61+
/**
62+
* Required. Last time backup configuration was refreshed.
63+
* The value may be {@code null}.
64+
*/
65+
@com.google.api.client.util.Key
66+
private String lastRefreshTime;
67+
68+
/**
69+
* Required. Database resource id.
70+
* The value may be {@code null}.
71+
*/
72+
@com.google.api.client.util.Key
73+
private StorageDatabasecenterPartnerapiV1mainDatabaseResourceId resourceId;
74+
75+
/**
76+
* Backup configuration for this instance.
77+
* @return value or {@code null} for none
78+
*/
79+
public StorageDatabasecenterPartnerapiV1mainBackupConfiguration getBackupConfiguration() {
80+
return backupConfiguration;
81+
}
82+
83+
/**
84+
* Backup configuration for this instance.
85+
* @param backupConfiguration backupConfiguration or {@code null} for none
86+
*/
87+
public StorageDatabasecenterPartnerapiV1mainBackupDRMetadata setBackupConfiguration(StorageDatabasecenterPartnerapiV1mainBackupConfiguration backupConfiguration) {
88+
this.backupConfiguration = backupConfiguration;
89+
return this;
90+
}
91+
92+
/**
93+
* Latest backup run information for this instance.
94+
* @return value or {@code null} for none
95+
*/
96+
public StorageDatabasecenterPartnerapiV1mainBackupRun getBackupRun() {
97+
return backupRun;
98+
}
99+
100+
/**
101+
* Latest backup run information for this instance.
102+
* @param backupRun backupRun or {@code null} for none
103+
*/
104+
public StorageDatabasecenterPartnerapiV1mainBackupDRMetadata setBackupRun(StorageDatabasecenterPartnerapiV1mainBackupRun backupRun) {
105+
this.backupRun = backupRun;
106+
return this;
107+
}
108+
109+
/**
110+
* BackupDR configuration for this instance.
111+
* @return value or {@code null} for none
112+
*/
113+
public StorageDatabasecenterPartnerapiV1mainBackupDRConfiguration getBackupdrConfiguration() {
114+
return backupdrConfiguration;
115+
}
116+
117+
/**
118+
* BackupDR configuration for this instance.
119+
* @param backupdrConfiguration backupdrConfiguration or {@code null} for none
120+
*/
121+
public StorageDatabasecenterPartnerapiV1mainBackupDRMetadata setBackupdrConfiguration(StorageDatabasecenterPartnerapiV1mainBackupDRConfiguration backupdrConfiguration) {
122+
this.backupdrConfiguration = backupdrConfiguration;
123+
return this;
124+
}
125+
126+
/**
127+
* Required. Full resource name of this instance.
128+
* @return value or {@code null} for none
129+
*/
130+
public java.lang.String getFullResourceName() {
131+
return fullResourceName;
132+
}
133+
134+
/**
135+
* Required. Full resource name of this instance.
136+
* @param fullResourceName fullResourceName or {@code null} for none
137+
*/
138+
public StorageDatabasecenterPartnerapiV1mainBackupDRMetadata setFullResourceName(java.lang.String fullResourceName) {
139+
this.fullResourceName = fullResourceName;
140+
return this;
141+
}
142+
143+
/**
144+
* Required. Last time backup configuration was refreshed.
145+
* @return value or {@code null} for none
146+
*/
147+
public String getLastRefreshTime() {
148+
return lastRefreshTime;
149+
}
150+
151+
/**
152+
* Required. Last time backup configuration was refreshed.
153+
* @param lastRefreshTime lastRefreshTime or {@code null} for none
154+
*/
155+
public StorageDatabasecenterPartnerapiV1mainBackupDRMetadata setLastRefreshTime(String lastRefreshTime) {
156+
this.lastRefreshTime = lastRefreshTime;
157+
return this;
158+
}
159+
160+
/**
161+
* Required. Database resource id.
162+
* @return value or {@code null} for none
163+
*/
164+
public StorageDatabasecenterPartnerapiV1mainDatabaseResourceId getResourceId() {
165+
return resourceId;
166+
}
167+
168+
/**
169+
* Required. Database resource id.
170+
* @param resourceId resourceId or {@code null} for none
171+
*/
172+
public StorageDatabasecenterPartnerapiV1mainBackupDRMetadata setResourceId(StorageDatabasecenterPartnerapiV1mainDatabaseResourceId resourceId) {
173+
this.resourceId = resourceId;
174+
return this;
175+
}
176+
177+
@Override
178+
public StorageDatabasecenterPartnerapiV1mainBackupDRMetadata set(String fieldName, Object value) {
179+
return (StorageDatabasecenterPartnerapiV1mainBackupDRMetadata) super.set(fieldName, value);
180+
}
181+
182+
@Override
183+
public StorageDatabasecenterPartnerapiV1mainBackupDRMetadata clone() {
184+
return (StorageDatabasecenterPartnerapiV1mainBackupDRMetadata) super.clone();
185+
}
186+
187+
}

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

Lines changed: 25 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818

1919
/**
2020
* DatabaseResourceFeed is the top level proto to be used to ingest different database resource
21-
* level events into Condor platform. Next ID: 9
21+
* level events into Condor platform. Next ID: 10
2222
*
2323
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
2424
* transmitted over HTTP when working with the AlloyDB API. For a detailed explanation see:
@@ -30,6 +30,13 @@
3030
@SuppressWarnings("javadoc")
3131
public final class StorageDatabasecenterPartnerapiV1mainDatabaseResourceFeed extends com.google.api.client.json.GenericJson {
3232

33+
/**
34+
* BackupDR metadata is used to ingest metadata from BackupDR.
35+
* The value may be {@code null}.
36+
*/
37+
@com.google.api.client.util.Key
38+
private StorageDatabasecenterPartnerapiV1mainBackupDRMetadata backupdrMetadata;
39+
3340
/**
3441
* Config based signal data is used to ingest signals that are generated based on the
3542
* configuration of the database resource.
@@ -84,6 +91,23 @@ public final class StorageDatabasecenterPartnerapiV1mainDatabaseResourceFeed ext
8491
@com.google.api.client.util.Key
8592
private StorageDatabasecenterPartnerapiV1mainDatabaseResourceMetadata resourceMetadata;
8693

94+
/**
95+
* BackupDR metadata is used to ingest metadata from BackupDR.
96+
* @return value or {@code null} for none
97+
*/
98+
public StorageDatabasecenterPartnerapiV1mainBackupDRMetadata getBackupdrMetadata() {
99+
return backupdrMetadata;
100+
}
101+
102+
/**
103+
* BackupDR metadata is used to ingest metadata from BackupDR.
104+
* @param backupdrMetadata backupdrMetadata or {@code null} for none
105+
*/
106+
public StorageDatabasecenterPartnerapiV1mainDatabaseResourceFeed setBackupdrMetadata(StorageDatabasecenterPartnerapiV1mainBackupDRMetadata backupdrMetadata) {
107+
this.backupdrMetadata = backupdrMetadata;
108+
return this;
109+
}
110+
87111
/**
88112
* Config based signal data is used to ingest signals that are generated based on the
89113
* configuration of the database resource.

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-rev20250723-2.0.0</version>
12-
<name>AlloyDB API v1-rev20250723-2.0.0</name>
11+
<version>v1-rev20250731-2.0.0</version>
12+
<name>AlloyDB API v1-rev20250731-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-rev20250723-2.0.0</version>
25+
<version>v1-rev20250731-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-rev20250723-2.0.0'
38+
implementation 'com.google.apis:google-api-services-alloydb:v1-rev20250731-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-rev20250723-2.0.0</version>
25+
<version>v1alpha-rev20250731-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-rev20250723-2.0.0'
38+
implementation 'com.google.apis:google-api-services-alloydb:v1alpha-rev20250731-2.0.0'
3939
}
4040
```
4141

0 commit comments

Comments
 (0)