Class: Autonoma::HandlerConfig
- Inherits:
-
Struct
- Object
- Struct
- Autonoma::HandlerConfig
- Defined in:
- lib/autonoma/types.rb
Instance Attribute Summary collapse
-
#after_up ⇒ Object
Returns the value of attribute after_up.
-
#allow_production ⇒ Object
Returns the value of attribute allow_production.
-
#auth ⇒ Object
Returns the value of attribute auth.
-
#before_down ⇒ Object
Returns the value of attribute before_down.
-
#factories ⇒ Object
Returns the value of attribute factories.
-
#scope_field ⇒ Object
Returns the value of attribute scope_field.
-
#sdk ⇒ Object
Returns the value of attribute sdk.
-
#shared_secret ⇒ Object
Returns the value of attribute shared_secret.
-
#signing_secret ⇒ Object
Returns the value of attribute signing_secret.
Instance Method Summary collapse
-
#initialize(scope_field:, shared_secret:, signing_secret:, auth:, allow_production: false, sdk: nil, before_down: nil, after_up: nil, factories: nil) ⇒ HandlerConfig
constructor
A new instance of HandlerConfig.
Constructor Details
#initialize(scope_field:, shared_secret:, signing_secret:, auth:, allow_production: false, sdk: nil, before_down: nil, after_up: nil, factories: nil) ⇒ HandlerConfig
Returns a new instance of HandlerConfig.
42 43 44 45 46 |
# File 'lib/autonoma/types.rb', line 42 def initialize(scope_field:, shared_secret:, signing_secret:, auth:, allow_production: false, sdk: nil, before_down: nil, after_up: nil, factories: nil) super end |
Instance Attribute Details
#after_up ⇒ Object
Returns the value of attribute after_up
30 31 32 |
# File 'lib/autonoma/types.rb', line 30 def after_up @after_up end |
#allow_production ⇒ Object
Returns the value of attribute allow_production
30 31 32 |
# File 'lib/autonoma/types.rb', line 30 def allow_production @allow_production end |
#auth ⇒ Object
Returns the value of attribute auth
30 31 32 |
# File 'lib/autonoma/types.rb', line 30 def auth @auth end |
#before_down ⇒ Object
Returns the value of attribute before_down
30 31 32 |
# File 'lib/autonoma/types.rb', line 30 def before_down @before_down end |
#factories ⇒ Object
Returns the value of attribute factories
30 31 32 |
# File 'lib/autonoma/types.rb', line 30 def factories @factories end |
#scope_field ⇒ Object
Returns the value of attribute scope_field
30 31 32 |
# File 'lib/autonoma/types.rb', line 30 def scope_field @scope_field end |
#sdk ⇒ Object
Returns the value of attribute sdk
30 31 32 |
# File 'lib/autonoma/types.rb', line 30 def sdk @sdk end |
#shared_secret ⇒ Object
Returns the value of attribute shared_secret
30 31 32 |
# File 'lib/autonoma/types.rb', line 30 def shared_secret @shared_secret end |
#signing_secret ⇒ Object
Returns the value of attribute signing_secret
30 31 32 |
# File 'lib/autonoma/types.rb', line 30 def signing_secret @signing_secret end |