Class: Google::Apis::DataflowV1b3::ListJobMessagesResponse
- Inherits:
-
Object
- Object
- Google::Apis::DataflowV1b3::ListJobMessagesResponse
- 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
-
#job_messages ⇒ Array<Google::Apis::DataflowV1b3::JobMessage>
Messages in ascending timestamp order.
-
#next_page_token ⇒ String
The token to obtain the next page of results if there are more.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ListJobMessagesResponse
constructor
A new instance of ListJobMessagesResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ ListJobMessagesResponse
Returns a new instance of ListJobMessagesResponse.
938 939 940 |
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 938 def initialize(**args) update!(**args) end |
Instance Attribute Details
#job_messages ⇒ Array<Google::Apis::DataflowV1b3::JobMessage>
Messages in ascending timestamp order.
Corresponds to the JSON property jobMessages
931 932 933 |
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 931 def @job_messages end |
#next_page_token ⇒ String
The token to obtain the next page of results if there are more.
Corresponds to the JSON property nextPageToken
936 937 938 |
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 936 def next_page_token @next_page_token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
943 944 945 946 |
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 943 def update!(**args) @job_messages = args[:job_messages] if args.key?(:job_messages) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end |