google-apis-clouddeploy_v1 0.6.0 → 0.9.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 726c7e2f8235cd2ea90c67ecb035e00442e1e57693e1dc56249514c0551e3796
4
- data.tar.gz: 110df117d59fc3c7f49f8b1bc197dbd8af26339d7e43f08ba5bb0cae6018a75c
3
+ metadata.gz: b6e723eb98ea715c3416cbfb3e1d90d7afba54e95757dae2c97a2131e0e9cac9
4
+ data.tar.gz: 2d1c18ee194d7026e4f0424f711c132d93c4abbc0adb09e8d735a9276f560d1b
5
5
  SHA512:
6
- metadata.gz: 7fbac8e4f4492edaa1dae71e9c386ded04018a6c6495f26c4cd06c85af826aec48fb103862db67cd7c39018992622a02b8b498e5b25b5a1dd3f609dc9ed29c75
7
- data.tar.gz: 68e3220550ef280d21e11c5e3378d74abd0d1cd59610f80e87bac1825c9c4aaabd56a4b9b671db924e0e15bf90d5697a0425d14b78dc0cff5e4ecb5efc803c76
6
+ metadata.gz: 8177b984015b4278a2491b5b9332528543720e2770f3ec051f715d49fc984fb5e379697e878456ac990b50ba1c805977e46fae79c6107f209aef3021f32af3f4
7
+ data.tar.gz: 368e0a5ef4b6eea6307af79931fa9db29548c5cfa1feb6ff11435655adb16ae270447a17edb67c304c5ac974b3bea1c9bb631c5831b7febfe59492618bb44f12
data/CHANGELOG.md CHANGED
@@ -1,5 +1,17 @@
1
1
  # Release history for google-apis-clouddeploy_v1
2
2
 
3
+ ### v0.9.0 (2022-05-15)
4
+
5
+ * Regenerated from discovery document revision 20220504
6
+
7
+ ### v0.8.0 (2022-04-23)
8
+
9
+ * Regenerated from discovery document revision 20220413
10
+
11
+ ### v0.7.0 (2022-04-10)
12
+
13
+ * Regenerated from discovery document revision 20220330
14
+
3
15
  ### v0.6.0 (2022-03-26)
4
16
 
5
17
  * Regenerated from discovery document revision 20220314
@@ -89,8 +89,8 @@ module Google
89
89
  # "audit_log_configs": [ ` "log_type": "DATA_READ" `, ` "log_type": "DATA_WRITE"
90
90
  # , "exempted_members": [ "user:aliya@example.com" ] ` ] ` ] ` For sampleservice,
91
91
  # this policy enables DATA_READ, DATA_WRITE and ADMIN_READ logging. It also
92
- # exempts jose@example.com from DATA_READ logging, and aliya@example.com from
93
- # DATA_WRITE logging.
92
+ # exempts `jose@example.com` from DATA_READ logging, and `aliya@example.com`
93
+ # from DATA_WRITE logging.
94
94
  class AuditConfig
95
95
  include Google::Apis::Core::Hashable
96
96
 
@@ -170,7 +170,7 @@ module Google
170
170
  # @return [Google::Apis::ClouddeployV1::Expr]
171
171
  attr_accessor :condition
172
172
 
173
- # Specifies the principals requesting access for a Cloud Platform resource. `
173
+ # Specifies the principals requesting access for a Google Cloud resource. `
174
174
  # members` can have the following values: * `allUsers`: A special identifier
175
175
  # that represents anyone who is on the internet; with or without a Google
176
176
  # account. * `allAuthenticatedUsers`: A special identifier that represents
@@ -446,11 +446,43 @@ module Google
446
446
  end
447
447
  end
448
448
 
449
+ # Payload proto for "clouddeploy.googleapis.com/deliverypipeline_notification"
450
+ # Platform Log event that describes the failure to send delivery pipeline status
451
+ # change Pub/Sub notification.
452
+ class DeliveryPipelineNotificationEvent
453
+ include Google::Apis::Core::Hashable
454
+
455
+ # The name of the `Delivery Pipeline`.
456
+ # Corresponds to the JSON property `deliveryPipeline`
457
+ # @return [String]
458
+ attr_accessor :delivery_pipeline
459
+
460
+ # Debug message for when a notification fails to send.
461
+ # Corresponds to the JSON property `message`
462
+ # @return [String]
463
+ attr_accessor :message
464
+
465
+ # Type of this notification, e.g. for a Pub/Sub failure.
466
+ # Corresponds to the JSON property `type`
467
+ # @return [String]
468
+ attr_accessor :type
469
+
470
+ def initialize(**args)
471
+ update!(**args)
472
+ end
473
+
474
+ # Update properties of this object
475
+ def update!(**args)
476
+ @delivery_pipeline = args[:delivery_pipeline] if args.key?(:delivery_pipeline)
477
+ @message = args[:message] if args.key?(:message)
478
+ @type = args[:type] if args.key?(:type)
479
+ end
480
+ end
481
+
449
482
  # A generic empty message that you can re-use to avoid defining duplicated empty
450
483
  # messages in your APIs. A typical example is to use it as the request or the
451
484
  # response type of an API method. For instance: service Foo ` rpc Bar(google.
452
- # protobuf.Empty) returns (google.protobuf.Empty); ` The JSON representation for
453
- # `Empty` is empty JSON object ````.
485
+ # protobuf.Empty) returns (google.protobuf.Empty); `
454
486
  class Empty
455
487
  include Google::Apis::Core::Hashable
456
488
 
@@ -480,6 +512,12 @@ module Google
480
512
  # @return [Google::Apis::ClouddeployV1::DefaultPool]
481
513
  attr_accessor :default_pool
482
514
 
515
+ # Optional. Execution timeout for a Cloud Build Execution. This must be between
516
+ # 10m and 24h in seconds format. If unspecified, a default timeout of 1h is used.
517
+ # Corresponds to the JSON property `executionTimeout`
518
+ # @return [String]
519
+ attr_accessor :execution_timeout
520
+
483
521
  # Execution using a private Cloud Build pool.
484
522
  # Corresponds to the JSON property `privatePool`
485
523
  # @return [Google::Apis::ClouddeployV1::PrivatePool]
@@ -512,6 +550,7 @@ module Google
512
550
  def update!(**args)
513
551
  @artifact_storage = args[:artifact_storage] if args.key?(:artifact_storage)
514
552
  @default_pool = args[:default_pool] if args.key?(:default_pool)
553
+ @execution_timeout = args[:execution_timeout] if args.key?(:execution_timeout)
515
554
  @private_pool = args[:private_pool] if args.key?(:private_pool)
516
555
  @service_account = args[:service_account] if args.key?(:service_account)
517
556
  @usages = args[:usages] if args.key?(:usages)
@@ -1278,6 +1317,66 @@ module Google
1278
1317
  end
1279
1318
  end
1280
1319
 
1320
+ # Payload proto for "clouddeploy.googleapis.com/release_notification" Platform
1321
+ # Log event that describes the failure to send release status change Pub/Sub
1322
+ # notification.
1323
+ class ReleaseNotificationEvent
1324
+ include Google::Apis::Core::Hashable
1325
+
1326
+ # Debug message for when a notification fails to send.
1327
+ # Corresponds to the JSON property `message`
1328
+ # @return [String]
1329
+ attr_accessor :message
1330
+
1331
+ # The name of the `Release`.
1332
+ # Corresponds to the JSON property `release`
1333
+ # @return [String]
1334
+ attr_accessor :release
1335
+
1336
+ # Type of this notification, e.g. for a Pub/Sub failure.
1337
+ # Corresponds to the JSON property `type`
1338
+ # @return [String]
1339
+ attr_accessor :type
1340
+
1341
+ def initialize(**args)
1342
+ update!(**args)
1343
+ end
1344
+
1345
+ # Update properties of this object
1346
+ def update!(**args)
1347
+ @message = args[:message] if args.key?(:message)
1348
+ @release = args[:release] if args.key?(:release)
1349
+ @type = args[:type] if args.key?(:type)
1350
+ end
1351
+ end
1352
+
1353
+ # Payload proto for "clouddeploy.googleapis.com/release_render" Platform Log
1354
+ # event that describes the render status change.
1355
+ class ReleaseRenderEvent
1356
+ include Google::Apis::Core::Hashable
1357
+
1358
+ # Debug message for when a render transition occurs. Provides further details as
1359
+ # rendering progresses through render states.
1360
+ # Corresponds to the JSON property `message`
1361
+ # @return [String]
1362
+ attr_accessor :message
1363
+
1364
+ # The name of the `Release`.
1365
+ # Corresponds to the JSON property `release`
1366
+ # @return [String]
1367
+ attr_accessor :release
1368
+
1369
+ def initialize(**args)
1370
+ update!(**args)
1371
+ end
1372
+
1373
+ # Update properties of this object
1374
+ def update!(**args)
1375
+ @message = args[:message] if args.key?(:message)
1376
+ @release = args[:release] if args.key?(:release)
1377
+ end
1378
+ end
1379
+
1281
1380
  # A `Rollout` resource in the Google Cloud Deploy API. A `Rollout` contains
1282
1381
  # information around a specific deployment to a `Target`.
1283
1382
  class Rollout
@@ -1409,6 +1508,57 @@ module Google
1409
1508
  end
1410
1509
  end
1411
1510
 
1511
+ # Payload proto for "clouddeploy.googleapis.com/rollout_notification" Platform
1512
+ # Log event that describes the failure to send rollout status change Pub/Sub
1513
+ # notification.
1514
+ class RolloutNotificationEvent
1515
+ include Google::Apis::Core::Hashable
1516
+
1517
+ # Debug message for when a notification fails to send.
1518
+ # Corresponds to the JSON property `message`
1519
+ # @return [String]
1520
+ attr_accessor :message
1521
+
1522
+ # Unique identifier of the `DeliveryPipeline`.
1523
+ # Corresponds to the JSON property `pipelineUid`
1524
+ # @return [String]
1525
+ attr_accessor :pipeline_uid
1526
+
1527
+ # Unique identifier of the `Release`.
1528
+ # Corresponds to the JSON property `releaseUid`
1529
+ # @return [String]
1530
+ attr_accessor :release_uid
1531
+
1532
+ # The name of the `Rollout`.
1533
+ # Corresponds to the JSON property `rollout`
1534
+ # @return [String]
1535
+ attr_accessor :rollout
1536
+
1537
+ # ID of the `Target` that the rollout is deployed to.
1538
+ # Corresponds to the JSON property `targetId`
1539
+ # @return [String]
1540
+ attr_accessor :target_id
1541
+
1542
+ # Type of this notification, e.g. for a Pub/Sub failure.
1543
+ # Corresponds to the JSON property `type`
1544
+ # @return [String]
1545
+ attr_accessor :type
1546
+
1547
+ def initialize(**args)
1548
+ update!(**args)
1549
+ end
1550
+
1551
+ # Update properties of this object
1552
+ def update!(**args)
1553
+ @message = args[:message] if args.key?(:message)
1554
+ @pipeline_uid = args[:pipeline_uid] if args.key?(:pipeline_uid)
1555
+ @release_uid = args[:release_uid] if args.key?(:release_uid)
1556
+ @rollout = args[:rollout] if args.key?(:rollout)
1557
+ @target_id = args[:target_id] if args.key?(:target_id)
1558
+ @type = args[:type] if args.key?(:type)
1559
+ end
1560
+ end
1561
+
1412
1562
  # SerialPipeline defines a sequential set of stages for a `DeliveryPipeline`.
1413
1563
  class SerialPipeline
1414
1564
  include Google::Apis::Core::Hashable
@@ -1725,6 +1875,39 @@ module Google
1725
1875
  end
1726
1876
  end
1727
1877
 
1878
+ # Payload proto for "clouddeploy.googleapis.com/target_notification" Platform
1879
+ # Log event that describes the failure to send target status change Pub/Sub
1880
+ # notification.
1881
+ class TargetNotificationEvent
1882
+ include Google::Apis::Core::Hashable
1883
+
1884
+ # Debug message for when a notification fails to send.
1885
+ # Corresponds to the JSON property `message`
1886
+ # @return [String]
1887
+ attr_accessor :message
1888
+
1889
+ # The name of the `Target`.
1890
+ # Corresponds to the JSON property `target`
1891
+ # @return [String]
1892
+ attr_accessor :target
1893
+
1894
+ # Type of this notification, e.g. for a Pub/Sub failure.
1895
+ # Corresponds to the JSON property `type`
1896
+ # @return [String]
1897
+ attr_accessor :type
1898
+
1899
+ def initialize(**args)
1900
+ update!(**args)
1901
+ end
1902
+
1903
+ # Update properties of this object
1904
+ def update!(**args)
1905
+ @message = args[:message] if args.key?(:message)
1906
+ @target = args[:target] if args.key?(:target)
1907
+ @type = args[:type] if args.key?(:type)
1908
+ end
1909
+ end
1910
+
1728
1911
  # Details of rendering for a single target.
1729
1912
  class TargetRender
1730
1913
  include Google::Apis::Core::Hashable
@@ -1798,7 +1981,7 @@ module Google
1798
1981
  include Google::Apis::Core::Hashable
1799
1982
 
1800
1983
  # The set of permissions to check for the `resource`. Permissions with wildcards
1801
- # (such as '*' or 'storage.*') are not allowed. For more information see [IAM
1984
+ # (such as `*` or `storage.*`) are not allowed. For more information see [IAM
1802
1985
  # Overview](https://cloud.google.com/iam/docs/overview#permissions).
1803
1986
  # Corresponds to the JSON property `permissions`
1804
1987
  # @return [Array<String>]
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module ClouddeployV1
18
18
  # Version of the google-apis-clouddeploy_v1 gem
19
- GEM_VERSION = "0.6.0"
19
+ GEM_VERSION = "0.9.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.4.1"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20220314"
25
+ REVISION = "20220504"
26
26
  end
27
27
  end
28
28
  end
@@ -94,6 +94,12 @@ module Google
94
94
  include Google::Apis::Core::JsonObjectSupport
95
95
  end
96
96
 
97
+ class DeliveryPipelineNotificationEvent
98
+ class Representation < Google::Apis::Core::JsonRepresentation; end
99
+
100
+ include Google::Apis::Core::JsonObjectSupport
101
+ end
102
+
97
103
  class Empty
98
104
  class Representation < Google::Apis::Core::JsonRepresentation; end
99
105
 
@@ -202,12 +208,30 @@ module Google
202
208
  include Google::Apis::Core::JsonObjectSupport
203
209
  end
204
210
 
211
+ class ReleaseNotificationEvent
212
+ class Representation < Google::Apis::Core::JsonRepresentation; end
213
+
214
+ include Google::Apis::Core::JsonObjectSupport
215
+ end
216
+
217
+ class ReleaseRenderEvent
218
+ class Representation < Google::Apis::Core::JsonRepresentation; end
219
+
220
+ include Google::Apis::Core::JsonObjectSupport
221
+ end
222
+
205
223
  class Rollout
206
224
  class Representation < Google::Apis::Core::JsonRepresentation; end
207
225
 
208
226
  include Google::Apis::Core::JsonObjectSupport
209
227
  end
210
228
 
229
+ class RolloutNotificationEvent
230
+ class Representation < Google::Apis::Core::JsonRepresentation; end
231
+
232
+ include Google::Apis::Core::JsonObjectSupport
233
+ end
234
+
211
235
  class SerialPipeline
212
236
  class Representation < Google::Apis::Core::JsonRepresentation; end
213
237
 
@@ -250,6 +274,12 @@ module Google
250
274
  include Google::Apis::Core::JsonObjectSupport
251
275
  end
252
276
 
277
+ class TargetNotificationEvent
278
+ class Representation < Google::Apis::Core::JsonRepresentation; end
279
+
280
+ include Google::Apis::Core::JsonObjectSupport
281
+ end
282
+
253
283
  class TargetRender
254
284
  class Representation < Google::Apis::Core::JsonRepresentation; end
255
285
 
@@ -380,6 +410,15 @@ module Google
380
410
  end
381
411
  end
382
412
 
413
+ class DeliveryPipelineNotificationEvent
414
+ # @private
415
+ class Representation < Google::Apis::Core::JsonRepresentation
416
+ property :delivery_pipeline, as: 'deliveryPipeline'
417
+ property :message, as: 'message'
418
+ property :type, as: 'type'
419
+ end
420
+ end
421
+
383
422
  class Empty
384
423
  # @private
385
424
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -392,6 +431,7 @@ module Google
392
431
  property :artifact_storage, as: 'artifactStorage'
393
432
  property :default_pool, as: 'defaultPool', class: Google::Apis::ClouddeployV1::DefaultPool, decorator: Google::Apis::ClouddeployV1::DefaultPool::Representation
394
433
 
434
+ property :execution_timeout, as: 'executionTimeout'
395
435
  property :private_pool, as: 'privatePool', class: Google::Apis::ClouddeployV1::PrivatePool, decorator: Google::Apis::ClouddeployV1::PrivatePool::Representation
396
436
 
397
437
  property :service_account, as: 'serviceAccount'
@@ -580,6 +620,23 @@ module Google
580
620
  end
581
621
  end
582
622
 
623
+ class ReleaseNotificationEvent
624
+ # @private
625
+ class Representation < Google::Apis::Core::JsonRepresentation
626
+ property :message, as: 'message'
627
+ property :release, as: 'release'
628
+ property :type, as: 'type'
629
+ end
630
+ end
631
+
632
+ class ReleaseRenderEvent
633
+ # @private
634
+ class Representation < Google::Apis::Core::JsonRepresentation
635
+ property :message, as: 'message'
636
+ property :release, as: 'release'
637
+ end
638
+ end
639
+
583
640
  class Rollout
584
641
  # @private
585
642
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -603,6 +660,18 @@ module Google
603
660
  end
604
661
  end
605
662
 
663
+ class RolloutNotificationEvent
664
+ # @private
665
+ class Representation < Google::Apis::Core::JsonRepresentation
666
+ property :message, as: 'message'
667
+ property :pipeline_uid, as: 'pipelineUid'
668
+ property :release_uid, as: 'releaseUid'
669
+ property :rollout, as: 'rollout'
670
+ property :target_id, as: 'targetId'
671
+ property :type, as: 'type'
672
+ end
673
+ end
674
+
606
675
  class SerialPipeline
607
676
  # @private
608
677
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -677,6 +746,15 @@ module Google
677
746
  end
678
747
  end
679
748
 
749
+ class TargetNotificationEvent
750
+ # @private
751
+ class Representation < Google::Apis::Core::JsonRepresentation
752
+ property :message, as: 'message'
753
+ property :target, as: 'target'
754
+ property :type, as: 'type'
755
+ end
756
+ end
757
+
680
758
  class TargetRender
681
759
  # @private
682
760
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -114,8 +114,8 @@ module Google
114
114
  # The resource that owns the locations collection, if applicable.
115
115
  # @param [String] filter
116
116
  # A filter to narrow down results to a preferred subset. The filtering language
117
- # accepts strings like "displayName=tokyo", and is documented in more detail in [
118
- # AIP-160](https://google.aip.dev/160).
117
+ # accepts strings like `"displayName=tokyo"`, and is documented in more detail
118
+ # in [AIP-160](https://google.aip.dev/160).
119
119
  # @param [Fixnum] page_size
120
120
  # The maximum number of results to return. If not set, the service selects a
121
121
  # default.
@@ -301,8 +301,9 @@ module Google
301
301
  # Gets the access control policy for a resource. Returns an empty policy if the
302
302
  # resource exists and does not have a policy set.
303
303
  # @param [String] resource
304
- # REQUIRED: The resource for which the policy is being requested. See the
305
- # operation documentation for the appropriate value for this field.
304
+ # REQUIRED: The resource for which the policy is being requested. See [Resource
305
+ # names](https://cloud.google.com/apis/design/resource_names) for the
306
+ # appropriate value for this field.
306
307
  # @param [Fixnum] options_requested_policy_version
307
308
  # Optional. The maximum policy version that will be used to format the policy.
308
309
  # Valid values are 0, 1, and 3. Requests specifying an invalid value will be
@@ -455,8 +456,9 @@ module Google
455
456
  # existing policy. Can return `NOT_FOUND`, `INVALID_ARGUMENT`, and `
456
457
  # PERMISSION_DENIED` errors.
457
458
  # @param [String] resource
458
- # REQUIRED: The resource for which the policy is being specified. See the
459
- # operation documentation for the appropriate value for this field.
459
+ # REQUIRED: The resource for which the policy is being specified. See [Resource
460
+ # names](https://cloud.google.com/apis/design/resource_names) for the
461
+ # appropriate value for this field.
460
462
  # @param [Google::Apis::ClouddeployV1::SetIamPolicyRequest] set_iam_policy_request_object
461
463
  # @param [String] fields
462
464
  # Selector specifying which fields to include in a partial response.
@@ -493,8 +495,9 @@ module Google
493
495
  # permission-aware UIs and command-line tools, not for authorization checking.
494
496
  # This operation may "fail open" without warning.
495
497
  # @param [String] resource
496
- # REQUIRED: The resource for which the policy detail is being requested. See the
497
- # operation documentation for the appropriate value for this field.
498
+ # REQUIRED: The resource for which the policy detail is being requested. See [
499
+ # Resource names](https://cloud.google.com/apis/design/resource_names) for the
500
+ # appropriate value for this field.
498
501
  # @param [Google::Apis::ClouddeployV1::TestIamPermissionsRequest] test_iam_permissions_request_object
499
502
  # @param [String] fields
500
503
  # Selector specifying which fields to include in a partial response.
@@ -1124,8 +1127,9 @@ module Google
1124
1127
  # Gets the access control policy for a resource. Returns an empty policy if the
1125
1128
  # resource exists and does not have a policy set.
1126
1129
  # @param [String] resource
1127
- # REQUIRED: The resource for which the policy is being requested. See the
1128
- # operation documentation for the appropriate value for this field.
1130
+ # REQUIRED: The resource for which the policy is being requested. See [Resource
1131
+ # names](https://cloud.google.com/apis/design/resource_names) for the
1132
+ # appropriate value for this field.
1129
1133
  # @param [Fixnum] options_requested_policy_version
1130
1134
  # Optional. The maximum policy version that will be used to format the policy.
1131
1135
  # Valid values are 0, 1, and 3. Requests specifying an invalid value will be
@@ -1279,8 +1283,9 @@ module Google
1279
1283
  # existing policy. Can return `NOT_FOUND`, `INVALID_ARGUMENT`, and `
1280
1284
  # PERMISSION_DENIED` errors.
1281
1285
  # @param [String] resource
1282
- # REQUIRED: The resource for which the policy is being specified. See the
1283
- # operation documentation for the appropriate value for this field.
1286
+ # REQUIRED: The resource for which the policy is being specified. See [Resource
1287
+ # names](https://cloud.google.com/apis/design/resource_names) for the
1288
+ # appropriate value for this field.
1284
1289
  # @param [Google::Apis::ClouddeployV1::SetIamPolicyRequest] set_iam_policy_request_object
1285
1290
  # @param [String] fields
1286
1291
  # Selector specifying which fields to include in a partial response.
@@ -1317,8 +1322,9 @@ module Google
1317
1322
  # permission-aware UIs and command-line tools, not for authorization checking.
1318
1323
  # This operation may "fail open" without warning.
1319
1324
  # @param [String] resource
1320
- # REQUIRED: The resource for which the policy detail is being requested. See the
1321
- # operation documentation for the appropriate value for this field.
1325
+ # REQUIRED: The resource for which the policy detail is being requested. See [
1326
+ # Resource names](https://cloud.google.com/apis/design/resource_names) for the
1327
+ # appropriate value for this field.
1322
1328
  # @param [Google::Apis::ClouddeployV1::TestIamPermissionsRequest] test_iam_permissions_request_object
1323
1329
  # @param [String] fields
1324
1330
  # Selector specifying which fields to include in a partial response.
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.6.0
4
+ version: 0.9.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: 2022-03-28 00:00:00.000000000 Z
11
+ date: 2022-05-16 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.6.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-clouddeploy_v1/v0.9.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: []