mirror of
https://github.com/imjasonh/gcloud-help
synced 2026-07-13 16:37:00 +00:00
gcloud: Thu Jun 22 10:31:35 UTC 2023
This commit is contained in:
parent
2102dc5511
commit
dc0d916cee
219 changed files with 5076 additions and 1639 deletions
|
|
@ -42,6 +42,9 @@ COMMANDS
|
|||
remove-iam-policy-binding
|
||||
Remove IAM policy binding from a Dataplex task resource.
|
||||
|
||||
run
|
||||
Trigger one-time run of a Dataplex task.
|
||||
|
||||
set-iam-policy
|
||||
Set the IAM policy to a Dataplex task as defined in a JSON or YAML
|
||||
file.
|
||||
|
|
|
|||
87
gcloud/dataplex/tasks/run
Normal file
87
gcloud/dataplex/tasks/run
Normal file
|
|
@ -0,0 +1,87 @@
|
|||
NAME
|
||||
gcloud dataplex tasks run - trigger one-time run of a Dataplex task
|
||||
|
||||
SYNOPSIS
|
||||
gcloud dataplex tasks run (TASK : --lake=LAKE --location=LOCATION)
|
||||
[--labels=[KEY=VALUE,...]] [GCLOUD_WIDE_FLAG ...]
|
||||
[-- execution-spec-args ...]
|
||||
|
||||
DESCRIPTION
|
||||
Trigger one-time run of a Dataplex task.
|
||||
|
||||
EXAMPLES
|
||||
To trigger a one-time run of a Dataplex task test-task within lake
|
||||
test-lake in location us-central1, run:
|
||||
|
||||
$ gcloud dataplex tasks run test-task --location=us-central1 \
|
||||
--lake=test-lake
|
||||
|
||||
POSITIONAL ARGUMENTS
|
||||
Tasks resource - Arguments and flags that define the Dataplex task you
|
||||
want to run. The arguments in this group can be used to specify the
|
||||
attributes of this resource. (NOTE) Some attributes are not given
|
||||
arguments in this group but can be set in other ways.
|
||||
|
||||
To set the project attribute:
|
||||
◆ provide the argument task on the command line with a fully specified
|
||||
name;
|
||||
◆ provide the argument --project on the command line;
|
||||
◆ set the property core/project.
|
||||
|
||||
This must be specified.
|
||||
|
||||
TASK
|
||||
ID of the tasks or fully qualified identifier for the tasks.
|
||||
|
||||
To set the task attribute:
|
||||
▸ provide the argument task on the command line.
|
||||
|
||||
This positional argument must be specified if any of the other
|
||||
arguments in this group are specified.
|
||||
|
||||
--lake=LAKE
|
||||
The identifier of the Dataplex lake resource.
|
||||
|
||||
To set the lake attribute:
|
||||
▸ provide the argument task on the command line with a fully
|
||||
specified name;
|
||||
▸ provide the argument --lake on the command line.
|
||||
|
||||
--location=LOCATION
|
||||
The location of the Dataplex resource.
|
||||
|
||||
To set the location attribute:
|
||||
▸ provide the argument task on the command line with a fully
|
||||
specified name;
|
||||
▸ provide the argument --location on the command line;
|
||||
▸ set the property dataplex/location.
|
||||
|
||||
[-- execution-spec-args ...]
|
||||
Execution spec arguments to pass to the driver. Follows the format
|
||||
argKey=argValue.
|
||||
|
||||
The '--' argument must be specified between gcloud specific args on the
|
||||
left and execution-spec-args on the right.
|
||||
|
||||
FLAGS
|
||||
--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,
|
||||
--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 alpha dataplex tasks run
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue