Skip to content

Commit 8d08494

Browse files
feat(bigtableadmin): update the API
#### bigtableadmin:v2 The following keys were added: - schemas.Instance.properties.tags.additionalProperties.type - schemas.Instance.properties.tags.description - schemas.Instance.properties.tags.type
1 parent 3d83f2a commit 8d08494

File tree

2 files changed

+16
-1
lines changed

2 files changed

+16
-1
lines changed

discovery/bigtableadmin-v2.json

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3168,7 +3168,7 @@
31683168
}
31693169
}
31703170
},
3171-
"revision": "20250724",
3171+
"revision": "20250804",
31723172
"rootUrl": "https://bigtableadmin.googleapis.com/",
31733173
"schemas": {
31743174
"AppProfile": {
@@ -4695,6 +4695,13 @@
46954695
"readOnly": true,
46964696
"type": "string"
46974697
},
4698+
"tags": {
4699+
"additionalProperties": {
4700+
"type": "string"
4701+
},
4702+
"description": "Optional. Input only. Immutable. Tag keys/values directly bound to this resource. For example: \"123/environment\": \"production\", \"123/costCenter\": \"marketing\" Tags and Labels (above) are both used to bind metadata to resources, with different use-cases. See https://cloud.google.com/resource-manager/docs/tags/tags-overview for an in-depth overview on the difference between tags and labels.",
4703+
"type": "object"
4704+
},
46984705
"type": {
46994706
"description": "The type of the instance. Defaults to `PRODUCTION`.",
47004707
"enum": [

src/apis/bigtableadmin/v2.ts

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1254,6 +1254,10 @@ export namespace bigtableadmin_v2 {
12541254
* Output only. The current state of the instance.
12551255
*/
12561256
state?: string | null;
1257+
/**
1258+
* Optional. Input only. Immutable. Tag keys/values directly bound to this resource. For example: "123/environment": "production", "123/costCenter": "marketing" Tags and Labels (above) are both used to bind metadata to resources, with different use-cases. See https://cloud.google.com/resource-manager/docs/tags/tags-overview for an in-depth overview on the difference between tags and labels.
1259+
*/
1260+
tags?: {[key: string]: string} | null;
12571261
/**
12581262
* The type of the instance. Defaults to `PRODUCTION`.
12591263
*/
@@ -3198,6 +3202,7 @@ export namespace bigtableadmin_v2 {
31983202
* // "satisfiesPzi": false,
31993203
* // "satisfiesPzs": false,
32003204
* // "state": "my_state",
3205+
* // "tags": {},
32013206
* // "type": "my_type"
32023207
* // }
32033208
* }
@@ -3657,6 +3662,7 @@ export namespace bigtableadmin_v2 {
36573662
* // "satisfiesPzi": false,
36583663
* // "satisfiesPzs": false,
36593664
* // "state": "my_state",
3665+
* // "tags": {},
36603666
* // "type": "my_type"
36613667
* // }
36623668
* },
@@ -4134,6 +4140,7 @@ export namespace bigtableadmin_v2 {
41344140
* // "satisfiesPzi": false,
41354141
* // "satisfiesPzs": false,
41364142
* // "state": "my_state",
4143+
* // "tags": {},
41374144
* // "type": "my_type"
41384145
* // }
41394146
* },
@@ -4149,6 +4156,7 @@ export namespace bigtableadmin_v2 {
41494156
* // "satisfiesPzi": false,
41504157
* // "satisfiesPzs": false,
41514158
* // "state": "my_state",
4159+
* // "tags": {},
41524160
* // "type": "my_type"
41534161
* // }
41544162
* }

0 commit comments

Comments
 (0)