mirror of
https://github.com/imjasonh/gcloud-help
synced 2026-07-08 02:25:19 +00:00
gcloud: Wed May 8 09:17:12 UTC 2024
This commit is contained in:
parent
48fac7efd4
commit
e8259d86b1
110 changed files with 1686 additions and 651 deletions
|
|
@ -36,6 +36,9 @@ GROUPS
|
|||
sql
|
||||
A group of subcommands for working with Dataflow SQL.
|
||||
|
||||
yaml
|
||||
A group of subcommands for launching Beam YAML jobs on Dataflow.
|
||||
|
||||
NOTES
|
||||
These variants are also available:
|
||||
|
||||
|
|
|
|||
26
gcloud/dataflow/yaml/help
Normal file
26
gcloud/dataflow/yaml/help
Normal file
|
|
@ -0,0 +1,26 @@
|
|||
NAME
|
||||
gcloud dataflow yaml - a group of subcommands for launching Beam YAML jobs
|
||||
on Dataflow
|
||||
|
||||
SYNOPSIS
|
||||
gcloud dataflow yaml COMMAND [GCLOUD_WIDE_FLAG ...]
|
||||
|
||||
DESCRIPTION
|
||||
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
|
||||
Runs a job from the specified path.
|
||||
|
||||
NOTES
|
||||
This variant is also available:
|
||||
|
||||
$ gcloud beta dataflow yaml
|
||||
|
||||
53
gcloud/dataflow/yaml/run
Normal file
53
gcloud/dataflow/yaml/run
Normal file
|
|
@ -0,0 +1,53 @@
|
|||
NAME
|
||||
gcloud dataflow yaml run - runs a job from the specified path
|
||||
|
||||
SYNOPSIS
|
||||
gcloud 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
|
||||
Runs a job from the specified YAML description or Cloud Storage path.
|
||||
|
||||
EXAMPLES
|
||||
To run a job from YAML, run:
|
||||
|
||||
$ gcloud 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 variant is also available:
|
||||
|
||||
$ gcloud beta dataflow yaml run
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue