Sha256: 168cf49ab501d2b3968d143b075e5d550a1c8847a6efdc00b42c4b75f8b655ed
Contents?: true
Size: 451 Bytes
Versions: 36
Compression:
Stored size: 451 Bytes
Contents
require 'fog/core/collection' require 'fog/joyent/models/compute/datacenter' module Fog module Compute class Joyent class Datacenters < Fog::Collection model Fog::Compute::Joyent::Datacenter def all data = service.list_datacenters().body.map {|k,v| {:name => k, :url => v}} load(data) end def get(id) all[id] end end end # Joyent end # Compute end # Fog
Version data entries
36 entries across 34 versions & 6 rubygems