Class: Google::Apis::DataflowV1b3::JobMessage
- Inherits:
-
Object
- Object
- Google::Apis::DataflowV1b3::JobMessage
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/dataflow_v1b3/classes.rb,
generated/google/apis/dataflow_v1b3/representations.rb,
generated/google/apis/dataflow_v1b3/representations.rb
Overview
A particular message pertaining to a Dataflow job.
Instance Attribute Summary collapse
-
#id ⇒ String
Identifies the message.
-
#message_importance ⇒ String
Importance level of the message.
-
#message_text ⇒ String
The text of the message.
-
#time ⇒ String
The timestamp of the message.
Instance Method Summary collapse
-
#initialize(**args) ⇒ JobMessage
constructor
A new instance of JobMessage.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ JobMessage
Returns a new instance of JobMessage
2829 2830 2831 |
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 2829 def initialize(**args) update!(**args) end |
Instance Attribute Details
#id ⇒ String
Identifies the message. This is automatically generated by the
service; the caller should treat it as an opaque string.
Corresponds to the JSON property id
2827 2828 2829 |
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 2827 def id @id end |
#message_importance ⇒ String
Importance level of the message.
Corresponds to the JSON property messageImportance
2816 2817 2818 |
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 2816 def @message_importance end |
#message_text ⇒ String
The text of the message.
Corresponds to the JSON property messageText
2811 2812 2813 |
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 2811 def @message_text end |
#time ⇒ String
The timestamp of the message.
Corresponds to the JSON property time
2821 2822 2823 |
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 2821 def time @time end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2834 2835 2836 2837 2838 2839 |
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 2834 def update!(**args) @message_text = args[:message_text] if args.key?(:message_text) @message_importance = args[:message_importance] if args.key?(:message_importance) @time = args[:time] if args.key?(:time) @id = args[:id] if args.key?(:id) end |