Module: Google::Cloud::AdvisoryNotifications::V1::AdvisoryNotificationsService::Paths
- Extended by:
- Paths
- Included in:
- Client, Paths, Rest::Client
- Defined in:
- lib/google/cloud/advisory_notifications/v1/advisory_notifications_service/paths.rb
Overview
Path helper methods for the AdvisoryNotificationsService API.
Instance Method Summary collapse
-
#location_path(**args) ⇒ ::String
Create a fully-qualified Location resource string.
-
#notification_path(**args) ⇒ ::String
Create a fully-qualified Notification resource string.
-
#settings_path(**args) ⇒ ::String
Create a fully-qualified Settings resource string.
Instance Method Details
#location_path(organization: , location: ) ⇒ ::String #location_path(project: , location: ) ⇒ ::String
Create a fully-qualified Location resource string.
47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 |
# File 'lib/google/cloud/advisory_notifications/v1/advisory_notifications_service/paths.rb', line 47 def location_path **args resources = { "location:organization" => (proc do |organization:, location:| raise ::ArgumentError, "organization cannot contain /" if organization.to_s.include? "/" "organizations/#{organization}/locations/#{location}" end), "location:project" => (proc do |project:, location:| raise ::ArgumentError, "project cannot contain /" if project.to_s.include? "/" "projects/#{project}/locations/#{location}" end) } resource = resources[args.keys.sort.join(":")] raise ::ArgumentError, "no resource found for values #{args.keys}" if resource.nil? resource.call(**args) end |
#notification_path(organization: , location: , notification: ) ⇒ ::String #notification_path(project: , location: , notification: ) ⇒ ::String
Create a fully-qualified Notification resource string.
88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 |
# File 'lib/google/cloud/advisory_notifications/v1/advisory_notifications_service/paths.rb', line 88 def notification_path **args resources = { "location:notification:organization" => (proc do |organization:, location:, notification:| raise ::ArgumentError, "organization cannot contain /" if organization.to_s.include? "/" raise ::ArgumentError, "location cannot contain /" if location.to_s.include? "/" "organizations/#{organization}/locations/#{location}/notifications/#{notification}" end), "location:notification:project" => (proc do |project:, location:, notification:| raise ::ArgumentError, "project cannot contain /" if project.to_s.include? "/" raise ::ArgumentError, "location cannot contain /" if location.to_s.include? "/" "projects/#{project}/locations/#{location}/notifications/#{notification}" end) } resource = resources[args.keys.sort.join(":")] raise ::ArgumentError, "no resource found for values #{args.keys}" if resource.nil? resource.call(**args) end |
#settings_path(organization: , location: ) ⇒ ::String #settings_path(project: , location: ) ⇒ ::String
Create a fully-qualified Settings resource string.
129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 |
# File 'lib/google/cloud/advisory_notifications/v1/advisory_notifications_service/paths.rb', line 129 def settings_path **args resources = { "location:organization" => (proc do |organization:, location:| raise ::ArgumentError, "organization cannot contain /" if organization.to_s.include? "/" "organizations/#{organization}/locations/#{location}/settings" end), "location:project" => (proc do |project:, location:| raise ::ArgumentError, "project cannot contain /" if project.to_s.include? "/" "projects/#{project}/locations/#{location}/settings" end) } resource = resources[args.keys.sort.join(":")] raise ::ArgumentError, "no resource found for values #{args.keys}" if resource.nil? resource.call(**args) end |