class Google::Apis::DeploymentmanagerV2beta2::ListDeploymentsResponse

A response containing a partial list of deployments and a page token used to build the next request if the request has been truncated.

Attributes

deployments[RW]
Output Only

The deployments contained in this response.

Corresponds to the JSON property `deployments` @return [Array<Google::Apis::DeploymentmanagerV2beta2::Deployment>]

next_page_token[RW]
Output Only

A token used to continue a truncated list request.

Corresponds to the JSON property `nextPageToken` @return [String]

Public Class Methods

new(**args) click to toggle source
# File generated/google/apis/deploymentmanager_v2beta2/classes.rb, line 176
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# 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