google-apis-clouddeploy_v1 0.31.0 → 0.33.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 5f3a1ae0bc1b2d793963c007d93645f7439236a53d5a647e48fe717d7bb7aa3c
4
- data.tar.gz: ecb5f9cc5b1dde182b6c2255120e7da7f941cfc17e99460ba78a4b9cfddee45b
3
+ metadata.gz: d68220786da5c28a420155451e3e466f85821bb09f8a00e3430340783b7b12ca
4
+ data.tar.gz: 8af2ee0861a5199de8e481ea7a301e254e05654dc7416d4139cd557cf33ad86a
5
5
  SHA512:
6
- metadata.gz: 4780a7170a6953d8b7a8a624b814ba056e71e1a1f15cb105cdcf8dde24ddd46d21f2c2cde81839ba3defbd353c5a31cfb5b53c69248fcfeb587bb195e95af9d5
7
- data.tar.gz: dbce3d95711d052bbcd0a124422369f375d366002491f6827c0dc99d50eec80535395f624a38fde8120c18a82dcf8d7c09afe9563b58ba4d9870f95353db1050
6
+ metadata.gz: e4c2d1c5619729efd5be4e421659a7639de6254a8c9aa74006b9d0f050f33b3dca3f7f5d9259ee85d9cba4000f40068f6fb62598a8f744a07233cc8a086b9907
7
+ data.tar.gz: 06b62308ffda21ddc7e145d57968ce379a2ed4f3ac39a01365020f8361087e21a8d193e502ff5879ab6608dbc4fb62508e9e873d9433a06460b4b6df7714673c
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-clouddeploy_v1
2
2
 
3
+ ### v0.33.0 (2023-10-22)
4
+
5
+ * Regenerated from discovery document revision 20231015
6
+
7
+ ### v0.32.0 (2023-09-24)
8
+
9
+ * Regenerated from discovery document revision 20230913
10
+
3
11
  ### v0.31.0 (2023-09-17)
4
12
 
5
13
  * Regenerated from discovery document revision 20230904
@@ -246,6 +246,102 @@ module Google
246
246
  end
247
247
  end
248
248
 
249
+ # Payload proto for "clouddeploy.googleapis.com/automation" Platform Log event
250
+ # that describes the Automation related events.
251
+ class AutomationEvent
252
+ include Google::Apis::Core::Hashable
253
+
254
+ # The name of the `AutomationRun`.
255
+ # Corresponds to the JSON property `automation`
256
+ # @return [String]
257
+ attr_accessor :automation
258
+
259
+ # Debug message for when there is an update on the AutomationRun. Provides
260
+ # further details about the resource creation or state change.
261
+ # Corresponds to the JSON property `message`
262
+ # @return [String]
263
+ attr_accessor :message
264
+
265
+ # Unique identifier of the `DeliveryPipeline`.
266
+ # Corresponds to the JSON property `pipelineUid`
267
+ # @return [String]
268
+ attr_accessor :pipeline_uid
269
+
270
+ # Type of this notification, e.g. for a Pub/Sub failure.
271
+ # Corresponds to the JSON property `type`
272
+ # @return [String]
273
+ attr_accessor :type
274
+
275
+ def initialize(**args)
276
+ update!(**args)
277
+ end
278
+
279
+ # Update properties of this object
280
+ def update!(**args)
281
+ @automation = args[:automation] if args.key?(:automation)
282
+ @message = args[:message] if args.key?(:message)
283
+ @pipeline_uid = args[:pipeline_uid] if args.key?(:pipeline_uid)
284
+ @type = args[:type] if args.key?(:type)
285
+ end
286
+ end
287
+
288
+ # Payload proto for "clouddeploy.googleapis.com/automation_run" Platform Log
289
+ # event that describes the AutomationRun related events.
290
+ class AutomationRunEvent
291
+ include Google::Apis::Core::Hashable
292
+
293
+ # Identifier of the `Automation`.
294
+ # Corresponds to the JSON property `automationId`
295
+ # @return [String]
296
+ attr_accessor :automation_id
297
+
298
+ # The name of the `AutomationRun`.
299
+ # Corresponds to the JSON property `automationRun`
300
+ # @return [String]
301
+ attr_accessor :automation_run
302
+
303
+ # ID of the `Target` to which the `AutomationRun` is created.
304
+ # Corresponds to the JSON property `destinationTargetId`
305
+ # @return [String]
306
+ attr_accessor :destination_target_id
307
+
308
+ # Debug message for when there is an update on the AutomationRun. Provides
309
+ # further details about the resource creation or state change.
310
+ # Corresponds to the JSON property `message`
311
+ # @return [String]
312
+ attr_accessor :message
313
+
314
+ # Unique identifier of the `DeliveryPipeline`.
315
+ # Corresponds to the JSON property `pipelineUid`
316
+ # @return [String]
317
+ attr_accessor :pipeline_uid
318
+
319
+ # Identifier of the `Automation` rule.
320
+ # Corresponds to the JSON property `ruleId`
321
+ # @return [String]
322
+ attr_accessor :rule_id
323
+
324
+ # Type of this notification, e.g. for a Pub/Sub failure.
325
+ # Corresponds to the JSON property `type`
326
+ # @return [String]
327
+ attr_accessor :type
328
+
329
+ def initialize(**args)
330
+ update!(**args)
331
+ end
332
+
333
+ # Update properties of this object
334
+ def update!(**args)
335
+ @automation_id = args[:automation_id] if args.key?(:automation_id)
336
+ @automation_run = args[:automation_run] if args.key?(:automation_run)
337
+ @destination_target_id = args[:destination_target_id] if args.key?(:destination_target_id)
338
+ @message = args[:message] if args.key?(:message)
339
+ @pipeline_uid = args[:pipeline_uid] if args.key?(:pipeline_uid)
340
+ @rule_id = args[:rule_id] if args.key?(:rule_id)
341
+ @type = args[:type] if args.key?(:type)
342
+ end
343
+ end
344
+
249
345
  # Associates `members`, or principals, with a `role`.
250
346
  class Binding
251
347
  include Google::Apis::Core::Hashable
@@ -530,6 +626,12 @@ module Google
530
626
  class CloudRunMetadata
531
627
  include Google::Apis::Core::Hashable
532
628
 
629
+ # Output only. The name of the Cloud Run job that is associated with a `Rollout`.
630
+ # Format is projects/`project`/locations/`location`/jobs/`job_name`.
631
+ # Corresponds to the JSON property `job`
632
+ # @return [String]
633
+ attr_accessor :job
634
+
533
635
  # Output only. The Cloud Run Revision id associated with a `Rollout`.
534
636
  # Corresponds to the JSON property `revision`
535
637
  # @return [String]
@@ -552,6 +654,7 @@ module Google
552
654
 
553
655
  # Update properties of this object
554
656
  def update!(**args)
657
+ @job = args[:job] if args.key?(:job)
555
658
  @revision = args[:revision] if args.key?(:revision)
556
659
  @service = args[:service] if args.key?(:service)
557
660
  @service_urls = args[:service_urls] if args.key?(:service_urls)
@@ -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.31.0"
19
+ GEM_VERSION = "0.33.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.12.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20230904"
25
+ REVISION = "20231015"
26
26
  end
27
27
  end
28
28
  end
@@ -88,6 +88,18 @@ module Google
88
88
  include Google::Apis::Core::JsonObjectSupport
89
89
  end
90
90
 
91
+ class AutomationEvent
92
+ class Representation < Google::Apis::Core::JsonRepresentation; end
93
+
94
+ include Google::Apis::Core::JsonObjectSupport
95
+ end
96
+
97
+ class AutomationRunEvent
98
+ class Representation < Google::Apis::Core::JsonRepresentation; end
99
+
100
+ include Google::Apis::Core::JsonObjectSupport
101
+ end
102
+
91
103
  class Binding
92
104
  class Representation < Google::Apis::Core::JsonRepresentation; end
93
105
 
@@ -746,6 +758,29 @@ module Google
746
758
  end
747
759
  end
748
760
 
761
+ class AutomationEvent
762
+ # @private
763
+ class Representation < Google::Apis::Core::JsonRepresentation
764
+ property :automation, as: 'automation'
765
+ property :message, as: 'message'
766
+ property :pipeline_uid, as: 'pipelineUid'
767
+ property :type, as: 'type'
768
+ end
769
+ end
770
+
771
+ class AutomationRunEvent
772
+ # @private
773
+ class Representation < Google::Apis::Core::JsonRepresentation
774
+ property :automation_id, as: 'automationId'
775
+ property :automation_run, as: 'automationRun'
776
+ property :destination_target_id, as: 'destinationTargetId'
777
+ property :message, as: 'message'
778
+ property :pipeline_uid, as: 'pipelineUid'
779
+ property :rule_id, as: 'ruleId'
780
+ property :type, as: 'type'
781
+ end
782
+ end
783
+
749
784
  class Binding
750
785
  # @private
751
786
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -833,6 +868,7 @@ module Google
833
868
  class CloudRunMetadata
834
869
  # @private
835
870
  class Representation < Google::Apis::Core::JsonRepresentation
871
+ property :job, as: 'job'
836
872
  property :revision, as: 'revision'
837
873
  property :service, as: 'service'
838
874
  collection :service_urls, as: 'serviceUrls'
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.31.0
4
+ version: 0.33.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-09-17 00:00:00.000000000 Z
11
+ date: 2023-10-29 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.31.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-clouddeploy_v1/v0.33.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: []