Class: Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1DatabaseTableSpecDatabaseViewSpec

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/datacatalog_v1/classes.rb,
lib/google/apis/datacatalog_v1/representations.rb,
lib/google/apis/datacatalog_v1/representations.rb

Overview

Specification that applies to database view.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudDatacatalogV1DatabaseTableSpecDatabaseViewSpec

Returns a new instance of GoogleCloudDatacatalogV1DatabaseTableSpecDatabaseViewSpec.



793
794
795
# File 'lib/google/apis/datacatalog_v1/classes.rb', line 793

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

Instance Attribute Details

#base_tableString

Name of a singular table this view reflects one to one. Corresponds to the JSON property baseTable

Returns:

  • (String)


781
782
783
# File 'lib/google/apis/datacatalog_v1/classes.rb', line 781

def base_table
  @base_table
end

#sql_queryString

SQL query used to generate this view. Corresponds to the JSON property sqlQuery

Returns:

  • (String)


786
787
788
# File 'lib/google/apis/datacatalog_v1/classes.rb', line 786

def sql_query
  @sql_query
end

#view_typeString

Type of this view. Corresponds to the JSON property viewType

Returns:

  • (String)


791
792
793
# File 'lib/google/apis/datacatalog_v1/classes.rb', line 791

def view_type
  @view_type
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



798
799
800
801
802
# File 'lib/google/apis/datacatalog_v1/classes.rb', line 798

def update!(**args)
  @base_table = args[:base_table] if args.key?(:base_table)
  @sql_query = args[:sql_query] if args.key?(:sql_query)
  @view_type = args[:view_type] if args.key?(:view_type)
end