Class: Google::Apis::DataflowV1b3::ListJobMessagesResponse

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

Response to a request to list job messages.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ListJobMessagesResponse

Returns a new instance of ListJobMessagesResponse.



3126
3127
3128
# File 'lib/google/apis/dataflow_v1b3/classes.rb', line 3126

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

Instance Attribute Details

#autoscaling_eventsArray<Google::Apis::DataflowV1b3::AutoscalingEvent>

Autoscaling events in ascending timestamp order. Corresponds to the JSON property autoscalingEvents



3114
3115
3116
# File 'lib/google/apis/dataflow_v1b3/classes.rb', line 3114

def autoscaling_events
  @autoscaling_events
end

#job_messagesArray<Google::Apis::DataflowV1b3::JobMessage>

Messages in ascending timestamp order. Corresponds to the JSON property jobMessages



3119
3120
3121
# File 'lib/google/apis/dataflow_v1b3/classes.rb', line 3119

def job_messages
  @job_messages
end

#next_page_tokenString

The token to obtain the next page of results if there are more. Corresponds to the JSON property nextPageToken

Returns:

  • (String)


3124
3125
3126
# File 'lib/google/apis/dataflow_v1b3/classes.rb', line 3124

def next_page_token
  @next_page_token
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3131
3132
3133
3134
3135
# File 'lib/google/apis/dataflow_v1b3/classes.rb', line 3131

def update!(**args)
  @autoscaling_events = args[:autoscaling_events] if args.key?(:autoscaling_events)
  @job_messages = args[:job_messages] if args.key?(:job_messages)
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
end