mirror of
https://github.com/imjasonh/gcloud-help
synced 2026-07-21 22:49:22 +00:00
gcloud: Tue Mar 1 04:29:52 UTC 2022
This commit is contained in:
parent
aab53307a8
commit
1456dab6c7
9791 changed files with 814712 additions and 0 deletions
88
gcloud/beta/game/servers/realms/create
Normal file
88
gcloud/beta/game/servers/realms/create
Normal file
|
|
@ -0,0 +1,88 @@
|
|||
NAME
|
||||
gcloud beta game servers realms create - create a Realm
|
||||
|
||||
SYNOPSIS
|
||||
gcloud beta game servers realms create (REALM : --location=LOCATION)
|
||||
--time-zone=TIME_ZONE [--async] [--description=DESCRIPTION]
|
||||
[--labels=[KEY=VALUE,...]] [GCLOUD_WIDE_FLAG ...]
|
||||
|
||||
DESCRIPTION
|
||||
(BETA) Create a Cloud Game Server Realm.
|
||||
|
||||
EXAMPLES
|
||||
To create Realm 'my-realm' in project 'my-project' with location in
|
||||
'my-location' and time zone 'UTC', run:
|
||||
|
||||
$ gcloud beta game servers realms create my-realm \
|
||||
--project=my-project --location=my-location --time-zone=UTC \
|
||||
--labels=a=x,b=y
|
||||
|
||||
POSITIONAL ARGUMENTS
|
||||
Realm resource - Cloud Game Server Realm to create. The arguments in this
|
||||
group can be used to specify the attributes of this resource. (NOTE) Some
|
||||
attributes are not given arguments in this group but can be set in other
|
||||
ways. To set the project attribute:
|
||||
◆ provide the argument realm on the command line with a fully specified
|
||||
name;
|
||||
◆ set the property core/project;
|
||||
◆ provide the argument --project on the command line.
|
||||
|
||||
This must be specified.
|
||||
|
||||
REALM
|
||||
ID of the realm or fully qualified identifier for the realm. To set
|
||||
the realm attribute:
|
||||
▸ provide the argument realm on the command line.
|
||||
|
||||
This positional must be specified if any of the other arguments in
|
||||
this group are specified.
|
||||
|
||||
--location=LOCATION
|
||||
Google Cloud location. To set the location attribute:
|
||||
▸ provide the argument realm on the command line with a fully
|
||||
specified name;
|
||||
▸ provide the argument --location on the command line;
|
||||
▸ set the property game_services/location.
|
||||
|
||||
REQUIRED FLAGS
|
||||
--time-zone=TIME_ZONE
|
||||
Time zone where all realm-specific policies are evaluated. The value of
|
||||
this field must be from the IANA time zone database:
|
||||
https://www.iana.org/time-zones.
|
||||
|
||||
OPTIONAL FLAGS
|
||||
--async
|
||||
Return immediately, without waiting for the operation in progress to
|
||||
complete.
|
||||
|
||||
--description=DESCRIPTION
|
||||
Game server realm description.
|
||||
|
||||
--labels=[KEY=VALUE,...]
|
||||
List of label KEY=VALUE pairs to add.
|
||||
|
||||
Keys must start with a lowercase character and contain only hyphens
|
||||
(-), underscores (_), lowercase characters, and numbers. Values must
|
||||
contain only hyphens (-), underscores (_), lowercase characters, and
|
||||
numbers.
|
||||
|
||||
GCLOUD WIDE FLAGS
|
||||
These flags are available to all commands: --access-token-file, --account,
|
||||
--billing-project, --configuration, --flags-file, --flatten, --format,
|
||||
--help, --impersonate-service-account, --log-http, --project, --quiet,
|
||||
--trace-token, --user-output-enabled, --verbosity.
|
||||
|
||||
Run $ gcloud help for details.
|
||||
|
||||
API REFERENCE
|
||||
This command uses the gameservices/v1beta API. The full documentation for
|
||||
this API can be found at: https://cloud.google.com/solutions/gaming/
|
||||
|
||||
NOTES
|
||||
This command is currently in beta and might change without notice. These
|
||||
variants are also available:
|
||||
|
||||
$ gcloud game servers realms create
|
||||
|
||||
$ gcloud alpha game servers realms create
|
||||
|
||||
69
gcloud/beta/game/servers/realms/delete
Normal file
69
gcloud/beta/game/servers/realms/delete
Normal file
|
|
@ -0,0 +1,69 @@
|
|||
NAME
|
||||
gcloud beta game servers realms delete - delete a Realm
|
||||
|
||||
SYNOPSIS
|
||||
gcloud beta game servers realms delete (REALM : --location=LOCATION)
|
||||
[--async] [GCLOUD_WIDE_FLAG ...]
|
||||
|
||||
DESCRIPTION
|
||||
(BETA) Delete a Cloud Game Server Realm.
|
||||
|
||||
EXAMPLES
|
||||
To delete Realm 'my-realm' in project 'my-project' and location
|
||||
'my-location', run:
|
||||
|
||||
$ gcloud beta game servers realms delete my-realm \
|
||||
--project=my-project --location=my-location
|
||||
|
||||
POSITIONAL ARGUMENTS
|
||||
Realm resource - Cloud Game Server Realm to describe. The arguments in
|
||||
this group can be used to specify the attributes of this resource. (NOTE)
|
||||
Some attributes are not given arguments in this group but can be set in
|
||||
other ways. To set the project attribute:
|
||||
◆ provide the argument realm on the command line with a fully specified
|
||||
name;
|
||||
◆ set the property core/project;
|
||||
◆ provide the argument --project on the command line.
|
||||
|
||||
This must be specified.
|
||||
|
||||
REALM
|
||||
ID of the realm or fully qualified identifier for the realm. To set
|
||||
the realm attribute:
|
||||
▸ provide the argument realm on the command line.
|
||||
|
||||
This positional must be specified if any of the other arguments in
|
||||
this group are specified.
|
||||
|
||||
--location=LOCATION
|
||||
Google Cloud location. To set the location attribute:
|
||||
▸ provide the argument realm on the command line with a fully
|
||||
specified name;
|
||||
▸ provide the argument --location on the command line;
|
||||
▸ set the property game_services/location.
|
||||
|
||||
FLAGS
|
||||
--async
|
||||
Return immediately, without waiting for the operation in progress to
|
||||
complete.
|
||||
|
||||
GCLOUD WIDE FLAGS
|
||||
These flags are available to all commands: --access-token-file, --account,
|
||||
--billing-project, --configuration, --flags-file, --flatten, --format,
|
||||
--help, --impersonate-service-account, --log-http, --project, --quiet,
|
||||
--trace-token, --user-output-enabled, --verbosity.
|
||||
|
||||
Run $ gcloud help for details.
|
||||
|
||||
API REFERENCE
|
||||
This command uses the gameservices/v1beta API. The full documentation for
|
||||
this API can be found at: https://cloud.google.com/solutions/gaming/
|
||||
|
||||
NOTES
|
||||
This command is currently in beta and might change without notice. These
|
||||
variants are also available:
|
||||
|
||||
$ gcloud game servers realms delete
|
||||
|
||||
$ gcloud alpha game servers realms delete
|
||||
|
||||
64
gcloud/beta/game/servers/realms/describe
Normal file
64
gcloud/beta/game/servers/realms/describe
Normal file
|
|
@ -0,0 +1,64 @@
|
|||
NAME
|
||||
gcloud beta game servers realms describe - describe a Realm
|
||||
|
||||
SYNOPSIS
|
||||
gcloud beta game servers realms describe (REALM : --location=LOCATION)
|
||||
[GCLOUD_WIDE_FLAG ...]
|
||||
|
||||
DESCRIPTION
|
||||
(BETA) Describe a Cloud Game Server Realm.
|
||||
|
||||
EXAMPLES
|
||||
To describe Realm 'my-realm' in project 'my-project' and location
|
||||
'my-location', run:
|
||||
|
||||
$ gcloud beta game servers realms describe my-realm \
|
||||
--project=my-project --location=my-location
|
||||
|
||||
POSITIONAL ARGUMENTS
|
||||
Realm resource - Cloud Game Server Realm to describe. The arguments in
|
||||
this group can be used to specify the attributes of this resource. (NOTE)
|
||||
Some attributes are not given arguments in this group but can be set in
|
||||
other ways. To set the project attribute:
|
||||
◆ provide the argument realm on the command line with a fully specified
|
||||
name;
|
||||
◆ set the property core/project;
|
||||
◆ provide the argument --project on the command line.
|
||||
|
||||
This must be specified.
|
||||
|
||||
REALM
|
||||
ID of the realm or fully qualified identifier for the realm. To set
|
||||
the realm attribute:
|
||||
▸ provide the argument realm on the command line.
|
||||
|
||||
This positional must be specified if any of the other arguments in
|
||||
this group are specified.
|
||||
|
||||
--location=LOCATION
|
||||
Google Cloud location. To set the location attribute:
|
||||
▸ provide the argument realm on the command line with a fully
|
||||
specified name;
|
||||
▸ provide the argument --location on the command line;
|
||||
▸ set the property game_services/location.
|
||||
|
||||
GCLOUD WIDE FLAGS
|
||||
These flags are available to all commands: --access-token-file, --account,
|
||||
--billing-project, --configuration, --flags-file, --flatten, --format,
|
||||
--help, --impersonate-service-account, --log-http, --project, --quiet,
|
||||
--trace-token, --user-output-enabled, --verbosity.
|
||||
|
||||
Run $ gcloud help for details.
|
||||
|
||||
API REFERENCE
|
||||
This command uses the gameservices/v1beta API. The full documentation for
|
||||
this API can be found at: https://cloud.google.com/solutions/gaming/
|
||||
|
||||
NOTES
|
||||
This command is currently in beta and might change without notice. These
|
||||
variants are also available:
|
||||
|
||||
$ gcloud game servers realms describe
|
||||
|
||||
$ gcloud alpha game servers realms describe
|
||||
|
||||
41
gcloud/beta/game/servers/realms/help
Normal file
41
gcloud/beta/game/servers/realms/help
Normal file
|
|
@ -0,0 +1,41 @@
|
|||
NAME
|
||||
gcloud beta game servers realms - deploy and manage Cloud Game Server
|
||||
Realms
|
||||
|
||||
SYNOPSIS
|
||||
gcloud beta game servers realms COMMAND [GCLOUD_WIDE_FLAG ...]
|
||||
|
||||
DESCRIPTION
|
||||
(BETA) Deploy and manage Cloud Game Server Realms.
|
||||
|
||||
GCLOUD WIDE FLAGS
|
||||
These flags are available to all commands: --help.
|
||||
|
||||
Run $ gcloud help for details.
|
||||
|
||||
COMMANDS
|
||||
COMMAND is one of the following:
|
||||
|
||||
create
|
||||
(BETA) Create a Realm.
|
||||
|
||||
delete
|
||||
(BETA) Delete a Realm.
|
||||
|
||||
describe
|
||||
(BETA) Describe a Realm.
|
||||
|
||||
list
|
||||
(BETA) List Realms.
|
||||
|
||||
update
|
||||
(BETA) Update a Realm.
|
||||
|
||||
NOTES
|
||||
This command is currently in beta and might change without notice. These
|
||||
variants are also available:
|
||||
|
||||
$ gcloud game servers realms
|
||||
|
||||
$ gcloud alpha game servers realms
|
||||
|
||||
87
gcloud/beta/game/servers/realms/list
Normal file
87
gcloud/beta/game/servers/realms/list
Normal file
|
|
@ -0,0 +1,87 @@
|
|||
NAME
|
||||
gcloud beta game servers realms list - list Realms
|
||||
|
||||
SYNOPSIS
|
||||
gcloud beta game servers realms list [--location=LOCATION]
|
||||
[--filter=EXPRESSION] [--limit=LIMIT] [--page-size=PAGE_SIZE]
|
||||
[--sort-by=[FIELD,...]] [--uri] [GCLOUD_WIDE_FLAG ...]
|
||||
|
||||
DESCRIPTION
|
||||
(BETA) List Cloud Game Server Realms.
|
||||
|
||||
EXAMPLES
|
||||
To see the list of all Realms in project 'my-project' and location
|
||||
'my-location', run:
|
||||
|
||||
$ gcloud beta game servers realms list --project=my-project \
|
||||
--location=my-location
|
||||
|
||||
FLAGS
|
||||
Location resource - Cloud Game Servers Location of the Realms to list.
|
||||
This represents a Cloud resource. (NOTE) Some attributes are not given
|
||||
arguments in this group but can be set in other ways. To set the project
|
||||
attribute:
|
||||
◆ provide the argument --location on the command line with a fully
|
||||
specified name;
|
||||
◆ set the property game_services/location with a fully specified name;
|
||||
◆ set the property core/project;
|
||||
◆ provide the argument --project on the command line.
|
||||
|
||||
--location=LOCATION
|
||||
ID of the location or fully qualified identifier for the location. To
|
||||
set the location attribute:
|
||||
▸ provide the argument --location on the command line;
|
||||
▸ set the property game_services/location.
|
||||
|
||||
LIST COMMAND FLAGS
|
||||
--filter=EXPRESSION
|
||||
Apply a Boolean filter EXPRESSION to each resource item to be listed.
|
||||
If the expression evaluates True, then that item is listed. For more
|
||||
details and examples of filter expressions, run $ gcloud topic filters.
|
||||
This flag interacts with other flags that are applied in this order:
|
||||
--flatten, --sort-by, --filter, --limit.
|
||||
|
||||
--limit=LIMIT
|
||||
Maximum number of resources to list. The default is unlimited. This
|
||||
flag interacts with other flags that are applied in this order:
|
||||
--flatten, --sort-by, --filter, --limit.
|
||||
|
||||
--page-size=PAGE_SIZE
|
||||
Some services group resource list output into pages. This flag
|
||||
specifies the maximum number of resources per page. The default is
|
||||
determined by the service if it supports paging, otherwise it is
|
||||
unlimited (no paging). Paging may be applied before or after --filter
|
||||
and --limit depending on the service.
|
||||
|
||||
--sort-by=[FIELD,...]
|
||||
Comma-separated list of resource field key names to sort by. The
|
||||
default order is ascending. Prefix a field with ``~'' for descending
|
||||
order on that field. This flag interacts with other flags that are
|
||||
applied in this order: --flatten, --sort-by, --filter, --limit.
|
||||
|
||||
--uri
|
||||
Print a list of resource URIs instead of the default output, and change
|
||||
the command output to a list of URIs. If this flag is used with
|
||||
--format, the formatting is applied on this URI list. To display URIs
|
||||
alongside other keys instead, use the uri() transform.
|
||||
|
||||
GCLOUD WIDE FLAGS
|
||||
These flags are available to all commands: --access-token-file, --account,
|
||||
--billing-project, --configuration, --flags-file, --flatten, --format,
|
||||
--help, --impersonate-service-account, --log-http, --project, --quiet,
|
||||
--trace-token, --user-output-enabled, --verbosity.
|
||||
|
||||
Run $ gcloud help for details.
|
||||
|
||||
API REFERENCE
|
||||
This command uses the gameservices/v1beta API. The full documentation for
|
||||
this API can be found at: https://cloud.google.com/solutions/gaming/
|
||||
|
||||
NOTES
|
||||
This command is currently in beta and might change without notice. These
|
||||
variants are also available:
|
||||
|
||||
$ gcloud game servers realms list
|
||||
|
||||
$ gcloud alpha game servers realms list
|
||||
|
||||
127
gcloud/beta/game/servers/realms/update
Normal file
127
gcloud/beta/game/servers/realms/update
Normal file
|
|
@ -0,0 +1,127 @@
|
|||
NAME
|
||||
gcloud beta game servers realms update - update a Realm
|
||||
|
||||
SYNOPSIS
|
||||
gcloud beta game servers realms update (REALM : --location=LOCATION)
|
||||
--dry-run [--description=DESCRIPTION] [--preview-time=PREVIEW_TIME]
|
||||
[--time-zone=TIME_ZONE] [--update-labels=[KEY=VALUE,...]]
|
||||
[--clear-labels | --remove-labels=[KEY,...]] [GCLOUD_WIDE_FLAG ...]
|
||||
|
||||
DESCRIPTION
|
||||
(BETA) Update a Cloud Game Server Realm.
|
||||
|
||||
EXAMPLES
|
||||
To update Realm 'my-realm' in project 'my-project' and location in
|
||||
'my-location' with a new time-zone run:
|
||||
|
||||
$ gcloud beta game servers realms update my-realm \
|
||||
--project=my-project --location=my-location --time-zone=EST \
|
||||
--no-dry-run
|
||||
|
||||
To preview Realm update for 'my-realm' in project 'my-project' and location
|
||||
in 'my-location' with a new time-zone run:
|
||||
|
||||
$ gcloud beta game servers realms update my-realm \
|
||||
--project=my-project --location=my-location --time-zone=EST \
|
||||
--dry-run
|
||||
|
||||
To update labels for Realm 'my-realm' in project 'my-project' and location
|
||||
in 'my-location' run:
|
||||
|
||||
$ gcloud beta game servers realms update my-realm \
|
||||
--project=my-project --location=my-location \
|
||||
--update-labels="key1=val1" --no-dry-run
|
||||
|
||||
POSITIONAL ARGUMENTS
|
||||
Realm resource - Cloud Game Server Realm to update. The arguments in this
|
||||
group can be used to specify the attributes of this resource. (NOTE) Some
|
||||
attributes are not given arguments in this group but can be set in other
|
||||
ways. To set the project attribute:
|
||||
◆ provide the argument realm on the command line with a fully specified
|
||||
name;
|
||||
◆ set the property core/project;
|
||||
◆ provide the argument --project on the command line.
|
||||
|
||||
This must be specified.
|
||||
|
||||
REALM
|
||||
ID of the realm or fully qualified identifier for the realm. To set
|
||||
the realm attribute:
|
||||
▸ provide the argument realm on the command line.
|
||||
|
||||
This positional must be specified if any of the other arguments in
|
||||
this group are specified.
|
||||
|
||||
--location=LOCATION
|
||||
Google Cloud location. To set the location attribute:
|
||||
▸ provide the argument realm on the command line with a fully
|
||||
specified name;
|
||||
▸ provide the argument --location on the command line;
|
||||
▸ set the property game_services/location.
|
||||
|
||||
REQUIRED FLAGS
|
||||
--dry-run
|
||||
Validate the changes, but do not execute it.
|
||||
|
||||
OPTIONAL FLAGS
|
||||
--description=DESCRIPTION
|
||||
Description for the realm.
|
||||
|
||||
--preview-time=PREVIEW_TIME
|
||||
This attribute is only relevant for preview (--dry-run). It is used to
|
||||
validate the state for a future time.
|
||||
|
||||
--time-zone=TIME_ZONE
|
||||
Time zone where all realm-specific policies are evaluated. The value of
|
||||
this field must be from the IANA time zone database:
|
||||
https://www.iana.org/time-zones.
|
||||
|
||||
--update-labels=[KEY=VALUE,...]
|
||||
List of label KEY=VALUE pairs to update. If a label exists, its value
|
||||
is modified. Otherwise, a new label is created.
|
||||
|
||||
Keys must start with a lowercase character and contain only hyphens
|
||||
(-), underscores (_), lowercase characters, and numbers. Values must
|
||||
contain only hyphens (-), underscores (_), lowercase characters, and
|
||||
numbers.
|
||||
|
||||
At most one of these can be specified:
|
||||
|
||||
--clear-labels
|
||||
Remove all labels. If --update-labels is also specified then
|
||||
--clear-labels is applied first.
|
||||
|
||||
For example, to remove all labels:
|
||||
|
||||
$ gcloud beta game servers realms update --clear-labels
|
||||
|
||||
To remove all existing labels and create two new labels, foo and baz:
|
||||
|
||||
$ gcloud beta game servers realms update --clear-labels \
|
||||
--update-labels foo=bar,baz=qux
|
||||
|
||||
--remove-labels=[KEY,...]
|
||||
List of label keys to remove. If a label does not exist it is
|
||||
silently ignored. If --update-labels is also specified then
|
||||
--update-labels is applied first.
|
||||
|
||||
GCLOUD WIDE FLAGS
|
||||
These flags are available to all commands: --access-token-file, --account,
|
||||
--billing-project, --configuration, --flags-file, --flatten, --format,
|
||||
--help, --impersonate-service-account, --log-http, --project, --quiet,
|
||||
--trace-token, --user-output-enabled, --verbosity.
|
||||
|
||||
Run $ gcloud help for details.
|
||||
|
||||
API REFERENCE
|
||||
This command uses the gameservices/v1beta API. The full documentation for
|
||||
this API can be found at: https://cloud.google.com/solutions/gaming/
|
||||
|
||||
NOTES
|
||||
This command is currently in beta and might change without notice. These
|
||||
variants are also available:
|
||||
|
||||
$ gcloud game servers realms update
|
||||
|
||||
$ gcloud alpha game servers realms update
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue