Class: Google::Apis::DeploymentmanagerV2beta2::ListOperationsResponse
- Inherits:
-
Object
- Object
- Google::Apis::DeploymentmanagerV2beta2::ListOperationsResponse
- Includes:
- Core::Hashable
- Defined in:
- generated/google/apis/deploymentmanager_v2beta2/classes.rb,
generated/google/apis/deploymentmanager_v2beta2/representations.rb,
generated/google/apis/deploymentmanager_v2beta2/representations.rb
Overview
A response containing a partial list of operations and a page token used to build the next request if the request has been truncated.
Instance Attribute Summary collapse
-
#next_page_token ⇒ String
[Output Only] A token used to continue a truncated list request.
-
#operations ⇒ Array<Google::Apis::DeploymentmanagerV2beta2::Operation>
[Output Only] Operations contained in this list response.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ListOperationsResponse
constructor
A new instance of ListOperationsResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ ListOperationsResponse
Returns a new instance of ListOperationsResponse
585 586 587 |
# File 'generated/google/apis/deploymentmanager_v2beta2/classes.rb', line 585 def initialize(**args) update!(**args) end |
Instance Attribute Details
#next_page_token ⇒ String
[Output Only] A token used to continue a truncated list request.
Corresponds to the JSON property nextPageToken
578 579 580 |
# File 'generated/google/apis/deploymentmanager_v2beta2/classes.rb', line 578 def next_page_token @next_page_token end |
#operations ⇒ Array<Google::Apis::DeploymentmanagerV2beta2::Operation>
[Output Only] Operations contained in this list response.
Corresponds to the JSON property operations
583 584 585 |
# File 'generated/google/apis/deploymentmanager_v2beta2/classes.rb', line 583 def operations @operations end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
590 591 592 593 |
# File 'generated/google/apis/deploymentmanager_v2beta2/classes.rb', line 590 def update!(**args) @next_page_token = args[:next_page_token] unless args[:next_page_token].nil? @operations = args[:operations] unless args[:operations].nil? end |