Class: Google::Cloud::DataCatalog::V1::ColumnSchema::LookerColumnSpec

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

Overview

Column info specific to Looker System.

Defined Under Namespace

Modules: LookerColumnType

Instance Attribute Summary collapse

Instance Attribute Details

#type::Google::Cloud::DataCatalog::V1::ColumnSchema::LookerColumnSpec::LookerColumnType

Returns Looker specific column type of this column.

Returns:



90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
# File 'proto_docs/google/cloud/datacatalog/v1/schema.rb', line 90

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

  # Column type in Looker.
  module LookerColumnType
    # Unspecified.
    LOOKER_COLUMN_TYPE_UNSPECIFIED = 0

    # Dimension.
    DIMENSION = 1

    # Dimension group - parent for Dimension.
    DIMENSION_GROUP = 2

    # Filter.
    FILTER = 3

    # Measure.
    MEASURE = 4

    # Parameter.
    PARAMETER = 5
  end
end