class Google::Apis::ApigeeV1::GoogleCloudApigeeV1ListArchiveDeploymentsResponse

Response for ListArchiveDeployments method.

Attributes

archive_deployments[RW]

Archive Deployments in the specified environment. Corresponds to the JSON property `archiveDeployments` @return [Array<Google::Apis::ApigeeV1::GoogleCloudApigeeV1ArchiveDeployment>]

next_page_token[RW]

Page token that you can include in a ListArchiveDeployments request to retrieve the next page. If omitted, no subsequent pages exist. Corresponds to the JSON property `nextPageToken` @return [String]

Public Class Methods

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

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

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