1
0
mirror of https://github.com/vmware/vsphere-automation-sdk-python.git synced 2024-11-22 09:39:58 -05:00

Updating latest python vmc doc (9e1e768)

This commit is contained in:
sumitAgrawal007 2020-11-10 04:31:11 +00:00
parent 525a27d822
commit baf57d9fbd
25 changed files with 394 additions and 117 deletions

View File

@ -17,6 +17,14 @@ com.vmware.vmc.orgs.sddcs.clusters.config\_client module
:undoc-members:
:show-inheritance:
com.vmware.vmc.orgs.sddcs.clusters.esxs\_client module
------------------------------------------------------
.. automodule:: com.vmware.vmc.orgs.sddcs.clusters.esxs_client
:members:
:undoc-members:
:show-inheritance:
com.vmware.vmc.orgs.sddcs.clusters.msft\_licensing\_client module
-----------------------------------------------------------------

View File

@ -1,5 +1,5 @@
.. vmc documentation master file, created by
sphinx-quickstart on Wed Sep 30 08:07:01 2020.
sphinx-quickstart on Tue Nov 10 04:28:13 2020.
You can adapt this file completely to your liking, but it should at least
contain the root `toctree` directive.

View File

@ -764,6 +764,7 @@ div.code-block-caption code {
}
table.highlighttable td.linenos,
span.linenos,
div.doctest > div.highlight span.gp { /* gp: Generic.Prompt */
user-select: none;
}

View File

@ -285,9 +285,10 @@ var Documentation = {
initOnKeyListeners: function() {
$(document).keydown(function(event) {
var activeElementType = document.activeElement.tagName;
// don't navigate when in search box or textarea
// don't navigate when in search box, textarea, dropdown or button
if (activeElementType !== 'TEXTAREA' && activeElementType !== 'INPUT' && activeElementType !== 'SELECT'
&& !event.altKey && !event.ctrlKey && !event.metaKey && !event.shiftKey) {
&& activeElementType !== 'BUTTON' && !event.altKey && !event.ctrlKey && !event.metaKey
&& !event.shiftKey) {
switch (event.keyCode) {
case 37: // left
var prevHref = $('link[rel="prev"]').prop('href');

View File

@ -1,6 +1,6 @@
var DOCUMENTATION_OPTIONS = {
URL_ROOT: document.getElementById("documentation_options").getAttribute('data-url_root'),
VERSION: '1.29.0',
VERSION: '1.30.0',
LANGUAGE: 'en',
COLLAPSE_INDEX: false,
BUILDER: 'html',

View File

@ -1,8 +1,8 @@
pre { line-height: 125%; margin: 0; }
td.linenos pre { color: #000000; background-color: #f0f0f0; padding: 0 5px 0 5px; }
span.linenos { color: #000000; background-color: #f0f0f0; padding: 0 5px 0 5px; }
td.linenos pre.special { color: #000000; background-color: #ffffc0; padding: 0 5px 0 5px; }
span.linenos.special { color: #000000; background-color: #ffffc0; padding: 0 5px 0 5px; }
td.linenos pre { color: #000000; background-color: #f0f0f0; padding-left: 5px; padding-right: 5px; }
span.linenos { color: #000000; background-color: #f0f0f0; padding-left: 5px; padding-right: 5px; }
td.linenos pre.special { color: #000000; background-color: #ffffc0; padding-left: 5px; padding-right: 5px; }
span.linenos.special { color: #000000; background-color: #ffffc0; padding-left: 5px; padding-right: 5px; }
.highlight .hll { background-color: #ffffcc }
.highlight { background: #f8f8f8; }
.highlight .c { color: #408080; font-style: italic } /* Comment */

View File

@ -59,10 +59,10 @@ var Search = {
_pulse_status : -1,
htmlToText : function(htmlString) {
var htmlElement = document.createElement('span');
htmlElement.innerHTML = htmlString;
$(htmlElement).find('.headerlink').remove();
docContent = $(htmlElement).find('[role=main]')[0];
var virtualDocument = document.implementation.createHTMLDocument('virtual');
var htmlElement = $(htmlString, virtualDocument);
htmlElement.find('.headerlink').remove();
docContent = htmlElement.find('[role=main]')[0];
if(docContent === undefined) {
console.warn("Content block not found. Sphinx search tries to obtain it " +
"via '[role=main]'. Could you check your theme or template.");

View File

@ -7,7 +7,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>com package &mdash; vmc 1.29.0 documentation</title>
<title>com package &mdash; vmc 1.30.0 documentation</title>
@ -61,7 +61,7 @@
<div class="version">
1.29.0
1.30.0
</div>
@ -189,6 +189,7 @@
<li class="toctree-l9"><a class="reference internal" href="com.vmware.vmc.orgs.sddcs.clusters.html">com.vmware.vmc.orgs.sddcs.clusters package</a><ul>
<li class="toctree-l10"><a class="reference internal" href="com.vmware.vmc.orgs.sddcs.clusters.html#submodules">Submodules</a></li>
<li class="toctree-l10"><a class="reference internal" href="com.vmware.vmc.orgs.sddcs.clusters.html#module-com.vmware.vmc.orgs.sddcs.clusters.config_client">com.vmware.vmc.orgs.sddcs.clusters.config_client module</a></li>
<li class="toctree-l10"><a class="reference internal" href="com.vmware.vmc.orgs.sddcs.clusters.html#module-com.vmware.vmc.orgs.sddcs.clusters.esxs_client">com.vmware.vmc.orgs.sddcs.clusters.esxs_client module</a></li>
<li class="toctree-l10"><a class="reference internal" href="com.vmware.vmc.orgs.sddcs.clusters.html#module-com.vmware.vmc.orgs.sddcs.clusters.msft_licensing_client">com.vmware.vmc.orgs.sddcs.clusters.msft_licensing_client module</a></li>
</ul>
</li>

View File

@ -7,7 +7,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>com.vmware package &mdash; vmc 1.29.0 documentation</title>
<title>com.vmware package &mdash; vmc 1.30.0 documentation</title>
@ -61,7 +61,7 @@
<div class="version">
1.29.0
1.30.0
</div>
@ -194,6 +194,7 @@
<li class="toctree-l7"><a class="reference internal" href="com.vmware.vmc.orgs.sddcs.clusters.html">com.vmware.vmc.orgs.sddcs.clusters package</a><ul>
<li class="toctree-l8"><a class="reference internal" href="com.vmware.vmc.orgs.sddcs.clusters.html#submodules">Submodules</a></li>
<li class="toctree-l8"><a class="reference internal" href="com.vmware.vmc.orgs.sddcs.clusters.html#module-com.vmware.vmc.orgs.sddcs.clusters.config_client">com.vmware.vmc.orgs.sddcs.clusters.config_client module</a></li>
<li class="toctree-l8"><a class="reference internal" href="com.vmware.vmc.orgs.sddcs.clusters.html#module-com.vmware.vmc.orgs.sddcs.clusters.esxs_client">com.vmware.vmc.orgs.sddcs.clusters.esxs_client module</a></li>
<li class="toctree-l8"><a class="reference internal" href="com.vmware.vmc.orgs.sddcs.clusters.html#module-com.vmware.vmc.orgs.sddcs.clusters.msft_licensing_client">com.vmware.vmc.orgs.sddcs.clusters.msft_licensing_client module</a></li>
</ul>
</li>

File diff suppressed because one or more lines are too long

View File

@ -7,7 +7,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>com.vmware.vmc.orgs.aws package &mdash; vmc 1.29.0 documentation</title>
<title>com.vmware.vmc.orgs.aws package &mdash; vmc 1.30.0 documentation</title>
@ -61,7 +61,7 @@
<div class="version">
1.29.0
1.30.0
</div>

View File

@ -7,7 +7,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>com.vmware.vmc.orgs.aws.resources package &mdash; vmc 1.29.0 documentation</title>
<title>com.vmware.vmc.orgs.aws.resources package &mdash; vmc 1.30.0 documentation</title>
@ -61,7 +61,7 @@
<div class="version">
1.29.0
1.30.0
</div>

View File

@ -7,7 +7,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>com.vmware.vmc.orgs package &mdash; vmc 1.29.0 documentation</title>
<title>com.vmware.vmc.orgs package &mdash; vmc 1.30.0 documentation</title>
@ -61,7 +61,7 @@
<div class="version">
1.29.0
1.30.0
</div>
@ -194,6 +194,7 @@
<li class="toctree-l3"><a class="reference internal" href="com.vmware.vmc.orgs.sddcs.clusters.html">com.vmware.vmc.orgs.sddcs.clusters package</a><ul>
<li class="toctree-l4"><a class="reference internal" href="com.vmware.vmc.orgs.sddcs.clusters.html#submodules">Submodules</a></li>
<li class="toctree-l4"><a class="reference internal" href="com.vmware.vmc.orgs.sddcs.clusters.html#module-com.vmware.vmc.orgs.sddcs.clusters.config_client">com.vmware.vmc.orgs.sddcs.clusters.config_client module</a></li>
<li class="toctree-l4"><a class="reference internal" href="com.vmware.vmc.orgs.sddcs.clusters.html#module-com.vmware.vmc.orgs.sddcs.clusters.esxs_client">com.vmware.vmc.orgs.sddcs.clusters.esxs_client module</a></li>
<li class="toctree-l4"><a class="reference internal" href="com.vmware.vmc.orgs.sddcs.clusters.html#module-com.vmware.vmc.orgs.sddcs.clusters.msft_licensing_client">com.vmware.vmc.orgs.sddcs.clusters.msft_licensing_client module</a></li>
</ul>
</li>
@ -762,6 +763,100 @@ Cannot find the SDDC with given identifier</p>
</dd></dl>
<dl class="py class">
<dt id="com.vmware.vmc.orgs.sddcs_client.Enablements">
<em class="property">class </em><code class="sig-prename descclassname">com.vmware.vmc.orgs.sddcs_client.</code><code class="sig-name descname">Enablements</code><span class="sig-paren">(</span><em class="sig-param"><span class="n">config</span></em><span class="sig-paren">)</span><a class="headerlink" href="#com.vmware.vmc.orgs.sddcs_client.Enablements" 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.VapiInterface</span></code></p>
<dl class="field-list simple">
<dt class="field-odd">Parameters</dt>
<dd class="field-odd"><p><strong>config</strong> (<code class="xref py py-class docutils literal notranslate"><span class="pre">vmware.vapi.bindings.stub.StubConfiguration</span></code>) Configuration to be used for creating the stub.</p>
</dd>
</dl>
<dl class="py attribute">
<dt id="com.vmware.vmc.orgs.sddcs_client.Enablements.ENABLE_DISABLE_ADDON_ACTION_DISABLE">
<code class="sig-name descname">ENABLE_DISABLE_ADDON_ACTION_DISABLE</code><em class="property"> = 'disable'</em><a class="headerlink" href="#com.vmware.vmc.orgs.sddcs_client.Enablements.ENABLE_DISABLE_ADDON_ACTION_DISABLE" title="Permalink to this definition"></a></dt>
<dd><p>Possible value for <code class="docutils literal notranslate"><span class="pre">action</span></code> of method
<a class="reference internal" href="#com.vmware.vmc.orgs.sddcs_client.Enablements.enable_disable_addon" title="com.vmware.vmc.orgs.sddcs_client.Enablements.enable_disable_addon"><code class="xref py py-func docutils literal notranslate"><span class="pre">Enablements.enable_disable_addon()</span></code></a>.</p>
</dd></dl>
<dl class="py attribute">
<dt id="com.vmware.vmc.orgs.sddcs_client.Enablements.ENABLE_DISABLE_ADDON_ACTION_ENABLE">
<code class="sig-name descname">ENABLE_DISABLE_ADDON_ACTION_ENABLE</code><em class="property"> = 'enable'</em><a class="headerlink" href="#com.vmware.vmc.orgs.sddcs_client.Enablements.ENABLE_DISABLE_ADDON_ACTION_ENABLE" title="Permalink to this definition"></a></dt>
<dd><p>Possible value for <code class="docutils literal notranslate"><span class="pre">action</span></code> of method
<a class="reference internal" href="#com.vmware.vmc.orgs.sddcs_client.Enablements.enable_disable_addon" title="com.vmware.vmc.orgs.sddcs_client.Enablements.enable_disable_addon"><code class="xref py py-func docutils literal notranslate"><span class="pre">Enablements.enable_disable_addon()</span></code></a>.</p>
</dd></dl>
<dl class="py method">
<dt id="com.vmware.vmc.orgs.sddcs_client.Enablements.enable_disable_addon">
<code class="sig-name descname">enable_disable_addon</code><span class="sig-paren">(</span><em class="sig-param"><span class="n">org</span></em>, <em class="sig-param"><span class="n">sddc</span></em>, <em class="sig-param"><span class="n">enablement</span></em>, <em class="sig-param"><span class="n">action</span></em><span class="sig-paren">)</span><a class="headerlink" href="#com.vmware.vmc.orgs.sddcs_client.Enablements.enable_disable_addon" title="Permalink to this definition"></a></dt>
<dd><p>Enable/disable the add-on or set the the default enablement status for
future add-ons in the SDDC.</p>
<dl class="field-list simple">
<dt class="field-odd">Parameters</dt>
<dd class="field-odd"><ul class="simple">
<li><p><strong>org</strong> (<code class="xref py py-class docutils literal notranslate"><span class="pre">str</span></code>) Organization identifier (required)</p></li>
<li><p><strong>sddc</strong> (<code class="xref py py-class docutils literal notranslate"><span class="pre">str</span></code>) Sddc identifier (required)</p></li>
<li><p><strong>enablement</strong> (<code class="xref py py-class docutils literal notranslate"><span class="pre">str</span></code>) Add-on name, for example “hcx, “draas”, “skynet”. If it is
“default”, the operation is for default settings of future
add-ons. (required)</p></li>
<li><p><strong>action</strong> (<code class="xref py py-class docutils literal notranslate"><span class="pre">str</span></code>) Enable or disable the add-on or change default settings for future
add-ons in the SDDC. (required)</p></li>
</ul>
</dd>
<dt class="field-even">Raise</dt>
<dd class="field-even"><p><code class="xref py py-class docutils literal notranslate"><span class="pre">com.vmware.vapi.std.errors_client.Unauthenticated</span></code>
Unauthorized</p>
</dd>
<dt class="field-odd">Raise</dt>
<dd class="field-odd"><p><code class="xref py py-class docutils literal notranslate"><span class="pre">com.vmware.vapi.std.errors_client.InvalidRequest</span></code>
Bad Request / Validation error.</p>
</dd>
<dt class="field-even">Raise</dt>
<dd class="field-even"><p><code class="xref py py-class docutils literal notranslate"><span class="pre">com.vmware.vapi.std.errors_client.Unauthorized</span></code>
Forbidden</p>
</dd>
<dt class="field-odd">Raise</dt>
<dd class="field-odd"><p><code class="xref py py-class docutils literal notranslate"><span class="pre">com.vmware.vapi.std.errors_client.NotFound</span></code>
Add-on not found</p>
</dd>
</dl>
</dd></dl>
<dl class="py method">
<dt id="com.vmware.vmc.orgs.sddcs_client.Enablements.list">
<code class="sig-name descname">list</code><span class="sig-paren">(</span><em class="sig-param"><span class="n">org</span></em>, <em class="sig-param"><span class="n">sddc</span></em><span class="sig-paren">)</span><a class="headerlink" href="#com.vmware.vmc.orgs.sddcs_client.Enablements.list" title="Permalink to this definition"></a></dt>
<dd><p>Return a list of enablement status for current add-ons and the default
settings for future add-ons in the SDDC.</p>
<dl class="field-list simple">
<dt class="field-odd">Parameters</dt>
<dd class="field-odd"><ul class="simple">
<li><p><strong>org</strong> (<code class="xref py py-class docutils literal notranslate"><span class="pre">str</span></code>) Organization identifier (required)</p></li>
<li><p><strong>sddc</strong> (<code class="xref py py-class docutils literal notranslate"><span class="pre">str</span></code>) Sddc identifier (required)</p></li>
</ul>
</dd>
<dt class="field-even">Return type</dt>
<dd class="field-even"><p><a class="reference internal" href="#com.vmware.vmc.orgs.sddcs_client.Enablements.list" title="com.vmware.vmc.orgs.sddcs_client.Enablements.list"><code class="xref py py-class docutils literal notranslate"><span class="pre">list</span></code></a> of <a class="reference internal" href="com.vmware.vmc.html#com.vmware.vmc.model_client.EnablementInfo" title="com.vmware.vmc.model_client.EnablementInfo"><code class="xref py py-class docutils literal notranslate"><span class="pre">com.vmware.vmc.model_client.EnablementInfo</span></code></a></p>
</dd>
<dt class="field-odd">Returns</dt>
<dd class="field-odd"><p></p>
</dd>
<dt class="field-even">Raise</dt>
<dd class="field-even"><p><code class="xref py py-class docutils literal notranslate"><span class="pre">com.vmware.vapi.std.errors_client.Unauthenticated</span></code>
Unauthorized</p>
</dd>
<dt class="field-odd">Raise</dt>
<dd class="field-odd"><p><code class="xref py py-class docutils literal notranslate"><span class="pre">com.vmware.vapi.std.errors_client.InvalidRequest</span></code>
Bad Request / Validation error.</p>
</dd>
<dt class="field-even">Raise</dt>
<dd class="field-even"><p><code class="xref py py-class docutils literal notranslate"><span class="pre">com.vmware.vapi.std.errors_client.Unauthorized</span></code>
Forbidden</p>
</dd>
</dl>
</dd></dl>
</dd></dl>
<dl class="py class">
<dt id="com.vmware.vmc.orgs.sddcs_client.Esxs">
<em class="property">class </em><code class="sig-prename descclassname">com.vmware.vmc.orgs.sddcs_client.</code><code class="sig-name descname">Esxs</code><span class="sig-paren">(</span><em class="sig-param"><span class="n">config</span></em><span class="sig-paren">)</span><a class="headerlink" href="#com.vmware.vmc.orgs.sddcs_client.Esxs" title="Permalink to this definition"></a></dt>

View File

@ -7,7 +7,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>com.vmware.vmc.orgs.sddcs.clusters package &mdash; vmc 1.29.0 documentation</title>
<title>com.vmware.vmc.orgs.sddcs.clusters package &mdash; vmc 1.30.0 documentation</title>
@ -61,7 +61,7 @@
<div class="version">
1.29.0
1.30.0
</div>
@ -247,6 +247,66 @@ Forbidden</p>
</dl>
</dd></dl>
</div>
<div class="section" id="module-com.vmware.vmc.orgs.sddcs.clusters.esxs_client">
<span id="com-vmware-vmc-orgs-sddcs-clusters-esxs-client-module"></span><h2>com.vmware.vmc.orgs.sddcs.clusters.esxs_client module<a class="headerlink" href="#module-com.vmware.vmc.orgs.sddcs.clusters.esxs_client" title="Permalink to this headline"></a></h2>
<dl class="py class">
<dt id="com.vmware.vmc.orgs.sddcs.clusters.esxs_client.StorageSpec">
<em class="property">class </em><code class="sig-prename descclassname">com.vmware.vmc.orgs.sddcs.clusters.esxs_client.</code><code class="sig-name descname">StorageSpec</code><span class="sig-paren">(</span><em class="sig-param"><span class="n">config</span></em><span class="sig-paren">)</span><a class="headerlink" href="#com.vmware.vmc.orgs.sddcs.clusters.esxs_client.StorageSpec" 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.VapiInterface</span></code></p>
<dl class="field-list simple">
<dt class="field-odd">Parameters</dt>
<dd class="field-odd"><p><strong>config</strong> (<code class="xref py py-class docutils literal notranslate"><span class="pre">vmware.vapi.bindings.stub.StubConfiguration</span></code>) Configuration to be used for creating the stub.</p>
</dd>
</dl>
<dl class="py method">
<dt id="com.vmware.vmc.orgs.sddcs.clusters.esxs_client.StorageSpec.get_storage_specs">
<code class="sig-name descname">get_storage_specs</code><span class="sig-paren">(</span><em class="sig-param"><span class="n">org</span></em>, <em class="sig-param"><span class="n">sddc</span></em>, <em class="sig-param"><span class="n">cluster</span></em>, <em class="sig-param"><span class="n">esx</span></em><span class="sig-paren">)</span><a class="headerlink" href="#com.vmware.vmc.orgs.sddcs.clusters.esxs_client.StorageSpec.get_storage_specs" title="Permalink to this definition"></a></dt>
<dd><p>Get storage specs for a host.</p>
<dl class="field-list simple">
<dt class="field-odd">Parameters</dt>
<dd class="field-odd"><ul class="simple">
<li><p><strong>org</strong> (<code class="xref py py-class docutils literal notranslate"><span class="pre">str</span></code>) Organization identifier (required)</p></li>
<li><p><strong>sddc</strong> (<code class="xref py py-class docutils literal notranslate"><span class="pre">str</span></code>) Sddc identifier (required)</p></li>
<li><p><strong>cluster</strong> (<code class="xref py py-class docutils literal notranslate"><span class="pre">str</span></code>) cluster identifier (required)</p></li>
<li><p><strong>esx</strong> (<code class="xref py py-class docutils literal notranslate"><span class="pre">str</span></code>) esx identifier (required)</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">list</span></code> of <a class="reference internal" href="com.vmware.vmc.html#com.vmware.vmc.model_client.VsanDiskgroupMapping" title="com.vmware.vmc.model_client.VsanDiskgroupMapping"><code class="xref py py-class docutils literal notranslate"><span class="pre">com.vmware.vmc.model_client.VsanDiskgroupMapping</span></code></a></p>
</dd>
<dt class="field-odd">Returns</dt>
<dd class="field-odd"><p></p>
</dd>
<dt class="field-even">Raise</dt>
<dd class="field-even"><p><code class="xref py py-class docutils literal notranslate"><span class="pre">com.vmware.vapi.std.errors_client.Unauthenticated</span></code>
Unauthorized</p>
</dd>
<dt class="field-odd">Raise</dt>
<dd class="field-odd"><p><code class="xref py py-class docutils literal notranslate"><span class="pre">com.vmware.vapi.std.errors_client.InvalidRequest</span></code>
Invalid or missing parameters</p>
</dd>
<dt class="field-even">Raise</dt>
<dd class="field-even"><p><code class="xref py py-class docutils literal notranslate"><span class="pre">com.vmware.vapi.std.errors_client.Unauthorized</span></code>
Forbidden</p>
</dd>
</dl>
</dd></dl>
</dd></dl>
<dl class="py class">
<dt id="com.vmware.vmc.orgs.sddcs.clusters.esxs_client.StubFactory">
<em class="property">class </em><code class="sig-prename descclassname">com.vmware.vmc.orgs.sddcs.clusters.esxs_client.</code><code class="sig-name descname">StubFactory</code><span class="sig-paren">(</span><em class="sig-param"><span class="n">stub_config</span></em><span class="sig-paren">)</span><a class="headerlink" href="#com.vmware.vmc.orgs.sddcs.clusters.esxs_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>
</div>
<div class="section" id="module-com.vmware.vmc.orgs.sddcs.clusters.msft_licensing_client">
<span id="com-vmware-vmc-orgs-sddcs-clusters-msft-licensing-client-module"></span><h2>com.vmware.vmc.orgs.sddcs.clusters.msft_licensing_client module<a class="headerlink" href="#module-com.vmware.vmc.orgs.sddcs.clusters.msft_licensing_client" title="Permalink to this headline"></a></h2>

View File

@ -7,7 +7,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>com.vmware.vmc.orgs.sddcs package &mdash; vmc 1.29.0 documentation</title>
<title>com.vmware.vmc.orgs.sddcs package &mdash; vmc 1.30.0 documentation</title>
@ -61,7 +61,7 @@
<div class="version">
1.29.0
1.30.0
</div>
@ -183,6 +183,7 @@
<li class="toctree-l1"><a class="reference internal" href="com.vmware.vmc.orgs.sddcs.clusters.html">com.vmware.vmc.orgs.sddcs.clusters package</a><ul>
<li class="toctree-l2"><a class="reference internal" href="com.vmware.vmc.orgs.sddcs.clusters.html#submodules">Submodules</a></li>
<li class="toctree-l2"><a class="reference internal" href="com.vmware.vmc.orgs.sddcs.clusters.html#module-com.vmware.vmc.orgs.sddcs.clusters.config_client">com.vmware.vmc.orgs.sddcs.clusters.config_client module</a></li>
<li class="toctree-l2"><a class="reference internal" href="com.vmware.vmc.orgs.sddcs.clusters.html#module-com.vmware.vmc.orgs.sddcs.clusters.esxs_client">com.vmware.vmc.orgs.sddcs.clusters.esxs_client module</a></li>
<li class="toctree-l2"><a class="reference internal" href="com.vmware.vmc.orgs.sddcs.clusters.html#module-com.vmware.vmc.orgs.sddcs.clusters.msft_licensing_client">com.vmware.vmc.orgs.sddcs.clusters.msft_licensing_client module</a></li>
</ul>
</li>

View File

@ -7,7 +7,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Interface definition language to python mapping for enumerated types &mdash; vmc 1.29.0 documentation</title>
<title>Interface definition language to python mapping for enumerated types &mdash; vmc 1.30.0 documentation</title>
@ -59,7 +59,7 @@
<div class="version">
1.29.0
1.30.0
</div>

View File

@ -7,7 +7,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Index &mdash; vmc 1.29.0 documentation</title>
<title>Index &mdash; vmc 1.30.0 documentation</title>
@ -59,7 +59,7 @@
<div class="version">
1.29.0
1.30.0
</div>
@ -383,14 +383,21 @@
</li>
</ul></li>
<li>
com.vmware.vmc.orgs.sddcs.clusters.esxs_client
<ul>
<li><a href="com.vmware.vmc.orgs.sddcs.clusters.html#module-com.vmware.vmc.orgs.sddcs.clusters.esxs_client">module</a>
</li>
</ul></li>
</ul></td>
<td style="width: 33%; vertical-align: top;"><ul>
<li>
com.vmware.vmc.orgs.sddcs.clusters.msft_licensing_client
<ul>
<li><a href="com.vmware.vmc.orgs.sddcs.clusters.html#module-com.vmware.vmc.orgs.sddcs.clusters.msft_licensing_client">module</a>
</li>
</ul></li>
</ul></td>
<td style="width: 33%; vertical-align: top;"><ul>
<li>
com.vmware.vmc.orgs.sddcs.clusters_client
@ -630,6 +637,16 @@
<table style="width: 100%" class="indextable genindextable"><tr>
<td style="width: 33%; vertical-align: top;"><ul>
<li><a href="com.vmware.vmc.html#com.vmware.vmc.model_client.EbsBackedVsanConfig">EbsBackedVsanConfig (class in com.vmware.vmc.model_client)</a>
</li>
<li><a href="com.vmware.vmc.orgs.html#com.vmware.vmc.orgs.sddcs_client.Enablements.enable_disable_addon">enable_disable_addon() (com.vmware.vmc.orgs.sddcs_client.Enablements method)</a>
</li>
<li><a href="com.vmware.vmc.orgs.html#com.vmware.vmc.orgs.sddcs_client.Enablements.ENABLE_DISABLE_ADDON_ACTION_DISABLE">ENABLE_DISABLE_ADDON_ACTION_DISABLE (com.vmware.vmc.orgs.sddcs_client.Enablements attribute)</a>
</li>
<li><a href="com.vmware.vmc.orgs.html#com.vmware.vmc.orgs.sddcs_client.Enablements.ENABLE_DISABLE_ADDON_ACTION_ENABLE">ENABLE_DISABLE_ADDON_ACTION_ENABLE (com.vmware.vmc.orgs.sddcs_client.Enablements attribute)</a>
</li>
<li><a href="com.vmware.vmc.html#com.vmware.vmc.model_client.EnablementInfo">EnablementInfo (class in com.vmware.vmc.model_client)</a>
</li>
<li><a href="com.vmware.vmc.orgs.html#com.vmware.vmc.orgs.sddcs_client.Enablements">Enablements (class in com.vmware.vmc.orgs.sddcs_client)</a>
</li>
<li><a href="com.vmware.vmc.html#com.vmware.vmc.model_client.Vpn.ENCRYPTION_AES">ENCRYPTION_AES (com.vmware.vmc.model_client.Vpn attribute)</a>
</li>
@ -647,12 +664,12 @@
</li>
<li><a href="com.vmware.vmc.html#com.vmware.vmc.model_client.ErrorResponse">ErrorResponse (class in com.vmware.vmc.model_client)</a>
</li>
</ul></td>
<td style="width: 33%; vertical-align: top;"><ul>
<li><a href="com.vmware.vmc.html#com.vmware.vmc.model_client.EsxHost.ESX_STATE_ADDING_TO_VCENTER">ESX_STATE_ADDING_TO_VCENTER (com.vmware.vmc.model_client.EsxHost attribute)</a>
</li>
<li><a href="com.vmware.vmc.html#com.vmware.vmc.model_client.EsxHost.ESX_STATE_DELETED">ESX_STATE_DELETED (com.vmware.vmc.model_client.EsxHost attribute)</a>
</li>
</ul></td>
<td style="width: 33%; vertical-align: top;"><ul>
<li><a href="com.vmware.vmc.html#com.vmware.vmc.model_client.EsxHost.ESX_STATE_DELETING">ESX_STATE_DELETING (com.vmware.vmc.model_client.EsxHost attribute)</a>
</li>
<li><a href="com.vmware.vmc.html#com.vmware.vmc.model_client.EsxHost.ESX_STATE_DELETING_FROM_VCENTER">ESX_STATE_DELETING_FROM_VCENTER (com.vmware.vmc.model_client.EsxHost attribute)</a>
@ -758,6 +775,8 @@
<li><a href="com.vmware.vmc.html#com.vmware.vmc.orgs_client.PaymentMethods.get_org_payment_methods">get_org_payment_methods() (com.vmware.vmc.orgs_client.PaymentMethods method)</a>
</li>
<li><a href="vmware.vapi.vmc.html#vmware.vapi.vmc.csp_filter.CSPSecurityContextFilter.get_security_context">get_security_context() (vmware.vapi.vmc.csp_filter.CSPSecurityContextFilter method)</a>
</li>
<li><a href="com.vmware.vmc.orgs.sddcs.clusters.html#com.vmware.vmc.orgs.sddcs.clusters.esxs_client.StorageSpec.get_storage_specs">get_storage_specs() (com.vmware.vmc.orgs.sddcs.clusters.esxs_client.StorageSpec method)</a>
</li>
<li><a href="com.vmware.vmc.html#com.vmware.vmc.model_client.GlcmBundle">GlcmBundle (class in com.vmware.vmc.model_client)</a>
</li>
@ -837,6 +856,8 @@
<ul>
<li><a href="com.vmware.vmc.orgs.sddcs.html#com.vmware.vmc.orgs.sddcs.addons_client.Credentials.list">(com.vmware.vmc.orgs.sddcs.addons_client.Credentials method)</a>
</li>
<li><a href="com.vmware.vmc.orgs.html#com.vmware.vmc.orgs.sddcs_client.Enablements.list">(com.vmware.vmc.orgs.sddcs_client.Enablements method)</a>
</li>
<li><a href="com.vmware.vmc.orgs.html#com.vmware.vmc.orgs.subscriptions_client.OfferInstances.list">(com.vmware.vmc.orgs.subscriptions_client.OfferInstances method)</a>
</li>
@ -878,6 +899,12 @@
<li><a href="com.vmware.vmc.html#com.vmware.vmc.model_client.ManagementGatewayTemplate">ManagementGatewayTemplate (class in com.vmware.vmc.model_client)</a>
</li>
<li><a href="com.vmware.vmc.orgs.html#com.vmware.vmc.orgs.account_link_client.MapCustomerZones">MapCustomerZones (class in com.vmware.vmc.orgs.account_link_client)</a>
</li>
<li><a href="com.vmware.vmc.html#com.vmware.vmc.model_client.VsanDiskgroupMapping.MAPPING_TYPE_CANONICAL">MAPPING_TYPE_CANONICAL (com.vmware.vmc.model_client.VsanDiskgroupMapping attribute)</a>
</li>
<li><a href="com.vmware.vmc.html#com.vmware.vmc.model_client.VsanDiskgroupMapping.MAPPING_TYPE_SERIAL">MAPPING_TYPE_SERIAL (com.vmware.vmc.model_client.VsanDiskgroupMapping attribute)</a>
</li>
<li><a href="com.vmware.vmc.html#com.vmware.vmc.model_client.VsanDiskgroupMapping.MAPPING_TYPE_SYMMETRIC">MAPPING_TYPE_SYMMETRIC (com.vmware.vmc.model_client.VsanDiskgroupMapping attribute)</a>
</li>
<li><a href="com.vmware.vmc.html#com.vmware.vmc.model_client.MapZonesRequest">MapZonesRequest (class in com.vmware.vmc.model_client)</a>
</li>
@ -914,6 +941,8 @@
<li><a href="com.vmware.vmc.orgs.sddcs.clusters.html#module-com.vmware.vmc.orgs.sddcs.clusters">com.vmware.vmc.orgs.sddcs.clusters</a>
</li>
<li><a href="com.vmware.vmc.orgs.sddcs.clusters.html#module-com.vmware.vmc.orgs.sddcs.clusters.config_client">com.vmware.vmc.orgs.sddcs.clusters.config_client</a>
</li>
<li><a href="com.vmware.vmc.orgs.sddcs.clusters.html#module-com.vmware.vmc.orgs.sddcs.clusters.esxs_client">com.vmware.vmc.orgs.sddcs.clusters.esxs_client</a>
</li>
<li><a href="com.vmware.vmc.orgs.sddcs.clusters.html#module-com.vmware.vmc.orgs.sddcs.clusters.msft_licensing_client">com.vmware.vmc.orgs.sddcs.clusters.msft_licensing_client</a>
</li>
@ -1312,14 +1341,14 @@
</li>
<li><a href="com.vmware.vmc.html#com.vmware.vmc.model_client.SupportWindow.START_DAY_WEDNESDAY">START_DAY_WEDNESDAY (com.vmware.vmc.model_client.SupportWindow attribute)</a>
</li>
</ul></td>
<td style="width: 33%; vertical-align: top;"><ul>
<li><a href="com.vmware.vmc.html#com.vmware.vmc.model_client.AwsCustomerConnectedAccount.STATE_ACTIVE">STATE_ACTIVE (com.vmware.vmc.model_client.AwsCustomerConnectedAccount attribute)</a>
<ul>
<li><a href="com.vmware.vmc.html#com.vmware.vmc.model_client.AwsSddcConnection.STATE_ACTIVE">(com.vmware.vmc.model_client.AwsSddcConnection attribute)</a>
</li>
</ul></li>
</ul></td>
<td style="width: 33%; vertical-align: top;"><ul>
<li><a href="com.vmware.vmc.html#com.vmware.vmc.model_client.SddcTemplate.STATE_APPLIED">STATE_APPLIED (com.vmware.vmc.model_client.SddcTemplate attribute)</a>
</li>
<li><a href="com.vmware.vmc.html#com.vmware.vmc.model_client.SddcTemplate.STATE_AVAILABLE">STATE_AVAILABLE (com.vmware.vmc.model_client.SddcTemplate attribute)</a>
@ -1393,6 +1422,8 @@
<li><a href="com.vmware.vmc.html#com.vmware.vmc.model_client.SubscriptionDetails.STATUS_TERMINATED">STATUS_TERMINATED (com.vmware.vmc.model_client.SubscriptionDetails attribute)</a>
</li>
<li><a href="com.vmware.vmc.html#com.vmware.vmc.model_client.SubscriptionDetails.STATUS_UKNOWN">STATUS_UKNOWN (com.vmware.vmc.model_client.SubscriptionDetails attribute)</a>
</li>
<li><a href="com.vmware.vmc.orgs.sddcs.clusters.html#com.vmware.vmc.orgs.sddcs.clusters.esxs_client.StorageSpec">StorageSpec (class in com.vmware.vmc.orgs.sddcs.clusters.esxs_client)</a>
</li>
<li><a href="com.vmware.vmc.html#com.vmware.vmc.model_client.StubFactory">StubFactory (class in com.vmware.vmc.model_client)</a>
@ -1406,6 +1437,8 @@
<li><a href="com.vmware.vmc.orgs.sddcs.html#com.vmware.vmc.orgs.sddcs.addons_client.StubFactory">(class in com.vmware.vmc.orgs.sddcs.addons_client)</a>
</li>
<li><a href="com.vmware.vmc.orgs.sddcs.clusters.html#com.vmware.vmc.orgs.sddcs.clusters.config_client.StubFactory">(class in com.vmware.vmc.orgs.sddcs.clusters.config_client)</a>
</li>
<li><a href="com.vmware.vmc.orgs.sddcs.clusters.html#com.vmware.vmc.orgs.sddcs.clusters.esxs_client.StubFactory">(class in com.vmware.vmc.orgs.sddcs.clusters.esxs_client)</a>
</li>
<li><a href="com.vmware.vmc.orgs.sddcs.clusters.html#com.vmware.vmc.orgs.sddcs.clusters.msft_licensing_client.StubFactory">(class in com.vmware.vmc.orgs.sddcs.clusters.msft_licensing_client)</a>
</li>
@ -1588,10 +1621,10 @@
</li>
<li><a href="com.vmware.vmc.html#com.vmware.vmc.model_client.FirewallRuleScope.VNIC_GROUP_IDS_VNIC_INDEX_3">VNIC_GROUP_IDS_VNIC_INDEX_3 (com.vmware.vmc.model_client.FirewallRuleScope attribute)</a>
</li>
</ul></td>
<td style="width: 33%; vertical-align: top;"><ul>
<li><a href="com.vmware.vmc.html#com.vmware.vmc.model_client.FirewallRuleScope.VNIC_GROUP_IDS_VNIC_INDEX_4">VNIC_GROUP_IDS_VNIC_INDEX_4 (com.vmware.vmc.model_client.FirewallRuleScope attribute)</a>
</li>
</ul></td>
<td style="width: 33%; vertical-align: top;"><ul>
<li><a href="com.vmware.vmc.html#com.vmware.vmc.model_client.FirewallRuleScope.VNIC_GROUP_IDS_VNIC_INDEX_5">VNIC_GROUP_IDS_VNIC_INDEX_5 (com.vmware.vmc.model_client.FirewallRuleScope attribute)</a>
</li>
<li><a href="com.vmware.vmc.html#com.vmware.vmc.model_client.FirewallRuleScope.VNIC_GROUP_IDS_VNIC_INDEX_6">VNIC_GROUP_IDS_VNIC_INDEX_6 (com.vmware.vmc.model_client.FirewallRuleScope attribute)</a>
@ -1623,6 +1656,8 @@
<li><a href="com.vmware.vmc.html#com.vmware.vmc.model_client.VsanClusterReconfigConstraints">VsanClusterReconfigConstraints (class in com.vmware.vmc.model_client)</a>
</li>
<li><a href="com.vmware.vmc.html#com.vmware.vmc.model_client.VsanConfigConstraints">VsanConfigConstraints (class in com.vmware.vmc.model_client)</a>
</li>
<li><a href="com.vmware.vmc.html#com.vmware.vmc.model_client.VsanDiskgroupMapping">VsanDiskgroupMapping (class in com.vmware.vmc.model_client)</a>
</li>
<li><a href="com.vmware.vmc.html#com.vmware.vmc.model_client.VsanEncryptionConfig">VsanEncryptionConfig (class in com.vmware.vmc.model_client)</a>
</li>

View File

@ -7,7 +7,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Welcome to vmcs documentation! &mdash; vmc 1.29.0 documentation</title>
<title>Welcome to vmcs documentation! &mdash; vmc 1.30.0 documentation</title>
@ -60,7 +60,7 @@
<div class="version">
1.29.0
1.30.0
</div>

Binary file not shown.

View File

@ -7,7 +7,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Python Module Index &mdash; vmc 1.29.0 documentation</title>
<title>Python Module Index &mdash; vmc 1.30.0 documentation</title>
@ -62,7 +62,7 @@
<div class="version">
1.29.0
1.30.0
</div>
@ -235,6 +235,11 @@
<td>&#160;&#160;&#160;
<a href="com.vmware.vmc.orgs.sddcs.clusters.html#module-com.vmware.vmc.orgs.sddcs.clusters.config_client"><code class="xref">com.vmware.vmc.orgs.sddcs.clusters.config_client</code></a></td><td>
<em></em></td></tr>
<tr class="cg-1">
<td></td>
<td>&#160;&#160;&#160;
<a href="com.vmware.vmc.orgs.sddcs.clusters.html#module-com.vmware.vmc.orgs.sddcs.clusters.esxs_client"><code class="xref">com.vmware.vmc.orgs.sddcs.clusters.esxs_client</code></a></td><td>
<em></em></td></tr>
<tr class="cg-1">
<td></td>
<td>&#160;&#160;&#160;

View File

@ -7,7 +7,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Search &mdash; vmc 1.29.0 documentation</title>
<title>Search &mdash; vmc 1.30.0 documentation</title>
@ -61,7 +61,7 @@
<div class="version">
1.29.0
1.30.0
</div>

File diff suppressed because one or more lines are too long

View File

@ -7,7 +7,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>vmware package &mdash; vmc 1.29.0 documentation</title>
<title>vmware package &mdash; vmc 1.30.0 documentation</title>
@ -61,7 +61,7 @@
<div class="version">
1.29.0
1.30.0
</div>

View File

@ -7,7 +7,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>vmware.vapi package &mdash; vmc 1.29.0 documentation</title>
<title>vmware.vapi package &mdash; vmc 1.30.0 documentation</title>
@ -61,7 +61,7 @@
<div class="version">
1.29.0
1.30.0
</div>

View File

@ -7,7 +7,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>vmware.vapi.vmc package &mdash; vmc 1.29.0 documentation</title>
<title>vmware.vapi.vmc package &mdash; vmc 1.30.0 documentation</title>
@ -60,7 +60,7 @@
<div class="version">
1.29.0
1.30.0
</div>