Class: PackageDetails
- Inherits:
-
Object
- Object
- PackageDetails
- Defined in:
- lib/ovfparse/vmcollection.rb
Instance Attribute Summary collapse
-
#disks ⇒ Object
Returns the value of attribute disks.
-
#files ⇒ Object
Returns the value of attribute files.
-
#id ⇒ Object
Returns the value of attribute id.
-
#networks ⇒ Object
Returns the value of attribute networks.
Instance Method Summary collapse
-
#initialize ⇒ PackageDetails
constructor
A new instance of PackageDetails.
Constructor Details
#initialize ⇒ PackageDetails
Returns a new instance of PackageDetails.
423 424 425 426 427 428 |
# File 'lib/ovfparse/vmcollection.rb', line 423 def initialize @id = "" @files = Array.new @disks = Array.new @networks = Array.new end |
Instance Attribute Details
#disks ⇒ Object
Returns the value of attribute disks.
421 422 423 |
# File 'lib/ovfparse/vmcollection.rb', line 421 def disks @disks end |
#files ⇒ Object
Returns the value of attribute files.
421 422 423 |
# File 'lib/ovfparse/vmcollection.rb', line 421 def files @files end |
#id ⇒ Object
Returns the value of attribute id.
421 422 423 |
# File 'lib/ovfparse/vmcollection.rb', line 421 def id @id end |
#networks ⇒ Object
Returns the value of attribute networks.
421 422 423 |
# File 'lib/ovfparse/vmcollection.rb', line 421 def networks @networks end |