Managed Object - PropertyCollector(vmodl.query.PropertyCollector)

Property of
ServiceContent
Returned by
CreatePropertyCollector
See also
ObjectContent, PropertyFilter, PropertyFilterSpec, RetrieveOptions, RetrieveResult, UpdateSet, WaitOptions


Managed Object Description

The PropertyCollector managed object retrieves and detects changes to the properties of other managed objects. The RetrievePropertiesEx method provides one-time property retrieval. The WaitForUpdatesEx method provides incremental change detection and supports both polling and notification.

For change detection a client creates one or more filters to specify the subset of managed objects in which the client is interested. Filters keep per-session state to track incremental changes. Because this state is per-session:

Properties

Name Type Description
filter* PManagedObjectReference[]
to a PropertyFilter[]

The filters that this PropertyCollector uses to determine the list of properties for which it detects incremental changes.
*May not be presentP Required privilege: System.View

Methods

Methods defined in this Managed Object
CancelRetrievePropertiesEx, CancelWaitForUpdates, CheckForUpdates, ContinueRetrievePropertiesEx, CreateFilter, CreatePropertyCollector, DestroyPropertyCollector, RetrieveProperties, RetrievePropertiesEx, WaitForUpdates, WaitForUpdatesEx

CancelRetrievePropertiesEx(cancelRetrievePropertiesEx)

Discards remaining results from a retrieval started by RetrievePropertiesEx on the same session on the same PropertyCollector.
Required Privileges
System.Anonymous
Since
vSphere API 4.1

Parameters

NameTypeDescription
_thisManagedObjectReference A reference to the PropertyCollector used to make the method call.
tokenxsd:string

the token returned in the previous RetrieveResult returned on the same session by the same PropertyCollector.

Return Value

Type Description
None

Faults

Type Description
InvalidArgumentThrown if the token does not match the token from the previous RetrieveResult returned on the same session by the same PropertyCollector.
InvalidProperty
RuntimeFaultThrown if any type of runtime fault is thrown that is not covered by the other faults; for example, a communication error.

Events

Type
None

Show WSDL type definition



CancelWaitForUpdates(cancelWaitForUpdates)

Attempts to cancel outstanding calls to WaitForUpdates or WaitForUpdatesEx in the current session. If an update calculation is in process this method has no effect. If an update calculation is not in process any waiting calls complete quickly and report a RequestCanceled fault.
Required Privileges
System.View

Parameters

NameTypeDescription
_thisManagedObjectReference A reference to the PropertyCollector used to make the method call.

Return Value

Type Description
None

Faults

Type Description
RuntimeFaultThrown if any type of runtime fault is thrown that is not covered by the other faults; for example, a communication error.

Events

Type
None

Show WSDL type definition



CheckForUpdates(checkForUpdates)

Deprecated. As of vSphere API 4.1, use WaitForUpdatesEx with a maxWaitSeconds of 0.

Checks for updates on properties specified by the union of all current filters. If no updates are pending, this method returns null.
Required Privileges
System.View

Parameters

NameTypeDescription
_thisManagedObjectReference A reference to the PropertyCollector used to make the method call.
version*xsd:string

The data version currently known to the client. The value must be either
*Need not be set

Return Value

Type Description
UpdateSetChanges since the passed in data version. If no updates are pending, then this method returns null.

Faults

Type Description
InvalidCollectorVersionThrown if the data version does not meet the requirements above.
RequestCanceledThrown if CancelWaitForUpdates has been called or the session was closed or the PropertyCollector was destroyed at some point after the call was received but before the update calculation was actually started
RuntimeFaultThrown if any type of runtime fault is thrown that is not covered by the other faults; for example, a communication error.

Events

Type
None

Show WSDL type definition



ContinueRetrievePropertiesEx(continueRetrievePropertiesEx)

Retrieves additional results from a retrieval started by RetrievePropertiesEx on the same session on the same PropertyCollector.
Required Privileges
System.Anonymous
Since
vSphere API 4.1

Parameters

NameTypeDescription
_thisManagedObjectReference A reference to the PropertyCollector used to make the method call.
tokenxsd:string

the token returned in the previous RetrieveResult returned on the same session by the same PropertyCollector.

Return Value

Type Description
RetrieveResultretrieved objects.

Faults

Type Description
InvalidArgumentThrown if the token does not match the token from the previous RetrieveResult returned on the same session by the same PropertyCollector.
InvalidProperty
RuntimeFaultThrown if any type of runtime fault is thrown that is not covered by the other faults; for example, a communication error.

Events

Type
None

Show WSDL type definition



CreateFilter(createFilter)

Creates a new filter for the given set of managed objects.
Required Privileges
System.View

Parameters

NameTypeDescription
_thisManagedObjectReference A reference to the PropertyCollector used to make the method call.
specPropertyFilterSpec

The specifications for the filter.
partialUpdatesxsd:boolean

Flag to specify whether a change to a nested property should report only the nested change or the entire specified property value. If the value is true, a change should report only the nested property. If the value is false, a change should report the enclosing property named in the filter.

Return Value

Type Description
ManagedObjectReference
to a PropertyFilter
A reference to the new filter.

Faults

Type Description
InvalidArgumentThrown if any of the following is true:
  • "spec" is empty.
  • "spec" contains a selection with properties not defined on its type.
InvalidPropertyThrown if "spec" has a property that is not defined on one of the objects.
InvalidTypeThrown if "spec" contains, directly or indirectly, a type name that does not refer to a known type.
ManagedObjectNotFoundSee reportMissingObjectsInResults.
RuntimeFaultThrown if any type of runtime fault is thrown that is not covered by the other faults; for example, a communication error.

Events

Type
None

Show WSDL type definition



CreatePropertyCollector(createPropertyCollector)

Creates a new session-specific PropertyCollector that can be used to retrieve property updates independent of any other PropertyCollector. The newly created PropertyCollector is not tied to the creating PropertyCollector in any way and exists until it is destroyed by a call to DestroyPropertyCollector or until the session on which the PropertyCollector was created is closed. This is in contrast to the default PropertyCollector, which always exists, but still has session-specific data such as filters and unfinished update calculations that are discarded when the associated session is closed.

A new PropertyCollector can be useful when multiple modules or even multiple clients that share the same session need to create their own PropertyFilter objects and process updates independently. They may also be useful to allow important updates to be seen on one PropertyCollector while a large update is being calculated on another. The underlying issue that this addresses is that any call to WaitForUpdates, CheckForUpdates, or WaitForUpdatesEx does updates on all the filters created on a given PropertyCollector on a given session.

A more subtle use of multiple PropertyCollector objects is implied by the fact that the returned version value for the various updates calculations is strongly ordered. The only way this can make sense is that two different versions calculated on the same PropertyCollector on the same session cannot ever be created in parallel. This means that multiple calls to WaitForUpdates, CheckForUpdates, or WaitForUpdatesEx made to the same PropertyCollector on the same session on different threads of the same client, or even on different clients that share the same session are still handled on the server serially. Use of different PropertyCollector instances allows the server to handle these calculations in parallel.

Typically a service that supports the PropertyCollector managed object type will automatically create a default PropertyCollector and provide some way to obtain a reference to this PropertyCollector. If not, it will have to provide some service-specific way to create the a PropertyCollector.

Required Privileges
System.View
Since
vSphere API 4.1

Parameters

NameTypeDescription
_thisManagedObjectReference A reference to the PropertyCollector used to make the method call.

Return Value

Type Description
ManagedObjectReference
to a PropertyCollector
A reference to the new PropertyCollector.

Faults

Type Description
RuntimeFaultThrown if any type of runtime fault is thrown that is not covered by the other faults; for example, a communication error.

Events

Type
None

Show WSDL type definition



DestroyPropertyCollector(destroy)

Destroys this PropertyCollector.

A PropertyCollector that was created by CreatePropertyCollector is automatically destroyed when the session on which it was created is closed. This method can be used to destroy them explicitly.

An automatically created PropertyCollector provided by a service is not session specific and may not be destroyed.

Required Privileges
System.View
Since
vSphere API 4.1

Parameters

NameTypeDescription
_thisManagedObjectReference A reference to the PropertyCollector used to make the method call.

Return Value

Type Description
None

Faults

Type Description
NotSupportedThrown if this PropertyCollector is not allowed to be destroyed.
RuntimeFaultThrown if any type of runtime fault is thrown that is not covered by the other faults; for example, a communication error.

Events

Type
None

Show WSDL type definition



RetrieveProperties(retrieveContents)

Deprecated. As of vSphere API 4.1, use RetrievePropertiesEx.

Retrieves the specified properties of the specified managed objects.

This method is similar to creating the filters, receiving the property values, and destroying the filters. The main difference is that the output blends the results from all the filters and reports a given managed object at most once no matter how many filters apply.

The filter creation step can throw all of the same faults as CreateFilter.

Required Privileges
System.Anonymous

Parameters

NameTypeDescription
_thisManagedObjectReference A reference to the PropertyCollector used to make the method call.
specSetPropertyFilterSpec[]

Specifies the properties to retrieve.

Return Value

Type Description
ObjectContent[]The data contents of the specified objects.

Faults

Type Description
InvalidArgumentSee CreateFilter
InvalidPropertySee CreateFilter
InvalidTypeSee CreateFilter
ManagedObjectNotFoundSee CreateFilter
RuntimeFaultThrown if any type of runtime fault is thrown that is not covered by the other faults; for example, a communication error.

Events

Type
None

Show WSDL type definition



RetrievePropertiesEx(retrievePropertiesEx)

Retrieves the specified properties of the specified managed objects.

This method is similar to creating the filters, receiving the property values, and destroying the filters. The main difference is that the output blends the results from all the filters and reports a given managed object at most once no matter how many filters apply.

The filter creation step can throw all of the same faults as CreateFilter.

Required Privileges
System.Anonymous
Since
vSphere API 4.1

Parameters

NameTypeDescription
_thisManagedObjectReference A reference to the PropertyCollector used to make the method call.
specSetPropertyFilterSpec[]

Specifies the properties to retrieve.
optionsRetrieveOptions

Additional method options. If omitted, equivalent to an options argument with no fields set.

Return Value

Type Description
RetrieveResultretrieved objects or null if there are no matching objects.

Faults

Type Description
InvalidArgumentThrown if any of the following is true: See CreateFilter
InvalidPropertySee CreateFilter
InvalidTypeSee CreateFilter
ManagedObjectNotFoundSee CreateFilter
RuntimeFaultThrown if any type of runtime fault is thrown that is not covered by the other faults; for example, a communication error.

Events

Type
None

Show WSDL type definition



WaitForUpdates(waitForUpdates)

Deprecated. As of vSphere API 4.1, use WaitForUpdatesEx.

Calculate the set of updates for each existing filter in the session, returning when at least one filter has updates.
Required Privileges
System.View

Parameters

NameTypeDescription
_thisManagedObjectReference A reference to the PropertyCollector used to make the method call.
version*xsd:string

The data version currently known to the client. The value must be either
*Need not be set

Return Value

Type Description
UpdateSetChanges since the passed in data version.

Faults

Type Description
InvalidCollectorVersionThrown if the data version does not meet the requirements above.
RequestCanceledThrown if CancelWaitForUpdates has been called or the session was closed or the PropertyCollector was destroyed at some point after the call was received
RuntimeFaultThrown if any type of runtime fault is thrown that is not covered by the other faults; for example, a communication error.

Events

Type
None

Show WSDL type definition



WaitForUpdatesEx(waitForUpdatesEx)

Calculate the set of updates for each existing filter in the session.

WaitForUpdatesEx may return only partial update calculations. See truncated for a more detailed explanation. WaitForUpdatesEx may also return null after a timeout, either as requested by maxWaitSeconds or due to PropertyCollector policy.

If an application uses waitForUpdatesEx it is strongly recommended that it not make concurrent calls to WaitForUpdates, CheckForUpdates, or WaitForUpdatesEx in the same session. Concurrent calls may cause suspended change calculations to be discarded.

Required Privileges
System.View
Since
vSphere API 4.1

Parameters

NameTypeDescription
_thisManagedObjectReference A reference to the PropertyCollector used to make the method call.
version*xsd:string

The data version currently known to the client. The value must be either
options*WaitOptions

Additional options controlling the change calculation. If omitted, equivalent to an options argument with no fields set.
*Need not be set

Return Value

Type Description
UpdateSetChanges since the passed in version or null if there are no changes.

Faults

Type Description
InvalidCollectorVersionThrown if the data version does not meet the requirements above.
RequestCanceledThrown if CancelWaitForUpdates has been called or the session was closed or the PropertyCollector was destroyed at some point after the call was received
RuntimeFaultThrown if any type of runtime fault is thrown that is not covered by the other faults; for example, a communication error.

Events

Type
None

Show WSDL type definition