Class: PackageDetails

Inherits:
Object
  • Object
show all
Defined in:
lib/ovfparse/vmcollection.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initializePackageDetails

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

#disksObject

Returns the value of attribute disks.



421
422
423
# File 'lib/ovfparse/vmcollection.rb', line 421

def disks
  @disks
end

#filesObject

Returns the value of attribute files.



421
422
423
# File 'lib/ovfparse/vmcollection.rb', line 421

def files
  @files
end

#idObject

Returns the value of attribute id.



421
422
423
# File 'lib/ovfparse/vmcollection.rb', line 421

def id
  @id
end

#networksObject

Returns the value of attribute networks.



421
422
423
# File 'lib/ovfparse/vmcollection.rb', line 421

def networks
  @networks
end