Module: Google::Cloud::DiscoveryEngine::V1beta::DataStoreService::Paths
- Extended by:
- Paths
- Included in:
- Client, Paths, Rest::Client
- Defined in:
- lib/google/cloud/discovery_engine/v1beta/data_store_service/paths.rb
Overview
Path helper methods for the DataStoreService API.
Instance Method Summary collapse
-
#collection_path(project:, location:, collection:) ⇒ ::String
Create a fully-qualified Collection resource string.
-
#data_store_path(**args) ⇒ ::String
Create a fully-qualified DataStore resource string.
-
#document_processing_config_path(**args) ⇒ ::String
Create a fully-qualified DocumentProcessingConfig resource string.
-
#schema_path(**args) ⇒ ::String
Create a fully-qualified Schema resource string.
Instance Method Details
#collection_path(project:, location:, collection:) ⇒ ::String
Create a fully-qualified Collection resource string.
The resource will be in the following format:
projects/{project}/locations/{location}/collections/{collection}
39 40 41 42 43 44 |
# File 'lib/google/cloud/discovery_engine/v1beta/data_store_service/paths.rb', line 39 def collection_path project:, location:, collection: raise ::ArgumentError, "project cannot contain /" if project.to_s.include? "/" raise ::ArgumentError, "location cannot contain /" if location.to_s.include? "/" "projects/#{project}/locations/#{location}/collections/#{collection}" end |
#data_store_path(project: , location: , data_store: ) ⇒ ::String #data_store_path(project: , location: , collection: , data_store: ) ⇒ ::String
Create a fully-qualified DataStore resource string.
69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 |
# File 'lib/google/cloud/discovery_engine/v1beta/data_store_service/paths.rb', line 69 def data_store_path **args resources = { "data_store:location:project" => (proc do |project:, location:, data_store:| raise ::ArgumentError, "project cannot contain /" if project.to_s.include? "/" raise ::ArgumentError, "location cannot contain /" if location.to_s.include? "/" "projects/#{project}/locations/#{location}/dataStores/#{data_store}" end), "collection:data_store:location:project" => (proc do |project:, location:, collection:, data_store:| raise ::ArgumentError, "project cannot contain /" if project.to_s.include? "/" raise ::ArgumentError, "location cannot contain /" if location.to_s.include? "/" raise ::ArgumentError, "collection cannot contain /" if collection.to_s.include? "/" "projects/#{project}/locations/#{location}/collections/#{collection}/dataStores/#{data_store}" end) } resource = resources[args.keys.sort.join(":")] raise ::ArgumentError, "no resource found for values #{args.keys}" if resource.nil? resource.call(**args) end |
#document_processing_config_path(project: , location: , data_store: ) ⇒ ::String #document_processing_config_path(project: , location: , collection: , data_store: ) ⇒ ::String
Create a fully-qualified DocumentProcessingConfig resource string.
114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 |
# File 'lib/google/cloud/discovery_engine/v1beta/data_store_service/paths.rb', line 114 def document_processing_config_path **args resources = { "data_store:location:project" => (proc do |project:, location:, data_store:| raise ::ArgumentError, "project cannot contain /" if project.to_s.include? "/" raise ::ArgumentError, "location cannot contain /" if location.to_s.include? "/" "projects/#{project}/locations/#{location}/dataStores/#{data_store}/documentProcessingConfig" end), "collection:data_store:location:project" => (proc do |project:, location:, collection:, data_store:| raise ::ArgumentError, "project cannot contain /" if project.to_s.include? "/" raise ::ArgumentError, "location cannot contain /" if location.to_s.include? "/" raise ::ArgumentError, "collection cannot contain /" if collection.to_s.include? "/" "projects/#{project}/locations/#{location}/collections/#{collection}/dataStores/#{data_store}/documentProcessingConfig" end) } resource = resources[args.keys.sort.join(":")] raise ::ArgumentError, "no resource found for values #{args.keys}" if resource.nil? resource.call(**args) end |
#schema_path(project: , location: , data_store: , schema: ) ⇒ ::String #schema_path(project: , location: , collection: , data_store: , schema: ) ⇒ ::String
Create a fully-qualified Schema resource string.
161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 |
# File 'lib/google/cloud/discovery_engine/v1beta/data_store_service/paths.rb', line 161 def schema_path **args resources = { "data_store:location:project:schema" => (proc do |project:, location:, data_store:, schema:| raise ::ArgumentError, "project cannot contain /" if project.to_s.include? "/" raise ::ArgumentError, "location cannot contain /" if location.to_s.include? "/" raise ::ArgumentError, "data_store cannot contain /" if data_store.to_s.include? "/" "projects/#{project}/locations/#{location}/dataStores/#{data_store}/schemas/#{schema}" end), "collection:data_store:location:project:schema" => (proc do |project:, location:, collection:, data_store:, schema:| raise ::ArgumentError, "project cannot contain /" if project.to_s.include? "/" raise ::ArgumentError, "location cannot contain /" if location.to_s.include? "/" raise ::ArgumentError, "collection cannot contain /" if collection.to_s.include? "/" raise ::ArgumentError, "data_store cannot contain /" if data_store.to_s.include? "/" "projects/#{project}/locations/#{location}/collections/#{collection}/dataStores/#{data_store}/schemas/#{schema}" end) } resource = resources[args.keys.sort.join(":")] raise ::ArgumentError, "no resource found for values #{args.keys}" if resource.nil? resource.call(**args) end |