Class: Google::Apis::DatacatalogV1beta1::GoogleCloudDatacatalogV1beta1BigQueryDateShardedSpec
- Inherits:
-
Object
- Object
- Google::Apis::DatacatalogV1beta1::GoogleCloudDatacatalogV1beta1BigQueryDateShardedSpec
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/datacatalog_v1beta1/classes.rb,
lib/google/apis/datacatalog_v1beta1/representations.rb,
lib/google/apis/datacatalog_v1beta1/representations.rb
Overview
Spec for a group of BigQuery tables with name pattern [prefix]YYYYMMDD
.
Context: https://cloud.google.com/bigquery/docs/partitioned-tables#
partitioning_versus_sharding
Instance Attribute Summary collapse
-
#dataset ⇒ String
Output only.
-
#shard_count ⇒ Fixnum
Output only.
-
#table_prefix ⇒ String
Output only.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDatacatalogV1beta1BigQueryDateShardedSpec
constructor
A new instance of GoogleCloudDatacatalogV1beta1BigQueryDateShardedSpec.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDatacatalogV1beta1BigQueryDateShardedSpec
Returns a new instance of GoogleCloudDatacatalogV1beta1BigQueryDateShardedSpec.
2382 2383 2384 |
# File 'lib/google/apis/datacatalog_v1beta1/classes.rb', line 2382 def initialize(**args) update!(**args) end |
Instance Attribute Details
#dataset ⇒ String
Output only. The Data Catalog resource name of the dataset entry the current
table belongs to, for example, projects/
project_id/locations/
location/
entrygroups/
entry_group_id/entries/
entry_id`.
Corresponds to the JSON property
dataset`
2368 2369 2370 |
# File 'lib/google/apis/datacatalog_v1beta1/classes.rb', line 2368 def dataset @dataset end |
#shard_count ⇒ Fixnum
Output only. Total number of shards.
Corresponds to the JSON property shardCount
2373 2374 2375 |
# File 'lib/google/apis/datacatalog_v1beta1/classes.rb', line 2373 def shard_count @shard_count end |
#table_prefix ⇒ String
Output only. The table name prefix of the shards. The name of any given shard
is [table_prefix]YYYYMMDD
, for example, for shard MyTable20180101
, the
table_prefix
is MyTable
.
Corresponds to the JSON property tablePrefix
2380 2381 2382 |
# File 'lib/google/apis/datacatalog_v1beta1/classes.rb', line 2380 def table_prefix @table_prefix end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2387 2388 2389 2390 2391 |
# File 'lib/google/apis/datacatalog_v1beta1/classes.rb', line 2387 def update!(**args) @dataset = args[:dataset] if args.key?(:dataset) @shard_count = args[:shard_count] if args.key?(:shard_count) @table_prefix = args[:table_prefix] if args.key?(:table_prefix) end |