Module: Google::Cloud::AIPlatform::V1::EndpointService::Paths
- Extended by:
- Paths
- Defined in:
- lib/google/cloud/ai_platform/v1/endpoint_service/paths.rb
Overview
Path helper methods for the EndpointService API.
Instance Method Summary collapse
-
#endpoint_path(project:, location:, endpoint:) ⇒ ::String
Create a fully-qualified Endpoint resource string.
-
#location_path(project:, location:) ⇒ ::String
Create a fully-qualified Location resource string.
-
#model_deployment_monitoring_job_path(project:, location:, model_deployment_monitoring_job:) ⇒ ::String
Create a fully-qualified ModelDeploymentMonitoringJob resource string.
-
#model_path(project:, location:, model:) ⇒ ::String
Create a fully-qualified Model resource string.
-
#network_path(project:, network:) ⇒ ::String
Create a fully-qualified Network resource string.
Instance Method Details
#endpoint_path(project:, location:, endpoint:) ⇒ ::String
Create a fully-qualified Endpoint resource string.
The resource will be in the following format:
projects/{project}/locations/{location}/endpoints/{endpoint}
39 40 41 42 43 44 |
# File 'lib/google/cloud/ai_platform/v1/endpoint_service/paths.rb', line 39 def endpoint_path project:, location:, 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}/endpoints/#{endpoint}" end |
#location_path(project:, location:) ⇒ ::String
Create a fully-qualified Location resource string.
The resource will be in the following format:
projects/{project}/locations/{location}
57 58 59 60 61 |
# File 'lib/google/cloud/ai_platform/v1/endpoint_service/paths.rb', line 57 def location_path project:, location: raise ::ArgumentError, "project cannot contain /" if project.to_s.include? "/" "projects/#{project}/locations/#{location}" end |
#model_deployment_monitoring_job_path(project:, location:, model_deployment_monitoring_job:) ⇒ ::String
Create a fully-qualified ModelDeploymentMonitoringJob resource string.
The resource will be in the following format:
projects/{project}/locations/{location}/modelDeploymentMonitoringJobs/{model_deployment_monitoring_job}
94 95 96 97 98 99 |
# File 'lib/google/cloud/ai_platform/v1/endpoint_service/paths.rb', line 94 def model_deployment_monitoring_job_path project:, location:, model_deployment_monitoring_job: raise ::ArgumentError, "project cannot contain /" if project.to_s.include? "/" raise ::ArgumentError, "location cannot contain /" if location.to_s.include? "/" "projects/#{project}/locations/#{location}/modelDeploymentMonitoringJobs/#{model_deployment_monitoring_job}" end |
#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}
75 76 77 78 79 80 |
# File 'lib/google/cloud/ai_platform/v1/endpoint_service/paths.rb', line 75 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 |
#network_path(project:, network:) ⇒ ::String
Create a fully-qualified Network resource string.
The resource will be in the following format:
projects/{project}/global/networks/{network}
112 113 114 115 116 |
# File 'lib/google/cloud/ai_platform/v1/endpoint_service/paths.rb', line 112 def network_path project:, network: raise ::ArgumentError, "project cannot contain /" if project.to_s.include? "/" "projects/#{project}/global/networks/#{network}" end |