Class: Google::Apis::DataflowV1b3::JobMessage

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ JobMessage

Returns a new instance of JobMessage



1963
1964
1965
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 1963

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#idString

Deprecated. Corresponds to the JSON property id

Returns:

  • (String)


1946
1947
1948
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 1946

def id
  @id
end

#message_importanceString

Importance level of the message. Corresponds to the JSON property messageImportance

Returns:

  • (String)


1951
1952
1953
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 1951

def message_importance
  @message_importance
end

#message_textString

The text of the message. Corresponds to the JSON property messageText

Returns:

  • (String)


1956
1957
1958
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 1956

def message_text
  @message_text
end

#timeString

The timestamp of the message. Corresponds to the JSON property time

Returns:

  • (String)


1961
1962
1963
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 1961

def time
  @time
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1968
1969
1970
1971
1972
1973
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 1968

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