From afb71ac0f597ffa9da0fa7ef7ed6a8e389355f44 Mon Sep 17 00:00:00 2001 From: yoshi-code-bot <70984784+yoshi-code-bot@users.noreply.github.com> Date: Wed, 25 Mar 2026 18:13:05 -0700 Subject: [PATCH] chore: regenerate bigtableadmin client --- .../v2/2.0.0/README.md | 4 +- .../model/GoogleBigtableAdminV2TypeBool.java | 24 +++++++++++ ...GoogleBigtableAdminV2TypeBoolEncoding.java | 43 +++++++++++++++++++ .../bigtableadmin/v2/model/Instance.java | 24 +++++++++++ .../v2/2.0.0/pom.xml | 4 +- .../v2/README.md | 4 +- 6 files changed, 97 insertions(+), 6 deletions(-) create mode 100644 clients/google-api-services-bigtableadmin/v2/2.0.0/com/google/api/services/bigtableadmin/v2/model/GoogleBigtableAdminV2TypeBoolEncoding.java diff --git a/clients/google-api-services-bigtableadmin/v2/2.0.0/README.md b/clients/google-api-services-bigtableadmin/v2/2.0.0/README.md index 5294809b3f1..32740f44d8e 100644 --- a/clients/google-api-services-bigtableadmin/v2/2.0.0/README.md +++ b/clients/google-api-services-bigtableadmin/v2/2.0.0/README.md @@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file: com.google.apis google-api-services-bigtableadmin - v2-rev20260307-2.0.0 + v2-rev20260320-2.0.0 @@ -35,7 +35,7 @@ repositories { mavenCentral() } dependencies { - implementation 'com.google.apis:google-api-services-bigtableadmin:v2-rev20260307-2.0.0' + implementation 'com.google.apis:google-api-services-bigtableadmin:v2-rev20260320-2.0.0' } ``` diff --git a/clients/google-api-services-bigtableadmin/v2/2.0.0/com/google/api/services/bigtableadmin/v2/model/GoogleBigtableAdminV2TypeBool.java b/clients/google-api-services-bigtableadmin/v2/2.0.0/com/google/api/services/bigtableadmin/v2/model/GoogleBigtableAdminV2TypeBool.java index 6ef1e57c76f..0616fed5355 100644 --- a/clients/google-api-services-bigtableadmin/v2/2.0.0/com/google/api/services/bigtableadmin/v2/model/GoogleBigtableAdminV2TypeBool.java +++ b/clients/google-api-services-bigtableadmin/v2/2.0.0/com/google/api/services/bigtableadmin/v2/model/GoogleBigtableAdminV2TypeBool.java @@ -30,6 +30,30 @@ @SuppressWarnings("javadoc") public final class GoogleBigtableAdminV2TypeBool extends com.google.api.client.json.GenericJson { + /** + * Specifies the encoding to use when converting to or from lower level types. + * The value may be {@code null}. + */ + @com.google.api.client.util.Key + private GoogleBigtableAdminV2TypeBoolEncoding encoding; + + /** + * Specifies the encoding to use when converting to or from lower level types. + * @return value or {@code null} for none + */ + public GoogleBigtableAdminV2TypeBoolEncoding getEncoding() { + return encoding; + } + + /** + * Specifies the encoding to use when converting to or from lower level types. + * @param encoding encoding or {@code null} for none + */ + public GoogleBigtableAdminV2TypeBool setEncoding(GoogleBigtableAdminV2TypeBoolEncoding encoding) { + this.encoding = encoding; + return this; + } + @Override public GoogleBigtableAdminV2TypeBool set(String fieldName, Object value) { return (GoogleBigtableAdminV2TypeBool) super.set(fieldName, value); diff --git a/clients/google-api-services-bigtableadmin/v2/2.0.0/com/google/api/services/bigtableadmin/v2/model/GoogleBigtableAdminV2TypeBoolEncoding.java b/clients/google-api-services-bigtableadmin/v2/2.0.0/com/google/api/services/bigtableadmin/v2/model/GoogleBigtableAdminV2TypeBoolEncoding.java new file mode 100644 index 00000000000..96fa12dd601 --- /dev/null +++ b/clients/google-api-services-bigtableadmin/v2/2.0.0/com/google/api/services/bigtableadmin/v2/model/GoogleBigtableAdminV2TypeBoolEncoding.java @@ -0,0 +1,43 @@ +/* + * 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.bigtableadmin.v2.model; + +/** + * Defines rules used to convert to or from lower level types. + * + *

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 Cloud Bigtable Admin 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 GoogleBigtableAdminV2TypeBoolEncoding extends com.google.api.client.json.GenericJson { + + @Override + public GoogleBigtableAdminV2TypeBoolEncoding set(String fieldName, Object value) { + return (GoogleBigtableAdminV2TypeBoolEncoding) super.set(fieldName, value); + } + + @Override + public GoogleBigtableAdminV2TypeBoolEncoding clone() { + return (GoogleBigtableAdminV2TypeBoolEncoding) super.clone(); + } + +} diff --git a/clients/google-api-services-bigtableadmin/v2/2.0.0/com/google/api/services/bigtableadmin/v2/model/Instance.java b/clients/google-api-services-bigtableadmin/v2/2.0.0/com/google/api/services/bigtableadmin/v2/model/Instance.java index 31627bd8c97..6102bb3daa5 100644 --- a/clients/google-api-services-bigtableadmin/v2/2.0.0/com/google/api/services/bigtableadmin/v2/model/Instance.java +++ b/clients/google-api-services-bigtableadmin/v2/2.0.0/com/google/api/services/bigtableadmin/v2/model/Instance.java @@ -47,6 +47,13 @@ public final class Instance extends com.google.api.client.json.GenericJson { @com.google.api.client.util.Key private java.lang.String displayName; + /** + * Optional. The edition of the instance. See Edition for details. + * The value may be {@code null}. + */ + @com.google.api.client.util.Key + private java.lang.String edition; + /** * Labels are a flexible and lightweight mechanism for organizing cloud resources into groups that * reflect a customer's organizational needs and deployment strategies. They can be used to filter @@ -145,6 +152,23 @@ public Instance setDisplayName(java.lang.String displayName) { return this; } + /** + * Optional. The edition of the instance. See Edition for details. + * @return value or {@code null} for none + */ + public java.lang.String getEdition() { + return edition; + } + + /** + * Optional. The edition of the instance. See Edition for details. + * @param edition edition or {@code null} for none + */ + public Instance setEdition(java.lang.String edition) { + this.edition = edition; + return this; + } + /** * Labels are a flexible and lightweight mechanism for organizing cloud resources into groups that * reflect a customer's organizational needs and deployment strategies. They can be used to filter diff --git a/clients/google-api-services-bigtableadmin/v2/2.0.0/pom.xml b/clients/google-api-services-bigtableadmin/v2/2.0.0/pom.xml index 2166011bc1f..1b45fc3c46d 100644 --- a/clients/google-api-services-bigtableadmin/v2/2.0.0/pom.xml +++ b/clients/google-api-services-bigtableadmin/v2/2.0.0/pom.xml @@ -8,8 +8,8 @@ com.google.apis google-api-services-bigtableadmin - v2-rev20260307-2.0.0 - Cloud Bigtable Admin API v2-rev20260307-2.0.0 + v2-rev20260320-2.0.0 + Cloud Bigtable Admin API v2-rev20260320-2.0.0 jar 2011 diff --git a/clients/google-api-services-bigtableadmin/v2/README.md b/clients/google-api-services-bigtableadmin/v2/README.md index 5294809b3f1..32740f44d8e 100644 --- a/clients/google-api-services-bigtableadmin/v2/README.md +++ b/clients/google-api-services-bigtableadmin/v2/README.md @@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file: com.google.apis google-api-services-bigtableadmin - v2-rev20260307-2.0.0 + v2-rev20260320-2.0.0 @@ -35,7 +35,7 @@ repositories { mavenCentral() } dependencies { - implementation 'com.google.apis:google-api-services-bigtableadmin:v2-rev20260307-2.0.0' + implementation 'com.google.apis:google-api-services-bigtableadmin:v2-rev20260320-2.0.0' } ```