File: ViewManager.rst

package info (click to toggle)
python-pyvmomi 6.7.1-3
  • links: PTS, VCS
  • area: main
  • in suites:
  • size: 14,980 kB
  • sloc: python: 9,206; xml: 77; makefile: 9
file content (225 lines) | stat: -rw-r--r-- 8,350 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
.. _str: https://docs.python.org/2/library/stdtypes.html

.. _bool: https://docs.python.org/2/library/stdtypes.html

.. _vim.Task: ../../vim/Task.rst

.. _ListView: ../../vim/view/ListView.rst

.. _VI API 2.5: ../../vim/version.rst#vimversionversion2

.. _InventoryView: ../../vim/view/InventoryView.rst

.. _ContainerView: ../../vim/view/ContainerView.rst

.. _vim.view.View: ../../vim/view/View.rst

.. _vim.view.ListView: ../../vim/view/ListView.rst

.. _vim.ManagedEntity: ../../vim/ManagedEntity.rst

.. _vmodl.ManagedObject: ../../vim.ExtensibleManagedObject.rst

.. _vim.view.InventoryView: ../../vim/view/InventoryView.rst

.. _vim.view.ContainerView: ../../vim/view/ContainerView.rst


vim.view.ViewManager
====================
  The `ViewManager`_ managed object provides methods to create `ContainerView`_ , `InventoryView`_ , and `ListView`_ managed objects. The `ViewManager`_ also maintains a list of managed object references to the views that you have created. Use the `viewList`_ property to access the views.A `View`_ is a mechanism that supports selection of objects on the server and subsequently, access to those objects. Views can simplify the task of retrieving data from the server. When you use a view, you can use a single invocation of a `PropertyCollector`_ method to retrieve data or receive notification of changes instead of multiple invocations involving multiple filter specifications. A view exists until you destroy it or until the end of the session.The `ViewManager`_ supports the following views:
   * A
   * `ContainerView`_
   * is based on
   * `Folder`_
   * ,
   * `Datacenter`_
   * ,
   * `ComputeResource`_
   * ,
   * `ResourcePool`_
   * , or
   * `HostSystem`_
   * managed objects. Use a container view to monitor the container contents and optionally, its descendants.
   * A
   * `ListView`_
   * managed object is based on an arbitrary but specific set of objects. When you create a list view, you provide a list of objects to populate the view (
   * `CreateListView`_
   * ), or you provide an existing view from which the new view is created (
   * `CreateListViewFromView`_
   * ).
   * An
   * `InventoryView`_
   * managed object is based on the entire inventory. Use an inventory view as a general mechanism to monitor the inventory or portions of the inventory.
   * 
   * For example, you might use the following sequence of operations to get the names of all the virtual machines on a server:
   * 
   * Create a
   * `ContainerView`_
   * for the root folder in the server inventory. For the
   * `ContainerView`_
   * , use the
   * `type`_
   * property to include only virtual machines.
   * Create a filter specification for the
   * `PropertyCollector`_
   * .
   * 
   * Use the
   * `ContainerView`_
   * as the starting object in the
   * `ObjectSpec`_
   * for the filter.
   * Use the
   * `TraversalSpec`_
   * to select all objects in the view list (all the virtual machines).
   * Use the
   * `PropertySpec`_
   * to retrieve the name property from each virtual machine.
   * 
   * Invoke the
   * `PropertyCollector`_
   * 
   * `RetrieveProperties`_
   * method.
   * 


:since: `VI API 2.5`_


Attributes
----------
    viewList ([`vim.view.View`_]):
      privilege: System.View
       An array of view references. Each array entry is a managed object reference to a view created by this ViewManager.


Methods
-------


CreateInventoryView():
   Create a new `InventoryView`_ managed object for this session.


  Privilege:
               System.View



  Args:


  Returns:
    `vim.view.InventoryView`_:
         


CreateContainerView(container, type, recursive):
   Create a `ContainerView`_ managed object for this session. The method returns a reference to a `ContainerView`_ object that has a list of managed object references. The list references objects in the container and may include references to objects from additional containers. You can configure the resulting list of objects by specifying a type list and recursion. Once you have created the view, the object list always represents the current configuration of the virtual environment and reflects any subsequent changes that occur.


  Privilege:
               System.View



  Args:
    container (`vim.ManagedEntity`_):
       A reference to an instance of a `Folder`_ , `Datacenter`_ , `ComputeResource`_ , `ResourcePool`_ , or `HostSystem`_ object.


    type (`str`_, optional):
       An optional list of managed entity types. The server associates only objects of the specified type(s) with the view. If you specify an empty array, the server uses all types.


    recursive (`bool`_):
       Whether to include only the immediate children of the container instance, or to include additional objects by following paths beyond the immediate children.When recursive is false, the list of objects contains only immediate children. When recursive is true, the server populates the list by following references beyond the immediate children (using a child's references, and then references in the resulting objects, and so on).Depending on the container type, the server will use the following properties of the container instance to obtain objects for the view's object list:
        * 
        * `Folder`_
        * object -
        * `childEntity`_
        * property. If recursive is false, the container list includes the reference to the child entity in the folder instance. If recursive is true, the server will follow the child folder path(s) to collect additional childEntity references.
        * 
        * `ResourcePool`_
        * object -
        * `vm`_
        * and
        * `resourcePool`_
        * properties. If recursive is false, the object list will contain references to the virtual machines associated with this resource pool, and references to virtual machines associated with the immediate child resource pools. If recursive is true, the server will follow all child resource pool paths extending from the immediate children (and their children, and so on) to collect additional references to virtual machines.
        * 
        * `ComputeResource`_
        * object -
        * `host`_
        * and
        * `resourcePool`_
        * properties. If recursive is false, the object list will contain references to the host systems associated with this compute resource, references to virtual machines associated with the host systems, and references to virtual machines associated with the immediate child resource pools. If recursive is true, the server will follow the child resource pool paths (and their child resource pool paths, and so on) to collect additional references to virtual machines.
        * 
        * `Datacenter`_
        * object -
        * `vmFolder`_
        * ,
        * `hostFolder`_
        * ,
        * `datastoreFolder`_
        * , and
        * `networkFolder`_
        * properties. If recursive is set to false, the server uses the immediate child folders for the virtual machines, hosts, datastores, and networks associated with this datacenter. If recursive is set to true, the server will follow the folder paths to collect references to additional objects.
        * 
        * `HostSystem`_
        * object -
        * `vm`_
        * property. The view object list contains references to the virtual machines associated with this host system. The value of recursive does not affect this behavior.
        * 




  Returns:
    `vim.view.ContainerView`_:
         


CreateListView(obj):
   Create a `ListView`_ object for this session. The method returns a session object that has a list of managed object references. The list of references corresponds to the input object list. You can modify the resulting list after you have created the object.


  Privilege:
               System.View



  Args:
    obj (`vmodl.ManagedObject`_, optional):
       The initial list of objects in the view.




  Returns:
    `vim.view.ListView`_:
         


CreateListViewFromView(view):
   Create a `ListView`_ object for this session. This method uses an existing view to construct the object list for the new view.


  Privilege:
               System.View



  Args:
    view (`vim.view.View`_):
       The view that will provide the object list for the new ListView object.




  Returns:
    `vim.view.ListView`_: