1
0
Fork 0
mirror of https://github.com/imjasonh/gcloud-help synced 2026-07-18 14:56:05 +00:00

gcloud: Wed Jul 13 09:59:37 UTC 2022

This commit is contained in:
Automated 2022-07-13 09:59:38 +00:00
parent cf5ab60e4a
commit 879929cbc6
Failed to extract signature
323 changed files with 7203 additions and 4178 deletions

View file

@ -5,8 +5,8 @@ NAME
SYNOPSIS
gcloud beta datastream connection-profiles create
(CONNECTION_PROFILE : --location=LOCATION) --display-name=DISPLAY_NAME
--type=TYPE
([--bucket-name=BUCKET_NAME : --root-path=ROOT_PATH]
--type=TYPE [--labels=[KEY=VALUE,...]]
[[--bucket-name=BUCKET_NAME : --root-path=ROOT_PATH]
| --database-service=DATABASE_SERVICE
--oracle-hostname=ORACLE_HOSTNAME --oracle-port=ORACLE_PORT
--oracle-username=ORACLE_USERNAME (--oracle-password=ORACLE_PASSWORD
@ -14,8 +14,7 @@ SYNOPSIS
--mysql-port=MYSQL_PORT
--mysql-username=MYSQL_USERNAME (--mysql-password=MYSQL_PASSWORD
| --mysql-prompt-for-password) : --ca-certificate=CA_CERTIFICATE
--client-certificate=CLIENT_CERTIFICATE --client-key=CLIENT_KEY])
[--labels=[KEY=VALUE,...]]
--client-certificate=CLIENT_CERTIFICATE --client-key=CLIENT_KEY]]
[--private-connection-name=PRIVATE_CONNECTION_NAME : --no-connectivity
| --static-ip-connectivity
| [--forward-ssh-hostname=FORWARD_SSH_HOSTNAME
@ -89,9 +88,18 @@ REQUIRED FLAGS
Friendly name for the connection profile.
--type=TYPE
Type can be MYSQL, ORACLE or GOOGLE-CLOUD-STORAGE
Type can be MYSQL, ORACLE, GOOGLE-CLOUD-STORAGE or BIGQUERY
Exactly one of these must be specified:
OPTIONAL 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.
At most one of these can be specified:
--bucket-name=BUCKET_NAME
The full project and resource path for Cloud Storage bucket including
@ -187,15 +195,6 @@ REQUIRED FLAGS
This flag must be specified if any of the other arguments in this
group are specified.
OPTIONAL 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.
At most one of these can be specified:
Private connection resource - Resource ID of the private connection.

View file

@ -87,7 +87,7 @@ POSITIONAL ARGUMENTS
REQUIRED FLAGS
--type=TYPE
Type can be MYSQL, ORACLE or GOOGLE-CLOUD-STORAGE
Type can be MYSQL, ORACLE, GOOGLE-CLOUD-STORAGE or BIGQUERY
OPTIONAL FLAGS
--display-name=DISPLAY_NAME

View file

@ -8,7 +8,8 @@ SYNOPSIS
| --backfill-all --mysql-excluded-objects=MYSQL_EXCLUDED_OBJECTS
| --oracle-excluded-objects=ORACLE_EXCLUDED_OBJECTS)
(--destination-name=DESTINATION_NAME
--gcs-destination-config=GCS_DESTINATION_CONFIG)
(--bigquery-destination-config=BIGQUERY_DESTINATION_CONFIG
| --gcs-destination-config=GCS_DESTINATION_CONFIG))
(--source-name=SOURCE_NAME (--mysql-source-config=MYSQL_SOURCE_CONFIG
| --oracle-source-config=ORACLE_SOURCE_CONFIG))
[--labels=[KEY=VALUE,...]] [--force | --validate-only]
@ -108,21 +109,37 @@ REQUIRED FLAGS
connection_profile. To set the connection_profile attribute:
▫ provide the argument --destination-name on the command line.
--gcs-destination-config=GCS_DESTINATION_CONFIG
Path to a YAML (or JSON) file containing the configuration for Google
Cloud Storage Destination Config.
Exactly one of these must be specified:
The JSON file is formatted as follows:
--bigquery-destination-config=BIGQUERY_DESTINATION_CONFIG
Path to a YAML (or JSON) file containing the configuration for
Google BigQuery Destination Config.
{
"path": "some/path",
"file_rotation_mb":5,
"file_rotation_interval":"15s",
"avro_file_format": {}
}
The JSON file is formatted as follows:
This flag must be specified if any of the other arguments in this
group are specified.
{
"source_hierarchy_datasets": {
"dataset_template": {
"location": "us-central1",
"dataset_id_prefix": "my_prefix",
"kms_key_name": "projects/{project}/locations/{location}/keyRings/{key_ring}/cryptoKeys/{cryptoKey}"
}
},
"data_freshness": 3600
}
--gcs-destination-config=GCS_DESTINATION_CONFIG
Path to a YAML (or JSON) file containing the configuration for
Google Cloud Storage Destination Config.
The JSON file is formatted as follows:
{
"path": "some/path",
"file_rotation_mb":5,
"file_rotation_interval":"15s",
"avro_file_format": {}
}
This must be specified.

View file

@ -10,7 +10,8 @@ SYNOPSIS
| --oracle-excluded-objects=ORACLE_EXCLUDED_OBJECTS]
[--clear-labels | --remove-labels=[KEY,...]]
[--destination-name=DESTINATION_NAME
: --gcs-destination-config=GCS_DESTINATION_CONFIG]
: --bigquery-destination-config=BIGQUERY_DESTINATION_CONFIG
| --gcs-destination-config=GCS_DESTINATION_CONFIG]
[--force | --validate-only]
[--source-name=SOURCE_NAME : --mysql-source-config=MYSQL_SOURCE_CONFIG
| --oracle-source-config=ORACLE_SOURCE_CONFIG] [GCLOUD_WIDE_FLAG ...]
@ -144,18 +145,37 @@ FLAGS
connection_profile. To set the connection_profile attribute:
▸ provide the argument --destination-name on the command line.
--gcs-destination-config=GCS_DESTINATION_CONFIG
Path to a YAML (or JSON) file containing the configuration for Google
Cloud Storage Destination Config.
At most one of these can be specified:
The JSON file is formatted as follows:
--bigquery-destination-config=BIGQUERY_DESTINATION_CONFIG
Path to a YAML (or JSON) file containing the configuration for Google
BigQuery Destination Config.
{
"path": "some/path",
"file_rotation_mb":5,
"file_rotation_interval":"15s",
"avro_file_format": {}
}
The JSON file is formatted as follows:
{
"source_hierarchy_datasets": {
"dataset_template": {
"location": "us-central1",
"dataset_id_prefix": "my_prefix",
"kms_key_name": "projects/{project}/locations/{location}/keyRings/{key_ring}/cryptoKeys/{cryptoKey}"
}
},
"data_freshness": 3600
}
--gcs-destination-config=GCS_DESTINATION_CONFIG
Path to a YAML (or JSON) file containing the configuration for Google
Cloud Storage Destination Config.
The JSON file is formatted as follows:
{
"path": "some/path",
"file_rotation_mb":5,
"file_rotation_interval":"15s",
"avro_file_format": {}
}
At most one of these can be specified: