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.
448 449 450 451 452 453 |
# File 'lib/ovfparse/vmcollection.rb', line 448 def initialize @id = "" @files = Array.new @disks = Array.new @networks = Array.new end |
Instance Attribute Details
#disks ⇒ Object
Returns the value of attribute disks.
446 447 448 |
# File 'lib/ovfparse/vmcollection.rb', line 446 def disks @disks end |
#files ⇒ Object
Returns the value of attribute files.
446 447 448 |
# File 'lib/ovfparse/vmcollection.rb', line 446 def files @files end |
#id ⇒ Object
Returns the value of attribute id.
446 447 448 |
# File 'lib/ovfparse/vmcollection.rb', line 446 def id @id end |
#networks ⇒ Object
Returns the value of attribute networks.
446 447 448 |
# File 'lib/ovfparse/vmcollection.rb', line 446 def networks @networks end |