class Google::Apis::DataflowV1b3::JobMessage

A particular message pertaining to a Dataflow job.

Attributes

id[RW]

Deprecated. Corresponds to the JSON property `id` @return [String]

message_importance[RW]

Importance level of the message. Corresponds to the JSON property `messageImportance` @return [String]

message_text[RW]

The text of the message. Corresponds to the JSON property `messageText` @return [String]

time[RW]

The timestamp of the message. Corresponds to the JSON property `time` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/dataflow_v1b3/classes.rb, line 2291
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/dataflow_v1b3/classes.rb, line 2296
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