Class: Google::Apis::CesV1::DataStore
- Inherits:
-
Object
- Object
- Google::Apis::CesV1::DataStore
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/ces_v1/classes.rb,
lib/google/apis/ces_v1/representations.rb,
lib/google/apis/ces_v1/representations.rb
Overview
A DataStore resource in Vertex AI Search.
Instance Attribute Summary collapse
-
#connector_config ⇒ Google::Apis::CesV1::DataStoreConnectorConfig
The connector config for the data store connection.
-
#create_time ⇒ String
Output only.
-
#display_name ⇒ String
Output only.
-
#document_processing_mode ⇒ String
Output only.
-
#name ⇒ String
Required.
-
#type ⇒ String
Output only.
Instance Method Summary collapse
-
#initialize(**args) ⇒ DataStore
constructor
A new instance of DataStore.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ DataStore
Returns a new instance of DataStore.
2220 2221 2222 |
# File 'lib/google/apis/ces_v1/classes.rb', line 2220 def initialize(**args) update!(**args) end |
Instance Attribute Details
#connector_config ⇒ Google::Apis::CesV1::DataStoreConnectorConfig
The connector config for the data store connection.
Corresponds to the JSON property connectorConfig
2190 2191 2192 |
# File 'lib/google/apis/ces_v1/classes.rb', line 2190 def connector_config @connector_config end |
#create_time ⇒ String
Output only. Timestamp when the data store was created.
Corresponds to the JSON property createTime
2195 2196 2197 |
# File 'lib/google/apis/ces_v1/classes.rb', line 2195 def create_time @create_time end |
#display_name ⇒ String
Output only. The display name of the data store.
Corresponds to the JSON property displayName
2200 2201 2202 |
# File 'lib/google/apis/ces_v1/classes.rb', line 2200 def display_name @display_name end |
#document_processing_mode ⇒ String
Output only. The document processing mode for the data store connection. Only
set for PUBLIC_WEB and UNSTRUCTURED data stores.
Corresponds to the JSON property documentProcessingMode
2206 2207 2208 |
# File 'lib/google/apis/ces_v1/classes.rb', line 2206 def document_processing_mode @document_processing_mode end |
#name ⇒ String
Required. Full resource name of the DataStore. Format: projects/project/
locations/location/collections/collection/dataStores/dataStore`
Corresponds to the JSON propertyname`
2212 2213 2214 |
# File 'lib/google/apis/ces_v1/classes.rb', line 2212 def name @name end |
#type ⇒ String
Output only. The type of the data store. This field is readonly and populated
by the server.
Corresponds to the JSON property type
2218 2219 2220 |
# File 'lib/google/apis/ces_v1/classes.rb', line 2218 def type @type end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2225 2226 2227 2228 2229 2230 2231 2232 |
# File 'lib/google/apis/ces_v1/classes.rb', line 2225 def update!(**args) @connector_config = args[:connector_config] if args.key?(:connector_config) @create_time = args[:create_time] if args.key?(:create_time) @display_name = args[:display_name] if args.key?(:display_name) @document_processing_mode = args[:document_processing_mode] if args.key?(:document_processing_mode) @name = args[:name] if args.key?(:name) @type = args[:type] if args.key?(:type) end |