Class: Google::Apis::WorkflowexecutionsV1::ListStepEntriesResponse
- Inherits:
-
Object
- Object
- Google::Apis::WorkflowexecutionsV1::ListStepEntriesResponse
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/workflowexecutions_v1/classes.rb,
lib/google/apis/workflowexecutions_v1/representations.rb,
lib/google/apis/workflowexecutions_v1/representations.rb
Overview
Response message for ExecutionHistory.ListStepEntries.
Instance Attribute Summary collapse
-
#next_page_token ⇒ String
A token to retrieve next page of results.
-
#step_entries ⇒ Array<Google::Apis::WorkflowexecutionsV1::StepEntry>
The list of entries.
-
#total_size ⇒ Fixnum
Indicates the total number of StepEntries that matched the request filter.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ListStepEntriesResponse
constructor
A new instance of ListStepEntriesResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ListStepEntriesResponse
Returns a new instance of ListStepEntriesResponse.
379 380 381 |
# File 'lib/google/apis/workflowexecutions_v1/classes.rb', line 379 def initialize(**args) update!(**args) end |
Instance Attribute Details
#next_page_token ⇒ String
A token to retrieve next page of results. Pass this value in the
ListStepEntriesRequest.page_token field in the subsequent call to
ListStepEntries
method to retrieve the next page of results.
Corresponds to the JSON property nextPageToken
365 366 367 |
# File 'lib/google/apis/workflowexecutions_v1/classes.rb', line 365 def next_page_token @next_page_token end |
#step_entries ⇒ Array<Google::Apis::WorkflowexecutionsV1::StepEntry>
The list of entries.
Corresponds to the JSON property stepEntries
370 371 372 |
# File 'lib/google/apis/workflowexecutions_v1/classes.rb', line 370 def step_entries @step_entries end |
#total_size ⇒ Fixnum
Indicates the total number of StepEntries that matched the request filter. For
running executions, this number shows the number of StepEntries that are
executed thus far.
Corresponds to the JSON property totalSize
377 378 379 |
# File 'lib/google/apis/workflowexecutions_v1/classes.rb', line 377 def total_size @total_size end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
384 385 386 387 388 |
# File 'lib/google/apis/workflowexecutions_v1/classes.rb', line 384 def update!(**args) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @step_entries = args[:step_entries] if args.key?(:step_entries) @total_size = args[:total_size] if args.key?(:total_size) end |