class OneviewSDK::API600::C7000::VolumeTemplate
Constants
- BASE_URI
Public Class Methods
get_reachable_volume_templates(client, attributes = {}, query = nil)
click to toggle source
Gets the storage templates that are connected to this set of expected network URIs or that are scoped to the set of scope URIs or which only allow private volumes @param [OneviewSDK::Client] client The client object for the OneView appliance @param [Hash] attributes Hash containing the attributes name and value to filter storage templates @param [Hash] query The query options for the request (key-value pairs) @return [Array] the collection of volume templates
# File lib/oneview-sdk/resource/api600/c7000/volume_template.rb, line 27 def self.get_reachable_volume_templates(client, attributes = {}, query = nil) query_uri = build_query(query) if query find_by(client, attributes, "#{BASE_URI}/reachable-volume-templates#{query_uri}") end