Class: Google::Apis::AiplatformV1beta1::GenaiVertexV1beta1VertexAiSearchConfig
- Inherits:
-
Object
- Object
- Google::Apis::AiplatformV1beta1::GenaiVertexV1beta1VertexAiSearchConfig
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/aiplatform_v1beta1/classes.rb,
lib/google/apis/aiplatform_v1beta1/representations.rb,
lib/google/apis/aiplatform_v1beta1/representations.rb
Overview
Used to specify configuration for VertexAISearch.
Instance Attribute Summary collapse
-
#datastores ⇒ Array<String>
Optional.
-
#engine ⇒ String
Optional.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GenaiVertexV1beta1VertexAiSearchConfig
constructor
A new instance of GenaiVertexV1beta1VertexAiSearchConfig.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GenaiVertexV1beta1VertexAiSearchConfig
Returns a new instance of GenaiVertexV1beta1VertexAiSearchConfig.
5960 5961 5962 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 5960 def initialize(**args) update!(**args) end |
Instance Attribute Details
#datastores ⇒ Array<String>
Optional. Used to specify Vertex AI Search datastores.
Corresponds to the JSON property datastores
5953 5954 5955 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 5953 def datastores @datastores end |
#engine ⇒ String
Optional. Used to specify Vertex AI Search engine.
Corresponds to the JSON property engine
5958 5959 5960 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 5958 def engine @engine end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
5965 5966 5967 5968 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 5965 def update!(**args) @datastores = args[:datastores] if args.key?(:datastores) @engine = args[:engine] if args.key?(:engine) end |