Module: Google::Cloud::DiscoveryEngine::V1::RankService::Paths
- Extended by:
- Paths
- Included in:
- Client, Paths, Rest::Client
- Defined in:
- lib/google/cloud/discovery_engine/v1/rank_service/paths.rb
Overview
Path helper methods for the RankService API.
Instance Method Summary collapse
-
#ranking_config_path(project:, location:, ranking_config:) ⇒ ::String
Create a fully-qualified RankingConfig resource string.
Instance Method Details
#ranking_config_path(project:, location:, ranking_config:) ⇒ ::String
Create a fully-qualified RankingConfig resource string.
The resource will be in the following format:
projects/{project}/locations/{location}/rankingConfigs/{ranking_config}
39 40 41 42 43 44 |
# File 'lib/google/cloud/discovery_engine/v1/rank_service/paths.rb', line 39 def ranking_config_path project:, location:, ranking_config: raise ::ArgumentError, "project cannot contain /" if project.to_s.include? "/" raise ::ArgumentError, "location cannot contain /" if location.to_s.include? "/" "projects/#{project}/locations/#{location}/rankingConfigs/#{ranking_config}" end |