mirror of
https://github.com/imjasonh/gcloud-help
synced 2026-07-16 20:36:39 +00:00
gcloud: Wed Apr 23 10:54:24 UTC 2025
This commit is contained in:
parent
b589c4c4ad
commit
4d8dd33b3e
138 changed files with 4506 additions and 597 deletions
31
gcloud/alpha/lustre/help
Normal file
31
gcloud/alpha/lustre/help
Normal file
|
|
@ -0,0 +1,31 @@
|
|||
NAME
|
||||
gcloud alpha lustre - manage Lustre resources
|
||||
|
||||
SYNOPSIS
|
||||
gcloud alpha lustre GROUP [GCLOUD_WIDE_FLAG ...]
|
||||
|
||||
DESCRIPTION
|
||||
(ALPHA) Manage Lustre resources.
|
||||
|
||||
GCLOUD WIDE FLAGS
|
||||
These flags are available to all commands: --help.
|
||||
|
||||
Run $ gcloud help for details.
|
||||
|
||||
GROUPS
|
||||
GROUP is one of the following:
|
||||
|
||||
instances
|
||||
(ALPHA) Manage Instance resources.
|
||||
|
||||
operations
|
||||
(ALPHA) Manage Operation resources.
|
||||
|
||||
NOTES
|
||||
This command is currently in alpha and might change without notice. If this
|
||||
command fails with API permission errors despite specifying the correct
|
||||
project, you might be trying to access an API with an invitation-only early
|
||||
access allowlist. This variant is also available:
|
||||
|
||||
$ gcloud lustre
|
||||
|
||||
149
gcloud/alpha/lustre/instances/create
Normal file
149
gcloud/alpha/lustre/instances/create
Normal file
|
|
@ -0,0 +1,149 @@
|
|||
NAME
|
||||
gcloud alpha lustre instances create - create instances
|
||||
|
||||
SYNOPSIS
|
||||
gcloud alpha lustre instances create (INSTANCE : --location=LOCATION)
|
||||
--capacity-gib=CAPACITY_GIB --filesystem=FILESYSTEM --network=NETWORK
|
||||
[--async] [--description=DESCRIPTION] [--gke-support-enabled]
|
||||
[--labels=[LABELS,...]] [--request-id=REQUEST_ID]
|
||||
[GCLOUD_WIDE_FLAG ...]
|
||||
|
||||
DESCRIPTION
|
||||
(ALPHA) Create an instance
|
||||
|
||||
EXAMPLES
|
||||
To create the instance, run:
|
||||
|
||||
$ gcloud alpha lustre instances create
|
||||
|
||||
POSITIONAL ARGUMENTS
|
||||
Instance resource - Identifier. The name of the instance. 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 instance on the command line with a fully
|
||||
specified name;
|
||||
◆ provide the argument --project on the command line;
|
||||
◆ set the property core/project.
|
||||
|
||||
This must be specified.
|
||||
|
||||
INSTANCE
|
||||
ID of the instance or fully qualified identifier for the instance.
|
||||
|
||||
To set the instance attribute:
|
||||
▸ provide the argument instance on the command line.
|
||||
|
||||
This positional argument must be specified if any of the other
|
||||
arguments in this group are specified.
|
||||
|
||||
--location=LOCATION
|
||||
The location id of the instance resource.
|
||||
|
||||
To set the location attribute:
|
||||
▸ provide the argument instance on the command line with a fully
|
||||
specified name;
|
||||
▸ provide the argument --location on the command line.
|
||||
|
||||
REQUIRED FLAGS
|
||||
--capacity-gib=CAPACITY_GIB
|
||||
The storage capacity of the instance in gibibytes (GiB). Allowed values
|
||||
are from 18000 to 936000, in increments of 9000.
|
||||
|
||||
--filesystem=FILESYSTEM
|
||||
The filesystem name for this instance. This name is used by client-side
|
||||
tools, including when mounting the instance. Must be eight characters
|
||||
or less and can only contain letters and numbers.
|
||||
|
||||
Network resource - The full name of the VPC network to which the instance
|
||||
is connected. Must be in the format
|
||||
projects/{project_id}/global/networks/{network_name}. 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 --network on the command line with a fully
|
||||
specified name;
|
||||
◆ provide the argument --project on the command line;
|
||||
◆ set the property core/project.
|
||||
|
||||
This must be specified.
|
||||
|
||||
--network=NETWORK
|
||||
ID of the network or fully qualified identifier for the network.
|
||||
|
||||
To set the network attribute:
|
||||
▸ provide the argument --network on the command line.
|
||||
|
||||
OPTIONAL FLAGS
|
||||
--async
|
||||
Return immediately, without waiting for the operation in progress to
|
||||
complete.
|
||||
|
||||
--description=DESCRIPTION
|
||||
A user-readable description of the instance.
|
||||
|
||||
--gke-support-enabled
|
||||
Indicates whether you want to enable support for GKE clients. By
|
||||
default, GKE clients are not supported.
|
||||
|
||||
--labels=[LABELS,...]
|
||||
Labels as key value pairs.
|
||||
|
||||
KEY
|
||||
Keys must start with a lowercase character and contain only hyphens
|
||||
(-), underscores (_), lowercase characters, and numbers.
|
||||
|
||||
VALUE
|
||||
Values must contain only hyphens (-), underscores (_), lowercase
|
||||
characters, and numbers.
|
||||
|
||||
Shorthand Example:
|
||||
|
||||
--labels=string=string
|
||||
|
||||
JSON Example:
|
||||
|
||||
--labels='{"string": "string"}'
|
||||
|
||||
File Example:
|
||||
|
||||
--labels=path_to_file.(yaml|json)
|
||||
|
||||
--request-id=REQUEST_ID
|
||||
An optional request ID to identify requests. Specify a unique request
|
||||
ID so that if you must retry your request, the server will know to
|
||||
ignore the request if it has already been completed. The server will
|
||||
guarantee that for at least 60 minutes since the first request.
|
||||
|
||||
For example, consider a situation where you make an initial request and
|
||||
the request times out. If you make the request again with the same
|
||||
request ID, the server can check if original operation with the same
|
||||
request ID was received, and if so, will ignore the second request.
|
||||
This prevents clients from accidentally creating duplicate commitments.
|
||||
|
||||
The request ID must be a valid UUID with the exception that zero UUID
|
||||
is not supported (00000000-0000-0000-0000-000000000000).
|
||||
|
||||
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 lustre/v1alpha API. The full documentation for this
|
||||
API can be found at: https://cloud.google.com/managed-lustre/
|
||||
|
||||
NOTES
|
||||
This command is currently in alpha and might change without notice. If this
|
||||
command fails with API permission errors despite specifying the correct
|
||||
project, you might be trying to access an API with an invitation-only early
|
||||
access allowlist. This variant is also available:
|
||||
|
||||
$ gcloud lustre instances create
|
||||
|
||||
87
gcloud/alpha/lustre/instances/delete
Normal file
87
gcloud/alpha/lustre/instances/delete
Normal file
|
|
@ -0,0 +1,87 @@
|
|||
NAME
|
||||
gcloud alpha lustre instances delete - delete instances
|
||||
|
||||
SYNOPSIS
|
||||
gcloud alpha lustre instances delete (INSTANCE : --location=LOCATION)
|
||||
[--async] [--request-id=REQUEST_ID] [GCLOUD_WIDE_FLAG ...]
|
||||
|
||||
DESCRIPTION
|
||||
(ALPHA) Delete an instance
|
||||
|
||||
EXAMPLES
|
||||
To delete the instance, run:
|
||||
|
||||
$ gcloud alpha lustre instances delete
|
||||
|
||||
POSITIONAL ARGUMENTS
|
||||
Instance resource - The resource name of the instance to delete, in the
|
||||
format projects/{projectId}/locations/{location}/instances/{instanceId}.
|
||||
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 instance on the command line with a fully
|
||||
specified name;
|
||||
◆ provide the argument --project on the command line;
|
||||
◆ set the property core/project.
|
||||
|
||||
This must be specified.
|
||||
|
||||
INSTANCE
|
||||
ID of the instance or fully qualified identifier for the instance.
|
||||
|
||||
To set the instance attribute:
|
||||
▸ provide the argument instance on the command line.
|
||||
|
||||
This positional argument must be specified if any of the other
|
||||
arguments in this group are specified.
|
||||
|
||||
--location=LOCATION
|
||||
The location id of the instance resource.
|
||||
|
||||
To set the location attribute:
|
||||
▸ provide the argument instance on the command line with a fully
|
||||
specified name;
|
||||
▸ provide the argument --location on the command line.
|
||||
|
||||
FLAGS
|
||||
--async
|
||||
Return immediately, without waiting for the operation in progress to
|
||||
complete.
|
||||
|
||||
--request-id=REQUEST_ID
|
||||
An optional request ID to identify requests. Specify a unique request
|
||||
ID so that if you must retry your request, the server will know to
|
||||
ignore the request if it has already been completed. The server will
|
||||
guarantee that for at least 60 minutes after the first request.
|
||||
|
||||
For example, consider a situation where you make an initial request and
|
||||
the request times out. If you make the request again with the same
|
||||
request ID, the server can check if original operation with the same
|
||||
request ID was received, and if so, will ignore the second request.
|
||||
This prevents clients from accidentally creating duplicate commitments.
|
||||
|
||||
The request ID must be a valid UUID with the exception that zero UUID
|
||||
is not supported (00000000-0000-0000-0000-000000000000).
|
||||
|
||||
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 lustre/v1alpha API. The full documentation for this
|
||||
API can be found at: https://cloud.google.com/managed-lustre/
|
||||
|
||||
NOTES
|
||||
This command is currently in alpha and might change without notice. If this
|
||||
command fails with API permission errors despite specifying the correct
|
||||
project, you might be trying to access an API with an invitation-only early
|
||||
access allowlist. This variant is also available:
|
||||
|
||||
$ gcloud lustre instances delete
|
||||
|
||||
67
gcloud/alpha/lustre/instances/describe
Normal file
67
gcloud/alpha/lustre/instances/describe
Normal file
|
|
@ -0,0 +1,67 @@
|
|||
NAME
|
||||
gcloud alpha lustre instances describe - describe instances
|
||||
|
||||
SYNOPSIS
|
||||
gcloud alpha lustre instances describe (INSTANCE : --location=LOCATION)
|
||||
[GCLOUD_WIDE_FLAG ...]
|
||||
|
||||
DESCRIPTION
|
||||
(ALPHA) Describe an instance
|
||||
|
||||
EXAMPLES
|
||||
To describe the instance, run:
|
||||
|
||||
$ gcloud alpha lustre instances describe
|
||||
|
||||
POSITIONAL ARGUMENTS
|
||||
Instance resource - The instance resource name, in the format
|
||||
projects/{projectId}/locations/{location}/instances/{instanceId}. 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 instance on the command line with a fully
|
||||
specified name;
|
||||
◆ provide the argument --project on the command line;
|
||||
◆ set the property core/project.
|
||||
|
||||
This must be specified.
|
||||
|
||||
INSTANCE
|
||||
ID of the instance or fully qualified identifier for the instance.
|
||||
|
||||
To set the instance attribute:
|
||||
▸ provide the argument instance on the command line.
|
||||
|
||||
This positional argument must be specified if any of the other
|
||||
arguments in this group are specified.
|
||||
|
||||
--location=LOCATION
|
||||
The location id of the instance resource.
|
||||
|
||||
To set the location attribute:
|
||||
▸ provide the argument instance on the command line with a fully
|
||||
specified name;
|
||||
▸ provide the argument --location on the command line.
|
||||
|
||||
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 lustre/v1alpha API. The full documentation for this
|
||||
API can be found at: https://cloud.google.com/managed-lustre/
|
||||
|
||||
NOTES
|
||||
This command is currently in alpha and might change without notice. If this
|
||||
command fails with API permission errors despite specifying the correct
|
||||
project, you might be trying to access an API with an invitation-only early
|
||||
access allowlist. This variant is also available:
|
||||
|
||||
$ gcloud lustre instances describe
|
||||
|
||||
101
gcloud/alpha/lustre/instances/export-data
Normal file
101
gcloud/alpha/lustre/instances/export-data
Normal file
|
|
@ -0,0 +1,101 @@
|
|||
NAME
|
||||
gcloud alpha lustre instances export-data - export instances
|
||||
|
||||
SYNOPSIS
|
||||
gcloud alpha lustre instances export-data (INSTANCE : --location=LOCATION)
|
||||
--gcs-path-uri=GCS_PATH_URI [--async] [--lustre-path=LUSTRE_PATH]
|
||||
[--request-id=REQUEST_ID] [--service-account=SERVICE_ACCOUNT]
|
||||
[GCLOUD_WIDE_FLAG ...]
|
||||
|
||||
DESCRIPTION
|
||||
(ALPHA) export instances
|
||||
|
||||
EXAMPLES
|
||||
To export all instances, run:
|
||||
|
||||
$ gcloud alpha lustre instances export-data
|
||||
|
||||
POSITIONAL ARGUMENTS
|
||||
Instance resource - Name of the resource. 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 instance on the command line with a fully
|
||||
specified name;
|
||||
◆ provide the argument --project on the command line;
|
||||
◆ set the property core/project.
|
||||
|
||||
This must be specified.
|
||||
|
||||
INSTANCE
|
||||
ID of the instance or fully qualified identifier for the instance.
|
||||
|
||||
To set the instance attribute:
|
||||
▸ provide the argument instance on the command line.
|
||||
|
||||
This positional argument must be specified if any of the other
|
||||
arguments in this group are specified.
|
||||
|
||||
--location=LOCATION
|
||||
The location id of the instance resource.
|
||||
|
||||
To set the location attribute:
|
||||
▸ provide the argument instance on the command line with a fully
|
||||
specified name;
|
||||
▸ provide the argument --location on the command line.
|
||||
|
||||
REQUIRED FLAGS
|
||||
--gcs-path-uri=GCS_PATH_URI
|
||||
URI to a Cloud Storage path in the format: gs://<bucket_name>.
|
||||
|
||||
OPTIONAL FLAGS
|
||||
--async
|
||||
Return immediately, without waiting for the operation in progress to
|
||||
complete.
|
||||
|
||||
--lustre-path=LUSTRE_PATH
|
||||
Root directory path to the Managed Lustre file system, starting with /.
|
||||
Defaults to / if unset.
|
||||
|
||||
--request-id=REQUEST_ID
|
||||
UUID to identify requests.
|
||||
|
||||
ServiceAccount resource - User-specified service account used to perform
|
||||
the transfer. If unspecified, the Managed Lustre service agent is used.
|
||||
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 --service-account on the command line with a
|
||||
fully specified name;
|
||||
◆ provide the argument --project on the command line;
|
||||
◆ set the property core/project.
|
||||
|
||||
--service-account=SERVICE_ACCOUNT
|
||||
ID of the serviceAccount or fully qualified identifier for the
|
||||
serviceAccount.
|
||||
|
||||
To set the service-account attribute:
|
||||
▸ provide the argument --service-account on the command line.
|
||||
|
||||
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 lustre/v1alpha API. The full documentation for this
|
||||
API can be found at: https://cloud.google.com/managed-lustre/
|
||||
|
||||
NOTES
|
||||
This command is currently in alpha and might change without notice. If this
|
||||
command fails with API permission errors despite specifying the correct
|
||||
project, you might be trying to access an API with an invitation-only early
|
||||
access allowlist. This variant is also available:
|
||||
|
||||
$ gcloud lustre instances export-data
|
||||
|
||||
46
gcloud/alpha/lustre/instances/help
Normal file
46
gcloud/alpha/lustre/instances/help
Normal file
|
|
@ -0,0 +1,46 @@
|
|||
NAME
|
||||
gcloud alpha lustre instances - manage Instance resources
|
||||
|
||||
SYNOPSIS
|
||||
gcloud alpha lustre instances COMMAND [GCLOUD_WIDE_FLAG ...]
|
||||
|
||||
DESCRIPTION
|
||||
(ALPHA) Manage Instance resources.
|
||||
|
||||
GCLOUD WIDE FLAGS
|
||||
These flags are available to all commands: --help.
|
||||
|
||||
Run $ gcloud help for details.
|
||||
|
||||
COMMANDS
|
||||
COMMAND is one of the following:
|
||||
|
||||
create
|
||||
(ALPHA) Create instances.
|
||||
|
||||
delete
|
||||
(ALPHA) Delete instances.
|
||||
|
||||
describe
|
||||
(ALPHA) Describe instances.
|
||||
|
||||
export-data
|
||||
(ALPHA) export instances.
|
||||
|
||||
import-data
|
||||
(ALPHA) import instances.
|
||||
|
||||
list
|
||||
(ALPHA) List instances.
|
||||
|
||||
update
|
||||
(ALPHA) Update instances.
|
||||
|
||||
NOTES
|
||||
This command is currently in alpha and might change without notice. If this
|
||||
command fails with API permission errors despite specifying the correct
|
||||
project, you might be trying to access an API with an invitation-only early
|
||||
access allowlist. This variant is also available:
|
||||
|
||||
$ gcloud lustre instances
|
||||
|
||||
101
gcloud/alpha/lustre/instances/import-data
Normal file
101
gcloud/alpha/lustre/instances/import-data
Normal file
|
|
@ -0,0 +1,101 @@
|
|||
NAME
|
||||
gcloud alpha lustre instances import-data - import instances
|
||||
|
||||
SYNOPSIS
|
||||
gcloud alpha lustre instances import-data (INSTANCE : --location=LOCATION)
|
||||
--gcs-path-uri=GCS_PATH_URI [--async] [--lustre-path=LUSTRE_PATH]
|
||||
[--request-id=REQUEST_ID] [--service-account=SERVICE_ACCOUNT]
|
||||
[GCLOUD_WIDE_FLAG ...]
|
||||
|
||||
DESCRIPTION
|
||||
(ALPHA) import instances
|
||||
|
||||
EXAMPLES
|
||||
To import all instances, run:
|
||||
|
||||
$ gcloud alpha lustre instances import-data
|
||||
|
||||
POSITIONAL ARGUMENTS
|
||||
Instance resource - Name of the resource. 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 instance on the command line with a fully
|
||||
specified name;
|
||||
◆ provide the argument --project on the command line;
|
||||
◆ set the property core/project.
|
||||
|
||||
This must be specified.
|
||||
|
||||
INSTANCE
|
||||
ID of the instance or fully qualified identifier for the instance.
|
||||
|
||||
To set the instance attribute:
|
||||
▸ provide the argument instance on the command line.
|
||||
|
||||
This positional argument must be specified if any of the other
|
||||
arguments in this group are specified.
|
||||
|
||||
--location=LOCATION
|
||||
The location id of the instance resource.
|
||||
|
||||
To set the location attribute:
|
||||
▸ provide the argument instance on the command line with a fully
|
||||
specified name;
|
||||
▸ provide the argument --location on the command line.
|
||||
|
||||
REQUIRED FLAGS
|
||||
--gcs-path-uri=GCS_PATH_URI
|
||||
URI to a Cloud Storage path in the format: gs://<bucket_name>.
|
||||
|
||||
OPTIONAL FLAGS
|
||||
--async
|
||||
Return immediately, without waiting for the operation in progress to
|
||||
complete.
|
||||
|
||||
--lustre-path=LUSTRE_PATH
|
||||
Root directory path to the Managed Lustre file system, starting with /.
|
||||
Defaults to / if unset.
|
||||
|
||||
--request-id=REQUEST_ID
|
||||
UUID to identify requests.
|
||||
|
||||
ServiceAccount resource - User-specified service account used to perform
|
||||
the transfer. If unspecified, the default Lustre P4 service account will
|
||||
be used. 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 --service-account on the command line with a
|
||||
fully specified name;
|
||||
◆ provide the argument --project on the command line;
|
||||
◆ set the property core/project.
|
||||
|
||||
--service-account=SERVICE_ACCOUNT
|
||||
ID of the serviceAccount or fully qualified identifier for the
|
||||
serviceAccount.
|
||||
|
||||
To set the service-account attribute:
|
||||
▸ provide the argument --service-account on the command line.
|
||||
|
||||
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 lustre/v1alpha API. The full documentation for this
|
||||
API can be found at: https://cloud.google.com/managed-lustre/
|
||||
|
||||
NOTES
|
||||
This command is currently in alpha and might change without notice. If this
|
||||
command fails with API permission errors despite specifying the correct
|
||||
project, you might be trying to access an API with an invitation-only early
|
||||
access allowlist. This variant is also available:
|
||||
|
||||
$ gcloud lustre instances import-data
|
||||
|
||||
90
gcloud/alpha/lustre/instances/list
Normal file
90
gcloud/alpha/lustre/instances/list
Normal file
|
|
@ -0,0 +1,90 @@
|
|||
NAME
|
||||
gcloud alpha lustre instances list - list instances
|
||||
|
||||
SYNOPSIS
|
||||
gcloud alpha lustre instances list --location=LOCATION
|
||||
[--filter=EXPRESSION] [--limit=LIMIT] [--page-size=PAGE_SIZE]
|
||||
[--sort-by=[FIELD,...]] [--uri] [GCLOUD_WIDE_FLAG ...]
|
||||
|
||||
DESCRIPTION
|
||||
(ALPHA) List instances
|
||||
|
||||
EXAMPLES
|
||||
To list all instances, run:
|
||||
|
||||
$ gcloud alpha lustre instances list
|
||||
|
||||
REQUIRED FLAGS
|
||||
Location resource - The project and location for which to retrieve a list
|
||||
of instances, in the format projects/{projectId}/locations/{location}.
|
||||
|
||||
To retrieve instance information for all locations, use "-" as the value
|
||||
of {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;
|
||||
◆ provide the argument --project on the command line;
|
||||
◆ set the property core/project.
|
||||
|
||||
This must be specified.
|
||||
|
||||
--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.
|
||||
|
||||
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 lustre/v1alpha API. The full documentation for this
|
||||
API can be found at: https://cloud.google.com/managed-lustre/
|
||||
|
||||
NOTES
|
||||
This command is currently in alpha and might change without notice. If this
|
||||
command fails with API permission errors despite specifying the correct
|
||||
project, you might be trying to access an API with an invitation-only early
|
||||
access allowlist. This variant is also available:
|
||||
|
||||
$ gcloud lustre instances list
|
||||
|
||||
160
gcloud/alpha/lustre/instances/update
Normal file
160
gcloud/alpha/lustre/instances/update
Normal file
|
|
@ -0,0 +1,160 @@
|
|||
NAME
|
||||
gcloud alpha lustre instances update - update instances
|
||||
|
||||
SYNOPSIS
|
||||
gcloud alpha lustre instances update (INSTANCE : --location=LOCATION)
|
||||
[--async] [--capacity-gib=CAPACITY_GIB] [--description=DESCRIPTION]
|
||||
[--[no-]gke-support-enabled] [--request-id=REQUEST_ID]
|
||||
[--labels=[LABELS,...]
|
||||
| --update-labels=[UPDATE_LABELS,...] --clear-labels
|
||||
| --remove-labels=[__REMOVE_LABELS,...]] [GCLOUD_WIDE_FLAG ...]
|
||||
|
||||
DESCRIPTION
|
||||
(ALPHA) Update an instance
|
||||
|
||||
EXAMPLES
|
||||
To update the instance, run:
|
||||
|
||||
$ gcloud alpha lustre instances update
|
||||
|
||||
POSITIONAL ARGUMENTS
|
||||
Instance resource - Identifier. The name of the instance. 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 instance on the command line with a fully
|
||||
specified name;
|
||||
◆ provide the argument --project on the command line;
|
||||
◆ set the property core/project.
|
||||
|
||||
This must be specified.
|
||||
|
||||
INSTANCE
|
||||
ID of the instance or fully qualified identifier for the instance.
|
||||
|
||||
To set the instance attribute:
|
||||
▸ provide the argument instance on the command line.
|
||||
|
||||
This positional argument must be specified if any of the other
|
||||
arguments in this group are specified.
|
||||
|
||||
--location=LOCATION
|
||||
The location id of the instance resource.
|
||||
|
||||
To set the location attribute:
|
||||
▸ provide the argument instance on the command line with a fully
|
||||
specified name;
|
||||
▸ provide the argument --location on the command line.
|
||||
|
||||
FLAGS
|
||||
--async
|
||||
Return immediately, without waiting for the operation in progress to
|
||||
complete.
|
||||
|
||||
--capacity-gib=CAPACITY_GIB
|
||||
The storage capacity of the instance in gibibytes (GiB). Allowed values
|
||||
are from 18000 to 936000, in increments of 9000.
|
||||
|
||||
--description=DESCRIPTION
|
||||
A user-readable description of the instance.
|
||||
|
||||
--[no-]gke-support-enabled
|
||||
Indicates whether you want to enable support for GKE clients. By
|
||||
default, GKE clients are not supported. Use --gke-support-enabled to
|
||||
enable and --no-gke-support-enabled to disable.
|
||||
|
||||
--request-id=REQUEST_ID
|
||||
An optional request ID to identify requests. Specify a unique request
|
||||
ID so that if you must retry your request, the server will know to
|
||||
ignore the request if it has already been completed. The server will
|
||||
guarantee that for at least 60 minutes since the first request.
|
||||
|
||||
For example, consider a situation where you make an initial request and
|
||||
the request times out. If you make the request again with the same
|
||||
request ID, the server can check if original operation with the same
|
||||
request ID was received, and if so, will ignore the second request.
|
||||
This prevents clients from accidentally creating duplicate commitments.
|
||||
|
||||
The request ID must be a valid UUID with the exception that zero UUID
|
||||
is not supported (00000000-0000-0000-0000-000000000000).
|
||||
|
||||
Update labels.
|
||||
|
||||
At most one of these can be specified:
|
||||
|
||||
--labels=[LABELS,...]
|
||||
Set labels to new value. Labels as key value pairs.
|
||||
|
||||
KEY
|
||||
Keys must start with a lowercase character and contain only
|
||||
hyphens (-), underscores (_), lowercase characters, and numbers.
|
||||
|
||||
VALUE
|
||||
Values must contain only hyphens (-), underscores (_), lowercase
|
||||
characters, and numbers.
|
||||
|
||||
Shorthand Example:
|
||||
|
||||
--labels=string=string
|
||||
|
||||
JSON Example:
|
||||
|
||||
--labels='{"string": "string"}'
|
||||
|
||||
File Example:
|
||||
|
||||
--labels=path_to_file.(yaml|json)
|
||||
|
||||
--update-labels=[UPDATE_LABELS,...]
|
||||
Update labels value or add key value pair. Labels as key value pairs.
|
||||
|
||||
KEY
|
||||
Keys must start with a lowercase character and contain only
|
||||
hyphens (-), underscores (_), lowercase characters, and numbers.
|
||||
|
||||
VALUE
|
||||
Values must contain only hyphens (-), underscores (_), lowercase
|
||||
characters, and numbers.
|
||||
|
||||
Shorthand Example:
|
||||
|
||||
--update-labels=string=string
|
||||
|
||||
JSON Example:
|
||||
|
||||
--update-labels='{"string": "string"}'
|
||||
|
||||
File Example:
|
||||
|
||||
--update-labels=path_to_file.(yaml|json)
|
||||
|
||||
At most one of these can be specified:
|
||||
|
||||
--clear-labels
|
||||
Clear labels value and set to empty map.
|
||||
|
||||
--remove-labels=[__REMOVE_LABELS,...]
|
||||
Remove existing value from map labels.
|
||||
|
||||
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 lustre/v1alpha API. The full documentation for this
|
||||
API can be found at: https://cloud.google.com/managed-lustre/
|
||||
|
||||
NOTES
|
||||
This command is currently in alpha and might change without notice. If this
|
||||
command fails with API permission errors despite specifying the correct
|
||||
project, you might be trying to access an API with an invitation-only early
|
||||
access allowlist. This variant is also available:
|
||||
|
||||
$ gcloud lustre instances update
|
||||
|
||||
66
gcloud/alpha/lustre/operations/cancel
Normal file
66
gcloud/alpha/lustre/operations/cancel
Normal file
|
|
@ -0,0 +1,66 @@
|
|||
NAME
|
||||
gcloud alpha lustre operations cancel - cancel operations
|
||||
|
||||
SYNOPSIS
|
||||
gcloud alpha lustre operations cancel (OPERATION : --location=LOCATION)
|
||||
[GCLOUD_WIDE_FLAG ...]
|
||||
|
||||
DESCRIPTION
|
||||
(ALPHA) Cancel an operation
|
||||
|
||||
EXAMPLES
|
||||
To cancel the operation, run:
|
||||
|
||||
$ gcloud alpha lustre operations cancel
|
||||
|
||||
POSITIONAL ARGUMENTS
|
||||
Operation resource - The name of the operation resource to be cancelled.
|
||||
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 operation on the command line with a fully
|
||||
specified name;
|
||||
◆ provide the argument --project on the command line;
|
||||
◆ set the property core/project.
|
||||
|
||||
This must be specified.
|
||||
|
||||
OPERATION
|
||||
ID of the operation or fully qualified identifier for the operation.
|
||||
|
||||
To set the operation attribute:
|
||||
▸ provide the argument operation on the command line.
|
||||
|
||||
This positional argument must be specified if any of the other
|
||||
arguments in this group are specified.
|
||||
|
||||
--location=LOCATION
|
||||
The location id of the operation resource.
|
||||
|
||||
To set the location attribute:
|
||||
▸ provide the argument operation on the command line with a fully
|
||||
specified name;
|
||||
▸ provide the argument --location on the command line.
|
||||
|
||||
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 lustre/v1alpha API. The full documentation for this
|
||||
API can be found at: https://cloud.google.com/managed-lustre/
|
||||
|
||||
NOTES
|
||||
This command is currently in alpha and might change without notice. If this
|
||||
command fails with API permission errors despite specifying the correct
|
||||
project, you might be trying to access an API with an invitation-only early
|
||||
access allowlist. This variant is also available:
|
||||
|
||||
$ gcloud lustre operations cancel
|
||||
|
||||
66
gcloud/alpha/lustre/operations/delete
Normal file
66
gcloud/alpha/lustre/operations/delete
Normal file
|
|
@ -0,0 +1,66 @@
|
|||
NAME
|
||||
gcloud alpha lustre operations delete - delete operations
|
||||
|
||||
SYNOPSIS
|
||||
gcloud alpha lustre operations delete (OPERATION : --location=LOCATION)
|
||||
[GCLOUD_WIDE_FLAG ...]
|
||||
|
||||
DESCRIPTION
|
||||
(ALPHA) Delete an operation
|
||||
|
||||
EXAMPLES
|
||||
To delete the operation, run:
|
||||
|
||||
$ gcloud alpha lustre operations delete
|
||||
|
||||
POSITIONAL ARGUMENTS
|
||||
Operation resource - The name of the operation resource to be deleted. 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 operation on the command line with a fully
|
||||
specified name;
|
||||
◆ provide the argument --project on the command line;
|
||||
◆ set the property core/project.
|
||||
|
||||
This must be specified.
|
||||
|
||||
OPERATION
|
||||
ID of the operation or fully qualified identifier for the operation.
|
||||
|
||||
To set the operation attribute:
|
||||
▸ provide the argument operation on the command line.
|
||||
|
||||
This positional argument must be specified if any of the other
|
||||
arguments in this group are specified.
|
||||
|
||||
--location=LOCATION
|
||||
The location id of the operation resource.
|
||||
|
||||
To set the location attribute:
|
||||
▸ provide the argument operation on the command line with a fully
|
||||
specified name;
|
||||
▸ provide the argument --location on the command line.
|
||||
|
||||
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 lustre/v1alpha API. The full documentation for this
|
||||
API can be found at: https://cloud.google.com/managed-lustre/
|
||||
|
||||
NOTES
|
||||
This command is currently in alpha and might change without notice. If this
|
||||
command fails with API permission errors despite specifying the correct
|
||||
project, you might be trying to access an API with an invitation-only early
|
||||
access allowlist. This variant is also available:
|
||||
|
||||
$ gcloud lustre operations delete
|
||||
|
||||
66
gcloud/alpha/lustre/operations/describe
Normal file
66
gcloud/alpha/lustre/operations/describe
Normal file
|
|
@ -0,0 +1,66 @@
|
|||
NAME
|
||||
gcloud alpha lustre operations describe - describe operations
|
||||
|
||||
SYNOPSIS
|
||||
gcloud alpha lustre operations describe (OPERATION : --location=LOCATION)
|
||||
[GCLOUD_WIDE_FLAG ...]
|
||||
|
||||
DESCRIPTION
|
||||
(ALPHA) Describe an operation
|
||||
|
||||
EXAMPLES
|
||||
To describe the operation, run:
|
||||
|
||||
$ gcloud alpha lustre operations describe
|
||||
|
||||
POSITIONAL ARGUMENTS
|
||||
Operation resource - The name of the operation resource. 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 operation on the command line with a fully
|
||||
specified name;
|
||||
◆ provide the argument --project on the command line;
|
||||
◆ set the property core/project.
|
||||
|
||||
This must be specified.
|
||||
|
||||
OPERATION
|
||||
ID of the operation or fully qualified identifier for the operation.
|
||||
|
||||
To set the operation attribute:
|
||||
▸ provide the argument operation on the command line.
|
||||
|
||||
This positional argument must be specified if any of the other
|
||||
arguments in this group are specified.
|
||||
|
||||
--location=LOCATION
|
||||
The location id of the operation resource.
|
||||
|
||||
To set the location attribute:
|
||||
▸ provide the argument operation on the command line with a fully
|
||||
specified name;
|
||||
▸ provide the argument --location on the command line.
|
||||
|
||||
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 lustre/v1alpha API. The full documentation for this
|
||||
API can be found at: https://cloud.google.com/managed-lustre/
|
||||
|
||||
NOTES
|
||||
This command is currently in alpha and might change without notice. If this
|
||||
command fails with API permission errors despite specifying the correct
|
||||
project, you might be trying to access an API with an invitation-only early
|
||||
access allowlist. This variant is also available:
|
||||
|
||||
$ gcloud lustre operations describe
|
||||
|
||||
40
gcloud/alpha/lustre/operations/help
Normal file
40
gcloud/alpha/lustre/operations/help
Normal file
|
|
@ -0,0 +1,40 @@
|
|||
NAME
|
||||
gcloud alpha lustre operations - manage Operation resources
|
||||
|
||||
SYNOPSIS
|
||||
gcloud alpha lustre operations COMMAND [GCLOUD_WIDE_FLAG ...]
|
||||
|
||||
DESCRIPTION
|
||||
(ALPHA) Manage Operation resources.
|
||||
|
||||
GCLOUD WIDE FLAGS
|
||||
These flags are available to all commands: --help.
|
||||
|
||||
Run $ gcloud help for details.
|
||||
|
||||
COMMANDS
|
||||
COMMAND is one of the following:
|
||||
|
||||
cancel
|
||||
(ALPHA) Cancel operations.
|
||||
|
||||
delete
|
||||
(ALPHA) Delete operations.
|
||||
|
||||
describe
|
||||
(ALPHA) Describe operations.
|
||||
|
||||
list
|
||||
(ALPHA) List operations.
|
||||
|
||||
wait
|
||||
(ALPHA) Wait operations.
|
||||
|
||||
NOTES
|
||||
This command is currently in alpha and might change without notice. If this
|
||||
command fails with API permission errors despite specifying the correct
|
||||
project, you might be trying to access an API with an invitation-only early
|
||||
access allowlist. This variant is also available:
|
||||
|
||||
$ gcloud lustre operations
|
||||
|
||||
87
gcloud/alpha/lustre/operations/list
Normal file
87
gcloud/alpha/lustre/operations/list
Normal file
|
|
@ -0,0 +1,87 @@
|
|||
NAME
|
||||
gcloud alpha lustre operations list - list operations
|
||||
|
||||
SYNOPSIS
|
||||
gcloud alpha lustre operations list --location=LOCATION
|
||||
[--filter=EXPRESSION] [--limit=LIMIT] [--page-size=PAGE_SIZE]
|
||||
[--sort-by=[FIELD,...]] [--uri] [GCLOUD_WIDE_FLAG ...]
|
||||
|
||||
DESCRIPTION
|
||||
(ALPHA) List operations
|
||||
|
||||
EXAMPLES
|
||||
To list all operations, run:
|
||||
|
||||
$ gcloud alpha lustre operations list
|
||||
|
||||
REQUIRED FLAGS
|
||||
Location resource - The name of the operation's parent resource. 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;
|
||||
◆ provide the argument --project on the command line;
|
||||
◆ set the property core/project.
|
||||
|
||||
This must be specified.
|
||||
|
||||
--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.
|
||||
|
||||
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 lustre/v1alpha API. The full documentation for this
|
||||
API can be found at: https://cloud.google.com/managed-lustre/
|
||||
|
||||
NOTES
|
||||
This command is currently in alpha and might change without notice. If this
|
||||
command fails with API permission errors despite specifying the correct
|
||||
project, you might be trying to access an API with an invitation-only early
|
||||
access allowlist. This variant is also available:
|
||||
|
||||
$ gcloud lustre operations list
|
||||
|
||||
66
gcloud/alpha/lustre/operations/wait
Normal file
66
gcloud/alpha/lustre/operations/wait
Normal file
|
|
@ -0,0 +1,66 @@
|
|||
NAME
|
||||
gcloud alpha lustre operations wait - wait operations
|
||||
|
||||
SYNOPSIS
|
||||
gcloud alpha lustre operations wait (OPERATION : --location=LOCATION)
|
||||
[GCLOUD_WIDE_FLAG ...]
|
||||
|
||||
DESCRIPTION
|
||||
(ALPHA) Wait an operation
|
||||
|
||||
EXAMPLES
|
||||
To wait the operation, run:
|
||||
|
||||
$ gcloud alpha lustre operations wait
|
||||
|
||||
POSITIONAL ARGUMENTS
|
||||
Operation resource - The name of the operation resource to wait on. 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 operation on the command line with a fully
|
||||
specified name;
|
||||
◆ provide the argument --project on the command line;
|
||||
◆ set the property core/project.
|
||||
|
||||
This must be specified.
|
||||
|
||||
OPERATION
|
||||
ID of the operation or fully qualified identifier for the operation.
|
||||
|
||||
To set the operation attribute:
|
||||
▸ provide the argument operation on the command line.
|
||||
|
||||
This positional argument must be specified if any of the other
|
||||
arguments in this group are specified.
|
||||
|
||||
--location=LOCATION
|
||||
The location id of the operation resource.
|
||||
|
||||
To set the location attribute:
|
||||
▸ provide the argument operation on the command line with a fully
|
||||
specified name;
|
||||
▸ provide the argument --location on the command line.
|
||||
|
||||
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 lustre/v1alpha API. The full documentation for this
|
||||
API can be found at: https://cloud.google.com/managed-lustre/
|
||||
|
||||
NOTES
|
||||
This command is currently in alpha and might change without notice. If this
|
||||
command fails with API permission errors despite specifying the correct
|
||||
project, you might be trying to access an API with an invitation-only early
|
||||
access allowlist. This variant is also available:
|
||||
|
||||
$ gcloud lustre operations wait
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue