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