class Google::Apis::DeploymentmanagerV2beta::ManifestsListResponse

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

Attributes

manifests[RW]

Output only. Manifests contained in this list response. Corresponds to the JSON property `manifests` @return [Array<Google::Apis::DeploymentmanagerV2beta::Manifest>]

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 lib/google/apis/deploymentmanager_v2beta/classes.rb, line 1043
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/deploymentmanager_v2beta/classes.rb, line 1048
def update!(**args)
  @manifests = args[:manifests] if args.key?(:manifests)
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
end