class Google::Apis::DeploymentmanagerV2::ListOperationsResponse

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

Attributes

next_page_token[RW]
Output Only

A token used to continue a truncated list request.

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

operations[RW]
Output Only

Operations contained in this list response.

Corresponds to the JSON property `operations` @return [Array<Google::Apis::DeploymentmanagerV2::Operation>]

Public Class Methods

new(**args) click to toggle source
# File generated/google/apis/deploymentmanager_v2/classes.rb, line 716
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_v2/classes.rb, line 721
def update!(**args)
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
  @operations = args[:operations] if args.key?(:operations)
end