prepare release of version 2.0, regen all APIs

This commit is contained in:
Sebastian Thiel
2021-04-01 23:46:26 +08:00
parent f1c05f2554
commit c606d37dd3
3415 changed files with 3620084 additions and 2930380 deletions

View File

@@ -25,7 +25,7 @@ Find the source code [on github](https://github.com/Byron/google-apis-rs/tree/ma
# Usage
This documentation was generated from the *Bigtable Admin* API at revision *20200609*. The CLI is at version *1.0.14*.
This documentation was generated from the *Bigtable Admin* API at revision *20210323*. The CLI is at version *2.0.0*.
```bash
bigtableadmin2 [options]
@@ -40,7 +40,12 @@ bigtableadmin2 [options]
instances-app-profiles-get <name> [-p <v>]... [-o <out>]
instances-app-profiles-list <parent> [-p <v>]... [-o <out>]
instances-app-profiles-patch <name> (-r <kv>)... [-p <v>]... [-o <out>]
instances-clusters-backups-create <parent> (-r <kv>)... [-p <v>]... [-o <out>]
instances-clusters-backups-delete <name> [-p <v>]... [-o <out>]
instances-clusters-backups-get <name> [-p <v>]... [-o <out>]
instances-clusters-backups-get-iam-policy <resource> (-r <kv>)... [-p <v>]... [-o <out>]
instances-clusters-backups-list <parent> [-p <v>]... [-o <out>]
instances-clusters-backups-patch <name> (-r <kv>)... [-p <v>]... [-o <out>]
instances-clusters-backups-set-iam-policy <resource> (-r <kv>)... [-p <v>]... [-o <out>]
instances-clusters-backups-test-iam-permissions <resource> (-r <kv>)... [-p <v>]... [-o <out>]
instances-clusters-create <parent> (-r <kv>)... [-p <v>]... [-o <out>]
@@ -64,6 +69,7 @@ bigtableadmin2 [options]
instances-tables-get-iam-policy <resource> (-r <kv>)... [-p <v>]... [-o <out>]
instances-tables-list <parent> [-p <v>]... [-o <out>]
instances-tables-modify-column-families <name> (-r <kv>)... [-p <v>]... [-o <out>]
instances-tables-restore <parent> (-r <kv>)... [-p <v>]... [-o <out>]
instances-tables-set-iam-policy <resource> (-r <kv>)... [-p <v>]... [-o <out>]
instances-tables-test-iam-permissions <resource> (-r <kv>)... [-p <v>]... [-o <out>]
instances-test-iam-permissions <resource> (-r <kv>)... [-p <v>]... [-o <out>]
@@ -81,12 +87,6 @@ Configuration:
A directory into which we will store our persistent data. Defaults to
a user-writable directory that we will create during the first invocation.
[default: ~/.google-service-cli]
--debug
Output all server communication to standard error. `tx` and `rx` are placed
into the same stream.
--debug-auth
Output all communication related to authentication to standard error. `tx`
and `rx` are placed into the same stream.
```
@@ -139,10 +139,7 @@ Even though the CLI does its best to provide usable error messages, sometimes it
what exactly led to a particular issue. This is done by allowing all client-server communication to be
output to standard error *as-is*.
The `--debug` flag will print all client-server communication to standard error, whereas the `--debug-auth` flag
will cause all communication related to authentication to standard error.
If the `--debug` flag is set, error-results will be debug-printed, possibly yielding more information about the
issue at hand.
The `--debug` flag will print errors using the `Debug` representation to standard error.
You may consider redirecting standard error into a file for ease of use, e.g. `bigtableadmin2 --debug <resource> <method> [options] 2>debug.txt`.