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.
2031 2032 2033 |
# File 'lib/google/apis/ces_v1/classes.rb', line 2031 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`
2024 2025 2026 |
# File 'lib/google/apis/ces_v1/classes.rb', line 2024 def name @name end |
#type ⇒ String
Output only. The type of the engine.
Corresponds to the JSON property type
2029 2030 2031 |
# File 'lib/google/apis/ces_v1/classes.rb', line 2029 def type @type end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2036 2037 2038 2039 |
# File 'lib/google/apis/ces_v1/classes.rb', line 2036 def update!(**args) @name = args[:name] if args.key?(:name) @type = args[:type] if args.key?(:type) end |