Module: Google::Cloud::AIPlatform::V1::MatchService::Paths

Extended by:
Paths
Included in:
Client, Paths, Rest::Client
Defined in:
lib/google/cloud/ai_platform/v1/match_service/paths.rb

Overview

Path helper methods for the MatchService API.

Instance Method Summary collapse

Instance Method Details

#index_endpoint_path(project:, location:, index_endpoint:) ⇒ ::String

Create a fully-qualified IndexEndpoint resource string.

The resource will be in the following format:

projects/{project}/locations/{location}/indexEndpoints/{index_endpoint}

Parameters:

  • project (String)
  • location (String)
  • index_endpoint (String)

Returns:

  • (::String)

Raises:

  • (::ArgumentError)


39
40
41
42
43
44
# File 'lib/google/cloud/ai_platform/v1/match_service/paths.rb', line 39

def index_endpoint_path project:, location:, index_endpoint:
  raise ::ArgumentError, "project cannot contain /" if project.to_s.include? "/"
  raise ::ArgumentError, "location cannot contain /" if location.to_s.include? "/"

  "projects/#{project}/locations/#{location}/indexEndpoints/#{index_endpoint}"
end