deb-python-pyvmomi/docs/vmodl/query/PropertyCollector.rst
Shawn Hartsock c83651f5be pyvmomi RST docs do not properly show lists
Fixes RST documents to include list mark up when appropriate.

closes: https://github.com/vmware/pyvmomi/issues/76
2014-08-13 14:49:24 -04:00

16 KiB

vmodl.query.PropertyCollector

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:
  • A session cannot share its
  • PropertyCollector
  • filters with other sessions
  • two different clients can share the same session, and so can share the same filters, but this is not recommended
  • When a session terminates, the associated
  • PropertyCollector
  • filters are automatically destroyed.

Attributes

filter ([vmodl.query.PropertyCollector.Filter]):
privilege: System.View

The filters that this PropertyCollector uses to determine the list of properties for which it detects incremental changes.

Methods

CreateFilter(spec, partialUpdates):

Creates a new filter for the given set of managed objects.

Privilege:

System.View

Args:
spec (vmodl.query.PropertyCollector.FilterSpec):

The specifications for the filter.

partialUpdates (bool):

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.

Returns:
vmodl.query.PropertyCollector.Filter:

A reference to the new filter.

Raises:

vmodl.query.InvalidProperty:

if "spec" has a property that is not defined on one of the objects.

vmodl.fault.InvalidArgument:
if any of the following is true:
  • "spec" is empty.
  • "spec" contains a selection with properties not defined on its type.
vmodl.fault.InvalidType:

if "spec" contains, directly or indirectly, a type name that does not refer to a known type.

vmodl.fault.ManagedObjectNotFound:

See reportMissingObjectsInResults .

RetrieveProperties(specSet):

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 .

Privilege:

System.Anonymous

Args:
specSet (vmodl.query.PropertyCollector.FilterSpec):

Specifies the properties to retrieve.

Returns:
[vmodl.query.PropertyCollector.ObjectContent]:

The data contents of the specified objects.

Raises:

vmodl.query.InvalidProperty:

See CreateFilter

vmodl.fault.InvalidArgument:

See CreateFilter

vmodl.fault.InvalidType:

See CreateFilter

vmodl.fault.ManagedObjectNotFound:

See CreateFilter

CheckForUpdates(version):

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

Privilege:

System.View

Args:
version (str, optional):
The data version currently known to the client. The value must be either
Returns:
vmodl.query.PropertyCollector.UpdateSet:

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

Raises:

vmodl.query.InvalidCollectorVersion:

if the data version does not meet the requirements above.

vmodl.fault.RequestCanceled:

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

WaitForUpdates(version):

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

Privilege:

System.View

Args:
version (str, optional):
The data version currently known to the client. The value must be either
Returns:
vmodl.query.PropertyCollector.UpdateSet:

Changes since the passed in data version.

Raises:

vmodl.query.InvalidCollectorVersion:

if the data version does not meet the requirements above.

vmodl.fault.RequestCanceled:

if CancelWaitForUpdates has been called or the session was closed or the PropertyCollector was destroyed at some point after the call was received

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.

Privilege:

System.View

Args:

Returns:

None

WaitForUpdatesEx(version, options):

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. since: vSphere API 4.1

Privilege:

System.View

Args:
version (str, optional):
The data version currently known to the client. The value must be either
options (vmodl.query.PropertyCollector.WaitOptions, optional):

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

Returns:
vmodl.query.PropertyCollector.UpdateSet:

Changes since the passed in version or null if there are no changes.

Raises:

vmodl.query.InvalidCollectorVersion:

if the data version does not meet the requirements above.

vmodl.fault.RequestCanceled:

if CancelWaitForUpdates has been called or the session was closed or the PropertyCollector was destroyed at some point after the call was received

RetrievePropertiesEx(specSet, options):

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 . since: vSphere API 4.1

Privilege:

System.Anonymous

Args:
specSet (vmodl.query.PropertyCollector.FilterSpec):

Specifies the properties to retrieve.

options (vmodl.query.PropertyCollector.RetrieveOptions):

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

Returns:
vmodl.query.PropertyCollector.RetrieveResult:

retrieved objects or null if there are no matching objects.

Raises:

vmodl.query.InvalidProperty:

See CreateFilter

vmodl.fault.InvalidArgument:

if any of the following is true: See CreateFilter

vmodl.fault.InvalidType:

See CreateFilter

vmodl.fault.ManagedObjectNotFound:

See CreateFilter

ContinueRetrievePropertiesEx(token):

Retrieves additional results from a retrieval started by RetrievePropertiesEx on the same session on the same PropertyCollector . since: vSphere API 4.1

Privilege:

System.Anonymous

Args:
token (str):

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

Returns:
vmodl.query.PropertyCollector.RetrieveResult:

retrieved objects.

Raises:

vmodl.query.InvalidProperty:

vmodl.query.InvalidProperty

vmodl.fault.InvalidArgument:

If the token does not match the token from the previous RetrieveResult returned on the same session by the same PropertyCollector .

CancelRetrievePropertiesEx(token):

Discards remaining results from a retrieval started by RetrievePropertiesEx on the same session on the same PropertyCollector . since: vSphere API 4.1

Privilege:

System.Anonymous

Args:
token (str):

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

Returns:

None

Raises:

vmodl.query.InvalidProperty:

vmodl.query.InvalidProperty

vmodl.fault.InvalidArgument:

If the token does not match the token from the previous RetrieveResult returned on the same session by the same PropertyCollector .

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 . since: vSphere API 4.1

Privilege:

System.View

Args:

Returns:
vmodl.query.PropertyCollector:

A reference to the new PropertyCollector .

DestroyPropertyCollector():

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. since: vSphere API 4.1

Privilege:

System.View

Args:

Returns:

None

Raises:

vmodl.fault.NotSupported:

if this PropertyCollector is not allowed to be destroyed.