Module: Google::Cloud::AutoML::V1beta1::PredictionService::Paths

Extended by:
Paths
Included in:
Client, Paths
Defined in:
lib/google/cloud/automl/v1beta1/prediction_service/paths.rb

Overview

Path helper methods for the PredictionService API.

Instance Method Summary collapse

Instance Method Details

#model_path(project:, location:, model:) ⇒ ::String

Create a fully-qualified Model resource string.

The resource will be in the following format:

projects/{project}/locations/{location}/models/{model}

Parameters:

  • project (String)
  • location (String)
  • model (String)

Returns:

  • (::String)

Raises:

  • (::ArgumentError)


39
40
41
42
43
44
# File 'lib/google/cloud/automl/v1beta1/prediction_service/paths.rb', line 39

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

  "projects/#{project}/locations/#{location}/models/#{model}"
end