class Google::Apis::DeploymentmanagerV2beta::ResourcesListResponse
A response containing a partial list of resources and a page token used to build the next request if the request has been truncated.
Attributes
next_page_token[RW]
A token used to continue a truncated list request. Corresponds to the JSON property `nextPageToken` @return [String]
resources[RW]
Resources contained in this list response. Corresponds to the JSON property `resources` @return [Array<Google::Apis::DeploymentmanagerV2beta::Resource>]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/deploymentmanager_v2beta/classes.rb, line 1936 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 1941 def update!(**args) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @resources = args[:resources] if args.key?(:resources) end