Class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1RagVectorDbConfigVertexVectorSearch
- Inherits:
-
Object
- Object
- Google::Apis::AiplatformV1::GoogleCloudAiplatformV1RagVectorDbConfigVertexVectorSearch
- 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
The config for the Vertex Vector Search.
Instance Attribute Summary collapse
-
#index ⇒ String
The resource name of the Index.
-
#index_endpoint ⇒ String
The resource name of the Index Endpoint.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudAiplatformV1RagVectorDbConfigVertexVectorSearch
constructor
A new instance of GoogleCloudAiplatformV1RagVectorDbConfigVertexVectorSearch.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudAiplatformV1RagVectorDbConfigVertexVectorSearch
Returns a new instance of GoogleCloudAiplatformV1RagVectorDbConfigVertexVectorSearch.
24754 24755 24756 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 24754 def initialize(**args) update!(**args) end |
Instance Attribute Details
#index ⇒ String
The resource name of the Index. Format: projects/project/locations/
location/indexes/index`
Corresponds to the JSON propertyindex`
24746 24747 24748 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 24746 def index @index end |
#index_endpoint ⇒ String
The resource name of the Index Endpoint. Format: projects/project/locations/
location/indexEndpoints/index_endpoint`
Corresponds to the JSON propertyindexEndpoint`
24752 24753 24754 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 24752 def index_endpoint @index_endpoint end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
24759 24760 24761 24762 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 24759 def update!(**args) @index = args[:index] if args.key?(:index) @index_endpoint = args[:index_endpoint] if args.key?(:index_endpoint) end |