Module: Google::Cloud::Trace::V2::TraceService::Paths
- Extended by:
- Paths
- Included in:
- Client, Paths, Rest::Client
- Defined in:
- lib/google/cloud/trace/v2/trace_service/paths.rb
Overview
Path helper methods for the TraceService API.
Instance Method Summary collapse
-
#project_path(project:) ⇒ ::String
Create a fully-qualified Project resource string.
-
#span_path(project:, trace:, span:) ⇒ ::String
Create a fully-qualified Span resource string.
Instance Method Details
#project_path(project:) ⇒ ::String
Create a fully-qualified Project resource string.
The resource will be in the following format:
projects/{project}
37 38 39 |
# File 'lib/google/cloud/trace/v2/trace_service/paths.rb', line 37 def project_path project: "projects/#{project}" end |
#span_path(project:, trace:, span:) ⇒ ::String
Create a fully-qualified Span resource string.
The resource will be in the following format:
projects/{project}/traces/{trace}/spans/{span}
53 54 55 56 57 58 |
# File 'lib/google/cloud/trace/v2/trace_service/paths.rb', line 53 def span_path project:, trace:, span: raise ::ArgumentError, "project cannot contain /" if project.to_s.include? "/" raise ::ArgumentError, "trace cannot contain /" if trace.to_s.include? "/" "projects/#{project}/traces/#{trace}/spans/#{span}" end |