class Fog::OpenStack::Identity::Real

Public Class Methods

not_found_class() click to toggle source
# File lib/fog/openstack/identity.rb, line 27
def self.not_found_class
  Fog::OpenStack::Identity::NotFound
end

Public Instance Methods

config() click to toggle source
# File lib/fog/openstack/identity.rb, line 35
def config
  self
end
config_service?() click to toggle source
# File lib/fog/openstack/identity.rb, line 31
def config_service?
  true
end
default_endpoint_type() click to toggle source
# File lib/fog/openstack/identity.rb, line 39
def default_endpoint_type
  'admin'
end

Private Instance Methods

configure(source) click to toggle source
# File lib/fog/openstack/identity.rb, line 45
def configure(source)
  source.instance_variables.each do |v|
    instance_variable_set(v, source.instance_variable_get(v))
  end
end