module VimType

Public Instance Methods

vimBaseType() click to toggle source
# File lib/VMwareWebService/VimTypes.rb, line 14
def vimBaseType
  VimClass.base_class(vimType)
end
vimType() click to toggle source
# File lib/VMwareWebService/VimTypes.rb, line 6
def vimType
  @vimType.nil? ? nil : @vimType.to_s
end
vimType=(val) click to toggle source
# File lib/VMwareWebService/VimTypes.rb, line 10
def vimType=(val)
  @vimType = val.nil? ? nil : val.to_sym
end
xsiType() click to toggle source
# File lib/VMwareWebService/VimTypes.rb, line 18
def xsiType
  @xsiType.nil? ? nil : @xsiType.to_s
end
xsiType=(val) click to toggle source
# File lib/VMwareWebService/VimTypes.rb, line 22
def xsiType=(val)
  @xsiType = val.nil? ? nil : val.to_sym
end