1
0
Fork 0
mirror of https://github.com/imjasonh/gcloud-help synced 2026-07-18 23:08:48 +00:00

gcloud: Wed Dec 10 10:54:29 UTC 2025

This commit is contained in:
Automated 2025-12-10 10:54:29 +00:00
parent 7b14250313
commit 6d07e70b12
313 changed files with 11521 additions and 1088 deletions

View file

@ -0,0 +1,43 @@
NAME
gcloud beta resource-manager capabilities describe - show whether a
Capability is enabled
SYNOPSIS
gcloud beta resource-manager capabilities describe CAPABILITY_ID
[GCLOUD_WIDE_FLAG ...]
DESCRIPTION
(BETA) Command to show whether a Capability is enabled.
This command can fail for the following reasons:
▪ The capability specified does not exist.
▪ The active account does not have permission to access the given
folder/capability.
EXAMPLES
The following command prints metadata for a capability with the ID
folders/123/capabilities/app-management:
$ gcloud beta resource-manager capabilities describe \
"folders/123/capabilities/app-management"
POSITIONAL ARGUMENTS
CAPABILITY_ID
ID for the capability you want to describe.
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. These
variants are also available:
$ gcloud resource-manager capabilities describe
$ gcloud alpha resource-manager capabilities describe

View file

@ -0,0 +1,32 @@
NAME
gcloud beta resource-manager capabilities - manage Cloud Folder
Capabilities
SYNOPSIS
gcloud beta resource-manager capabilities COMMAND [GCLOUD_WIDE_FLAG ...]
DESCRIPTION
(BETA) Commands to query and update your Cloud Folder's Capabilities.
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) Show whether a Capability is enabled.
update
(BETA) Update a folder capability.
NOTES
This command is currently in beta and might change without notice. These
variants are also available:
$ gcloud resource-manager capabilities
$ gcloud alpha resource-manager capabilities

View file

@ -0,0 +1,60 @@
NAME
gcloud beta resource-manager capabilities update - update a folder
capability
SYNOPSIS
gcloud beta resource-manager capabilities update CAPABILITY_ID
--[no-]enable [--update-mask=UPDATE_MASK] [GCLOUD_WIDE_FLAG ...]
DESCRIPTION
(BETA) Command to Update/Set the value field of the Folder capability. This
can be done by using the --enable flag to set the value to True, and the
--no-enable flag to set the value to False.
This command can fail for the following reasons:
▪ There is no folder parenting the given capability name.
▪ The active account does not have permission to update the given
folder/capability.
EXAMPLES
The following command updates a capability with the ID
folders/123/capabilities/app-management to have the value True:
$ gcloud beta resource-manager capabilities update \
"folders/123/capabilities/app-management" --enable
In order to set the value to False, the following command can be used:
$ gcloud beta resource-manager capabilities update \
"folders/123/capabilities/app-management" --no-enable
POSITIONAL ARGUMENTS
CAPABILITY_ID
ID for the capability you want to update.
REQUIRED FLAGS
--[no-]enable
Enable the Capability. Use --enable to enable and --no-enable to
disable.
OPTIONAL FLAGS
--update-mask=UPDATE_MASK
Update Mask. This is an optional field, and the only valid value this
can be set to currently is "value".
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. These
variants are also available:
$ gcloud resource-manager capabilities update
$ gcloud alpha resource-manager capabilities update

View file

@ -16,6 +16,9 @@ GCLOUD WIDE FLAGS
GROUPS
GROUP is one of the following:
capabilities
(BETA) Manage Cloud Folder Capabilities.
folders
(BETA) Manage Cloud Folders.