mirror of
https://github.com/imjasonh/gcloud-help
synced 2026-07-16 20:36:39 +00:00
gcloud: Wed Mar 19 10:42:21 UTC 2025
This commit is contained in:
parent
a459a88a5f
commit
e555fef0aa
170 changed files with 6428 additions and 659 deletions
|
|
@ -35,6 +35,9 @@ GROUPS
|
|||
insights
|
||||
(ALPHA) Manage Cloud Storage inventory reports.
|
||||
|
||||
intelligence-configs
|
||||
(ALPHA) Manage Cloud Storage Intelligence Configurations.
|
||||
|
||||
managed-folders
|
||||
(ALPHA) Manage Cloud Storage managed folders.
|
||||
|
||||
|
|
|
|||
45
gcloud/alpha/storage/intelligence-configs/describe
Normal file
45
gcloud/alpha/storage/intelligence-configs/describe
Normal file
|
|
@ -0,0 +1,45 @@
|
|||
NAME
|
||||
gcloud alpha storage intelligence-configs describe - describes storage
|
||||
intelligence configuration
|
||||
|
||||
SYNOPSIS
|
||||
gcloud alpha storage intelligence-configs describe
|
||||
(--organization=ORGANIZATION | --project=PROJECT
|
||||
| --sub-folder=SUB_FOLDER) [GCLOUD_WIDE_FLAG ...]
|
||||
|
||||
DESCRIPTION
|
||||
(ALPHA) Describe storage intelligence config for the organization,
|
||||
sub-folder or project.
|
||||
|
||||
EXAMPLES
|
||||
The following command describes storage intelligence config for the
|
||||
sub-folder with id 123456.
|
||||
|
||||
$gcloud alpha storage intelligence-configs describe --sub-folder=123456
|
||||
|
||||
REQUIRED FLAGS
|
||||
Exactly one of these must be specified:
|
||||
|
||||
--organization=ORGANIZATION
|
||||
Specifies organization id for the storage intelligence config.
|
||||
|
||||
--project=PROJECT
|
||||
Specifies project for the storage intelligence config.
|
||||
|
||||
--sub-folder=SUB_FOLDER
|
||||
Specifies sub-folder id for the storage intelligence config.
|
||||
|
||||
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 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.
|
||||
|
||||
44
gcloud/alpha/storage/intelligence-configs/disable
Normal file
44
gcloud/alpha/storage/intelligence-configs/disable
Normal file
|
|
@ -0,0 +1,44 @@
|
|||
NAME
|
||||
gcloud alpha storage intelligence-configs disable - disables storage
|
||||
intelligence
|
||||
|
||||
SYNOPSIS
|
||||
gcloud alpha storage intelligence-configs disable
|
||||
(--organization=ORGANIZATION | --project=PROJECT
|
||||
| --sub-folder=SUB_FOLDER) [GCLOUD_WIDE_FLAG ...]
|
||||
|
||||
DESCRIPTION
|
||||
(ALPHA) Disable storage intelligence for the organization, sub-folder or
|
||||
project.
|
||||
|
||||
EXAMPLES
|
||||
The following command disables storage intelligence for the project.
|
||||
|
||||
$gcloud alpha storage intelligence-configs disable --project=my-project
|
||||
|
||||
REQUIRED FLAGS
|
||||
Exactly one of these must be specified:
|
||||
|
||||
--organization=ORGANIZATION
|
||||
Specifies organization id for the storage intelligence config.
|
||||
|
||||
--project=PROJECT
|
||||
Specifies project for the storage intelligence config.
|
||||
|
||||
--sub-folder=SUB_FOLDER
|
||||
Specifies sub-folder id for the storage intelligence config.
|
||||
|
||||
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 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.
|
||||
|
||||
95
gcloud/alpha/storage/intelligence-configs/enable
Normal file
95
gcloud/alpha/storage/intelligence-configs/enable
Normal file
|
|
@ -0,0 +1,95 @@
|
|||
NAME
|
||||
gcloud alpha storage intelligence-configs enable - enables storage
|
||||
intelligence
|
||||
|
||||
SYNOPSIS
|
||||
gcloud alpha storage intelligence-configs enable
|
||||
(--organization=ORGANIZATION | --project=PROJECT
|
||||
| --sub-folder=SUB_FOLDER)
|
||||
[--exclude-locations=[EXCLUDE_LOCATIONS,...]
|
||||
| --include-locations=[INCLUDE_LOCATIONS,...]]
|
||||
[--exclude-bucket-id-regexes=[EXCLUDE_BUCKET_ID_REGEXES,...]
|
||||
| --include-bucket-id-regexes=[INCLUDE_BUCKET_ID_REGEXES,...]]
|
||||
[GCLOUD_WIDE_FLAG ...]
|
||||
|
||||
DESCRIPTION
|
||||
(ALPHA) Enable storage intelligence plan for the organization, sub-folder
|
||||
or project along with filters.
|
||||
|
||||
EXAMPLES
|
||||
To remove buckets from the storage intelligence plan, Use the following
|
||||
command with --exclude-bucket-id-regexes flag. to specify list of bucket id
|
||||
regexes.,
|
||||
|
||||
$gcloud alpha storage intelligence-configs enable --organization=my-org --exclude-bucket-id-regexes="my-bucket-.*"
|
||||
|
||||
To apply location based filters in the storage intelligence plan, Use
|
||||
--include-locations or --exclude-locations flags to specify allowed list of
|
||||
locations or excluded list of locations. The following command updates
|
||||
storage intelligence plan of sub-folder 123456 with the specified list of
|
||||
included locations.,
|
||||
|
||||
$gcloud alpha storage intelligence-configs enable --sub-folder=123456 --include-locations="us-east1","us-west1"
|
||||
|
||||
REQUIRED FLAGS
|
||||
Exactly one of these must be specified:
|
||||
|
||||
--organization=ORGANIZATION
|
||||
Specifies organization id for the storage intelligence config.
|
||||
|
||||
--project=PROJECT
|
||||
Specifies project for the storage intelligence config.
|
||||
|
||||
--sub-folder=SUB_FOLDER
|
||||
Specifies sub-folder id for the storage intelligence config.
|
||||
|
||||
LOCATION FLAGS
|
||||
At most one of these can be specified:
|
||||
|
||||
--exclude-locations=[EXCLUDE_LOCATIONS,...]
|
||||
Comma separated list of locations
|
||||
(https://cloud.google.com/storage/docs/locations#available-locations)
|
||||
to exclude in storage intelligence filter. To clear excluded
|
||||
locations, provide flag with empty list. e.g --exclude-locations=""
|
||||
or --exclude-locations= .
|
||||
|
||||
--include-locations=[INCLUDE_LOCATIONS,...]
|
||||
Comma separated list of locations
|
||||
(https://cloud.google.com/storage/docs/locations#available-locations)
|
||||
to include in storage intelligence filter. To clear included
|
||||
locations, provide flag with empty list. e.g --include-locations=""
|
||||
or --include-locations= .
|
||||
|
||||
BUCKET_FILTER FLAGS
|
||||
At most one of these can be specified:
|
||||
|
||||
--exclude-bucket-id-regexes=[EXCLUDE_BUCKET_ID_REGEXES,...]
|
||||
Sets filter for bucket id regexes to exclude. Accepts list of bucket
|
||||
id regexes in comma separated format. If the regex contains special
|
||||
characters that may have a specific meaning in the shell, escape them
|
||||
using backslashes(\). To clear bucket id regexes list, provide flag
|
||||
with an empty list. e.g --exclude-bucket-id-regexes="" or
|
||||
--exclude-bucket-id-regexes= .
|
||||
|
||||
--include-bucket-id-regexes=[INCLUDE_BUCKET_ID_REGEXES,...]
|
||||
Sets filter for bucket id regexes to include. Accepts list of bucket
|
||||
id regexes in comma separated format. If the regex contains special
|
||||
characters that may have a specific meaning in the shell, escape them
|
||||
using backslashes(\). To clear bucket id regexes list, provide flag
|
||||
with empty list. e.g --include-bucket-id-regexes="" or
|
||||
--include-bucket-id-regexes= .
|
||||
|
||||
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 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.
|
||||
|
||||
36
gcloud/alpha/storage/intelligence-configs/help
Normal file
36
gcloud/alpha/storage/intelligence-configs/help
Normal file
|
|
@ -0,0 +1,36 @@
|
|||
NAME
|
||||
gcloud alpha storage intelligence-configs - manage Cloud Storage
|
||||
Intelligence Configurations
|
||||
|
||||
SYNOPSIS
|
||||
gcloud alpha storage intelligence-configs COMMAND [GCLOUD_WIDE_FLAG ...]
|
||||
|
||||
DESCRIPTION
|
||||
(ALPHA) Manage Cloud Storage Intelligence Configurations.
|
||||
|
||||
GCLOUD WIDE FLAGS
|
||||
These flags are available to all commands: --help.
|
||||
|
||||
Run $ gcloud help for details.
|
||||
|
||||
COMMANDS
|
||||
COMMAND is one of the following:
|
||||
|
||||
describe
|
||||
(ALPHA) Describes storage intelligence configuration.
|
||||
|
||||
disable
|
||||
(ALPHA) Disables storage intelligence.
|
||||
|
||||
enable
|
||||
(ALPHA) Enables storage intelligence.
|
||||
|
||||
update
|
||||
(ALPHA) Updates storage intelligence configuration.
|
||||
|
||||
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.
|
||||
|
||||
109
gcloud/alpha/storage/intelligence-configs/update
Normal file
109
gcloud/alpha/storage/intelligence-configs/update
Normal file
|
|
@ -0,0 +1,109 @@
|
|||
NAME
|
||||
gcloud alpha storage intelligence-configs update - updates storage
|
||||
intelligence configuration
|
||||
|
||||
SYNOPSIS
|
||||
gcloud alpha storage intelligence-configs update
|
||||
(--organization=ORGANIZATION | --project=PROJECT
|
||||
| --sub-folder=SUB_FOLDER)
|
||||
(--inherit-from-parent
|
||||
| --exclude-bucket-id-regexes=[EXCLUDE_BUCKET_ID_REGEXES,...]
|
||||
| --include-bucket-id-regexes=[INCLUDE_BUCKET_ID_REGEXES,...]
|
||||
--exclude-locations=[EXCLUDE_LOCATIONS,...]
|
||||
| --include-locations=[INCLUDE_LOCATIONS,...]) [GCLOUD_WIDE_FLAG ...]
|
||||
|
||||
DESCRIPTION
|
||||
(ALPHA) Update storage intelligence configuration for the organization,
|
||||
sub-folder or project.
|
||||
|
||||
EXAMPLES
|
||||
To limit buckets in the storage intelligence configuration, Use the
|
||||
following command with --include-bucket-id-regexes flag. to specify list of
|
||||
bucket ids and bucket id regexes.,
|
||||
|
||||
$gcloud alpha storage intelligence-configs update --organization=my-org --include-bucket-id-regexes=my-bucket-.*
|
||||
|
||||
To apply location based filters in the storage intelligence configuration,
|
||||
Use --include-locations or --exclude-locations flags to specify allowed
|
||||
list of locations or excluded list of locations. The following command
|
||||
updates storage intelligence configuration of sub-folder 123456 with the
|
||||
specified list of excluded locations.,
|
||||
|
||||
$gcloud alpha storage intelligence-configs update --sub-folder=123456 --exclude-locations=us-east1,us-west1
|
||||
|
||||
The following command updates storage intelligence for the given project by
|
||||
inheriting existing storage intelligence configuration from the
|
||||
hierarchical parent resource.,
|
||||
|
||||
$gcloud alpha storage intelligence-configs update --project=my-project --inherit-from-parent
|
||||
|
||||
To clear included locations from the project storage intelligence, Use the
|
||||
following command.,
|
||||
|
||||
$gcloud alpha storage intelligence-configs update --project=my-project --include-locations=
|
||||
|
||||
REQUIRED FLAGS
|
||||
Exactly one of these must be specified:
|
||||
|
||||
--organization=ORGANIZATION
|
||||
Specifies organization id for the storage intelligence config.
|
||||
|
||||
--project=PROJECT
|
||||
Specifies project for the storage intelligence config.
|
||||
|
||||
--sub-folder=SUB_FOLDER
|
||||
Specifies sub-folder id for the storage intelligence config.
|
||||
|
||||
Exactly one of these must be specified:
|
||||
|
||||
--inherit-from-parent
|
||||
Specifies storage intelligence config to be inherited from parent.
|
||||
|
||||
At most one of these can be specified:
|
||||
|
||||
--exclude-bucket-id-regexes=[EXCLUDE_BUCKET_ID_REGEXES,...]
|
||||
Sets filter for bucket id regexes to exclude. Accepts list of
|
||||
bucket id regexes in comma separated format. If the regex contains
|
||||
special characters that may have a specific meaning in the shell,
|
||||
escape them using backslashes(\). To clear bucket id regexes list,
|
||||
provide flag with an empty list. e.g --exclude-bucket-id-regexes=""
|
||||
or --exclude-bucket-id-regexes= .
|
||||
|
||||
--include-bucket-id-regexes=[INCLUDE_BUCKET_ID_REGEXES,...]
|
||||
Sets filter for bucket id regexes to include. Accepts list of
|
||||
bucket id regexes in comma separated format. If the regex contains
|
||||
special characters that may have a specific meaning in the shell,
|
||||
escape them using backslashes(\). To clear bucket id regexes list,
|
||||
provide flag with empty list. e.g --include-bucket-id-regexes="" or
|
||||
--include-bucket-id-regexes= .
|
||||
|
||||
At most one of these can be specified:
|
||||
|
||||
--exclude-locations=[EXCLUDE_LOCATIONS,...]
|
||||
Comma separated list of locations
|
||||
(https://cloud.google.com/storage/docs/locations#available-locations)
|
||||
to exclude in storage intelligence filter. To clear excluded
|
||||
locations, provide flag with empty list. e.g --exclude-locations=""
|
||||
or --exclude-locations= .
|
||||
|
||||
--include-locations=[INCLUDE_LOCATIONS,...]
|
||||
Comma separated list of locations
|
||||
(https://cloud.google.com/storage/docs/locations#available-locations)
|
||||
to include in storage intelligence filter. To clear included
|
||||
locations, provide flag with empty list. e.g --include-locations=""
|
||||
or --include-locations= .
|
||||
|
||||
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 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.
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue