Class: Google::Apis::CesV1::DataStoreSettingsEngine
- Inherits:
-
Object
- Object
- Google::Apis::CesV1::DataStoreSettingsEngine
- 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
An engine to which the data stores are connected. See Vertex AI Search: https:/ /cloud.google.com/generative-ai-app-builder/docs/enterprise-search- introduction.
Instance Attribute Summary collapse
-
#name ⇒ String
Output only.
-
#type ⇒ String
Output only.
Instance Method Summary collapse
-
#initialize(**args) ⇒ DataStoreSettingsEngine
constructor
A new instance of DataStoreSettingsEngine.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ DataStoreSettingsEngine
Returns a new instance of DataStoreSettingsEngine.
2206 2207 2208 |
# File 'lib/google/apis/ces_v1/classes.rb', line 2206 def initialize(**args) update!(**args) end |
Instance Attribute Details
#name ⇒ String
Output only. The resource name of the engine. Format: projects/project/
locations/location/collections/collection/engines/engine`
Corresponds to the JSON propertyname`
2199 2200 2201 |
# File 'lib/google/apis/ces_v1/classes.rb', line 2199 def name @name end |
#type ⇒ String
Output only. The type of the engine.
Corresponds to the JSON property type
2204 2205 2206 |
# File 'lib/google/apis/ces_v1/classes.rb', line 2204 def type @type end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2211 2212 2213 2214 |
# File 'lib/google/apis/ces_v1/classes.rb', line 2211 def update!(**args) @name = args[:name] if args.key?(:name) @type = args[:type] if args.key?(:type) end |