Skip to content

Commit 53baac0

Browse files
1 parent d296170 commit 53baac0

File tree

9 files changed

+1899
-6
lines changed

9 files changed

+1899
-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-rev20250610-2.0.0</version>
25+
<version>v2-rev20250624-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-rev20250610-2.0.0'
38+
implementation 'com.google.apis:google-api-services-bigtableadmin:v2-rev20250624-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: 1309 additions & 0 deletions
Large diffs are not rendered by default.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,118 @@
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+
* The metadata for the Operation returned by CreateSchemaBundle.
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 CreateSchemaBundleMetadata extends com.google.api.client.json.GenericJson {
32+
33+
/**
34+
* If set, the time at which this operation finished or was canceled.
35+
* The value may be {@code null}.
36+
*/
37+
@com.google.api.client.util.Key
38+
private String endTime;
39+
40+
/**
41+
* The unique name identifying this schema bundle. Values are of the form
42+
* `projects/{project}/instances/{instance}/tables/{table}/schemaBundles/{schema_bundle}`
43+
* The value may be {@code null}.
44+
*/
45+
@com.google.api.client.util.Key
46+
private java.lang.String name;
47+
48+
/**
49+
* The time at which this operation started.
50+
* The value may be {@code null}.
51+
*/
52+
@com.google.api.client.util.Key
53+
private String startTime;
54+
55+
/**
56+
* If set, the time at which this operation finished or was canceled.
57+
* @return value or {@code null} for none
58+
*/
59+
public String getEndTime() {
60+
return endTime;
61+
}
62+
63+
/**
64+
* If set, the time at which this operation finished or was canceled.
65+
* @param endTime endTime or {@code null} for none
66+
*/
67+
public CreateSchemaBundleMetadata setEndTime(String endTime) {
68+
this.endTime = endTime;
69+
return this;
70+
}
71+
72+
/**
73+
* The unique name identifying this schema bundle. Values are of the form
74+
* `projects/{project}/instances/{instance}/tables/{table}/schemaBundles/{schema_bundle}`
75+
* @return value or {@code null} for none
76+
*/
77+
public java.lang.String getName() {
78+
return name;
79+
}
80+
81+
/**
82+
* The unique name identifying this schema bundle. Values are of the form
83+
* `projects/{project}/instances/{instance}/tables/{table}/schemaBundles/{schema_bundle}`
84+
* @param name name or {@code null} for none
85+
*/
86+
public CreateSchemaBundleMetadata setName(java.lang.String name) {
87+
this.name = name;
88+
return this;
89+
}
90+
91+
/**
92+
* The time at which this operation started.
93+
* @return value or {@code null} for none
94+
*/
95+
public String getStartTime() {
96+
return startTime;
97+
}
98+
99+
/**
100+
* The time at which this operation started.
101+
* @param startTime startTime or {@code null} for none
102+
*/
103+
public CreateSchemaBundleMetadata setStartTime(String startTime) {
104+
this.startTime = startTime;
105+
return this;
106+
}
107+
108+
@Override
109+
public CreateSchemaBundleMetadata set(String fieldName, Object value) {
110+
return (CreateSchemaBundleMetadata) super.set(fieldName, value);
111+
}
112+
113+
@Override
114+
public CreateSchemaBundleMetadata clone() {
115+
return (CreateSchemaBundleMetadata) super.clone();
116+
}
117+
118+
}
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+
* The response for ListSchemaBundles.
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 ListSchemaBundlesResponse extends com.google.api.client.json.GenericJson {
32+
33+
/**
34+
* A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted,
35+
* there are no subsequent pages.
36+
* The value may be {@code null}.
37+
*/
38+
@com.google.api.client.util.Key
39+
private java.lang.String nextPageToken;
40+
41+
/**
42+
* The schema bundles from the specified table.
43+
* The value may be {@code null}.
44+
*/
45+
@com.google.api.client.util.Key
46+
private java.util.List<SchemaBundle> schemaBundles;
47+
48+
/**
49+
* A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted,
50+
* there are no subsequent pages.
51+
* @return value or {@code null} for none
52+
*/
53+
public java.lang.String getNextPageToken() {
54+
return nextPageToken;
55+
}
56+
57+
/**
58+
* A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted,
59+
* there are no subsequent pages.
60+
* @param nextPageToken nextPageToken or {@code null} for none
61+
*/
62+
public ListSchemaBundlesResponse setNextPageToken(java.lang.String nextPageToken) {
63+
this.nextPageToken = nextPageToken;
64+
return this;
65+
}
66+
67+
/**
68+
* The schema bundles from the specified table.
69+
* @return value or {@code null} for none
70+
*/
71+
public java.util.List<SchemaBundle> getSchemaBundles() {
72+
return schemaBundles;
73+
}
74+
75+
/**
76+
* The schema bundles from the specified table.
77+
* @param schemaBundles schemaBundles or {@code null} for none
78+
*/
79+
public ListSchemaBundlesResponse setSchemaBundles(java.util.List<SchemaBundle> schemaBundles) {
80+
this.schemaBundles = schemaBundles;
81+
return this;
82+
}
83+
84+
@Override
85+
public ListSchemaBundlesResponse set(String fieldName, Object value) {
86+
return (ListSchemaBundlesResponse) super.set(fieldName, value);
87+
}
88+
89+
@Override
90+
public ListSchemaBundlesResponse clone() {
91+
return (ListSchemaBundlesResponse) super.clone();
92+
}
93+
94+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,130 @@
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+
* Represents a protobuf schema.
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 ProtoSchema extends com.google.api.client.json.GenericJson {
32+
33+
/**
34+
* Required. Contains a protobuf-serialized [google.protobuf.FileDescriptorSet](https://github.com
35+
* /protocolbuffers/protobuf/blob/main/src/google/protobuf/descriptor.proto), which could include
36+
* multiple proto files. To generate it, [install](https://grpc.io/docs/protoc-installation/) and
37+
* run `protoc` with `--include_imports` and `--descriptor_set_out`. For example, to generate for
38+
* moon/shot/app.proto, run ``` $protoc --proto_path=/app_path --proto_path=/lib_path \
39+
* --include_imports \ --descriptor_set_out=descriptors.pb \ moon/shot/app.proto ``` For more
40+
* details, see protobuffer [self description](https://developers.google.com/protocol-
41+
* buffers/docs/techniques#self-description).
42+
* The value may be {@code null}.
43+
*/
44+
@com.google.api.client.util.Key
45+
private java.lang.String protoDescriptors;
46+
47+
/**
48+
* Required. Contains a protobuf-serialized [google.protobuf.FileDescriptorSet](https://github.com
49+
* /protocolbuffers/protobuf/blob/main/src/google/protobuf/descriptor.proto), which could include
50+
* multiple proto files. To generate it, [install](https://grpc.io/docs/protoc-installation/) and
51+
* run `protoc` with `--include_imports` and `--descriptor_set_out`. For example, to generate for
52+
* moon/shot/app.proto, run ``` $protoc --proto_path=/app_path --proto_path=/lib_path \
53+
* --include_imports \ --descriptor_set_out=descriptors.pb \ moon/shot/app.proto ``` For more
54+
* details, see protobuffer [self description](https://developers.google.com/protocol-
55+
* buffers/docs/techniques#self-description).
56+
* @see #decodeProtoDescriptors()
57+
* @return value or {@code null} for none
58+
*/
59+
public java.lang.String getProtoDescriptors() {
60+
return protoDescriptors;
61+
}
62+
63+
/**
64+
* Required. Contains a protobuf-serialized [google.protobuf.FileDescriptorSet](https://github.com
65+
* /protocolbuffers/protobuf/blob/main/src/google/protobuf/descriptor.proto), which could include
66+
* multiple proto files. To generate it, [install](https://grpc.io/docs/protoc-installation/) and
67+
* run `protoc` with `--include_imports` and `--descriptor_set_out`. For example, to generate for
68+
* moon/shot/app.proto, run ``` $protoc --proto_path=/app_path --proto_path=/lib_path \
69+
* --include_imports \ --descriptor_set_out=descriptors.pb \ moon/shot/app.proto ``` For more
70+
* details, see protobuffer [self description](https://developers.google.com/protocol-
71+
* buffers/docs/techniques#self-description).
72+
* @see #getProtoDescriptors()
73+
* @return Base64 decoded value or {@code null} for none
74+
*
75+
* @since 1.14
76+
*/
77+
public byte[] decodeProtoDescriptors() {
78+
return com.google.api.client.util.Base64.decodeBase64(protoDescriptors);
79+
}
80+
81+
/**
82+
* Required. Contains a protobuf-serialized [google.protobuf.FileDescriptorSet](https://github.com
83+
* /protocolbuffers/protobuf/blob/main/src/google/protobuf/descriptor.proto), which could include
84+
* multiple proto files. To generate it, [install](https://grpc.io/docs/protoc-installation/) and
85+
* run `protoc` with `--include_imports` and `--descriptor_set_out`. For example, to generate for
86+
* moon/shot/app.proto, run ``` $protoc --proto_path=/app_path --proto_path=/lib_path \
87+
* --include_imports \ --descriptor_set_out=descriptors.pb \ moon/shot/app.proto ``` For more
88+
* details, see protobuffer [self description](https://developers.google.com/protocol-
89+
* buffers/docs/techniques#self-description).
90+
* @see #encodeProtoDescriptors()
91+
* @param protoDescriptors protoDescriptors or {@code null} for none
92+
*/
93+
public ProtoSchema setProtoDescriptors(java.lang.String protoDescriptors) {
94+
this.protoDescriptors = protoDescriptors;
95+
return this;
96+
}
97+
98+
/**
99+
* Required. Contains a protobuf-serialized [google.protobuf.FileDescriptorSet](https://github.com
100+
* /protocolbuffers/protobuf/blob/main/src/google/protobuf/descriptor.proto), which could include
101+
* multiple proto files. To generate it, [install](https://grpc.io/docs/protoc-installation/) and
102+
* run `protoc` with `--include_imports` and `--descriptor_set_out`. For example, to generate for
103+
* moon/shot/app.proto, run ``` $protoc --proto_path=/app_path --proto_path=/lib_path \
104+
* --include_imports \ --descriptor_set_out=descriptors.pb \ moon/shot/app.proto ``` For more
105+
* details, see protobuffer [self description](https://developers.google.com/protocol-
106+
* buffers/docs/techniques#self-description).
107+
* @see #setProtoDescriptors()
108+
*
109+
* <p>
110+
* The value is encoded Base64 or {@code null} for none.
111+
* </p>
112+
*
113+
* @since 1.14
114+
*/
115+
public ProtoSchema encodeProtoDescriptors(byte[] protoDescriptors) {
116+
this.protoDescriptors = com.google.api.client.util.Base64.encodeBase64URLSafeString(protoDescriptors);
117+
return this;
118+
}
119+
120+
@Override
121+
public ProtoSchema set(String fieldName, Object value) {
122+
return (ProtoSchema) super.set(fieldName, value);
123+
}
124+
125+
@Override
126+
public ProtoSchema clone() {
127+
return (ProtoSchema) super.clone();
128+
}
129+
130+
}

0 commit comments

Comments
 (0)