Skip to content

Commit 64c2179

Browse files
1 parent 46df79c commit 64c2179

File tree

7 files changed

+222
-443
lines changed

7 files changed

+222
-443
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-rev20250912-2.0.0</version>
25+
<version>v2-rev20251004-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-rev20250912-2.0.0'
38+
implementation 'com.google.apis:google-api-services-bigtableadmin:v2-rev20251004-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: 80 additions & 437 deletions
Large diffs are not rendered by default.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,67 @@
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 state of a materialized view's data in a particular cluster.
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 GoogleBigtableAdminV2MaterializedViewClusterState extends com.google.api.client.json.GenericJson {
32+
33+
/**
34+
* Output only. The state of the materialized view in this cluster.
35+
* The value may be {@code null}.
36+
*/
37+
@com.google.api.client.util.Key
38+
private java.lang.String replicationState;
39+
40+
/**
41+
* Output only. The state of the materialized view in this cluster.
42+
* @return value or {@code null} for none
43+
*/
44+
public java.lang.String getReplicationState() {
45+
return replicationState;
46+
}
47+
48+
/**
49+
* Output only. The state of the materialized view in this cluster.
50+
* @param replicationState replicationState or {@code null} for none
51+
*/
52+
public GoogleBigtableAdminV2MaterializedViewClusterState setReplicationState(java.lang.String replicationState) {
53+
this.replicationState = replicationState;
54+
return this;
55+
}
56+
57+
@Override
58+
public GoogleBigtableAdminV2MaterializedViewClusterState set(String fieldName, Object value) {
59+
return (GoogleBigtableAdminV2MaterializedViewClusterState) super.set(fieldName, value);
60+
}
61+
62+
@Override
63+
public GoogleBigtableAdminV2MaterializedViewClusterState clone() {
64+
return (GoogleBigtableAdminV2MaterializedViewClusterState) super.clone();
65+
}
66+
67+
}

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

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,15 @@ public final class ListOperationsResponse extends com.google.api.client.json.Gen
4444
@com.google.api.client.util.Key
4545
private java.util.List<Operation> operations;
4646

47+
/**
48+
* Unordered list. Unreachable resources. Populated when the request sets
49+
* `ListOperationsRequest.return_partial_success` and reads across collections e.g. when
50+
* attempting to list all resources across all supported locations.
51+
* The value may be {@code null}.
52+
*/
53+
@com.google.api.client.util.Key
54+
private java.util.List<java.lang.String> unreachable;
55+
4756
/**
4857
* The standard List next-page token.
4958
* @return value or {@code null} for none
@@ -78,6 +87,27 @@ public ListOperationsResponse setOperations(java.util.List<Operation> operations
7887
return this;
7988
}
8089

90+
/**
91+
* Unordered list. Unreachable resources. Populated when the request sets
92+
* `ListOperationsRequest.return_partial_success` and reads across collections e.g. when
93+
* attempting to list all resources across all supported locations.
94+
* @return value or {@code null} for none
95+
*/
96+
public java.util.List<java.lang.String> getUnreachable() {
97+
return unreachable;
98+
}
99+
100+
/**
101+
* Unordered list. Unreachable resources. Populated when the request sets
102+
* `ListOperationsRequest.return_partial_success` and reads across collections e.g. when
103+
* attempting to list all resources across all supported locations.
104+
* @param unreachable unreachable or {@code null} for none
105+
*/
106+
public ListOperationsResponse setUnreachable(java.util.List<java.lang.String> unreachable) {
107+
this.unreachable = unreachable;
108+
return this;
109+
}
110+
81111
@Override
82112
public ListOperationsResponse set(String fieldName, Object value) {
83113
return (ListOperationsResponse) super.set(fieldName, value);

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

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,22 @@
3030
@SuppressWarnings("javadoc")
3131
public final class MaterializedView extends com.google.api.client.json.GenericJson {
3232

33+
/**
34+
* Output only. Map from cluster ID to per-cluster materialized view state. If it could not be
35+
* determined whether or not the materialized view has data in a particular cluster (for example,
36+
* if its zone is unavailable), then there will be an entry for the cluster with `STATE_NOT_KNOWN`
37+
* state. Views: `REPLICATION_VIEW`, `FULL`.
38+
* The value may be {@code null}.
39+
*/
40+
@com.google.api.client.util.Key
41+
private java.util.Map<String, GoogleBigtableAdminV2MaterializedViewClusterState> clusterStates;
42+
43+
static {
44+
// hack to force ProGuard to consider GoogleBigtableAdminV2MaterializedViewClusterState used, since otherwise it would be stripped out
45+
// see https://github.com/google/google-api-java-client/issues/543
46+
com.google.api.client.util.Data.nullOf(GoogleBigtableAdminV2MaterializedViewClusterState.class);
47+
}
48+
3349
/**
3450
* Set to true to make the MaterializedView protected against deletion. Views: `SCHEMA_VIEW`,
3551
* `REPLICATION_VIEW`, `FULL`.
@@ -63,6 +79,29 @@ public final class MaterializedView extends com.google.api.client.json.GenericJs
6379
@com.google.api.client.util.Key
6480
private java.lang.String query;
6581

82+
/**
83+
* Output only. Map from cluster ID to per-cluster materialized view state. If it could not be
84+
* determined whether or not the materialized view has data in a particular cluster (for example,
85+
* if its zone is unavailable), then there will be an entry for the cluster with `STATE_NOT_KNOWN`
86+
* state. Views: `REPLICATION_VIEW`, `FULL`.
87+
* @return value or {@code null} for none
88+
*/
89+
public java.util.Map<String, GoogleBigtableAdminV2MaterializedViewClusterState> getClusterStates() {
90+
return clusterStates;
91+
}
92+
93+
/**
94+
* Output only. Map from cluster ID to per-cluster materialized view state. If it could not be
95+
* determined whether or not the materialized view has data in a particular cluster (for example,
96+
* if its zone is unavailable), then there will be an entry for the cluster with `STATE_NOT_KNOWN`
97+
* state. Views: `REPLICATION_VIEW`, `FULL`.
98+
* @param clusterStates clusterStates or {@code null} for none
99+
*/
100+
public MaterializedView setClusterStates(java.util.Map<String, GoogleBigtableAdminV2MaterializedViewClusterState> clusterStates) {
101+
this.clusterStates = clusterStates;
102+
return this;
103+
}
104+
66105
/**
67106
* Set to true to make the MaterializedView protected against deletion. Views: `SCHEMA_VIEW`,
68107
* `REPLICATION_VIEW`, `FULL`.

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-rev20250912-2.0.0</version>
12-
<name>Cloud Bigtable Admin API v2-rev20250912-2.0.0</name>
11+
<version>v2-rev20251004-2.0.0</version>
12+
<name>Cloud Bigtable Admin API v2-rev20251004-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-rev20250912-2.0.0</version>
25+
<version>v2-rev20251004-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-rev20250912-2.0.0'
38+
implementation 'com.google.apis:google-api-services-bigtableadmin:v2-rev20251004-2.0.0'
3939
}
4040
```
4141

0 commit comments

Comments
 (0)