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

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

Response to a request to list job messages.

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) ⇒ ListJobMessagesResponse

Returns a new instance of ListJobMessagesResponse



2361
2362
2363
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 2361

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



2349
2350
2351
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 2349

def autoscaling_events
  @autoscaling_events
end

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

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



2354
2355
2356
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 2354

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)


2359
2360
2361
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 2359

def next_page_token
  @next_page_token
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2366
2367
2368
2369
2370
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 2366

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