class Google::Apis::BaremetalsolutionV2::ListVolumesResponse
Message for response to listing Volumes.
Attributes
next_page_token[RW]
A token identifying a page of results the server should return. Corresponds to the JSON property `nextPageToken` @return [String]
unreachable[RW]
Locations that could not be reached. Corresponds to the JSON property `unreachable` @return [Array<String>]
volumes[RW]
The list of Volume
. Corresponds to the JSON property `volumes` @return [Array<Google::Apis::BaremetalsolutionV2::Volume>]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/baremetalsolution_v2/classes.rb, line 353 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/baremetalsolution_v2/classes.rb, line 358 def update!(**args) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @unreachable = args[:unreachable] if args.key?(:unreachable) @volumes = args[:volumes] if args.key?(:volumes) end