1
0
Fork 0
mirror of https://github.com/imjasonh/gcloud-help synced 2026-07-08 02:25:19 +00:00

gcloud: Wed Dec 11 10:18:23 UTC 2024

This commit is contained in:
Automated 2024-12-11 10:18:23 +00:00
parent ad2752c6c9
commit ec6dc40f99
493 changed files with 17655 additions and 1753 deletions

View file

@ -6,7 +6,7 @@ SYNOPSIS
gcloud eventarc channel-connections create
(CHANNEL_CONNECTION : --location=LOCATION)
--activation-token=ACTIVATION_TOKEN --channel=CHANNEL [--async]
[GCLOUD_WIDE_FLAG ...]
[--labels=[KEY=VALUE,...]] [GCLOUD_WIDE_FLAG ...]
DESCRIPTION
Create an Eventarc channel connection.
@ -67,6 +67,9 @@ OPTIONAL FLAGS
Return immediately, without waiting for the operation in progress to
complete.
--labels=[KEY=VALUE,...]
Labels to apply to the channel connection.
GCLOUD WIDE FLAGS
These flags are available to all commands: --access-token-file, --account,
--billing-project, --configuration, --flags-file, --flatten, --format,

View file

@ -3,7 +3,8 @@ NAME
SYNOPSIS
gcloud eventarc channels create (CHANNEL : --location=LOCATION) [--async]
[--crypto-key=CRYPTO_KEY] [--provider=PROVIDER] [GCLOUD_WIDE_FLAG ...]
[--crypto-key=CRYPTO_KEY] [--labels=[KEY=VALUE,...]]
[--provider=PROVIDER] [GCLOUD_WIDE_FLAG ...]
DESCRIPTION
Create an Eventarc channel.
@ -64,6 +65,14 @@ FLAGS
encryption. If this is unspecified, Google-managed keys will be used
for encryption.
--labels=[KEY=VALUE,...]
List of label KEY=VALUE pairs to add.
Keys must start with a lowercase character and contain only hyphens
(-), underscores (_), lowercase characters, and numbers. Values must
contain only hyphens (-), underscores (_), lowercase characters, and
numbers.
Provider resource - Provider to use for the channel. This represents a
Cloud resource. (NOTE) Some attributes are not given arguments in this
group but can be set in other ways.

View file

@ -3,7 +3,9 @@ NAME
SYNOPSIS
gcloud eventarc channels update (CHANNEL : --location=LOCATION) [--async]
[--clear-crypto-key | --crypto-key=CRYPTO_KEY] [GCLOUD_WIDE_FLAG ...]
[--update-labels=[KEY=VALUE,...]]
[--clear-crypto-key | --crypto-key=CRYPTO_KEY]
[--clear-labels | --remove-labels=[KEY,...]] [GCLOUD_WIDE_FLAG ...]
DESCRIPTION
Update an Eventarc channel.
@ -59,6 +61,15 @@ FLAGS
Return immediately, without waiting for the operation in progress to
complete.
--update-labels=[KEY=VALUE,...]
List of label KEY=VALUE pairs to update. If a label exists, its value
is modified. Otherwise, a new label is created.
Keys must start with a lowercase character and contain only hyphens
(-), underscores (_), lowercase characters, and numbers. Values must
contain only hyphens (-), underscores (_), lowercase characters, and
numbers.
At most one of these can be specified:
--clear-crypto-key
@ -70,6 +81,26 @@ FLAGS
encryption. If this is unspecified, Google-managed keys will be used
for encryption.
At most one of these can be specified:
--clear-labels
Remove all labels. If --update-labels is also specified then
--clear-labels is applied first.
For example, to remove all labels:
$ gcloud eventarc channels update --clear-labels
To remove all existing labels and create two new labels, foo and baz:
$ gcloud eventarc channels update --clear-labels \
--update-labels foo=bar,baz=qux
--remove-labels=[KEY,...]
List of label keys to remove. If a label does not exist it is
silently ignored. If --update-labels is also specified then
--update-labels is applied first.
GCLOUD WIDE FLAGS
These flags are available to all commands: --access-token-file, --account,
--billing-project, --configuration, --flags-file, --flatten, --format,

View file

@ -184,7 +184,12 @@ OPTIONAL FLAGS
resourceName attribute for Cloud Audit Log events.
--labels=[KEY=VALUE,...]
Labels to apply to the trigger.
List of label KEY=VALUE pairs to add.
Keys must start with a lowercase character and contain only hyphens
(-), underscores (_), lowercase characters, and numbers. Values must
contain only hyphens (-), underscores (_), lowercase characters, and
numbers.
--service-account=SERVICE_ACCOUNT
The IAM service account email associated with the trigger.

View file

@ -6,7 +6,8 @@ SYNOPSIS
[--event-data-content-type=EVENT_DATA_CONTENT_TYPE]
[--event-filters=[ATTRIBUTE=VALUE,...]]
[--event-filters-path-pattern=[ATTRIBUTE=PATH_PATTERN,...]]
[--labels=[KEY=VALUE,...]]
[--update-labels=[KEY=VALUE,...]]
[--clear-labels | --remove-labels=[KEY,...]]
[--clear-service-account | --service-account=SERVICE_ACCOUNT]
[--destination-gke-namespace=DESTINATION_GKE_NAMESPACE
--destination-gke-service=DESTINATION_GKE_SERVICE
@ -87,8 +88,34 @@ FLAGS
destination. Currently, path pattern format is only available for the
resourceName attribute for Cloud Audit Log events.
--labels=[KEY=VALUE,...]
Labels to apply to the trigger.
--update-labels=[KEY=VALUE,...]
List of label KEY=VALUE pairs to update. If a label exists, its value
is modified. Otherwise, a new label is created.
Keys must start with a lowercase character and contain only hyphens
(-), underscores (_), lowercase characters, and numbers. Values must
contain only hyphens (-), underscores (_), lowercase characters, and
numbers.
At most one of these can be specified:
--clear-labels
Remove all labels. If --update-labels is also specified then
--clear-labels is applied first.
For example, to remove all labels:
$ gcloud eventarc triggers update --clear-labels
To remove all existing labels and create two new labels, foo and baz:
$ gcloud eventarc triggers update --clear-labels \
--update-labels foo=bar,baz=qux
--remove-labels=[KEY,...]
List of label keys to remove. If a label does not exist it is
silently ignored. If --update-labels is also specified then
--update-labels is applied first.
At most one of these can be specified: