Sha256: 8b285b6a585e8669f77b2d8c407b48f3f504896f7172ebc9d52f11d5c8a11431
Contents?: true
Size: 560 Bytes
Versions: 65
Compression:
Stored size: 560 Bytes
Contents
require 'fog/ecloud/models/compute/hardware_configuration' module Fog module Compute class Ecloud class HardwareConfigurations < Fog::Ecloud::Collection identity :href model Fog::Compute::Ecloud::HardwareConfiguration def all data = service.get_server(href).body load(data) end def get(uri) if data = service.get_hardware_configuration(uri) new(data.body) end rescue Fog::Errors::NotFound nil end end end end end
Version data entries
65 entries across 65 versions & 6 rubygems