Class: Google::Cloud::DataCatalog::V1::DatabaseTableSpec

Inherits:
Object
  • Object
show all
Extended by:
Protobuf::MessageExts::ClassMethods
Includes:
Protobuf::MessageExts
Defined in:
proto_docs/google/cloud/datacatalog/v1/datacatalog.rb

Overview

Specification that applies to a table resource. Valid only for entries with the TABLE type.

Defined Under Namespace

Modules: TableType

Instance Attribute Summary collapse

Instance Attribute Details

#dataplex_table::Google::Cloud::DataCatalog::V1::DataplexTableSpec (readonly)

Returns Output only. Fields specific to a Dataplex table and present only in the Dataplex table entries.

Returns:



580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
# File 'proto_docs/google/cloud/datacatalog/v1/datacatalog.rb', line 580

class DatabaseTableSpec
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # Type of the table.
  module TableType
    # Default unknown table type.
    TABLE_TYPE_UNSPECIFIED = 0

    # Native table.
    NATIVE = 1

    # External table.
    EXTERNAL = 2
  end
end

#type::Google::Cloud::DataCatalog::V1::DatabaseTableSpec::TableType

Returns Type of this table.



580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
# File 'proto_docs/google/cloud/datacatalog/v1/datacatalog.rb', line 580

class DatabaseTableSpec
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # Type of the table.
  module TableType
    # Default unknown table type.
    TABLE_TYPE_UNSPECIFIED = 0

    # Native table.
    NATIVE = 1

    # External table.
    EXTERNAL = 2
  end
end