google-apis-clouddeploy_v1 0.31.0 → 0.32.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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d7910f7c069f294da5acc3525e4c80a3cba103b05da41b4023e76bb0f4ff3d24
|
4
|
+
data.tar.gz: 56fb84808983970b89c8032eb2360ffba43263a71c14c612455958997965cb42
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9837d0b5b4177f896e88ac2eddd64847812d94c946ef45a25087ebf85dabaf72058d4d2eaf8cb26edb4e87c08476c65a76620c913dea2a206d4fedd1f0fbb865
|
7
|
+
data.tar.gz: 46b9f2566ca2b709c037a008a200154341b81189ee9a83c23079f5db1c123a8b1ba0c652d7b3635ad1fcdc30043400a3760350123961acd7d750d3e745773627
|
data/CHANGELOG.md
CHANGED
@@ -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
|
@@ -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.
|
19
|
+
GEM_VERSION = "0.32.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 = "
|
25
|
+
REVISION = "20230913"
|
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
|
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.
|
4
|
+
version: 0.32.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-
|
11
|
+
date: 2023-09-24 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.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-clouddeploy_v1/v0.32.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: []
|