You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
help="[raise|replace|pass] actions if table config files already exist",
169
191
)
170
192
@click.option(
171
-
"--columns_config_url",
193
+
"--source_format",
194
+
default="csv",
195
+
help="Data source format. Only 'csv' is supported. Defaults to 'csv'.",
196
+
)
197
+
@click.option(
198
+
"--columns_config_url_or_path",
172
199
default=None,
173
200
help="google sheets URL. Must be in the format https://docs.google.com/spreadsheets/d/<table_key>/edit#gid=<table_gid>. The sheet must contain the column name: 'coluna' and column description: 'descricao'.",
help="[raise|replace|pass] actions if table config files already exist",
233
262
)
234
263
@click.option(
235
-
"--columns_config_url",
264
+
"--source_format",
265
+
default="csv",
266
+
help="Data source format. Only 'csv' is supported. Defaults to 'csv'.",
267
+
)
268
+
@click.option(
269
+
"--columns_config_url_or_path",
270
+
default=None,
271
+
help="Path to the local architeture file or a public google sheets URL. Path only suports csv, xls, xlsx, xlsm, xlsb, odf, ods, odt formats. Google sheets URL must be in the format https://docs.google.com/spreadsheets/d/<table_key>/edit#gid=<table_gid>.",
272
+
)
273
+
@click.option(
274
+
"--dataset_is_public",
275
+
default=True,
276
+
help="Control if prod dataset is public or not. By default staging datasets like `dataset_id_staging` are not public.",
277
+
)
278
+
@click.option(
279
+
"--location",
236
280
default=None,
237
-
help="google sheets URL. Must be in the format https://docs.google.com/spreadsheets/d/<table_key>/edit#gid=<table_gid>",
281
+
help="Location of dataset data. List of possible region names locations: https://cloud.google.com/bigquery/docs/locations",
0 commit comments