Class: Google::Apis::BaremetalsolutionV1alpha1::ListVolumesResponse

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

Overview

Response for ListVolumes.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ListVolumesResponse

Returns a new instance of ListVolumesResponse.



405
406
407
# File 'lib/google/apis/baremetalsolution_v1alpha1/classes.rb', line 405

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

Instance Attribute Details

#next_page_tokenString

Token to retrieve the next page of results, or empty if there are no more results in the list. Corresponds to the JSON property nextPageToken

Returns:

  • (String)


398
399
400
# File 'lib/google/apis/baremetalsolution_v1alpha1/classes.rb', line 398

def next_page_token
  @next_page_token
end

#volumesArray<Google::Apis::BaremetalsolutionV1alpha1::Volume>

The volumes registered in this project. Corresponds to the JSON property volumes



403
404
405
# File 'lib/google/apis/baremetalsolution_v1alpha1/classes.rb', line 403

def volumes
  @volumes
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



410
411
412
413
# File 'lib/google/apis/baremetalsolution_v1alpha1/classes.rb', line 410

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