mirror of
https://github.com/imjasonh/gcloud-help
synced 2026-07-08 10:35:03 +00:00
gcloud: Wed Oct 25 11:42:23 UTC 2023
This commit is contained in:
parent
a15665661a
commit
d34c41a2ce
305 changed files with 5549 additions and 699 deletions
|
|
@ -5,7 +5,8 @@ SYNOPSIS
|
|||
gcloud bigtable app-profiles create (APP_PROFILE : --instance=INSTANCE)
|
||||
([--route-any : --restrict-to=[RESTRICT_TO,...]]
|
||||
| [--route-to=ROUTE_TO : --transactional-writes])
|
||||
[--description=DESCRIPTION] [--force] [GCLOUD_WIDE_FLAG ...]
|
||||
[--description=DESCRIPTION] [--force] [--priority=PRIORITY]
|
||||
[GCLOUD_WIDE_FLAG ...]
|
||||
|
||||
DESCRIPTION
|
||||
Create a new Bigtable app profile.
|
||||
|
|
@ -29,6 +30,11 @@ EXAMPLES
|
|||
--instance=my-instance-id --route-any \
|
||||
--description="Routes requests for my use case"
|
||||
|
||||
To create an app profile with a request priority of PRIORITY_MEDIUM, run:
|
||||
|
||||
$ gcloud bigtable app-profiles create my-app-profile-id \
|
||||
--instance=my-instance-id --route-any --priority=PRIORITY_MEDIUM
|
||||
|
||||
POSITIONAL ARGUMENTS
|
||||
App profile resource - The app profile to create. The arguments in this
|
||||
group can be used to specify the attributes of this resource. (NOTE) Some
|
||||
|
|
@ -94,6 +100,17 @@ OPTIONAL FLAGS
|
|||
--force
|
||||
Ignore warnings and force create.
|
||||
|
||||
--priority=PRIORITY
|
||||
Specify the request priority. If not specified, the app profile uses
|
||||
PRIORITY_HIGH by default. PRIORITY must be one of:
|
||||
|
||||
PRIORITY_HIGH
|
||||
Requests are treated with high priority.
|
||||
PRIORITY_LOW
|
||||
Requests are treated with low priority.
|
||||
PRIORITY_MEDIUM
|
||||
Requests are treated with medium priority.
|
||||
|
||||
GCLOUD WIDE FLAGS
|
||||
These flags are available to all commands: --access-token-file, --account,
|
||||
--billing-project, --configuration, --flags-file, --flatten, --format,
|
||||
|
|
|
|||
|
|
@ -3,7 +3,7 @@ NAME
|
|||
|
||||
SYNOPSIS
|
||||
gcloud bigtable app-profiles update (APP_PROFILE : --instance=INSTANCE)
|
||||
[--async] [--description=DESCRIPTION] [--force]
|
||||
[--async] [--description=DESCRIPTION] [--force] [--priority=PRIORITY]
|
||||
[[--route-any : --restrict-to=[RESTRICT_TO,...]]
|
||||
| [--route-to=ROUTE_TO : --transactional-writes]]
|
||||
[GCLOUD_WIDE_FLAG ...]
|
||||
|
|
@ -29,6 +29,11 @@ EXAMPLES
|
|||
$ gcloud bigtable app-profiles update my-app-profile-id \
|
||||
--instance=my-instance-id --description="New description"
|
||||
|
||||
To update the request priority for an app profile to PRIORITY_LOW, run:
|
||||
|
||||
$ gcloud bigtable app-profiles update my-app-profile-id \
|
||||
--instance=my-instance-id --priority=PRIORITY_LOW
|
||||
|
||||
POSITIONAL ARGUMENTS
|
||||
App profile resource - The app profile to update. The arguments in this
|
||||
group can be used to specify the attributes of this resource. (NOTE) Some
|
||||
|
|
@ -72,6 +77,17 @@ FLAGS
|
|||
--force
|
||||
Ignore warnings and force update.
|
||||
|
||||
--priority=PRIORITY
|
||||
Specify the request priority. If not specified, the app profile uses
|
||||
PRIORITY_HIGH by default. PRIORITY must be one of:
|
||||
|
||||
PRIORITY_HIGH
|
||||
Requests are treated with high priority.
|
||||
PRIORITY_LOW
|
||||
Requests are treated with low priority.
|
||||
PRIORITY_MEDIUM
|
||||
Requests are treated with medium priority.
|
||||
|
||||
At most one of these can be specified:
|
||||
|
||||
Multi Cluster Routing Policy
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue