1
0
Fork 0
mirror of https://github.com/imjasonh/gcloud-help synced 2026-07-18 06:47:12 +00:00

gcloud: Sat Feb 17 10:15:37 UTC 2024

This commit is contained in:
Automated 2024-02-17 10:15:37 +00:00
parent 3efce28165
commit 5bf6fb3fc0
84 changed files with 3111 additions and 661 deletions

View file

@ -0,0 +1,32 @@
NAME
gcloud beta source-manager - manage Secure Source Manager resources
SYNOPSIS
gcloud beta source-manager GROUP [GCLOUD_WIDE_FLAG ...]
DESCRIPTION
(BETA) Manage Secure Source Manager 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
(BETA) Manage Secure Source Manager instances.
locations
(BETA) Manage Secure Source Manager locations.
operations
(BETA) Manage Secure Source Manager operations.
NOTES
This command is currently in beta and might change without notice. This
variant is also available:
$ gcloud alpha source-manager

View file

@ -0,0 +1,95 @@
NAME
gcloud beta source-manager instances add-iam-policy-binding - add an IAM
policy binding to a Secure Source Manager instance
SYNOPSIS
gcloud beta source-manager instances add-iam-policy-binding
(INSTANCE : --region=REGION) --member=PRINCIPAL --role=ROLE
[GCLOUD_WIDE_FLAG ...]
DESCRIPTION
(BETA) Add an IAM policy binding to a Secure Source Manager instance.
EXAMPLES
To add an IAM policy binding for the role of 'roles/editor' for the user
'test-user@gmail.com' with instance named 'my-instance' and location
'us-central1', run:
$ gcloud beta source-manager instances add-iam-policy-binding \
my-instance --region='us-central1' \
--member='user:test-user@gmail.com' --role='roles/editor'
See https://cloud.google.com/iam/docs/managing-policies for details of
policy role and member types.
POSITIONAL ARGUMENTS
Instance resource - The instance for which to add the IAM policy binding.
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.
--region=REGION
Secure Source Manager location.
To set the region attribute:
▸ provide the argument instance on the command line with a fully
specified name;
▸ provide the argument --region on the command line.
REQUIRED FLAGS
--member=PRINCIPAL
The principal to add the binding for. Should be of the form
user|group|serviceAccount:email or domain:domain.
Examples: user:test-user@gmail.com, group:admins@example.com,
serviceAccount:test123@example.domain.com, or
domain:example.domain.com.
Some resources also accept the following special values:
◆ allUsers - Special identifier that represents anyone who is on the
internet, with or without a Google account.
◆ allAuthenticatedUsers - Special identifier that represents anyone
who is authenticated with a Google account or a service account.
--role=ROLE
Role name to assign to the principal. The role name is the complete
path of a predefined role, such as roles/logging.viewer, or the role ID
for a custom role, such as
organizations/{ORGANIZATION_ID}/roles/logging.viewer.
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 securesourcemanager/v1 API. The full documentation
for this API can be found at:
https://cloud.google.com/secure-source-manager
NOTES
This command is currently in beta and might change without notice. This
variant is also available:
$ gcloud alpha source-manager instances add-iam-policy-binding

View file

@ -0,0 +1,92 @@
NAME
gcloud beta source-manager instances create - create a Secure Source
Manager instance
SYNOPSIS
gcloud beta source-manager instances create (INSTANCE : --region=REGION)
[--async] [--ca-pool=CA_POOL] [--is-private] [--kms-key=KMS_KEY]
[--max-wait=MAX_WAIT; default="60m"] [GCLOUD_WIDE_FLAG ...]
DESCRIPTION
(BETA) Create a Secure Source Manager instance.
EXAMPLES
To create a Secure Source Manager instance named 'my-instance' in location
'us-central1' asynchronously, run:
$ gcloud beta source-manager instances create my-instance \
--region=us-central1
To create a Secure Source Manager instance named 'my-instance' in location
'us-central1' synchronously, and wait a maximum of 30 minutes for it to
finish being created, run:
$ gcloud beta source-manager instances create my-instance \
--region=us-central1 --no-async --max-wait=30m
POSITIONAL ARGUMENTS
Instance resource - The Secure Source Manager instance 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 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.
--region=REGION
Secure Source Manager location.
To set the region attribute:
▸ provide the argument instance on the command line with a fully
specified name;
▸ provide the argument --region on the command line.
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.
--ca-pool=CA_POOL
CA Pool path for private instance.
--is-private
Bool indicator for private instance.
--kms-key=KMS_KEY
KMS key used to encrypt instance optionally.
--max-wait=MAX_WAIT; default="60m"
Time to synchronously wait for the operation to complete, after which
the operation continues asynchronously. Ignored if --no-async isn't
specified. See $ gcloud topic datetimes for information on time
formats.
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.
NOTES
This command is currently in beta and might change without notice. This
variant is also available:
$ gcloud alpha source-manager instances create

View file

@ -0,0 +1,82 @@
NAME
gcloud beta source-manager instances delete - delete a Secure Source
Manager instance
SYNOPSIS
gcloud beta source-manager instances delete (INSTANCE : --region=REGION)
[--async] [--max-wait=MAX_WAIT; default="60m"] [GCLOUD_WIDE_FLAG ...]
DESCRIPTION
(BETA) Delete a Secure Source Manager instance.
EXAMPLES
To delete a Secure Source Manager instance named 'my-instance' in location
'us-central1' asynchronously, run:
$ gcloud beta source-manager instances delete my-instance \
--region=us-central1
To delete a Secure Source Manager instance named 'my-instance' in location
'us-central1' synchronously, and wait a maximum of 30 minutes for it to
finish being deleted, run:
$ gcloud beta source-manager instances delete my-instance \
--region=us-central1 --no-async --max-wait=30m
POSITIONAL ARGUMENTS
Instance resource - The Secure Source Manager instance to delete. 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.
--region=REGION
Secure Source Manager location.
To set the region attribute:
▸ provide the argument instance on the command line with a fully
specified name;
▸ provide the argument --region on the command line.
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.
--max-wait=MAX_WAIT; default="60m"
Time to synchronously wait for the operation to complete, after which
the operation continues asynchronously. Ignored if --no-async isn't
specified. See $ gcloud topic datetimes for information on time
formats.
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.
NOTES
This command is currently in beta and might change without notice. This
variant is also available:
$ gcloud alpha source-manager instances delete

View file

@ -0,0 +1,68 @@
NAME
gcloud beta source-manager instances describe - describe a Secure Source
Manager instance
SYNOPSIS
gcloud beta source-manager instances describe (INSTANCE : --region=REGION)
[GCLOUD_WIDE_FLAG ...]
DESCRIPTION
(BETA) Get details of a Secure Source Manager instance.
EXAMPLES
To describe a Secure Source Manager instance named 'my-instance' in
location 'us-central1' under the current project, run:
$ gcloud beta source-manager instances describe my-instance \
--region=us-central1
POSITIONAL ARGUMENTS
Instance resource - The instance you want 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 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.
--region=REGION
Secure Source Manager location.
To set the region attribute:
▸ provide the argument instance on the command line with a fully
specified name;
▸ provide the argument --region 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 securesourcemanager/v1 API. The full documentation
for this API can be found at:
https://cloud.google.com/secure-source-manager
NOTES
This command is currently in beta and might change without notice. This
variant is also available:
$ gcloud alpha source-manager instances describe

View file

@ -0,0 +1,95 @@
NAME
gcloud beta source-manager instances get-iam-policy - get the IAM policy
for a Secure Source Manager instance
SYNOPSIS
gcloud beta source-manager instances get-iam-policy
(INSTANCE : --region=REGION) [--filter=EXPRESSION] [--limit=LIMIT]
[--page-size=PAGE_SIZE] [--sort-by=[FIELD,...]] [GCLOUD_WIDE_FLAG ...]
DESCRIPTION
(BETA) Get the IAM policy for a Secure Source Manager instance.
EXAMPLES
To get the IAM policy for an instance named 'my-instance' in location
'us-central1', run:
$ gcloud beta source-manager instances get-iam-policy my-instance \
--region=us-central1
POSITIONAL ARGUMENTS
Instance resource - The Secure Source Manager instance for which to get
the IAM policy. 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.
--region=REGION
Secure Source Manager location.
To set the region attribute:
▸ provide the argument instance on the command line with a fully
specified name;
▸ provide the argument --region 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.
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 securesourcemanager/v1 API. The full documentation
for this API can be found at:
https://cloud.google.com/secure-source-manager
NOTES
This command is currently in beta and might change without notice. This
variant is also available:
$ gcloud alpha source-manager instances get-iam-policy

View file

@ -0,0 +1,49 @@
NAME
gcloud beta source-manager instances - manage Secure Source Manager
instances
SYNOPSIS
gcloud beta source-manager instances COMMAND [GCLOUD_WIDE_FLAG ...]
DESCRIPTION
(BETA) Manage Secure Source Manager instances.
GCLOUD WIDE FLAGS
These flags are available to all commands: --help.
Run $ gcloud help for details.
COMMANDS
COMMAND is one of the following:
add-iam-policy-binding
(BETA) Add an IAM policy binding to a Secure Source Manager instance.
create
(BETA) Create a Secure Source Manager instance.
delete
(BETA) Delete a Secure Source Manager instance.
describe
(BETA) Describe a Secure Source Manager instance.
get-iam-policy
(BETA) Get the IAM policy for a Secure Source Manager instance.
list
(BETA) List Secure Source Manager instances.
remove-iam-policy-binding
(BETA) Remove an IAM policy binding to a Secure Source Manager
instance.
set-iam-policy
(BETA) Set the IAM policy for a Secure Source Manager instance.
NOTES
This command is currently in beta and might change without notice. This
variant is also available:
$ gcloud alpha source-manager instances

View file

@ -0,0 +1,88 @@
NAME
gcloud beta source-manager instances list - list Secure Source Manager
instances
SYNOPSIS
gcloud beta source-manager instances list --region=REGION
[--filter=EXPRESSION] [--limit=LIMIT] [--page-size=PAGE_SIZE]
[--sort-by=[FIELD,...]] [--uri] [GCLOUD_WIDE_FLAG ...]
DESCRIPTION
(BETA) List all instances on your Secure Source Manager.
EXAMPLES
To list all Secure Source Manager instances in location 'us-central1' under
the current project, run:
$ gcloud beta source-manager instances list --region=us-central1
REQUIRED FLAGS
Location resource - The location you want to list the instances for. 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 --region 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.
--region=REGION
ID of the location or fully qualified identifier for the location.
To set the region attribute:
▸ provide the argument --region 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 securesourcemanager/v1 API. The full documentation
for this API can be found at:
https://cloud.google.com/secure-source-manager
NOTES
This command is currently in beta and might change without notice. This
variant is also available:
$ gcloud alpha source-manager instances list

View file

@ -0,0 +1,96 @@
NAME
gcloud beta source-manager instances remove-iam-policy-binding - remove an
IAM policy binding to a Secure Source Manager instance
SYNOPSIS
gcloud beta source-manager instances remove-iam-policy-binding
(INSTANCE : --region=REGION) --member=PRINCIPAL --role=ROLE
[GCLOUD_WIDE_FLAG ...]
DESCRIPTION
(BETA) Remove an IAM policy binding to a Secure Source Manager instance.
EXAMPLES
To remove an IAM policy binding for the role of 'roles/editor' for the user
'test-user@gmail.com' with instance named 'my-instance' and location
'us-central1', run:
$ gcloud beta source-manager instances remove-iam-policy-binding \
my-instance --region='us-central1' \
--member='user:test-user@gmail.com' --role='roles/editor'
See https://cloud.google.com/iam/docs/managing-policies for details of
policy role and member types.
POSITIONAL ARGUMENTS
Instance resource - The instance for which to remove the IAM policy
binding. 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.
--region=REGION
Secure Source Manager location.
To set the region attribute:
▸ provide the argument instance on the command line with a fully
specified name;
▸ provide the argument --region on the command line.
REQUIRED FLAGS
--member=PRINCIPAL
The principal to remove the binding for. Should be of the form
user|group|serviceAccount:email or domain:domain.
Examples: user:test-user@gmail.com, group:admins@example.com,
serviceAccount:test123@example.domain.com, or
domain:example.domain.com.
Deleted principals have an additional deleted: prefix and a ?uid=UID
suffix, where UID is a unique identifier for the principal. Example:
deleted:user:test-user@gmail.com?uid=123456789012345678901.
Some resources also accept the following special values:
◆ allUsers - Special identifier that represents anyone who is on the
internet, with or without a Google account.
◆ allAuthenticatedUsers - Special identifier that represents anyone
who is authenticated with a Google account or a service account.
--role=ROLE
The role to remove the principal from.
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 securesourcemanager/v1 API. The full documentation
for this API can be found at:
https://cloud.google.com/secure-source-manager
NOTES
This command is currently in beta and might change without notice. This
variant is also available:
$ gcloud alpha source-manager instances remove-iam-policy-binding

View file

@ -0,0 +1,75 @@
NAME
gcloud beta source-manager instances set-iam-policy - set the IAM policy
for a Secure Source Manager instance
SYNOPSIS
gcloud beta source-manager instances set-iam-policy
(INSTANCE : --region=REGION) POLICY_FILE [GCLOUD_WIDE_FLAG ...]
DESCRIPTION
(BETA) Set the IAM policy for a Secure Source Manager instance.
EXAMPLES
To set the IAM policy for an instance named 'my-instance' in location
'us-central' to content of policy.json , run:
$ gcloud beta source-manager instances set-iam-policy my-instance \
--region=us-central1 policy.json
POSITIONAL ARGUMENTS
Instance resource - The Secure Source Manager instance for which to set
the IAM policy. 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.
--region=REGION
Secure Source Manager location.
To set the region attribute:
▸ provide the argument instance on the command line with a fully
specified name;
▸ provide the argument --region on the command line.
POLICY_FILE
Path to a local JSON or YAML formatted file containing a valid policy.
The output of the get-iam-policy command is a valid file, as is any
JSON or YAML file conforming to the structure of a Policy
(https://cloud.google.com/iam/reference/rest/v1/Policy).
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 securesourcemanager/v1 API. The full documentation
for this API can be found at:
https://cloud.google.com/secure-source-manager
NOTES
This command is currently in beta and might change without notice. This
variant is also available:
$ gcloud alpha source-manager instances set-iam-policy

View file

@ -0,0 +1,27 @@
NAME
gcloud beta source-manager locations - manage Secure Source Manager
locations
SYNOPSIS
gcloud beta source-manager locations COMMAND [GCLOUD_WIDE_FLAG ...]
DESCRIPTION
(BETA) Manage Secure Source Manager locations.
GCLOUD WIDE FLAGS
These flags are available to all commands: --help.
Run $ gcloud help for details.
COMMANDS
COMMAND is one of the following:
list
(BETA) List Secure Source Manager locations.
NOTES
This command is currently in beta and might change without notice. This
variant is also available:
$ gcloud alpha source-manager locations

View file

@ -0,0 +1,69 @@
NAME
gcloud beta source-manager locations list - list Secure Source Manager
locations
SYNOPSIS
gcloud beta source-manager locations list [--filter=EXPRESSION]
[--limit=LIMIT] [--page-size=PAGE_SIZE] [--sort-by=[FIELD,...]] [--uri]
[GCLOUD_WIDE_FLAG ...]
DESCRIPTION
(BETA) List all locations where Secure Source Manager is available.
EXAMPLES
To list all locations where Secure Source Manager is available for the
current project, run:
$ gcloud beta source-manager locations list
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 securesourcemanager/v1 API. The full documentation
for this API can be found at:
https://cloud.google.com/secure-source-manager
NOTES
This command is currently in beta and might change without notice. This
variant is also available:
$ gcloud alpha source-manager locations list

View file

@ -0,0 +1,68 @@
NAME
gcloud beta source-manager operations describe - describe a Secure Source
Manager operation
SYNOPSIS
gcloud beta source-manager operations describe
(OPERATION : --region=REGION) [GCLOUD_WIDE_FLAG ...]
DESCRIPTION
(BETA) Get details of a Secure Source Manager operation.
EXAMPLES
To describe a Secure Source Manager operation named 'my-operation' in
location 'us-central1' under the current project, run:
$ gcloud beta source-manager operations describe my-operation \
--region=us-central1
POSITIONAL ARGUMENTS
Operation resource - The operation you want 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 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.
--region=REGION
Secure Source Manager location.
To set the region attribute:
▸ provide the argument operation on the command line with a fully
specified name;
▸ provide the argument --region 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 securesourcemanager/v1 API. The full documentation
for this API can be found at:
https://cloud.google.com/secure-source-manager
NOTES
This command is currently in beta and might change without notice. This
variant is also available:
$ gcloud alpha source-manager operations describe

View file

@ -0,0 +1,30 @@
NAME
gcloud beta source-manager operations - manage Secure Source Manager
operations
SYNOPSIS
gcloud beta source-manager operations COMMAND [GCLOUD_WIDE_FLAG ...]
DESCRIPTION
(BETA) Manage Secure Source Manager operations.
GCLOUD WIDE FLAGS
These flags are available to all commands: --help.
Run $ gcloud help for details.
COMMANDS
COMMAND is one of the following:
describe
(BETA) Describe a Secure Source Manager operation.
list
(BETA) List Secure Source Manager operations.
NOTES
This command is currently in beta and might change without notice. This
variant is also available:
$ gcloud alpha source-manager operations

View file

@ -0,0 +1,88 @@
NAME
gcloud beta source-manager operations list - list Secure Source Manager
operations
SYNOPSIS
gcloud beta source-manager operations list --region=REGION
[--filter=EXPRESSION] [--limit=LIMIT] [--page-size=PAGE_SIZE]
[--sort-by=[FIELD,...]] [--uri] [GCLOUD_WIDE_FLAG ...]
DESCRIPTION
(BETA) List all Secure Source Manager operations.
EXAMPLES
To list all Secure Source Manager operations in location 'us-central1'
under the current project, run:
$ gcloud beta source-manager operations list --region=us-central1
REQUIRED FLAGS
Location resource - The location you want to list the operations for. 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 --region 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.
--region=REGION
ID of the location or fully qualified identifier for the location.
To set the region attribute:
▸ provide the argument --region 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 securesourcemanager/v1 API. The full documentation
for this API can be found at:
https://cloud.google.com/secure-source-manager
NOTES
This command is currently in beta and might change without notice. This
variant is also available:
$ gcloud alpha source-manager operations list