class Google::Apis::DataflowV1b3::ListJobMessagesResponse
Response to a request to list job messages.
Attributes
autoscaling_events[RW]
Autoscaling events in ascending timestamp order. Corresponds to the JSON property `autoscalingEvents` @return [Array<Google::Apis::DataflowV1b3::AutoscalingEvent>]
job_messages[RW]
Messages in ascending timestamp order. Corresponds to the JSON property `jobMessages` @return [Array<Google::Apis::DataflowV1b3::JobMessage>]
next_page_token[RW]
The token to obtain the next page of results if there are more. Corresponds to the JSON property `nextPageToken` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/dataflow_v1b3/classes.rb, line 2751 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 2756 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