Sha256: 8905967190d5136e0a28e0e169e9d21530a8743635744f0c54009ffbfd4aea9d
Contents?: true
Size: 572 Bytes
Versions: 29
Compression:
Stored size: 572 Bytes
Contents
require 'fog/core/collection' require 'fog/hp/models/block_storage/snapshot' module Fog module HP class BlockStorage class Snapshots < Fog::Collection model Fog::HP::BlockStorage::Snapshot def all data = service.list_snapshots.body['snapshots'] load(data) end def get(snapshot_id) if snapshot = service.get_snapshot_details(snapshot_id).body['snapshot'] new(snapshot) end rescue Fog::HP::BlockStorage::NotFound nil end end end end end
Version data entries
29 entries across 29 versions & 4 rubygems