mirror of
https://github.com/imjasonh/gcloud-help
synced 2026-07-22 07:40:10 +00:00
gcloud: Tue Nov 18 10:53:36 UTC 2025
This commit is contained in:
parent
4b21ae6795
commit
e1ec13485a
380 changed files with 16045 additions and 783 deletions
|
|
@ -1,47 +1,61 @@
|
|||
NAME
|
||||
gcloud beta services list - list services for a project
|
||||
gcloud beta services list - list services for a project, folder or
|
||||
organization
|
||||
|
||||
SYNOPSIS
|
||||
gcloud beta services list [--available | --enabled] [--filter=EXPRESSION]
|
||||
[--limit=LIMIT] [--page-size=PAGE_SIZE; default=200]
|
||||
[--sort-by=[FIELD,...]] [GCLOUD_WIDE_FLAG ...]
|
||||
gcloud beta services list [--available | --enabled]
|
||||
[--folder=FOLDER_ID | --organization=ORGANIZATION_ID
|
||||
| --project=PROJECT_ID] [--filter=EXPRESSION] [--limit=LIMIT]
|
||||
[--page-size=PAGE_SIZE; default=1000] [--sort-by=[FIELD,...]]
|
||||
[GCLOUD_WIDE_FLAG ...]
|
||||
|
||||
DESCRIPTION
|
||||
(BETA) This command lists the services that are enabled or available to be
|
||||
enabled by a project. You can choose the mode in which the command will
|
||||
list services by using exactly one of the --enabled or --available flags.
|
||||
--enabled is the default.
|
||||
enabled by a project, folder or organization. Service enablement and
|
||||
availability can be inherited from resource ancestors. A resource's enabled
|
||||
services include services that are enabled on the resource itself and
|
||||
enabled on all resource ancestors. services by using exactly one of the
|
||||
--enabled or --available flags. --enabled is the default.
|
||||
|
||||
EXAMPLES
|
||||
To list the services for the current project has enabled for consumption,
|
||||
run:
|
||||
To list the services the current project has enabled for consumption, run:
|
||||
|
||||
$ gcloud beta services list --enabled
|
||||
|
||||
To list the services for the current project can enable for consumption,
|
||||
run:
|
||||
To list the services the current project can enable for consumption, run:
|
||||
|
||||
$ gcloud beta services list --available
|
||||
|
||||
To list the services for project my-project has enabled for consumption,
|
||||
run:
|
||||
|
||||
$ gcloud beta services list --enabled --project=my-project
|
||||
|
||||
To list the services the project my-project can enable for consumption,
|
||||
run:
|
||||
|
||||
$ gcloud beta services list --available --project=my-project
|
||||
|
||||
FLAGS
|
||||
At most one of these can be specified:
|
||||
|
||||
--available
|
||||
Return the services available to the project to enable. This list
|
||||
will include any services that the project has already enabled.
|
||||
Return the services available to the project, folder or organization
|
||||
to enable.
|
||||
|
||||
--enabled
|
||||
(DEFAULT) Return the services which the project has enabled.
|
||||
(DEFAULT) Return the services which the project, folder or
|
||||
organization has enabled.
|
||||
|
||||
At most one of these can be specified:
|
||||
|
||||
--folder=FOLDER_ID
|
||||
The Google Cloud Platform folder ID to use for this invocation.
|
||||
|
||||
--organization=ORGANIZATION_ID
|
||||
The Google Cloud Platform organization ID to use for this invocation.
|
||||
|
||||
--project=PROJECT_ID
|
||||
The Google Cloud project ID to use for this invocation. If omitted,
|
||||
then the current project is assumed; the current project can be
|
||||
listed using gcloud config list --format='text(core.project)' and can
|
||||
be set using gcloud config set project PROJECTID.
|
||||
|
||||
--project and its fallback core/project property play two roles in
|
||||
the invocation. It specifies the project of the resource to operate
|
||||
on. It also specifies the project for API enablement check, quota,
|
||||
and billing. To specify a different project for quota and billing,
|
||||
use --billing-project or billing/quota_project property.
|
||||
|
||||
LIST COMMAND FLAGS
|
||||
--filter=EXPRESSION
|
||||
|
|
@ -56,11 +70,11 @@ LIST COMMAND FLAGS
|
|||
flag interacts with other flags that are applied in this order:
|
||||
--flatten, --sort-by, --filter, --limit.
|
||||
|
||||
--page-size=PAGE_SIZE; default=200
|
||||
--page-size=PAGE_SIZE; default=1000
|
||||
Some services group resource list output into pages. This flag
|
||||
specifies the maximum number of resources per page. The default is 200.
|
||||
Paging may be applied before or after --filter and --limit depending on
|
||||
the service.
|
||||
specifies the maximum number of resources per page. The default is
|
||||
1000. 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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue