Sha256: 623bbcb4488ce62a35d03ad1a370817caa1f731b35d0ad1505e173392e95758b

Contents?: true

Size: 954 Bytes

Versions: 4

Compression:

Stored size: 954 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 ServiceError => e
          raise e unless e.status_code == 404
          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

4 entries across 2 versions & 2 rubygems

Version Path
vagrant-packet-0.1.1 vendor/bundle/ruby/2.3.0/gems/fog-ecloud-0.3.0/lib/fog/compute/ecloud/models/organizations.rb
vagrant-packet-0.1.1 vendor/bundle/ruby/2.4.0/gems/fog-ecloud-0.3.0/lib/fog/compute/ecloud/models/organizations.rb
vagrant-packet-0.1.1 vendor/bundle/ruby/2.5.0/gems/fog-ecloud-0.3.0/lib/fog/compute/ecloud/models/organizations.rb
fog-ecloud-0.3.0 lib/fog/compute/ecloud/models/organizations.rb