Sha256: a3d5dacea5de6ec1e03b256d01270d89fd8daaaf3a5bb77c28d0d25346cf39c4

Contents?: true

Size: 573 Bytes

Versions: 13

Compression:

Stored size: 573 Bytes

Contents

require 'fog/ecloud/models/compute/authentication_level'

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

        identity :href

        model Fog::Compute::Ecloud::AuthenticationLevel

        def all
          data = connection.get_authentication_levels(href).body
          load(data)
        end

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

Version data entries

13 entries across 13 versions & 7 rubygems

Version Path
fog-nirvanix-1.8.2 lib/fog/ecloud/models/compute/authentication_levels.rb
fog-nirvanix-1.8.1 lib/fog/ecloud/models/compute/authentication_levels.rb
fog-parser-fix-1.6.1 lib/fog/ecloud/models/compute/authentication_levels.rb
fog-test-again-1.6.0 lib/fog/ecloud/models/compute/authentication_levels.rb
fog-parser-fix-1.6.0 lib/fog/ecloud/models/compute/authentication_levels.rb
ey-vendored-backup-3.0.27 vendor/gems/fog/lib/fog/ecloud/models/compute/authentication_levels.rb
fog-sgonyea-1.8.1 lib/fog/ecloud/models/compute/authentication_levels.rb
fog-1.8.0 lib/fog/ecloud/models/compute/authentication_levels.rb
fog-maestrodev-1.7.0.20121114190951 lib/fog/ecloud/models/compute/authentication_levels.rb
fog-1.7.0 lib/fog/ecloud/models/compute/authentication_levels.rb
fog-1.6.0 lib/fog/ecloud/models/compute/authentication_levels.rb
fog-1.5.0 lib/fog/ecloud/models/compute/authentication_levels.rb
fog-1.4.0 lib/fog/ecloud/models/compute/authentication_levels.rb