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.



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

#disksObject

Returns the value of attribute disks.



446
447
448
# File 'lib/ovfparse/vmcollection.rb', line 446

def disks
  @disks
end

#filesObject

Returns the value of attribute files.



446
447
448
# File 'lib/ovfparse/vmcollection.rb', line 446

def files
  @files
end

#idObject

Returns the value of attribute id.



446
447
448
# File 'lib/ovfparse/vmcollection.rb', line 446

def id
  @id
end

#networksObject

Returns the value of attribute networks.



446
447
448
# File 'lib/ovfparse/vmcollection.rb', line 446

def networks
  @networks
end