Skip to content

Commit

Permalink
feat(bigtableadmin): update the api
Browse files Browse the repository at this point in the history
#### bigtableadmin:v2

The following keys were added:
- schemas.ModifyColumnFamiliesRequest.properties.ignoreWarnings.type (Total Keys: 1)
  • Loading branch information
yoshi-automation committed Jan 26, 2024
1 parent 8b03014 commit 75da3ae
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
1 change: 1 addition & 0 deletions docs/dyn/bigtableadmin_v2.projects.instances.tables.html
Original file line number Diff line number Diff line change
Expand Up @@ -658,6 +658,7 @@ <h3>Method Details</h3>
The object takes the form of:

{ # Request message for google.bigtable.admin.v2.BigtableTableAdmin.ModifyColumnFamilies
&quot;ignoreWarnings&quot;: True or False, # Optional. If true, ignore safety checks when modifying the column families.
&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).
{ # A create, update, or delete of a particular column family.
&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.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1875,7 +1875,7 @@
}
}
},
"revision": "20240110",
"revision": "20240120",
"rootUrl": "https://bigtableadmin.googleapis.com/",
"schemas": {
"AppProfile": {
Expand Down Expand Up @@ -3002,6 +3002,10 @@
"description": "Request message for google.bigtable.admin.v2.BigtableTableAdmin.ModifyColumnFamilies",
"id": "ModifyColumnFamiliesRequest",
"properties": {
"ignoreWarnings": {
"description": "Optional. If true, ignore safety checks when modifying the column families.",
"type": "boolean"
},
"modifications": {
"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).",
"items": {
Expand Down

0 comments on commit 75da3ae

Please sign in to comment.