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 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
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.
 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ JobMessage
Returns a new instance of JobMessage
      1938 1939 1940  | 
    
      # File 'generated/google/apis/dataflow_v1b3/classes.rb', line 1938 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#id ⇒ String
Deprecated.
Corresponds to the JSON property id
      1921 1922 1923  | 
    
      # File 'generated/google/apis/dataflow_v1b3/classes.rb', line 1921 def id @id end  | 
  
#message_importance ⇒ String
Importance level of the message.
Corresponds to the JSON property messageImportance
      1926 1927 1928  | 
    
      # File 'generated/google/apis/dataflow_v1b3/classes.rb', line 1926 def @message_importance end  | 
  
#message_text ⇒ String
The text of the message.
Corresponds to the JSON property messageText
      1931 1932 1933  | 
    
      # File 'generated/google/apis/dataflow_v1b3/classes.rb', line 1931 def @message_text end  | 
  
#time ⇒ String
The timestamp of the message.
Corresponds to the JSON property time
      1936 1937 1938  | 
    
      # File 'generated/google/apis/dataflow_v1b3/classes.rb', line 1936 def time @time end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      1943 1944 1945 1946 1947 1948  | 
    
      # File 'generated/google/apis/dataflow_v1b3/classes.rb', line 1943 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  |