Class: Google::Apis::ApigeeregistryV1::ListApiDeploymentRevisionsResponse

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

Overview

Response message for ListApiDeploymentRevisionsResponse.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ListApiDeploymentRevisionsResponse

Returns a new instance of ListApiDeploymentRevisionsResponse.



811
812
813
# File 'lib/google/apis/apigeeregistry_v1/classes.rb', line 811

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

Instance Attribute Details

#api_deploymentsArray<Google::Apis::ApigeeregistryV1::ApiDeployment>

The revisions of the deployment. Corresponds to the JSON property apiDeployments



803
804
805
# File 'lib/google/apis/apigeeregistry_v1/classes.rb', line 803

def api_deployments
  @api_deployments
end

#next_page_tokenString

A token that can be sent as page_token to retrieve the next page. If this field is omitted, there are no subsequent pages. Corresponds to the JSON property nextPageToken

Returns:

  • (String)


809
810
811
# File 'lib/google/apis/apigeeregistry_v1/classes.rb', line 809

def next_page_token
  @next_page_token
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



816
817
818
819
# File 'lib/google/apis/apigeeregistry_v1/classes.rb', line 816

def update!(**args)
  @api_deployments = args[:api_deployments] if args.key?(:api_deployments)
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
end