Skip to content

Commit be653a4

Browse files
1 parent 71218d9 commit be653a4

File tree

4 files changed

+19
-19
lines changed

4 files changed

+19
-19
lines changed

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

clients/google-api-services-backupdr/v1/2.0.0/com/google/api/services/backupdr/v1/model/OperationMetadata.java renamed to clients/google-api-services-backupdr/v1/2.0.0/com/google/api/services/backupdr/v1/model/GoogleCloudBackupdrV1OperationMetadata.java

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
* @author Google, Inc.
2929
*/
3030
@SuppressWarnings("javadoc")
31-
public final class OperationMetadata extends com.google.api.client.json.GenericJson {
31+
public final class GoogleCloudBackupdrV1OperationMetadata extends com.google.api.client.json.GenericJson {
3232

3333
/**
3434
* Output only. AdditionalInfo contains additional Info related to backup plan association
@@ -103,7 +103,7 @@ public java.util.Map<String, java.lang.String> getAdditionalInfo() {
103103
* resource.
104104
* @param additionalInfo additionalInfo or {@code null} for none
105105
*/
106-
public OperationMetadata setAdditionalInfo(java.util.Map<String, java.lang.String> additionalInfo) {
106+
public GoogleCloudBackupdrV1OperationMetadata setAdditionalInfo(java.util.Map<String, java.lang.String> additionalInfo) {
107107
this.additionalInfo = additionalInfo;
108108
return this;
109109
}
@@ -120,7 +120,7 @@ public java.lang.String getApiVersion() {
120120
* Output only. API version used to start the operation.
121121
* @param apiVersion apiVersion or {@code null} for none
122122
*/
123-
public OperationMetadata setApiVersion(java.lang.String apiVersion) {
123+
public GoogleCloudBackupdrV1OperationMetadata setApiVersion(java.lang.String apiVersion) {
124124
this.apiVersion = apiVersion;
125125
return this;
126126
}
@@ -137,7 +137,7 @@ public String getCreateTime() {
137137
* Output only. The time the operation was created.
138138
* @param createTime createTime or {@code null} for none
139139
*/
140-
public OperationMetadata setCreateTime(String createTime) {
140+
public GoogleCloudBackupdrV1OperationMetadata setCreateTime(String createTime) {
141141
this.createTime = createTime;
142142
return this;
143143
}
@@ -154,7 +154,7 @@ public String getEndTime() {
154154
* Output only. The time the operation finished running.
155155
* @param endTime endTime or {@code null} for none
156156
*/
157-
public OperationMetadata setEndTime(String endTime) {
157+
public GoogleCloudBackupdrV1OperationMetadata setEndTime(String endTime) {
158158
this.endTime = endTime;
159159
return this;
160160
}
@@ -175,7 +175,7 @@ public java.lang.Boolean getRequestedCancellation() {
175175
* with a google.rpc.Status.code of 1, corresponding to 'Code.CANCELLED'.
176176
* @param requestedCancellation requestedCancellation or {@code null} for none
177177
*/
178-
public OperationMetadata setRequestedCancellation(java.lang.Boolean requestedCancellation) {
178+
public GoogleCloudBackupdrV1OperationMetadata setRequestedCancellation(java.lang.Boolean requestedCancellation) {
179179
this.requestedCancellation = requestedCancellation;
180180
return this;
181181
}
@@ -192,7 +192,7 @@ public java.lang.String getStatusMessage() {
192192
* Output only. Human-readable status of the operation, if any.
193193
* @param statusMessage statusMessage or {@code null} for none
194194
*/
195-
public OperationMetadata setStatusMessage(java.lang.String statusMessage) {
195+
public GoogleCloudBackupdrV1OperationMetadata setStatusMessage(java.lang.String statusMessage) {
196196
this.statusMessage = statusMessage;
197197
return this;
198198
}
@@ -209,7 +209,7 @@ public java.lang.String getTarget() {
209209
* Output only. Server-defined resource path for the target of the operation.
210210
* @param target target or {@code null} for none
211211
*/
212-
public OperationMetadata setTarget(java.lang.String target) {
212+
public GoogleCloudBackupdrV1OperationMetadata setTarget(java.lang.String target) {
213213
this.target = target;
214214
return this;
215215
}
@@ -226,19 +226,19 @@ public java.lang.String getVerb() {
226226
* Output only. Name of the verb executed by the operation.
227227
* @param verb verb or {@code null} for none
228228
*/
229-
public OperationMetadata setVerb(java.lang.String verb) {
229+
public GoogleCloudBackupdrV1OperationMetadata setVerb(java.lang.String verb) {
230230
this.verb = verb;
231231
return this;
232232
}
233233

234234
@Override
235-
public OperationMetadata set(String fieldName, Object value) {
236-
return (OperationMetadata) super.set(fieldName, value);
235+
public GoogleCloudBackupdrV1OperationMetadata set(String fieldName, Object value) {
236+
return (GoogleCloudBackupdrV1OperationMetadata) super.set(fieldName, value);
237237
}
238238

239239
@Override
240-
public OperationMetadata clone() {
241-
return (OperationMetadata) super.clone();
240+
public GoogleCloudBackupdrV1OperationMetadata clone() {
241+
return (GoogleCloudBackupdrV1OperationMetadata) super.clone();
242242
}
243243

244244
}

clients/google-api-services-backupdr/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-backupdr</artifactId>
11-
<version>v1-rev20260224-2.0.0</version>
12-
<name>Backup and DR Service API v1-rev20260224-2.0.0</name>
11+
<version>v1-rev20260227-2.0.0</version>
12+
<name>Backup and DR Service API v1-rev20260227-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

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

0 commit comments

Comments
 (0)