Class: VagrantPlugins::ProviderVirtualBox::Driver::Base::ExtendedStorageData
- Inherits:
-
Object
- Object
- VagrantPlugins::ProviderVirtualBox::Driver::Base::ExtendedStorageData
- Defined in:
- lib/vagrant-extended-storage/providers/virtualbox/driver/base.rb
Instance Attribute Summary collapse
-
#controller ⇒ Object
Returns the value of attribute controller.
-
#location ⇒ Object
Returns the value of attribute location.
-
#port ⇒ Object
Returns the value of attribute port.
Instance Method Summary collapse
-
#initialize(controller, port, location) ⇒ ExtendedStorageData
constructor
A new instance of ExtendedStorageData.
Constructor Details
#initialize(controller, port, location) ⇒ ExtendedStorageData
Returns a new instance of ExtendedStorageData.
93 94 95 96 97 |
# File 'lib/vagrant-extended-storage/providers/virtualbox/driver/base.rb', line 93 def initialize(controller,port,location) @controller = controller @port = port @location = location end |
Instance Attribute Details
#controller ⇒ Object
Returns the value of attribute controller.
89 90 91 |
# File 'lib/vagrant-extended-storage/providers/virtualbox/driver/base.rb', line 89 def controller @controller end |
#location ⇒ Object
Returns the value of attribute location.
91 92 93 |
# File 'lib/vagrant-extended-storage/providers/virtualbox/driver/base.rb', line 91 def location @location end |
#port ⇒ Object
Returns the value of attribute port.
90 91 92 |
# File 'lib/vagrant-extended-storage/providers/virtualbox/driver/base.rb', line 90 def port @port end |