
This external documentation for pyVmomi was generated using Googly Docs (aka Google Standard Documentation) which renders very cleanly in GitHub. Internal documentation for a class should be done in Sphinx format because tools like pyCharm and Eclipse can use that documentation as a hint for code completion. Note: External docs as Googly Docs, internal docs as Sphinx. Closes bug#15
1.2 KiB
1.2 KiB
vmodl.query.PropertyCollector.Change
Describes a change to a property.
- extends
- Attributes:
-
name (str):
- Property or nested property to which the change applies. Nested properties are specified by paths; for example,
-
- foo.bar
- foo.arProp["key val"]
- foo.arProp["key val"].baz
op (vmodl.query.PropertyCollector.Change.Op):
Change operation for the property. Valid values are:addThe property is a collection and the change inserts an element into the collection.removeThe property is a collection and the change deletes an element from the collection.assignThe change is a new value for the property.indirectRemoveThe property was removed because a containing property was removed or unset
val (object, optional):
New value for the property when "op" is either "add" or "assign".