Skip to content

Commit 0e7fd74

Browse files
1 parent e643108 commit 0e7fd74

File tree

7 files changed

+265
-6
lines changed

7 files changed

+265
-6
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-rev20250624-2.0.0</version>
25+
<version>v2-rev20250724-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-rev20250624-2.0.0'
38+
implementation 'com.google.apis:google-api-services-bigtableadmin:v2-rev20250724-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: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12835,6 +12835,29 @@ public List setPageToken(java.lang.String pageToken) {
1283512835
return this;
1283612836
}
1283712837

12838+
/**
12839+
* Optional. The resource_view to be applied to the returned SchemaBundles' fields.
12840+
* Defaults to NAME_ONLY.
12841+
*/
12842+
@com.google.api.client.util.Key
12843+
private java.lang.String view;
12844+
12845+
/** Optional. The resource_view to be applied to the returned SchemaBundles' fields. Defaults to
12846+
NAME_ONLY.
12847+
*/
12848+
public java.lang.String getView() {
12849+
return view;
12850+
}
12851+
12852+
/**
12853+
* Optional. The resource_view to be applied to the returned SchemaBundles' fields.
12854+
* Defaults to NAME_ONLY.
12855+
*/
12856+
public List setView(java.lang.String view) {
12857+
this.view = view;
12858+
return this;
12859+
}
12860+
1283812861
@Override
1283912862
public List set(String parameterName, Object value) {
1284012863
return (List) super.set(parameterName, value);
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,94 @@
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 protobuf enum type. Values of type `Enum` are stored in `Value.int_value`.
21+
*
22+
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
23+
* transmitted over HTTP when working with the Cloud Bigtable Admin API. For a detailed explanation
24+
* see:
25+
* <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>
26+
* </p>
27+
*
28+
* @author Google, Inc.
29+
*/
30+
@SuppressWarnings("javadoc")
31+
public final class GoogleBigtableAdminV2TypeEnum extends com.google.api.client.json.GenericJson {
32+
33+
/**
34+
* The fully qualified name of the protobuf enum message, including package. In the format of
35+
* "foo.bar.EnumMessage".
36+
* The value may be {@code null}.
37+
*/
38+
@com.google.api.client.util.Key
39+
private java.lang.String enumName;
40+
41+
/**
42+
* The ID of the schema bundle that this enum is defined in.
43+
* The value may be {@code null}.
44+
*/
45+
@com.google.api.client.util.Key
46+
private java.lang.String schemaBundleId;
47+
48+
/**
49+
* The fully qualified name of the protobuf enum message, including package. In the format of
50+
* "foo.bar.EnumMessage".
51+
* @return value or {@code null} for none
52+
*/
53+
public java.lang.String getEnumName() {
54+
return enumName;
55+
}
56+
57+
/**
58+
* The fully qualified name of the protobuf enum message, including package. In the format of
59+
* "foo.bar.EnumMessage".
60+
* @param enumName enumName or {@code null} for none
61+
*/
62+
public GoogleBigtableAdminV2TypeEnum setEnumName(java.lang.String enumName) {
63+
this.enumName = enumName;
64+
return this;
65+
}
66+
67+
/**
68+
* The ID of the schema bundle that this enum is defined in.
69+
* @return value or {@code null} for none
70+
*/
71+
public java.lang.String getSchemaBundleId() {
72+
return schemaBundleId;
73+
}
74+
75+
/**
76+
* The ID of the schema bundle that this enum is defined in.
77+
* @param schemaBundleId schemaBundleId or {@code null} for none
78+
*/
79+
public GoogleBigtableAdminV2TypeEnum setSchemaBundleId(java.lang.String schemaBundleId) {
80+
this.schemaBundleId = schemaBundleId;
81+
return this;
82+
}
83+
84+
@Override
85+
public GoogleBigtableAdminV2TypeEnum set(String fieldName, Object value) {
86+
return (GoogleBigtableAdminV2TypeEnum) super.set(fieldName, value);
87+
}
88+
89+
@Override
90+
public GoogleBigtableAdminV2TypeEnum clone() {
91+
return (GoogleBigtableAdminV2TypeEnum) super.clone();
92+
}
93+
94+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,94 @@
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 protobuf message type. Values of type `Proto` are stored in `Value.bytes_value`.
21+
*
22+
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
23+
* transmitted over HTTP when working with the Cloud Bigtable Admin API. For a detailed explanation
24+
* see:
25+
* <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>
26+
* </p>
27+
*
28+
* @author Google, Inc.
29+
*/
30+
@SuppressWarnings("javadoc")
31+
public final class GoogleBigtableAdminV2TypeProto extends com.google.api.client.json.GenericJson {
32+
33+
/**
34+
* The fully qualified name of the protobuf message, including package. In the format of
35+
* "foo.bar.Message".
36+
* The value may be {@code null}.
37+
*/
38+
@com.google.api.client.util.Key
39+
private java.lang.String messageName;
40+
41+
/**
42+
* The ID of the schema bundle that this proto is defined in.
43+
* The value may be {@code null}.
44+
*/
45+
@com.google.api.client.util.Key
46+
private java.lang.String schemaBundleId;
47+
48+
/**
49+
* The fully qualified name of the protobuf message, including package. In the format of
50+
* "foo.bar.Message".
51+
* @return value or {@code null} for none
52+
*/
53+
public java.lang.String getMessageName() {
54+
return messageName;
55+
}
56+
57+
/**
58+
* The fully qualified name of the protobuf message, including package. In the format of
59+
* "foo.bar.Message".
60+
* @param messageName messageName or {@code null} for none
61+
*/
62+
public GoogleBigtableAdminV2TypeProto setMessageName(java.lang.String messageName) {
63+
this.messageName = messageName;
64+
return this;
65+
}
66+
67+
/**
68+
* The ID of the schema bundle that this proto is defined in.
69+
* @return value or {@code null} for none
70+
*/
71+
public java.lang.String getSchemaBundleId() {
72+
return schemaBundleId;
73+
}
74+
75+
/**
76+
* The ID of the schema bundle that this proto is defined in.
77+
* @param schemaBundleId schemaBundleId or {@code null} for none
78+
*/
79+
public GoogleBigtableAdminV2TypeProto setSchemaBundleId(java.lang.String schemaBundleId) {
80+
this.schemaBundleId = schemaBundleId;
81+
return this;
82+
}
83+
84+
@Override
85+
public GoogleBigtableAdminV2TypeProto set(String fieldName, Object value) {
86+
return (GoogleBigtableAdminV2TypeProto) super.set(fieldName, value);
87+
}
88+
89+
@Override
90+
public GoogleBigtableAdminV2TypeProto clone() {
91+
return (GoogleBigtableAdminV2TypeProto) super.clone();
92+
}
93+
94+
}

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

Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,13 @@ public final class Type extends com.google.api.client.json.GenericJson {
7777
@com.google.api.client.util.Key
7878
private GoogleBigtableAdminV2TypeDate dateType;
7979

80+
/**
81+
* Enum
82+
* The value may be {@code null}.
83+
*/
84+
@com.google.api.client.util.Key
85+
private GoogleBigtableAdminV2TypeEnum enumType;
86+
8087
/**
8188
* Float32
8289
* The value may be {@code null}.
@@ -105,6 +112,13 @@ public final class Type extends com.google.api.client.json.GenericJson {
105112
@com.google.api.client.util.Key
106113
private GoogleBigtableAdminV2TypeMap mapType;
107114

115+
/**
116+
* Proto
117+
* The value may be {@code null}.
118+
*/
119+
@com.google.api.client.util.Key
120+
private GoogleBigtableAdminV2TypeProto protoType;
121+
108122
/**
109123
* String
110124
* The value may be {@code null}.
@@ -211,6 +225,23 @@ public Type setDateType(GoogleBigtableAdminV2TypeDate dateType) {
211225
return this;
212226
}
213227

228+
/**
229+
* Enum
230+
* @return value or {@code null} for none
231+
*/
232+
public GoogleBigtableAdminV2TypeEnum getEnumType() {
233+
return enumType;
234+
}
235+
236+
/**
237+
* Enum
238+
* @param enumType enumType or {@code null} for none
239+
*/
240+
public Type setEnumType(GoogleBigtableAdminV2TypeEnum enumType) {
241+
this.enumType = enumType;
242+
return this;
243+
}
244+
214245
/**
215246
* Float32
216247
* @return value or {@code null} for none
@@ -279,6 +310,23 @@ public Type setMapType(GoogleBigtableAdminV2TypeMap mapType) {
279310
return this;
280311
}
281312

313+
/**
314+
* Proto
315+
* @return value or {@code null} for none
316+
*/
317+
public GoogleBigtableAdminV2TypeProto getProtoType() {
318+
return protoType;
319+
}
320+
321+
/**
322+
* Proto
323+
* @param protoType protoType or {@code null} for none
324+
*/
325+
public Type setProtoType(GoogleBigtableAdminV2TypeProto protoType) {
326+
this.protoType = protoType;
327+
return this;
328+
}
329+
282330
/**
283331
* String
284332
* @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-rev20250624-2.0.0</version>
12-
<name>Cloud Bigtable Admin API v2-rev20250624-2.0.0</name>
11+
<version>v2-rev20250724-2.0.0</version>
12+
<name>Cloud Bigtable Admin API v2-rev20250724-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-rev20250624-2.0.0</version>
25+
<version>v2-rev20250724-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-rev20250624-2.0.0'
38+
implementation 'com.google.apis:google-api-services-bigtableadmin:v2-rev20250724-2.0.0'
3939
}
4040
```
4141

0 commit comments

Comments
 (0)