Class: Google::Apis::DeploymentmanagerV2beta2::ListManifestsResponse
- Inherits:
-
Object
- Object
- Google::Apis::DeploymentmanagerV2beta2::ListManifestsResponse
- 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 manifests and a page token used to build the next request if the request has been truncated.
Instance Attribute Summary collapse
-
#manifests ⇒ Array<Google::Apis::DeploymentmanagerV2beta2::Manifest>
[Output Only] Manifests contained in this list response.
-
#next_page_token ⇒ String
[Output Only] A token used to continue a truncated list request.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ListManifestsResponse
constructor
A new instance of ListManifestsResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ ListManifestsResponse
Returns a new instance of ListManifestsResponse.
289 290 291 |
# File 'generated/google/apis/deploymentmanager_v2beta2/classes.rb', line 289 def initialize(**args) update!(**args) end |
Instance Attribute Details
#manifests ⇒ Array<Google::Apis::DeploymentmanagerV2beta2::Manifest>
[Output Only] Manifests contained in this list response.
Corresponds to the JSON property manifests
282 283 284 |
# File 'generated/google/apis/deploymentmanager_v2beta2/classes.rb', line 282 def manifests @manifests end |
#next_page_token ⇒ String
[Output Only] A token used to continue a truncated list request.
Corresponds to the JSON property nextPageToken
287 288 289 |
# File 'generated/google/apis/deploymentmanager_v2beta2/classes.rb', line 287 def next_page_token @next_page_token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
294 295 296 297 |
# File 'generated/google/apis/deploymentmanager_v2beta2/classes.rb', line 294 def update!(**args) @manifests = args[:manifests] unless args[:manifests].nil? @next_page_token = args[:next_page_token] unless args[:next_page_token].nil? end |