class OneviewSDK::API600::C7000::StoragePool

Storage pool resource implementation for API600 C7000

Public Class Methods

reachable(client, query = nil) click to toggle source

Gets the storage pools that are connected on the specified networks based on the storage system port's expected network connectivity. @param [OneviewSDK::Client] client The client object for the OneView appliance @param [Dict<Resource>] query The query parameters to be used as a filter @return [Array<OneviewSDK::StoragePool>] the list of storage pools

# File lib/oneview-sdk/resource/api600/c7000/storage_pool.rb, line 23
def self.reachable(client, query = nil)
  uri = self::BASE_URI + '/reachable-storage-pools'
  query_uri = build_query(query)
  uri += query_uri
  find_with_pagination(client, uri)
end