Class: Google::Cloud::DataCatalog::V1::ColumnSchema::LookerColumnSpec
- Inherits:
-
Object
- Object
- Google::Cloud::DataCatalog::V1::ColumnSchema::LookerColumnSpec
- 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
-
#type ⇒ ::Google::Cloud::DataCatalog::V1::ColumnSchema::LookerColumnSpec::LookerColumnType
Looker specific column type of this column.
Instance Attribute Details
#type ⇒ ::Google::Cloud::DataCatalog::V1::ColumnSchema::LookerColumnSpec::LookerColumnType
Returns Looker specific column type of this column.
98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 |
# File 'proto_docs/google/cloud/datacatalog/v1/schema.rb', line 98 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 |