Class: Keystone::V2_0::Manager::Base

Inherits:
Object
  • Object
show all
Defined in:
lib/keystone/v2_0/manager/base.rb

Direct Known Subclasses

Endpoint, Role, Service, Tenant, User

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(auth_url, url_endpoint) ⇒ Base

Returns a new instance of Base.



11
12
13
14
# File 'lib/keystone/v2_0/manager/base.rb', line 11

def initialize(auth_url, url_endpoint)
  self.auth_url     = auth_url
  self.url_endpoint = url_endpoint
end

Instance Attribute Details

#auth_urlObject

Returns the value of attribute auth_url.



7
8
9
# File 'lib/keystone/v2_0/manager/base.rb', line 7

def auth_url
  @auth_url
end

#tokenObject

Returns the value of attribute token.



9
10
11
# File 'lib/keystone/v2_0/manager/base.rb', line 9

def token
  @token
end

#url_endpointObject

Returns the value of attribute url_endpoint.



8
9
10
# File 'lib/keystone/v2_0/manager/base.rb', line 8

def url_endpoint
  @url_endpoint
end