Class: VimArray

Inherits:
Array
  • Object
show all
Includes:
VimType
Defined in:
lib/VMwareWebService/VimTypes.rb

Instance Method Summary collapse

Methods included from VimType

#vimBaseType, #vimType, #vimType=, #xsiType, #xsiType=

Constructor Details

#initialize(xsiType = nil, vimType = nil) {|_self| ... } ⇒ VimArray

Returns a new instance of VimArray.

Yields:

  • (_self)

Yield Parameters:

  • _self (VimArray)

    the object that the method was called on



65
66
67
68
69
70
# File 'lib/VMwareWebService/VimTypes.rb', line 65

def initialize(xsiType = nil, vimType = nil)
  self.xsiType = xsiType
  self.vimType = vimType
  super()
  yield(self) if block_given?
end