mirror of
https://github.com/imjasonh/gcloud-help
synced 2026-07-09 02:55:19 +00:00
gcloud: Wed Jan 31 10:36:17 UTC 2024
This commit is contained in:
parent
7a546ffea4
commit
fa6c1dc7ec
142 changed files with 1981 additions and 793 deletions
|
|
@ -43,6 +43,9 @@ GROUPS
|
|||
sql
|
||||
(BETA) A group of subcommands for working with Dataflow SQL.
|
||||
|
||||
yaml
|
||||
(BETA) A group of subcommands for launching beam yaml jobs on Dataflow.
|
||||
|
||||
NOTES
|
||||
This command is currently in beta and might change without notice. These
|
||||
variants are also available:
|
||||
|
|
|
|||
24
gcloud/beta/dataflow/yaml/help
Normal file
24
gcloud/beta/dataflow/yaml/help
Normal file
|
|
@ -0,0 +1,24 @@
|
|||
NAME
|
||||
gcloud beta dataflow yaml - a group of subcommands for launching beam yaml
|
||||
jobs on Dataflow
|
||||
|
||||
SYNOPSIS
|
||||
gcloud beta dataflow yaml COMMAND [GCLOUD_WIDE_FLAG ...]
|
||||
|
||||
DESCRIPTION
|
||||
(BETA) A group of subcommands for launching beam yaml jobs on Dataflow.
|
||||
|
||||
GCLOUD WIDE FLAGS
|
||||
These flags are available to all commands: --help.
|
||||
|
||||
Run $ gcloud help for details.
|
||||
|
||||
COMMANDS
|
||||
COMMAND is one of the following:
|
||||
|
||||
run
|
||||
(BETA) Runs a job from the specified path.
|
||||
|
||||
NOTES
|
||||
This command is currently in beta and might change without notice.
|
||||
|
||||
51
gcloud/beta/dataflow/yaml/run
Normal file
51
gcloud/beta/dataflow/yaml/run
Normal file
|
|
@ -0,0 +1,51 @@
|
|||
NAME
|
||||
gcloud beta dataflow yaml run - runs a job from the specified path
|
||||
|
||||
SYNOPSIS
|
||||
gcloud beta dataflow yaml run JOB_NAME
|
||||
(--yaml-pipeline=YAML_PIPELINE
|
||||
| --yaml-pipeline-file=YAML_PIPELINE_FILE)
|
||||
[--pipeline-options=[OPTIONS=VALUE;OPTION=VALUE,...]]
|
||||
[--region=REGION_ID] [GCLOUD_WIDE_FLAG ...]
|
||||
|
||||
DESCRIPTION
|
||||
(BETA) Runs a job from the specified yaml description or gcs path.
|
||||
|
||||
EXAMPLES
|
||||
To run a job from yaml, run:
|
||||
|
||||
$ gcloud beta dataflow yaml run my-job \
|
||||
--yaml-pipeline-file=gs://yaml-path --region=europe-west1
|
||||
|
||||
POSITIONAL ARGUMENTS
|
||||
JOB_NAME
|
||||
Unique name to assign to the job.
|
||||
|
||||
REQUIRED FLAGS
|
||||
Exactly one of these must be specified:
|
||||
|
||||
--yaml-pipeline=YAML_PIPELINE
|
||||
Inline definition of the yaml pipeline to run.
|
||||
|
||||
--yaml-pipeline-file=YAML_PIPELINE_FILE
|
||||
Path of a file defining the yaml pipeline to run. (Must be a local
|
||||
file or a URL beginning with 'gs://'.)
|
||||
|
||||
OPTIONAL FLAGS
|
||||
--pipeline-options=[OPTIONS=VALUE;OPTION=VALUE,...]
|
||||
Pipeline options to pass to the job.
|
||||
|
||||
--region=REGION_ID
|
||||
Region ID of the job's regional endpoint. Defaults to 'us-central1'.
|
||||
|
||||
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 beta and might change without notice.
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue