Class: Cloud::Sh::Providers::Base
- Inherits:
-
Object
- Object
- Cloud::Sh::Providers::Base
- Includes:
- Helpers::Commands
- Defined in:
- lib/cloud/sh/providers/base.rb
Direct Known Subclasses
Instance Attribute Summary collapse
-
#account ⇒ Object
readonly
Returns the value of attribute account.
Instance Method Summary collapse
- #clusters ⇒ Object
- #databases ⇒ Object
-
#initialize(account) ⇒ Base
constructor
A new instance of Base.
- #servers ⇒ Object
Methods included from Helpers::Commands
Constructor Details
#initialize(account) ⇒ Base
24 25 26 |
# File 'lib/cloud/sh/providers/base.rb', line 24 def initialize(account) @account = account end |
Instance Attribute Details
#account ⇒ Object (readonly)
Returns the value of attribute account.
22 23 24 |
# File 'lib/cloud/sh/providers/base.rb', line 22 def account @account end |
Instance Method Details
#clusters ⇒ Object
36 37 38 |
# File 'lib/cloud/sh/providers/base.rb', line 36 def clusters raise NotImplementedError end |
#databases ⇒ Object
32 33 34 |
# File 'lib/cloud/sh/providers/base.rb', line 32 def databases raise NotImplementedError end |
#servers ⇒ Object
28 29 30 |
# File 'lib/cloud/sh/providers/base.rb', line 28 def servers raise NotImplementedError end |