mirror of
https://github.com/vmware/vsphere-automation-sdk-python.git
synced 2024-11-22 09:39:58 -05:00
commit
2378d54a40
@ -175,6 +175,82 @@
|
||||
</div>
|
||||
<div class="section" id="vmware-vapi-vsphere-client-module">
|
||||
<h2>vmware.vapi.vsphere.client module<a class="headerlink" href="#vmware-vapi-vsphere-client-module" title="Permalink to this headline">¶</a></h2>
|
||||
<p>vSphere Client</p>
|
||||
<dl class="class">
|
||||
<dt id="vmware.vapi.vsphere.client.StubFactory">
|
||||
<em class="property">class </em><code class="sig-prename descclassname">vmware.vapi.vsphere.client.</code><code class="sig-name descname">StubFactory</code><span class="sig-paren">(</span><em class="sig-param">stub_config</em><span class="sig-paren">)</span><a class="headerlink" href="#vmware.vapi.vsphere.client.StubFactory" title="Permalink to this definition">¶</a></dt>
|
||||
<dd><p>Bases: <code class="xref py py-class docutils literal notranslate"><span class="pre">vmware.vapi.bindings.stub.StubFactoryBase</span></code></p>
|
||||
<p>Initialize StubFactoryBase</p>
|
||||
<dl class="field-list simple">
|
||||
<dt class="field-odd">Parameters</dt>
|
||||
<dd class="field-odd"><p><strong>stub_config</strong> (<code class="xref py py-class docutils literal notranslate"><span class="pre">vmware.vapi.bindings.stub.StubConfiguration</span></code>) – Stub config instance</p>
|
||||
</dd>
|
||||
</dl>
|
||||
</dd></dl>
|
||||
|
||||
<dl class="class">
|
||||
<dt id="vmware.vapi.vsphere.client.VsphereClient">
|
||||
<em class="property">class </em><code class="sig-prename descclassname">vmware.vapi.vsphere.client.</code><code class="sig-name descname">VsphereClient</code><span class="sig-paren">(</span><em class="sig-param">session</em>, <em class="sig-param">server</em>, <em class="sig-param">username</em>, <em class="sig-param">password</em>, <em class="sig-param">bearer_token</em>, <em class="sig-param">hok_token</em>, <em class="sig-param">private_key</em><span class="sig-paren">)</span><a class="headerlink" href="#vmware.vapi.vsphere.client.VsphereClient" title="Permalink to this definition">¶</a></dt>
|
||||
<dd><p>Bases: <code class="xref py py-class docutils literal notranslate"><span class="pre">vmware.vapi.bindings.stub.ApiClient</span></code></p>
|
||||
<p>vSphere Client class that provides access to stubs for all services in the
|
||||
vSphere API</p>
|
||||
<p>Initialize VsphereClient by creating a parent stub factory instance
|
||||
of all vSphere components.</p>
|
||||
<dl class="field-list simple">
|
||||
<dt class="field-odd">Parameters</dt>
|
||||
<dd class="field-odd"><p><strong>session</strong> (<code class="xref py py-class docutils literal notranslate"><span class="pre">requests.Session</span></code>) – Requests HTTP session instance. If not specified,</p>
|
||||
</dd>
|
||||
</dl>
|
||||
<p>then one is automatically created and used
|
||||
:type server: <code class="xref py py-class docutils literal notranslate"><span class="pre">str</span></code>
|
||||
:param server: vCenter host name or IP address
|
||||
:type username: <code class="xref py py-class docutils literal notranslate"><span class="pre">str</span></code>
|
||||
:param username: Name of the user
|
||||
:type password: <code class="xref py py-class docutils literal notranslate"><span class="pre">str</span></code>
|
||||
:param password: Password of the user
|
||||
:type bearer_token: <code class="xref py py-class docutils literal notranslate"><span class="pre">str</span></code>
|
||||
:param bearer_token: SAML Bearer Token
|
||||
:type hok_token: <code class="xref py py-class docutils literal notranslate"><span class="pre">str</span></code>
|
||||
:param hok_token: SAML Hok Token
|
||||
:type private_key: <code class="xref py py-class docutils literal notranslate"><span class="pre">str</span></code>
|
||||
:param private_key: Absolute file path of the private key of the user</p>
|
||||
</dd></dl>
|
||||
|
||||
<dl class="function">
|
||||
<dt id="vmware.vapi.vsphere.client.create_vsphere_client">
|
||||
<code class="sig-prename descclassname">vmware.vapi.vsphere.client.</code><code class="sig-name descname">create_vsphere_client</code><span class="sig-paren">(</span><em class="sig-param">server</em>, <em class="sig-param">username=None</em>, <em class="sig-param">password=None</em>, <em class="sig-param">bearer_token=None</em>, <em class="sig-param">hok_token=None</em>, <em class="sig-param">private_key=None</em>, <em class="sig-param">session=None</em><span class="sig-paren">)</span><a class="headerlink" href="#vmware.vapi.vsphere.client.create_vsphere_client" title="Permalink to this definition">¶</a></dt>
|
||||
<dd><p>Helper method to create an instance of the vSphere API client.
|
||||
Please provide one of the following options to authenticate:</p>
|
||||
<blockquote>
|
||||
<div><ul class="simple">
|
||||
<li><p>username and password,</p></li>
|
||||
<li><p>bearer_token,</p></li>
|
||||
<li><p>hok_token and private_key</p></li>
|
||||
</ul>
|
||||
</div></blockquote>
|
||||
<dl class="field-list simple">
|
||||
<dt class="field-odd">Parameters</dt>
|
||||
<dd class="field-odd"><ul class="simple">
|
||||
<li><p><strong>server</strong> (<code class="xref py py-class docutils literal notranslate"><span class="pre">str</span></code>) – vCenter host name or IP address</p></li>
|
||||
<li><p><strong>username</strong> (<code class="xref py py-class docutils literal notranslate"><span class="pre">str</span></code>) – Name of the user</p></li>
|
||||
<li><p><strong>password</strong> (<code class="xref py py-class docutils literal notranslate"><span class="pre">str</span></code>) – Password of the user</p></li>
|
||||
<li><p><strong>bearer_token</strong> (<code class="xref py py-class docutils literal notranslate"><span class="pre">str</span></code>) – SAML Bearer Token</p></li>
|
||||
<li><p><strong>hok_token</strong> (<code class="xref py py-class docutils literal notranslate"><span class="pre">str</span></code>) – SAML Hok Token</p></li>
|
||||
<li><p><strong>private_key</strong> (<code class="xref py py-class docutils literal notranslate"><span class="pre">str</span></code>) – Absolute file path of the private key of the user</p></li>
|
||||
<li><p><strong>session</strong> (<code class="xref py py-class docutils literal notranslate"><span class="pre">requests.Session</span></code> or <code class="docutils literal notranslate"><span class="pre">None</span></code>) – Requests HTTP session instance. If not specified, then one
|
||||
is automatically created and used</p></li>
|
||||
</ul>
|
||||
</dd>
|
||||
<dt class="field-even">Return type</dt>
|
||||
<dd class="field-even"><p><code class="xref py py-class docutils literal notranslate"><span class="pre">vmware.vapi.vmc.client.VsphereClient</span></code></p>
|
||||
</dd>
|
||||
<dt class="field-odd">Returns</dt>
|
||||
<dd class="field-odd"><p>Vsphere Client instance</p>
|
||||
</dd>
|
||||
</dl>
|
||||
</dd></dl>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
15
vsphere/7.0.1.0/_sources/com.rst.txt
Normal file
15
vsphere/7.0.1.0/_sources/com.rst.txt
Normal file
@ -0,0 +1,15 @@
|
||||
com package
|
||||
===========
|
||||
|
||||
.. automodule:: com
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
||||
|
||||
Subpackages
|
||||
-----------
|
||||
|
||||
.. toctree::
|
||||
:maxdepth: 10
|
||||
|
||||
com.vmware
|
@ -0,0 +1,34 @@
|
||||
com.vmware.appliance.networking package
|
||||
=======================================
|
||||
|
||||
.. automodule:: com.vmware.appliance.networking
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
||||
|
||||
Submodules
|
||||
----------
|
||||
|
||||
com.vmware.appliance.networking.dns\_client module
|
||||
--------------------------------------------------
|
||||
|
||||
.. automodule:: com.vmware.appliance.networking.dns_client
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
||||
|
||||
com.vmware.appliance.networking.firewall\_client module
|
||||
-------------------------------------------------------
|
||||
|
||||
.. automodule:: com.vmware.appliance.networking.firewall_client
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
||||
|
||||
com.vmware.appliance.networking.interfaces\_client module
|
||||
---------------------------------------------------------
|
||||
|
||||
.. automodule:: com.vmware.appliance.networking.interfaces_client
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
@ -0,0 +1,26 @@
|
||||
com.vmware.appliance.recovery.backup package
|
||||
============================================
|
||||
|
||||
.. automodule:: com.vmware.appliance.recovery.backup
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
||||
|
||||
Submodules
|
||||
----------
|
||||
|
||||
com.vmware.appliance.recovery.backup.job\_client module
|
||||
-------------------------------------------------------
|
||||
|
||||
.. automodule:: com.vmware.appliance.recovery.backup.job_client
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
||||
|
||||
com.vmware.appliance.recovery.backup.system\_name\_client module
|
||||
----------------------------------------------------------------
|
||||
|
||||
.. automodule:: com.vmware.appliance.recovery.backup.system_name_client
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
@ -0,0 +1,42 @@
|
||||
com.vmware.appliance.recovery package
|
||||
=====================================
|
||||
|
||||
.. automodule:: com.vmware.appliance.recovery
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
||||
|
||||
Subpackages
|
||||
-----------
|
||||
|
||||
.. toctree::
|
||||
:maxdepth: 10
|
||||
|
||||
com.vmware.appliance.recovery.backup
|
||||
|
||||
Submodules
|
||||
----------
|
||||
|
||||
com.vmware.appliance.recovery.backup\_client module
|
||||
---------------------------------------------------
|
||||
|
||||
.. automodule:: com.vmware.appliance.recovery.backup_client
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
||||
|
||||
com.vmware.appliance.recovery.reconciliation\_client module
|
||||
-----------------------------------------------------------
|
||||
|
||||
.. automodule:: com.vmware.appliance.recovery.reconciliation_client
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
||||
|
||||
com.vmware.appliance.recovery.restore\_client module
|
||||
----------------------------------------------------
|
||||
|
||||
.. automodule:: com.vmware.appliance.recovery.restore_client
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
149
vsphere/7.0.1.0/_sources/com.vmware.appliance.rst.txt
Normal file
149
vsphere/7.0.1.0/_sources/com.vmware.appliance.rst.txt
Normal file
@ -0,0 +1,149 @@
|
||||
com.vmware.appliance package
|
||||
============================
|
||||
|
||||
.. automodule:: com.vmware.appliance
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
||||
|
||||
Subpackages
|
||||
-----------
|
||||
|
||||
.. toctree::
|
||||
:maxdepth: 10
|
||||
|
||||
com.vmware.appliance.networking
|
||||
com.vmware.appliance.recovery
|
||||
com.vmware.appliance.system
|
||||
com.vmware.appliance.vcenter
|
||||
|
||||
Submodules
|
||||
----------
|
||||
|
||||
com.vmware.appliance.access\_client module
|
||||
------------------------------------------
|
||||
|
||||
.. automodule:: com.vmware.appliance.access_client
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
||||
|
||||
com.vmware.appliance.health\_client module
|
||||
------------------------------------------
|
||||
|
||||
.. automodule:: com.vmware.appliance.health_client
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
||||
|
||||
com.vmware.appliance.infraprofile\_client module
|
||||
------------------------------------------------
|
||||
|
||||
.. automodule:: com.vmware.appliance.infraprofile_client
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
||||
|
||||
com.vmware.appliance.local\_accounts\_client module
|
||||
---------------------------------------------------
|
||||
|
||||
.. automodule:: com.vmware.appliance.local_accounts_client
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
||||
|
||||
com.vmware.appliance.localaccounts\_client module
|
||||
-------------------------------------------------
|
||||
|
||||
.. automodule:: com.vmware.appliance.localaccounts_client
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
||||
|
||||
com.vmware.appliance.logging\_client module
|
||||
-------------------------------------------
|
||||
|
||||
.. automodule:: com.vmware.appliance.logging_client
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
||||
|
||||
com.vmware.appliance.monitoring\_client module
|
||||
----------------------------------------------
|
||||
|
||||
.. automodule:: com.vmware.appliance.monitoring_client
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
||||
|
||||
com.vmware.appliance.networking\_client module
|
||||
----------------------------------------------
|
||||
|
||||
.. automodule:: com.vmware.appliance.networking_client
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
||||
|
||||
com.vmware.appliance.ntp\_client module
|
||||
---------------------------------------
|
||||
|
||||
.. automodule:: com.vmware.appliance.ntp_client
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
||||
|
||||
com.vmware.appliance.recovery\_client module
|
||||
--------------------------------------------
|
||||
|
||||
.. automodule:: com.vmware.appliance.recovery_client
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
||||
|
||||
com.vmware.appliance.shutdown\_client module
|
||||
--------------------------------------------
|
||||
|
||||
.. automodule:: com.vmware.appliance.shutdown_client
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
||||
|
||||
com.vmware.appliance.supportbundle\_client module
|
||||
-------------------------------------------------
|
||||
|
||||
.. automodule:: com.vmware.appliance.supportbundle_client
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
||||
|
||||
com.vmware.appliance.system\_client module
|
||||
------------------------------------------
|
||||
|
||||
.. automodule:: com.vmware.appliance.system_client
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
||||
|
||||
com.vmware.appliance.tymesync\_client module
|
||||
--------------------------------------------
|
||||
|
||||
.. automodule:: com.vmware.appliance.tymesync_client
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
||||
|
||||
com.vmware.appliance.update\_client module
|
||||
------------------------------------------
|
||||
|
||||
.. automodule:: com.vmware.appliance.update_client
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
||||
|
||||
com.vmware.appliance.vmon\_client module
|
||||
----------------------------------------
|
||||
|
||||
.. automodule:: com.vmware.appliance.vmon_client
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
26
vsphere/7.0.1.0/_sources/com.vmware.appliance.system.rst.txt
Normal file
26
vsphere/7.0.1.0/_sources/com.vmware.appliance.system.rst.txt
Normal file
@ -0,0 +1,26 @@
|
||||
com.vmware.appliance.system package
|
||||
===================================
|
||||
|
||||
.. automodule:: com.vmware.appliance.system
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
||||
|
||||
Submodules
|
||||
----------
|
||||
|
||||
com.vmware.appliance.system.security\_client module
|
||||
---------------------------------------------------
|
||||
|
||||
.. automodule:: com.vmware.appliance.system.security_client
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
||||
|
||||
com.vmware.appliance.system.time\_client module
|
||||
-----------------------------------------------
|
||||
|
||||
.. automodule:: com.vmware.appliance.system.time_client
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
@ -0,0 +1,15 @@
|
||||
com.vmware.appliance.vcenter package
|
||||
====================================
|
||||
|
||||
.. automodule:: com.vmware.appliance.vcenter
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
||||
|
||||
Subpackages
|
||||
-----------
|
||||
|
||||
.. toctree::
|
||||
:maxdepth: 10
|
||||
|
||||
com.vmware.appliance.vcenter.settings
|
@ -0,0 +1,26 @@
|
||||
com.vmware.appliance.vcenter.settings package
|
||||
=============================================
|
||||
|
||||
.. automodule:: com.vmware.appliance.vcenter.settings
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
||||
|
||||
Subpackages
|
||||
-----------
|
||||
|
||||
.. toctree::
|
||||
:maxdepth: 10
|
||||
|
||||
com.vmware.appliance.vcenter.settings.v1
|
||||
|
||||
Submodules
|
||||
----------
|
||||
|
||||
com.vmware.appliance.vcenter.settings.v1\_client module
|
||||
-------------------------------------------------------
|
||||
|
||||
.. automodule:: com.vmware.appliance.vcenter.settings.v1_client
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
@ -0,0 +1,26 @@
|
||||
com.vmware.appliance.vcenter.settings.v1.config.components package
|
||||
==================================================================
|
||||
|
||||
.. automodule:: com.vmware.appliance.vcenter.settings.v1.config.components
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
||||
|
||||
Submodules
|
||||
----------
|
||||
|
||||
com.vmware.appliance.vcenter.settings.v1.config.components.applmgmt\_client module
|
||||
----------------------------------------------------------------------------------
|
||||
|
||||
.. automodule:: com.vmware.appliance.vcenter.settings.v1.config.components.applmgmt_client
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
||||
|
||||
com.vmware.appliance.vcenter.settings.v1.config.components.authmanagement\_client module
|
||||
----------------------------------------------------------------------------------------
|
||||
|
||||
.. automodule:: com.vmware.appliance.vcenter.settings.v1.config.components.authmanagement_client
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
@ -0,0 +1,26 @@
|
||||
com.vmware.appliance.vcenter.settings.v1.config package
|
||||
=======================================================
|
||||
|
||||
.. automodule:: com.vmware.appliance.vcenter.settings.v1.config
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
||||
|
||||
Subpackages
|
||||
-----------
|
||||
|
||||
.. toctree::
|
||||
:maxdepth: 10
|
||||
|
||||
com.vmware.appliance.vcenter.settings.v1.config.components
|
||||
|
||||
Submodules
|
||||
----------
|
||||
|
||||
com.vmware.appliance.vcenter.settings.v1.config.components\_client module
|
||||
-------------------------------------------------------------------------
|
||||
|
||||
.. automodule:: com.vmware.appliance.vcenter.settings.v1.config.components_client
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
@ -0,0 +1,26 @@
|
||||
com.vmware.appliance.vcenter.settings.v1 package
|
||||
================================================
|
||||
|
||||
.. automodule:: com.vmware.appliance.vcenter.settings.v1
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
||||
|
||||
Subpackages
|
||||
-----------
|
||||
|
||||
.. toctree::
|
||||
:maxdepth: 10
|
||||
|
||||
com.vmware.appliance.vcenter.settings.v1.config
|
||||
|
||||
Submodules
|
||||
----------
|
||||
|
||||
com.vmware.appliance.vcenter.settings.v1.config\_client module
|
||||
--------------------------------------------------------------
|
||||
|
||||
.. automodule:: com.vmware.appliance.vcenter.settings.v1.config_client
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
26
vsphere/7.0.1.0/_sources/com.vmware.cis.rst.txt
Normal file
26
vsphere/7.0.1.0/_sources/com.vmware.cis.rst.txt
Normal file
@ -0,0 +1,26 @@
|
||||
com.vmware.cis package
|
||||
======================
|
||||
|
||||
.. automodule:: com.vmware.cis
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
||||
|
||||
Submodules
|
||||
----------
|
||||
|
||||
com.vmware.cis.tagging\_client module
|
||||
-------------------------------------
|
||||
|
||||
.. automodule:: com.vmware.cis.tagging_client
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
||||
|
||||
com.vmware.cis.task\_client module
|
||||
----------------------------------
|
||||
|
||||
.. automodule:: com.vmware.cis.task_client
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
@ -0,0 +1,26 @@
|
||||
com.vmware.content.library.item package
|
||||
=======================================
|
||||
|
||||
.. automodule:: com.vmware.content.library.item
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
||||
|
||||
Submodules
|
||||
----------
|
||||
|
||||
com.vmware.content.library.item.downloadsession\_client module
|
||||
--------------------------------------------------------------
|
||||
|
||||
.. automodule:: com.vmware.content.library.item.downloadsession_client
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
||||
|
||||
com.vmware.content.library.item.updatesession\_client module
|
||||
------------------------------------------------------------
|
||||
|
||||
.. automodule:: com.vmware.content.library.item.updatesession_client
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
26
vsphere/7.0.1.0/_sources/com.vmware.content.library.rst.txt
Normal file
26
vsphere/7.0.1.0/_sources/com.vmware.content.library.rst.txt
Normal file
@ -0,0 +1,26 @@
|
||||
com.vmware.content.library package
|
||||
==================================
|
||||
|
||||
.. automodule:: com.vmware.content.library
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
||||
|
||||
Subpackages
|
||||
-----------
|
||||
|
||||
.. toctree::
|
||||
:maxdepth: 10
|
||||
|
||||
com.vmware.content.library.item
|
||||
|
||||
Submodules
|
||||
----------
|
||||
|
||||
com.vmware.content.library.item\_client module
|
||||
----------------------------------------------
|
||||
|
||||
.. automodule:: com.vmware.content.library.item_client
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
27
vsphere/7.0.1.0/_sources/com.vmware.content.rst.txt
Normal file
27
vsphere/7.0.1.0/_sources/com.vmware.content.rst.txt
Normal file
@ -0,0 +1,27 @@
|
||||
com.vmware.content package
|
||||
==========================
|
||||
|
||||
.. automodule:: com.vmware.content
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
||||
|
||||
Subpackages
|
||||
-----------
|
||||
|
||||
.. toctree::
|
||||
:maxdepth: 10
|
||||
|
||||
com.vmware.content.library
|
||||
com.vmware.content.type
|
||||
|
||||
Submodules
|
||||
----------
|
||||
|
||||
com.vmware.content.library\_client module
|
||||
-----------------------------------------
|
||||
|
||||
.. automodule:: com.vmware.content.library_client
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
18
vsphere/7.0.1.0/_sources/com.vmware.content.type.ovf.rst.txt
Normal file
18
vsphere/7.0.1.0/_sources/com.vmware.content.type.ovf.rst.txt
Normal file
@ -0,0 +1,18 @@
|
||||
com.vmware.content.type.ovf package
|
||||
===================================
|
||||
|
||||
.. automodule:: com.vmware.content.type.ovf
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
||||
|
||||
Submodules
|
||||
----------
|
||||
|
||||
com.vmware.content.type.ovf.policy\_client module
|
||||
-------------------------------------------------
|
||||
|
||||
.. automodule:: com.vmware.content.type.ovf.policy_client
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
26
vsphere/7.0.1.0/_sources/com.vmware.content.type.rst.txt
Normal file
26
vsphere/7.0.1.0/_sources/com.vmware.content.type.rst.txt
Normal file
@ -0,0 +1,26 @@
|
||||
com.vmware.content.type package
|
||||
===============================
|
||||
|
||||
.. automodule:: com.vmware.content.type
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
||||
|
||||
Subpackages
|
||||
-----------
|
||||
|
||||
.. toctree::
|
||||
:maxdepth: 10
|
||||
|
||||
com.vmware.content.type.ovf
|
||||
|
||||
Submodules
|
||||
----------
|
||||
|
||||
com.vmware.content.type.ovf\_client module
|
||||
------------------------------------------
|
||||
|
||||
.. automodule:: com.vmware.content.type.ovf_client
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
18
vsphere/7.0.1.0/_sources/com.vmware.esx.hcl.rst.txt
Normal file
18
vsphere/7.0.1.0/_sources/com.vmware.esx.hcl.rst.txt
Normal file
@ -0,0 +1,18 @@
|
||||
com.vmware.esx.hcl package
|
||||
==========================
|
||||
|
||||
.. automodule:: com.vmware.esx.hcl
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
||||
|
||||
Submodules
|
||||
----------
|
||||
|
||||
com.vmware.esx.hcl.hosts\_client module
|
||||
---------------------------------------
|
||||
|
||||
.. automodule:: com.vmware.esx.hcl.hosts_client
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
18
vsphere/7.0.1.0/_sources/com.vmware.esx.hosts.health.rst.txt
Normal file
18
vsphere/7.0.1.0/_sources/com.vmware.esx.hosts.health.rst.txt
Normal file
@ -0,0 +1,18 @@
|
||||
com.vmware.esx.hosts.health package
|
||||
===================================
|
||||
|
||||
.. automodule:: com.vmware.esx.hosts.health
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
||||
|
||||
Submodules
|
||||
----------
|
||||
|
||||
com.vmware.esx.hosts.health.perspectives\_client module
|
||||
-------------------------------------------------------
|
||||
|
||||
.. automodule:: com.vmware.esx.hosts.health.perspectives_client
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
26
vsphere/7.0.1.0/_sources/com.vmware.esx.hosts.rst.txt
Normal file
26
vsphere/7.0.1.0/_sources/com.vmware.esx.hosts.rst.txt
Normal file
@ -0,0 +1,26 @@
|
||||
com.vmware.esx.hosts package
|
||||
============================
|
||||
|
||||
.. automodule:: com.vmware.esx.hosts
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
||||
|
||||
Subpackages
|
||||
-----------
|
||||
|
||||
.. toctree::
|
||||
:maxdepth: 10
|
||||
|
||||
com.vmware.esx.hosts.health
|
||||
|
||||
Submodules
|
||||
----------
|
||||
|
||||
com.vmware.esx.hosts.software\_client module
|
||||
--------------------------------------------
|
||||
|
||||
.. automodule:: com.vmware.esx.hosts.software_client
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
44
vsphere/7.0.1.0/_sources/com.vmware.esx.rst.txt
Normal file
44
vsphere/7.0.1.0/_sources/com.vmware.esx.rst.txt
Normal file
@ -0,0 +1,44 @@
|
||||
com.vmware.esx package
|
||||
======================
|
||||
|
||||
.. automodule:: com.vmware.esx
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
||||
|
||||
Subpackages
|
||||
-----------
|
||||
|
||||
.. toctree::
|
||||
:maxdepth: 10
|
||||
|
||||
com.vmware.esx.hcl
|
||||
com.vmware.esx.hosts
|
||||
com.vmware.esx.settings
|
||||
|
||||
Submodules
|
||||
----------
|
||||
|
||||
com.vmware.esx.hcl\_client module
|
||||
---------------------------------
|
||||
|
||||
.. automodule:: com.vmware.esx.hcl_client
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
||||
|
||||
com.vmware.esx.hosts\_client module
|
||||
-----------------------------------
|
||||
|
||||
.. automodule:: com.vmware.esx.hosts_client
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
||||
|
||||
com.vmware.esx.settings\_client module
|
||||
--------------------------------------
|
||||
|
||||
.. automodule:: com.vmware.esx.settings_client
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
@ -0,0 +1,18 @@
|
||||
com.vmware.esx.settings.clusters.policies package
|
||||
=================================================
|
||||
|
||||
.. automodule:: com.vmware.esx.settings.clusters.policies
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
||||
|
||||
Submodules
|
||||
----------
|
||||
|
||||
com.vmware.esx.settings.clusters.policies.apply\_client module
|
||||
--------------------------------------------------------------
|
||||
|
||||
.. automodule:: com.vmware.esx.settings.clusters.policies.apply_client
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
@ -0,0 +1,43 @@
|
||||
com.vmware.esx.settings.clusters package
|
||||
========================================
|
||||
|
||||
.. automodule:: com.vmware.esx.settings.clusters
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
||||
|
||||
Subpackages
|
||||
-----------
|
||||
|
||||
.. toctree::
|
||||
:maxdepth: 10
|
||||
|
||||
com.vmware.esx.settings.clusters.policies
|
||||
com.vmware.esx.settings.clusters.software
|
||||
|
||||
Submodules
|
||||
----------
|
||||
|
||||
com.vmware.esx.settings.clusters.enablement\_client module
|
||||
----------------------------------------------------------
|
||||
|
||||
.. automodule:: com.vmware.esx.settings.clusters.enablement_client
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
||||
|
||||
com.vmware.esx.settings.clusters.policies\_client module
|
||||
--------------------------------------------------------
|
||||
|
||||
.. automodule:: com.vmware.esx.settings.clusters.policies_client
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
||||
|
||||
com.vmware.esx.settings.clusters.software\_client module
|
||||
--------------------------------------------------------
|
||||
|
||||
.. automodule:: com.vmware.esx.settings.clusters.software_client
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
@ -0,0 +1,18 @@
|
||||
com.vmware.esx.settings.clusters.software.drafts package
|
||||
========================================================
|
||||
|
||||
.. automodule:: com.vmware.esx.settings.clusters.software.drafts
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
||||
|
||||
Submodules
|
||||
----------
|
||||
|
||||
com.vmware.esx.settings.clusters.software.drafts.software\_client module
|
||||
------------------------------------------------------------------------
|
||||
|
||||
.. automodule:: com.vmware.esx.settings.clusters.software.drafts.software_client
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
@ -0,0 +1,18 @@
|
||||
com.vmware.esx.settings.clusters.software.reports package
|
||||
=========================================================
|
||||
|
||||
.. automodule:: com.vmware.esx.settings.clusters.software.reports
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
||||
|
||||
Submodules
|
||||
----------
|
||||
|
||||
com.vmware.esx.settings.clusters.software.reports.hardware\_compatibility\_client module
|
||||
----------------------------------------------------------------------------------------
|
||||
|
||||
.. automodule:: com.vmware.esx.settings.clusters.software.reports.hardware_compatibility_client
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
@ -0,0 +1,35 @@
|
||||
com.vmware.esx.settings.clusters.software package
|
||||
=================================================
|
||||
|
||||
.. automodule:: com.vmware.esx.settings.clusters.software
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
||||
|
||||
Subpackages
|
||||
-----------
|
||||
|
||||
.. toctree::
|
||||
:maxdepth: 10
|
||||
|
||||
com.vmware.esx.settings.clusters.software.drafts
|
||||
com.vmware.esx.settings.clusters.software.reports
|
||||
|
||||
Submodules
|
||||
----------
|
||||
|
||||
com.vmware.esx.settings.clusters.software.drafts\_client module
|
||||
---------------------------------------------------------------
|
||||
|
||||
.. automodule:: com.vmware.esx.settings.clusters.software.drafts_client
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
||||
|
||||
com.vmware.esx.settings.clusters.software.reports\_client module
|
||||
----------------------------------------------------------------
|
||||
|
||||
.. automodule:: com.vmware.esx.settings.clusters.software.reports_client
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
@ -0,0 +1,18 @@
|
||||
com.vmware.esx.settings.defaults.clusters.policies package
|
||||
==========================================================
|
||||
|
||||
.. automodule:: com.vmware.esx.settings.defaults.clusters.policies
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
||||
|
||||
Submodules
|
||||
----------
|
||||
|
||||
com.vmware.esx.settings.defaults.clusters.policies.apply\_client module
|
||||
-----------------------------------------------------------------------
|
||||
|
||||
.. automodule:: com.vmware.esx.settings.defaults.clusters.policies.apply_client
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
@ -0,0 +1,26 @@
|
||||
com.vmware.esx.settings.defaults.clusters package
|
||||
=================================================
|
||||
|
||||
.. automodule:: com.vmware.esx.settings.defaults.clusters
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
||||
|
||||
Subpackages
|
||||
-----------
|
||||
|
||||
.. toctree::
|
||||
:maxdepth: 10
|
||||
|
||||
com.vmware.esx.settings.defaults.clusters.policies
|
||||
|
||||
Submodules
|
||||
----------
|
||||
|
||||
com.vmware.esx.settings.defaults.clusters.policies\_client module
|
||||
-----------------------------------------------------------------
|
||||
|
||||
.. automodule:: com.vmware.esx.settings.defaults.clusters.policies_client
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
@ -0,0 +1,26 @@
|
||||
com.vmware.esx.settings.defaults package
|
||||
========================================
|
||||
|
||||
.. automodule:: com.vmware.esx.settings.defaults
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
||||
|
||||
Subpackages
|
||||
-----------
|
||||
|
||||
.. toctree::
|
||||
:maxdepth: 10
|
||||
|
||||
com.vmware.esx.settings.defaults.clusters
|
||||
|
||||
Submodules
|
||||
----------
|
||||
|
||||
com.vmware.esx.settings.defaults.clusters\_client module
|
||||
--------------------------------------------------------
|
||||
|
||||
.. automodule:: com.vmware.esx.settings.defaults.clusters_client
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
@ -0,0 +1,34 @@
|
||||
com.vmware.esx.settings.depot\_content package
|
||||
==============================================
|
||||
|
||||
.. automodule:: com.vmware.esx.settings.depot_content
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
||||
|
||||
Submodules
|
||||
----------
|
||||
|
||||
com.vmware.esx.settings.depot\_content.add\_ons\_client module
|
||||
--------------------------------------------------------------
|
||||
|
||||
.. automodule:: com.vmware.esx.settings.depot_content.add_ons_client
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
||||
|
||||
com.vmware.esx.settings.depot\_content.base\_images\_client module
|
||||
------------------------------------------------------------------
|
||||
|
||||
.. automodule:: com.vmware.esx.settings.depot_content.base_images_client
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
||||
|
||||
com.vmware.esx.settings.depot\_content.components\_client module
|
||||
----------------------------------------------------------------
|
||||
|
||||
.. automodule:: com.vmware.esx.settings.depot_content.components_client
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
@ -0,0 +1,18 @@
|
||||
com.vmware.esx.settings.hardware\_support.managers package
|
||||
==========================================================
|
||||
|
||||
.. automodule:: com.vmware.esx.settings.hardware_support.managers
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
||||
|
||||
Submodules
|
||||
----------
|
||||
|
||||
com.vmware.esx.settings.hardware\_support.managers.packages\_client module
|
||||
--------------------------------------------------------------------------
|
||||
|
||||
.. automodule:: com.vmware.esx.settings.hardware_support.managers.packages_client
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
@ -0,0 +1,26 @@
|
||||
com.vmware.esx.settings.hardware\_support package
|
||||
=================================================
|
||||
|
||||
.. automodule:: com.vmware.esx.settings.hardware_support
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
||||
|
||||
Subpackages
|
||||
-----------
|
||||
|
||||
.. toctree::
|
||||
:maxdepth: 10
|
||||
|
||||
com.vmware.esx.settings.hardware_support.managers
|
||||
|
||||
Submodules
|
||||
----------
|
||||
|
||||
com.vmware.esx.settings.hardware\_support.managers\_client module
|
||||
-----------------------------------------------------------------
|
||||
|
||||
.. automodule:: com.vmware.esx.settings.hardware_support.managers_client
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
69
vsphere/7.0.1.0/_sources/com.vmware.esx.settings.rst.txt
Normal file
69
vsphere/7.0.1.0/_sources/com.vmware.esx.settings.rst.txt
Normal file
@ -0,0 +1,69 @@
|
||||
com.vmware.esx.settings package
|
||||
===============================
|
||||
|
||||
.. automodule:: com.vmware.esx.settings
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
||||
|
||||
Subpackages
|
||||
-----------
|
||||
|
||||
.. toctree::
|
||||
:maxdepth: 10
|
||||
|
||||
com.vmware.esx.settings.clusters
|
||||
com.vmware.esx.settings.defaults
|
||||
com.vmware.esx.settings.depot_content
|
||||
com.vmware.esx.settings.hardware_support
|
||||
|
||||
Submodules
|
||||
----------
|
||||
|
||||
com.vmware.esx.settings.clusters\_client module
|
||||
-----------------------------------------------
|
||||
|
||||
.. automodule:: com.vmware.esx.settings.clusters_client
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
||||
|
||||
com.vmware.esx.settings.defaults\_client module
|
||||
-----------------------------------------------
|
||||
|
||||
.. automodule:: com.vmware.esx.settings.defaults_client
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
||||
|
||||
com.vmware.esx.settings.depot\_content\_client module
|
||||
-----------------------------------------------------
|
||||
|
||||
.. automodule:: com.vmware.esx.settings.depot_content_client
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
||||
|
||||
com.vmware.esx.settings.depots\_client module
|
||||
---------------------------------------------
|
||||
|
||||
.. automodule:: com.vmware.esx.settings.depots_client
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
||||
|
||||
com.vmware.esx.settings.hardware\_support\_client module
|
||||
--------------------------------------------------------
|
||||
|
||||
.. automodule:: com.vmware.esx.settings.hardware_support_client
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
||||
|
||||
com.vmware.esx.settings.hosts\_client module
|
||||
--------------------------------------------
|
||||
|
||||
.. automodule:: com.vmware.esx.settings.hosts_client
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
71
vsphere/7.0.1.0/_sources/com.vmware.rst.txt
Normal file
71
vsphere/7.0.1.0/_sources/com.vmware.rst.txt
Normal file
@ -0,0 +1,71 @@
|
||||
com.vmware package
|
||||
==================
|
||||
|
||||
.. automodule:: com.vmware
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
||||
|
||||
Subpackages
|
||||
-----------
|
||||
|
||||
.. toctree::
|
||||
:maxdepth: 10
|
||||
|
||||
com.vmware.appliance
|
||||
com.vmware.cis
|
||||
com.vmware.content
|
||||
com.vmware.esx
|
||||
com.vmware.vapi
|
||||
com.vmware.vcenter
|
||||
|
||||
Submodules
|
||||
----------
|
||||
|
||||
com.vmware.appliance\_client module
|
||||
-----------------------------------
|
||||
|
||||
.. automodule:: com.vmware.appliance_client
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
||||
|
||||
com.vmware.cis\_client module
|
||||
-----------------------------
|
||||
|
||||
.. automodule:: com.vmware.cis_client
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
||||
|
||||
com.vmware.content\_client module
|
||||
---------------------------------
|
||||
|
||||
.. automodule:: com.vmware.content_client
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
||||
|
||||
com.vmware.vapi\_client module
|
||||
------------------------------
|
||||
|
||||
.. automodule:: com.vmware.vapi_client
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
||||
|
||||
com.vmware.vcenter\_client module
|
||||
---------------------------------
|
||||
|
||||
.. automodule:: com.vmware.vcenter_client
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
||||
|
||||
com.vmware.vstats\_client module
|
||||
--------------------------------
|
||||
|
||||
.. automodule:: com.vmware.vstats_client
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
@ -0,0 +1,18 @@
|
||||
com.vmware.vapi.metadata.authentication package
|
||||
===============================================
|
||||
|
||||
.. automodule:: com.vmware.vapi.metadata.authentication
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
||||
|
||||
Submodules
|
||||
----------
|
||||
|
||||
com.vmware.vapi.metadata.authentication.service\_client module
|
||||
--------------------------------------------------------------
|
||||
|
||||
.. automodule:: com.vmware.vapi.metadata.authentication.service_client
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
@ -0,0 +1,26 @@
|
||||
com.vmware.vapi.metadata.metamodel package
|
||||
==========================================
|
||||
|
||||
.. automodule:: com.vmware.vapi.metadata.metamodel
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
||||
|
||||
Submodules
|
||||
----------
|
||||
|
||||
com.vmware.vapi.metadata.metamodel.resource\_client module
|
||||
----------------------------------------------------------
|
||||
|
||||
.. automodule:: com.vmware.vapi.metadata.metamodel.resource_client
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
||||
|
||||
com.vmware.vapi.metadata.metamodel.service\_client module
|
||||
---------------------------------------------------------
|
||||
|
||||
.. automodule:: com.vmware.vapi.metadata.metamodel.service_client
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
@ -0,0 +1,18 @@
|
||||
com.vmware.vapi.metadata.privilege package
|
||||
==========================================
|
||||
|
||||
.. automodule:: com.vmware.vapi.metadata.privilege
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
||||
|
||||
Submodules
|
||||
----------
|
||||
|
||||
com.vmware.vapi.metadata.privilege.service\_client module
|
||||
---------------------------------------------------------
|
||||
|
||||
.. automodule:: com.vmware.vapi.metadata.privilege.service_client
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
52
vsphere/7.0.1.0/_sources/com.vmware.vapi.metadata.rst.txt
Normal file
52
vsphere/7.0.1.0/_sources/com.vmware.vapi.metadata.rst.txt
Normal file
@ -0,0 +1,52 @@
|
||||
com.vmware.vapi.metadata package
|
||||
================================
|
||||
|
||||
.. automodule:: com.vmware.vapi.metadata
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
||||
|
||||
Subpackages
|
||||
-----------
|
||||
|
||||
.. toctree::
|
||||
:maxdepth: 10
|
||||
|
||||
com.vmware.vapi.metadata.authentication
|
||||
com.vmware.vapi.metadata.metamodel
|
||||
com.vmware.vapi.metadata.privilege
|
||||
|
||||
Submodules
|
||||
----------
|
||||
|
||||
com.vmware.vapi.metadata.authentication\_client module
|
||||
------------------------------------------------------
|
||||
|
||||
.. automodule:: com.vmware.vapi.metadata.authentication_client
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
||||
|
||||
com.vmware.vapi.metadata.cli\_client module
|
||||
-------------------------------------------
|
||||
|
||||
.. automodule:: com.vmware.vapi.metadata.cli_client
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
||||
|
||||
com.vmware.vapi.metadata.metamodel\_client module
|
||||
-------------------------------------------------
|
||||
|
||||
.. automodule:: com.vmware.vapi.metadata.metamodel_client
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
||||
|
||||
com.vmware.vapi.metadata.privilege\_client module
|
||||
-------------------------------------------------
|
||||
|
||||
.. automodule:: com.vmware.vapi.metadata.privilege_client
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
35
vsphere/7.0.1.0/_sources/com.vmware.vapi.rst.txt
Normal file
35
vsphere/7.0.1.0/_sources/com.vmware.vapi.rst.txt
Normal file
@ -0,0 +1,35 @@
|
||||
com.vmware.vapi package
|
||||
=======================
|
||||
|
||||
.. automodule:: com.vmware.vapi
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
||||
|
||||
Subpackages
|
||||
-----------
|
||||
|
||||
.. toctree::
|
||||
:maxdepth: 10
|
||||
|
||||
com.vmware.vapi.metadata
|
||||
com.vmware.vapi.std
|
||||
|
||||
Submodules
|
||||
----------
|
||||
|
||||
com.vmware.vapi.metadata\_client module
|
||||
---------------------------------------
|
||||
|
||||
.. automodule:: com.vmware.vapi.metadata_client
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
||||
|
||||
com.vmware.vapi.std\_client module
|
||||
----------------------------------
|
||||
|
||||
.. automodule:: com.vmware.vapi.std_client
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
26
vsphere/7.0.1.0/_sources/com.vmware.vapi.std.rst.txt
Normal file
26
vsphere/7.0.1.0/_sources/com.vmware.vapi.std.rst.txt
Normal file
@ -0,0 +1,26 @@
|
||||
com.vmware.vapi.std package
|
||||
===========================
|
||||
|
||||
.. automodule:: com.vmware.vapi.std
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
||||
|
||||
Submodules
|
||||
----------
|
||||
|
||||
com.vmware.vapi.std.errors\_client module
|
||||
-----------------------------------------
|
||||
|
||||
.. automodule:: com.vmware.vapi.std.errors_client
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
||||
|
||||
com.vmware.vapi.std.interposition\_client module
|
||||
------------------------------------------------
|
||||
|
||||
.. automodule:: com.vmware.vapi.std.interposition_client
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
@ -0,0 +1,18 @@
|
||||
com.vmware.vcenter.certificate\_management package
|
||||
==================================================
|
||||
|
||||
.. automodule:: com.vmware.vcenter.certificate_management
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
||||
|
||||
Submodules
|
||||
----------
|
||||
|
||||
com.vmware.vcenter.certificate\_management.vcenter\_client module
|
||||
-----------------------------------------------------------------
|
||||
|
||||
.. automodule:: com.vmware.vcenter.certificate_management.vcenter_client
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
@ -0,0 +1,66 @@
|
||||
com.vmware.vcenter.compute.policies.capabilities package
|
||||
========================================================
|
||||
|
||||
.. automodule:: com.vmware.vcenter.compute.policies.capabilities
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
||||
|
||||
Subpackages
|
||||
-----------
|
||||
|
||||
.. toctree::
|
||||
:maxdepth: 10
|
||||
|
||||
com.vmware.vcenter.compute.policies.capabilities.vm
|
||||
|
||||
Submodules
|
||||
----------
|
||||
|
||||
com.vmware.vcenter.compute.policies.capabilities.cluster\_scale\_in\_ignore\_vm\_capabilities\_client module
|
||||
------------------------------------------------------------------------------------------------------------
|
||||
|
||||
.. automodule:: com.vmware.vcenter.compute.policies.capabilities.cluster_scale_in_ignore_vm_capabilities_client
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
||||
|
||||
com.vmware.vcenter.compute.policies.capabilities.disable\_drs\_vmotion\_client module
|
||||
-------------------------------------------------------------------------------------
|
||||
|
||||
.. automodule:: com.vmware.vcenter.compute.policies.capabilities.disable_drs_vmotion_client
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
||||
|
||||
com.vmware.vcenter.compute.policies.capabilities.vm\_host\_affinity\_client module
|
||||
----------------------------------------------------------------------------------
|
||||
|
||||
.. automodule:: com.vmware.vcenter.compute.policies.capabilities.vm_host_affinity_client
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
||||
|
||||
com.vmware.vcenter.compute.policies.capabilities.vm\_host\_anti\_affinity\_client module
|
||||
----------------------------------------------------------------------------------------
|
||||
|
||||
.. automodule:: com.vmware.vcenter.compute.policies.capabilities.vm_host_anti_affinity_client
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
||||
|
||||
com.vmware.vcenter.compute.policies.capabilities.vm\_vm\_affinity\_client module
|
||||
--------------------------------------------------------------------------------
|
||||
|
||||
.. automodule:: com.vmware.vcenter.compute.policies.capabilities.vm_vm_affinity_client
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
||||
|
||||
com.vmware.vcenter.compute.policies.capabilities.vm\_vm\_anti\_affinity\_client module
|
||||
--------------------------------------------------------------------------------------
|
||||
|
||||
.. automodule:: com.vmware.vcenter.compute.policies.capabilities.vm_vm_anti_affinity_client
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
@ -0,0 +1,18 @@
|
||||
com.vmware.vcenter.compute.policies.capabilities.vm.evacuation package
|
||||
======================================================================
|
||||
|
||||
.. automodule:: com.vmware.vcenter.compute.policies.capabilities.vm.evacuation
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
||||
|
||||
Submodules
|
||||
----------
|
||||
|
||||
com.vmware.vcenter.compute.policies.capabilities.vm.evacuation.vmotion\_client module
|
||||
-------------------------------------------------------------------------------------
|
||||
|
||||
.. automodule:: com.vmware.vcenter.compute.policies.capabilities.vm.evacuation.vmotion_client
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
@ -0,0 +1,15 @@
|
||||
com.vmware.vcenter.compute.policies.capabilities.vm package
|
||||
===========================================================
|
||||
|
||||
.. automodule:: com.vmware.vcenter.compute.policies.capabilities.vm
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
||||
|
||||
Subpackages
|
||||
-----------
|
||||
|
||||
.. toctree::
|
||||
:maxdepth: 10
|
||||
|
||||
com.vmware.vcenter.compute.policies.capabilities.vm.evacuation
|
@ -0,0 +1,26 @@
|
||||
com.vmware.vcenter.compute.policies package
|
||||
===========================================
|
||||
|
||||
.. automodule:: com.vmware.vcenter.compute.policies
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
||||
|
||||
Subpackages
|
||||
-----------
|
||||
|
||||
.. toctree::
|
||||
:maxdepth: 10
|
||||
|
||||
com.vmware.vcenter.compute.policies.capabilities
|
||||
|
||||
Submodules
|
||||
----------
|
||||
|
||||
com.vmware.vcenter.compute.policies.capabilities\_client module
|
||||
---------------------------------------------------------------
|
||||
|
||||
.. automodule:: com.vmware.vcenter.compute.policies.capabilities_client
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
26
vsphere/7.0.1.0/_sources/com.vmware.vcenter.compute.rst.txt
Normal file
26
vsphere/7.0.1.0/_sources/com.vmware.vcenter.compute.rst.txt
Normal file
@ -0,0 +1,26 @@
|
||||
com.vmware.vcenter.compute package
|
||||
==================================
|
||||
|
||||
.. automodule:: com.vmware.vcenter.compute
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
||||
|
||||
Subpackages
|
||||
-----------
|
||||
|
||||
.. toctree::
|
||||
:maxdepth: 10
|
||||
|
||||
com.vmware.vcenter.compute.policies
|
||||
|
||||
Submodules
|
||||
----------
|
||||
|
||||
com.vmware.vcenter.compute.policies\_client module
|
||||
--------------------------------------------------
|
||||
|
||||
.. automodule:: com.vmware.vcenter.compute.policies_client
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
@ -0,0 +1,18 @@
|
||||
com.vmware.vcenter.content.registries package
|
||||
=============================================
|
||||
|
||||
.. automodule:: com.vmware.vcenter.content.registries
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
||||
|
||||
Submodules
|
||||
----------
|
||||
|
||||
com.vmware.vcenter.content.registries.harbor\_client module
|
||||
-----------------------------------------------------------
|
||||
|
||||
.. automodule:: com.vmware.vcenter.content.registries.harbor_client
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
26
vsphere/7.0.1.0/_sources/com.vmware.vcenter.content.rst.txt
Normal file
26
vsphere/7.0.1.0/_sources/com.vmware.vcenter.content.rst.txt
Normal file
@ -0,0 +1,26 @@
|
||||
com.vmware.vcenter.content package
|
||||
==================================
|
||||
|
||||
.. automodule:: com.vmware.vcenter.content
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
||||
|
||||
Subpackages
|
||||
-----------
|
||||
|
||||
.. toctree::
|
||||
:maxdepth: 10
|
||||
|
||||
com.vmware.vcenter.content.registries
|
||||
|
||||
Submodules
|
||||
----------
|
||||
|
||||
com.vmware.vcenter.content.registries\_client module
|
||||
----------------------------------------------------
|
||||
|
||||
.. automodule:: com.vmware.vcenter.content.registries_client
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
@ -0,0 +1,18 @@
|
||||
com.vmware.vcenter.deployment.install.initial\_config package
|
||||
=============================================================
|
||||
|
||||
.. automodule:: com.vmware.vcenter.deployment.install.initial_config
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
||||
|
||||
Submodules
|
||||
----------
|
||||
|
||||
com.vmware.vcenter.deployment.install.initial\_config.remote\_psc\_client module
|
||||
--------------------------------------------------------------------------------
|
||||
|
||||
.. automodule:: com.vmware.vcenter.deployment.install.initial_config.remote_psc_client
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
@ -0,0 +1,26 @@
|
||||
com.vmware.vcenter.deployment.install package
|
||||
=============================================
|
||||
|
||||
.. automodule:: com.vmware.vcenter.deployment.install
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
||||
|
||||
Subpackages
|
||||
-----------
|
||||
|
||||
.. toctree::
|
||||
:maxdepth: 10
|
||||
|
||||
com.vmware.vcenter.deployment.install.initial_config
|
||||
|
||||
Submodules
|
||||
----------
|
||||
|
||||
com.vmware.vcenter.deployment.install.psc\_client module
|
||||
--------------------------------------------------------
|
||||
|
||||
.. automodule:: com.vmware.vcenter.deployment.install.psc_client
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
@ -0,0 +1,34 @@
|
||||
com.vmware.vcenter.deployment package
|
||||
=====================================
|
||||
|
||||
.. automodule:: com.vmware.vcenter.deployment
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
||||
|
||||
Subpackages
|
||||
-----------
|
||||
|
||||
.. toctree::
|
||||
:maxdepth: 10
|
||||
|
||||
com.vmware.vcenter.deployment.install
|
||||
|
||||
Submodules
|
||||
----------
|
||||
|
||||
com.vmware.vcenter.deployment.install\_client module
|
||||
----------------------------------------------------
|
||||
|
||||
.. automodule:: com.vmware.vcenter.deployment.install_client
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
||||
|
||||
com.vmware.vcenter.deployment.migrate\_client module
|
||||
----------------------------------------------------
|
||||
|
||||
.. automodule:: com.vmware.vcenter.deployment.migrate_client
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
@ -0,0 +1,18 @@
|
||||
com.vmware.vcenter.hvc.links package
|
||||
====================================
|
||||
|
||||
.. automodule:: com.vmware.vcenter.hvc.links
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
||||
|
||||
Submodules
|
||||
----------
|
||||
|
||||
com.vmware.vcenter.hvc.links.sync\_client module
|
||||
------------------------------------------------
|
||||
|
||||
.. automodule:: com.vmware.vcenter.hvc.links.sync_client
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
34
vsphere/7.0.1.0/_sources/com.vmware.vcenter.hvc.rst.txt
Normal file
34
vsphere/7.0.1.0/_sources/com.vmware.vcenter.hvc.rst.txt
Normal file
@ -0,0 +1,34 @@
|
||||
com.vmware.vcenter.hvc package
|
||||
==============================
|
||||
|
||||
.. automodule:: com.vmware.vcenter.hvc
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
||||
|
||||
Subpackages
|
||||
-----------
|
||||
|
||||
.. toctree::
|
||||
:maxdepth: 10
|
||||
|
||||
com.vmware.vcenter.hvc.links
|
||||
|
||||
Submodules
|
||||
----------
|
||||
|
||||
com.vmware.vcenter.hvc.links\_client module
|
||||
-------------------------------------------
|
||||
|
||||
.. automodule:: com.vmware.vcenter.hvc.links_client
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
||||
|
||||
com.vmware.vcenter.hvc.management\_client module
|
||||
------------------------------------------------
|
||||
|
||||
.. automodule:: com.vmware.vcenter.hvc.management_client
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
26
vsphere/7.0.1.0/_sources/com.vmware.vcenter.lcm.rst.txt
Normal file
26
vsphere/7.0.1.0/_sources/com.vmware.vcenter.lcm.rst.txt
Normal file
@ -0,0 +1,26 @@
|
||||
com.vmware.vcenter.lcm package
|
||||
==============================
|
||||
|
||||
.. automodule:: com.vmware.vcenter.lcm
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
||||
|
||||
Submodules
|
||||
----------
|
||||
|
||||
com.vmware.vcenter.lcm.discovery\_client module
|
||||
-----------------------------------------------
|
||||
|
||||
.. automodule:: com.vmware.vcenter.lcm.discovery_client
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
||||
|
||||
com.vmware.vcenter.lcm.update\_client module
|
||||
--------------------------------------------
|
||||
|
||||
.. automodule:: com.vmware.vcenter.lcm.update_client
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
@ -0,0 +1,26 @@
|
||||
com.vmware.vcenter.namespace\_management package
|
||||
================================================
|
||||
|
||||
.. automodule:: com.vmware.vcenter.namespace_management
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
||||
|
||||
Submodules
|
||||
----------
|
||||
|
||||
com.vmware.vcenter.namespace\_management.software\_client module
|
||||
----------------------------------------------------------------
|
||||
|
||||
.. automodule:: com.vmware.vcenter.namespace_management.software_client
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
||||
|
||||
com.vmware.vcenter.namespace\_management.stats\_client module
|
||||
-------------------------------------------------------------
|
||||
|
||||
.. automodule:: com.vmware.vcenter.namespace_management.stats_client
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
@ -0,0 +1,18 @@
|
||||
com.vmware.vcenter.namespaces package
|
||||
=====================================
|
||||
|
||||
.. automodule:: com.vmware.vcenter.namespaces
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
||||
|
||||
Submodules
|
||||
----------
|
||||
|
||||
com.vmware.vcenter.namespaces.user\_client module
|
||||
-------------------------------------------------
|
||||
|
||||
.. automodule:: com.vmware.vcenter.namespaces.user_client
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
215
vsphere/7.0.1.0/_sources/com.vmware.vcenter.rst.txt
Normal file
215
vsphere/7.0.1.0/_sources/com.vmware.vcenter.rst.txt
Normal file
@ -0,0 +1,215 @@
|
||||
com.vmware.vcenter package
|
||||
==========================
|
||||
|
||||
.. automodule:: com.vmware.vcenter
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
||||
|
||||
Subpackages
|
||||
-----------
|
||||
|
||||
.. toctree::
|
||||
:maxdepth: 10
|
||||
|
||||
com.vmware.vcenter.certificate_management
|
||||
com.vmware.vcenter.compute
|
||||
com.vmware.vcenter.content
|
||||
com.vmware.vcenter.deployment
|
||||
com.vmware.vcenter.hvc
|
||||
com.vmware.vcenter.lcm
|
||||
com.vmware.vcenter.namespace_management
|
||||
com.vmware.vcenter.namespaces
|
||||
com.vmware.vcenter.storage
|
||||
com.vmware.vcenter.system_config
|
||||
com.vmware.vcenter.trusted_infrastructure
|
||||
com.vmware.vcenter.vcha
|
||||
com.vmware.vcenter.vm
|
||||
com.vmware.vcenter.vm_template
|
||||
|
||||
Submodules
|
||||
----------
|
||||
|
||||
com.vmware.vcenter.certificate\_management\_client module
|
||||
---------------------------------------------------------
|
||||
|
||||
.. automodule:: com.vmware.vcenter.certificate_management_client
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
||||
|
||||
com.vmware.vcenter.compute\_client module
|
||||
-----------------------------------------
|
||||
|
||||
.. automodule:: com.vmware.vcenter.compute_client
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
||||
|
||||
com.vmware.vcenter.datastore\_client module
|
||||
-------------------------------------------
|
||||
|
||||
.. automodule:: com.vmware.vcenter.datastore_client
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
||||
|
||||
com.vmware.vcenter.deployment\_client module
|
||||
--------------------------------------------
|
||||
|
||||
.. automodule:: com.vmware.vcenter.deployment_client
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
||||
|
||||
com.vmware.vcenter.guest\_client module
|
||||
---------------------------------------
|
||||
|
||||
.. automodule:: com.vmware.vcenter.guest_client
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
||||
|
||||
com.vmware.vcenter.hvc\_client module
|
||||
-------------------------------------
|
||||
|
||||
.. automodule:: com.vmware.vcenter.hvc_client
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
||||
|
||||
com.vmware.vcenter.identity\_client module
|
||||
------------------------------------------
|
||||
|
||||
.. automodule:: com.vmware.vcenter.identity_client
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
||||
|
||||
com.vmware.vcenter.inventory\_client module
|
||||
-------------------------------------------
|
||||
|
||||
.. automodule:: com.vmware.vcenter.inventory_client
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
||||
|
||||
com.vmware.vcenter.iso\_client module
|
||||
-------------------------------------
|
||||
|
||||
.. automodule:: com.vmware.vcenter.iso_client
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
||||
|
||||
com.vmware.vcenter.lcm\_client module
|
||||
-------------------------------------
|
||||
|
||||
.. automodule:: com.vmware.vcenter.lcm_client
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
||||
|
||||
com.vmware.vcenter.namespace\_management\_client module
|
||||
-------------------------------------------------------
|
||||
|
||||
.. automodule:: com.vmware.vcenter.namespace_management_client
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
||||
|
||||
com.vmware.vcenter.namespaces\_client module
|
||||
--------------------------------------------
|
||||
|
||||
.. automodule:: com.vmware.vcenter.namespaces_client
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
||||
|
||||
com.vmware.vcenter.ovf\_client module
|
||||
-------------------------------------
|
||||
|
||||
.. automodule:: com.vmware.vcenter.ovf_client
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
||||
|
||||
com.vmware.vcenter.services\_client module
|
||||
------------------------------------------
|
||||
|
||||
.. automodule:: com.vmware.vcenter.services_client
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
||||
|
||||
com.vmware.vcenter.storage\_client module
|
||||
-----------------------------------------
|
||||
|
||||
.. automodule:: com.vmware.vcenter.storage_client
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
||||
|
||||
com.vmware.vcenter.system\_config\_client module
|
||||
------------------------------------------------
|
||||
|
||||
.. automodule:: com.vmware.vcenter.system_config_client
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
||||
|
||||
com.vmware.vcenter.tagging\_client module
|
||||
-----------------------------------------
|
||||
|
||||
.. automodule:: com.vmware.vcenter.tagging_client
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
||||
|
||||
com.vmware.vcenter.tokenservice\_client module
|
||||
----------------------------------------------
|
||||
|
||||
.. automodule:: com.vmware.vcenter.tokenservice_client
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
||||
|
||||
com.vmware.vcenter.topology\_client module
|
||||
------------------------------------------
|
||||
|
||||
.. automodule:: com.vmware.vcenter.topology_client
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
||||
|
||||
com.vmware.vcenter.trusted\_infrastructure\_client module
|
||||
---------------------------------------------------------
|
||||
|
||||
.. automodule:: com.vmware.vcenter.trusted_infrastructure_client
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
||||
|
||||
com.vmware.vcenter.vcha\_client module
|
||||
--------------------------------------
|
||||
|
||||
.. automodule:: com.vmware.vcenter.vcha_client
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
||||
|
||||
com.vmware.vcenter.vm\_client module
|
||||
------------------------------------
|
||||
|
||||
.. automodule:: com.vmware.vcenter.vm_client
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
||||
|
||||
com.vmware.vcenter.vm\_template\_client module
|
||||
----------------------------------------------
|
||||
|
||||
.. automodule:: com.vmware.vcenter.vm_template_client
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
@ -0,0 +1,18 @@
|
||||
com.vmware.vcenter.storage.policies package
|
||||
===========================================
|
||||
|
||||
.. automodule:: com.vmware.vcenter.storage.policies
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
||||
|
||||
Submodules
|
||||
----------
|
||||
|
||||
com.vmware.vcenter.storage.policies.compliance\_client module
|
||||
-------------------------------------------------------------
|
||||
|
||||
.. automodule:: com.vmware.vcenter.storage.policies.compliance_client
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
26
vsphere/7.0.1.0/_sources/com.vmware.vcenter.storage.rst.txt
Normal file
26
vsphere/7.0.1.0/_sources/com.vmware.vcenter.storage.rst.txt
Normal file
@ -0,0 +1,26 @@
|
||||
com.vmware.vcenter.storage package
|
||||
==================================
|
||||
|
||||
.. automodule:: com.vmware.vcenter.storage
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
||||
|
||||
Subpackages
|
||||
-----------
|
||||
|
||||
.. toctree::
|
||||
:maxdepth: 10
|
||||
|
||||
com.vmware.vcenter.storage.policies
|
||||
|
||||
Submodules
|
||||
----------
|
||||
|
||||
com.vmware.vcenter.storage.policies\_client module
|
||||
--------------------------------------------------
|
||||
|
||||
.. automodule:: com.vmware.vcenter.storage.policies_client
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
@ -0,0 +1,18 @@
|
||||
com.vmware.vcenter.system\_config.features package
|
||||
==================================================
|
||||
|
||||
.. automodule:: com.vmware.vcenter.system_config.features
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
||||
|
||||
Submodules
|
||||
----------
|
||||
|
||||
com.vmware.vcenter.system\_config.features.tech\_preview\_client module
|
||||
-----------------------------------------------------------------------
|
||||
|
||||
.. automodule:: com.vmware.vcenter.system_config.features.tech_preview_client
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
@ -0,0 +1,15 @@
|
||||
com.vmware.vcenter.system\_config package
|
||||
=========================================
|
||||
|
||||
.. automodule:: com.vmware.vcenter.system_config
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
||||
|
||||
Subpackages
|
||||
-----------
|
||||
|
||||
.. toctree::
|
||||
:maxdepth: 10
|
||||
|
||||
com.vmware.vcenter.system_config.features
|
@ -0,0 +1,59 @@
|
||||
com.vmware.vcenter.trusted\_infrastructure package
|
||||
==================================================
|
||||
|
||||
.. automodule:: com.vmware.vcenter.trusted_infrastructure
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
||||
|
||||
Subpackages
|
||||
-----------
|
||||
|
||||
.. toctree::
|
||||
:maxdepth: 10
|
||||
|
||||
com.vmware.vcenter.trusted_infrastructure.trust_authority_clusters
|
||||
com.vmware.vcenter.trusted_infrastructure.trusted_clusters
|
||||
|
||||
Submodules
|
||||
----------
|
||||
|
||||
com.vmware.vcenter.trusted\_infrastructure.attestation\_client module
|
||||
---------------------------------------------------------------------
|
||||
|
||||
.. automodule:: com.vmware.vcenter.trusted_infrastructure.attestation_client
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
||||
|
||||
com.vmware.vcenter.trusted\_infrastructure.kms\_client module
|
||||
-------------------------------------------------------------
|
||||
|
||||
.. automodule:: com.vmware.vcenter.trusted_infrastructure.kms_client
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
||||
|
||||
com.vmware.vcenter.trusted\_infrastructure.trust\_authority\_clusters\_client module
|
||||
------------------------------------------------------------------------------------
|
||||
|
||||
.. automodule:: com.vmware.vcenter.trusted_infrastructure.trust_authority_clusters_client
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
||||
|
||||
com.vmware.vcenter.trusted\_infrastructure.trust\_authority\_hosts\_client module
|
||||
---------------------------------------------------------------------------------
|
||||
|
||||
.. automodule:: com.vmware.vcenter.trusted_infrastructure.trust_authority_hosts_client
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
||||
|
||||
com.vmware.vcenter.trusted\_infrastructure.trusted\_clusters\_client module
|
||||
---------------------------------------------------------------------------
|
||||
|
||||
.. automodule:: com.vmware.vcenter.trusted_infrastructure.trusted_clusters_client
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
@ -0,0 +1,18 @@
|
||||
com.vmware.vcenter.trusted\_infrastructure.trust\_authority\_clusters.attestation.os package
|
||||
============================================================================================
|
||||
|
||||
.. automodule:: com.vmware.vcenter.trusted_infrastructure.trust_authority_clusters.attestation.os
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
||||
|
||||
Submodules
|
||||
----------
|
||||
|
||||
com.vmware.vcenter.trusted\_infrastructure.trust\_authority\_clusters.attestation.os.esx\_client module
|
||||
-------------------------------------------------------------------------------------------------------
|
||||
|
||||
.. automodule:: com.vmware.vcenter.trusted_infrastructure.trust_authority_clusters.attestation.os.esx_client
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
@ -0,0 +1,26 @@
|
||||
com.vmware.vcenter.trusted\_infrastructure.trust\_authority\_clusters.attestation package
|
||||
=========================================================================================
|
||||
|
||||
.. automodule:: com.vmware.vcenter.trusted_infrastructure.trust_authority_clusters.attestation
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
||||
|
||||
Subpackages
|
||||
-----------
|
||||
|
||||
.. toctree::
|
||||
:maxdepth: 10
|
||||
|
||||
com.vmware.vcenter.trusted_infrastructure.trust_authority_clusters.attestation.os
|
||||
|
||||
Submodules
|
||||
----------
|
||||
|
||||
com.vmware.vcenter.trusted\_infrastructure.trust\_authority\_clusters.attestation.tpm2\_client module
|
||||
-----------------------------------------------------------------------------------------------------
|
||||
|
||||
.. automodule:: com.vmware.vcenter.trusted_infrastructure.trust_authority_clusters.attestation.tpm2_client
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
@ -0,0 +1,18 @@
|
||||
com.vmware.vcenter.trusted\_infrastructure.trust\_authority\_clusters.kms.providers package
|
||||
===========================================================================================
|
||||
|
||||
.. automodule:: com.vmware.vcenter.trusted_infrastructure.trust_authority_clusters.kms.providers
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
||||
|
||||
Submodules
|
||||
----------
|
||||
|
||||
com.vmware.vcenter.trusted\_infrastructure.trust\_authority\_clusters.kms.providers.client\_certificate\_client module
|
||||
----------------------------------------------------------------------------------------------------------------------
|
||||
|
||||
.. automodule:: com.vmware.vcenter.trusted_infrastructure.trust_authority_clusters.kms.providers.client_certificate_client
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
@ -0,0 +1,26 @@
|
||||
com.vmware.vcenter.trusted\_infrastructure.trust\_authority\_clusters.kms package
|
||||
=================================================================================
|
||||
|
||||
.. automodule:: com.vmware.vcenter.trusted_infrastructure.trust_authority_clusters.kms
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
||||
|
||||
Subpackages
|
||||
-----------
|
||||
|
||||
.. toctree::
|
||||
:maxdepth: 10
|
||||
|
||||
com.vmware.vcenter.trusted_infrastructure.trust_authority_clusters.kms.providers
|
||||
|
||||
Submodules
|
||||
----------
|
||||
|
||||
com.vmware.vcenter.trusted\_infrastructure.trust\_authority\_clusters.kms.providers\_client module
|
||||
--------------------------------------------------------------------------------------------------
|
||||
|
||||
.. automodule:: com.vmware.vcenter.trusted_infrastructure.trust_authority_clusters.kms.providers_client
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
@ -0,0 +1,35 @@
|
||||
com.vmware.vcenter.trusted\_infrastructure.trust\_authority\_clusters package
|
||||
=============================================================================
|
||||
|
||||
.. automodule:: com.vmware.vcenter.trusted_infrastructure.trust_authority_clusters
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
||||
|
||||
Subpackages
|
||||
-----------
|
||||
|
||||
.. toctree::
|
||||
:maxdepth: 10
|
||||
|
||||
com.vmware.vcenter.trusted_infrastructure.trust_authority_clusters.attestation
|
||||
com.vmware.vcenter.trusted_infrastructure.trust_authority_clusters.kms
|
||||
|
||||
Submodules
|
||||
----------
|
||||
|
||||
com.vmware.vcenter.trusted\_infrastructure.trust\_authority\_clusters.attestation\_client module
|
||||
------------------------------------------------------------------------------------------------
|
||||
|
||||
.. automodule:: com.vmware.vcenter.trusted_infrastructure.trust_authority_clusters.attestation_client
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
||||
|
||||
com.vmware.vcenter.trusted\_infrastructure.trust\_authority\_clusters.kms\_client module
|
||||
----------------------------------------------------------------------------------------
|
||||
|
||||
.. automodule:: com.vmware.vcenter.trusted_infrastructure.trust_authority_clusters.kms_client
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
@ -0,0 +1,26 @@
|
||||
com.vmware.vcenter.trusted\_infrastructure.trusted\_clusters package
|
||||
====================================================================
|
||||
|
||||
.. automodule:: com.vmware.vcenter.trusted_infrastructure.trusted_clusters
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
||||
|
||||
Submodules
|
||||
----------
|
||||
|
||||
com.vmware.vcenter.trusted\_infrastructure.trusted\_clusters.attestation\_client module
|
||||
---------------------------------------------------------------------------------------
|
||||
|
||||
.. automodule:: com.vmware.vcenter.trusted_infrastructure.trusted_clusters.attestation_client
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
||||
|
||||
com.vmware.vcenter.trusted\_infrastructure.trusted\_clusters.kms\_client module
|
||||
-------------------------------------------------------------------------------
|
||||
|
||||
.. automodule:: com.vmware.vcenter.trusted_infrastructure.trusted_clusters.kms_client
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
18
vsphere/7.0.1.0/_sources/com.vmware.vcenter.vcha.rst.txt
Normal file
18
vsphere/7.0.1.0/_sources/com.vmware.vcenter.vcha.rst.txt
Normal file
@ -0,0 +1,18 @@
|
||||
com.vmware.vcenter.vcha package
|
||||
===============================
|
||||
|
||||
.. automodule:: com.vmware.vcenter.vcha
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
||||
|
||||
Submodules
|
||||
----------
|
||||
|
||||
com.vmware.vcenter.vcha.cluster\_client module
|
||||
----------------------------------------------
|
||||
|
||||
.. automodule:: com.vmware.vcenter.vcha.cluster_client
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
18
vsphere/7.0.1.0/_sources/com.vmware.vcenter.vm.guest.rst.txt
Normal file
18
vsphere/7.0.1.0/_sources/com.vmware.vcenter.vm.guest.rst.txt
Normal file
@ -0,0 +1,18 @@
|
||||
com.vmware.vcenter.vm.guest package
|
||||
===================================
|
||||
|
||||
.. automodule:: com.vmware.vcenter.vm.guest
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
||||
|
||||
Submodules
|
||||
----------
|
||||
|
||||
com.vmware.vcenter.vm.guest.networking\_client module
|
||||
-----------------------------------------------------
|
||||
|
||||
.. automodule:: com.vmware.vcenter.vm.guest.networking_client
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
@ -0,0 +1,26 @@
|
||||
com.vmware.vcenter.vm.hardware package
|
||||
======================================
|
||||
|
||||
.. automodule:: com.vmware.vcenter.vm.hardware
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
||||
|
||||
Submodules
|
||||
----------
|
||||
|
||||
com.vmware.vcenter.vm.hardware.adapter\_client module
|
||||
-----------------------------------------------------
|
||||
|
||||
.. automodule:: com.vmware.vcenter.vm.hardware.adapter_client
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
||||
|
||||
com.vmware.vcenter.vm.hardware.boot\_client module
|
||||
--------------------------------------------------
|
||||
|
||||
.. automodule:: com.vmware.vcenter.vm.hardware.boot_client
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
68
vsphere/7.0.1.0/_sources/com.vmware.vcenter.vm.rst.txt
Normal file
68
vsphere/7.0.1.0/_sources/com.vmware.vcenter.vm.rst.txt
Normal file
@ -0,0 +1,68 @@
|
||||
com.vmware.vcenter.vm package
|
||||
=============================
|
||||
|
||||
.. automodule:: com.vmware.vcenter.vm
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
||||
|
||||
Subpackages
|
||||
-----------
|
||||
|
||||
.. toctree::
|
||||
:maxdepth: 10
|
||||
|
||||
com.vmware.vcenter.vm.guest
|
||||
com.vmware.vcenter.vm.hardware
|
||||
com.vmware.vcenter.vm.storage
|
||||
|
||||
Submodules
|
||||
----------
|
||||
|
||||
com.vmware.vcenter.vm.compute\_client module
|
||||
--------------------------------------------
|
||||
|
||||
.. automodule:: com.vmware.vcenter.vm.compute_client
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
||||
|
||||
com.vmware.vcenter.vm.console\_client module
|
||||
--------------------------------------------
|
||||
|
||||
.. automodule:: com.vmware.vcenter.vm.console_client
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
||||
|
||||
com.vmware.vcenter.vm.guest\_client module
|
||||
------------------------------------------
|
||||
|
||||
.. automodule:: com.vmware.vcenter.vm.guest_client
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
||||
|
||||
com.vmware.vcenter.vm.hardware\_client module
|
||||
---------------------------------------------
|
||||
|
||||
.. automodule:: com.vmware.vcenter.vm.hardware_client
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
||||
|
||||
com.vmware.vcenter.vm.storage\_client module
|
||||
--------------------------------------------
|
||||
|
||||
.. automodule:: com.vmware.vcenter.vm.storage_client
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
||||
|
||||
com.vmware.vcenter.vm.tools\_client module
|
||||
------------------------------------------
|
||||
|
||||
.. automodule:: com.vmware.vcenter.vm.tools_client
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
@ -0,0 +1,18 @@
|
||||
com.vmware.vcenter.vm.storage package
|
||||
=====================================
|
||||
|
||||
.. automodule:: com.vmware.vcenter.vm.storage
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
||||
|
||||
Submodules
|
||||
----------
|
||||
|
||||
com.vmware.vcenter.vm.storage.policy\_client module
|
||||
---------------------------------------------------
|
||||
|
||||
.. automodule:: com.vmware.vcenter.vm.storage.policy_client
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
@ -0,0 +1,18 @@
|
||||
com.vmware.vcenter.vm\_template package
|
||||
=======================================
|
||||
|
||||
.. automodule:: com.vmware.vcenter.vm_template
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
||||
|
||||
Submodules
|
||||
----------
|
||||
|
||||
com.vmware.vcenter.vm\_template.library\_items\_client module
|
||||
-------------------------------------------------------------
|
||||
|
||||
.. automodule:: com.vmware.vcenter.vm_template.library_items_client
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
82
vsphere/7.0.1.0/_sources/enumeration.rst.txt
Normal file
82
vsphere/7.0.1.0/_sources/enumeration.rst.txt
Normal file
@ -0,0 +1,82 @@
|
||||
.. _enumeration_description:
|
||||
|
||||
Interface definition language to python mapping for enumerated types
|
||||
--------------------------------------------------------------------
|
||||
|
||||
The interface language definition type system includes enumerated types. Python
|
||||
SDK supports both 2.x and 3.x versions of Python. Since Python 2.x does
|
||||
not have first class support for enumerations, special classes are
|
||||
generated to represent enumerated types from the interface definition
|
||||
language. The special class contains class attributes which represent
|
||||
the values of the enumerated type.
|
||||
|
||||
This documentation explains the following:
|
||||
|
||||
* How the class variables are defined in the module. This specifies the names that you can use in your program.
|
||||
* How you instantiate a class to use it for communication with future versions of the service.
|
||||
|
||||
Example of an enumerated type documentation
|
||||
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||||
|
||||
*class* com.vmware.vapi.metadata_client. **SourceType** (string)
|
||||
Bases: vmware.vapi.bindings.enum.Enum
|
||||
|
||||
Metadata source type
|
||||
|
||||
.. note::
|
||||
This class represents an enumerated type in the interface language definition type system. The class contains class attributes which represent the values in the current version of the enumerated type. Newer versions of the enumerated type may contain new values. To use new values of the enumerated type in communication with a server that supports a newer version of the API, you instantiate this class. See :ref:`enumerated type description page <enumeration_description>`.
|
||||
|
||||
**Parameters** : **string** (``str``) – String value for the SourceType instance.
|
||||
|
||||
**FILE** = *SourceType(string='FILE')*
|
||||
If the source is backed by a file.
|
||||
|
||||
**REMOTE** = *SourceType(string='REMOTE')*
|
||||
If the source is backed by a remote service.
|
||||
|
||||
Code Examples
|
||||
^^^^^^^^^^^^^
|
||||
|
||||
The enumerated type classes are defined in python modules that your code
|
||||
imports. You can use these in your code.
|
||||
|
||||
1. If you want to pass an enumerated type value in a method to a server, specify the class variable of the enumerated type class.
|
||||
|
||||
.. code-block:: python
|
||||
|
||||
# SourceType is an enumerated type
|
||||
from com.vmware.vapi.metadata_client import SourceType
|
||||
|
||||
# SourceType has two class attrites, SourceType.FILE and SourceType.REMOTE
|
||||
spec = Source.CreateSpec(type=SourceType.FILE, filepath='entity_metadata.json', description='Entity service')
|
||||
source_svc.create(id='entity', spec=spec)
|
||||
|
||||
2. When you receive an enumerated type value in the response from a server, allow for unknown enumerated type values.
|
||||
|
||||
.. code-block:: python
|
||||
|
||||
# SourceType is an enumerated type
|
||||
from com.vmware.vapi.metadata_client import SourceType
|
||||
|
||||
source_info = source_svc.get(id='entity')
|
||||
if (source_info.type == SourceType.FILE) {
|
||||
print 'Source is a file'
|
||||
} else if (source_info.type == SourceType.REMOTE) {
|
||||
print 'Source is a remote provider'
|
||||
} else {
|
||||
print 'Unknown source type: %s' % str(source_info.type)
|
||||
}
|
||||
|
||||
3. Sending a new enumerated type value to a server that has a newer version of the enumerated type.
|
||||
|
||||
To use new values of the enumerated type in communication with a server that supports a newer version of the API, you instantiate the
|
||||
enumerated type class.
|
||||
|
||||
.. code-block:: python
|
||||
|
||||
# If a newer version of SourceType has a new value FOLDER, FOLDER would be one
|
||||
# of the class attributes for SourceType. In the older version, SourceType has
|
||||
# only two class attributes, FILE and REMOTE
|
||||
from com.vmware.vapi.metadata_client import SourceType
|
||||
spec = Source.CreateSpec(type=SourceType('FOLDER'), filepath='entity_metadata', description='Entity service')
|
||||
source_svc.create(id='entity', spec=spec)
|
22
vsphere/7.0.1.0/_sources/index.rst.txt
Normal file
22
vsphere/7.0.1.0/_sources/index.rst.txt
Normal file
@ -0,0 +1,22 @@
|
||||
.. vSphere Automation SDK for Python. documentation master file, created by
|
||||
sphinx-quickstart on Fri Aug 21 22:34:58 2020.
|
||||
You can adapt this file completely to your liking, but it should at least
|
||||
contain the root `toctree` directive.
|
||||
|
||||
Welcome to vSphere Automation SDK for Python.'s documentation!
|
||||
==============================================================
|
||||
|
||||
.. toctree::
|
||||
:maxdepth: 10
|
||||
:caption: Contents:
|
||||
|
||||
com
|
||||
vmware
|
||||
|
||||
|
||||
Indices and tables
|
||||
==================
|
||||
|
||||
* :ref:`genindex`
|
||||
* :ref:`modindex`
|
||||
* :ref:`search`
|
15
vsphere/7.0.1.0/_sources/vmware.rst.txt
Normal file
15
vsphere/7.0.1.0/_sources/vmware.rst.txt
Normal file
@ -0,0 +1,15 @@
|
||||
vmware package
|
||||
==============
|
||||
|
||||
.. automodule:: vmware
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
||||
|
||||
Subpackages
|
||||
-----------
|
||||
|
||||
.. toctree::
|
||||
:maxdepth: 10
|
||||
|
||||
vmware.vapi
|
18
vsphere/7.0.1.0/_sources/vmware.vapi.lib.rst.txt
Normal file
18
vsphere/7.0.1.0/_sources/vmware.vapi.lib.rst.txt
Normal file
@ -0,0 +1,18 @@
|
||||
vmware.vapi.lib package
|
||||
=======================
|
||||
|
||||
.. automodule:: vmware.vapi.lib
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
||||
|
||||
Submodules
|
||||
----------
|
||||
|
||||
vmware.vapi.lib.connect module
|
||||
------------------------------
|
||||
|
||||
.. automodule:: vmware.vapi.lib.connect
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
44
vsphere/7.0.1.0/_sources/vmware.vapi.rst.txt
Normal file
44
vsphere/7.0.1.0/_sources/vmware.vapi.rst.txt
Normal file
@ -0,0 +1,44 @@
|
||||
vmware.vapi package
|
||||
===================
|
||||
|
||||
.. automodule:: vmware.vapi
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
||||
|
||||
Subpackages
|
||||
-----------
|
||||
|
||||
.. toctree::
|
||||
:maxdepth: 10
|
||||
|
||||
vmware.vapi.lib
|
||||
vmware.vapi.security
|
||||
vmware.vapi.vsphere
|
||||
|
||||
Submodules
|
||||
----------
|
||||
|
||||
vmware.vapi.core module
|
||||
-----------------------
|
||||
|
||||
.. automodule:: vmware.vapi.core
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
||||
|
||||
vmware.vapi.exception module
|
||||
----------------------------
|
||||
|
||||
.. automodule:: vmware.vapi.exception
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
||||
|
||||
vmware.vapi.message module
|
||||
--------------------------
|
||||
|
||||
.. automodule:: vmware.vapi.message
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
18
vsphere/7.0.1.0/_sources/vmware.vapi.security.client.rst.txt
Normal file
18
vsphere/7.0.1.0/_sources/vmware.vapi.security.client.rst.txt
Normal file
@ -0,0 +1,18 @@
|
||||
vmware.vapi.security.client package
|
||||
===================================
|
||||
|
||||
.. automodule:: vmware.vapi.security.client
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
||||
|
||||
Submodules
|
||||
----------
|
||||
|
||||
vmware.vapi.security.client.security\_context\_filter module
|
||||
------------------------------------------------------------
|
||||
|
||||
.. automodule:: vmware.vapi.security.client.security_context_filter
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
42
vsphere/7.0.1.0/_sources/vmware.vapi.security.rst.txt
Normal file
42
vsphere/7.0.1.0/_sources/vmware.vapi.security.rst.txt
Normal file
@ -0,0 +1,42 @@
|
||||
vmware.vapi.security package
|
||||
============================
|
||||
|
||||
.. automodule:: vmware.vapi.security
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
||||
|
||||
Subpackages
|
||||
-----------
|
||||
|
||||
.. toctree::
|
||||
:maxdepth: 10
|
||||
|
||||
vmware.vapi.security.client
|
||||
|
||||
Submodules
|
||||
----------
|
||||
|
||||
vmware.vapi.security.session module
|
||||
-----------------------------------
|
||||
|
||||
.. automodule:: vmware.vapi.security.session
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
||||
|
||||
vmware.vapi.security.sso module
|
||||
-------------------------------
|
||||
|
||||
.. automodule:: vmware.vapi.security.sso
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
||||
|
||||
vmware.vapi.security.user\_password module
|
||||
------------------------------------------
|
||||
|
||||
.. automodule:: vmware.vapi.security.user_password
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
18
vsphere/7.0.1.0/_sources/vmware.vapi.vsphere.rst.txt
Normal file
18
vsphere/7.0.1.0/_sources/vmware.vapi.vsphere.rst.txt
Normal file
@ -0,0 +1,18 @@
|
||||
vmware.vapi.vsphere package
|
||||
===========================
|
||||
|
||||
.. automodule:: vmware.vapi.vsphere
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
||||
|
||||
Submodules
|
||||
----------
|
||||
|
||||
vmware.vapi.vsphere.client module
|
||||
---------------------------------
|
||||
|
||||
.. automodule:: vmware.vapi.vsphere.client
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
855
vsphere/7.0.1.0/_static/basic.css
Normal file
855
vsphere/7.0.1.0/_static/basic.css
Normal file
@ -0,0 +1,855 @@
|
||||
/*
|
||||
* basic.css
|
||||
* ~~~~~~~~~
|
||||
*
|
||||
* Sphinx stylesheet -- basic theme.
|
||||
*
|
||||
* :copyright: Copyright 2007-2020 by the Sphinx team, see AUTHORS.
|
||||
* :license: BSD, see LICENSE for details.
|
||||
*
|
||||
*/
|
||||
|
||||
/* -- main layout ----------------------------------------------------------- */
|
||||
|
||||
div.clearer {
|
||||
clear: both;
|
||||
}
|
||||
|
||||
div.section::after {
|
||||
display: block;
|
||||
content: '';
|
||||
clear: left;
|
||||
}
|
||||
|
||||
/* -- relbar ---------------------------------------------------------------- */
|
||||
|
||||
div.related {
|
||||
width: 100%;
|
||||
font-size: 90%;
|
||||
}
|
||||
|
||||
div.related h3 {
|
||||
display: none;
|
||||
}
|
||||
|
||||
div.related ul {
|
||||
margin: 0;
|
||||
padding: 0 0 0 10px;
|
||||
list-style: none;
|
||||
}
|
||||
|
||||
div.related li {
|
||||
display: inline;
|
||||
}
|
||||
|
||||
div.related li.right {
|
||||
float: right;
|
||||
margin-right: 5px;
|
||||
}
|
||||
|
||||
/* -- sidebar --------------------------------------------------------------- */
|
||||
|
||||
div.sphinxsidebarwrapper {
|
||||
padding: 10px 5px 0 10px;
|
||||
}
|
||||
|
||||
div.sphinxsidebar {
|
||||
float: left;
|
||||
width: 230px;
|
||||
margin-left: -100%;
|
||||
font-size: 90%;
|
||||
word-wrap: break-word;
|
||||
overflow-wrap : break-word;
|
||||
}
|
||||
|
||||
div.sphinxsidebar ul {
|
||||
list-style: none;
|
||||
}
|
||||
|
||||
div.sphinxsidebar ul ul,
|
||||
div.sphinxsidebar ul.want-points {
|
||||
margin-left: 20px;
|
||||
list-style: square;
|
||||
}
|
||||
|
||||
div.sphinxsidebar ul ul {
|
||||
margin-top: 0;
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
div.sphinxsidebar form {
|
||||
margin-top: 10px;
|
||||
}
|
||||
|
||||
div.sphinxsidebar input {
|
||||
border: 1px solid #98dbcc;
|
||||
font-family: sans-serif;
|
||||
font-size: 1em;
|
||||
}
|
||||
|
||||
div.sphinxsidebar #searchbox form.search {
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
div.sphinxsidebar #searchbox input[type="text"] {
|
||||
float: left;
|
||||
width: 80%;
|
||||
padding: 0.25em;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
div.sphinxsidebar #searchbox input[type="submit"] {
|
||||
float: left;
|
||||
width: 20%;
|
||||
border-left: none;
|
||||
padding: 0.25em;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
|
||||
img {
|
||||
border: 0;
|
||||
max-width: 100%;
|
||||
}
|
||||
|
||||
/* -- search page ----------------------------------------------------------- */
|
||||
|
||||
ul.search {
|
||||
margin: 10px 0 0 20px;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
ul.search li {
|
||||
padding: 5px 0 5px 20px;
|
||||
background-image: url(file.png);
|
||||
background-repeat: no-repeat;
|
||||
background-position: 0 7px;
|
||||
}
|
||||
|
||||
ul.search li a {
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
ul.search li div.context {
|
||||
color: #888;
|
||||
margin: 2px 0 0 30px;
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
ul.keywordmatches li.goodmatch a {
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
/* -- index page ------------------------------------------------------------ */
|
||||
|
||||
table.contentstable {
|
||||
width: 90%;
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
}
|
||||
|
||||
table.contentstable p.biglink {
|
||||
line-height: 150%;
|
||||
}
|
||||
|
||||
a.biglink {
|
||||
font-size: 1.3em;
|
||||
}
|
||||
|
||||
span.linkdescr {
|
||||
font-style: italic;
|
||||
padding-top: 5px;
|
||||
font-size: 90%;
|
||||
}
|
||||
|
||||
/* -- general index --------------------------------------------------------- */
|
||||
|
||||
table.indextable {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
table.indextable td {
|
||||
text-align: left;
|
||||
vertical-align: top;
|
||||
}
|
||||
|
||||
table.indextable ul {
|
||||
margin-top: 0;
|
||||
margin-bottom: 0;
|
||||
list-style-type: none;
|
||||
}
|
||||
|
||||
table.indextable > tbody > tr > td > ul {
|
||||
padding-left: 0em;
|
||||
}
|
||||
|
||||
table.indextable tr.pcap {
|
||||
height: 10px;
|
||||
}
|
||||
|
||||
table.indextable tr.cap {
|
||||
margin-top: 10px;
|
||||
background-color: #f2f2f2;
|
||||
}
|
||||
|
||||
img.toggler {
|
||||
margin-right: 3px;
|
||||
margin-top: 3px;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
div.modindex-jumpbox {
|
||||
border-top: 1px solid #ddd;
|
||||
border-bottom: 1px solid #ddd;
|
||||
margin: 1em 0 1em 0;
|
||||
padding: 0.4em;
|
||||
}
|
||||
|
||||
div.genindex-jumpbox {
|
||||
border-top: 1px solid #ddd;
|
||||
border-bottom: 1px solid #ddd;
|
||||
margin: 1em 0 1em 0;
|
||||
padding: 0.4em;
|
||||
}
|
||||
|
||||
/* -- domain module index --------------------------------------------------- */
|
||||
|
||||
table.modindextable td {
|
||||
padding: 2px;
|
||||
border-collapse: collapse;
|
||||
}
|
||||
|
||||
/* -- general body styles --------------------------------------------------- */
|
||||
|
||||
div.body {
|
||||
min-width: 450px;
|
||||
max-width: 800px;
|
||||
}
|
||||
|
||||
div.body p, div.body dd, div.body li, div.body blockquote {
|
||||
-moz-hyphens: auto;
|
||||
-ms-hyphens: auto;
|
||||
-webkit-hyphens: auto;
|
||||
hyphens: auto;
|
||||
}
|
||||
|
||||
a.headerlink {
|
||||
visibility: hidden;
|
||||
}
|
||||
|
||||
a.brackets:before,
|
||||
span.brackets > a:before{
|
||||
content: "[";
|
||||
}
|
||||
|
||||
a.brackets:after,
|
||||
span.brackets > a:after {
|
||||
content: "]";
|
||||
}
|
||||
|
||||
h1:hover > a.headerlink,
|
||||
h2:hover > a.headerlink,
|
||||
h3:hover > a.headerlink,
|
||||
h4:hover > a.headerlink,
|
||||
h5:hover > a.headerlink,
|
||||
h6:hover > a.headerlink,
|
||||
dt:hover > a.headerlink,
|
||||
caption:hover > a.headerlink,
|
||||
p.caption:hover > a.headerlink,
|
||||
div.code-block-caption:hover > a.headerlink {
|
||||
visibility: visible;
|
||||
}
|
||||
|
||||
div.body p.caption {
|
||||
text-align: inherit;
|
||||
}
|
||||
|
||||
div.body td {
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
.first {
|
||||
margin-top: 0 !important;
|
||||
}
|
||||
|
||||
p.rubric {
|
||||
margin-top: 30px;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
img.align-left, .figure.align-left, object.align-left {
|
||||
clear: left;
|
||||
float: left;
|
||||
margin-right: 1em;
|
||||
}
|
||||
|
||||
img.align-right, .figure.align-right, object.align-right {
|
||||
clear: right;
|
||||
float: right;
|
||||
margin-left: 1em;
|
||||
}
|
||||
|
||||
img.align-center, .figure.align-center, object.align-center {
|
||||
display: block;
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
}
|
||||
|
||||
img.align-default, .figure.align-default {
|
||||
display: block;
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
}
|
||||
|
||||
.align-left {
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
.align-center {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.align-default {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.align-right {
|
||||
text-align: right;
|
||||
}
|
||||
|
||||
/* -- sidebars -------------------------------------------------------------- */
|
||||
|
||||
div.sidebar {
|
||||
margin: 0 0 0.5em 1em;
|
||||
border: 1px solid #ddb;
|
||||
padding: 7px;
|
||||
background-color: #ffe;
|
||||
width: 40%;
|
||||
float: right;
|
||||
clear: right;
|
||||
overflow-x: auto;
|
||||
}
|
||||
|
||||
p.sidebar-title {
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
div.admonition, div.topic, blockquote {
|
||||
clear: left;
|
||||
}
|
||||
|
||||
/* -- topics ---------------------------------------------------------------- */
|
||||
|
||||
div.topic {
|
||||
border: 1px solid #ccc;
|
||||
padding: 7px;
|
||||
margin: 10px 0 10px 0;
|
||||
}
|
||||
|
||||
p.topic-title {
|
||||
font-size: 1.1em;
|
||||
font-weight: bold;
|
||||
margin-top: 10px;
|
||||
}
|
||||
|
||||
/* -- admonitions ----------------------------------------------------------- */
|
||||
|
||||
div.admonition {
|
||||
margin-top: 10px;
|
||||
margin-bottom: 10px;
|
||||
padding: 7px;
|
||||
}
|
||||
|
||||
div.admonition dt {
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
p.admonition-title {
|
||||
margin: 0px 10px 5px 0px;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
div.body p.centered {
|
||||
text-align: center;
|
||||
margin-top: 25px;
|
||||
}
|
||||
|
||||
/* -- content of sidebars/topics/admonitions -------------------------------- */
|
||||
|
||||
div.sidebar > :last-child,
|
||||
div.topic > :last-child,
|
||||
div.admonition > :last-child {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
div.sidebar::after,
|
||||
div.topic::after,
|
||||
div.admonition::after,
|
||||
blockquote::after {
|
||||
display: block;
|
||||
content: '';
|
||||
clear: both;
|
||||
}
|
||||
|
||||
/* -- tables ---------------------------------------------------------------- */
|
||||
|
||||
table.docutils {
|
||||
margin-top: 10px;
|
||||
margin-bottom: 10px;
|
||||
border: 0;
|
||||
border-collapse: collapse;
|
||||
}
|
||||
|
||||
table.align-center {
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
}
|
||||
|
||||
table.align-default {
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
}
|
||||
|
||||
table caption span.caption-number {
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
table caption span.caption-text {
|
||||
}
|
||||
|
||||
table.docutils td, table.docutils th {
|
||||
padding: 1px 8px 1px 5px;
|
||||
border-top: 0;
|
||||
border-left: 0;
|
||||
border-right: 0;
|
||||
border-bottom: 1px solid #aaa;
|
||||
}
|
||||
|
||||
table.footnote td, table.footnote th {
|
||||
border: 0 !important;
|
||||
}
|
||||
|
||||
th {
|
||||
text-align: left;
|
||||
padding-right: 5px;
|
||||
}
|
||||
|
||||
table.citation {
|
||||
border-left: solid 1px gray;
|
||||
margin-left: 1px;
|
||||
}
|
||||
|
||||
table.citation td {
|
||||
border-bottom: none;
|
||||
}
|
||||
|
||||
th > :first-child,
|
||||
td > :first-child {
|
||||
margin-top: 0px;
|
||||
}
|
||||
|
||||
th > :last-child,
|
||||
td > :last-child {
|
||||
margin-bottom: 0px;
|
||||
}
|
||||
|
||||
/* -- figures --------------------------------------------------------------- */
|
||||
|
||||
div.figure {
|
||||
margin: 0.5em;
|
||||
padding: 0.5em;
|
||||
}
|
||||
|
||||
div.figure p.caption {
|
||||
padding: 0.3em;
|
||||
}
|
||||
|
||||
div.figure p.caption span.caption-number {
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
div.figure p.caption span.caption-text {
|
||||
}
|
||||
|
||||
/* -- field list styles ----------------------------------------------------- */
|
||||
|
||||
table.field-list td, table.field-list th {
|
||||
border: 0 !important;
|
||||
}
|
||||
|
||||
.field-list ul {
|
||||
margin: 0;
|
||||
padding-left: 1em;
|
||||
}
|
||||
|
||||
.field-list p {
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.field-name {
|
||||
-moz-hyphens: manual;
|
||||
-ms-hyphens: manual;
|
||||
-webkit-hyphens: manual;
|
||||
hyphens: manual;
|
||||
}
|
||||
|
||||
/* -- hlist styles ---------------------------------------------------------- */
|
||||
|
||||
table.hlist {
|
||||
margin: 1em 0;
|
||||
}
|
||||
|
||||
table.hlist td {
|
||||
vertical-align: top;
|
||||
}
|
||||
|
||||
|
||||
/* -- other body styles ----------------------------------------------------- */
|
||||
|
||||
ol.arabic {
|
||||
list-style: decimal;
|
||||
}
|
||||
|
||||
ol.loweralpha {
|
||||
list-style: lower-alpha;
|
||||
}
|
||||
|
||||
ol.upperalpha {
|
||||
list-style: upper-alpha;
|
||||
}
|
||||
|
||||
ol.lowerroman {
|
||||
list-style: lower-roman;
|
||||
}
|
||||
|
||||
ol.upperroman {
|
||||
list-style: upper-roman;
|
||||
}
|
||||
|
||||
:not(li) > ol > li:first-child > :first-child,
|
||||
:not(li) > ul > li:first-child > :first-child {
|
||||
margin-top: 0px;
|
||||
}
|
||||
|
||||
:not(li) > ol > li:last-child > :last-child,
|
||||
:not(li) > ul > li:last-child > :last-child {
|
||||
margin-bottom: 0px;
|
||||
}
|
||||
|
||||
ol.simple ol p,
|
||||
ol.simple ul p,
|
||||
ul.simple ol p,
|
||||
ul.simple ul p {
|
||||
margin-top: 0;
|
||||
}
|
||||
|
||||
ol.simple > li:not(:first-child) > p,
|
||||
ul.simple > li:not(:first-child) > p {
|
||||
margin-top: 0;
|
||||
}
|
||||
|
||||
ol.simple p,
|
||||
ul.simple p {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
dl.footnote > dt,
|
||||
dl.citation > dt {
|
||||
float: left;
|
||||
margin-right: 0.5em;
|
||||
}
|
||||
|
||||
dl.footnote > dd,
|
||||
dl.citation > dd {
|
||||
margin-bottom: 0em;
|
||||
}
|
||||
|
||||
dl.footnote > dd:after,
|
||||
dl.citation > dd:after {
|
||||
content: "";
|
||||
clear: both;
|
||||
}
|
||||
|
||||
dl.field-list {
|
||||
display: grid;
|
||||
grid-template-columns: fit-content(30%) auto;
|
||||
}
|
||||
|
||||
dl.field-list > dt {
|
||||
font-weight: bold;
|
||||
word-break: break-word;
|
||||
padding-left: 0.5em;
|
||||
padding-right: 5px;
|
||||
}
|
||||
|
||||
dl.field-list > dt:after {
|
||||
content: ":";
|
||||
}
|
||||
|
||||
dl.field-list > dd {
|
||||
padding-left: 0.5em;
|
||||
margin-top: 0em;
|
||||
margin-left: 0em;
|
||||
margin-bottom: 0em;
|
||||
}
|
||||
|
||||
dl {
|
||||
margin-bottom: 15px;
|
||||
}
|
||||
|
||||
dd > :first-child {
|
||||
margin-top: 0px;
|
||||
}
|
||||
|
||||
dd ul, dd table {
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
|
||||
dd {
|
||||
margin-top: 3px;
|
||||
margin-bottom: 10px;
|
||||
margin-left: 30px;
|
||||
}
|
||||
|
||||
dl > dd:last-child,
|
||||
dl > dd:last-child > :last-child {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
dt:target, span.highlighted {
|
||||
background-color: #fbe54e;
|
||||
}
|
||||
|
||||
rect.highlighted {
|
||||
fill: #fbe54e;
|
||||
}
|
||||
|
||||
dl.glossary dt {
|
||||
font-weight: bold;
|
||||
font-size: 1.1em;
|
||||
}
|
||||
|
||||
.optional {
|
||||
font-size: 1.3em;
|
||||
}
|
||||
|
||||
.sig-paren {
|
||||
font-size: larger;
|
||||
}
|
||||
|
||||
.versionmodified {
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
.system-message {
|
||||
background-color: #fda;
|
||||
padding: 5px;
|
||||
border: 3px solid red;
|
||||
}
|
||||
|
||||
.footnote:target {
|
||||
background-color: #ffa;
|
||||
}
|
||||
|
||||
.line-block {
|
||||
display: block;
|
||||
margin-top: 1em;
|
||||
margin-bottom: 1em;
|
||||
}
|
||||
|
||||
.line-block .line-block {
|
||||
margin-top: 0;
|
||||
margin-bottom: 0;
|
||||
margin-left: 1.5em;
|
||||
}
|
||||
|
||||
.guilabel, .menuselection {
|
||||
font-family: sans-serif;
|
||||
}
|
||||
|
||||
.accelerator {
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
.classifier {
|
||||
font-style: oblique;
|
||||
}
|
||||
|
||||
.classifier:before {
|
||||
font-style: normal;
|
||||
margin: 0.5em;
|
||||
content: ":";
|
||||
}
|
||||
|
||||
abbr, acronym {
|
||||
border-bottom: dotted 1px;
|
||||
cursor: help;
|
||||
}
|
||||
|
||||
/* -- code displays --------------------------------------------------------- */
|
||||
|
||||
pre {
|
||||
overflow: auto;
|
||||
overflow-y: hidden; /* fixes display issues on Chrome browsers */
|
||||
}
|
||||
|
||||
pre, div[class*="highlight-"] {
|
||||
clear: both;
|
||||
}
|
||||
|
||||
span.pre {
|
||||
-moz-hyphens: none;
|
||||
-ms-hyphens: none;
|
||||
-webkit-hyphens: none;
|
||||
hyphens: none;
|
||||
}
|
||||
|
||||
div[class*="highlight-"] {
|
||||
margin: 1em 0;
|
||||
}
|
||||
|
||||
td.linenos pre {
|
||||
border: 0;
|
||||
background-color: transparent;
|
||||
color: #aaa;
|
||||
}
|
||||
|
||||
table.highlighttable {
|
||||
display: block;
|
||||
}
|
||||
|
||||
table.highlighttable tbody {
|
||||
display: block;
|
||||
}
|
||||
|
||||
table.highlighttable tr {
|
||||
display: flex;
|
||||
}
|
||||
|
||||
table.highlighttable td {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
table.highlighttable td.linenos {
|
||||
padding-right: 0.5em;
|
||||
}
|
||||
|
||||
table.highlighttable td.code {
|
||||
flex: 1;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.highlight .hll {
|
||||
display: block;
|
||||
}
|
||||
|
||||
div.highlight pre,
|
||||
table.highlighttable pre {
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
div.code-block-caption + div {
|
||||
margin-top: 0;
|
||||
}
|
||||
|
||||
div.code-block-caption {
|
||||
margin-top: 1em;
|
||||
padding: 2px 5px;
|
||||
font-size: small;
|
||||
}
|
||||
|
||||
div.code-block-caption code {
|
||||
background-color: transparent;
|
||||
}
|
||||
|
||||
table.highlighttable td.linenos,
|
||||
div.doctest > div.highlight span.gp { /* gp: Generic.Prompt */
|
||||
user-select: none;
|
||||
}
|
||||
|
||||
div.code-block-caption span.caption-number {
|
||||
padding: 0.1em 0.3em;
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
div.code-block-caption span.caption-text {
|
||||
}
|
||||
|
||||
div.literal-block-wrapper {
|
||||
margin: 1em 0;
|
||||
}
|
||||
|
||||
code.descname {
|
||||
background-color: transparent;
|
||||
font-weight: bold;
|
||||
font-size: 1.2em;
|
||||
}
|
||||
|
||||
code.descclassname {
|
||||
background-color: transparent;
|
||||
}
|
||||
|
||||
code.xref, a code {
|
||||
background-color: transparent;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
h1 code, h2 code, h3 code, h4 code, h5 code, h6 code {
|
||||
background-color: transparent;
|
||||
}
|
||||
|
||||
.viewcode-link {
|
||||
float: right;
|
||||
}
|
||||
|
||||
.viewcode-back {
|
||||
float: right;
|
||||
font-family: sans-serif;
|
||||
}
|
||||
|
||||
div.viewcode-block:target {
|
||||
margin: -1px -10px;
|
||||
padding: 0 10px;
|
||||
}
|
||||
|
||||
/* -- math display ---------------------------------------------------------- */
|
||||
|
||||
img.math {
|
||||
vertical-align: middle;
|
||||
}
|
||||
|
||||
div.body div.math p {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
span.eqno {
|
||||
float: right;
|
||||
}
|
||||
|
||||
span.eqno a.headerlink {
|
||||
position: absolute;
|
||||
z-index: 1;
|
||||
}
|
||||
|
||||
div.math:hover a.headerlink {
|
||||
visibility: visible;
|
||||
}
|
||||
|
||||
/* -- printout stylesheet --------------------------------------------------- */
|
||||
|
||||
@media print {
|
||||
div.document,
|
||||
div.documentwrapper,
|
||||
div.bodywrapper {
|
||||
margin: 0 !important;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
div.sphinxsidebar,
|
||||
div.related,
|
||||
div.footer,
|
||||
#top-link {
|
||||
display: none;
|
||||
}
|
||||
}
|
1
vsphere/7.0.1.0/_static/css/badge_only.css
Normal file
1
vsphere/7.0.1.0/_static/css/badge_only.css
Normal file
@ -0,0 +1 @@
|
||||
.fa:before{-webkit-font-smoothing:antialiased}.clearfix{*zoom:1}.clearfix:after,.clearfix:before{display:table;content:""}.clearfix:after{clear:both}@font-face{font-family:FontAwesome;font-style:normal;font-weight:400;src:url(fonts/fontawesome-webfont.eot?674f50d287a8c48dc19ba404d20fe713?#iefix) format("embedded-opentype"),url(fonts/fontawesome-webfont.woff2?af7ae505a9eed503f8b8e6982036873e) format("woff2"),url(fonts/fontawesome-webfont.woff?fee66e712a8a08eef5805a46892932ad) format("woff"),url(fonts/fontawesome-webfont.ttf?b06871f281fee6b241d60582ae9369b9) format("truetype"),url(fonts/fontawesome-webfont.svg?912ec66d7572ff821749319396470bde#FontAwesome) format("svg")}.fa:before{font-family:FontAwesome;font-style:normal;font-weight:400;line-height:1}.fa:before,a .fa{text-decoration:inherit}.fa:before,a .fa,li .fa{display:inline-block}li .fa-large:before{width:1.875em}ul.fas{list-style-type:none;margin-left:2em;text-indent:-.8em}ul.fas li .fa{width:.8em}ul.fas li .fa-large:before{vertical-align:baseline}.fa-book:before,.icon-book:before{content:"\f02d"}.fa-caret-down:before,.icon-caret-down:before{content:"\f0d7"}.fa-caret-up:before,.icon-caret-up:before{content:"\f0d8"}.fa-caret-left:before,.icon-caret-left:before{content:"\f0d9"}.fa-caret-right:before,.icon-caret-right:before{content:"\f0da"}.rst-versions{position:fixed;bottom:0;left:0;width:300px;color:#fcfcfc;background:#1f1d1d;font-family:Lato,proxima-nova,Helvetica Neue,Arial,sans-serif;z-index:400}.rst-versions a{color:#2980b9;text-decoration:none}.rst-versions .rst-badge-small{display:none}.rst-versions .rst-current-version{padding:12px;background-color:#272525;display:block;text-align:right;font-size:90%;cursor:pointer;color:#27ae60}.rst-versions .rst-current-version:after{clear:both;content:"";display:block}.rst-versions .rst-current-version .fa{color:#fcfcfc}.rst-versions .rst-current-version .fa-book,.rst-versions .rst-current-version .icon-book{float:left}.rst-versions .rst-current-version.rst-out-of-date{background-color:#e74c3c;color:#fff}.rst-versions .rst-current-version.rst-active-old-version{background-color:#f1c40f;color:#000}.rst-versions.shift-up{height:auto;max-height:100%;overflow-y:scroll}.rst-versions.shift-up .rst-other-versions{display:block}.rst-versions .rst-other-versions{font-size:90%;padding:12px;color:grey;display:none}.rst-versions .rst-other-versions hr{display:block;height:1px;border:0;margin:20px 0;padding:0;border-top:1px solid #413d3d}.rst-versions .rst-other-versions dd{display:inline-block;margin:0}.rst-versions .rst-other-versions dd a{display:inline-block;padding:6px;color:#fcfcfc}.rst-versions.rst-badge{width:auto;bottom:20px;right:20px;left:auto;border:none;max-width:300px;max-height:90%}.rst-versions.rst-badge .fa-book,.rst-versions.rst-badge .icon-book{float:none;line-height:30px}.rst-versions.rst-badge.shift-up .rst-current-version{text-align:right}.rst-versions.rst-badge.shift-up .rst-current-version .fa-book,.rst-versions.rst-badge.shift-up .rst-current-version .icon-book{float:left}.rst-versions.rst-badge>.rst-current-version{width:auto;height:30px;line-height:30px;padding:0 6px;display:block;text-align:center}@media screen and (max-width:768px){.rst-versions{width:85%;display:none}.rst-versions.shift{display:block}}
|
BIN
vsphere/7.0.1.0/_static/css/fonts/Roboto-Slab-Bold.woff
Normal file
BIN
vsphere/7.0.1.0/_static/css/fonts/Roboto-Slab-Bold.woff
Normal file
Binary file not shown.
BIN
vsphere/7.0.1.0/_static/css/fonts/Roboto-Slab-Bold.woff2
Normal file
BIN
vsphere/7.0.1.0/_static/css/fonts/Roboto-Slab-Bold.woff2
Normal file
Binary file not shown.
BIN
vsphere/7.0.1.0/_static/css/fonts/Roboto-Slab-Regular.woff
Normal file
BIN
vsphere/7.0.1.0/_static/css/fonts/Roboto-Slab-Regular.woff
Normal file
Binary file not shown.
BIN
vsphere/7.0.1.0/_static/css/fonts/Roboto-Slab-Regular.woff2
Normal file
BIN
vsphere/7.0.1.0/_static/css/fonts/Roboto-Slab-Regular.woff2
Normal file
Binary file not shown.
BIN
vsphere/7.0.1.0/_static/css/fonts/fontawesome-webfont.eot
Normal file
BIN
vsphere/7.0.1.0/_static/css/fonts/fontawesome-webfont.eot
Normal file
Binary file not shown.
2671
vsphere/7.0.1.0/_static/css/fonts/fontawesome-webfont.svg
Normal file
2671
vsphere/7.0.1.0/_static/css/fonts/fontawesome-webfont.svg
Normal file
File diff suppressed because it is too large
Load Diff
After Width: | Height: | Size: 434 KiB |
BIN
vsphere/7.0.1.0/_static/css/fonts/fontawesome-webfont.ttf
Normal file
BIN
vsphere/7.0.1.0/_static/css/fonts/fontawesome-webfont.ttf
Normal file
Binary file not shown.
BIN
vsphere/7.0.1.0/_static/css/fonts/fontawesome-webfont.woff
Normal file
BIN
vsphere/7.0.1.0/_static/css/fonts/fontawesome-webfont.woff
Normal file
Binary file not shown.
BIN
vsphere/7.0.1.0/_static/css/fonts/fontawesome-webfont.woff2
Normal file
BIN
vsphere/7.0.1.0/_static/css/fonts/fontawesome-webfont.woff2
Normal file
Binary file not shown.
BIN
vsphere/7.0.1.0/_static/css/fonts/lato-bold-italic.woff
Normal file
BIN
vsphere/7.0.1.0/_static/css/fonts/lato-bold-italic.woff
Normal file
Binary file not shown.
BIN
vsphere/7.0.1.0/_static/css/fonts/lato-bold-italic.woff2
Normal file
BIN
vsphere/7.0.1.0/_static/css/fonts/lato-bold-italic.woff2
Normal file
Binary file not shown.
BIN
vsphere/7.0.1.0/_static/css/fonts/lato-bold.woff
Normal file
BIN
vsphere/7.0.1.0/_static/css/fonts/lato-bold.woff
Normal file
Binary file not shown.
BIN
vsphere/7.0.1.0/_static/css/fonts/lato-bold.woff2
Normal file
BIN
vsphere/7.0.1.0/_static/css/fonts/lato-bold.woff2
Normal file
Binary file not shown.
BIN
vsphere/7.0.1.0/_static/css/fonts/lato-normal-italic.woff
Normal file
BIN
vsphere/7.0.1.0/_static/css/fonts/lato-normal-italic.woff
Normal file
Binary file not shown.
BIN
vsphere/7.0.1.0/_static/css/fonts/lato-normal-italic.woff2
Normal file
BIN
vsphere/7.0.1.0/_static/css/fonts/lato-normal-italic.woff2
Normal file
Binary file not shown.
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user