diff --git a/clients/google-api-services-backupdr/v1/2.0.0/README.md b/clients/google-api-services-backupdr/v1/2.0.0/README.md
index 4bd587c6a6d..b95609fc890 100644
--- a/clients/google-api-services-backupdr/v1/2.0.0/README.md
+++ b/clients/google-api-services-backupdr/v1/2.0.0/README.md
@@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file:
com.google.apis
google-api-services-backupdr
- v1-rev20260812-2.0.0
+ v1-rev20260908-2.0.0
@@ -35,7 +35,7 @@ repositories {
mavenCentral()
}
dependencies {
- implementation 'com.google.apis:google-api-services-backupdr:v1-rev20260812-2.0.0'
+ implementation 'com.google.apis:google-api-services-backupdr:v1-rev20260908-2.0.0'
}
```
diff --git a/clients/google-api-services-backupdr/v1/2.0.0/com/google/api/services/backupdr/v1/model/OperationMetadata.java b/clients/google-api-services-backupdr/v1/2.0.0/com/google/api/services/backupdr/v1/model/OperationMetadata.java
deleted file mode 100644
index 0bec0c7c4f3..00000000000
--- a/clients/google-api-services-backupdr/v1/2.0.0/com/google/api/services/backupdr/v1/model/OperationMetadata.java
+++ /dev/null
@@ -1,244 +0,0 @@
-/*
- * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
- * in compliance with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software distributed under the License
- * is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
- * or implied. See the License for the specific language governing permissions and limitations under
- * the License.
- */
-/*
- * This code was generated by https://github.com/googleapis/google-api-java-client-services/
- * Modify at your own risk.
- */
-
-package com.google.api.services.backupdr.v1.model;
-
-/**
- * Represents the metadata of the long-running operation.
- *
- *
This is the Java data model class that specifies how to parse/serialize into the JSON that is
- * transmitted over HTTP when working with the Backup and DR Service API. For a detailed explanation
- * see:
- * https://developers.google.com/api-client-library/java/google-http-java-client/json
- *
- *
- * @author Google, Inc.
- */
-@SuppressWarnings("javadoc")
-public final class OperationMetadata extends com.google.api.client.json.GenericJson {
-
- /**
- * Output only. AdditionalInfo contains additional Info related to backup plan association
- * resource.
- * The value may be {@code null}.
- */
- @com.google.api.client.util.Key
- private java.util.Map additionalInfo;
-
- /**
- * Output only. API version used to start the operation.
- * The value may be {@code null}.
- */
- @com.google.api.client.util.Key
- private java.lang.String apiVersion;
-
- /**
- * Output only. The time the operation was created.
- * The value may be {@code null}.
- */
- @com.google.api.client.util.Key
- private String createTime;
-
- /**
- * Output only. The time the operation finished running.
- * The value may be {@code null}.
- */
- @com.google.api.client.util.Key
- private String endTime;
-
- /**
- * Output only. Identifies whether the user has requested cancellation of the operation.
- * Operations that have successfully been cancelled have google.longrunning.Operation.error value
- * with a google.rpc.Status.code of 1, corresponding to 'Code.CANCELLED'.
- * The value may be {@code null}.
- */
- @com.google.api.client.util.Key
- private java.lang.Boolean requestedCancellation;
-
- /**
- * Output only. Human-readable status of the operation, if any.
- * The value may be {@code null}.
- */
- @com.google.api.client.util.Key
- private java.lang.String statusMessage;
-
- /**
- * Output only. Server-defined resource path for the target of the operation.
- * The value may be {@code null}.
- */
- @com.google.api.client.util.Key
- private java.lang.String target;
-
- /**
- * Output only. Name of the verb executed by the operation.
- * The value may be {@code null}.
- */
- @com.google.api.client.util.Key
- private java.lang.String verb;
-
- /**
- * Output only. AdditionalInfo contains additional Info related to backup plan association
- * resource.
- * @return value or {@code null} for none
- */
- public java.util.Map getAdditionalInfo() {
- return additionalInfo;
- }
-
- /**
- * Output only. AdditionalInfo contains additional Info related to backup plan association
- * resource.
- * @param additionalInfo additionalInfo or {@code null} for none
- */
- public OperationMetadata setAdditionalInfo(java.util.Map additionalInfo) {
- this.additionalInfo = additionalInfo;
- return this;
- }
-
- /**
- * Output only. API version used to start the operation.
- * @return value or {@code null} for none
- */
- public java.lang.String getApiVersion() {
- return apiVersion;
- }
-
- /**
- * Output only. API version used to start the operation.
- * @param apiVersion apiVersion or {@code null} for none
- */
- public OperationMetadata setApiVersion(java.lang.String apiVersion) {
- this.apiVersion = apiVersion;
- return this;
- }
-
- /**
- * Output only. The time the operation was created.
- * @return value or {@code null} for none
- */
- public String getCreateTime() {
- return createTime;
- }
-
- /**
- * Output only. The time the operation was created.
- * @param createTime createTime or {@code null} for none
- */
- public OperationMetadata setCreateTime(String createTime) {
- this.createTime = createTime;
- return this;
- }
-
- /**
- * Output only. The time the operation finished running.
- * @return value or {@code null} for none
- */
- public String getEndTime() {
- return endTime;
- }
-
- /**
- * Output only. The time the operation finished running.
- * @param endTime endTime or {@code null} for none
- */
- public OperationMetadata setEndTime(String endTime) {
- this.endTime = endTime;
- return this;
- }
-
- /**
- * Output only. Identifies whether the user has requested cancellation of the operation.
- * Operations that have successfully been cancelled have google.longrunning.Operation.error value
- * with a google.rpc.Status.code of 1, corresponding to 'Code.CANCELLED'.
- * @return value or {@code null} for none
- */
- public java.lang.Boolean getRequestedCancellation() {
- return requestedCancellation;
- }
-
- /**
- * Output only. Identifies whether the user has requested cancellation of the operation.
- * Operations that have successfully been cancelled have google.longrunning.Operation.error value
- * with a google.rpc.Status.code of 1, corresponding to 'Code.CANCELLED'.
- * @param requestedCancellation requestedCancellation or {@code null} for none
- */
- public OperationMetadata setRequestedCancellation(java.lang.Boolean requestedCancellation) {
- this.requestedCancellation = requestedCancellation;
- return this;
- }
-
- /**
- * Output only. Human-readable status of the operation, if any.
- * @return value or {@code null} for none
- */
- public java.lang.String getStatusMessage() {
- return statusMessage;
- }
-
- /**
- * Output only. Human-readable status of the operation, if any.
- * @param statusMessage statusMessage or {@code null} for none
- */
- public OperationMetadata setStatusMessage(java.lang.String statusMessage) {
- this.statusMessage = statusMessage;
- return this;
- }
-
- /**
- * Output only. Server-defined resource path for the target of the operation.
- * @return value or {@code null} for none
- */
- public java.lang.String getTarget() {
- return target;
- }
-
- /**
- * Output only. Server-defined resource path for the target of the operation.
- * @param target target or {@code null} for none
- */
- public OperationMetadata setTarget(java.lang.String target) {
- this.target = target;
- return this;
- }
-
- /**
- * Output only. Name of the verb executed by the operation.
- * @return value or {@code null} for none
- */
- public java.lang.String getVerb() {
- return verb;
- }
-
- /**
- * Output only. Name of the verb executed by the operation.
- * @param verb verb or {@code null} for none
- */
- public OperationMetadata setVerb(java.lang.String verb) {
- this.verb = verb;
- return this;
- }
-
- @Override
- public OperationMetadata set(String fieldName, Object value) {
- return (OperationMetadata) super.set(fieldName, value);
- }
-
- @Override
- public OperationMetadata clone() {
- return (OperationMetadata) super.clone();
- }
-
-}
diff --git a/clients/google-api-services-backupdr/v1/2.0.0/pom.xml b/clients/google-api-services-backupdr/v1/2.0.0/pom.xml
index 1d808f1cb6e..a55e33adb5a 100644
--- a/clients/google-api-services-backupdr/v1/2.0.0/pom.xml
+++ b/clients/google-api-services-backupdr/v1/2.0.0/pom.xml
@@ -8,8 +8,8 @@
com.google.apis
google-api-services-backupdr
- v1-rev20260812-2.0.0
- Backup and DR Service API v1-rev20260812-2.0.0
+ v1-rev20260908-2.0.0
+ Backup and DR Service API v1-rev20260908-2.0.0
jar
2011
diff --git a/clients/google-api-services-backupdr/v1/README.md b/clients/google-api-services-backupdr/v1/README.md
index 4bd587c6a6d..b95609fc890 100644
--- a/clients/google-api-services-backupdr/v1/README.md
+++ b/clients/google-api-services-backupdr/v1/README.md
@@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file:
com.google.apis
google-api-services-backupdr
- v1-rev20260812-2.0.0
+ v1-rev20260908-2.0.0
@@ -35,7 +35,7 @@ repositories {
mavenCentral()
}
dependencies {
- implementation 'com.google.apis:google-api-services-backupdr:v1-rev20260812-2.0.0'
+ implementation 'com.google.apis:google-api-services-backupdr:v1-rev20260908-2.0.0'
}
```
diff --git a/clients/google-api-services-backupdr/v1beta/2.0.0/README.md b/clients/google-api-services-backupdr/v1beta/2.0.0/README.md
index a6627531e02..d1bb038ec27 100644
--- a/clients/google-api-services-backupdr/v1beta/2.0.0/README.md
+++ b/clients/google-api-services-backupdr/v1beta/2.0.0/README.md
@@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file:
com.google.apis
google-api-services-backupdr
- v1beta-rev20260826-2.0.0
+ v1beta-rev20260908-2.0.0
@@ -35,7 +35,7 @@ repositories {
mavenCentral()
}
dependencies {
- implementation 'com.google.apis:google-api-services-backupdr:v1beta-rev20260826-2.0.0'
+ implementation 'com.google.apis:google-api-services-backupdr:v1beta-rev20260908-2.0.0'
}
```
diff --git a/clients/google-api-services-backupdr/v1beta/2.0.0/com/google/api/services/backupdr/v1beta/model/OperationMetadata.java b/clients/google-api-services-backupdr/v1beta/2.0.0/com/google/api/services/backupdr/v1beta/model/OperationMetadata.java
deleted file mode 100644
index d459a7d8a02..00000000000
--- a/clients/google-api-services-backupdr/v1beta/2.0.0/com/google/api/services/backupdr/v1beta/model/OperationMetadata.java
+++ /dev/null
@@ -1,244 +0,0 @@
-/*
- * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
- * in compliance with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software distributed under the License
- * is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
- * or implied. See the License for the specific language governing permissions and limitations under
- * the License.
- */
-/*
- * This code was generated by https://github.com/googleapis/google-api-java-client-services/
- * Modify at your own risk.
- */
-
-package com.google.api.services.backupdr.v1beta.model;
-
-/**
- * Represents the metadata of the long-running operation.
- *
- * This is the Java data model class that specifies how to parse/serialize into the JSON that is
- * transmitted over HTTP when working with the Backup and DR Service API. For a detailed explanation
- * see:
- * https://developers.google.com/api-client-library/java/google-http-java-client/json
- *
- *
- * @author Google, Inc.
- */
-@SuppressWarnings("javadoc")
-public final class OperationMetadata extends com.google.api.client.json.GenericJson {
-
- /**
- * Output only. AdditionalInfo contains additional Info related to backup plan association
- * resource.
- * The value may be {@code null}.
- */
- @com.google.api.client.util.Key
- private java.util.Map additionalInfo;
-
- /**
- * Output only. API version used to start the operation.
- * The value may be {@code null}.
- */
- @com.google.api.client.util.Key
- private java.lang.String apiVersion;
-
- /**
- * Output only. The time the operation was created.
- * The value may be {@code null}.
- */
- @com.google.api.client.util.Key
- private String createTime;
-
- /**
- * Output only. The time the operation finished running.
- * The value may be {@code null}.
- */
- @com.google.api.client.util.Key
- private String endTime;
-
- /**
- * Output only. Identifies whether the user has requested cancellation of the operation.
- * Operations that have successfully been cancelled have google.longrunning.Operation.error value
- * with a google.rpc.Status.code of 1, corresponding to 'Code.CANCELLED'.
- * The value may be {@code null}.
- */
- @com.google.api.client.util.Key
- private java.lang.Boolean requestedCancellation;
-
- /**
- * Output only. Human-readable status of the operation, if any.
- * The value may be {@code null}.
- */
- @com.google.api.client.util.Key
- private java.lang.String statusMessage;
-
- /**
- * Output only. Server-defined resource path for the target of the operation.
- * The value may be {@code null}.
- */
- @com.google.api.client.util.Key
- private java.lang.String target;
-
- /**
- * Output only. Name of the verb executed by the operation.
- * The value may be {@code null}.
- */
- @com.google.api.client.util.Key
- private java.lang.String verb;
-
- /**
- * Output only. AdditionalInfo contains additional Info related to backup plan association
- * resource.
- * @return value or {@code null} for none
- */
- public java.util.Map getAdditionalInfo() {
- return additionalInfo;
- }
-
- /**
- * Output only. AdditionalInfo contains additional Info related to backup plan association
- * resource.
- * @param additionalInfo additionalInfo or {@code null} for none
- */
- public OperationMetadata setAdditionalInfo(java.util.Map additionalInfo) {
- this.additionalInfo = additionalInfo;
- return this;
- }
-
- /**
- * Output only. API version used to start the operation.
- * @return value or {@code null} for none
- */
- public java.lang.String getApiVersion() {
- return apiVersion;
- }
-
- /**
- * Output only. API version used to start the operation.
- * @param apiVersion apiVersion or {@code null} for none
- */
- public OperationMetadata setApiVersion(java.lang.String apiVersion) {
- this.apiVersion = apiVersion;
- return this;
- }
-
- /**
- * Output only. The time the operation was created.
- * @return value or {@code null} for none
- */
- public String getCreateTime() {
- return createTime;
- }
-
- /**
- * Output only. The time the operation was created.
- * @param createTime createTime or {@code null} for none
- */
- public OperationMetadata setCreateTime(String createTime) {
- this.createTime = createTime;
- return this;
- }
-
- /**
- * Output only. The time the operation finished running.
- * @return value or {@code null} for none
- */
- public String getEndTime() {
- return endTime;
- }
-
- /**
- * Output only. The time the operation finished running.
- * @param endTime endTime or {@code null} for none
- */
- public OperationMetadata setEndTime(String endTime) {
- this.endTime = endTime;
- return this;
- }
-
- /**
- * Output only. Identifies whether the user has requested cancellation of the operation.
- * Operations that have successfully been cancelled have google.longrunning.Operation.error value
- * with a google.rpc.Status.code of 1, corresponding to 'Code.CANCELLED'.
- * @return value or {@code null} for none
- */
- public java.lang.Boolean getRequestedCancellation() {
- return requestedCancellation;
- }
-
- /**
- * Output only. Identifies whether the user has requested cancellation of the operation.
- * Operations that have successfully been cancelled have google.longrunning.Operation.error value
- * with a google.rpc.Status.code of 1, corresponding to 'Code.CANCELLED'.
- * @param requestedCancellation requestedCancellation or {@code null} for none
- */
- public OperationMetadata setRequestedCancellation(java.lang.Boolean requestedCancellation) {
- this.requestedCancellation = requestedCancellation;
- return this;
- }
-
- /**
- * Output only. Human-readable status of the operation, if any.
- * @return value or {@code null} for none
- */
- public java.lang.String getStatusMessage() {
- return statusMessage;
- }
-
- /**
- * Output only. Human-readable status of the operation, if any.
- * @param statusMessage statusMessage or {@code null} for none
- */
- public OperationMetadata setStatusMessage(java.lang.String statusMessage) {
- this.statusMessage = statusMessage;
- return this;
- }
-
- /**
- * Output only. Server-defined resource path for the target of the operation.
- * @return value or {@code null} for none
- */
- public java.lang.String getTarget() {
- return target;
- }
-
- /**
- * Output only. Server-defined resource path for the target of the operation.
- * @param target target or {@code null} for none
- */
- public OperationMetadata setTarget(java.lang.String target) {
- this.target = target;
- return this;
- }
-
- /**
- * Output only. Name of the verb executed by the operation.
- * @return value or {@code null} for none
- */
- public java.lang.String getVerb() {
- return verb;
- }
-
- /**
- * Output only. Name of the verb executed by the operation.
- * @param verb verb or {@code null} for none
- */
- public OperationMetadata setVerb(java.lang.String verb) {
- this.verb = verb;
- return this;
- }
-
- @Override
- public OperationMetadata set(String fieldName, Object value) {
- return (OperationMetadata) super.set(fieldName, value);
- }
-
- @Override
- public OperationMetadata clone() {
- return (OperationMetadata) super.clone();
- }
-
-}
diff --git a/clients/google-api-services-backupdr/v1beta/2.0.0/pom.xml b/clients/google-api-services-backupdr/v1beta/2.0.0/pom.xml
index 5c66c73f4a0..ccbdd772027 100644
--- a/clients/google-api-services-backupdr/v1beta/2.0.0/pom.xml
+++ b/clients/google-api-services-backupdr/v1beta/2.0.0/pom.xml
@@ -8,8 +8,8 @@
com.google.apis
google-api-services-backupdr
- v1beta-rev20260826-2.0.0
- Backup and DR Service API v1beta-rev20260826-2.0.0
+ v1beta-rev20260908-2.0.0
+ Backup and DR Service API v1beta-rev20260908-2.0.0
jar
2011
diff --git a/clients/google-api-services-backupdr/v1beta/README.md b/clients/google-api-services-backupdr/v1beta/README.md
index a6627531e02..d1bb038ec27 100644
--- a/clients/google-api-services-backupdr/v1beta/README.md
+++ b/clients/google-api-services-backupdr/v1beta/README.md
@@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file:
com.google.apis
google-api-services-backupdr
- v1beta-rev20260826-2.0.0
+ v1beta-rev20260908-2.0.0
@@ -35,7 +35,7 @@ repositories {
mavenCentral()
}
dependencies {
- implementation 'com.google.apis:google-api-services-backupdr:v1beta-rev20260826-2.0.0'
+ implementation 'com.google.apis:google-api-services-backupdr:v1beta-rev20260908-2.0.0'
}
```