Class: Google::Apis::WorkflowexecutionsV1::ListStepEntriesResponse

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

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ListStepEntriesResponse

Returns a new instance of ListStepEntriesResponse.



340
341
342
# File 'lib/google/apis/workflowexecutions_v1/classes.rb', line 340

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

Instance Attribute Details

#next_page_tokenString

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

Returns:

  • (String)


326
327
328
# File 'lib/google/apis/workflowexecutions_v1/classes.rb', line 326

def next_page_token
  @next_page_token
end

#step_entriesArray<Google::Apis::WorkflowexecutionsV1::StepEntry>

The list of entries. Corresponds to the JSON property stepEntries



331
332
333
# File 'lib/google/apis/workflowexecutions_v1/classes.rb', line 331

def step_entries
  @step_entries
end

#total_sizeFixnum

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

Returns:

  • (Fixnum)


338
339
340
# File 'lib/google/apis/workflowexecutions_v1/classes.rb', line 338

def total_size
  @total_size
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



345
346
347
348
349
# File 'lib/google/apis/workflowexecutions_v1/classes.rb', line 345

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