1
0
Fork 0
mirror of https://github.com/imjasonh/gcloud-help synced 2026-07-11 15:39:42 +00:00
gcloud-help/gcloud/dataplex/content/create

109 lines
3.5 KiB
Text
Raw Normal View History

2022-10-26 10:52:11 +00:00
NAME
gcloud dataplex content create - creating a content
SYNOPSIS
gcloud dataplex content create --data-text=DATA_TEXT --path=PATH
(--kernel-type=KERNEL_TYPE | --query-engine=QUERY_ENGINE)
(--lake=LAKE : --location=LOCATION) [--description=DESCRIPTION]
[--labels=[KEY=VALUE,...]] [--validate-only] [GCLOUD_WIDE_FLAG ...]
DESCRIPTION
Creating a content.
EXAMPLES
To create a Dataplex content test-content of type notebook within lake
test-lake in location us-central1.
$ gcloud dataplex content create --project=test-project \
--location=us-central1 --lake=test-lake --kernel-type=PYTHON3 \
--data-text='' --path='test-content'
REQUIRED FLAGS
--data-text=DATA_TEXT
Content data in string format
--path=PATH
The path for the Content file, represented as directory structure
Sql script or notebook related configurations.
Exactly one of these must be specified:
Notebook related configurations.
--kernel-type=KERNEL_TYPE
2023-03-15 11:22:01 +00:00
Kernel Type of the notebook. KERNEL_TYPE must be (only one value is
supported):
2022-10-26 10:52:11 +00:00
PYTHON3
python3
Sql script related configurations.
--query-engine=QUERY_ENGINE
Query Engine to be used for the Sql Query. QUERY_ENGINE must be
2023-03-15 11:22:01 +00:00
(only one value is supported):
2022-10-26 10:52:11 +00:00
SPARK
spark
Lakes resource - Arguments and flags that define the Dataplex lake you
want to create a Content to. The arguments in this group can be used to
specify the attributes of this resource. (NOTE) Some attributes are not
2023-05-04 10:43:54 +00:00
given arguments in this group but can be set in other ways.
To set the project attribute:
2022-10-26 10:52:11 +00:00
◆ provide the argument --lake 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.
--lake=LAKE
2023-05-04 10:43:54 +00:00
ID of the lakes or fully qualified identifier for the lakes.
To set the lake attribute:
2022-10-26 10:52:11 +00:00
▸ provide the argument --lake on the command line.
This flag argument must be specified if any of the other arguments in
this group are specified.
--location=LOCATION
2023-05-04 10:43:54 +00:00
The location of the Dataplex resource.
To set the location attribute:
2022-10-26 10:52:11 +00:00
▸ provide the argument --lake on the command line with a fully
specified name;
▸ provide the argument --location on the command line;
▸ set the property dataplex/location.
OPTIONAL FLAGS
--description=DESCRIPTION
Description of the Content
--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.
--validate-only
Validate the create action, but don't actually perform it.
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 content create