Class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1RagEngineConfig
- Inherits:
-
Object
- Object
- Google::Apis::AiplatformV1::GoogleCloudAiplatformV1RagEngineConfig
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/aiplatform_v1/classes.rb,
lib/google/apis/aiplatform_v1/representations.rb,
lib/google/apis/aiplatform_v1/representations.rb
Overview
Config for RagEngine.
Instance Attribute Summary collapse
-
#name ⇒ String
Identifier.
-
#rag_managed_db_config ⇒ Google::Apis::AiplatformV1::GoogleCloudAiplatformV1RagManagedDbConfig
Configuration message for RagManagedDb used by RagEngine.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudAiplatformV1RagEngineConfig
constructor
A new instance of GoogleCloudAiplatformV1RagEngineConfig.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudAiplatformV1RagEngineConfig
Returns a new instance of GoogleCloudAiplatformV1RagEngineConfig.
29371 29372 29373 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 29371 def initialize(**args) update!(**args) end |
Instance Attribute Details
#name ⇒ String
Identifier. The name of the RagEngineConfig. Format: projects/project/
locations/location/ragEngineConfig
Corresponds to the JSON property name
29364 29365 29366 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 29364 def name @name end |
#rag_managed_db_config ⇒ Google::Apis::AiplatformV1::GoogleCloudAiplatformV1RagManagedDbConfig
Configuration message for RagManagedDb used by RagEngine.
Corresponds to the JSON property ragManagedDbConfig
29369 29370 29371 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 29369 def rag_managed_db_config @rag_managed_db_config end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
29376 29377 29378 29379 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 29376 def update!(**args) @name = args[:name] if args.key?(:name) @rag_managed_db_config = args[:rag_managed_db_config] if args.key?(:rag_managed_db_config) end |