Sha256: e8c53a9125d7841c313482df85bdbbf000d843320dfd72d2e06dda12d1c09948
Contents?: true
Size: 409 Bytes
Versions: 52
Compression:
Stored size: 409 Bytes
Contents
module Fog module Compute class Vsphere class Datacenters < Fog::Collection autoload :Datacenter, File.expand_path('../datacenter', __FILE__) model Fog::Compute::Vsphere::Datacenter def all(filters = {}) load service.list_datacenters(filters) end def get(name) new service.get_datacenter(name) end end end end end
Version data entries
52 entries across 50 versions & 2 rubygems