Class: Google::Cloud::DataCatalog::V1::FeatureOnlineStoreSpec
- Inherits:
-
Object
- Object
- Google::Cloud::DataCatalog::V1::FeatureOnlineStoreSpec
- Extended by:
- Protobuf::MessageExts::ClassMethods
- Includes:
- Protobuf::MessageExts
- Defined in:
- proto_docs/google/cloud/datacatalog/v1/datacatalog.rb
Overview
Detail description of the source information of a Vertex Feature Online Store.
Defined Under Namespace
Modules: StorageType
Instance Attribute Summary collapse
-
#storage_type ⇒ ::Google::Cloud::DataCatalog::V1::FeatureOnlineStoreSpec::StorageType
readonly
Output only.
Instance Attribute Details
#storage_type ⇒ ::Google::Cloud::DataCatalog::V1::FeatureOnlineStoreSpec::StorageType (readonly)
Returns Output only. Type of underelaying storage for the FeatureOnlineStore.
1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 |
# File 'proto_docs/google/cloud/datacatalog/v1/datacatalog.rb', line 1022 class FeatureOnlineStoreSpec include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # Type of underlaying storage type. module StorageType # Should not be used. STORAGE_TYPE_UNSPECIFIED = 0 # Underlsying storgae is Bigtable. BIGTABLE = 1 # Underlaying is optimized online server (Lightning). OPTIMIZED = 2 end end |