1
0
Fork 0
mirror of https://github.com/imjasonh/gcloud-help synced 2026-07-20 13:10:18 +00:00

gcloud: Thu Jul 4 09:30:26 UTC 2024

This commit is contained in:
Automated 2024-07-04 09:30:26 +00:00
parent 9cd336cae4
commit 2614f6b65e
202 changed files with 4779 additions and 318 deletions

View file

@ -30,6 +30,9 @@ GROUPS
policies
Manage Access Context Manager policies.
supported-services
Retrieve VPC Service Controls Supported Services.
NOTES
These variants are also available:

View file

@ -0,0 +1,51 @@
NAME
gcloud access-context-manager supported-services describe - gets
information about a VPC Service Controls Supported Service
SYNOPSIS
gcloud access-context-manager supported-services describe SERVICE_NAME
[GCLOUD_WIDE_FLAG ...]
DESCRIPTION
Get service information allowed in an access policy object.
EXAMPLES
To get VPC Service Controls support information for
bigquery.googleapis.com, run:
$ gcloud access-context-manager supported-services describe \
bigquery.googleapis.com
POSITIONAL ARGUMENTS
Supported service resource - VPC Service Controls supported service. This
represents a Cloud resource.
This must be specified.
SERVICE_NAME
ID of the supported-service or fully qualified identifier for the
supported-service.
To set the service_name attribute:
▸ provide the argument service_name 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 accesscontextmanager/v1 API. The full documentation
for this API can be found at:
https://cloud.google.com/access-context-manager/docs/reference/rest/
NOTES
These variants are also available:
$ gcloud alpha access-context-manager supported-services describe
$ gcloud beta access-context-manager supported-services describe

View file

@ -0,0 +1,43 @@
NAME
gcloud access-context-manager supported-services - retrieve VPC Service
Controls Supported Services
SYNOPSIS
gcloud access-context-manager supported-services COMMAND
[GCLOUD_WIDE_FLAG ...]
DESCRIPTION
The gcloud access-context-manager supported-services command group lets you
list VPC Service Controls supported services and its properties.
EXAMPLES
To see all VPC Service Controls supported services:
$ gcloud access-context-manager supported-services list
To see support information about VPC Service Controls supported services:
$ gcloud access-context-manager supported-services describe \
SERVICE_NAME
GCLOUD WIDE FLAGS
These flags are available to all commands: --help.
Run $ gcloud help for details.
COMMANDS
COMMAND is one of the following:
describe
Gets information about a VPC Service Controls Supported Service.
list
Lists all VPC Service Controls supported services.
NOTES
These variants are also available:
$ gcloud alpha access-context-manager supported-services
$ gcloud beta access-context-manager supported-services

View file

@ -0,0 +1,71 @@
NAME
gcloud access-context-manager supported-services list - lists all VPC
Service Controls supported services
SYNOPSIS
gcloud access-context-manager supported-services list [--filter=EXPRESSION]
[--limit=LIMIT] [--page-size=PAGE_SIZE] [--sort-by=[FIELD,...]]
[GCLOUD_WIDE_FLAG ...]
DESCRIPTION
Lists the services that VPC Service Controls supports. The services that
are in this list fully support VPC Service Controls or the integration of
this service with VPC Service Controls is in Preview stage
(https://cloud.google.com/products#product-launch-stages), or the service
integration is scheduled to be shut down and removed which is in
[Deprecation stage]
(https://cloud.google.com/products#product-launch-stages). Services that
aren't in this list don't support VPC Service Controls and aren't
guaranteed to function properly in a VPC Service Controls environment.
EXAMPLES
To list VPC Service Controls supported services, run:
$ gcloud access-context-manager supported-services list
This command prints out a list of all supported services in a tabular form:
NAME TITLE SERVICE_SUPPORT_STAGE AVAILABLE_ON_RESTRICTED_VIP KNOWN_LIMITATIONS
vpcsc_supported_service VPC-SC Supported API GA True False
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.
NOTES
These variants are also available:
$ gcloud alpha access-context-manager supported-services list
$ gcloud beta access-context-manager supported-services list