Skip to content

Commit db7d8cc

Browse files
chore: regenerate bigtableadmin client
1 parent ebb6aa7 commit db7d8cc

File tree

6 files changed

+84
-11
lines changed

6 files changed

+84
-11
lines changed

clients/google-api-services-bigtableadmin/v2/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-bigtableadmin</artifactId>
25-
<version>v2-rev20251209-2.0.0</version>
25+
<version>v2-rev20260210-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-bigtableadmin:v2-rev20251209-2.0.0'
38+
implementation 'com.google.apis:google-api-services-bigtableadmin:v2-rev20260210-2.0.0'
3939
}
4040
```
4141

clients/google-api-services-bigtableadmin/v2/2.0.0/com/google/api/services/bigtableadmin/v2/BigtableAdmin.java

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ public class BigtableAdmin extends com.google.api.client.googleapis.services.jso
103103
* {@code com.google.api.client.extensions.appengine.http.UrlFetchTransport}</li>
104104
* <li>Android: {@code newCompatibleTransport} from
105105
* {@code com.google.api.client.extensions.android.http.AndroidHttp}</li>
106-
* <li>Java: {@link com.google.api.client.googleapis.javanet.GoogleNetHttpTransport#newTrustedTransport()}
106+
* <li>Java: {@code com.google.api.client.http.javanet.NetHttpTransport}</li>
107107
* </li>
108108
* </ul>
109109
* @param jsonFactory JSON factory, which may be:
@@ -13171,7 +13171,10 @@ public Locations locations() {
1317113171
public class Locations {
1317213172

1317313173
/**
13174-
* Lists information about the supported locations for this service.
13174+
* Lists information about the supported locations for this service. This method can be called in
13175+
* two ways: * **List all public locations:** Use the path `GET /v1/locations`. * **List project-
13176+
* visible locations:** Use the path `GET /v1/projects/{project_id}/locations`. This may include
13177+
* public locations as well as private or other locations specifically visible to the project.
1317513178
*
1317613179
* Create a request for the method "locations.list".
1317713180
*
@@ -13195,7 +13198,10 @@ public class List extends BigtableAdminRequest<com.google.api.services.bigtablea
1319513198
java.util.regex.Pattern.compile("^projects/[^/]+$");
1319613199

1319713200
/**
13198-
* Lists information about the supported locations for this service.
13201+
* Lists information about the supported locations for this service. This method can be called in
13202+
* two ways: * **List all public locations:** Use the path `GET /v1/locations`. * **List project-
13203+
* visible locations:** Use the path `GET /v1/projects/{project_id}/locations`. This may include
13204+
* public locations as well as private or other locations specifically visible to the project.
1319913205
*
1320013206
* Create a request for the method "locations.list".
1320113207
*
@@ -13431,8 +13437,7 @@ private static String chooseEndpoint(com.google.api.client.http.HttpTransport tr
1343113437
* {@code com.google.api.client.extensions.appengine.http.UrlFetchTransport}</li>
1343213438
* <li>Android: {@code newCompatibleTransport} from
1343313439
* {@code com.google.api.client.extensions.android.http.AndroidHttp}</li>
13434-
* <li>Java: {@link com.google.api.client.googleapis.javanet.GoogleNetHttpTransport#newTrustedTransport()}
13435-
* </li>
13440+
* <li>Java: {@code com.google.api.client.http.javanet.NetHttpTransport}</li>
1343613441
* </ul>
1343713442
* @param jsonFactory JSON factory, which may be:
1343813443
* <ul>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
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.bigtableadmin.v2.model;
18+
19+
/**
20+
* A geography type, representing a point or region on Earth. The value is stored in
21+
* `Value.bytes_value` as Well-Known Binary (WKB) bytes.
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 Cloud Bigtable Admin API. For a detailed explanation
25+
* see:
26+
* <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>
27+
* </p>
28+
*
29+
* @author Google, Inc.
30+
*/
31+
@SuppressWarnings("javadoc")
32+
public final class GoogleBigtableAdminV2TypeGeography extends com.google.api.client.json.GenericJson {
33+
34+
@Override
35+
public GoogleBigtableAdminV2TypeGeography set(String fieldName, Object value) {
36+
return (GoogleBigtableAdminV2TypeGeography) super.set(fieldName, value);
37+
}
38+
39+
@Override
40+
public GoogleBigtableAdminV2TypeGeography clone() {
41+
return (GoogleBigtableAdminV2TypeGeography) super.clone();
42+
}
43+
44+
}

clients/google-api-services-bigtableadmin/v2/2.0.0/com/google/api/services/bigtableadmin/v2/model/Type.java

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -98,6 +98,13 @@ public final class Type extends com.google.api.client.json.GenericJson {
9898
@com.google.api.client.util.Key
9999
private GoogleBigtableAdminV2TypeFloat64 float64Type;
100100

101+
/**
102+
* Geography
103+
* The value may be {@code null}.
104+
*/
105+
@com.google.api.client.util.Key
106+
private GoogleBigtableAdminV2TypeGeography geographyType;
107+
101108
/**
102109
* Int64
103110
* The value may be {@code null}.
@@ -276,6 +283,23 @@ public Type setFloat64Type(GoogleBigtableAdminV2TypeFloat64 float64Type) {
276283
return this;
277284
}
278285

286+
/**
287+
* Geography
288+
* @return value or {@code null} for none
289+
*/
290+
public GoogleBigtableAdminV2TypeGeography getGeographyType() {
291+
return geographyType;
292+
}
293+
294+
/**
295+
* Geography
296+
* @param geographyType geographyType or {@code null} for none
297+
*/
298+
public Type setGeographyType(GoogleBigtableAdminV2TypeGeography geographyType) {
299+
this.geographyType = geographyType;
300+
return this;
301+
}
302+
279303
/**
280304
* Int64
281305
* @return value or {@code null} for none

clients/google-api-services-bigtableadmin/v2/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-bigtableadmin</artifactId>
11-
<version>v2-rev20251209-2.0.0</version>
12-
<name>Cloud Bigtable Admin API v2-rev20251209-2.0.0</name>
11+
<version>v2-rev20260210-2.0.0</version>
12+
<name>Cloud Bigtable Admin API v2-rev20260210-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

clients/google-api-services-bigtableadmin/v2/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-bigtableadmin</artifactId>
25-
<version>v2-rev20251209-2.0.0</version>
25+
<version>v2-rev20260210-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-bigtableadmin:v2-rev20251209-2.0.0'
38+
implementation 'com.google.apis:google-api-services-bigtableadmin:v2-rev20260210-2.0.0'
3939
}
4040
```
4141

0 commit comments

Comments
 (0)