Class: Google::Apis::DatacatalogV1beta1::GoogleCloudDatacatalogV1DataplexTableSpec

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

Entry specification for a Dataplex table.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudDatacatalogV1DataplexTableSpec

Returns a new instance of GoogleCloudDatacatalogV1DataplexTableSpec.



809
810
811
# File 'lib/google/apis/datacatalog_v1beta1/classes.rb', line 809

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

Instance Attribute Details

#dataplex_specGoogle::Apis::DatacatalogV1beta1::GoogleCloudDatacatalogV1DataplexSpec

Common Dataplex fields. Corresponds to the JSON property dataplexSpec



794
795
796
# File 'lib/google/apis/datacatalog_v1beta1/classes.rb', line 794

def dataplex_spec
  @dataplex_spec
end

#external_tablesArray<Google::Apis::DatacatalogV1beta1::GoogleCloudDatacatalogV1DataplexExternalTable>

List of external tables registered by Dataplex in other systems based on the same underlying data. External tables allow to query this data in those systems. Corresponds to the JSON property externalTables



801
802
803
# File 'lib/google/apis/datacatalog_v1beta1/classes.rb', line 801

def external_tables
  @external_tables
end

#user_managedBoolean Also known as: user_managed?

Indicates if the table schema is managed by the user or not. Corresponds to the JSON property userManaged

Returns:

  • (Boolean)


806
807
808
# File 'lib/google/apis/datacatalog_v1beta1/classes.rb', line 806

def user_managed
  @user_managed
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



814
815
816
817
818
# File 'lib/google/apis/datacatalog_v1beta1/classes.rb', line 814

def update!(**args)
  @dataplex_spec = args[:dataplex_spec] if args.key?(:dataplex_spec)
  @external_tables = args[:external_tables] if args.key?(:external_tables)
  @user_managed = args[:user_managed] if args.key?(:user_managed)
end