Class: Google::Apis::DatacatalogV1beta1::GoogleCloudDatacatalogV1beta1BigQueryDateShardedSpec

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/datacatalog_v1beta1/classes.rb,
generated/google/apis/datacatalog_v1beta1/representations.rb,
generated/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

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudDatacatalogV1beta1BigQueryDateShardedSpec

Returns a new instance of GoogleCloudDatacatalogV1beta1BigQueryDateShardedSpec.



236
237
238
# File 'generated/google/apis/datacatalog_v1beta1/classes.rb', line 236

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#datasetString

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 propertydataset`

Returns:

  • (String)


222
223
224
# File 'generated/google/apis/datacatalog_v1beta1/classes.rb', line 222

def dataset
  @dataset
end

#shard_countFixnum

Output only. Total number of shards. Corresponds to the JSON property shardCount

Returns:

  • (Fixnum)


227
228
229
# File 'generated/google/apis/datacatalog_v1beta1/classes.rb', line 227

def shard_count
  @shard_count
end

#table_prefixString

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

Returns:

  • (String)


234
235
236
# File 'generated/google/apis/datacatalog_v1beta1/classes.rb', line 234

def table_prefix
  @table_prefix
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



241
242
243
244
245
# File 'generated/google/apis/datacatalog_v1beta1/classes.rb', line 241

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