Class: Google::Apis::ApigeeV1::GoogleCloudApigeeV1ListArchiveDeploymentsResponse

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/apigee_v1/classes.rb,
lib/google/apis/apigee_v1/representations.rb,
lib/google/apis/apigee_v1/representations.rb

Overview

Response for ListArchiveDeployments method.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudApigeeV1ListArchiveDeploymentsResponse

Returns a new instance of GoogleCloudApigeeV1ListArchiveDeploymentsResponse.



5902
5903
5904
# File 'lib/google/apis/apigee_v1/classes.rb', line 5902

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#archive_deploymentsArray<Google::Apis::ApigeeV1::GoogleCloudApigeeV1ArchiveDeployment>

Archive Deployments in the specified environment. Corresponds to the JSON property archiveDeployments



5894
5895
5896
# File 'lib/google/apis/apigee_v1/classes.rb', line 5894

def archive_deployments
  @archive_deployments
end

#next_page_tokenString

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

Returns:

  • (String)


5900
5901
5902
# File 'lib/google/apis/apigee_v1/classes.rb', line 5900

def next_page_token
  @next_page_token
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



5907
5908
5909
5910
# File 'lib/google/apis/apigee_v1/classes.rb', line 5907

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