Class: Google::Cloud::DataCatalog::V1::DatabaseTableSpec
- Inherits:
-
Object
- Object
- Google::Cloud::DataCatalog::V1::DatabaseTableSpec
- 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
-
#dataplex_table ⇒ ::Google::Cloud::DataCatalog::V1::DataplexTableSpec
readonly
Output only.
-
#type ⇒ ::Google::Cloud::DataCatalog::V1::DatabaseTableSpec::TableType
Type of this table.
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.
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 |