Class: Google::Apis::DataflowV1b3::JobMessage
- Inherits:
-
Object
- Object
- Google::Apis::DataflowV1b3::JobMessage
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/dataflow_v1b3/classes.rb,
lib/google/apis/dataflow_v1b3/representations.rb,
lib/google/apis/dataflow_v1b3/representations.rb
Overview
A particular message pertaining to a Dataflow job.
Instance Attribute Summary collapse
-
#id ⇒ String
Deprecated.
-
#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.
Constructor Details
#initialize(**args) ⇒ JobMessage
Returns a new instance of JobMessage.
2316 2317 2318 |
# File 'lib/google/apis/dataflow_v1b3/classes.rb', line 2316 def initialize(**args) update!(**args) end |
Instance Attribute Details
#id ⇒ String
Deprecated.
Corresponds to the JSON property id
2299 2300 2301 |
# File 'lib/google/apis/dataflow_v1b3/classes.rb', line 2299 def id @id end |
#message_importance ⇒ String
Importance level of the message.
Corresponds to the JSON property messageImportance
2304 2305 2306 |
# File 'lib/google/apis/dataflow_v1b3/classes.rb', line 2304 def @message_importance end |
#message_text ⇒ String
The text of the message.
Corresponds to the JSON property messageText
2309 2310 2311 |
# File 'lib/google/apis/dataflow_v1b3/classes.rb', line 2309 def @message_text end |
#time ⇒ String
The timestamp of the message.
Corresponds to the JSON property time
2314 2315 2316 |
# File 'lib/google/apis/dataflow_v1b3/classes.rb', line 2314 def time @time end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2321 2322 2323 2324 2325 2326 |
# File 'lib/google/apis/dataflow_v1b3/classes.rb', line 2321 def update!(**args) @id = args[:id] if args.key?(:id) @message_importance = args[:message_importance] if args.key?(:message_importance) @message_text = args[:message_text] if args.key?(:message_text) @time = args[:time] if args.key?(:time) end |