module Google::Cloud::Talent::V4::EventService::Paths
Path helper methods for the EventService
API.
Public Instance Methods
tenant_path(project:, tenant: raise ::ArgumentError, "project cannot contain /" if project.to_s.include? "/")
click to toggle source
Create a fully-qualified Tenant resource string.
The resource will be in the following format:
`projects/{project}/tenants/{tenant}`
@param project [String] @param tenant [String]
@return [::String]
# File lib/google/cloud/talent/v4/event_service/paths.rb, line 38 def tenant_path project:, tenant: raise ::ArgumentError, "project cannot contain /" if project.to_s.include? "/" "projects/#{project}/tenants/#{tenant}" end