Module: Google::Cloud::DocumentAI::V1beta3::DocumentProcessorService::Paths
- Extended by:
- Paths
- Included in:
- Client, Paths, Rest::Client
- Defined in:
- lib/google/cloud/document_ai/v1beta3/document_processor_service/paths.rb
Overview
Path helper methods for the DocumentProcessorService API.
Instance Method Summary collapse
-
#evaluation_path(project:, location:, processor:, processor_version:, evaluation:) ⇒ ::String
Create a fully-qualified Evaluation resource string.
-
#human_review_config_path(project:, location:, processor:) ⇒ ::String
Create a fully-qualified HumanReviewConfig resource string.
-
#location_path(project:, location:) ⇒ ::String
Create a fully-qualified Location resource string.
-
#processor_path(project:, location:, processor:) ⇒ ::String
Create a fully-qualified Processor resource string.
-
#processor_type_path(project:, location:, processor_type:) ⇒ ::String
Create a fully-qualified ProcessorType resource string.
-
#processor_version_path(project:, location:, processor:, processor_version:) ⇒ ::String
Create a fully-qualified ProcessorVersion resource string.
Instance Method Details
#evaluation_path(project:, location:, processor:, processor_version:, evaluation:) ⇒ ::String
Create a fully-qualified Evaluation resource string.
The resource will be in the following format:
projects/{project}/locations/{location}/processors/{processor}/processorVersions/{processor_version}/evaluations/{evaluation}
41 42 43 44 45 46 47 48 |
# File 'lib/google/cloud/document_ai/v1beta3/document_processor_service/paths.rb', line 41 def evaluation_path project:, location:, processor:, processor_version:, evaluation: raise ::ArgumentError, "project cannot contain /" if project.to_s.include? "/" raise ::ArgumentError, "location cannot contain /" if location.to_s.include? "/" raise ::ArgumentError, "processor cannot contain /" if processor.to_s.include? "/" raise ::ArgumentError, "processor_version cannot contain /" if processor_version.to_s.include? "/" "projects/#{project}/locations/#{location}/processors/#{processor}/processorVersions/#{processor_version}/evaluations/#{evaluation}" end |
#human_review_config_path(project:, location:, processor:) ⇒ ::String
Create a fully-qualified HumanReviewConfig resource string.
The resource will be in the following format:
projects/{project}/locations/{location}/processors/{processor}/humanReviewConfig
62 63 64 65 66 67 |
# File 'lib/google/cloud/document_ai/v1beta3/document_processor_service/paths.rb', line 62 def human_review_config_path project:, location:, processor: raise ::ArgumentError, "project cannot contain /" if project.to_s.include? "/" raise ::ArgumentError, "location cannot contain /" if location.to_s.include? "/" "projects/#{project}/locations/#{location}/processors/#{processor}/humanReviewConfig" 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}
80 81 82 83 84 |
# File 'lib/google/cloud/document_ai/v1beta3/document_processor_service/paths.rb', line 80 def location_path project:, location: raise ::ArgumentError, "project cannot contain /" if project.to_s.include? "/" "projects/#{project}/locations/#{location}" end |
#processor_path(project:, location:, processor:) ⇒ ::String
Create a fully-qualified Processor resource string.
The resource will be in the following format:
projects/{project}/locations/{location}/processors/{processor}
98 99 100 101 102 103 |
# File 'lib/google/cloud/document_ai/v1beta3/document_processor_service/paths.rb', line 98 def processor_path project:, location:, processor: raise ::ArgumentError, "project cannot contain /" if project.to_s.include? "/" raise ::ArgumentError, "location cannot contain /" if location.to_s.include? "/" "projects/#{project}/locations/#{location}/processors/#{processor}" end |
#processor_type_path(project:, location:, processor_type:) ⇒ ::String
Create a fully-qualified ProcessorType resource string.
The resource will be in the following format:
projects/{project}/locations/{location}/processorTypes/{processor_type}
117 118 119 120 121 122 |
# File 'lib/google/cloud/document_ai/v1beta3/document_processor_service/paths.rb', line 117 def processor_type_path project:, location:, processor_type: raise ::ArgumentError, "project cannot contain /" if project.to_s.include? "/" raise ::ArgumentError, "location cannot contain /" if location.to_s.include? "/" "projects/#{project}/locations/#{location}/processorTypes/#{processor_type}" end |
#processor_version_path(project:, location:, processor:, processor_version:) ⇒ ::String
Create a fully-qualified ProcessorVersion resource string.
The resource will be in the following format:
projects/{project}/locations/{location}/processors/{processor}/processorVersions/{processor_version}
137 138 139 140 141 142 143 |
# File 'lib/google/cloud/document_ai/v1beta3/document_processor_service/paths.rb', line 137 def processor_version_path project:, location:, processor:, processor_version: raise ::ArgumentError, "project cannot contain /" if project.to_s.include? "/" raise ::ArgumentError, "location cannot contain /" if location.to_s.include? "/" raise ::ArgumentError, "processor cannot contain /" if processor.to_s.include? "/" "projects/#{project}/locations/#{location}/processors/#{processor}/processorVersions/#{processor_version}" end |