- 0.58.0 (latest)
- 0.57.0
- 0.56.0
- 0.55.0
- 0.54.0
- 0.53.0
- 0.52.0
- 0.51.0
- 0.50.0
- 0.49.0
- 0.48.0
- 0.47.0
- 0.46.0
- 0.45.0
- 0.44.0
- 0.43.0
- 0.42.0
- 0.41.0
- 0.40.0
- 0.39.0
- 0.38.0
- 0.37.0
- 0.36.0
- 0.35.0
- 0.34.0
- 0.33.0
- 0.32.0
- 0.31.0
- 0.30.0
- 0.29.0
- 0.28.0
- 0.27.0
- 0.26.0
- 0.25.0
- 0.24.0
- 0.23.0
- 0.22.0
- 0.21.0
- 0.20.0
- 0.19.0
- 0.18.0
- 0.17.0
- 0.16.0
- 0.15.0
- 0.14.0
- 0.13.0
- 0.12.0
- 0.11.0
- 0.10.0
- 0.9.1
- 0.8.0
- 0.7.0
- 0.6.0
- 0.5.0
- 0.4.0
- 0.3.0
- 0.2.0
- 0.1.0
Reference documentation and code samples for the Vertex AI V1 API class Google::Cloud::AIPlatform::V1::IndexEndpointService::Client.
Client for the IndexEndpointService service.
A service for managing Vertex AI's IndexEndpoints.
Inherits
- Object
Methods
.configure
def self.configure() { |config| ... } -> Client::Configuration
Configure the IndexEndpointService Client class.
See Configuration for a description of the configuration fields.
- (config) — Configure the Client client.
- config (Client::Configuration)
# Modify the configuration for all IndexEndpointService clients ::Google::Cloud::AIPlatform::V1::IndexEndpointService::Client.configure do |config| config.timeout = 10.0 end
#configure
def configure() { |config| ... } -> Client::Configuration
Configure the IndexEndpointService Client instance.
The configuration is set to the derived mode, meaning that values can be changed, but structural changes (adding new fields, etc.) are not allowed. Structural changes should be made on Client.configure.
See Configuration for a description of the configuration fields.
- (config) — Configure the Client client.
- config (Client::Configuration)
#create_index_endpoint
def create_index_endpoint(request, options = nil) -> ::Gapic::Operation
def create_index_endpoint(parent: nil, index_endpoint: nil) -> ::Gapic::Operation
Creates an IndexEndpoint.
def create_index_endpoint(request, options = nil) -> ::Gapic::Operation
create_index_endpoint
via a request object, either of type
CreateIndexEndpointRequest or an equivalent Hash.
- request (::Google::Cloud::AIPlatform::V1::CreateIndexEndpointRequest, ::Hash) — A request object representing the call parameters. Required. To specify no parameters, or to keep all the default parameter values, pass an empty Hash.
- options (::Gapic::CallOptions, ::Hash) — Overrides the default settings for this call, e.g, timeout, retries, etc. Optional.
def create_index_endpoint(parent: nil, index_endpoint: nil) -> ::Gapic::Operation
create_index_endpoint
via keyword arguments. Note that at
least one keyword argument is required. To specify no parameters, or to keep all
the default parameter values, pass an empty Hash as a request object (see above).
-
parent (::String) — Required. The resource name of the Location to create the IndexEndpoint in.
Format:
projects/{project}/locations/{location}
- index_endpoint (::Google::Cloud::AIPlatform::V1::IndexEndpoint, ::Hash) — Required. The IndexEndpoint to create.
- (response, operation) — Access the result along with the RPC operation
- response (::Gapic::Operation)
- operation (::GRPC::ActiveCall::Operation)
- (::Gapic::Operation)
- (::Google::Cloud::Error) — if the RPC is aborted.
Basic example
require "google/cloud/ai_platform/v1" # Create a client object. The client can be reused for multiple calls. client = Google::Cloud::AIPlatform::V1::IndexEndpointService::Client.new # Create a request. To set request fields, pass in keyword arguments. request = Google::Cloud::AIPlatform::V1::CreateIndexEndpointRequest.new # Call the create_index_endpoint method. result = client.create_index_endpoint request # The returned object is of type Gapic::Operation. You can use it to # check the status of an operation, cancel it, or wait for results. # Here is how to wait for a response. result.wait_until_done! timeout: 60 if result.response? p result.response else puts "No response received." end
#delete_index_endpoint
def delete_index_endpoint(request, options = nil) -> ::Gapic::Operation
def delete_index_endpoint(name: nil) -> ::Gapic::Operation
Deletes an IndexEndpoint.
def delete_index_endpoint(request, options = nil) -> ::Gapic::Operation
delete_index_endpoint
via a request object, either of type
DeleteIndexEndpointRequest or an equivalent Hash.
- request (::Google::Cloud::AIPlatform::V1::DeleteIndexEndpointRequest, ::Hash) — A request object representing the call parameters. Required. To specify no parameters, or to keep all the default parameter values, pass an empty Hash.
- options (::Gapic::CallOptions, ::Hash) — Overrides the default settings for this call, e.g, timeout, retries, etc. Optional.
def delete_index_endpoint(name: nil) -> ::Gapic::Operation
delete_index_endpoint
via keyword arguments. Note that at
least one keyword argument is required. To specify no parameters, or to keep all
the default parameter values, pass an empty Hash as a request object (see above).
-
name (::String) — Required. The name of the IndexEndpoint resource to be deleted.
Format:
projects/{project}/locations/{location}/indexEndpoints/{index_endpoint}
- (response, operation) — Access the result along with the RPC operation
- response (::Gapic::Operation)
- operation (::GRPC::ActiveCall::Operation)
- (::Gapic::Operation)
- (::Google::Cloud::Error) — if the RPC is aborted.
Basic example
require "google/cloud/ai_platform/v1" # Create a client object. The client can be reused for multiple calls. client = Google::Cloud::AIPlatform::V1::IndexEndpointService::Client.new # Create a request. To set request fields, pass in keyword arguments. request = Google::Cloud::AIPlatform::V1::DeleteIndexEndpointRequest.new # Call the delete_index_endpoint method. result = client.delete_index_endpoint request # The returned object is of type Gapic::Operation. You can use it to # check the status of an operation, cancel it, or wait for results. # Here is how to wait for a response. result.wait_until_done! timeout: 60 if result.response? p result.response else puts "No response received." end
#deploy_index
def deploy_index(request, options = nil) -> ::Gapic::Operation
def deploy_index(index_endpoint: nil, deployed_index: nil) -> ::Gapic::Operation
Deploys an Index into this IndexEndpoint, creating a DeployedIndex within it. Only non-empty Indexes can be deployed.
def deploy_index(request, options = nil) -> ::Gapic::Operation
deploy_index
via a request object, either of type
DeployIndexRequest or an equivalent Hash.
- request (::Google::Cloud::AIPlatform::V1::DeployIndexRequest, ::Hash) — A request object representing the call parameters. Required. To specify no parameters, or to keep all the default parameter values, pass an empty Hash.
- options (::Gapic::CallOptions, ::Hash) — Overrides the default settings for this call, e.g, timeout, retries, etc. Optional.
def deploy_index(index_endpoint: nil, deployed_index: nil) -> ::Gapic::Operation
deploy_index
via keyword arguments. Note that at
least one keyword argument is required. To specify no parameters, or to keep all
the default parameter values, pass an empty Hash as a request object (see above).
-
index_endpoint (::String) — Required. The name of the IndexEndpoint resource into which to deploy an
Index. Format:
projects/{project}/locations/{location}/indexEndpoints/{index_endpoint}
- deployed_index (::Google::Cloud::AIPlatform::V1::DeployedIndex, ::Hash) — Required. The DeployedIndex to be created within the IndexEndpoint.
- (response, operation) — Access the result along with the RPC operation
- response (::Gapic::Operation)
- operation (::GRPC::ActiveCall::Operation)
- (::Gapic::Operation)
- (::Google::Cloud::Error) — if the RPC is aborted.
Basic example
require "google/cloud/ai_platform/v1" # Create a client object. The client can be reused for multiple calls. client = Google::Cloud::AIPlatform::V1::IndexEndpointService::Client.new # Create a request. To set request fields, pass in keyword arguments. request = Google::Cloud::AIPlatform::V1::DeployIndexRequest.new # Call the deploy_index method. result = client.deploy_index request # The returned object is of type Gapic::Operation. You can use it to # check the status of an operation, cancel it, or wait for results. # Here is how to wait for a response. result.wait_until_done! timeout: 60 if result.response? p result.response else puts "No response received." end
#get_index_endpoint
def get_index_endpoint(request, options = nil) -> ::Google::Cloud::AIPlatform::V1::IndexEndpoint
def get_index_endpoint(name: nil) -> ::Google::Cloud::AIPlatform::V1::IndexEndpoint
Gets an IndexEndpoint.
def get_index_endpoint(request, options = nil) -> ::Google::Cloud::AIPlatform::V1::IndexEndpoint
get_index_endpoint
via a request object, either of type
GetIndexEndpointRequest or an equivalent Hash.
- request (::Google::Cloud::AIPlatform::V1::GetIndexEndpointRequest, ::Hash) — A request object representing the call parameters. Required. To specify no parameters, or to keep all the default parameter values, pass an empty Hash.
- options (::Gapic::CallOptions, ::Hash) — Overrides the default settings for this call, e.g, timeout, retries, etc. Optional.
def get_index_endpoint(name: nil) -> ::Google::Cloud::AIPlatform::V1::IndexEndpoint
get_index_endpoint
via keyword arguments. Note that at
least one keyword argument is required. To specify no parameters, or to keep all
the default parameter values, pass an empty Hash as a request object (see above).
-
name (::String) — Required. The name of the IndexEndpoint resource.
Format:
projects/{project}/locations/{location}/indexEndpoints/{index_endpoint}
- (response, operation) — Access the result along with the RPC operation
- response (::Google::Cloud::AIPlatform::V1::IndexEndpoint)
- operation (::GRPC::ActiveCall::Operation)
- (::Google::Cloud::Error) — if the RPC is aborted.
Basic example
require "google/cloud/ai_platform/v1" # Create a client object. The client can be reused for multiple calls. client = Google::Cloud::AIPlatform::V1::IndexEndpointService::Client.new # Create a request. To set request fields, pass in keyword arguments. request = Google::Cloud::AIPlatform::V1::GetIndexEndpointRequest.new # Call the get_index_endpoint method. result = client.get_index_endpoint request # The returned object is of type Google::Cloud::AIPlatform::V1::IndexEndpoint. p result
#iam_policy_client
def iam_policy_client() -> Google::Iam::V1::IAMPolicy::Client
Get the associated client for mix-in of the IAMPolicy.
- (Google::Iam::V1::IAMPolicy::Client)
#initialize
def initialize() { |config| ... } -> Client
Create a new IndexEndpointService client object.
- (config) — Configure the IndexEndpointService client.
- config (Client::Configuration)
- (Client) — a new instance of Client
# Create a client using the default configuration client = ::Google::Cloud::AIPlatform::V1::IndexEndpointService::Client.new # Create a client using a custom configuration client = ::Google::Cloud::AIPlatform::V1::IndexEndpointService::Client.new do |config| config.timeout = 10.0 end
#list_index_endpoints
def list_index_endpoints(request, options = nil) -> ::Gapic::PagedEnumerable<::Google::Cloud::AIPlatform::V1::IndexEndpoint>
def list_index_endpoints(parent: nil, filter: nil, page_size: nil, page_token: nil, read_mask: nil) -> ::Gapic::PagedEnumerable<::Google::Cloud::AIPlatform::V1::IndexEndpoint>
Lists IndexEndpoints in a Location.
def list_index_endpoints(request, options = nil) -> ::Gapic::PagedEnumerable<::Google::Cloud::AIPlatform::V1::IndexEndpoint>
list_index_endpoints
via a request object, either of type
ListIndexEndpointsRequest or an equivalent Hash.
- request (::Google::Cloud::AIPlatform::V1::ListIndexEndpointsRequest, ::Hash) — A request object representing the call parameters. Required. To specify no parameters, or to keep all the default parameter values, pass an empty Hash.
- options (::Gapic::CallOptions, ::Hash) — Overrides the default settings for this call, e.g, timeout, retries, etc. Optional.
def list_index_endpoints(parent: nil, filter: nil, page_size: nil, page_token: nil, read_mask: nil) -> ::Gapic::PagedEnumerable<::Google::Cloud::AIPlatform::V1::IndexEndpoint>
list_index_endpoints
via keyword arguments. Note that at
least one keyword argument is required. To specify no parameters, or to keep all
the default parameter values, pass an empty Hash as a request object (see above).
-
parent (::String) — Required. The resource name of the Location from which to list the
IndexEndpoints. Format:
projects/{project}/locations/{location}
-
filter (::String) —
Optional. An expression for filtering the results of the request. For field names both snake_case and camelCase are supported.
index_endpoint
supports = and !=.index_endpoint
represents the IndexEndpoint ID, ie. the last segment of the IndexEndpoint's resourcename.display_name
supports =, != and regex() (uses re2 syntax)labels
supports general map functions that is:labels.key=value
- key:value equalitylabels.key:* or labels:key - key existence A key including a space must be quoted.
labels."a key"`.
Some examples:
index_endpoint="1"
display_name="myDisplayName"
- `regex(display_name, "^A") -> The display name starts with an A.
labels.myKey="myValue"
- page_size (::Integer) — Optional. The standard list page size.
- page_token (::String) — Optional. The standard list page token. Typically obtained via ListIndexEndpointsResponse.next_page_token of the previous IndexEndpointService.ListIndexEndpoints call.
- read_mask (::Google::Protobuf::FieldMask, ::Hash) — Optional. Mask specifying which fields to read.
- (response, operation) — Access the result along with the RPC operation
- response (::Gapic::PagedEnumerable<::Google::Cloud::AIPlatform::V1::IndexEndpoint>)
- operation (::GRPC::ActiveCall::Operation)
- (::Gapic::PagedEnumerable<::Google::Cloud::AIPlatform::V1::IndexEndpoint>)
- (::Google::Cloud::Error) — if the RPC is aborted.
Basic example
require "google/cloud/ai_platform/v1" # Create a client object. The client can be reused for multiple calls. client = Google::Cloud::AIPlatform::V1::IndexEndpointService::Client.new # Create a request. To set request fields, pass in keyword arguments. request = Google::Cloud::AIPlatform::V1::ListIndexEndpointsRequest.new # Call the list_index_endpoints method. result = client.list_index_endpoints request # The returned object is of type Gapic::PagedEnumerable. You can iterate # over elements, and API calls will be issued to fetch pages as needed. result.each do |item| # Each element is of type ::Google::Cloud::AIPlatform::V1::IndexEndpoint. p item end
#location_client
def location_client() -> Google::Cloud::Location::Locations::Client
Get the associated client for mix-in of the Locations.
- (Google::Cloud::Location::Locations::Client)
#mutate_deployed_index
def mutate_deployed_index(request, options = nil) -> ::Gapic::Operation
def mutate_deployed_index(index_endpoint: nil, deployed_index: nil) -> ::Gapic::Operation
Update an existing DeployedIndex under an IndexEndpoint.
def mutate_deployed_index(request, options = nil) -> ::Gapic::Operation
mutate_deployed_index
via a request object, either of type
MutateDeployedIndexRequest or an equivalent Hash.
- request (::Google::Cloud::AIPlatform::V1::MutateDeployedIndexRequest, ::Hash) — A request object representing the call parameters. Required. To specify no parameters, or to keep all the default parameter values, pass an empty Hash.
- options (::Gapic::CallOptions, ::Hash) — Overrides the default settings for this call, e.g, timeout, retries, etc. Optional.
def mutate_deployed_index(index_endpoint: nil, deployed_index: nil) -> ::Gapic::Operation
mutate_deployed_index
via keyword arguments. Note that at
least one keyword argument is required. To specify no parameters, or to keep all
the default parameter values, pass an empty Hash as a request object (see above).
-
index_endpoint (::String) — Required. The name of the IndexEndpoint resource into which to deploy an
Index. Format:
projects/{project}/locations/{location}/indexEndpoints/{index_endpoint}
- deployed_index (::Google::Cloud::AIPlatform::V1::DeployedIndex, ::Hash) — Required. The DeployedIndex to be updated within the IndexEndpoint. Currently, the updatable fields are [DeployedIndex][automatic_resources] and [DeployedIndex][dedicated_resources]
- (response, operation) — Access the result along with the RPC operation
- response (::Gapic::Operation)
- operation (::GRPC::ActiveCall::Operation)
- (::Gapic::Operation)
- (::Google::Cloud::Error) — if the RPC is aborted.
Basic example
require "google/cloud/ai_platform/v1" # Create a client object. The client can be reused for multiple calls. client = Google::Cloud::AIPlatform::V1::IndexEndpointService::Client.new # Create a request. To set request fields, pass in keyword arguments. request = Google::Cloud::AIPlatform::V1::MutateDeployedIndexRequest.new # Call the mutate_deployed_index method. result = client.mutate_deployed_index request # The returned object is of type Gapic::Operation. You can use it to # check the status of an operation, cancel it, or wait for results. # Here is how to wait for a response. result.wait_until_done! timeout: 60 if result.response? p result.response else puts "No response received." end
#operations_client
def operations_client() -> ::Google::Cloud::AIPlatform::V1::IndexEndpointService::Operations
Get the associated client for long-running operations.
#undeploy_index
def undeploy_index(request, options = nil) -> ::Gapic::Operation
def undeploy_index(index_endpoint: nil, deployed_index_id: nil) -> ::Gapic::Operation
Undeploys an Index from an IndexEndpoint, removing a DeployedIndex from it, and freeing all resources it's using.
def undeploy_index(request, options = nil) -> ::Gapic::Operation
undeploy_index
via a request object, either of type
UndeployIndexRequest or an equivalent Hash.
- request (::Google::Cloud::AIPlatform::V1::UndeployIndexRequest, ::Hash) — A request object representing the call parameters. Required. To specify no parameters, or to keep all the default parameter values, pass an empty Hash.
- options (::Gapic::CallOptions, ::Hash) — Overrides the default settings for this call, e.g, timeout, retries, etc. Optional.
def undeploy_index(index_endpoint: nil, deployed_index_id: nil) -> ::Gapic::Operation
undeploy_index
via keyword arguments. Note that at
least one keyword argument is required. To specify no parameters, or to keep all
the default parameter values, pass an empty Hash as a request object (see above).
-
index_endpoint (::String) — Required. The name of the IndexEndpoint resource from which to undeploy an
Index. Format:
projects/{project}/locations/{location}/indexEndpoints/{index_endpoint}
- deployed_index_id (::String) — Required. The ID of the DeployedIndex to be undeployed from the IndexEndpoint.
- (response, operation) — Access the result along with the RPC operation
- response (::Gapic::Operation)
- operation (::GRPC::ActiveCall::Operation)
- (::Gapic::Operation)
- (::Google::Cloud::Error) — if the RPC is aborted.
Basic example
require "google/cloud/ai_platform/v1" # Create a client object. The client can be reused for multiple calls. client = Google::Cloud::AIPlatform::V1::IndexEndpointService::Client.new # Create a request. To set request fields, pass in keyword arguments. request = Google::Cloud::AIPlatform::V1::UndeployIndexRequest.new # Call the undeploy_index method. result = client.undeploy_index request # The returned object is of type Gapic::Operation. You can use it to # check the status of an operation, cancel it, or wait for results. # Here is how to wait for a response. result.wait_until_done! timeout: 60 if result.response? p result.response else puts "No response received." end
#update_index_endpoint
def update_index_endpoint(request, options = nil) -> ::Google::Cloud::AIPlatform::V1::IndexEndpoint
def update_index_endpoint(index_endpoint: nil, update_mask: nil) -> ::Google::Cloud::AIPlatform::V1::IndexEndpoint
Updates an IndexEndpoint.
def update_index_endpoint(request, options = nil) -> ::Google::Cloud::AIPlatform::V1::IndexEndpoint
update_index_endpoint
via a request object, either of type
UpdateIndexEndpointRequest or an equivalent Hash.
- request (::Google::Cloud::AIPlatform::V1::UpdateIndexEndpointRequest, ::Hash) — A request object representing the call parameters. Required. To specify no parameters, or to keep all the default parameter values, pass an empty Hash.
- options (::Gapic::CallOptions, ::Hash) — Overrides the default settings for this call, e.g, timeout, retries, etc. Optional.
def update_index_endpoint(index_endpoint: nil, update_mask: nil) -> ::Google::Cloud::AIPlatform::V1::IndexEndpoint
update_index_endpoint
via keyword arguments. Note that at
least one keyword argument is required. To specify no parameters, or to keep all
the default parameter values, pass an empty Hash as a request object (see above).
- index_endpoint (::Google::Cloud::AIPlatform::V1::IndexEndpoint, ::Hash) — Required. The IndexEndpoint which replaces the resource on the server.
- update_mask (::Google::Protobuf::FieldMask, ::Hash) — Required. The update mask applies to the resource. See google.protobuf.FieldMask.
- (response, operation) — Access the result along with the RPC operation
- response (::Google::Cloud::AIPlatform::V1::IndexEndpoint)
- operation (::GRPC::ActiveCall::Operation)
- (::Google::Cloud::Error) — if the RPC is aborted.
Basic example
require "google/cloud/ai_platform/v1" # Create a client object. The client can be reused for multiple calls. client = Google::Cloud::AIPlatform::V1::IndexEndpointService::Client.new # Create a request. To set request fields, pass in keyword arguments. request = Google::Cloud::AIPlatform::V1::UpdateIndexEndpointRequest.new # Call the update_index_endpoint method. result = client.update_index_endpoint request # The returned object is of type Google::Cloud::AIPlatform::V1::IndexEndpoint. p result