Class: Google::Apis::ClouddeployV1::JobRunNotificationEvent
- Inherits:
-
Object
- Object
- Google::Apis::ClouddeployV1::JobRunNotificationEvent
- 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/jobrun_notification" Platform Log event that describes the failure to send JobRun resource update Pub/Sub notification.
Instance Attribute Summary collapse
-
#job_run ⇒ String
The name of the
JobRun. -
#message ⇒ String
Debug message for when a notification fails to send.
-
#pipeline_uid ⇒ String
Unique identifier of the
DeliveryPipeline. -
#release_uid ⇒ String
Unique identifier of the
Release. -
#rollout_uid ⇒ String
Unique identifier of the
Rollout. -
#target_id ⇒ String
ID of the
Target. -
#type ⇒ String
Type of this notification, e.g.
Instance Method Summary collapse
-
#initialize(**args) ⇒ JobRunNotificationEvent
constructor
A new instance of JobRunNotificationEvent.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ JobRunNotificationEvent
Returns a new instance of JobRunNotificationEvent.
2282 2283 2284 |
# File 'lib/google/apis/clouddeploy_v1/classes.rb', line 2282 def initialize(**args) update!(**args) end |
Instance Attribute Details
#job_run ⇒ String
The name of the JobRun.
Corresponds to the JSON property jobRun
2250 2251 2252 |
# File 'lib/google/apis/clouddeploy_v1/classes.rb', line 2250 def job_run @job_run end |
#message ⇒ String
Debug message for when a notification fails to send.
Corresponds to the JSON property message
2255 2256 2257 |
# File 'lib/google/apis/clouddeploy_v1/classes.rb', line 2255 def @message end |
#pipeline_uid ⇒ String
Unique identifier of the DeliveryPipeline.
Corresponds to the JSON property pipelineUid
2260 2261 2262 |
# File 'lib/google/apis/clouddeploy_v1/classes.rb', line 2260 def pipeline_uid @pipeline_uid end |
#release_uid ⇒ String
Unique identifier of the Release.
Corresponds to the JSON property releaseUid
2265 2266 2267 |
# File 'lib/google/apis/clouddeploy_v1/classes.rb', line 2265 def release_uid @release_uid end |
#rollout_uid ⇒ String
Unique identifier of the Rollout.
Corresponds to the JSON property rolloutUid
2270 2271 2272 |
# File 'lib/google/apis/clouddeploy_v1/classes.rb', line 2270 def rollout_uid @rollout_uid end |
#target_id ⇒ String
ID of the Target.
Corresponds to the JSON property targetId
2275 2276 2277 |
# File 'lib/google/apis/clouddeploy_v1/classes.rb', line 2275 def target_id @target_id end |
#type ⇒ String
Type of this notification, e.g. for a Pub/Sub failure.
Corresponds to the JSON property type
2280 2281 2282 |
# File 'lib/google/apis/clouddeploy_v1/classes.rb', line 2280 def type @type end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2287 2288 2289 2290 2291 2292 2293 2294 2295 |
# File 'lib/google/apis/clouddeploy_v1/classes.rb', line 2287 def update!(**args) @job_run = args[:job_run] if args.key?(:job_run) @message = args[:message] if args.key?(:message) @pipeline_uid = args[:pipeline_uid] if args.key?(:pipeline_uid) @release_uid = args[:release_uid] if args.key?(:release_uid) @rollout_uid = args[:rollout_uid] if args.key?(:rollout_uid) @target_id = args[:target_id] if args.key?(:target_id) @type = args[:type] if args.key?(:type) end |