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.
1005 1006 1007 |
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 1005 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
988 989 990 |
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 988 def id @id end |
#message_importance ⇒ String
Importance level of the message.
Corresponds to the JSON property messageImportance
1003 1004 1005 |
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 1003 def end |
#message_text ⇒ String
The text of the message.
Corresponds to the JSON property messageText
998 999 1000 |
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 998 def end |
#time ⇒ String
The timestamp of the message.
Corresponds to the JSON property time
993 994 995 |
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 993 def time @time end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1010 1011 1012 1013 1014 1015 |
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 1010 def update!(**args) @id = args[:id] if args.key?(:id) @time = args[:time] if args.key?(:time) = args[:message_text] if args.key?(:message_text) = args[:message_importance] if args.key?(:message_importance) end |