Class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1RuntimeConfigVertexAiSearchRuntimeConfig
- Inherits:
-
Object
- Object
- Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1RuntimeConfigVertexAiSearchRuntimeConfig
- 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
Instance Attribute Summary collapse
-
#app_id ⇒ String
Vertex AI Search App ID.
-
#serving_config_name ⇒ String
[Deprecated] Please use app_id instead.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudAiplatformV1beta1RuntimeConfigVertexAiSearchRuntimeConfig
constructor
A new instance of GoogleCloudAiplatformV1beta1RuntimeConfigVertexAiSearchRuntimeConfig.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudAiplatformV1beta1RuntimeConfigVertexAiSearchRuntimeConfig
Returns a new instance of GoogleCloudAiplatformV1beta1RuntimeConfigVertexAiSearchRuntimeConfig.
23432 23433 23434 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 23432 def initialize(**args) update!(**args) end |
Instance Attribute Details
#app_id ⇒ String
Vertex AI Search App ID. This is used to construct the search request. By
setting this app_id, API will construct the serving config which is required
to call search API for the user. The app_id and serving_config_name cannot
both be empty at the same time.
Corresponds to the JSON property appId
23423 23424 23425 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 23423 def app_id @app_id end |
#serving_config_name ⇒ String
[Deprecated] Please use app_id instead. Vertex AI Search serving config name.
Format: projects/project/locations/location/collections/collection/
engines/engine/servingConfigs/serving_config`
Corresponds to the JSON propertyservingConfigName`
23430 23431 23432 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 23430 def serving_config_name @serving_config_name end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
23437 23438 23439 23440 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 23437 def update!(**args) @app_id = args[:app_id] if args.key?(:app_id) @serving_config_name = args[:serving_config_name] if args.key?(:serving_config_name) end |