Sha256: 97d2b182197bae8d79262eed099d96e527682486fedb3ed0e493cf5f368a44db
Contents?: true
Size: 825 Bytes
Versions: 17
Compression:
Stored size: 825 Bytes
Contents
require 'fog/ecloud/models/compute/organization' 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 end end end end
Version data entries
17 entries across 17 versions & 5 rubygems