mirror of
https://github.com/imjasonh/gcloud-help
synced 2026-07-08 10:35:03 +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
|
|
@ -6,9 +6,10 @@ SYNOPSIS
|
|||
--scan-type=SCAN_TYPE
|
||||
(--data-source-entity=DATA_SOURCE_ENTITY
|
||||
| --data-source-resource=DATA_SOURCE_RESOURCE)
|
||||
[--data-quality-spec-file=DATA_QUALITY_SPEC_FILE]
|
||||
[--description=DESCRIPTION] [--display-name=DISPLAY_NAME]
|
||||
[--labels=[KEY=VALUE,...]] [--async | --validate-only]
|
||||
[--data-profile-spec-file=DATA_PROFILE_SPEC_FILE
|
||||
| --data-quality-spec-file=DATA_QUALITY_SPEC_FILE]
|
||||
[--field=FIELD --on-demand=ON_DEMAND --schedule=SCHEDULE]
|
||||
[GCLOUD_WIDE_FLAG ...]
|
||||
|
||||
|
|
@ -76,14 +77,6 @@ REQUIRED FLAGS
|
|||
//bigquery.googleapis.com/projects/{project_number}/datasets/{dataset_id}/tables/{table_id}.
|
||||
|
||||
OPTIONAL FLAGS
|
||||
Additional configuration arguments for the scan.
|
||||
|
||||
DataQualityScan related setting.
|
||||
|
||||
--data-quality-spec-file=DATA_QUALITY_SPEC_FILE
|
||||
path to the JSON file containing the Data Quality Spec for the Data
|
||||
Quality Scan
|
||||
|
||||
--description=DESCRIPTION
|
||||
Description of the Datascan
|
||||
|
||||
|
|
@ -109,6 +102,22 @@ OPTIONAL FLAGS
|
|||
--validate-only
|
||||
Validate the create action, but don't actually perform it.
|
||||
|
||||
Additional configuration arguments for the scan.
|
||||
|
||||
At most one of these can be specified:
|
||||
|
||||
DataProfileScan related setting.
|
||||
|
||||
--data-profile-spec-file=DATA_PROFILE_SPEC_FILE
|
||||
path to the JSON file containing the Data Profile Spec for the Data
|
||||
Profile Scan
|
||||
|
||||
DataQualityScan related setting.
|
||||
|
||||
--data-quality-spec-file=DATA_QUALITY_SPEC_FILE
|
||||
path to the JSON file containing the Data Quality Spec for the Data
|
||||
Quality Scan
|
||||
|
||||
Datascan execution settings. If not specified, the fields under it will
|
||||
use their default values.
|
||||
|
||||
|
|
|
|||
|
|
@ -42,6 +42,9 @@ COMMANDS
|
|||
remove-iam-policy-binding
|
||||
(ALPHA) Remove IAM policy binding from a Dataplex task resource.
|
||||
|
||||
run
|
||||
(ALPHA) Trigger one-time run of a Dataplex task.
|
||||
|
||||
set-iam-policy
|
||||
(ALPHA) Set the IAM policy to a Dataplex task as defined in a JSON or
|
||||
YAML file.
|
||||
|
|
|
|||
90
gcloud/alpha/dataplex/tasks/run
Normal file
90
gcloud/alpha/dataplex/tasks/run
Normal file
|
|
@ -0,0 +1,90 @@
|
|||
NAME
|
||||
gcloud alpha dataplex tasks run - trigger one-time run of a Dataplex task
|
||||
|
||||
SYNOPSIS
|
||||
gcloud alpha dataplex tasks run (TASK : --lake=LAKE --location=LOCATION)
|
||||
[--labels=[KEY=VALUE,...]] [GCLOUD_WIDE_FLAG ...]
|
||||
[-- execution-spec-args ...]
|
||||
|
||||
DESCRIPTION
|
||||
(ALPHA) 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 alpha 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 command is currently in alpha and might change without notice. If this
|
||||
command fails with API permission errors despite specifying the correct
|
||||
project, you might be trying to access an API with an invitation-only early
|
||||
access allowlist. This variant is also available:
|
||||
|
||||
$ gcloud dataplex tasks run
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue