google-cloud-deploy-v1 1.0.0 → 1.1.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -159,6 +159,25 @@ module Google
159
159
  "projects/#{project}/locations/#{location}/deliveryPipelines/#{delivery_pipeline}"
160
160
  end
161
161
 
162
+ ##
163
+ # Create a fully-qualified DeployPolicy resource string.
164
+ #
165
+ # The resource will be in the following format:
166
+ #
167
+ # `projects/{project}/locations/{location}/deployPolicies/{deploy_policy}`
168
+ #
169
+ # @param project [String]
170
+ # @param location [String]
171
+ # @param deploy_policy [String]
172
+ #
173
+ # @return [::String]
174
+ def deploy_policy_path project:, location:, deploy_policy:
175
+ raise ::ArgumentError, "project cannot contain /" if project.to_s.include? "/"
176
+ raise ::ArgumentError, "location cannot contain /" if location.to_s.include? "/"
177
+
178
+ "projects/#{project}/locations/#{location}/deployPolicies/#{deploy_policy}"
179
+ end
180
+
162
181
  ##
163
182
  # Create a fully-qualified Job resource string.
164
183
  #