Class: Google::Cloud::DataCatalog::V1::FeatureOnlineStoreSpec

Inherits:
Object
  • Object
show all
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

Instance Attribute Details

#storage_type::Google::Cloud::DataCatalog::V1::FeatureOnlineStoreSpec::StorageType (readonly)

Returns Output only. Type of underlying storage for the FeatureOnlineStore.

Returns:



1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
# File 'proto_docs/google/cloud/datacatalog/v1/datacatalog.rb', line 1068

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

  # Type of underlying storage type.
  module StorageType
    # Should not be used.
    STORAGE_TYPE_UNSPECIFIED = 0

    # Underlsying storgae is Bigtable.
    BIGTABLE = 1

    # Underlying is optimized online server (Lightning).
    OPTIMIZED = 2
  end
end