Sha256: a496c3bbf6908e5703f633c9fddddd177fcfeb940ee31dc7524d58efd907525b

Contents?: true

Size: 896 Bytes

Versions: 65

Compression:

Stored size: 896 Bytes

Contents

require 'fog/ecloud/models/compute/role'

module Fog
  module Compute
    class Ecloud
      class Roles < Fog::Ecloud::Collection

        identity :href

        model Fog::Compute::Ecloud::Role

        def all
          data = service.get_roles(href).body
          if data[:OrganizationRole]
            load(data[:OrganizationRole])
          else
            r_data = []
            data[:EnvironmentRoles][:EnvironmentRole].each do |d|
              d[:Environment][:EnvironmentName] = d[:Environment][:name]
              d[:Environment] = d[:Environment].merge(d[:Role]) if d[:Role]
              r_data << d[:Environment]
            end
            load(r_data)
          end
        end

        def get(uri)
          if data = service.get_role(uri)
            new(data.body)
          end
        rescue Fog::Errors::NotFound
          nil
        end
      end
    end
  end
end

Version data entries

65 entries across 65 versions & 6 rubygems

Version Path
fog-1.10.0 lib/fog/ecloud/models/compute/roles.rb
fog-1.9.0 lib/fog/ecloud/models/compute/roles.rb
fog-maestrodev-1.8.0.20130114204828 lib/fog/ecloud/models/compute/roles.rb
fog-maestrodev-1.8.0.20130111070250 lib/fog/ecloud/models/compute/roles.rb
fog-maestrodev-1.8.0.20130109172219 lib/fog/ecloud/models/compute/roles.rb