class Google::Apis::SasportalV1alpha1::SasPortalListDeploymentsResponse

Response for ListDeployments.

Attributes

deployments[RW]

The deployments that match the request. Corresponds to the JSON property `deployments` @return [Array<Google::Apis::SasportalV1alpha1::SasPortalDeployment>]

next_page_token[RW]

A pagination token returned from a previous call to ListDeployments that indicates from where listing should continue. If the field is missing or empty, it means there are no more deployments. Corresponds to the JSON property `nextPageToken` @return [String]

Public Class Methods

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

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

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