Skip to content

Commit 498a121

Browse files
1 parent 4bf89a0 commit 498a121

File tree

4 files changed

+42
-6
lines changed

4 files changed

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

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

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -89,6 +89,17 @@ public final class Instance extends com.google.api.client.json.GenericJson {
8989
@com.google.api.client.util.Key
9090
private java.lang.String state;
9191

92+
/**
93+
* Optional. Input only. Immutable. Tag keys/values directly bound to this resource. For example:
94+
* "123/environment": "production", "123/costCenter": "marketing" Tags and Labels (above) are both
95+
* used to bind metadata to resources, with different use-cases. See
96+
* https://cloud.google.com/resource-manager/docs/tags/tags-overview for an in-depth overview on
97+
* the difference between tags and labels.
98+
* The value may be {@code null}.
99+
*/
100+
@com.google.api.client.util.Key
101+
private java.util.Map<String, java.lang.String> tags;
102+
92103
/**
93104
* The type of the instance. Defaults to `PRODUCTION`.
94105
* The value may be {@code null}.
@@ -233,6 +244,31 @@ public Instance setState(java.lang.String state) {
233244
return this;
234245
}
235246

247+
/**
248+
* Optional. Input only. Immutable. Tag keys/values directly bound to this resource. For example:
249+
* "123/environment": "production", "123/costCenter": "marketing" Tags and Labels (above) are both
250+
* used to bind metadata to resources, with different use-cases. See
251+
* https://cloud.google.com/resource-manager/docs/tags/tags-overview for an in-depth overview on
252+
* the difference between tags and labels.
253+
* @return value or {@code null} for none
254+
*/
255+
public java.util.Map<String, java.lang.String> getTags() {
256+
return tags;
257+
}
258+
259+
/**
260+
* Optional. Input only. Immutable. Tag keys/values directly bound to this resource. For example:
261+
* "123/environment": "production", "123/costCenter": "marketing" Tags and Labels (above) are both
262+
* used to bind metadata to resources, with different use-cases. See
263+
* https://cloud.google.com/resource-manager/docs/tags/tags-overview for an in-depth overview on
264+
* the difference between tags and labels.
265+
* @param tags tags or {@code null} for none
266+
*/
267+
public Instance setTags(java.util.Map<String, java.lang.String> tags) {
268+
this.tags = tags;
269+
return this;
270+
}
271+
236272
/**
237273
* The type of the instance. Defaults to `PRODUCTION`.
238274
* @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-rev20250724-2.0.0</version>
12-
<name>Cloud Bigtable Admin API v2-rev20250724-2.0.0</name>
11+
<version>v2-rev20250804-2.0.0</version>
12+
<name>Cloud Bigtable Admin API v2-rev20250804-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-rev20250724-2.0.0</version>
25+
<version>v2-rev20250804-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-rev20250724-2.0.0'
38+
implementation 'com.google.apis:google-api-services-bigtableadmin:v2-rev20250804-2.0.0'
3939
}
4040
```
4141

0 commit comments

Comments
 (0)