Sha256: bfae0fd77a278bbd915c4623ba0d3ba6f832eaaa21755b86f456e2df13e2418e
Contents?: true
Size: 912 Bytes
Versions: 3
Compression:
Stored size: 912 Bytes
Contents
require File.expand_path("../organization", __FILE__) module Fog module Compute class Ecloud class Organizations < Fog::Ecloud::Collection model Fog::Compute::Ecloud::Organization undef_method :create identity :href def all data = service.get_organizations(organization_uri).body load(data[:Organization]) end def get(uri) if data = service.get_organization(uri) new(data.body) end rescue Fog::Errors::NotFound nil end def organization_uri @organization_uri ||= service.default_organization_uri end private def organization_uri=(new_organization_uri) @organization_uri = new_organization_uri end def reload @organization_uri = nil super end end end end end
Version data entries
3 entries across 3 versions & 1 rubygems