Class: Google::Apis::WorkflowsV1beta::ListWorkflowsResponse
- Inherits:
-
Object
- Object
- Google::Apis::WorkflowsV1beta::ListWorkflowsResponse
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/workflows_v1beta/classes.rb,
generated/google/apis/workflows_v1beta/representations.rb,
generated/google/apis/workflows_v1beta/representations.rb
Overview
Response for the ListWorkflows method.
Instance Attribute Summary collapse
-
#next_page_token ⇒ String
A token, which can be sent as
page_token
to retrieve the next page. -
#unreachable ⇒ Array<String>
Unreachable resources.
-
#workflows ⇒ Array<Google::Apis::WorkflowsV1beta::Workflow>
The workflows which match the request.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ListWorkflowsResponse
constructor
A new instance of ListWorkflowsResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ListWorkflowsResponse
Returns a new instance of ListWorkflowsResponse.
112 113 114 |
# File 'generated/google/apis/workflows_v1beta/classes.rb', line 112 def initialize(**args) update!(**args) end |
Instance Attribute Details
#next_page_token ⇒ String
A token, which can be sent as page_token
to retrieve the next page. If this
field is omitted, there are no subsequent pages.
Corresponds to the JSON property nextPageToken
100 101 102 |
# File 'generated/google/apis/workflows_v1beta/classes.rb', line 100 def next_page_token @next_page_token end |
#unreachable ⇒ Array<String>
Unreachable resources.
Corresponds to the JSON property unreachable
105 106 107 |
# File 'generated/google/apis/workflows_v1beta/classes.rb', line 105 def unreachable @unreachable end |
#workflows ⇒ Array<Google::Apis::WorkflowsV1beta::Workflow>
The workflows which match the request.
Corresponds to the JSON property workflows
110 111 112 |
# File 'generated/google/apis/workflows_v1beta/classes.rb', line 110 def workflows @workflows end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
117 118 119 120 121 |
# File 'generated/google/apis/workflows_v1beta/classes.rb', line 117 def update!(**args) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @unreachable = args[:unreachable] if args.key?(:unreachable) @workflows = args[:workflows] if args.key?(:workflows) end |