Class: Google::Apis::ClouddeployV1::ReleaseRenderEvent
- Inherits:
-
Object
- Object
- Google::Apis::ClouddeployV1::ReleaseRenderEvent
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/clouddeploy_v1/classes.rb,
lib/google/apis/clouddeploy_v1/representations.rb,
lib/google/apis/clouddeploy_v1/representations.rb
Overview
Payload proto for "clouddeploy.googleapis.com/release_render" Platform Log event that describes the render status change.
Instance Attribute Summary collapse
-
#message ⇒ String
Debug message for when a render transition occurs.
-
#pipeline_uid ⇒ String
Unique identifier of the
DeliveryPipeline
. -
#release ⇒ String
The name of the release.
-
#release_render_state ⇒ String
The state of the release render.
-
#type ⇒ String
Type of this notification, e.g.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ReleaseRenderEvent
constructor
A new instance of ReleaseRenderEvent.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ReleaseRenderEvent
Returns a new instance of ReleaseRenderEvent.
3775 3776 3777 |
# File 'lib/google/apis/clouddeploy_v1/classes.rb', line 3775 def initialize(**args) update!(**args) end |
Instance Attribute Details
#message ⇒ String
Debug message for when a render transition occurs. Provides further details as
rendering progresses through render states.
Corresponds to the JSON property message
3751 3752 3753 |
# File 'lib/google/apis/clouddeploy_v1/classes.rb', line 3751 def @message end |
#pipeline_uid ⇒ String
Unique identifier of the DeliveryPipeline
.
Corresponds to the JSON property pipelineUid
3756 3757 3758 |
# File 'lib/google/apis/clouddeploy_v1/classes.rb', line 3756 def pipeline_uid @pipeline_uid end |
#release ⇒ String
The name of the release. release_uid is not in this log message because we
write some of these log messages at release creation time, before we've
generated the uid.
Corresponds to the JSON property release
3763 3764 3765 |
# File 'lib/google/apis/clouddeploy_v1/classes.rb', line 3763 def release @release end |
#release_render_state ⇒ String
The state of the release render.
Corresponds to the JSON property releaseRenderState
3768 3769 3770 |
# File 'lib/google/apis/clouddeploy_v1/classes.rb', line 3768 def release_render_state @release_render_state end |
#type ⇒ String
Type of this notification, e.g. for a release render state change event.
Corresponds to the JSON property type
3773 3774 3775 |
# File 'lib/google/apis/clouddeploy_v1/classes.rb', line 3773 def type @type end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3780 3781 3782 3783 3784 3785 3786 |
# File 'lib/google/apis/clouddeploy_v1/classes.rb', line 3780 def update!(**args) @message = args[:message] if args.key?(:message) @pipeline_uid = args[:pipeline_uid] if args.key?(:pipeline_uid) @release = args[:release] if args.key?(:release) @release_render_state = args[:release_render_state] if args.key?(:release_render_state) @type = args[:type] if args.key?(:type) end |