Class: ElementDescription

Inherits:
Description show all
Defined in:
lib/vmware/soap/vim25.rb

Overview

urn:vim25ElementDescription

dynamicType - SOAP::SOAPString
dynamicProperty - DynamicProperty
label - SOAP::SOAPString
summary - SOAP::SOAPString
key - SOAP::SOAPString

Direct Known Subclasses

OptionDef

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(dynamicType = nil, dynamicProperty = [], label = nil, summary = nil, key = nil) ⇒ ElementDescription

Returns a new instance of ElementDescription.

[View source]

995
996
997
998
999
1000
1001
# File 'lib/vmware/soap/vim25.rb', line 995

def initialize(dynamicType = nil, dynamicProperty = [], label = nil, summary = nil, key = nil)
  @dynamicType = dynamicType
  @dynamicProperty = dynamicProperty
  @label = label
  @summary = summary
  @key = key
end

Instance Attribute Details

#dynamicPropertyObject

Returns the value of attribute dynamicProperty.


990
991
992
# File 'lib/vmware/soap/vim25.rb', line 990

def dynamicProperty
  @dynamicProperty
end

#dynamicTypeObject

Returns the value of attribute dynamicType.


989
990
991
# File 'lib/vmware/soap/vim25.rb', line 989

def dynamicType
  @dynamicType
end

#keyObject

Returns the value of attribute key.


993
994
995
# File 'lib/vmware/soap/vim25.rb', line 993

def key
  @key
end

#labelObject

Returns the value of attribute label.


991
992
993
# File 'lib/vmware/soap/vim25.rb', line 991

def label
  @label
end

#summaryObject

Returns the value of attribute summary.


992
993
994
# File 'lib/vmware/soap/vim25.rb', line 992

def summary
  @summary
end