Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 75da3ae

Browse files
committedJan 26, 2024
feat(bigtableadmin): update the api
#### bigtableadmin:v2 The following keys were added: - schemas.ModifyColumnFamiliesRequest.properties.ignoreWarnings.type (Total Keys: 1)
1 parent 8b03014 commit 75da3ae

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed
 

‎docs/dyn/bigtableadmin_v2.projects.instances.tables.html

+1
Original file line numberDiff line numberDiff line change
@@ -658,6 +658,7 @@ <h3>Method Details</h3>
658658
The object takes the form of:
659659

660660
{ # Request message for google.bigtable.admin.v2.BigtableTableAdmin.ModifyColumnFamilies
661+
&quot;ignoreWarnings&quot;: True or False, # Optional. If true, ignore safety checks when modifying the column families.
661662
&quot;modifications&quot;: [ # Required. Modifications to be atomically applied to the specified table&#x27;s families. Entries are applied in order, meaning that earlier modifications can be masked by later ones (in the case of repeated updates to the same family, for example).
662663
{ # A create, update, or delete of a particular column family.
663664
&quot;create&quot;: { # A set of columns within a table which share a common configuration. # Create a new column family with the specified schema, or fail if one already exists with the given ID.

‎googleapiclient/discovery_cache/documents/bigtableadmin.v2.json

+5-1
Original file line numberDiff line numberDiff line change
@@ -1875,7 +1875,7 @@
18751875
}
18761876
}
18771877
},
1878-
"revision": "20240110",
1878+
"revision": "20240120",
18791879
"rootUrl": "https://bigtableadmin.googleapis.com/",
18801880
"schemas": {
18811881
"AppProfile": {
@@ -3002,6 +3002,10 @@
30023002
"description": "Request message for google.bigtable.admin.v2.BigtableTableAdmin.ModifyColumnFamilies",
30033003
"id": "ModifyColumnFamiliesRequest",
30043004
"properties": {
3005+
"ignoreWarnings": {
3006+
"description": "Optional. If true, ignore safety checks when modifying the column families.",
3007+
"type": "boolean"
3008+
},
30053009
"modifications": {
30063010
"description": "Required. Modifications to be atomically applied to the specified table's families. Entries are applied in order, meaning that earlier modifications can be masked by later ones (in the case of repeated updates to the same family, for example).",
30073011
"items": {

0 commit comments

Comments
 (0)
Please sign in to comment.