Sha256: a1737f35077150098d3c59a1817631e13f5cdd6b067aae7f722b8a74cc40a21a
Contents?: true
Size: 613 Bytes
Versions: 65
Compression:
Stored size: 613 Bytes
Contents
require 'fog/ecloud/models/compute/storage_usage_detail' module Fog module Compute class Ecloud class StorageUsageDetailSummary < Fog::Ecloud::Collection identity :href model Fog::Compute::Ecloud::StorageUsageDetail def all data = service.get_storage_usage_detail_summary(href).body[:VirtualMachines][:VirtualMachine] load(data) end def get(uri) if data = service.get_storage_usage_detail(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