Class: VagrantPlugins::Deltacloud::Domain::Network
- Defined in:
- lib/vagrant-deltacloud-provider/client/domain.rb
Instance Attribute Summary collapse
-
#address_blocks ⇒ Object
Returns the value of attribute address_blocks.
-
#status ⇒ Object
Returns the value of attribute status.
-
#subnets ⇒ Object
Returns the value of attribute subnets.
Attributes inherited from Item
Instance Method Summary collapse
-
#initialize(id, name, status, address_blocks, subnets) ⇒ Network
constructor
A new instance of Network.
Methods inherited from Item
Constructor Details
#initialize(id, name, status, address_blocks, subnets) ⇒ Network
Returns a new instance of Network.
155 156 157 158 159 160 |
# File 'lib/vagrant-deltacloud-provider/client/domain.rb', line 155 def initialize(id, name, status, address_blocks, subnets) @status = status @address_blocks = address_blocks @subnets = subnets super(id, name) end |
Instance Attribute Details
#address_blocks ⇒ Object
Returns the value of attribute address_blocks.
152 153 154 |
# File 'lib/vagrant-deltacloud-provider/client/domain.rb', line 152 def address_blocks @address_blocks end |
#status ⇒ Object
Returns the value of attribute status.
151 152 153 |
# File 'lib/vagrant-deltacloud-provider/client/domain.rb', line 151 def status @status end |
#subnets ⇒ Object
Returns the value of attribute subnets.
153 154 155 |
# File 'lib/vagrant-deltacloud-provider/client/domain.rb', line 153 def subnets @subnets end |