Class: Google::Cloud::DataCatalog::V1::DatabaseTableSpec::DatabaseViewSpec
- Inherits:
-
Object
- Object
- Google::Cloud::DataCatalog::V1::DatabaseTableSpec::DatabaseViewSpec
- Extended by:
- Protobuf::MessageExts::ClassMethods
- Includes:
- Protobuf::MessageExts
- Defined in:
- proto_docs/google/cloud/datacatalog/v1/datacatalog.rb
Overview
Specification that applies to database view.
Defined Under Namespace
Modules: ViewType
Instance Attribute Summary collapse
-
#base_table ⇒ ::String
Name of a singular table this view reflects one to one.
-
#sql_query ⇒ ::String
SQL query used to generate this view.
-
#view_type ⇒ ::Google::Cloud::DataCatalog::V1::DatabaseTableSpec::DatabaseViewSpec::ViewType
Type of this view.
Instance Attribute Details
#base_table ⇒ ::String
Returns Name of a singular table this view reflects one to one.
636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 |
# File 'proto_docs/google/cloud/datacatalog/v1/datacatalog.rb', line 636 class DatabaseViewSpec include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # Concrete type of the view. module ViewType # Default unknown view type. VIEW_TYPE_UNSPECIFIED = 0 # Standard view. STANDARD_VIEW = 1 # Materialized view. MATERIALIZED_VIEW = 2 end end |
#sql_query ⇒ ::String
Returns SQL query used to generate this view.
636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 |
# File 'proto_docs/google/cloud/datacatalog/v1/datacatalog.rb', line 636 class DatabaseViewSpec include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # Concrete type of the view. module ViewType # Default unknown view type. VIEW_TYPE_UNSPECIFIED = 0 # Standard view. STANDARD_VIEW = 1 # Materialized view. MATERIALIZED_VIEW = 2 end end |
#view_type ⇒ ::Google::Cloud::DataCatalog::V1::DatabaseTableSpec::DatabaseViewSpec::ViewType
Returns Type of this view.
636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 |
# File 'proto_docs/google/cloud/datacatalog/v1/datacatalog.rb', line 636 class DatabaseViewSpec include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # Concrete type of the view. module ViewType # Default unknown view type. VIEW_TYPE_UNSPECIFIED = 0 # Standard view. STANDARD_VIEW = 1 # Materialized view. MATERIALIZED_VIEW = 2 end end |