Sha256: 6c90a2d0503cf8b9054faa9cd17ce3a80c7505fcb5f3c545bdd5d7ae790ca59a
Contents?: true
Size: 826 Bytes
Versions: 65
Compression:
Stored size: 826 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
65 entries across 65 versions & 6 rubygems