Class: Google::Apis::ApigeeregistryV1::ListApiDeploymentsResponse

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 ListApiDeployments.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ListApiDeploymentsResponse

Returns a new instance of ListApiDeploymentsResponse.



837
838
839
# File 'lib/google/apis/apigeeregistry_v1/classes.rb', line 837

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

Instance Attribute Details

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

The deployments from the specified publisher. Corresponds to the JSON property apiDeployments



829
830
831
# File 'lib/google/apis/apigeeregistry_v1/classes.rb', line 829

def api_deployments
  @api_deployments
end

#next_page_tokenString

A token, which 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)


835
836
837
# File 'lib/google/apis/apigeeregistry_v1/classes.rb', line 835

def next_page_token
  @next_page_token
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



842
843
844
845
# File 'lib/google/apis/apigeeregistry_v1/classes.rb', line 842

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