1
0
Fork 0
mirror of https://github.com/imjasonh/gcloud-help synced 2026-07-16 20:36:39 +00:00

gcloud: Wed Sep 20 10:45:25 UTC 2023

This commit is contained in:
Automated 2023-09-20 10:45:25 +00:00
parent 952686eb78
commit 54eca12593
183 changed files with 2246 additions and 4040 deletions

View file

@ -112,13 +112,79 @@ FLAGS
At most one of these can be specified:
--mysql-excluded-objects=MYSQL_EXCLUDED_OBJECTS
MySQL data source objects to avoid backfilling.
Path to a YAML (or JSON) file containing the MySQL data sources to
avoid backfilling.
The JSON file is formatted as follows, with camelCase field naming:
{
"mysqlDatabases": [
{
"database":"sample_database",
"mysqlTables": [
{
"table": "sample_table",
"mysqlColumns": [
{
"column": "sample_column",
}
]
}
]
}
]
}
}
--oracle-excluded-objects=ORACLE_EXCLUDED_OBJECTS
Oracle data source objects to avoid backfilling.
Path to a YAML (or JSON) file containing the Oracle data sources to
avoid backfilling.
The JSON file is formatted as follows, with camelCase field naming:
{
"oracleSchemas": [
{
"schema": "SAMPLE",
"oracleTables": [
{
"table": "SAMPLE_TABLE",
"oracleColumns": [
{
"column": "COL",
}
]
}
]
}
]
}
}
--postgresql-excluded-objects=POSTGRESQL_EXCLUDED_OBJECTS
PostgreSQL data source objects to avoid backfilling.
Path to a YAML (or JSON) file containing the PostgreSQL data
sources to avoid backfilling.
The JSON file is formatted as follows, with camelCase field naming:
{
"postgresqlSchemas": [
{
"schema": "SAMPLE",
"postgresqlTables": [
{
"table": "SAMPLE_TABLE",
"postgresqlColumns": [
{
"column": "COL",
}
]
}
]
}
]
}
}
At most one of these can be specified: