Class: Google::Apis::DatacatalogV1beta1::GoogleCloudDatacatalogV1beta1BigQueryTableSpec

Inherits:
Object
  • Object
show all
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

Describes a BigQuery table.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudDatacatalogV1beta1BigQueryTableSpec

Returns a new instance of GoogleCloudDatacatalogV1beta1BigQueryTableSpec.



2187
2188
2189
# File 'lib/google/apis/datacatalog_v1beta1/classes.rb', line 2187

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

Instance Attribute Details

#table_source_typeString

Output only. The table source type. Corresponds to the JSON property tableSourceType

Returns:

  • (String)


2175
2176
2177
# File 'lib/google/apis/datacatalog_v1beta1/classes.rb', line 2175

def table_source_type
  @table_source_type
end

#table_specGoogle::Apis::DatacatalogV1beta1::GoogleCloudDatacatalogV1beta1TableSpec

Normal BigQuery table spec. Corresponds to the JSON property tableSpec



2180
2181
2182
# File 'lib/google/apis/datacatalog_v1beta1/classes.rb', line 2180

def table_spec
  @table_spec
end

#view_specGoogle::Apis::DatacatalogV1beta1::GoogleCloudDatacatalogV1beta1ViewSpec

Table view specification. Corresponds to the JSON property viewSpec



2185
2186
2187
# File 'lib/google/apis/datacatalog_v1beta1/classes.rb', line 2185

def view_spec
  @view_spec
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2192
2193
2194
2195
2196
# File 'lib/google/apis/datacatalog_v1beta1/classes.rb', line 2192

def update!(**args)
  @table_source_type = args[:table_source_type] if args.key?(:table_source_type)
  @table_spec = args[:table_spec] if args.key?(:table_spec)
  @view_spec = args[:view_spec] if args.key?(:view_spec)
end