Class: Aserto::Directory::V3::Config::BaseConfig
- Inherits:
-
Object
- Object
- Aserto::Directory::V3::Config::BaseConfig
- Defined in:
- lib/aserto/directory/v3/config.rb
Constant Summary collapse
- DEFAULT_DIRECTORY_URL =
"directory.prod.aserto.com:8443"
Instance Attribute Summary collapse
-
#credentials ⇒ Object
readonly
Returns the value of attribute credentials.
-
#interceptors ⇒ Object
readonly
Returns the value of attribute interceptors.
-
#url ⇒ Object
readonly
Returns the value of attribute url.
Instance Method Summary collapse
-
#initialize(url, credentials, interceptors) ⇒ BaseConfig
constructor
A new instance of BaseConfig.
Constructor Details
#initialize(url, credentials, interceptors) ⇒ BaseConfig
Returns a new instance of BaseConfig.
33 34 35 36 37 |
# File 'lib/aserto/directory/v3/config.rb', line 33 def initialize(url, credentials, interceptors) @url = url @credentials = credentials @interceptors = interceptors end |
Instance Attribute Details
#credentials ⇒ Object (readonly)
Returns the value of attribute credentials.
29 30 31 |
# File 'lib/aserto/directory/v3/config.rb', line 29 def credentials @credentials end |
#interceptors ⇒ Object (readonly)
Returns the value of attribute interceptors.
29 30 31 |
# File 'lib/aserto/directory/v3/config.rb', line 29 def interceptors @interceptors end |
#url ⇒ Object (readonly)
Returns the value of attribute url.
29 30 31 |
# File 'lib/aserto/directory/v3/config.rb', line 29 def url @url end |