File: ByTime.rst

package info (click to toggle)
python-pyvmomi 5.5.0-2014.1.1-3
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 14,348 kB
  • ctags: 497
  • sloc: python: 6,594; makefile: 12
file content (22 lines) | stat: -rw-r--r-- 984 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
.. _datetime: https://docs.python.org/2/library/stdtypes.html

.. _vmodl.DynamicData: ../../vmodl/DynamicData.rst

.. _vim.TaskFilterSpec.TimeOption: ../../vim/TaskFilterSpec/TimeOption.rst


vim.TaskFilterSpec.ByTime
=========================
  This data object type specifies a time range used to filter task history.
:extends: vmodl.DynamicData_

Attributes:
    timeType (`vim.TaskFilterSpec.TimeOption`_):

       The time stamp to filter: queued, started, or completed time.
    beginTime (`datetime`_, optional):

       The beginning of the time range. If this property is not specified, then tasks are collected from the earliest time in the database.When this property is specified, the time type field must also be specified.
    endTime (`datetime`_, optional):

       The end of the time range. If this property is not specified, then tasks are collected up to the latest time in the database.When this property is specified, the time type field must also be specified.