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.



867
868
869
# File 'lib/google/apis/apigeeregistry_v1/classes.rb', line 867

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



859
860
861
# File 'lib/google/apis/apigeeregistry_v1/classes.rb', line 859

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)


865
866
867
# File 'lib/google/apis/apigeeregistry_v1/classes.rb', line 865

def next_page_token
  @next_page_token
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



872
873
874
875
# File 'lib/google/apis/apigeeregistry_v1/classes.rb', line 872

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