mirror of
https://github.com/ansible-collections/google.cloud.git
synced 2025-07-27 15:11:33 -07:00
BigQuery: table clustering/partitioning support. (#347)
Signed-off-by: Modular Magician <magic-modules@google.com>
This commit is contained in:
parent
f494ff4841
commit
92917e2b2d
2 changed files with 84 additions and 3 deletions
|
@ -86,6 +86,14 @@ resources:
|
|||
- The ID of the the table.
|
||||
returned: success
|
||||
type: str
|
||||
clustering:
|
||||
description:
|
||||
- One or more fields on which data should be clustered. Only top-level, non-repeated,
|
||||
simple-type fields are supported. When you cluster a table using multiple
|
||||
columns, the order of columns you specify is important. The order of the specified
|
||||
columns determines the sort order of the data.
|
||||
returned: success
|
||||
type: list
|
||||
creationTime:
|
||||
description:
|
||||
- The time when this dataset was created, in milliseconds since the epoch.
|
||||
|
@ -144,6 +152,12 @@ resources:
|
|||
buffer.
|
||||
returned: success
|
||||
type: int
|
||||
requirePartitionFilter:
|
||||
description:
|
||||
- If set to true, queries over this table require a partition filter that can
|
||||
be used for partition elimination to be specified.
|
||||
returned: success
|
||||
type: bool
|
||||
type:
|
||||
description:
|
||||
- Describes the table type.
|
||||
|
@ -189,6 +203,15 @@ resources:
|
|||
- Number of milliseconds for which to keep the storage for a partition.
|
||||
returned: success
|
||||
type: int
|
||||
field:
|
||||
description:
|
||||
- If not set, the table is partitioned by pseudo column, referenced via
|
||||
either '_PARTITIONTIME' as TIMESTAMP type, or '_PARTITIONDATE' as DATE
|
||||
type. If field is specified, the table is instead partitioned by this
|
||||
field. The field must be a top-level TIMESTAMP or DATE field. Its mode
|
||||
must be NULLABLE or REQUIRED.
|
||||
returned: success
|
||||
type: str
|
||||
type:
|
||||
description:
|
||||
- The only type supported is DAY, which will generate one partition per
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue