From 3decdee0ec511bbfe29dd1d5e6c3f1747d0f5fe4 Mon Sep 17 00:00:00 2001
From: yoshi-code-bot <70984784+yoshi-code-bot@users.noreply.github.com>
Date: Fri, 6 Feb 2026 18:16:23 -0800
Subject: [PATCH] chore: regenerate gkebackup client
---
.../v1/2.0.0/README.md | 4 +-
.../services/gkebackup/v1/BackupforGKE.java | 10 ++-
.../gkebackup/v1/model/GetTagsRequest.java | 66 +++++++++++++++++++
.../gkebackup/v1/model/SetTagsRequest.java | 24 +++++++
.../v1/2.0.0/pom.xml | 4 +-
.../v1/README.md | 4 +-
6 files changed, 104 insertions(+), 8 deletions(-)
create mode 100644 clients/google-api-services-gkebackup/v1/2.0.0/com/google/api/services/gkebackup/v1/model/GetTagsRequest.java
diff --git a/clients/google-api-services-gkebackup/v1/2.0.0/README.md b/clients/google-api-services-gkebackup/v1/2.0.0/README.md
index 58adc81cf89..176b11a042d 100644
--- a/clients/google-api-services-gkebackup/v1/2.0.0/README.md
+++ b/clients/google-api-services-gkebackup/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-gkebackup
- v1-rev20260120-2.0.0
+ v1-rev20260202-2.0.0
@@ -35,7 +35,7 @@ repositories {
mavenCentral()
}
dependencies {
- implementation 'com.google.apis:google-api-services-gkebackup:v1-rev20260120-2.0.0'
+ implementation 'com.google.apis:google-api-services-gkebackup:v1-rev20260202-2.0.0'
}
```
diff --git a/clients/google-api-services-gkebackup/v1/2.0.0/com/google/api/services/gkebackup/v1/BackupforGKE.java b/clients/google-api-services-gkebackup/v1/2.0.0/com/google/api/services/gkebackup/v1/BackupforGKE.java
index 0e7b02930c2..b761e848322 100644
--- a/clients/google-api-services-gkebackup/v1/2.0.0/com/google/api/services/gkebackup/v1/BackupforGKE.java
+++ b/clients/google-api-services-gkebackup/v1/2.0.0/com/google/api/services/gkebackup/v1/BackupforGKE.java
@@ -312,7 +312,10 @@ public Get set(String parameterName, Object value) {
}
}
/**
- * Lists information about the supported locations for this service.
+ * Lists information about the supported locations for this service. This method can be called in
+ * two ways: * **List all public locations:** Use the path `GET /v1/locations`. * **List project-
+ * visible locations:** Use the path `GET /v1/projects/{project_id}/locations`. This may include
+ * public locations as well as private or other locations specifically visible to the project.
*
* Create a request for the method "locations.list".
*
@@ -336,7 +339,10 @@ public class List extends BackupforGKERequest 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 for GKE 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 GetTagsRequest extends com.google.api.client.json.GenericJson {
+
+ /**
+ * Required. The full resource name of the service resource.
+ * The value may be {@code null}.
+ */
+ @com.google.api.client.util.Key
+ private java.lang.String name;
+
+ /**
+ * Required. The full resource name of the service resource.
+ * @return value or {@code null} for none
+ */
+ public java.lang.String getName() {
+ return name;
+ }
+
+ /**
+ * Required. The full resource name of the service resource.
+ * @param name name or {@code null} for none
+ */
+ public GetTagsRequest setName(java.lang.String name) {
+ this.name = name;
+ return this;
+ }
+
+ @Override
+ public GetTagsRequest set(String fieldName, Object value) {
+ return (GetTagsRequest) super.set(fieldName, value);
+ }
+
+ @Override
+ public GetTagsRequest clone() {
+ return (GetTagsRequest) super.clone();
+ }
+
+}
diff --git a/clients/google-api-services-gkebackup/v1/2.0.0/com/google/api/services/gkebackup/v1/model/SetTagsRequest.java b/clients/google-api-services-gkebackup/v1/2.0.0/com/google/api/services/gkebackup/v1/model/SetTagsRequest.java
index e9de6c8a869..5c3701c435b 100644
--- a/clients/google-api-services-gkebackup/v1/2.0.0/com/google/api/services/gkebackup/v1/model/SetTagsRequest.java
+++ b/clients/google-api-services-gkebackup/v1/2.0.0/com/google/api/services/gkebackup/v1/model/SetTagsRequest.java
@@ -37,6 +37,13 @@ public final class SetTagsRequest extends com.google.api.client.json.GenericJson
@com.google.api.client.util.Key
private java.lang.String etag;
+ /**
+ * Required. The full resource name of the service resource.
+ * The value may be {@code null}.
+ */
+ @com.google.api.client.util.Key
+ private java.lang.String name;
+
/**
* Optional. A unique identifier for this request. Must be a valid UUID. This request is only
* idempotent if a `request_id` is provided.
@@ -73,6 +80,23 @@ public SetTagsRequest setEtag(java.lang.String etag) {
return this;
}
+ /**
+ * Required. The full resource name of the service resource.
+ * @return value or {@code null} for none
+ */
+ public java.lang.String getName() {
+ return name;
+ }
+
+ /**
+ * Required. The full resource name of the service resource.
+ * @param name name or {@code null} for none
+ */
+ public SetTagsRequest setName(java.lang.String name) {
+ this.name = name;
+ return this;
+ }
+
/**
* Optional. A unique identifier for this request. Must be a valid UUID. This request is only
* idempotent if a `request_id` is provided.
diff --git a/clients/google-api-services-gkebackup/v1/2.0.0/pom.xml b/clients/google-api-services-gkebackup/v1/2.0.0/pom.xml
index fa9d4ae7ae8..0eca25236cd 100644
--- a/clients/google-api-services-gkebackup/v1/2.0.0/pom.xml
+++ b/clients/google-api-services-gkebackup/v1/2.0.0/pom.xml
@@ -8,8 +8,8 @@
com.google.apis
google-api-services-gkebackup
- v1-rev20260120-2.0.0
- Backup for GKE API v1-rev20260120-2.0.0
+ v1-rev20260202-2.0.0
+ Backup for GKE API v1-rev20260202-2.0.0
jar
2011
diff --git a/clients/google-api-services-gkebackup/v1/README.md b/clients/google-api-services-gkebackup/v1/README.md
index 58adc81cf89..176b11a042d 100644
--- a/clients/google-api-services-gkebackup/v1/README.md
+++ b/clients/google-api-services-gkebackup/v1/README.md
@@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file:
com.google.apis
google-api-services-gkebackup
- v1-rev20260120-2.0.0
+ v1-rev20260202-2.0.0
@@ -35,7 +35,7 @@ repositories {
mavenCentral()
}
dependencies {
- implementation 'com.google.apis:google-api-services-gkebackup:v1-rev20260120-2.0.0'
+ implementation 'com.google.apis:google-api-services-gkebackup:v1-rev20260202-2.0.0'
}
```