mirror of
https://github.com/imjasonh/gcloud-help
synced 2026-07-18 23:08:48 +00:00
gcloud: Thu Jan 19 00:56:33 UTC 2023
This commit is contained in:
parent
348d9760ee
commit
1248f773ec
1462 changed files with 51835 additions and 5402 deletions
98
gcloud/vmware/networks/create
Normal file
98
gcloud/vmware/networks/create
Normal file
|
|
@ -0,0 +1,98 @@
|
|||
NAME
|
||||
gcloud vmware networks create - create a Google Cloud VMware Engine network
|
||||
|
||||
SYNOPSIS
|
||||
gcloud vmware networks create (VMWARE_ENGINE_NETWORK : --location=LOCATION)
|
||||
--type=TYPE [--async] [--description=DESCRIPTION]
|
||||
[GCLOUD_WIDE_FLAG ...]
|
||||
|
||||
DESCRIPTION
|
||||
Create a VMware Engine network. VMware Engine network creation is
|
||||
considered finished when the VMware Engine network is in ACTIVE state.
|
||||
Check the progress of a VMware Engine network creation using gcloud vmware
|
||||
networks list.
|
||||
|
||||
EXAMPLES
|
||||
To create a VMware Engine network of type STANDARD, run:
|
||||
|
||||
$ gcloud vmware networks create my-network --type=STANDARD \
|
||||
--location=global --project=my-project
|
||||
|
||||
Or:
|
||||
|
||||
$ gcloud vmware networks create my-network --type=STANDARD
|
||||
|
||||
In the second example, the project is taken from gcloud properties
|
||||
core/project and the location is taken as global.
|
||||
|
||||
To create a VMware Engine network of type LEGACY in the us-west2 region,
|
||||
run:
|
||||
|
||||
$ gcloud vmware networks create my-network --type=LEGACY \
|
||||
--location=us-west2 --project=my-project
|
||||
|
||||
Or:
|
||||
|
||||
$ gcloud vmware networks create my-network --type=LEGACY \
|
||||
--location=us-west2
|
||||
|
||||
In the last example, the project is taken from gcloud properties
|
||||
core/project. For VMware Engine networks of type LEGACY, you must always
|
||||
specify a region as the location.
|
||||
|
||||
POSITIONAL ARGUMENTS
|
||||
VMware Engine network resource - vmware_engine_network. 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 vmware_engine_network 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.
|
||||
|
||||
VMWARE_ENGINE_NETWORK
|
||||
ID of the VMware Engine network or fully qualified identifier for the
|
||||
VMware Engine network. To set the vmware-engine-network attribute:
|
||||
▸ provide the argument vmware_engine_network on the command line.
|
||||
|
||||
This positional argument must be specified if any of the other
|
||||
arguments in this group are specified.
|
||||
|
||||
--location=LOCATION
|
||||
The resource name of the location. To set the location attribute:
|
||||
▸ provide the argument vmware_engine_network on the command line
|
||||
with a fully specified name;
|
||||
▸ provide the argument --location on the command line;
|
||||
▸ set location as 'global' (default) or a region.
|
||||
|
||||
REQUIRED FLAGS
|
||||
--type=TYPE
|
||||
Type of the VMware Engine network. TYPE must be one of:
|
||||
|
||||
LEGACY
|
||||
Network type used by private clouds created in projects without a
|
||||
network of type STANDARD. This network type is only used for new
|
||||
PCs in existing projects that continue to use LEGACY network. A
|
||||
VMware Engine network of type LEGACY is a regional resource.
|
||||
STANDARD
|
||||
Standard network type used for private cloud connectivity. A VMware
|
||||
Engine network of type STANDARD is a global resource.
|
||||
|
||||
OPTIONAL FLAGS
|
||||
--async
|
||||
Return immediately, without waiting for the operation in progress to
|
||||
complete. The default is True. Enabled by default, use --no-async to
|
||||
disable.
|
||||
|
||||
--description=DESCRIPTION
|
||||
Text describing the VMware Engine network.
|
||||
|
||||
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.
|
||||
78
gcloud/vmware/networks/delete
Normal file
78
gcloud/vmware/networks/delete
Normal file
|
|
@ -0,0 +1,78 @@
|
|||
NAME
|
||||
gcloud vmware networks delete - delete a Google Cloud VMware Engine network
|
||||
|
||||
SYNOPSIS
|
||||
gcloud vmware networks delete (VMWARE_ENGINE_NETWORK : --location=LOCATION)
|
||||
[--async] [GCLOUD_WIDE_FLAG ...]
|
||||
|
||||
DESCRIPTION
|
||||
Delete a VMware Engine network.
|
||||
|
||||
EXAMPLES
|
||||
To delete a network called my-network of type STANDARD in project
|
||||
my-project and region global, run:
|
||||
|
||||
$ gcloud vmware networks delete my-network --location=global \
|
||||
--project=my-project
|
||||
|
||||
Or:
|
||||
|
||||
$ gcloud vmware networks delete my-network
|
||||
|
||||
In the second example, the project is taken from gcloud properties
|
||||
core/project and the location is taken as global.
|
||||
|
||||
To delete a network called my-network of type LEAGACY in project my-project
|
||||
and region us-west2, run:
|
||||
|
||||
$ gcloud vmware networks delete my-network --location=us-west2 \
|
||||
--project=my-project
|
||||
|
||||
Or:
|
||||
|
||||
$ gcloud vmware networks delete my-network --location=us-west2
|
||||
|
||||
In the last example, the project is taken from gcloud properties
|
||||
core/project. For VMware Engine networks of type LEGACY, you must always
|
||||
specify a region as the location.
|
||||
|
||||
POSITIONAL ARGUMENTS
|
||||
VMware Engine network resource - vmware_engine_network. 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 vmware_engine_network 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.
|
||||
|
||||
VMWARE_ENGINE_NETWORK
|
||||
ID of the VMware Engine network or fully qualified identifier for the
|
||||
VMware Engine network. To set the vmware-engine-network attribute:
|
||||
▸ provide the argument vmware_engine_network on the command line.
|
||||
|
||||
This positional argument must be specified if any of the other
|
||||
arguments in this group are specified.
|
||||
|
||||
--location=LOCATION
|
||||
The resource name of the location. To set the location attribute:
|
||||
▸ provide the argument vmware_engine_network on the command line
|
||||
with a fully specified name;
|
||||
▸ provide the argument --location on the command line;
|
||||
▸ set location as 'global' (default) or a region.
|
||||
|
||||
FLAGS
|
||||
--async
|
||||
Return immediately, without waiting for the operation in progress to
|
||||
complete. The default is True. Enabled by default, use --no-async to
|
||||
disable.
|
||||
|
||||
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.
|
||||
73
gcloud/vmware/networks/describe
Normal file
73
gcloud/vmware/networks/describe
Normal file
|
|
@ -0,0 +1,73 @@
|
|||
NAME
|
||||
gcloud vmware networks describe - describe a Google Cloud VMware Engine
|
||||
network
|
||||
|
||||
SYNOPSIS
|
||||
gcloud vmware networks describe
|
||||
(VMWARE_ENGINE_NETWORK : --location=LOCATION) [GCLOUD_WIDE_FLAG ...]
|
||||
|
||||
DESCRIPTION
|
||||
Describe a VMware Engine network.
|
||||
|
||||
EXAMPLES
|
||||
To get a description of a network called my-network of type STANDARD in
|
||||
project my-project and region global, run:
|
||||
|
||||
$ gcloud vmware networks describe my-network --location=global \
|
||||
--project=my-project
|
||||
|
||||
Or:
|
||||
|
||||
$ gcloud vmware networks describe my-network
|
||||
|
||||
In the second example, the project is taken from gcloud properties
|
||||
core/project and the location is taken as global.
|
||||
|
||||
To get a description of a network called my-network of type LEGACY in
|
||||
project my-project and region us-west2, run:
|
||||
|
||||
$ gcloud vmware networks describe my-network --location=us-west2 \
|
||||
--project=my-project
|
||||
|
||||
Or:
|
||||
|
||||
$ gcloud vmware networks describe my-network --location=us-west2
|
||||
|
||||
In the last example, the project is taken from gcloud properties
|
||||
core/project. For VMware Engine networks of type LEGACY, you must always
|
||||
specify a region as the location.
|
||||
|
||||
POSITIONAL ARGUMENTS
|
||||
VMware Engine network resource - vmware_engine_network. 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 vmware_engine_network 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.
|
||||
|
||||
VMWARE_ENGINE_NETWORK
|
||||
ID of the VMware Engine network or fully qualified identifier for the
|
||||
VMware Engine network. To set the vmware-engine-network attribute:
|
||||
▸ provide the argument vmware_engine_network on the command line.
|
||||
|
||||
This positional argument must be specified if any of the other
|
||||
arguments in this group are specified.
|
||||
|
||||
--location=LOCATION
|
||||
The resource name of the location. To set the location attribute:
|
||||
▸ provide the argument vmware_engine_network on the command line
|
||||
with a fully specified name;
|
||||
▸ provide the argument --location on the command line;
|
||||
▸ set location as 'global' (default) or a region.
|
||||
|
||||
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.
|
||||
32
gcloud/vmware/networks/help
Normal file
32
gcloud/vmware/networks/help
Normal file
|
|
@ -0,0 +1,32 @@
|
|||
NAME
|
||||
gcloud vmware networks - manage VMware Engine networks in Google Cloud
|
||||
VMware Engine
|
||||
|
||||
SYNOPSIS
|
||||
gcloud vmware networks COMMAND [GCLOUD_WIDE_FLAG ...]
|
||||
|
||||
DESCRIPTION
|
||||
Manage VMware Engine networks in Google Cloud VMware Engine.
|
||||
|
||||
GCLOUD WIDE FLAGS
|
||||
These flags are available to all commands: --help.
|
||||
|
||||
Run $ gcloud help for details.
|
||||
|
||||
COMMANDS
|
||||
COMMAND is one of the following:
|
||||
|
||||
create
|
||||
Create a Google Cloud VMware Engine network.
|
||||
|
||||
delete
|
||||
Delete a Google Cloud VMware Engine network.
|
||||
|
||||
describe
|
||||
Describe a Google Cloud VMware Engine network.
|
||||
|
||||
list
|
||||
List Google Cloud VMware Engine networks.
|
||||
|
||||
update
|
||||
Update a Google Cloud VMware Engine network.
|
||||
93
gcloud/vmware/networks/list
Normal file
93
gcloud/vmware/networks/list
Normal file
|
|
@ -0,0 +1,93 @@
|
|||
NAME
|
||||
gcloud vmware networks list - list Google Cloud VMware Engine networks
|
||||
|
||||
SYNOPSIS
|
||||
gcloud vmware networks list [--location=LOCATION] [--filter=EXPRESSION]
|
||||
[--limit=LIMIT] [--page-size=PAGE_SIZE] [--sort-by=[FIELD,...]] [--uri]
|
||||
[GCLOUD_WIDE_FLAG ...]
|
||||
|
||||
DESCRIPTION
|
||||
List VMware Engine networks.
|
||||
|
||||
EXAMPLES
|
||||
To list VMware Engine networks of type STANDARD in your project, run:
|
||||
|
||||
$ gcloud vmware networks list --location=global --project=my-project
|
||||
|
||||
Or:
|
||||
|
||||
$ gcloud vmware networks list
|
||||
|
||||
In the second example, the project is taken from gcloud properties
|
||||
core/project and the location is taken as global.
|
||||
|
||||
To list VMware Engine networks of type LEGACY in the location us-west2 in
|
||||
your project, run:
|
||||
|
||||
$ gcloud vmware networks list --location=us-west2 \
|
||||
--project=my-project
|
||||
|
||||
Or:
|
||||
|
||||
$ gcloud vmware networks list --location=us-west2
|
||||
|
||||
In the last example, the project is taken from gcloud properties
|
||||
core/project. For VMware Engine networks of type LEGACY, you must always
|
||||
specify a region as the location.
|
||||
|
||||
FLAGS
|
||||
Location resource - location. 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 location as 'global' (default) or a region 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 location as 'global' (default) or a region.
|
||||
|
||||
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.
|
||||
83
gcloud/vmware/networks/update
Normal file
83
gcloud/vmware/networks/update
Normal file
|
|
@ -0,0 +1,83 @@
|
|||
NAME
|
||||
gcloud vmware networks update - update a Google Cloud VMware Engine network
|
||||
|
||||
SYNOPSIS
|
||||
gcloud vmware networks update (VMWARE_ENGINE_NETWORK : --location=LOCATION)
|
||||
[--async] [--description=DESCRIPTION] [GCLOUD_WIDE_FLAG ...]
|
||||
|
||||
DESCRIPTION
|
||||
Update a VMware Engine network.
|
||||
|
||||
EXAMPLES
|
||||
To update a network named my-network of type STANDARD by changing its
|
||||
description to Example description, run:
|
||||
|
||||
$ gcloud vmware networks update my-network --location=global \
|
||||
--project=my-project --description='Example description'
|
||||
|
||||
Or:
|
||||
|
||||
$ gcloud vmware networks update my-network \
|
||||
--description='Example description'
|
||||
|
||||
In the second example, the project is taken from gcloud properties
|
||||
core/project and the location is taken as global.
|
||||
|
||||
To update a network named my-network of type LEGACY by changing its
|
||||
description to Example description, run:
|
||||
|
||||
$ gcloud vmware networks update my-network --location=us-west2 \
|
||||
--project=my-project --description='Example description'
|
||||
|
||||
Or:
|
||||
|
||||
$ gcloud vmware networks update my-network --location=us-west2 \
|
||||
--description='Example description'
|
||||
|
||||
In the last example, the project is taken from gcloud properties
|
||||
core/project. For VMware Engine networks of type LEGACY, you must always
|
||||
specify a region as the location.
|
||||
|
||||
POSITIONAL ARGUMENTS
|
||||
VMware Engine network resource - vmware_engine_network. 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 vmware_engine_network 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.
|
||||
|
||||
VMWARE_ENGINE_NETWORK
|
||||
ID of the VMware Engine network or fully qualified identifier for the
|
||||
VMware Engine network. To set the vmware-engine-network attribute:
|
||||
▸ provide the argument vmware_engine_network on the command line.
|
||||
|
||||
This positional argument must be specified if any of the other
|
||||
arguments in this group are specified.
|
||||
|
||||
--location=LOCATION
|
||||
The resource name of the location. To set the location attribute:
|
||||
▸ provide the argument vmware_engine_network on the command line
|
||||
with a fully specified name;
|
||||
▸ provide the argument --location on the command line;
|
||||
▸ set location as 'global' (default) or a region.
|
||||
|
||||
FLAGS
|
||||
--async
|
||||
Return immediately, without waiting for the operation in progress to
|
||||
complete. The default is True. Enabled by default, use --no-async to
|
||||
disable.
|
||||
|
||||
--description=DESCRIPTION
|
||||
Text describing the VMware Engine network
|
||||
|
||||
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.
|
||||
Loading…
Add table
Add a link
Reference in a new issue