1
0
Fork 0
mirror of https://github.com/imjasonh/gcloud-help synced 2026-07-18 06:47:12 +00:00

gcloud: Wed Mar 8 10:34:05 UTC 2023

This commit is contained in:
Automated 2023-03-08 10:34:05 +00:00
parent bdaa0b3cfc
commit 29661f002c
111 changed files with 1800 additions and 704 deletions

View file

@ -4,7 +4,7 @@ NAME
SYNOPSIS
gcloud workflows execute (WORKFLOW : --location=LOCATION)
[--call-log-level=CALL_LOG_LEVEL; default="none"] [--data=DATA]
[GCLOUD_WIDE_FLAG ...]
[--labels=[LABELS,...]] [GCLOUD_WIDE_FLAG ...]
DESCRIPTION
Execute a workflow.
@ -64,6 +64,13 @@ FLAGS
JSON string with data that will be passed to the workflow as an
argument.
--labels=[LABELS,...]
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.
GCLOUD WIDE FLAGS
These flags are available to all commands: --access-token-file, --account,
--billing-project, --configuration, --flags-file, --flatten, --format,

View file

@ -5,7 +5,7 @@ NAME
SYNOPSIS
gcloud workflows run (WORKFLOW : --location=LOCATION)
[--call-log-level=CALL_LOG_LEVEL; default="none"] [--data=DATA]
[GCLOUD_WIDE_FLAG ...]
[--labels=[KEY=VALUE,...]] [GCLOUD_WIDE_FLAG ...]
DESCRIPTION
Execute a workflow and wait for the execution to complete.
@ -14,7 +14,12 @@ EXAMPLES
To execute a workflow named my-workflow with the data that will be passed
to the workflow, run:
$ gcloud workflows run my-workflow --data=my-data
$ gcloud workflows run my-workflow `--data=my-data`
To add two labels {foo: bar, baz: qux} to the execution, run:
$ gcloud workflows run my-workflow `--data=my-data` \
`--labels=foo=bar,baz=qux`
POSITIONAL ARGUMENTS
Workflow resource - Name of the workflow to execute. The arguments in this
@ -61,6 +66,14 @@ FLAGS
JSON string with data that will be passed to the workflow as an
argument.
--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.
GCLOUD WIDE FLAGS
These flags are available to all commands: --access-token-file, --account,
--billing-project, --configuration, --flags-file, --flatten, --format,