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. Only valid for entries of TABLE type.

Defined Under Namespace

Modules: TableType

Instance Attribute Summary collapse

Instance Attribute Details

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

Returns Type of this table.



509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
# File 'proto_docs/google/cloud/datacatalog/v1/datacatalog.rb', line 509

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