mirror of
https://github.com/imjasonh/gcloud-help
synced 2026-07-18 14:56:05 +00:00
gcloud: Wed Apr 27 09:13:09 UTC 2022
This commit is contained in:
parent
72862dfe28
commit
532fac5ddb
131 changed files with 1510 additions and 390 deletions
|
|
@ -26,6 +26,9 @@ GROUPS
|
|||
domain-mappings
|
||||
(ALPHA) View and manage your Cloud Run domain mappings.
|
||||
|
||||
integrations
|
||||
(ALPHA) View and manage your Cloud Run (fully managed) integrations.
|
||||
|
||||
jobs
|
||||
(ALPHA) View and manage your Cloud Run jobs.
|
||||
|
||||
|
|
|
|||
57
gcloud/alpha/run/integrations/create
Normal file
57
gcloud/alpha/run/integrations/create
Normal file
|
|
@ -0,0 +1,57 @@
|
|||
NAME
|
||||
gcloud alpha run integrations create - create a Cloud Run Integration
|
||||
|
||||
SYNOPSIS
|
||||
gcloud alpha run integrations create --service=SERVICE --type=TYPE
|
||||
[--name=NAME] [--parameters=[PARAMETER=VALUE,...]] [--region=REGION]
|
||||
[GCLOUD_WIDE_FLAG ...]
|
||||
|
||||
DESCRIPTION
|
||||
(ALPHA) Create a Cloud Run Integration.
|
||||
|
||||
EXAMPLES
|
||||
To create and attach a redis instance to a Cloud Run service
|
||||
|
||||
$ gcloud alpha run integrations create --type=redis \
|
||||
--service=myservice
|
||||
|
||||
To attach a custom domain to a Cloud Run service
|
||||
|
||||
$ gcloud alpha run integrations create --type=custom-domain \
|
||||
--service=myservice --parameters=domain=mydomain.com
|
||||
|
||||
REQUIRED FLAGS
|
||||
--service=SERVICE
|
||||
Name of the Cloud Run service to attach to the integration.
|
||||
|
||||
--type=TYPE
|
||||
Type of the integration. To see available types and usage, use "gcloud
|
||||
run integrations types list" command.
|
||||
|
||||
OPTIONAL FLAGS
|
||||
--name=NAME
|
||||
Name of the integration.
|
||||
|
||||
--parameters=[PARAMETER=VALUE,...]
|
||||
Comma-separated list of parameter names and values. Names must be one
|
||||
of the parameters shown when describing the integration type. Only
|
||||
simple values can be specified with this flag.
|
||||
|
||||
--region=REGION
|
||||
Region in which the resource can be found. Alternatively, set the
|
||||
property [run/region].
|
||||
|
||||
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.
|
||||
|
||||
39
gcloud/alpha/run/integrations/delete
Normal file
39
gcloud/alpha/run/integrations/delete
Normal file
|
|
@ -0,0 +1,39 @@
|
|||
NAME
|
||||
gcloud alpha run integrations delete - delete a Cloud Run Integration and
|
||||
its associated resources
|
||||
|
||||
SYNOPSIS
|
||||
gcloud alpha run integrations delete NAME [--region=REGION]
|
||||
[GCLOUD_WIDE_FLAG ...]
|
||||
|
||||
DESCRIPTION
|
||||
(ALPHA) Delete a Cloud Run Integration and its associated resources.
|
||||
|
||||
EXAMPLES
|
||||
To delete a redis integration and the associated resources
|
||||
|
||||
$ gcloud alpha run integrations delete my-redis-integration
|
||||
|
||||
POSITIONAL ARGUMENTS
|
||||
NAME
|
||||
Name of the integration.
|
||||
|
||||
FLAGS
|
||||
--region=REGION
|
||||
Region in which the resource can be found. Alternatively, set the
|
||||
property [run/region].
|
||||
|
||||
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.
|
||||
|
||||
38
gcloud/alpha/run/integrations/describe
Normal file
38
gcloud/alpha/run/integrations/describe
Normal file
|
|
@ -0,0 +1,38 @@
|
|||
NAME
|
||||
gcloud alpha run integrations describe - describe a Cloud Run Integration
|
||||
|
||||
SYNOPSIS
|
||||
gcloud alpha run integrations describe NAME [--region=REGION]
|
||||
[GCLOUD_WIDE_FLAG ...]
|
||||
|
||||
DESCRIPTION
|
||||
(ALPHA) Describe a Cloud Run Integration.
|
||||
|
||||
EXAMPLES
|
||||
To describe an integration
|
||||
|
||||
$ gcloud alpha run integrations describe my-redis-integration
|
||||
|
||||
POSITIONAL ARGUMENTS
|
||||
NAME
|
||||
Name of the integration.
|
||||
|
||||
FLAGS
|
||||
--region=REGION
|
||||
Region in which the resource can be found. Alternatively, set the
|
||||
property [run/region].
|
||||
|
||||
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.
|
||||
|
||||
57
gcloud/alpha/run/integrations/help
Normal file
57
gcloud/alpha/run/integrations/help
Normal file
|
|
@ -0,0 +1,57 @@
|
|||
NAME
|
||||
gcloud alpha run integrations - view and manage your Cloud Run
|
||||
(fully managed) integrations
|
||||
|
||||
SYNOPSIS
|
||||
gcloud alpha run integrations GROUP | COMMAND [--region=REGION]
|
||||
[GCLOUD_WIDE_FLAG ...]
|
||||
|
||||
DESCRIPTION
|
||||
(ALPHA) This set of commands can be used to view and manage your Cloud Run
|
||||
integrations.
|
||||
|
||||
EXAMPLES
|
||||
To list your existing integrations, run:
|
||||
|
||||
$ gcloud alpha run integrations list
|
||||
|
||||
FLAGS
|
||||
--region=REGION
|
||||
Region in which the resource can be found. Alternatively, set the
|
||||
property [run/region].
|
||||
|
||||
GCLOUD WIDE FLAGS
|
||||
These flags are available to all commands: --help.
|
||||
|
||||
Run $ gcloud help for details.
|
||||
|
||||
GROUPS
|
||||
GROUP is one of the following:
|
||||
|
||||
types
|
||||
(ALPHA) View available Cloud Run (fully managed) integrations types.
|
||||
|
||||
COMMANDS
|
||||
COMMAND is one of the following:
|
||||
|
||||
create
|
||||
(ALPHA) Create a Cloud Run Integration.
|
||||
|
||||
delete
|
||||
(ALPHA) Delete a Cloud Run Integration and its associated resources.
|
||||
|
||||
describe
|
||||
(ALPHA) Describe a Cloud Run Integration.
|
||||
|
||||
list
|
||||
(ALPHA) List Cloud Run Integrations.
|
||||
|
||||
update
|
||||
(ALPHA) Update a Cloud Run Integration.
|
||||
|
||||
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.
|
||||
|
||||
82
gcloud/alpha/run/integrations/list
Normal file
82
gcloud/alpha/run/integrations/list
Normal file
|
|
@ -0,0 +1,82 @@
|
|||
NAME
|
||||
gcloud alpha run integrations list - list Cloud Run Integrations
|
||||
|
||||
SYNOPSIS
|
||||
gcloud alpha run integrations list [--region=REGION] [--service=SERVICE]
|
||||
[--type=TYPE] [--filter=EXPRESSION] [--limit=LIMIT]
|
||||
[--page-size=PAGE_SIZE] [--sort-by=[FIELD,...]] [--uri]
|
||||
[GCLOUD_WIDE_FLAG ...]
|
||||
|
||||
DESCRIPTION
|
||||
(ALPHA) List Cloud Run Integrations.
|
||||
|
||||
EXAMPLES
|
||||
List all Cloud Run Integrations within the current project
|
||||
|
||||
$ gcloud alpha run integrations list
|
||||
|
||||
List all Cloud Run Integrations of a particular type
|
||||
|
||||
$ gcloud alpha run integrations list --type=redis
|
||||
|
||||
List all Cloud Run Integrations attached to a particular Service
|
||||
|
||||
$ gcloud alpha run integrations list --service=my-service
|
||||
|
||||
FLAGS
|
||||
--region=REGION
|
||||
Region in which the resource can be found. Alternatively, set the
|
||||
property [run/region].
|
||||
|
||||
--service=SERVICE
|
||||
Filter Integrations by Name of Cloud Run service.
|
||||
|
||||
--type=TYPE
|
||||
Filter Integrations by Type of Integration.
|
||||
|
||||
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.
|
||||
|
||||
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.
|
||||
|
||||
39
gcloud/alpha/run/integrations/types/describe
Normal file
39
gcloud/alpha/run/integrations/types/describe
Normal file
|
|
@ -0,0 +1,39 @@
|
|||
NAME
|
||||
gcloud alpha run integrations types describe - describes a Cloud Run
|
||||
Integration
|
||||
|
||||
SYNOPSIS
|
||||
gcloud alpha run integrations types describe TYPE [--region=REGION]
|
||||
[GCLOUD_WIDE_FLAG ...]
|
||||
|
||||
DESCRIPTION
|
||||
(ALPHA) Describes a Cloud Run Integration.
|
||||
|
||||
EXAMPLES
|
||||
To describe an integration type
|
||||
|
||||
$ gcloud alpha run integrations types describe [TYPE]
|
||||
|
||||
POSITIONAL ARGUMENTS
|
||||
TYPE
|
||||
Type of the integration.
|
||||
|
||||
FLAGS
|
||||
--region=REGION
|
||||
Region in which the resource can be found. Alternatively, set the
|
||||
property [run/region].
|
||||
|
||||
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.
|
||||
|
||||
42
gcloud/alpha/run/integrations/types/help
Normal file
42
gcloud/alpha/run/integrations/types/help
Normal file
|
|
@ -0,0 +1,42 @@
|
|||
NAME
|
||||
gcloud alpha run integrations types - view available Cloud Run
|
||||
(fully managed) integrations types
|
||||
|
||||
SYNOPSIS
|
||||
gcloud alpha run integrations types COMMAND [--region=REGION]
|
||||
[GCLOUD_WIDE_FLAG ...]
|
||||
|
||||
DESCRIPTION
|
||||
(ALPHA) This set of commands can be used to view Cloud Run integrations
|
||||
types.
|
||||
|
||||
EXAMPLES
|
||||
To list available integrations types, run:
|
||||
|
||||
$ gcloud alpha run integrations types list
|
||||
|
||||
FLAGS
|
||||
--region=REGION
|
||||
Region in which the resource can be found. Alternatively, set the
|
||||
property [run/region].
|
||||
|
||||
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 a Cloud Run Integration.
|
||||
|
||||
list
|
||||
(ALPHA) Lists Cloud Run Integration Types.
|
||||
|
||||
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.
|
||||
|
||||
68
gcloud/alpha/run/integrations/types/list
Normal file
68
gcloud/alpha/run/integrations/types/list
Normal file
|
|
@ -0,0 +1,68 @@
|
|||
NAME
|
||||
gcloud alpha run integrations types list - lists Cloud Run Integration
|
||||
Types
|
||||
|
||||
SYNOPSIS
|
||||
gcloud alpha run integrations types list [--region=REGION]
|
||||
[--filter=EXPRESSION] [--limit=LIMIT] [--page-size=PAGE_SIZE]
|
||||
[--sort-by=[FIELD,...]] [--uri] [GCLOUD_WIDE_FLAG ...]
|
||||
|
||||
DESCRIPTION
|
||||
(ALPHA) Lists Cloud Run Integration Types.
|
||||
|
||||
EXAMPLES
|
||||
To list all integration types
|
||||
|
||||
$ gcloud alpha run integrations types list
|
||||
|
||||
FLAGS
|
||||
--region=REGION
|
||||
Region in which the resource can be found. Alternatively, set the
|
||||
property [run/region].
|
||||
|
||||
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.
|
||||
|
||||
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.
|
||||
|
||||
54
gcloud/alpha/run/integrations/update
Normal file
54
gcloud/alpha/run/integrations/update
Normal file
|
|
@ -0,0 +1,54 @@
|
|||
NAME
|
||||
gcloud alpha run integrations update - update a Cloud Run Integration
|
||||
|
||||
SYNOPSIS
|
||||
gcloud alpha run integrations update NAME
|
||||
[--parameters=[PARAMETER=VALUE,...]] [--region=REGION]
|
||||
[--add-service=ADD_SERVICE | --remove-service=REMOVE_SERVICE]
|
||||
[GCLOUD_WIDE_FLAG ...]
|
||||
|
||||
DESCRIPTION
|
||||
(ALPHA) Update a Cloud Run Integration.
|
||||
|
||||
EXAMPLES
|
||||
To update a redis integration to change the cache size
|
||||
|
||||
$ gcloud alpha run integrations update redis-integration \
|
||||
--parameters=memory-size-gb=5
|
||||
|
||||
POSITIONAL ARGUMENTS
|
||||
NAME
|
||||
Name of the integration.
|
||||
|
||||
FLAGS
|
||||
--parameters=[PARAMETER=VALUE,...]
|
||||
Comma-separated list of parameter names and values. Names must be one
|
||||
of the parameters shown when describing the integration type. Only
|
||||
simple values can be specified with this flag.
|
||||
|
||||
--region=REGION
|
||||
Region in which the resource can be found. Alternatively, set the
|
||||
property [run/region].
|
||||
|
||||
At most one of these can be specified:
|
||||
|
||||
--add-service=ADD_SERVICE
|
||||
Name of the Cloud Run service to attach to the integration.
|
||||
|
||||
--remove-service=REMOVE_SERVICE
|
||||
Name of the Cloud Run service to remove from the integration.
|
||||
|
||||
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