Sha256: c4bd2346d1829bf28d9371c27bc7896daf0b8ce59a418481012635a643c1d640
Contents?: true
Size: 510 Bytes
Versions: 16
Compression:
Stored size: 510 Bytes
Contents
require "fog/brightbox/models/compute/database_snapshot" module Fog module Compute class Brightbox class DatabaseSnapshots < Fog::Collection model Fog::Compute::Brightbox::DatabaseSnapshot def all data = service.list_database_snapshots load(data) end def get(identifier) data = service.get_database_snapshot(identifier) new(data) rescue Excon::Errors::NotFound nil end end end end end
Version data entries
16 entries across 14 versions & 3 rubygems