google-apis-clouddeploy_v1 0.35.0 → 0.37.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -152,10 +152,262 @@ module Google
152
152
  execute_or_queue_command(command, &block)
153
153
  end
154
154
 
155
+ # Creates a new CustomTargetType in a given project and location.
156
+ # @param [String] parent
157
+ # Required. The parent collection in which the `CustomTargetType` should be
158
+ # created in. Format should be `projects/`project_id`/locations/`location_name``.
159
+ # @param [Google::Apis::ClouddeployV1::CustomTargetType] custom_target_type_object
160
+ # @param [String] custom_target_type_id
161
+ # Required. ID of the `CustomTargetType`.
162
+ # @param [String] request_id
163
+ # Optional. A request ID to identify requests. Specify a unique request ID so
164
+ # that if you must retry your request, the server will know to ignore the
165
+ # request if it has already been completed. The server will guarantee that for
166
+ # at least 60 minutes since the first request. For example, consider a situation
167
+ # where you make an initial request and the request times out. If you make the
168
+ # request again with the same request ID, the server can check if original
169
+ # operation with the same request ID was received, and if so, will ignore the
170
+ # second request. This prevents clients from accidentally creating duplicate
171
+ # commitments. The request ID must be a valid UUID with the exception that zero
172
+ # UUID is not supported (00000000-0000-0000-0000-000000000000).
173
+ # @param [Boolean] validate_only
174
+ # Optional. If set to true, the request is validated and the user is provided
175
+ # with an expected result, but no actual change is made.
176
+ # @param [String] fields
177
+ # Selector specifying which fields to include in a partial response.
178
+ # @param [String] quota_user
179
+ # Available to use for quota purposes for server-side applications. Can be any
180
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
181
+ # @param [Google::Apis::RequestOptions] options
182
+ # Request-specific options
183
+ #
184
+ # @yield [result, err] Result & error if block supplied
185
+ # @yieldparam result [Google::Apis::ClouddeployV1::Operation] parsed result object
186
+ # @yieldparam err [StandardError] error object if request failed
187
+ #
188
+ # @return [Google::Apis::ClouddeployV1::Operation]
189
+ #
190
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
191
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
192
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
193
+ def create_project_location_custom_target_type(parent, custom_target_type_object = nil, custom_target_type_id: nil, request_id: nil, validate_only: nil, fields: nil, quota_user: nil, options: nil, &block)
194
+ command = make_simple_command(:post, 'v1/{+parent}/customTargetTypes', options)
195
+ command.request_representation = Google::Apis::ClouddeployV1::CustomTargetType::Representation
196
+ command.request_object = custom_target_type_object
197
+ command.response_representation = Google::Apis::ClouddeployV1::Operation::Representation
198
+ command.response_class = Google::Apis::ClouddeployV1::Operation
199
+ command.params['parent'] = parent unless parent.nil?
200
+ command.query['customTargetTypeId'] = custom_target_type_id unless custom_target_type_id.nil?
201
+ command.query['requestId'] = request_id unless request_id.nil?
202
+ command.query['validateOnly'] = validate_only unless validate_only.nil?
203
+ command.query['fields'] = fields unless fields.nil?
204
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
205
+ execute_or_queue_command(command, &block)
206
+ end
207
+
208
+ # Deletes a single CustomTargetType.
209
+ # @param [String] name
210
+ # Required. The name of the `CustomTargetType` to delete. Format must be `
211
+ # projects/`project_id`/locations/`location_name`/customTargetTypes/`
212
+ # custom_target_type``.
213
+ # @param [Boolean] allow_missing
214
+ # Optional. If set to true, then deleting an already deleted or non-existing `
215
+ # CustomTargetType` will succeed.
216
+ # @param [String] etag
217
+ # Optional. This checksum is computed by the server based on the value of other
218
+ # fields, and may be sent on update and delete requests to ensure the client has
219
+ # an up-to-date value before proceeding.
220
+ # @param [String] request_id
221
+ # Optional. A request ID to identify requests. Specify a unique request ID so
222
+ # that if you must retry your request, the server will know to ignore the
223
+ # request if it has already been completed. The server will guarantee that for
224
+ # at least 60 minutes after the first request. For example, consider a situation
225
+ # where you make an initial request and the request times out. If you make the
226
+ # request again with the same request ID, the server can check if original
227
+ # operation with the same request ID was received, and if so, will ignore the
228
+ # second request. This prevents clients from accidentally creating duplicate
229
+ # commitments. The request ID must be a valid UUID with the exception that zero
230
+ # UUID is not supported (00000000-0000-0000-0000-000000000000).
231
+ # @param [Boolean] validate_only
232
+ # Optional. If set to true, the request is validated but no actual change is
233
+ # made.
234
+ # @param [String] fields
235
+ # Selector specifying which fields to include in a partial response.
236
+ # @param [String] quota_user
237
+ # Available to use for quota purposes for server-side applications. Can be any
238
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
239
+ # @param [Google::Apis::RequestOptions] options
240
+ # Request-specific options
241
+ #
242
+ # @yield [result, err] Result & error if block supplied
243
+ # @yieldparam result [Google::Apis::ClouddeployV1::Operation] parsed result object
244
+ # @yieldparam err [StandardError] error object if request failed
245
+ #
246
+ # @return [Google::Apis::ClouddeployV1::Operation]
247
+ #
248
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
249
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
250
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
251
+ def delete_project_location_custom_target_type(name, allow_missing: nil, etag: nil, request_id: nil, validate_only: nil, fields: nil, quota_user: nil, options: nil, &block)
252
+ command = make_simple_command(:delete, 'v1/{+name}', options)
253
+ command.response_representation = Google::Apis::ClouddeployV1::Operation::Representation
254
+ command.response_class = Google::Apis::ClouddeployV1::Operation
255
+ command.params['name'] = name unless name.nil?
256
+ command.query['allowMissing'] = allow_missing unless allow_missing.nil?
257
+ command.query['etag'] = etag unless etag.nil?
258
+ command.query['requestId'] = request_id unless request_id.nil?
259
+ command.query['validateOnly'] = validate_only unless validate_only.nil?
260
+ command.query['fields'] = fields unless fields.nil?
261
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
262
+ execute_or_queue_command(command, &block)
263
+ end
264
+
265
+ # Gets details of a single CustomTargetType.
266
+ # @param [String] name
267
+ # Required. Name of the `CustomTargetType`. Format must be `projects/`project_id`
268
+ # /locations/`location_name`/customTargetTypes/`custom_target_type``.
269
+ # @param [String] fields
270
+ # Selector specifying which fields to include in a partial response.
271
+ # @param [String] quota_user
272
+ # Available to use for quota purposes for server-side applications. Can be any
273
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
274
+ # @param [Google::Apis::RequestOptions] options
275
+ # Request-specific options
276
+ #
277
+ # @yield [result, err] Result & error if block supplied
278
+ # @yieldparam result [Google::Apis::ClouddeployV1::CustomTargetType] parsed result object
279
+ # @yieldparam err [StandardError] error object if request failed
280
+ #
281
+ # @return [Google::Apis::ClouddeployV1::CustomTargetType]
282
+ #
283
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
284
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
285
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
286
+ def get_project_location_custom_target_type(name, fields: nil, quota_user: nil, options: nil, &block)
287
+ command = make_simple_command(:get, 'v1/{+name}', options)
288
+ command.response_representation = Google::Apis::ClouddeployV1::CustomTargetType::Representation
289
+ command.response_class = Google::Apis::ClouddeployV1::CustomTargetType
290
+ command.params['name'] = name unless name.nil?
291
+ command.query['fields'] = fields unless fields.nil?
292
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
293
+ execute_or_queue_command(command, &block)
294
+ end
295
+
296
+ # Lists CustomTargetTypes in a given project and location.
297
+ # @param [String] parent
298
+ # Required. The parent that owns this collection of custom target types. Format
299
+ # must be `projects/`project_id`/locations/`location_name``.
300
+ # @param [String] filter
301
+ # Optional. Filter custom target types to be returned. See https://google.aip.
302
+ # dev/160 for more details.
303
+ # @param [String] order_by
304
+ # Optional. Field to sort by. See https://google.aip.dev/132#ordering for more
305
+ # details.
306
+ # @param [Fixnum] page_size
307
+ # Optional. The maximum number of `CustomTargetType` objects to return. The
308
+ # service may return fewer than this value. If unspecified, at most 50 `
309
+ # CustomTargetType` objects will be returned. The maximum value is 1000; values
310
+ # above 1000 will be set to 1000.
311
+ # @param [String] page_token
312
+ # Optional. A page token, received from a previous `ListCustomTargetTypes` call.
313
+ # Provide this to retrieve the subsequent page. When paginating, all other
314
+ # provided parameters match the call that provided the page token.
315
+ # @param [String] fields
316
+ # Selector specifying which fields to include in a partial response.
317
+ # @param [String] quota_user
318
+ # Available to use for quota purposes for server-side applications. Can be any
319
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
320
+ # @param [Google::Apis::RequestOptions] options
321
+ # Request-specific options
322
+ #
323
+ # @yield [result, err] Result & error if block supplied
324
+ # @yieldparam result [Google::Apis::ClouddeployV1::ListCustomTargetTypesResponse] parsed result object
325
+ # @yieldparam err [StandardError] error object if request failed
326
+ #
327
+ # @return [Google::Apis::ClouddeployV1::ListCustomTargetTypesResponse]
328
+ #
329
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
330
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
331
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
332
+ def list_project_location_custom_target_types(parent, filter: nil, order_by: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
333
+ command = make_simple_command(:get, 'v1/{+parent}/customTargetTypes', options)
334
+ command.response_representation = Google::Apis::ClouddeployV1::ListCustomTargetTypesResponse::Representation
335
+ command.response_class = Google::Apis::ClouddeployV1::ListCustomTargetTypesResponse
336
+ command.params['parent'] = parent unless parent.nil?
337
+ command.query['filter'] = filter unless filter.nil?
338
+ command.query['orderBy'] = order_by unless order_by.nil?
339
+ command.query['pageSize'] = page_size unless page_size.nil?
340
+ command.query['pageToken'] = page_token unless page_token.nil?
341
+ command.query['fields'] = fields unless fields.nil?
342
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
343
+ execute_or_queue_command(command, &block)
344
+ end
345
+
346
+ # Updates a single CustomTargetType.
347
+ # @param [String] name
348
+ # Optional. Name of the `CustomTargetType`. Format is `projects/`project`/
349
+ # locations/`location`/customTargetTypes/a-z`0,62``.
350
+ # @param [Google::Apis::ClouddeployV1::CustomTargetType] custom_target_type_object
351
+ # @param [Boolean] allow_missing
352
+ # Optional. If set to true, updating a `CustomTargetType` that does not exist
353
+ # will result in the creation of a new `CustomTargetType`.
354
+ # @param [String] request_id
355
+ # Optional. A request ID to identify requests. Specify a unique request ID so
356
+ # that if you must retry your request, the server will know to ignore the
357
+ # request if it has already been completed. The server will guarantee that for
358
+ # at least 60 minutes since the first request. For example, consider a situation
359
+ # where you make an initial request and the request times out. If you make the
360
+ # request again with the same request ID, the server can check if original
361
+ # operation with the same request ID was received, and if so, will ignore the
362
+ # second request. This prevents clients from accidentally creating duplicate
363
+ # commitments. The request ID must be a valid UUID with the exception that zero
364
+ # UUID is not supported (00000000-0000-0000-0000-000000000000).
365
+ # @param [String] update_mask
366
+ # Required. Field mask is used to specify the fields to be overwritten in the `
367
+ # CustomTargetType` resource by the update. The fields specified in the
368
+ # update_mask are relative to the resource, not the full request. A field will
369
+ # be overwritten if it is in the mask. If the user does not provide a mask then
370
+ # all fields will be overwritten.
371
+ # @param [Boolean] validate_only
372
+ # Optional. If set to true, the request is validated and the user is provided
373
+ # with an expected result, but no actual change is made.
374
+ # @param [String] fields
375
+ # Selector specifying which fields to include in a partial response.
376
+ # @param [String] quota_user
377
+ # Available to use for quota purposes for server-side applications. Can be any
378
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
379
+ # @param [Google::Apis::RequestOptions] options
380
+ # Request-specific options
381
+ #
382
+ # @yield [result, err] Result & error if block supplied
383
+ # @yieldparam result [Google::Apis::ClouddeployV1::Operation] parsed result object
384
+ # @yieldparam err [StandardError] error object if request failed
385
+ #
386
+ # @return [Google::Apis::ClouddeployV1::Operation]
387
+ #
388
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
389
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
390
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
391
+ def patch_project_location_custom_target_type(name, custom_target_type_object = nil, allow_missing: nil, request_id: nil, update_mask: nil, validate_only: nil, fields: nil, quota_user: nil, options: nil, &block)
392
+ command = make_simple_command(:patch, 'v1/{+name}', options)
393
+ command.request_representation = Google::Apis::ClouddeployV1::CustomTargetType::Representation
394
+ command.request_object = custom_target_type_object
395
+ command.response_representation = Google::Apis::ClouddeployV1::Operation::Representation
396
+ command.response_class = Google::Apis::ClouddeployV1::Operation
397
+ command.params['name'] = name unless name.nil?
398
+ command.query['allowMissing'] = allow_missing unless allow_missing.nil?
399
+ command.query['requestId'] = request_id unless request_id.nil?
400
+ command.query['updateMask'] = update_mask unless update_mask.nil?
401
+ command.query['validateOnly'] = validate_only unless validate_only.nil?
402
+ command.query['fields'] = fields unless fields.nil?
403
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
404
+ execute_or_queue_command(command, &block)
405
+ end
406
+
155
407
  # Creates a new DeliveryPipeline in a given project and location.
156
408
  # @param [String] parent
157
409
  # Required. The parent collection in which the `DeliveryPipeline` should be
158
- # created. Format should be projects/`project_id`/locations/`location_name`.
410
+ # created. Format should be `projects/`project_id`/locations/`location_name``.
159
411
  # @param [Google::Apis::ClouddeployV1::DeliveryPipeline] delivery_pipeline_object
160
412
  # @param [String] delivery_pipeline_id
161
413
  # Required. ID of the `DeliveryPipeline`.
@@ -207,9 +459,9 @@ module Google
207
459
 
208
460
  # Deletes a single DeliveryPipeline.
209
461
  # @param [String] name
210
- # Required. The name of the `DeliveryPipeline` to delete. Format should be
462
+ # Required. The name of the `DeliveryPipeline` to delete. Format should be `
211
463
  # projects/`project_id`/locations/`location_name`/deliveryPipelines/`
212
- # pipeline_name`.
464
+ # pipeline_name``.
213
465
  # @param [Boolean] allow_missing
214
466
  # Optional. If set to true, then deleting an already deleted or non-existing `
215
467
  # DeliveryPipeline` will succeed.
@@ -269,8 +521,8 @@ module Google
269
521
 
270
522
  # Gets details of a single DeliveryPipeline.
271
523
  # @param [String] name
272
- # Required. Name of the `DeliveryPipeline`. Format must be projects/`project_id`/
273
- # locations/`location_name`/deliveryPipelines/`pipeline_name`.
524
+ # Required. Name of the `DeliveryPipeline`. Format must be `projects/`project_id`
525
+ # /locations/`location_name`/deliveryPipelines/`pipeline_name``.
274
526
  # @param [String] fields
275
527
  # Selector specifying which fields to include in a partial response.
276
528
  # @param [String] quota_user
@@ -345,8 +597,8 @@ module Google
345
597
 
346
598
  # Lists DeliveryPipelines in a given project and location.
347
599
  # @param [String] parent
348
- # Required. The parent, which owns this collection of pipelines. Format must be
349
- # projects/`project_id`/locations/`location_name`.
600
+ # Required. The parent, which owns this collection of pipelines. Format must be `
601
+ # projects/`project_id`/locations/`location_name``.
350
602
  # @param [String] filter
351
603
  # Filter pipelines to be returned. See https://google.aip.dev/160 for more
352
604
  # details.
@@ -393,8 +645,8 @@ module Google
393
645
 
394
646
  # Updates the parameters of a single DeliveryPipeline.
395
647
  # @param [String] name
396
- # Optional. Name of the `DeliveryPipeline`. Format is projects/`project`/
397
- # locations/`location`/deliveryPipelines/a-z`0,62`.
648
+ # Optional. Name of the `DeliveryPipeline`. Format is `projects/`project`/
649
+ # locations/`location`/deliveryPipelines/a-z`0,62``.
398
650
  # @param [Google::Apis::ClouddeployV1::DeliveryPipeline] delivery_pipeline_object
399
651
  # @param [Boolean] allow_missing
400
652
  # Optional. If set to true, updating a `DeliveryPipeline` that does not exist
@@ -455,8 +707,8 @@ module Google
455
707
  # Creates a `Rollout` to roll back the specified target.
456
708
  # @param [String] name
457
709
  # Required. The `DeliveryPipeline` for which the rollback `Rollout` should be
458
- # created. Format should be projects/`project_id`/locations/`location_name`/
459
- # deliveryPipelines/`pipeline_name`.
710
+ # created. Format should be `projects/`project_id`/locations/`location_name`/
711
+ # deliveryPipelines/`pipeline_name``.
460
712
  # @param [Google::Apis::ClouddeployV1::RollbackTargetRequest] rollback_target_request_object
461
713
  # @param [String] fields
462
714
  # Selector specifying which fields to include in a partial response.
@@ -568,9 +820,9 @@ module Google
568
820
  # state `IN_PROGRESS` and `PENDING`; AutomationRun in a different state returns
569
821
  # an `FAILED_PRECONDITION` error.
570
822
  # @param [String] name
571
- # Required. Name of the `AutomationRun`. Format is projects/`project`/locations/`
572
- # location`/deliveryPipelines/`delivery_pipeline`/automationRuns/`automation_run`
573
- # .
823
+ # Required. Name of the `AutomationRun`. Format is `projects/`project`/locations/
824
+ # `location`/deliveryPipelines/`delivery_pipeline`/automationRuns/`
825
+ # automation_run``.
574
826
  # @param [Google::Apis::ClouddeployV1::CancelAutomationRunRequest] cancel_automation_run_request_object
575
827
  # @param [String] fields
576
828
  # Selector specifying which fields to include in a partial response.
@@ -603,9 +855,9 @@ module Google
603
855
 
604
856
  # Gets details of a single AutomationRun.
605
857
  # @param [String] name
606
- # Required. Name of the `AutomationRun`. Format must be projects/`project`/
858
+ # Required. Name of the `AutomationRun`. Format must be `projects/`project`/
607
859
  # locations/`location`/deliveryPipelines/`delivery_pipeline`/automationRuns/`
608
- # automation_run`.
860
+ # automation_run``.
609
861
  # @param [String] fields
610
862
  # Selector specifying which fields to include in a partial response.
611
863
  # @param [String] quota_user
@@ -635,9 +887,9 @@ module Google
635
887
 
636
888
  # Lists AutomationRuns in a given project and location.
637
889
  # @param [String] parent
638
- # Required. The parent, which owns this collection of automationRuns. Format
639
- # must be projects/`project`/locations/`location`/deliveryPipelines/`
640
- # delivery_pipeline`.
890
+ # Required. The parent `Delivery Pipeline`, which owns this collection of
891
+ # automationRuns. Format must be `projects/`project`/locations/`location`/
892
+ # deliveryPipelines/`delivery_pipeline``.
641
893
  # @param [String] filter
642
894
  # Filter automationRuns to be returned. All fields can be used in the filter.
643
895
  # @param [String] order_by
@@ -684,8 +936,8 @@ module Google
684
936
  # Creates a new Automation in a given project and location.
685
937
  # @param [String] parent
686
938
  # Required. The parent collection in which the `Automation` should be created.
687
- # Format should be projects/`project_id`/locations/`location_name`/
688
- # deliveryPipelines/`pipeline_name`.
939
+ # Format should be `projects/`project_id`/locations/`location_name`/
940
+ # deliveryPipelines/`pipeline_name``.
689
941
  # @param [Google::Apis::ClouddeployV1::Automation] automation_object
690
942
  # @param [String] automation_id
691
943
  # Required. ID of the `Automation`.
@@ -737,9 +989,9 @@ module Google
737
989
 
738
990
  # Deletes a single Automation resource.
739
991
  # @param [String] name
740
- # Required. The name of the `Automation` to delete. Format should be projects/`
992
+ # Required. The name of the `Automation` to delete. Format should be `projects/`
741
993
  # project_id`/locations/`location_name`/deliveryPipelines/`pipeline_name`/
742
- # automations/`automation_name`.
994
+ # automations/`automation_name``.
743
995
  # @param [Boolean] allow_missing
744
996
  # Optional. If set to true, then deleting an already deleted or non-existing `
745
997
  # Automation` will succeed.
@@ -794,9 +1046,9 @@ module Google
794
1046
 
795
1047
  # Gets details of a single Automation.
796
1048
  # @param [String] name
797
- # Required. Name of the `Automation`. Format must be projects/`project_id`/
1049
+ # Required. Name of the `Automation`. Format must be `projects/`project_id`/
798
1050
  # locations/`location_name`/deliveryPipelines/`pipeline_name`/automations/`
799
- # automation_name`.
1051
+ # automation_name``.
800
1052
  # @param [String] fields
801
1053
  # Selector specifying which fields to include in a partial response.
802
1054
  # @param [String] quota_user
@@ -826,9 +1078,9 @@ module Google
826
1078
 
827
1079
  # Lists Automations in a given project and location.
828
1080
  # @param [String] parent
829
- # Required. The parent, which owns this collection of automations. Format must
830
- # be projects/`project_id`/locations/`location_name`/deliveryPipelines/`
831
- # pipeline_name`.
1081
+ # Required. The parent `Delivery Pipeline`, which owns this collection of
1082
+ # automations. Format must be `projects/`project_id`/locations/`location_name`/
1083
+ # deliveryPipelines/`pipeline_name``.
832
1084
  # @param [String] filter
833
1085
  # Filter automations to be returned. All fields can be used in the filter.
834
1086
  # @param [String] order_by
@@ -874,8 +1126,8 @@ module Google
874
1126
 
875
1127
  # Updates the parameters of a single Automation resource.
876
1128
  # @param [String] name
877
- # Output only. Name of the `Automation`. Format is projects/`project`/locations/`
878
- # location`/deliveryPipelines/`delivery_pipeline`/automations/`automation`.
1129
+ # Output only. Name of the `Automation`. Format is `projects/`project`/locations/
1130
+ # `location`/deliveryPipelines/`delivery_pipeline`/automations/`automation``.
879
1131
  # @param [Google::Apis::ClouddeployV1::Automation] automation_object
880
1132
  # @param [Boolean] allow_missing
881
1133
  # Optional. If set to true, updating a `Automation` that does not exist will
@@ -935,8 +1187,8 @@ module Google
935
1187
 
936
1188
  # Abandons a Release in the Delivery Pipeline.
937
1189
  # @param [String] name
938
- # Required. Name of the Release. Format is projects/`project`/locations/`
939
- # location`/deliveryPipelines/`deliveryPipeline`/ releases/`release`.
1190
+ # Required. Name of the Release. Format is `projects/`project`/locations/`
1191
+ # location`/deliveryPipelines/`deliveryPipeline`/releases/`release``.
940
1192
  # @param [Google::Apis::ClouddeployV1::AbandonReleaseRequest] abandon_release_request_object
941
1193
  # @param [String] fields
942
1194
  # Selector specifying which fields to include in a partial response.
@@ -970,8 +1222,8 @@ module Google
970
1222
  # Creates a new Release in a given project and location.
971
1223
  # @param [String] parent
972
1224
  # Required. The parent collection in which the `Release` should be created.
973
- # Format should be projects/`project_id`/locations/`location_name`/
974
- # deliveryPipelines/`pipeline_name`.
1225
+ # Format should be `projects/`project_id`/locations/`location_name`/
1226
+ # deliveryPipelines/`pipeline_name``.
975
1227
  # @param [Google::Apis::ClouddeployV1::Release] release_object
976
1228
  # @param [String] release_id
977
1229
  # Required. ID of the `Release`.
@@ -1023,9 +1275,9 @@ module Google
1023
1275
 
1024
1276
  # Gets details of a single Release.
1025
1277
  # @param [String] name
1026
- # Required. Name of the `Release`. Format must be projects/`project_id`/
1278
+ # Required. Name of the `Release`. Format must be `projects/`project_id`/
1027
1279
  # locations/`location_name`/deliveryPipelines/`pipeline_name`/releases/`
1028
- # release_name`.
1280
+ # release_name``.
1029
1281
  # @param [String] fields
1030
1282
  # Selector specifying which fields to include in a partial response.
1031
1283
  # @param [String] quota_user
@@ -1105,9 +1357,9 @@ module Google
1105
1357
 
1106
1358
  # Advances a Rollout in a given project and location.
1107
1359
  # @param [String] name
1108
- # Required. Name of the Rollout. Format is projects/`project`/locations/`
1109
- # location`/deliveryPipelines/`deliveryPipeline`/ releases/`release`/rollouts/`
1110
- # rollout`.
1360
+ # Required. Name of the Rollout. Format is `projects/`project`/locations/`
1361
+ # location`/deliveryPipelines/`deliveryPipeline`/releases/`release`/rollouts/`
1362
+ # rollout``.
1111
1363
  # @param [Google::Apis::ClouddeployV1::AdvanceRolloutRequest] advance_rollout_request_object
1112
1364
  # @param [String] fields
1113
1365
  # Selector specifying which fields to include in a partial response.
@@ -1140,9 +1392,9 @@ module Google
1140
1392
 
1141
1393
  # Approves a Rollout.
1142
1394
  # @param [String] name
1143
- # Required. Name of the Rollout. Format is projects/`project`/locations/`
1144
- # location`/deliveryPipelines/`deliveryPipeline`/ releases/`release`/rollouts/`
1145
- # rollout`.
1395
+ # Required. Name of the Rollout. Format is `projects/`project`/locations/`
1396
+ # location`/deliveryPipelines/`deliveryPipeline`/releases/`release`/rollouts/`
1397
+ # rollout``.
1146
1398
  # @param [Google::Apis::ClouddeployV1::ApproveRolloutRequest] approve_rollout_request_object
1147
1399
  # @param [String] fields
1148
1400
  # Selector specifying which fields to include in a partial response.
@@ -1175,9 +1427,9 @@ module Google
1175
1427
 
1176
1428
  # Cancels a Rollout in a given project and location.
1177
1429
  # @param [String] name
1178
- # Required. Name of the Rollout. Format is projects/`project`/locations/`
1179
- # location`/deliveryPipelines/`deliveryPipeline`/ releases/`release`/rollouts/`
1180
- # rollout`.
1430
+ # Required. Name of the Rollout. Format is `projects/`project`/locations/`
1431
+ # location`/deliveryPipelines/`deliveryPipeline`/releases/`release`/rollouts/`
1432
+ # rollout``.
1181
1433
  # @param [Google::Apis::ClouddeployV1::CancelRolloutRequest] cancel_rollout_request_object
1182
1434
  # @param [String] fields
1183
1435
  # Selector specifying which fields to include in a partial response.
@@ -1211,8 +1463,8 @@ module Google
1211
1463
  # Creates a new Rollout in a given project and location.
1212
1464
  # @param [String] parent
1213
1465
  # Required. The parent collection in which the `Rollout` should be created.
1214
- # Format should be projects/`project_id`/locations/`location_name`/
1215
- # deliveryPipelines/`pipeline_name`/releases/`release_name`.
1466
+ # Format should be `projects/`project_id`/locations/`location_name`/
1467
+ # deliveryPipelines/`pipeline_name`/releases/`release_name``.
1216
1468
  # @param [Google::Apis::ClouddeployV1::Rollout] rollout_object
1217
1469
  # @param [String] request_id
1218
1470
  # Optional. A request ID to identify requests. Specify a unique request ID so
@@ -1268,9 +1520,9 @@ module Google
1268
1520
 
1269
1521
  # Gets details of a single Rollout.
1270
1522
  # @param [String] name
1271
- # Required. Name of the `Rollout`. Format must be projects/`project_id`/
1523
+ # Required. Name of the `Rollout`. Format must be `projects/`project_id`/
1272
1524
  # locations/`location_name`/deliveryPipelines/`pipeline_name`/releases/`
1273
- # release_name`/rollouts/`rollout_name`.
1525
+ # release_name`/rollouts/`rollout_name``.
1274
1526
  # @param [String] fields
1275
1527
  # Selector specifying which fields to include in a partial response.
1276
1528
  # @param [String] quota_user
@@ -1300,9 +1552,9 @@ module Google
1300
1552
 
1301
1553
  # Ignores the specified Job in a Rollout.
1302
1554
  # @param [String] rollout
1303
- # Required. Name of the Rollout. Format is projects/`project`/locations/`
1304
- # location`/deliveryPipelines/`deliveryPipeline`/ releases/`release`/rollouts/`
1305
- # rollout`.
1555
+ # Required. Name of the Rollout. Format is `projects/`project`/locations/`
1556
+ # location`/deliveryPipelines/`deliveryPipeline`/releases/`release`/rollouts/`
1557
+ # rollout``.
1306
1558
  # @param [Google::Apis::ClouddeployV1::IgnoreJobRequest] ignore_job_request_object
1307
1559
  # @param [String] fields
1308
1560
  # Selector specifying which fields to include in a partial response.
@@ -1384,9 +1636,9 @@ module Google
1384
1636
 
1385
1637
  # Retries the specified Job in a Rollout.
1386
1638
  # @param [String] rollout
1387
- # Required. Name of the Rollout. Format is projects/`project`/locations/`
1388
- # location`/deliveryPipelines/`deliveryPipeline`/ releases/`release`/rollouts/`
1389
- # rollout`.
1639
+ # Required. Name of the Rollout. Format is `projects/`project`/locations/`
1640
+ # location`/deliveryPipelines/`deliveryPipeline`/releases/`release`/rollouts/`
1641
+ # rollout``.
1390
1642
  # @param [Google::Apis::ClouddeployV1::RetryJobRequest] retry_job_request_object
1391
1643
  # @param [String] fields
1392
1644
  # Selector specifying which fields to include in a partial response.
@@ -1419,9 +1671,9 @@ module Google
1419
1671
 
1420
1672
  # Gets details of a single JobRun.
1421
1673
  # @param [String] name
1422
- # Required. Name of the `JobRun`. Format must be projects/`project_id`/locations/
1423
- # `location_name`/deliveryPipelines/`pipeline_name`/releases/`release_name`/
1424
- # rollouts/`rollout_name`/jobRuns/`job_run_name`.
1674
+ # Required. Name of the `JobRun`. Format must be `projects/`project_id`/
1675
+ # locations/`location_name`/deliveryPipelines/`pipeline_name`/releases/`
1676
+ # release_name`/rollouts/`rollout_name`/jobRuns/`job_run_name``.
1425
1677
  # @param [String] fields
1426
1678
  # Selector specifying which fields to include in a partial response.
1427
1679
  # @param [String] quota_user
@@ -1499,9 +1751,9 @@ module Google
1499
1751
 
1500
1752
  # Terminates a Job Run in a given project and location.
1501
1753
  # @param [String] name
1502
- # Required. Name of the `JobRun`. Format must be projects/`project`/locations/`
1503
- # location`/deliveryPipelines/`deliveryPipeline`/ releases/`release`/rollouts/`
1504
- # rollout`/jobRuns/`jobRun`.
1754
+ # Required. Name of the `JobRun`. Format must be `projects/`project`/locations/`
1755
+ # location`/deliveryPipelines/`deliveryPipeline`/releases/`release`/rollouts/`
1756
+ # rollout`/jobRuns/`jobRun``.
1505
1757
  # @param [Google::Apis::ClouddeployV1::TerminateJobRunRequest] terminate_job_run_request_object
1506
1758
  # @param [String] fields
1507
1759
  # Selector specifying which fields to include in a partial response.
@@ -1679,7 +1931,7 @@ module Google
1679
1931
  # Creates a new Target in a given project and location.
1680
1932
  # @param [String] parent
1681
1933
  # Required. The parent collection in which the `Target` should be created.
1682
- # Format should be projects/`project_id`/locations/`location_name`.
1934
+ # Format should be `projects/`project_id`/locations/`location_name``.
1683
1935
  # @param [Google::Apis::ClouddeployV1::Target] target_object
1684
1936
  # @param [String] request_id
1685
1937
  # Optional. A request ID to identify requests. Specify a unique request ID so
@@ -1731,8 +1983,8 @@ module Google
1731
1983
 
1732
1984
  # Deletes a single Target.
1733
1985
  # @param [String] name
1734
- # Required. The name of the `Target` to delete. Format should be projects/`
1735
- # project_id`/locations/`location_name`/targets/`target_name`.
1986
+ # Required. The name of the `Target` to delete. Format should be `projects/`
1987
+ # project_id`/locations/`location_name`/targets/`target_name``.
1736
1988
  # @param [Boolean] allow_missing
1737
1989
  # Optional. If set to true, then deleting an already deleted or non-existing `
1738
1990
  # Target` will succeed.
@@ -1787,8 +2039,8 @@ module Google
1787
2039
 
1788
2040
  # Gets details of a single Target.
1789
2041
  # @param [String] name
1790
- # Required. Name of the `Target`. Format must be projects/`project_id`/locations/
1791
- # `location_name`/targets/`target_name`.
2042
+ # Required. Name of the `Target`. Format must be `projects/`project_id`/
2043
+ # locations/`location_name`/targets/`target_name``.
1792
2044
  # @param [String] fields
1793
2045
  # Selector specifying which fields to include in a partial response.
1794
2046
  # @param [String] quota_user
@@ -1863,8 +2115,8 @@ module Google
1863
2115
 
1864
2116
  # Lists Targets in a given project and location.
1865
2117
  # @param [String] parent
1866
- # Required. The parent, which owns this collection of targets. Format must be
1867
- # projects/`project_id`/locations/`location_name`.
2118
+ # Required. The parent, which owns this collection of targets. Format must be `
2119
+ # projects/`project_id`/locations/`location_name``.
1868
2120
  # @param [String] filter
1869
2121
  # Optional. Filter targets to be returned. See https://google.aip.dev/160 for
1870
2122
  # more details.
@@ -1912,8 +2164,8 @@ module Google
1912
2164
 
1913
2165
  # Updates the parameters of a single Target.
1914
2166
  # @param [String] name
1915
- # Optional. Name of the `Target`. Format is projects/`project`/locations/`
1916
- # location`/targets/a-z`0,62`.
2167
+ # Optional. Name of the `Target`. Format is `projects/`project`/locations/`
2168
+ # location`/targets/a-z`0,62``.
1917
2169
  # @param [Google::Apis::ClouddeployV1::Target] target_object
1918
2170
  # @param [Boolean] allow_missing
1919
2171
  # Optional. If set to true, updating a `Target` that does not exist will result
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-clouddeploy_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.35.0
4
+ version: 0.37.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-11-12 00:00:00.000000000 Z
11
+ date: 2023-12-10 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-apis-core
@@ -58,7 +58,7 @@ licenses:
58
58
  metadata:
59
59
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
60
60
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-clouddeploy_v1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-clouddeploy_v1/v0.35.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-clouddeploy_v1/v0.37.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-clouddeploy_v1
63
63
  post_install_message:
64
64
  rdoc_options: []