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

gcloud: Wed Feb 15 10:13:15 UTC 2023

This commit is contained in:
Automated 2023-02-15 10:13:15 +00:00
parent 02b395b082
commit 78fb6d9419
375 changed files with 5899 additions and 1603 deletions

View file

@ -123,14 +123,14 @@ REQUIRED FLAGS
The JSON file is formatted as follows:
{
"source_hierarchy_datasets": {
"dataset_template": {
"sourceHierarchyDatasets": {
"datasetTemplate": {
"location": "us-central1",
"dataset_id_prefix": "my_prefix",
"kms_key_name": "projects/{project}/locations/{location}/keyRings/{key_ring}/cryptoKeys/{cryptoKey}"
"datasetIdPrefix": "my_prefix",
"kmsKeyName": "projects/{project}/locations/{location}/keyRings/{key_ring}/cryptoKeys/{cryptoKey}"
}
},
"data_freshness": 3600
"dataFreshness": 3600
}
--gcs-destination-config=GCS_DESTINATION_CONFIG
@ -141,9 +141,9 @@ REQUIRED FLAGS
{
"path": "some/path",
"file_rotation_mb":5,
"file_rotation_interval":"15s",
"avro_file_format": {}
"fileRotationMb":5,
"fileRotationInterval":"15s",
"avroFileFormat": {}
}
This must be specified.
@ -229,19 +229,18 @@ REQUIRED FLAGS
Path to a YAML (or JSON) file containing the configuration for
PostgreSQL Source Config.
The JSON file is formatted as follows, with snake_case field
naming:
The JSON file is formatted as follows, with camelCase field naming:
{
"include_objects": {},
"exclude_objects": {
"postgresql_schemas": [
"includeObjects": {},
"excludeObjects": {
"postgresqlSchemas": [
{
"schema": "SAMPLE",
"postgresql_tables": [
"postgresqlTables": [
{
"table": "SAMPLE_TABLE",
"postgresql_columns": [
"postgresqlColumns": [
{
"column": "COL",
}
@ -251,7 +250,7 @@ REQUIRED FLAGS
}
]
},
"replication_slot": "SAMPLE_REPLICATION_SLOT",
"replicationSlot": "SAMPLE_REPLICATION_SLOT",
"publication": "SAMPLE_PUBLICATION"
}