Class: Google::Apis::DeploymentmanagerV2beta2::ListDeploymentsResponse
- Inherits:
-
Object
- Object
- Google::Apis::DeploymentmanagerV2beta2::ListDeploymentsResponse
- 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 deployments and a page token used to build the next request if the request has been truncated.
Instance Attribute Summary collapse
-
#deployments ⇒ Array<Google::Apis::DeploymentmanagerV2beta2::Deployment>
[Output Only] The deployments contained in this response.
-
#next_page_token ⇒ String
[Output Only] A token used to continue a truncated list request.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ListDeploymentsResponse
constructor
A new instance of ListDeploymentsResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ ListDeploymentsResponse
Returns a new instance of ListDeploymentsResponse
176 177 178 |
# File 'generated/google/apis/deploymentmanager_v2beta2/classes.rb', line 176 def initialize(**args) update!(**args) end |
Instance Attribute Details
#deployments ⇒ Array<Google::Apis::DeploymentmanagerV2beta2::Deployment>
[Output Only] The deployments contained in this response.
Corresponds to the JSON property deployments
169 170 171 |
# File 'generated/google/apis/deploymentmanager_v2beta2/classes.rb', line 169 def deployments @deployments end |
#next_page_token ⇒ String
[Output Only] A token used to continue a truncated list request.
Corresponds to the JSON property nextPageToken
174 175 176 |
# File 'generated/google/apis/deploymentmanager_v2beta2/classes.rb', line 174 def next_page_token @next_page_token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
181 182 183 184 |
# File 'generated/google/apis/deploymentmanager_v2beta2/classes.rb', line 181 def update!(**args) @deployments = args[:deployments] unless args[:deployments].nil? @next_page_token = args[:next_page_token] unless args[:next_page_token].nil? end |