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

API doc for VMware Cloud on AWS 1.5 release

This commit is contained in:
het 2018-09-20 14:27:25 -07:00
parent 686348bd52
commit 2194426680
150 changed files with 6701 additions and 1750 deletions

View File

@ -24,6 +24,14 @@ com.vmware.vmc.orgs.account\_link\_client module
:undoc-members:
:show-inheritance:
com.vmware.vmc.orgs.reservations\_client module
-----------------------------------------------
.. automodule:: com.vmware.vmc.orgs.reservations_client
:members:
:undoc-members:
:show-inheritance:
com.vmware.vmc.orgs.sddcs\_client module
----------------------------------------
@ -32,4 +40,12 @@ com.vmware.vmc.orgs.sddcs\_client module
:undoc-members:
:show-inheritance:
com.vmware.vmc.orgs.tbrs\_client module
---------------------------------------
.. automodule:: com.vmware.vmc.orgs.tbrs_client
:members:
:undoc-members:
:show-inheritance:

View File

@ -24,10 +24,10 @@ com.vmware.vmc.orgs.sddcs.dns\_client module
:undoc-members:
:show-inheritance:
com.vmware.vmc.orgs.sddcs.mgw\_client module
--------------------------------------------
com.vmware.vmc.orgs.sddcs.networking\_client module
---------------------------------------------------
.. automodule:: com.vmware.vmc.orgs.sddcs.mgw_client
.. automodule:: com.vmware.vmc.orgs.sddcs.networking_client
:members:
:undoc-members:
:show-inheritance:

View File

@ -1,5 +1,5 @@
.. VMware Cloud on AWS Console API documentation master file, created by
sphinx-quickstart on Tue May 22 21:36:26 2018.
sphinx-quickstart on Wed Sep 19 04:30:03 2018.
You can adapt this file completely to your liking, but it should at least
contain the root `toctree` directive.

View File

@ -81,6 +81,10 @@ div.sphinxsidebar input {
font-size: 1em;
}
div.sphinxsidebar #searchbox form.search {
overflow: hidden;
}
div.sphinxsidebar #searchbox input[type="text"] {
float: left;
width: 80%;
@ -427,6 +431,13 @@ table.field-list td, table.field-list th {
hyphens: manual;
}
/* -- hlist styles ---------------------------------------------------------- */
table.hlist td {
vertical-align: top;
}
/* -- other body styles ----------------------------------------------------- */
ol.arabic {

File diff suppressed because one or more lines are too long

View File

@ -150,7 +150,9 @@ var Documentation = {
this.fixFirefoxAnchorBug();
this.highlightSearchWords();
this.initIndexTable();
if (DOCUMENTATION_OPTIONS.NAVIGATION_WITH_KEYS) {
this.initOnKeyListeners();
}
},
/**

View File

@ -1,9 +1,296 @@
var DOCUMENTATION_OPTIONS = {
URL_ROOT: '',
VERSION: '1.2.0',
URL_ROOT: document.getElementById("documentation_options").getAttribute('data-url_root'),
VERSION: '1.3.0',
LANGUAGE: 'en',
COLLAPSE_INDEX: false,
FILE_SUFFIX: '.html',
HAS_SOURCE: true,
SOURCELINK_SUFFIX: '.txt'
SOURCELINK_SUFFIX: '.txt',
NAVIGATION_WITH_KEYS: false,
SEARCH_LANGUAGE_STOP_WORDS: ["a","and","are","as","at","be","but","by","for","if","in","into","is","it","near","no","not","of","on","or","such","that","the","their","then","there","these","they","this","to","was","will","with"]
};
/* Non-minified version JS is _stemmer.js if file is provided */
/**
* Porter Stemmer
*/
var Stemmer = function() {
var step2list = {
ational: 'ate',
tional: 'tion',
enci: 'ence',
anci: 'ance',
izer: 'ize',
bli: 'ble',
alli: 'al',
entli: 'ent',
eli: 'e',
ousli: 'ous',
ization: 'ize',
ation: 'ate',
ator: 'ate',
alism: 'al',
iveness: 'ive',
fulness: 'ful',
ousness: 'ous',
aliti: 'al',
iviti: 'ive',
biliti: 'ble',
logi: 'log'
};
var step3list = {
icate: 'ic',
ative: '',
alize: 'al',
iciti: 'ic',
ical: 'ic',
ful: '',
ness: ''
};
var c = "[^aeiou]"; // consonant
var v = "[aeiouy]"; // vowel
var C = c + "[^aeiouy]*"; // consonant sequence
var V = v + "[aeiou]*"; // vowel sequence
var mgr0 = "^(" + C + ")?" + V + C; // [C]VC... is m>0
var meq1 = "^(" + C + ")?" + V + C + "(" + V + ")?$"; // [C]VC[V] is m=1
var mgr1 = "^(" + C + ")?" + V + C + V + C; // [C]VCVC... is m>1
var s_v = "^(" + C + ")?" + v; // vowel in stem
this.stemWord = function (w) {
var stem;
var suffix;
var firstch;
var origword = w;
if (w.length < 3)
return w;
var re;
var re2;
var re3;
var re4;
firstch = w.substr(0,1);
if (firstch == "y")
w = firstch.toUpperCase() + w.substr(1);
// Step 1a
re = /^(.+?)(ss|i)es$/;
re2 = /^(.+?)([^s])s$/;
if (re.test(w))
w = w.replace(re,"$1$2");
else if (re2.test(w))
w = w.replace(re2,"$1$2");
// Step 1b
re = /^(.+?)eed$/;
re2 = /^(.+?)(ed|ing)$/;
if (re.test(w)) {
var fp = re.exec(w);
re = new RegExp(mgr0);
if (re.test(fp[1])) {
re = /.$/;
w = w.replace(re,"");
}
}
else if (re2.test(w)) {
var fp = re2.exec(w);
stem = fp[1];
re2 = new RegExp(s_v);
if (re2.test(stem)) {
w = stem;
re2 = /(at|bl|iz)$/;
re3 = new RegExp("([^aeiouylsz])\\1$");
re4 = new RegExp("^" + C + v + "[^aeiouwxy]$");
if (re2.test(w))
w = w + "e";
else if (re3.test(w)) {
re = /.$/;
w = w.replace(re,"");
}
else if (re4.test(w))
w = w + "e";
}
}
// Step 1c
re = /^(.+?)y$/;
if (re.test(w)) {
var fp = re.exec(w);
stem = fp[1];
re = new RegExp(s_v);
if (re.test(stem))
w = stem + "i";
}
// Step 2
re = /^(.+?)(ational|tional|enci|anci|izer|bli|alli|entli|eli|ousli|ization|ation|ator|alism|iveness|fulness|ousness|aliti|iviti|biliti|logi)$/;
if (re.test(w)) {
var fp = re.exec(w);
stem = fp[1];
suffix = fp[2];
re = new RegExp(mgr0);
if (re.test(stem))
w = stem + step2list[suffix];
}
// Step 3
re = /^(.+?)(icate|ative|alize|iciti|ical|ful|ness)$/;
if (re.test(w)) {
var fp = re.exec(w);
stem = fp[1];
suffix = fp[2];
re = new RegExp(mgr0);
if (re.test(stem))
w = stem + step3list[suffix];
}
// Step 4
re = /^(.+?)(al|ance|ence|er|ic|able|ible|ant|ement|ment|ent|ou|ism|ate|iti|ous|ive|ize)$/;
re2 = /^(.+?)(s|t)(ion)$/;
if (re.test(w)) {
var fp = re.exec(w);
stem = fp[1];
re = new RegExp(mgr1);
if (re.test(stem))
w = stem;
}
else if (re2.test(w)) {
var fp = re2.exec(w);
stem = fp[1] + fp[2];
re2 = new RegExp(mgr1);
if (re2.test(stem))
w = stem;
}
// Step 5
re = /^(.+?)e$/;
if (re.test(w)) {
var fp = re.exec(w);
stem = fp[1];
re = new RegExp(mgr1);
re2 = new RegExp(meq1);
re3 = new RegExp("^" + C + v + "[^aeiouwxy]$");
if (re.test(stem) || (re2.test(stem) && !(re3.test(stem))))
w = stem;
}
re = /ll$/;
re2 = new RegExp(mgr1);
if (re.test(w) && re2.test(w)) {
re = /.$/;
w = w.replace(re,"");
}
// and turn initial Y back to y
if (firstch == "y")
w = firstch.toLowerCase() + w.substr(1);
return w;
}
}
var splitChars = (function() {
var result = {};
var singles = [96, 180, 187, 191, 215, 247, 749, 885, 903, 907, 909, 930, 1014, 1648,
1748, 1809, 2416, 2473, 2481, 2526, 2601, 2609, 2612, 2615, 2653, 2702,
2706, 2729, 2737, 2740, 2857, 2865, 2868, 2910, 2928, 2948, 2961, 2971,
2973, 3085, 3089, 3113, 3124, 3213, 3217, 3241, 3252, 3295, 3341, 3345,
3369, 3506, 3516, 3633, 3715, 3721, 3736, 3744, 3748, 3750, 3756, 3761,
3781, 3912, 4239, 4347, 4681, 4695, 4697, 4745, 4785, 4799, 4801, 4823,
4881, 5760, 5901, 5997, 6313, 7405, 8024, 8026, 8028, 8030, 8117, 8125,
8133, 8181, 8468, 8485, 8487, 8489, 8494, 8527, 11311, 11359, 11687, 11695,
11703, 11711, 11719, 11727, 11735, 12448, 12539, 43010, 43014, 43019, 43587,
43696, 43713, 64286, 64297, 64311, 64317, 64319, 64322, 64325, 65141];
var i, j, start, end;
for (i = 0; i < singles.length; i++) {
result[singles[i]] = true;
}
var ranges = [[0, 47], [58, 64], [91, 94], [123, 169], [171, 177], [182, 184], [706, 709],
[722, 735], [741, 747], [751, 879], [888, 889], [894, 901], [1154, 1161],
[1318, 1328], [1367, 1368], [1370, 1376], [1416, 1487], [1515, 1519], [1523, 1568],
[1611, 1631], [1642, 1645], [1750, 1764], [1767, 1773], [1789, 1790], [1792, 1807],
[1840, 1868], [1958, 1968], [1970, 1983], [2027, 2035], [2038, 2041], [2043, 2047],
[2070, 2073], [2075, 2083], [2085, 2087], [2089, 2307], [2362, 2364], [2366, 2383],
[2385, 2391], [2402, 2405], [2419, 2424], [2432, 2436], [2445, 2446], [2449, 2450],
[2483, 2485], [2490, 2492], [2494, 2509], [2511, 2523], [2530, 2533], [2546, 2547],
[2554, 2564], [2571, 2574], [2577, 2578], [2618, 2648], [2655, 2661], [2672, 2673],
[2677, 2692], [2746, 2748], [2750, 2767], [2769, 2783], [2786, 2789], [2800, 2820],
[2829, 2830], [2833, 2834], [2874, 2876], [2878, 2907], [2914, 2917], [2930, 2946],
[2955, 2957], [2966, 2968], [2976, 2978], [2981, 2983], [2987, 2989], [3002, 3023],
[3025, 3045], [3059, 3076], [3130, 3132], [3134, 3159], [3162, 3167], [3170, 3173],
[3184, 3191], [3199, 3204], [3258, 3260], [3262, 3293], [3298, 3301], [3312, 3332],
[3386, 3388], [3390, 3423], [3426, 3429], [3446, 3449], [3456, 3460], [3479, 3481],
[3518, 3519], [3527, 3584], [3636, 3647], [3655, 3663], [3674, 3712], [3717, 3718],
[3723, 3724], [3726, 3731], [3752, 3753], [3764, 3772], [3774, 3775], [3783, 3791],
[3802, 3803], [3806, 3839], [3841, 3871], [3892, 3903], [3949, 3975], [3980, 4095],
[4139, 4158], [4170, 4175], [4182, 4185], [4190, 4192], [4194, 4196], [4199, 4205],
[4209, 4212], [4226, 4237], [4250, 4255], [4294, 4303], [4349, 4351], [4686, 4687],
[4702, 4703], [4750, 4751], [4790, 4791], [4806, 4807], [4886, 4887], [4955, 4968],
[4989, 4991], [5008, 5023], [5109, 5120], [5741, 5742], [5787, 5791], [5867, 5869],
[5873, 5887], [5906, 5919], [5938, 5951], [5970, 5983], [6001, 6015], [6068, 6102],
[6104, 6107], [6109, 6111], [6122, 6127], [6138, 6159], [6170, 6175], [6264, 6271],
[6315, 6319], [6390, 6399], [6429, 6469], [6510, 6511], [6517, 6527], [6572, 6592],
[6600, 6607], [6619, 6655], [6679, 6687], [6741, 6783], [6794, 6799], [6810, 6822],
[6824, 6916], [6964, 6980], [6988, 6991], [7002, 7042], [7073, 7085], [7098, 7167],
[7204, 7231], [7242, 7244], [7294, 7400], [7410, 7423], [7616, 7679], [7958, 7959],
[7966, 7967], [8006, 8007], [8014, 8015], [8062, 8063], [8127, 8129], [8141, 8143],
[8148, 8149], [8156, 8159], [8173, 8177], [8189, 8303], [8306, 8307], [8314, 8318],
[8330, 8335], [8341, 8449], [8451, 8454], [8456, 8457], [8470, 8472], [8478, 8483],
[8506, 8507], [8512, 8516], [8522, 8525], [8586, 9311], [9372, 9449], [9472, 10101],
[10132, 11263], [11493, 11498], [11503, 11516], [11518, 11519], [11558, 11567],
[11622, 11630], [11632, 11647], [11671, 11679], [11743, 11822], [11824, 12292],
[12296, 12320], [12330, 12336], [12342, 12343], [12349, 12352], [12439, 12444],
[12544, 12548], [12590, 12592], [12687, 12689], [12694, 12703], [12728, 12783],
[12800, 12831], [12842, 12880], [12896, 12927], [12938, 12976], [12992, 13311],
[19894, 19967], [40908, 40959], [42125, 42191], [42238, 42239], [42509, 42511],
[42540, 42559], [42592, 42593], [42607, 42622], [42648, 42655], [42736, 42774],
[42784, 42785], [42889, 42890], [42893, 43002], [43043, 43055], [43062, 43071],
[43124, 43137], [43188, 43215], [43226, 43249], [43256, 43258], [43260, 43263],
[43302, 43311], [43335, 43359], [43389, 43395], [43443, 43470], [43482, 43519],
[43561, 43583], [43596, 43599], [43610, 43615], [43639, 43641], [43643, 43647],
[43698, 43700], [43703, 43704], [43710, 43711], [43715, 43738], [43742, 43967],
[44003, 44015], [44026, 44031], [55204, 55215], [55239, 55242], [55292, 55295],
[57344, 63743], [64046, 64047], [64110, 64111], [64218, 64255], [64263, 64274],
[64280, 64284], [64434, 64466], [64830, 64847], [64912, 64913], [64968, 65007],
[65020, 65135], [65277, 65295], [65306, 65312], [65339, 65344], [65371, 65381],
[65471, 65473], [65480, 65481], [65488, 65489], [65496, 65497]];
for (i = 0; i < ranges.length; i++) {
start = ranges[i][0];
end = ranges[i][1];
for (j = start; j <= end; j++) {
result[j] = true;
}
}
return result;
})();
function splitQuery(query) {
var result = [];
var start = -1;
for (var i = 0; i < query.length; i++) {
if (splitChars[query.charCodeAt(i)]) {
if (start !== -1) {
result.push(query.slice(start, i));
start = -1;
}
} else if (start === -1) {
start = i;
}
}
if (start !== -1) {
result.push(query.slice(start));
}
return result;
}

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -1 +1,3 @@
require=function r(s,a,l){function c(i,n){if(!a[i]){if(!s[i]){var e="function"==typeof require&&require;if(!n&&e)return e(i,!0);if(u)return u(i,!0);var t=new Error("Cannot find module '"+i+"'");throw t.code="MODULE_NOT_FOUND",t}var o=a[i]={exports:{}};s[i][0].call(o.exports,function(n){var e=s[i][1][n];return c(e||n)},o,o.exports,r,s,a,l)}return a[i].exports}for(var u="function"==typeof require&&require,n=0;n<l.length;n++)c(l[n]);return c}({"sphinx-rtd-theme":[function(n,e,i){var jQuery="undefined"!=typeof window?window.jQuery:n("jquery");e.exports.ThemeNav={navBar:null,win:null,winScroll:!1,winResize:!1,linkScroll:!1,winPosition:0,winHeight:null,docHeight:null,isRunning:!1,enable:function(e){var i=this;"undefined"==typeof withStickNav&&(e=!0),i.isRunning||(i.isRunning=!0,jQuery(function(n){i.init(n),i.reset(),i.win.on("hashchange",i.reset),e&&i.win.on("scroll",function(){i.linkScroll||i.winScroll||(i.winScroll=!0,requestAnimationFrame(function(){i.onScroll()}))}),i.win.on("resize",function(){i.winResize||(i.winResize=!0,requestAnimationFrame(function(){i.onResize()}))}),i.onResize()}))},enableSticky:function(){this.enable(!0)},init:function(i){i(document);var t=this;this.navBar=i("div.wy-side-scroll:first"),this.win=i(window),i(document).on("click","[data-toggle='wy-nav-top']",function(){i("[data-toggle='wy-nav-shift']").toggleClass("shift"),i("[data-toggle='rst-versions']").toggleClass("shift")}).on("click",".wy-menu-vertical .current ul li a",function(){var n=i(this);i("[data-toggle='wy-nav-shift']").removeClass("shift"),i("[data-toggle='rst-versions']").toggleClass("shift"),t.toggleCurrent(n),t.hashChange()}).on("click","[data-toggle='rst-current-version']",function(){i("[data-toggle='rst-versions']").toggleClass("shift-up")}),i("table.docutils:not(.field-list,.footnote,.citation)").wrap("<div class='wy-table-responsive'></div>"),i("table.docutils.footnote").wrap("<div class='wy-table-responsive footnote'></div>"),i("table.docutils.citation").wrap("<div class='wy-table-responsive citation'></div>"),i(".wy-menu-vertical ul").not(".simple").siblings("a").each(function(){var e=i(this);expand=i('<span class="toctree-expand"></span>'),expand.on("click",function(n){return t.toggleCurrent(e),n.stopPropagation(),!1}),e.prepend(expand)})},reset:function(){var n=encodeURI(window.location.hash)||"#";try{var e=$(".wy-menu-vertical"),i=e.find('[href="'+n+'"]');if(0===i.length){var t=$('.document [id="'+n.substring(1)+'"]').closest("div.section");0===(i=e.find('[href="#'+t.attr("id")+'"]')).length&&(i=e.find('[href="#"]'))}0<i.length&&($(".wy-menu-vertical .current").removeClass("current"),i.addClass("current"),i.closest("li.toctree-l1").addClass("current"),i.closest("li.toctree-l1").parent().addClass("current"),i.closest("li.toctree-l1").addClass("current"),i.closest("li.toctree-l2").addClass("current"),i.closest("li.toctree-l3").addClass("current"),i.closest("li.toctree-l4").addClass("current"))}catch(o){console.log("Error expanding nav for anchor",o)}},onScroll:function(){this.winScroll=!1;var n=this.win.scrollTop(),e=n+this.winHeight,i=this.navBar.scrollTop()+(n-this.winPosition);n<0||e>this.docHeight||(this.navBar.scrollTop(i),this.winPosition=n)},onResize:function(){this.winResize=!1,this.winHeight=this.win.height(),this.docHeight=$(document).height()},hashChange:function(){this.linkScroll=!0,this.win.one("hashchange",function(){this.linkScroll=!1})},toggleCurrent:function(n){var e=n.closest("li");e.siblings("li.current").removeClass("current"),e.siblings().find("li.current").removeClass("current"),e.find("> ul li.current").removeClass("current"),e.toggleClass("current")}},"undefined"!=typeof window&&(window.SphinxRtdTheme={Navigation:e.exports.ThemeNav,StickyNav:e.exports.ThemeNav}),function(){for(var r=0,n=["ms","moz","webkit","o"],e=0;e<n.length&&!window.requestAnimationFrame;++e)window.requestAnimationFrame=window[n[e]+"RequestAnimationFrame"],window.cancelAnimationFrame=window[n[e]+"CancelAnimationFrame"]||window[n[e]+"CancelRequestAnimationFrame"];window.requestAnimationFrame||(window.requestAnimationFrame=function(n,e){var i=(new Date).getTime(),t=Math.max(0,16-(i-r)),o=window.setTimeout(function(){n(i+t)},t);return r=i+t,o}),window.cancelAnimationFrame||(window.cancelAnimationFrame=function(n){clearTimeout(n)})}()},{jquery:"jquery"}]},{},["sphinx-rtd-theme"]);
/* sphinx_rtd_theme version 0.4.1 | MIT license */
/* Built 20180727 10:07 */
require=function n(e,i,t){function o(s,a){if(!i[s]){if(!e[s]){var l="function"==typeof require&&require;if(!a&&l)return l(s,!0);if(r)return r(s,!0);var c=new Error("Cannot find module '"+s+"'");throw c.code="MODULE_NOT_FOUND",c}var u=i[s]={exports:{}};e[s][0].call(u.exports,function(n){var i=e[s][1][n];return o(i||n)},u,u.exports,n,e,i,t)}return i[s].exports}for(var r="function"==typeof require&&require,s=0;s<t.length;s++)o(t[s]);return o}({"sphinx-rtd-theme":[function(n,e,i){var jQuery="undefined"!=typeof window?window.jQuery:n("jquery");e.exports.ThemeNav={navBar:null,win:null,winScroll:!1,winResize:!1,linkScroll:!1,winPosition:0,winHeight:null,docHeight:null,isRunning:!1,enable:function(n){var e=this;void 0===n&&(n=!0),e.isRunning||(e.isRunning=!0,jQuery(function(i){e.init(i),e.reset(),e.win.on("hashchange",e.reset),n&&e.win.on("scroll",function(){e.linkScroll||e.winScroll||(e.winScroll=!0,requestAnimationFrame(function(){e.onScroll()}))}),e.win.on("resize",function(){e.winResize||(e.winResize=!0,requestAnimationFrame(function(){e.onResize()}))}),e.onResize()}))},enableSticky:function(){this.enable(!0)},init:function(n){n(document);var e=this;this.navBar=n("div.wy-side-scroll:first"),this.win=n(window),n(document).on("click","[data-toggle='wy-nav-top']",function(){n("[data-toggle='wy-nav-shift']").toggleClass("shift"),n("[data-toggle='rst-versions']").toggleClass("shift")}).on("click",".wy-menu-vertical .current ul li a",function(){var i=n(this);n("[data-toggle='wy-nav-shift']").removeClass("shift"),n("[data-toggle='rst-versions']").toggleClass("shift"),e.toggleCurrent(i),e.hashChange()}).on("click","[data-toggle='rst-current-version']",function(){n("[data-toggle='rst-versions']").toggleClass("shift-up")}),n("table.docutils:not(.field-list,.footnote,.citation)").wrap("<div class='wy-table-responsive'></div>"),n("table.docutils.footnote").wrap("<div class='wy-table-responsive footnote'></div>"),n("table.docutils.citation").wrap("<div class='wy-table-responsive citation'></div>"),n(".wy-menu-vertical ul").not(".simple").siblings("a").each(function(){var i=n(this);expand=n('<span class="toctree-expand"></span>'),expand.on("click",function(n){return e.toggleCurrent(i),n.stopPropagation(),!1}),i.prepend(expand)})},reset:function(){var n=encodeURI(window.location.hash)||"#";try{var e=$(".wy-menu-vertical"),i=e.find('[href="'+n+'"]');if(0===i.length){var t=$('.document [id="'+n.substring(1)+'"]').closest("div.section");0===(i=e.find('[href="#'+t.attr("id")+'"]')).length&&(i=e.find('[href="#"]'))}i.length>0&&($(".wy-menu-vertical .current").removeClass("current"),i.addClass("current"),i.closest("li.toctree-l1").addClass("current"),i.closest("li.toctree-l1").parent().addClass("current"),i.closest("li.toctree-l1").addClass("current"),i.closest("li.toctree-l2").addClass("current"),i.closest("li.toctree-l3").addClass("current"),i.closest("li.toctree-l4").addClass("current"))}catch(o){console.log("Error expanding nav for anchor",o)}},onScroll:function(){this.winScroll=!1;var n=this.win.scrollTop(),e=n+this.winHeight,i=this.navBar.scrollTop()+(n-this.winPosition);n<0||e>this.docHeight||(this.navBar.scrollTop(i),this.winPosition=n)},onResize:function(){this.winResize=!1,this.winHeight=this.win.height(),this.docHeight=$(document).height()},hashChange:function(){this.linkScroll=!0,this.win.one("hashchange",function(){this.linkScroll=!1})},toggleCurrent:function(n){var e=n.closest("li");e.siblings("li.current").removeClass("current"),e.siblings().find("li.current").removeClass("current"),e.find("> ul li.current").removeClass("current"),e.toggleClass("current")}},"undefined"!=typeof window&&(window.SphinxRtdTheme={Navigation:e.exports.ThemeNav,StickyNav:e.exports.ThemeNav}),function(){for(var n=0,e=["ms","moz","webkit","o"],i=0;i<e.length&&!window.requestAnimationFrame;++i)window.requestAnimationFrame=window[e[i]+"RequestAnimationFrame"],window.cancelAnimationFrame=window[e[i]+"CancelAnimationFrame"]||window[e[i]+"CancelRequestAnimationFrame"];window.requestAnimationFrame||(window.requestAnimationFrame=function(e,i){var t=(new Date).getTime(),o=Math.max(0,16-(t-n)),r=window.setTimeout(function(){e(t+o)},o);return n=t+o,r}),window.cancelAnimationFrame||(window.cancelAnimationFrame=function(n){clearTimeout(n)})}()},{jquery:"jquery"}]},{},["sphinx-rtd-theme"]);

View File

@ -1,69 +1,69 @@
.highlight .hll { background-color: #ffffcc }
.highlight { background: #eeffcc; }
.highlight .c { color: #408090; font-style: italic } /* Comment */
.highlight { background: #f8f8f8; }
.highlight .c { color: #408080; font-style: italic } /* Comment */
.highlight .err { border: 1px solid #FF0000 } /* Error */
.highlight .k { color: #007020; font-weight: bold } /* Keyword */
.highlight .k { color: #008000; font-weight: bold } /* Keyword */
.highlight .o { color: #666666 } /* Operator */
.highlight .ch { color: #408090; font-style: italic } /* Comment.Hashbang */
.highlight .cm { color: #408090; font-style: italic } /* Comment.Multiline */
.highlight .cp { color: #007020 } /* Comment.Preproc */
.highlight .cpf { color: #408090; font-style: italic } /* Comment.PreprocFile */
.highlight .c1 { color: #408090; font-style: italic } /* Comment.Single */
.highlight .cs { color: #408090; background-color: #fff0f0 } /* Comment.Special */
.highlight .ch { color: #408080; font-style: italic } /* Comment.Hashbang */
.highlight .cm { color: #408080; font-style: italic } /* Comment.Multiline */
.highlight .cp { color: #BC7A00 } /* Comment.Preproc */
.highlight .cpf { color: #408080; font-style: italic } /* Comment.PreprocFile */
.highlight .c1 { color: #408080; font-style: italic } /* Comment.Single */
.highlight .cs { color: #408080; font-style: italic } /* Comment.Special */
.highlight .gd { color: #A00000 } /* Generic.Deleted */
.highlight .ge { font-style: italic } /* Generic.Emph */
.highlight .gr { color: #FF0000 } /* Generic.Error */
.highlight .gh { color: #000080; font-weight: bold } /* Generic.Heading */
.highlight .gi { color: #00A000 } /* Generic.Inserted */
.highlight .go { color: #333333 } /* Generic.Output */
.highlight .gp { color: #c65d09; font-weight: bold } /* Generic.Prompt */
.highlight .go { color: #888888 } /* Generic.Output */
.highlight .gp { color: #000080; font-weight: bold } /* Generic.Prompt */
.highlight .gs { font-weight: bold } /* Generic.Strong */
.highlight .gu { color: #800080; font-weight: bold } /* Generic.Subheading */
.highlight .gt { color: #0044DD } /* Generic.Traceback */
.highlight .kc { color: #007020; font-weight: bold } /* Keyword.Constant */
.highlight .kd { color: #007020; font-weight: bold } /* Keyword.Declaration */
.highlight .kn { color: #007020; font-weight: bold } /* Keyword.Namespace */
.highlight .kp { color: #007020 } /* Keyword.Pseudo */
.highlight .kr { color: #007020; font-weight: bold } /* Keyword.Reserved */
.highlight .kt { color: #902000 } /* Keyword.Type */
.highlight .m { color: #208050 } /* Literal.Number */
.highlight .s { color: #4070a0 } /* Literal.String */
.highlight .na { color: #4070a0 } /* Name.Attribute */
.highlight .nb { color: #007020 } /* Name.Builtin */
.highlight .nc { color: #0e84b5; font-weight: bold } /* Name.Class */
.highlight .no { color: #60add5 } /* Name.Constant */
.highlight .nd { color: #555555; font-weight: bold } /* Name.Decorator */
.highlight .ni { color: #d55537; font-weight: bold } /* Name.Entity */
.highlight .ne { color: #007020 } /* Name.Exception */
.highlight .nf { color: #06287e } /* Name.Function */
.highlight .nl { color: #002070; font-weight: bold } /* Name.Label */
.highlight .nn { color: #0e84b5; font-weight: bold } /* Name.Namespace */
.highlight .nt { color: #062873; font-weight: bold } /* Name.Tag */
.highlight .nv { color: #bb60d5 } /* Name.Variable */
.highlight .ow { color: #007020; font-weight: bold } /* Operator.Word */
.highlight .kc { color: #008000; font-weight: bold } /* Keyword.Constant */
.highlight .kd { color: #008000; font-weight: bold } /* Keyword.Declaration */
.highlight .kn { color: #008000; font-weight: bold } /* Keyword.Namespace */
.highlight .kp { color: #008000 } /* Keyword.Pseudo */
.highlight .kr { color: #008000; font-weight: bold } /* Keyword.Reserved */
.highlight .kt { color: #B00040 } /* Keyword.Type */
.highlight .m { color: #666666 } /* Literal.Number */
.highlight .s { color: #BA2121 } /* Literal.String */
.highlight .na { color: #7D9029 } /* Name.Attribute */
.highlight .nb { color: #008000 } /* Name.Builtin */
.highlight .nc { color: #0000FF; font-weight: bold } /* Name.Class */
.highlight .no { color: #880000 } /* Name.Constant */
.highlight .nd { color: #AA22FF } /* Name.Decorator */
.highlight .ni { color: #999999; font-weight: bold } /* Name.Entity */
.highlight .ne { color: #D2413A; font-weight: bold } /* Name.Exception */
.highlight .nf { color: #0000FF } /* Name.Function */
.highlight .nl { color: #A0A000 } /* Name.Label */
.highlight .nn { color: #0000FF; font-weight: bold } /* Name.Namespace */
.highlight .nt { color: #008000; font-weight: bold } /* Name.Tag */
.highlight .nv { color: #19177C } /* Name.Variable */
.highlight .ow { color: #AA22FF; font-weight: bold } /* Operator.Word */
.highlight .w { color: #bbbbbb } /* Text.Whitespace */
.highlight .mb { color: #208050 } /* Literal.Number.Bin */
.highlight .mf { color: #208050 } /* Literal.Number.Float */
.highlight .mh { color: #208050 } /* Literal.Number.Hex */
.highlight .mi { color: #208050 } /* Literal.Number.Integer */
.highlight .mo { color: #208050 } /* Literal.Number.Oct */
.highlight .sa { color: #4070a0 } /* Literal.String.Affix */
.highlight .sb { color: #4070a0 } /* Literal.String.Backtick */
.highlight .sc { color: #4070a0 } /* Literal.String.Char */
.highlight .dl { color: #4070a0 } /* Literal.String.Delimiter */
.highlight .sd { color: #4070a0; font-style: italic } /* Literal.String.Doc */
.highlight .s2 { color: #4070a0 } /* Literal.String.Double */
.highlight .se { color: #4070a0; font-weight: bold } /* Literal.String.Escape */
.highlight .sh { color: #4070a0 } /* Literal.String.Heredoc */
.highlight .si { color: #70a0d0; font-style: italic } /* Literal.String.Interpol */
.highlight .sx { color: #c65d09 } /* Literal.String.Other */
.highlight .sr { color: #235388 } /* Literal.String.Regex */
.highlight .s1 { color: #4070a0 } /* Literal.String.Single */
.highlight .ss { color: #517918 } /* Literal.String.Symbol */
.highlight .bp { color: #007020 } /* Name.Builtin.Pseudo */
.highlight .fm { color: #06287e } /* Name.Function.Magic */
.highlight .vc { color: #bb60d5 } /* Name.Variable.Class */
.highlight .vg { color: #bb60d5 } /* Name.Variable.Global */
.highlight .vi { color: #bb60d5 } /* Name.Variable.Instance */
.highlight .vm { color: #bb60d5 } /* Name.Variable.Magic */
.highlight .il { color: #208050 } /* Literal.Number.Integer.Long */
.highlight .mb { color: #666666 } /* Literal.Number.Bin */
.highlight .mf { color: #666666 } /* Literal.Number.Float */
.highlight .mh { color: #666666 } /* Literal.Number.Hex */
.highlight .mi { color: #666666 } /* Literal.Number.Integer */
.highlight .mo { color: #666666 } /* Literal.Number.Oct */
.highlight .sa { color: #BA2121 } /* Literal.String.Affix */
.highlight .sb { color: #BA2121 } /* Literal.String.Backtick */
.highlight .sc { color: #BA2121 } /* Literal.String.Char */
.highlight .dl { color: #BA2121 } /* Literal.String.Delimiter */
.highlight .sd { color: #BA2121; font-style: italic } /* Literal.String.Doc */
.highlight .s2 { color: #BA2121 } /* Literal.String.Double */
.highlight .se { color: #BB6622; font-weight: bold } /* Literal.String.Escape */
.highlight .sh { color: #BA2121 } /* Literal.String.Heredoc */
.highlight .si { color: #BB6688; font-weight: bold } /* Literal.String.Interpol */
.highlight .sx { color: #008000 } /* Literal.String.Other */
.highlight .sr { color: #BB6688 } /* Literal.String.Regex */
.highlight .s1 { color: #BA2121 } /* Literal.String.Single */
.highlight .ss { color: #19177C } /* Literal.String.Symbol */
.highlight .bp { color: #008000 } /* Name.Builtin.Pseudo */
.highlight .fm { color: #0000FF } /* Name.Function.Magic */
.highlight .vc { color: #19177C } /* Name.Variable.Class */
.highlight .vg { color: #19177C } /* Name.Variable.Global */
.highlight .vi { color: #19177C } /* Name.Variable.Instance */
.highlight .vm { color: #19177C } /* Name.Variable.Magic */
.highlight .il { color: #666666 } /* Literal.Number.Integer.Long */

View File

@ -1,5 +1,5 @@
/*
* searchtools.js_t
* searchtools.js
* ~~~~~~~~~~~~~~~~
*
* Sphinx JavaScript utilities for the full-text search.
@ -9,323 +9,44 @@
*
*/
if (!Scorer) {
/**
* Simple result scoring code.
*/
var Scorer = {
// Implement the following function to further tweak the score for each result
// The function takes a result array [filename, title, anchor, descr, score]
// and returns the new score.
/*
score: function(result) {
return result[4];
},
*/
/* Non-minified version JS is _stemmer.js if file is provided */
/**
* Porter Stemmer
*/
var Stemmer = function() {
// query matches the full name of an object
objNameMatch: 11,
// or matches in the last dotted part of the object name
objPartialMatch: 6,
// Additive scores depending on the priority of the object
objPrio: {0: 15, // used to be importantResults
1: 5, // used to be objectResults
2: -5}, // used to be unimportantResults
// Used when the priority is not in the mapping.
objPrioDefault: 0,
var step2list = {
ational: 'ate',
tional: 'tion',
enci: 'ence',
anci: 'ance',
izer: 'ize',
bli: 'ble',
alli: 'al',
entli: 'ent',
eli: 'e',
ousli: 'ous',
ization: 'ize',
ation: 'ate',
ator: 'ate',
alism: 'al',
iveness: 'ive',
fulness: 'ful',
ousness: 'ous',
aliti: 'al',
iviti: 'ive',
biliti: 'ble',
logi: 'log'
// query found in title
title: 15,
// query found in terms
term: 5
};
}
var step3list = {
icate: 'ic',
ative: '',
alize: 'al',
iciti: 'ic',
ical: 'ic',
ful: '',
ness: ''
};
var c = "[^aeiou]"; // consonant
var v = "[aeiouy]"; // vowel
var C = c + "[^aeiouy]*"; // consonant sequence
var V = v + "[aeiou]*"; // vowel sequence
var mgr0 = "^(" + C + ")?" + V + C; // [C]VC... is m>0
var meq1 = "^(" + C + ")?" + V + C + "(" + V + ")?$"; // [C]VC[V] is m=1
var mgr1 = "^(" + C + ")?" + V + C + V + C; // [C]VCVC... is m>1
var s_v = "^(" + C + ")?" + v; // vowel in stem
this.stemWord = function (w) {
var stem;
var suffix;
var firstch;
var origword = w;
if (w.length < 3)
return w;
var re;
var re2;
var re3;
var re4;
firstch = w.substr(0,1);
if (firstch == "y")
w = firstch.toUpperCase() + w.substr(1);
// Step 1a
re = /^(.+?)(ss|i)es$/;
re2 = /^(.+?)([^s])s$/;
if (re.test(w))
w = w.replace(re,"$1$2");
else if (re2.test(w))
w = w.replace(re2,"$1$2");
// Step 1b
re = /^(.+?)eed$/;
re2 = /^(.+?)(ed|ing)$/;
if (re.test(w)) {
var fp = re.exec(w);
re = new RegExp(mgr0);
if (re.test(fp[1])) {
re = /.$/;
w = w.replace(re,"");
}
}
else if (re2.test(w)) {
var fp = re2.exec(w);
stem = fp[1];
re2 = new RegExp(s_v);
if (re2.test(stem)) {
w = stem;
re2 = /(at|bl|iz)$/;
re3 = new RegExp("([^aeiouylsz])\\1$");
re4 = new RegExp("^" + C + v + "[^aeiouwxy]$");
if (re2.test(w))
w = w + "e";
else if (re3.test(w)) {
re = /.$/;
w = w.replace(re,"");
}
else if (re4.test(w))
w = w + "e";
}
}
// Step 1c
re = /^(.+?)y$/;
if (re.test(w)) {
var fp = re.exec(w);
stem = fp[1];
re = new RegExp(s_v);
if (re.test(stem))
w = stem + "i";
}
// Step 2
re = /^(.+?)(ational|tional|enci|anci|izer|bli|alli|entli|eli|ousli|ization|ation|ator|alism|iveness|fulness|ousness|aliti|iviti|biliti|logi)$/;
if (re.test(w)) {
var fp = re.exec(w);
stem = fp[1];
suffix = fp[2];
re = new RegExp(mgr0);
if (re.test(stem))
w = stem + step2list[suffix];
}
// Step 3
re = /^(.+?)(icate|ative|alize|iciti|ical|ful|ness)$/;
if (re.test(w)) {
var fp = re.exec(w);
stem = fp[1];
suffix = fp[2];
re = new RegExp(mgr0);
if (re.test(stem))
w = stem + step3list[suffix];
}
// Step 4
re = /^(.+?)(al|ance|ence|er|ic|able|ible|ant|ement|ment|ent|ou|ism|ate|iti|ous|ive|ize)$/;
re2 = /^(.+?)(s|t)(ion)$/;
if (re.test(w)) {
var fp = re.exec(w);
stem = fp[1];
re = new RegExp(mgr1);
if (re.test(stem))
w = stem;
}
else if (re2.test(w)) {
var fp = re2.exec(w);
stem = fp[1] + fp[2];
re2 = new RegExp(mgr1);
if (re2.test(stem))
w = stem;
}
// Step 5
re = /^(.+?)e$/;
if (re.test(w)) {
var fp = re.exec(w);
stem = fp[1];
re = new RegExp(mgr1);
re2 = new RegExp(meq1);
re3 = new RegExp("^" + C + v + "[^aeiouwxy]$");
if (re.test(stem) || (re2.test(stem) && !(re3.test(stem))))
w = stem;
}
re = /ll$/;
re2 = new RegExp(mgr1);
if (re.test(w) && re2.test(w)) {
re = /.$/;
w = w.replace(re,"");
}
// and turn initial Y back to y
if (firstch == "y")
w = firstch.toLowerCase() + w.substr(1);
return w;
if (!splitQuery) {
function splitQuery(query) {
return query.split(/\s+/);
}
}
/**
* Simple result scoring code.
*/
var Scorer = {
// Implement the following function to further tweak the score for each result
// The function takes a result array [filename, title, anchor, descr, score]
// and returns the new score.
/*
score: function(result) {
return result[4];
},
*/
// query matches the full name of an object
objNameMatch: 11,
// or matches in the last dotted part of the object name
objPartialMatch: 6,
// Additive scores depending on the priority of the object
objPrio: {0: 15, // used to be importantResults
1: 5, // used to be objectResults
2: -5}, // used to be unimportantResults
// Used when the priority is not in the mapping.
objPrioDefault: 0,
// query found in title
title: 15,
// query found in terms
term: 5
};
var splitChars = (function() {
var result = {};
var singles = [96, 180, 187, 191, 215, 247, 749, 885, 903, 907, 909, 930, 1014, 1648,
1748, 1809, 2416, 2473, 2481, 2526, 2601, 2609, 2612, 2615, 2653, 2702,
2706, 2729, 2737, 2740, 2857, 2865, 2868, 2910, 2928, 2948, 2961, 2971,
2973, 3085, 3089, 3113, 3124, 3213, 3217, 3241, 3252, 3295, 3341, 3345,
3369, 3506, 3516, 3633, 3715, 3721, 3736, 3744, 3748, 3750, 3756, 3761,
3781, 3912, 4239, 4347, 4681, 4695, 4697, 4745, 4785, 4799, 4801, 4823,
4881, 5760, 5901, 5997, 6313, 7405, 8024, 8026, 8028, 8030, 8117, 8125,
8133, 8181, 8468, 8485, 8487, 8489, 8494, 8527, 11311, 11359, 11687, 11695,
11703, 11711, 11719, 11727, 11735, 12448, 12539, 43010, 43014, 43019, 43587,
43696, 43713, 64286, 64297, 64311, 64317, 64319, 64322, 64325, 65141];
var i, j, start, end;
for (i = 0; i < singles.length; i++) {
result[singles[i]] = true;
}
var ranges = [[0, 47], [58, 64], [91, 94], [123, 169], [171, 177], [182, 184], [706, 709],
[722, 735], [741, 747], [751, 879], [888, 889], [894, 901], [1154, 1161],
[1318, 1328], [1367, 1368], [1370, 1376], [1416, 1487], [1515, 1519], [1523, 1568],
[1611, 1631], [1642, 1645], [1750, 1764], [1767, 1773], [1789, 1790], [1792, 1807],
[1840, 1868], [1958, 1968], [1970, 1983], [2027, 2035], [2038, 2041], [2043, 2047],
[2070, 2073], [2075, 2083], [2085, 2087], [2089, 2307], [2362, 2364], [2366, 2383],
[2385, 2391], [2402, 2405], [2419, 2424], [2432, 2436], [2445, 2446], [2449, 2450],
[2483, 2485], [2490, 2492], [2494, 2509], [2511, 2523], [2530, 2533], [2546, 2547],
[2554, 2564], [2571, 2574], [2577, 2578], [2618, 2648], [2655, 2661], [2672, 2673],
[2677, 2692], [2746, 2748], [2750, 2767], [2769, 2783], [2786, 2789], [2800, 2820],
[2829, 2830], [2833, 2834], [2874, 2876], [2878, 2907], [2914, 2917], [2930, 2946],
[2955, 2957], [2966, 2968], [2976, 2978], [2981, 2983], [2987, 2989], [3002, 3023],
[3025, 3045], [3059, 3076], [3130, 3132], [3134, 3159], [3162, 3167], [3170, 3173],
[3184, 3191], [3199, 3204], [3258, 3260], [3262, 3293], [3298, 3301], [3312, 3332],
[3386, 3388], [3390, 3423], [3426, 3429], [3446, 3449], [3456, 3460], [3479, 3481],
[3518, 3519], [3527, 3584], [3636, 3647], [3655, 3663], [3674, 3712], [3717, 3718],
[3723, 3724], [3726, 3731], [3752, 3753], [3764, 3772], [3774, 3775], [3783, 3791],
[3802, 3803], [3806, 3839], [3841, 3871], [3892, 3903], [3949, 3975], [3980, 4095],
[4139, 4158], [4170, 4175], [4182, 4185], [4190, 4192], [4194, 4196], [4199, 4205],
[4209, 4212], [4226, 4237], [4250, 4255], [4294, 4303], [4349, 4351], [4686, 4687],
[4702, 4703], [4750, 4751], [4790, 4791], [4806, 4807], [4886, 4887], [4955, 4968],
[4989, 4991], [5008, 5023], [5109, 5120], [5741, 5742], [5787, 5791], [5867, 5869],
[5873, 5887], [5906, 5919], [5938, 5951], [5970, 5983], [6001, 6015], [6068, 6102],
[6104, 6107], [6109, 6111], [6122, 6127], [6138, 6159], [6170, 6175], [6264, 6271],
[6315, 6319], [6390, 6399], [6429, 6469], [6510, 6511], [6517, 6527], [6572, 6592],
[6600, 6607], [6619, 6655], [6679, 6687], [6741, 6783], [6794, 6799], [6810, 6822],
[6824, 6916], [6964, 6980], [6988, 6991], [7002, 7042], [7073, 7085], [7098, 7167],
[7204, 7231], [7242, 7244], [7294, 7400], [7410, 7423], [7616, 7679], [7958, 7959],
[7966, 7967], [8006, 8007], [8014, 8015], [8062, 8063], [8127, 8129], [8141, 8143],
[8148, 8149], [8156, 8159], [8173, 8177], [8189, 8303], [8306, 8307], [8314, 8318],
[8330, 8335], [8341, 8449], [8451, 8454], [8456, 8457], [8470, 8472], [8478, 8483],
[8506, 8507], [8512, 8516], [8522, 8525], [8586, 9311], [9372, 9449], [9472, 10101],
[10132, 11263], [11493, 11498], [11503, 11516], [11518, 11519], [11558, 11567],
[11622, 11630], [11632, 11647], [11671, 11679], [11743, 11822], [11824, 12292],
[12296, 12320], [12330, 12336], [12342, 12343], [12349, 12352], [12439, 12444],
[12544, 12548], [12590, 12592], [12687, 12689], [12694, 12703], [12728, 12783],
[12800, 12831], [12842, 12880], [12896, 12927], [12938, 12976], [12992, 13311],
[19894, 19967], [40908, 40959], [42125, 42191], [42238, 42239], [42509, 42511],
[42540, 42559], [42592, 42593], [42607, 42622], [42648, 42655], [42736, 42774],
[42784, 42785], [42889, 42890], [42893, 43002], [43043, 43055], [43062, 43071],
[43124, 43137], [43188, 43215], [43226, 43249], [43256, 43258], [43260, 43263],
[43302, 43311], [43335, 43359], [43389, 43395], [43443, 43470], [43482, 43519],
[43561, 43583], [43596, 43599], [43610, 43615], [43639, 43641], [43643, 43647],
[43698, 43700], [43703, 43704], [43710, 43711], [43715, 43738], [43742, 43967],
[44003, 44015], [44026, 44031], [55204, 55215], [55239, 55242], [55292, 55295],
[57344, 63743], [64046, 64047], [64110, 64111], [64218, 64255], [64263, 64274],
[64280, 64284], [64434, 64466], [64830, 64847], [64912, 64913], [64968, 65007],
[65020, 65135], [65277, 65295], [65306, 65312], [65339, 65344], [65371, 65381],
[65471, 65473], [65480, 65481], [65488, 65489], [65496, 65497]];
for (i = 0; i < ranges.length; i++) {
start = ranges[i][0];
end = ranges[i][1];
for (j = start; j <= end; j++) {
result[j] = true;
}
}
return result;
})();
function splitQuery(query) {
var result = [];
var start = -1;
for (var i = 0; i < query.length; i++) {
if (splitChars[query.charCodeAt(i)]) {
if (start !== -1) {
result.push(query.slice(start, i));
start = -1;
}
} else if (start === -1) {
start = i;
}
}
if (start !== -1) {
result.push(query.slice(start));
}
return result;
}
/**
* Search Module
*/
@ -417,7 +138,7 @@ var Search = {
*/
query : function(query) {
var i;
var stopwords = ["a","and","are","as","at","be","but","by","for","if","in","into","is","it","near","no","not","of","on","or","such","that","the","their","then","there","these","they","this","to","was","will","with"];
var stopwords = DOCUMENTATION_OPTIONS.SEARCH_LANGUAGE_STOP_WORDS;
// stem the searchterms and add them to the correct list
var stemmer = new Stemmer();

View File

@ -8,7 +8,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>com package &mdash; VMware Cloud on AWS Console API 1.2.0 documentation</title>
<title>com package &mdash; VMware Cloud on AWS Console API 1.3.0 documentation</title>
@ -24,8 +24,7 @@
<link rel="stylesheet" href="_static/css/theme.css" type="text/css" />
<link rel="stylesheet" href="_static/css/theme.css" type="text/css" />
<link rel="stylesheet" href="_static/pygments.css" type="text/css" />
<link rel="index" title="Index" href="genindex.html" />
<link rel="search" title="Search" href="search.html" />
@ -59,7 +58,7 @@
<div class="version">
1.2.0
1.3.0
</div>
@ -221,7 +220,7 @@
</li>
<li class="toctree-l8"><a class="reference internal" href="com.vmware.vmc.orgs.sddcs.html#submodules">Submodules</a></li>
<li class="toctree-l8"><a class="reference internal" href="com.vmware.vmc.orgs.sddcs.html#module-com.vmware.vmc.orgs.sddcs.dns_client">com.vmware.vmc.orgs.sddcs.dns_client module</a></li>
<li class="toctree-l8"><a class="reference internal" href="com.vmware.vmc.orgs.sddcs.html#module-com.vmware.vmc.orgs.sddcs.mgw_client">com.vmware.vmc.orgs.sddcs.mgw_client module</a></li>
<li class="toctree-l8"><a class="reference internal" href="com.vmware.vmc.orgs.sddcs.html#module-com.vmware.vmc.orgs.sddcs.networking_client">com.vmware.vmc.orgs.sddcs.networking_client module</a></li>
<li class="toctree-l8"><a class="reference internal" href="com.vmware.vmc.orgs.sddcs.html#module-com.vmware.vmc.orgs.sddcs.networks_client">com.vmware.vmc.orgs.sddcs.networks_client module</a></li>
</ul>
</li>
@ -229,7 +228,9 @@
</li>
<li class="toctree-l6"><a class="reference internal" href="com.vmware.vmc.orgs.html#submodules">Submodules</a></li>
<li class="toctree-l6"><a class="reference internal" href="com.vmware.vmc.orgs.html#module-com.vmware.vmc.orgs.account_link_client">com.vmware.vmc.orgs.account_link_client module</a></li>
<li class="toctree-l6"><a class="reference internal" href="com.vmware.vmc.orgs.html#module-com.vmware.vmc.orgs.reservations_client">com.vmware.vmc.orgs.reservations_client module</a></li>
<li class="toctree-l6"><a class="reference internal" href="com.vmware.vmc.orgs.html#module-com.vmware.vmc.orgs.sddcs_client">com.vmware.vmc.orgs.sddcs_client module</a></li>
<li class="toctree-l6"><a class="reference internal" href="com.vmware.vmc.orgs.html#module-com.vmware.vmc.orgs.tbrs_client">com.vmware.vmc.orgs.tbrs_client module</a></li>
</ul>
</li>
</ul>
@ -292,7 +293,7 @@
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT:'./',
VERSION:'1.2.0',
VERSION:'1.3.0',
LANGUAGE:'en',
COLLAPSE_INDEX:false,
FILE_SUFFIX:'.html',
@ -303,13 +304,11 @@
<script type="text/javascript" src="_static/jquery.js"></script>
<script type="text/javascript" src="_static/underscore.js"></script>
<script type="text/javascript" src="_static/doctools.js"></script>
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.1/MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script>
<script type="text/javascript" src="_static/js/theme.js"></script>
<script type="text/javascript" src="_static/js/theme.js"></script>
<script type="text/javascript">
jQuery(function () {

View File

@ -8,7 +8,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>com.vmware package &mdash; VMware Cloud on AWS Console API 1.2.0 documentation</title>
<title>com.vmware package &mdash; VMware Cloud on AWS Console API 1.3.0 documentation</title>
@ -24,8 +24,7 @@
<link rel="stylesheet" href="_static/css/theme.css" type="text/css" />
<link rel="stylesheet" href="_static/css/theme.css" type="text/css" />
<link rel="stylesheet" href="_static/pygments.css" type="text/css" />
<link rel="index" title="Index" href="genindex.html" />
<link rel="search" title="Search" href="search.html" />
@ -59,7 +58,7 @@
<div class="version">
1.2.0
1.3.0
</div>
@ -226,7 +225,7 @@
</li>
<li class="toctree-l6"><a class="reference internal" href="com.vmware.vmc.orgs.sddcs.html#submodules">Submodules</a></li>
<li class="toctree-l6"><a class="reference internal" href="com.vmware.vmc.orgs.sddcs.html#module-com.vmware.vmc.orgs.sddcs.dns_client">com.vmware.vmc.orgs.sddcs.dns_client module</a></li>
<li class="toctree-l6"><a class="reference internal" href="com.vmware.vmc.orgs.sddcs.html#module-com.vmware.vmc.orgs.sddcs.mgw_client">com.vmware.vmc.orgs.sddcs.mgw_client module</a></li>
<li class="toctree-l6"><a class="reference internal" href="com.vmware.vmc.orgs.sddcs.html#module-com.vmware.vmc.orgs.sddcs.networking_client">com.vmware.vmc.orgs.sddcs.networking_client module</a></li>
<li class="toctree-l6"><a class="reference internal" href="com.vmware.vmc.orgs.sddcs.html#module-com.vmware.vmc.orgs.sddcs.networks_client">com.vmware.vmc.orgs.sddcs.networks_client module</a></li>
</ul>
</li>
@ -234,7 +233,9 @@
</li>
<li class="toctree-l4"><a class="reference internal" href="com.vmware.vmc.orgs.html#submodules">Submodules</a></li>
<li class="toctree-l4"><a class="reference internal" href="com.vmware.vmc.orgs.html#module-com.vmware.vmc.orgs.account_link_client">com.vmware.vmc.orgs.account_link_client module</a></li>
<li class="toctree-l4"><a class="reference internal" href="com.vmware.vmc.orgs.html#module-com.vmware.vmc.orgs.reservations_client">com.vmware.vmc.orgs.reservations_client module</a></li>
<li class="toctree-l4"><a class="reference internal" href="com.vmware.vmc.orgs.html#module-com.vmware.vmc.orgs.sddcs_client">com.vmware.vmc.orgs.sddcs_client module</a></li>
<li class="toctree-l4"><a class="reference internal" href="com.vmware.vmc.orgs.html#module-com.vmware.vmc.orgs.tbrs_client">com.vmware.vmc.orgs.tbrs_client module</a></li>
</ul>
</li>
</ul>
@ -252,6 +253,45 @@
</div>
<div class="section" id="module-com.vmware.vmc_client">
<span id="com-vmware-vmc-client-module"></span><h2>com.vmware.vmc_client module<a class="headerlink" href="#module-com.vmware.vmc_client" title="Permalink to this headline"></a></h2>
<dl class="class">
<dt id="com.vmware.vmc_client.Locale">
<em class="property">class </em><code class="descclassname">com.vmware.vmc_client.</code><code class="descname">Locale</code><span class="sig-paren">(</span><em>config</em><span class="sig-paren">)</span><a class="headerlink" href="#com.vmware.vmc_client.Locale" 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>
<table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><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.</td>
</tr>
</tbody>
</table>
<dl class="method">
<dt id="com.vmware.vmc_client.Locale.set">
<code class="descname">set</code><span class="sig-paren">(</span><em>vmc_locale</em><span class="sig-paren">)</span><a class="headerlink" href="#com.vmware.vmc_client.Locale.set" title="Permalink to this definition"></a></dt>
<dd><p>Sets the locale for the session which is used for translating
responses.</p>
<table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><strong>vmc_locale</strong> (<a class="reference internal" href="com.vmware.vmc.html#com.vmware.vmc.model_client.VmcLocale" title="com.vmware.vmc.model_client.VmcLocale"><code class="xref py py-class docutils literal notranslate"><span class="pre">com.vmware.vmc.model_client.VmcLocale</span></code></a>) The locale to be set. (required)</td>
</tr>
<tr class="field-even field"><th class="field-name">Return type:</th><td class="field-body"><a class="reference internal" href="com.vmware.vmc.html#com.vmware.vmc.model_client.VmcLocale" title="com.vmware.vmc.model_client.VmcLocale"><code class="xref py py-class docutils literal notranslate"><span class="pre">com.vmware.vmc.model_client.VmcLocale</span></code></a></td>
</tr>
<tr class="field-odd field"><th class="field-name">Returns:</th><td class="field-body">com.vmware.vmc.model.VmcLocale</td>
</tr>
<tr class="field-even field"><th class="field-name">Raise:</th><td class="field-body"><code class="xref py py-class docutils literal notranslate"><span class="pre">com.vmware.vapi.std.errors_client.Unauthorized</span></code>
Forbidden</td>
</tr>
<tr class="field-odd field"><th class="field-name">Raise:</th><td class="field-body"><code class="xref py py-class docutils literal notranslate"><span class="pre">com.vmware.vapi.std.errors_client.Unauthenticated</span></code>
Unauthorized</td>
</tr>
</tbody>
</table>
</dd></dl>
</dd></dl>
<dl class="class">
<dt id="com.vmware.vmc_client.Orgs">
<em class="property">class </em><code class="descclassname">com.vmware.vmc_client.</code><code class="descname">Orgs</code><span class="sig-paren">(</span><em>config</em><span class="sig-paren">)</span><a class="headerlink" href="#com.vmware.vmc_client.Orgs" title="Permalink to this definition"></a></dt>
@ -376,7 +416,7 @@ Unauthorized</td>
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT:'./',
VERSION:'1.2.0',
VERSION:'1.3.0',
LANGUAGE:'en',
COLLAPSE_INDEX:false,
FILE_SUFFIX:'.html',
@ -387,13 +427,11 @@ Unauthorized</td>
<script type="text/javascript" src="_static/jquery.js"></script>
<script type="text/javascript" src="_static/underscore.js"></script>
<script type="text/javascript" src="_static/doctools.js"></script>
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.1/MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script>
<script type="text/javascript" src="_static/js/theme.js"></script>
<script type="text/javascript" src="_static/js/theme.js"></script>
<script type="text/javascript">
jQuery(function () {

File diff suppressed because it is too large Load Diff

View File

@ -8,7 +8,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>com.vmware.vmc.orgs package &mdash; VMware Cloud on AWS Console API 1.2.0 documentation</title>
<title>com.vmware.vmc.orgs package &mdash; VMware Cloud on AWS Console API 1.3.0 documentation</title>
@ -24,8 +24,7 @@
<link rel="stylesheet" href="_static/css/theme.css" type="text/css" />
<link rel="stylesheet" href="_static/css/theme.css" type="text/css" />
<link rel="stylesheet" href="_static/pygments.css" type="text/css" />
<link rel="index" title="Index" href="genindex.html" />
<link rel="search" title="Search" href="search.html" />
@ -59,7 +58,7 @@
<div class="version">
1.2.0
1.3.0
</div>
@ -226,7 +225,7 @@
</li>
<li class="toctree-l2"><a class="reference internal" href="com.vmware.vmc.orgs.sddcs.html#submodules">Submodules</a></li>
<li class="toctree-l2"><a class="reference internal" href="com.vmware.vmc.orgs.sddcs.html#module-com.vmware.vmc.orgs.sddcs.dns_client">com.vmware.vmc.orgs.sddcs.dns_client module</a></li>
<li class="toctree-l2"><a class="reference internal" href="com.vmware.vmc.orgs.sddcs.html#module-com.vmware.vmc.orgs.sddcs.mgw_client">com.vmware.vmc.orgs.sddcs.mgw_client module</a></li>
<li class="toctree-l2"><a class="reference internal" href="com.vmware.vmc.orgs.sddcs.html#module-com.vmware.vmc.orgs.sddcs.networking_client">com.vmware.vmc.orgs.sddcs.networking_client module</a></li>
<li class="toctree-l2"><a class="reference internal" href="com.vmware.vmc.orgs.sddcs.html#module-com.vmware.vmc.orgs.sddcs.networks_client">com.vmware.vmc.orgs.sddcs.networks_client module</a></li>
</ul>
</li>
@ -252,7 +251,7 @@
</table>
<dl class="method">
<dt id="com.vmware.vmc.orgs.account_link_client.CompatibleSubnets.get">
<code class="descname">get</code><span class="sig-paren">(</span><em>org</em>, <em>linked_account_id=None</em>, <em>region=None</em><span class="sig-paren">)</span><a class="headerlink" href="#com.vmware.vmc.orgs.account_link_client.CompatibleSubnets.get" title="Permalink to this definition"></a></dt>
<code class="descname">get</code><span class="sig-paren">(</span><em>org</em>, <em>linked_account_id=None</em>, <em>region=None</em>, <em>sddc=None</em>, <em>force_refresh=None</em><span class="sig-paren">)</span><a class="headerlink" href="#com.vmware.vmc.orgs.account_link_client.CompatibleSubnets.get" title="Permalink to this definition"></a></dt>
<dd><p>Gets a customers compatible subnets for account linking</p>
<table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
@ -262,6 +261,9 @@
<li><strong>org</strong> (<code class="xref py py-class docutils literal notranslate"><span class="pre">str</span></code>) Organization identifier. (required)</li>
<li><strong>linked_account_id</strong> (<code class="xref py py-class docutils literal notranslate"><span class="pre">str</span></code> or <code class="docutils literal notranslate"><span class="pre">None</span></code>) The linked connected account identifier (optional)</li>
<li><strong>region</strong> (<code class="xref py py-class docutils literal notranslate"><span class="pre">str</span></code> or <code class="docutils literal notranslate"><span class="pre">None</span></code>) The region of the cloud resources to work in (optional)</li>
<li><strong>sddc</strong> (<code class="xref py py-class docutils literal notranslate"><span class="pre">str</span></code> or <code class="docutils literal notranslate"><span class="pre">None</span></code>) sddc (optional)</li>
<li><strong>force_refresh</strong> (<code class="xref py py-class docutils literal notranslate"><span class="pre">bool</span></code> or <code class="docutils literal notranslate"><span class="pre">None</span></code>) When true, forces the mappings for datacenters to be refreshed for
the connected account. (optional)</li>
</ul>
</td>
</tr>
@ -324,7 +326,7 @@ Unauthorized</td>
</table>
<dl class="method">
<dt id="com.vmware.vmc.orgs.account_link_client.CompatibleSubnetsAsync.get">
<code class="descname">get</code><span class="sig-paren">(</span><em>org</em>, <em>linked_account_id=None</em>, <em>region=None</em><span class="sig-paren">)</span><a class="headerlink" href="#com.vmware.vmc.orgs.account_link_client.CompatibleSubnetsAsync.get" title="Permalink to this definition"></a></dt>
<code class="descname">get</code><span class="sig-paren">(</span><em>org</em>, <em>linked_account_id=None</em>, <em>region=None</em>, <em>sddc=None</em><span class="sig-paren">)</span><a class="headerlink" href="#com.vmware.vmc.orgs.account_link_client.CompatibleSubnetsAsync.get" title="Permalink to this definition"></a></dt>
<dd><p>Gets a customers compatible subnets for account linking via a task.
The information is returned as a member of the task (found in
task.params[subnet_list_result] when you are notified it is
@ -338,6 +340,7 @@ complete), and its documented under ref
<li><strong>org</strong> (<code class="xref py py-class docutils literal notranslate"><span class="pre">str</span></code>) Organization identifier. (required)</li>
<li><strong>linked_account_id</strong> (<code class="xref py py-class docutils literal notranslate"><span class="pre">str</span></code> or <code class="docutils literal notranslate"><span class="pre">None</span></code>) The linked connected account identifier (optional)</li>
<li><strong>region</strong> (<code class="xref py py-class docutils literal notranslate"><span class="pre">str</span></code> or <code class="docutils literal notranslate"><span class="pre">None</span></code>) The region of the cloud resources to work in (optional)</li>
<li><strong>sddc</strong> (<code class="xref py py-class docutils literal notranslate"><span class="pre">str</span></code> or <code class="docutils literal notranslate"><span class="pre">None</span></code>) sddc (optional)</li>
</ul>
</td>
</tr>
@ -580,6 +583,111 @@ Unauthorized</p>
</table>
</dd></dl>
</div>
<div class="section" id="module-com.vmware.vmc.orgs.reservations_client">
<span id="com-vmware-vmc-orgs-reservations-client-module"></span><h2>com.vmware.vmc.orgs.reservations_client module<a class="headerlink" href="#module-com.vmware.vmc.orgs.reservations_client" title="Permalink to this headline"></a></h2>
<dl class="class">
<dt id="com.vmware.vmc.orgs.reservations_client.Mw">
<em class="property">class </em><code class="descclassname">com.vmware.vmc.orgs.reservations_client.</code><code class="descname">Mw</code><span class="sig-paren">(</span><em>config</em><span class="sig-paren">)</span><a class="headerlink" href="#com.vmware.vmc.orgs.reservations_client.Mw" 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>
<table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><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.</td>
</tr>
</tbody>
</table>
<dl class="method">
<dt id="com.vmware.vmc.orgs.reservations_client.Mw.get">
<code class="descname">get</code><span class="sig-paren">(</span><em>org</em>, <em>reservation</em><span class="sig-paren">)</span><a class="headerlink" href="#com.vmware.vmc.orgs.reservations_client.Mw.get" title="Permalink to this definition"></a></dt>
<dd><p>get the maintenance window for this SDDC</p>
<table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first simple">
<li><strong>org</strong> (<code class="xref py py-class docutils literal notranslate"><span class="pre">str</span></code>) Organization identifier. (required)</li>
<li><strong>reservation</strong> (<code class="xref py py-class docutils literal notranslate"><span class="pre">str</span></code>) Reservation Identifier (required)</li>
</ul>
</td>
</tr>
<tr class="field-even field"><th class="field-name">Return type:</th><td class="field-body"><p class="first"><a class="reference internal" href="com.vmware.vmc.html#com.vmware.vmc.model_client.MaintenanceWindowGet" title="com.vmware.vmc.model_client.MaintenanceWindowGet"><code class="xref py py-class docutils literal notranslate"><span class="pre">com.vmware.vmc.model_client.MaintenanceWindowGet</span></code></a></p>
</td>
</tr>
<tr class="field-odd field"><th class="field-name">Returns:</th><td class="field-body"><p class="first">com.vmware.vmc.model.MaintenanceWindowGet</p>
</td>
</tr>
<tr class="field-even field"><th class="field-name">Raise:</th><td class="field-body"><p class="first"><code class="xref py py-class docutils literal notranslate"><span class="pre">com.vmware.vapi.std.errors_client.Unauthorized</span></code>
Access not allowed to the operation for the current user</p>
</td>
</tr>
<tr class="field-odd field"><th class="field-name">Raise:</th><td class="field-body"><p class="first last"><code class="xref py py-class docutils literal notranslate"><span class="pre">com.vmware.vapi.std.errors_client.Unauthenticated</span></code>
Unauthorized</p>
</td>
</tr>
</tbody>
</table>
</dd></dl>
<dl class="method">
<dt id="com.vmware.vmc.orgs.reservations_client.Mw.put">
<code class="descname">put</code><span class="sig-paren">(</span><em>org</em>, <em>reservation</em>, <em>window</em><span class="sig-paren">)</span><a class="headerlink" href="#com.vmware.vmc.orgs.reservations_client.Mw.put" title="Permalink to this definition"></a></dt>
<dd><p>update the maintenance window for this SDDC</p>
<table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first simple">
<li><strong>org</strong> (<code class="xref py py-class docutils literal notranslate"><span class="pre">str</span></code>) Organization identifier. (required)</li>
<li><strong>reservation</strong> (<code class="xref py py-class docutils literal notranslate"><span class="pre">str</span></code>) Reservation Identifier (required)</li>
<li><strong>window</strong> (<a class="reference internal" href="com.vmware.vmc.html#com.vmware.vmc.model_client.MaintenanceWindow" title="com.vmware.vmc.model_client.MaintenanceWindow"><code class="xref py py-class docutils literal notranslate"><span class="pre">com.vmware.vmc.model_client.MaintenanceWindow</span></code></a>) Maintenance Window (required)</li>
</ul>
</td>
</tr>
<tr class="field-even field"><th class="field-name">Return type:</th><td class="field-body"><p class="first"><a class="reference internal" href="com.vmware.vmc.html#com.vmware.vmc.model_client.MaintenanceWindow" title="com.vmware.vmc.model_client.MaintenanceWindow"><code class="xref py py-class docutils literal notranslate"><span class="pre">com.vmware.vmc.model_client.MaintenanceWindow</span></code></a></p>
</td>
</tr>
<tr class="field-odd field"><th class="field-name">Returns:</th><td class="field-body"><p class="first">com.vmware.vmc.model.MaintenanceWindow</p>
</td>
</tr>
<tr class="field-even field"><th class="field-name">Raise:</th><td class="field-body"><p class="first"><code class="xref py py-class docutils literal notranslate"><span class="pre">com.vmware.vapi.std.errors_client.InvalidRequest</span></code>
The reservation is not in a state thats valid for updates</p>
</td>
</tr>
<tr class="field-odd field"><th class="field-name">Raise:</th><td class="field-body"><p class="first"><code class="xref py py-class docutils literal notranslate"><span class="pre">com.vmware.vapi.std.errors_client.ConcurrentChange</span></code>
Conflict with exiting reservation</p>
</td>
</tr>
<tr class="field-even field"><th class="field-name">Raise:</th><td class="field-body"><p class="first"><code class="xref py py-class docutils literal notranslate"><span class="pre">com.vmware.vapi.std.errors_client.Unauthorized</span></code>
Access not allowed to the operation for the current user</p>
</td>
</tr>
<tr class="field-odd field"><th class="field-name">Raise:</th><td class="field-body"><p class="first last"><code class="xref py py-class docutils literal notranslate"><span class="pre">com.vmware.vapi.std.errors_client.Unauthenticated</span></code>
Unauthorized</p>
</td>
</tr>
</tbody>
</table>
</dd></dl>
</dd></dl>
<dl class="class">
<dt id="com.vmware.vmc.orgs.reservations_client.StubFactory">
<em class="property">class </em><code class="descclassname">com.vmware.vmc.orgs.reservations_client.</code><code class="descname">StubFactory</code><span class="sig-paren">(</span><em>stub_config</em><span class="sig-paren">)</span><a class="headerlink" href="#com.vmware.vmc.orgs.reservations_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>
<table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><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</td>
</tr>
</tbody>
</table>
</dd></dl>
</div>
<div class="section" id="module-com.vmware.vmc.orgs.sddcs_client">
<span id="com-vmware-vmc-orgs-sddcs-client-module"></span><h2>com.vmware.vmc.orgs.sddcs_client module<a class="headerlink" href="#module-com.vmware.vmc.orgs.sddcs_client" title="Permalink to this headline"></a></h2>
@ -598,7 +706,7 @@ Unauthorized</p>
<dl class="method">
<dt id="com.vmware.vmc.orgs.sddcs_client.Clusters.create">
<code class="descname">create</code><span class="sig-paren">(</span><em>org</em>, <em>sddc</em>, <em>cluster_config</em><span class="sig-paren">)</span><a class="headerlink" href="#com.vmware.vmc.orgs.sddcs_client.Clusters.create" title="Permalink to this definition"></a></dt>
<dd><p>Add a cluster in the target sddc</p>
<dd><p>Creates a new cluster in customers sddcs with passed clusterConfig.</p>
<table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
@ -1091,6 +1199,159 @@ Unauthorized</p>
</table>
</dd></dl>
</div>
<div class="section" id="module-com.vmware.vmc.orgs.tbrs_client">
<span id="com-vmware-vmc-orgs-tbrs-client-module"></span><h2>com.vmware.vmc.orgs.tbrs_client module<a class="headerlink" href="#module-com.vmware.vmc.orgs.tbrs_client" title="Permalink to this headline"></a></h2>
<dl class="class">
<dt id="com.vmware.vmc.orgs.tbrs_client.Reservation">
<em class="property">class </em><code class="descclassname">com.vmware.vmc.orgs.tbrs_client.</code><code class="descname">Reservation</code><span class="sig-paren">(</span><em>config</em><span class="sig-paren">)</span><a class="headerlink" href="#com.vmware.vmc.orgs.tbrs_client.Reservation" 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>
<table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><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.</td>
</tr>
</tbody>
</table>
<dl class="method">
<dt id="com.vmware.vmc.orgs.tbrs_client.Reservation.post">
<code class="descname">post</code><span class="sig-paren">(</span><em>org</em>, <em>sddc_state=None</em><span class="sig-paren">)</span><a class="headerlink" href="#com.vmware.vmc.orgs.tbrs_client.Reservation.post" title="Permalink to this definition"></a></dt>
<dd><p>Retreive all reservations for all SDDCs in this org</p>
<table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first simple">
<li><strong>org</strong> (<code class="xref py py-class docutils literal notranslate"><span class="pre">str</span></code>) Organization identifier. (required)</li>
<li><strong>sddc_state</strong> (<a class="reference internal" href="com.vmware.vmc.html#com.vmware.vmc.model_client.SddcStateRequest" title="com.vmware.vmc.model_client.SddcStateRequest"><code class="xref py py-class docutils literal notranslate"><span class="pre">com.vmware.vmc.model_client.SddcStateRequest</span></code></a> or <code class="docutils literal notranslate"><span class="pre">None</span></code>) SDDCs and/or states to query (optional)</li>
</ul>
</td>
</tr>
<tr class="field-even field"><th class="field-name">Return type:</th><td class="field-body"><p class="first"><code class="xref py py-class docutils literal notranslate"><span class="pre">dict</span></code> of <code class="xref py py-class docutils literal notranslate"><span class="pre">str</span></code> and <a class="reference internal" href="com.vmware.vmc.html#com.vmware.vmc.model_client.ReservationWindow" title="com.vmware.vmc.model_client.ReservationWindow"><code class="xref py py-class docutils literal notranslate"><span class="pre">com.vmware.vmc.model_client.ReservationWindow</span></code></a></p>
</td>
</tr>
<tr class="field-odd field"><th class="field-name">Returns:</th><td class="field-body"><p class="first"></p>
</td>
</tr>
<tr class="field-even field"><th class="field-name">Raise:</th><td class="field-body"><p class="first"><code class="xref py py-class docutils literal notranslate"><span class="pre">com.vmware.vapi.std.errors_client.InvalidRequest</span></code>
Bad Call</p>
</td>
</tr>
<tr class="field-odd field"><th class="field-name">Raise:</th><td class="field-body"><p class="first"><code class="xref py py-class docutils literal notranslate"><span class="pre">com.vmware.vapi.std.errors_client.Unauthorized</span></code>
Forbidden</p>
</td>
</tr>
<tr class="field-even field"><th class="field-name">Raise:</th><td class="field-body"><p class="first last"><code class="xref py py-class docutils literal notranslate"><span class="pre">com.vmware.vapi.std.errors_client.Unauthenticated</span></code>
Unauthorized</p>
</td>
</tr>
</tbody>
</table>
</dd></dl>
</dd></dl>
<dl class="class">
<dt id="com.vmware.vmc.orgs.tbrs_client.StubFactory">
<em class="property">class </em><code class="descclassname">com.vmware.vmc.orgs.tbrs_client.</code><code class="descname">StubFactory</code><span class="sig-paren">(</span><em>stub_config</em><span class="sig-paren">)</span><a class="headerlink" href="#com.vmware.vmc.orgs.tbrs_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>
<table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><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</td>
</tr>
</tbody>
</table>
</dd></dl>
<dl class="class">
<dt id="com.vmware.vmc.orgs.tbrs_client.SupportWindow">
<em class="property">class </em><code class="descclassname">com.vmware.vmc.orgs.tbrs_client.</code><code class="descname">SupportWindow</code><span class="sig-paren">(</span><em>config</em><span class="sig-paren">)</span><a class="headerlink" href="#com.vmware.vmc.orgs.tbrs_client.SupportWindow" 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>
<table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><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.</td>
</tr>
</tbody>
</table>
<dl class="method">
<dt id="com.vmware.vmc.orgs.tbrs_client.SupportWindow.get">
<code class="descname">get</code><span class="sig-paren">(</span><em>org</em><span class="sig-paren">)</span><a class="headerlink" href="#com.vmware.vmc.orgs.tbrs_client.SupportWindow.get" title="Permalink to this definition"></a></dt>
<dd><p>Get all available support windows</p>
<table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><strong>org</strong> (<code class="xref py py-class docutils literal notranslate"><span class="pre">str</span></code>) Organization identifier. (required)</td>
</tr>
<tr class="field-even field"><th class="field-name">Return type:</th><td class="field-body"><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.SupportWindow" title="com.vmware.vmc.model_client.SupportWindow"><code class="xref py py-class docutils literal notranslate"><span class="pre">com.vmware.vmc.model_client.SupportWindow</span></code></a></td>
</tr>
<tr class="field-odd field"><th class="field-name">Returns:</th><td class="field-body"></td>
</tr>
<tr class="field-even field"><th class="field-name">Raise:</th><td class="field-body"><code class="xref py py-class docutils literal notranslate"><span class="pre">com.vmware.vapi.std.errors_client.InvalidRequest</span></code>
Invalid request</td>
</tr>
<tr class="field-odd field"><th class="field-name">Raise:</th><td class="field-body"><code class="xref py py-class docutils literal notranslate"><span class="pre">com.vmware.vapi.std.errors_client.Unauthorized</span></code>
Forbidden</td>
</tr>
<tr class="field-even field"><th class="field-name">Raise:</th><td class="field-body"><code class="xref py py-class docutils literal notranslate"><span class="pre">com.vmware.vapi.std.errors_client.NotFound</span></code>
No support windows are available</td>
</tr>
<tr class="field-odd field"><th class="field-name">Raise:</th><td class="field-body"><code class="xref py py-class docutils literal notranslate"><span class="pre">com.vmware.vapi.std.errors_client.Unauthenticated</span></code>
Unauthorized</td>
</tr>
</tbody>
</table>
</dd></dl>
<dl class="method">
<dt id="com.vmware.vmc.orgs.tbrs_client.SupportWindow.put">
<code class="descname">put</code><span class="sig-paren">(</span><em>org</em>, <em>id</em>, <em>sddc_id=None</em><span class="sig-paren">)</span><a class="headerlink" href="#com.vmware.vmc.orgs.tbrs_client.SupportWindow.put" title="Permalink to this definition"></a></dt>
<dd><p>Move Sddc to new support window</p>
<table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first simple">
<li><strong>org</strong> (<code class="xref py py-class docutils literal notranslate"><span class="pre">str</span></code>) Organization identifier. (required)</li>
<li><strong>id</strong> (<code class="xref py py-class docutils literal notranslate"><span class="pre">str</span></code>) Target Support Window ID (required)</li>
<li><strong>sddc_id</strong> (<a class="reference internal" href="com.vmware.vmc.html#com.vmware.vmc.model_client.SddcId" title="com.vmware.vmc.model_client.SddcId"><code class="xref py py-class docutils literal notranslate"><span class="pre">com.vmware.vmc.model_client.SddcId</span></code></a> or <code class="docutils literal notranslate"><span class="pre">None</span></code>) SDDC to move (optional)</li>
</ul>
</td>
</tr>
<tr class="field-even field"><th class="field-name">Return type:</th><td class="field-body"><p class="first"><a class="reference internal" href="com.vmware.vmc.html#com.vmware.vmc.model_client.SupportWindow" title="com.vmware.vmc.model_client.SupportWindow"><code class="xref py py-class docutils literal notranslate"><span class="pre">com.vmware.vmc.model_client.SupportWindow</span></code></a></p>
</td>
</tr>
<tr class="field-odd field"><th class="field-name">Returns:</th><td class="field-body"><p class="first">com.vmware.vmc.model.SupportWindow</p>
</td>
</tr>
<tr class="field-even field"><th class="field-name">Raise:</th><td class="field-body"><p class="first"><code class="xref py py-class docutils literal notranslate"><span class="pre">com.vmware.vapi.std.errors_client.InvalidRequest</span></code>
Invalid request</p>
</td>
</tr>
<tr class="field-odd field"><th class="field-name">Raise:</th><td class="field-body"><p class="first"><code class="xref py py-class docutils literal notranslate"><span class="pre">com.vmware.vapi.std.errors_client.Unauthorized</span></code>
Forbidden</p>
</td>
</tr>
<tr class="field-even field"><th class="field-name">Raise:</th><td class="field-body"><p class="first"><code class="xref py py-class docutils literal notranslate"><span class="pre">com.vmware.vapi.std.errors_client.NotFound</span></code>
Feature does not exist</p>
</td>
</tr>
<tr class="field-odd field"><th class="field-name">Raise:</th><td class="field-body"><p class="first last"><code class="xref py py-class docutils literal notranslate"><span class="pre">com.vmware.vapi.std.errors_client.Unauthenticated</span></code>
Unauthorized</p>
</td>
</tr>
</tbody>
</table>
</dd></dl>
</dd></dl>
</div>
</div>
@ -1136,7 +1397,7 @@ Unauthorized</p>
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT:'./',
VERSION:'1.2.0',
VERSION:'1.3.0',
LANGUAGE:'en',
COLLAPSE_INDEX:false,
FILE_SUFFIX:'.html',
@ -1147,13 +1408,11 @@ Unauthorized</p>
<script type="text/javascript" src="_static/jquery.js"></script>
<script type="text/javascript" src="_static/underscore.js"></script>
<script type="text/javascript" src="_static/doctools.js"></script>
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.1/MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script>
<script type="text/javascript" src="_static/js/theme.js"></script>
<script type="text/javascript" src="_static/js/theme.js"></script>
<script type="text/javascript">
jQuery(function () {

View File

@ -8,7 +8,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>com.vmware.vmc.orgs.sddcs package &mdash; VMware Cloud on AWS Console API 1.2.0 documentation</title>
<title>com.vmware.vmc.orgs.sddcs package &mdash; VMware Cloud on AWS Console API 1.3.0 documentation</title>
@ -24,8 +24,7 @@
<link rel="stylesheet" href="_static/css/theme.css" type="text/css" />
<link rel="stylesheet" href="_static/css/theme.css" type="text/css" />
<link rel="stylesheet" href="_static/pygments.css" type="text/css" />
<link rel="index" title="Index" href="genindex.html" />
<link rel="search" title="Search" href="search.html" />
@ -59,7 +58,7 @@
<div class="version">
1.2.0
1.3.0
</div>
@ -346,11 +345,11 @@ Unauthorized</p>
</dd></dl>
</div>
<div class="section" id="module-com.vmware.vmc.orgs.sddcs.mgw_client">
<span id="com-vmware-vmc-orgs-sddcs-mgw-client-module"></span><h2>com.vmware.vmc.orgs.sddcs.mgw_client module<a class="headerlink" href="#module-com.vmware.vmc.orgs.sddcs.mgw_client" title="Permalink to this headline"></a></h2>
<div class="section" id="module-com.vmware.vmc.orgs.sddcs.networking_client">
<span id="com-vmware-vmc-orgs-sddcs-networking-client-module"></span><h2>com.vmware.vmc.orgs.sddcs.networking_client module<a class="headerlink" href="#module-com.vmware.vmc.orgs.sddcs.networking_client" title="Permalink to this headline"></a></h2>
<dl class="class">
<dt id="com.vmware.vmc.orgs.sddcs.mgw_client.Publicips">
<em class="property">class </em><code class="descclassname">com.vmware.vmc.orgs.sddcs.mgw_client.</code><code class="descname">Publicips</code><span class="sig-paren">(</span><em>config</em><span class="sig-paren">)</span><a class="headerlink" href="#com.vmware.vmc.orgs.sddcs.mgw_client.Publicips" title="Permalink to this definition"></a></dt>
<dt id="com.vmware.vmc.orgs.sddcs.networking_client.ConnectivityTests">
<em class="property">class </em><code class="descclassname">com.vmware.vmc.orgs.sddcs.networking_client.</code><code class="descname">ConnectivityTests</code><span class="sig-paren">(</span><em>config</em><span class="sig-paren">)</span><a class="headerlink" href="#com.vmware.vmc.orgs.sddcs.networking_client.ConnectivityTests" 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>
<table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
@ -361,9 +360,9 @@ Unauthorized</p>
</tbody>
</table>
<dl class="method">
<dt id="com.vmware.vmc.orgs.sddcs.mgw_client.Publicips.get">
<code class="descname">get</code><span class="sig-paren">(</span><em>org</em>, <em>sddc</em>, <em>id</em><span class="sig-paren">)</span><a class="headerlink" href="#com.vmware.vmc.orgs.sddcs.mgw_client.Publicips.get" title="Permalink to this definition"></a></dt>
<dd><p>Get one public IP for a SDDC</p>
<dt id="com.vmware.vmc.orgs.sddcs.networking_client.ConnectivityTests.get">
<code class="descname">get</code><span class="sig-paren">(</span><em>org</em>, <em>sddc</em><span class="sig-paren">)</span><a class="headerlink" href="#com.vmware.vmc.orgs.sddcs.networking_client.ConnectivityTests.get" title="Permalink to this definition"></a></dt>
<dd><p>Retrieve metadata for connectivity tests.</p>
<table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
@ -371,25 +370,20 @@ Unauthorized</p>
<tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first simple">
<li><strong>org</strong> (<code class="xref py py-class docutils literal notranslate"><span class="pre">str</span></code>) Organization identifier. (required)</li>
<li><strong>sddc</strong> (<code class="xref py py-class docutils literal notranslate"><span class="pre">str</span></code>) Sddc Identifier. (required)</li>
<li><strong>id</strong> (<code class="xref py py-class docutils literal notranslate"><span class="pre">str</span></code>) ip allocation id (required)</li>
</ul>
</td>
</tr>
<tr class="field-even field"><th class="field-name">Return type:</th><td class="field-body"><p class="first"><a class="reference internal" href="com.vmware.vmc.html#com.vmware.vmc.model_client.SddcPublicIp" title="com.vmware.vmc.model_client.SddcPublicIp"><code class="xref py py-class docutils literal notranslate"><span class="pre">com.vmware.vmc.model_client.SddcPublicIp</span></code></a></p>
<tr class="field-even field"><th class="field-name">Return type:</th><td class="field-body"><p class="first"><a class="reference internal" href="com.vmware.vmc.html#com.vmware.vmc.model_client.ConnectivityValidationGroups" title="com.vmware.vmc.model_client.ConnectivityValidationGroups"><code class="xref py py-class docutils literal notranslate"><span class="pre">com.vmware.vmc.model_client.ConnectivityValidationGroups</span></code></a></p>
</td>
</tr>
<tr class="field-odd field"><th class="field-name">Returns:</th><td class="field-body"><p class="first">com.vmware.vmc.model.SddcPublicIp</p>
<tr class="field-odd field"><th class="field-name">Returns:</th><td class="field-body"><p class="first">com.vmware.vmc.model.ConnectivityValidationGroups</p>
</td>
</tr>
<tr class="field-even field"><th class="field-name">Raise:</th><td class="field-body"><p class="first"><code class="xref py py-class docutils literal notranslate"><span class="pre">com.vmware.vapi.std.errors_client.Unauthorized</span></code>
Forbidden</p>
</td>
</tr>
<tr class="field-odd field"><th class="field-name">Raise:</th><td class="field-body"><p class="first"><code class="xref py py-class docutils literal notranslate"><span class="pre">com.vmware.vapi.std.errors_client.NotFound</span></code>
Cannot find the public IP with given IP address</p>
</td>
</tr>
<tr class="field-even field"><th class="field-name">Raise:</th><td class="field-body"><p class="first last"><code class="xref py py-class docutils literal notranslate"><span class="pre">com.vmware.vapi.std.errors_client.Unauthenticated</span></code>
<tr class="field-odd field"><th class="field-name">Raise:</th><td class="field-body"><p class="first last"><code class="xref py py-class docutils literal notranslate"><span class="pre">com.vmware.vapi.std.errors_client.Unauthenticated</span></code>
Unauthorized</p>
</td>
</tr>
@ -398,9 +392,10 @@ Unauthorized</p>
</dd></dl>
<dl class="method">
<dt id="com.vmware.vmc.orgs.sddcs.mgw_client.Publicips.list">
<code class="descname">list</code><span class="sig-paren">(</span><em>org</em>, <em>sddc</em><span class="sig-paren">)</span><a class="headerlink" href="#com.vmware.vmc.orgs.sddcs.mgw_client.Publicips.list" title="Permalink to this definition"></a></dt>
<dd><p>list all public IPs for the mgw of a SDDC</p>
<dt id="com.vmware.vmc.orgs.sddcs.networking_client.ConnectivityTests.post">
<code class="descname">post</code><span class="sig-paren">(</span><em>org</em>, <em>sddc</em>, <em>request_info</em>, <em>action</em><span class="sig-paren">)</span><a class="headerlink" href="#com.vmware.vmc.orgs.sddcs.networking_client.ConnectivityTests.post" title="Permalink to this definition"></a></dt>
<dd><p>ConnectivityValidationGroupResultWrapper will be available at
task.params[test_result].</p>
<table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
@ -408,23 +403,25 @@ Unauthorized</p>
<tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first simple">
<li><strong>org</strong> (<code class="xref py py-class docutils literal notranslate"><span class="pre">str</span></code>) Organization identifier. (required)</li>
<li><strong>sddc</strong> (<code class="xref py py-class docutils literal notranslate"><span class="pre">str</span></code>) Sddc Identifier. (required)</li>
<li><strong>request_info</strong> (<a class="reference internal" href="com.vmware.vmc.html#com.vmware.vmc.model_client.ConnectivityValidationGroup" title="com.vmware.vmc.model_client.ConnectivityValidationGroup"><code class="xref py py-class docutils literal notranslate"><span class="pre">com.vmware.vmc.model_client.ConnectivityValidationGroup</span></code></a>) request information (required)</li>
<li><strong>action</strong> (<code class="xref py py-class docutils literal notranslate"><span class="pre">str</span></code>) If = start, start connectivity tests. (required)</li>
</ul>
</td>
</tr>
<tr class="field-even field"><th class="field-name">Return type:</th><td class="field-body"><p class="first"><a class="reference internal" href="#com.vmware.vmc.orgs.sddcs.mgw_client.Publicips.list" title="com.vmware.vmc.orgs.sddcs.mgw_client.Publicips.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.SddcPublicIp" title="com.vmware.vmc.model_client.SddcPublicIp"><code class="xref py py-class docutils literal notranslate"><span class="pre">com.vmware.vmc.model_client.SddcPublicIp</span></code></a></p>
<tr class="field-even field"><th class="field-name">Return type:</th><td class="field-body"><p class="first"><a class="reference internal" href="com.vmware.vmc.html#com.vmware.vmc.model_client.Task" title="com.vmware.vmc.model_client.Task"><code class="xref py py-class docutils literal notranslate"><span class="pre">com.vmware.vmc.model_client.Task</span></code></a></p>
</td>
</tr>
<tr class="field-odd field"><th class="field-name">Returns:</th><td class="field-body"><p class="first"></p>
<tr class="field-odd field"><th class="field-name">Returns:</th><td class="field-body"><p class="first">com.vmware.vmc.model.Task</p>
</td>
</tr>
<tr class="field-even field"><th class="field-name">Raise:</th><td class="field-body"><p class="first"><code class="xref py py-class docutils literal notranslate"><span class="pre">com.vmware.vapi.std.errors_client.Unauthorized</span></code>
<tr class="field-even field"><th class="field-name">Raise:</th><td class="field-body"><p class="first"><code class="xref py py-class docutils literal notranslate"><span class="pre">com.vmware.vapi.std.errors_client.InvalidRequest</span></code>
Bad Request</p>
</td>
</tr>
<tr class="field-odd field"><th class="field-name">Raise:</th><td class="field-body"><p class="first"><code class="xref py py-class docutils literal notranslate"><span class="pre">com.vmware.vapi.std.errors_client.Unauthorized</span></code>
Forbidden</p>
</td>
</tr>
<tr class="field-odd field"><th class="field-name">Raise:</th><td class="field-body"><p class="first"><code class="xref py py-class docutils literal notranslate"><span class="pre">com.vmware.vapi.std.errors_client.NotFound</span></code>
Cannot find the SDDC with given identifier</p>
</td>
</tr>
<tr class="field-even field"><th class="field-name">Raise:</th><td class="field-body"><p class="first last"><code class="xref py py-class docutils literal notranslate"><span class="pre">com.vmware.vapi.std.errors_client.Unauthenticated</span></code>
Unauthorized</p>
</td>
@ -436,8 +433,8 @@ Unauthorized</p>
</dd></dl>
<dl class="class">
<dt id="com.vmware.vmc.orgs.sddcs.mgw_client.StubFactory">
<em class="property">class </em><code class="descclassname">com.vmware.vmc.orgs.sddcs.mgw_client.</code><code class="descname">StubFactory</code><span class="sig-paren">(</span><em>stub_config</em><span class="sig-paren">)</span><a class="headerlink" href="#com.vmware.vmc.orgs.sddcs.mgw_client.StubFactory" title="Permalink to this definition"></a></dt>
<dt id="com.vmware.vmc.orgs.sddcs.networking_client.StubFactory">
<em class="property">class </em><code class="descclassname">com.vmware.vmc.orgs.sddcs.networking_client.</code><code class="descname">StubFactory</code><span class="sig-paren">(</span><em>stub_config</em><span class="sig-paren">)</span><a class="headerlink" href="#com.vmware.vmc.orgs.sddcs.networking_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>
<table class="docutils field-list" frame="void" rules="none">
@ -762,7 +759,7 @@ Not found. Requested object not found.</p>
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT:'./',
VERSION:'1.2.0',
VERSION:'1.3.0',
LANGUAGE:'en',
COLLAPSE_INDEX:false,
FILE_SUFFIX:'.html',
@ -773,13 +770,11 @@ Not found. Requested object not found.</p>
<script type="text/javascript" src="_static/jquery.js"></script>
<script type="text/javascript" src="_static/underscore.js"></script>
<script type="text/javascript" src="_static/doctools.js"></script>
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.1/MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script>
<script type="text/javascript" src="_static/js/theme.js"></script>
<script type="text/javascript" src="_static/js/theme.js"></script>
<script type="text/javascript">
jQuery(function () {

View File

@ -8,7 +8,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>com.vmware.vmc.orgs.sddcs.networks.cgws package &mdash; VMware Cloud on AWS Console API 1.2.0 documentation</title>
<title>com.vmware.vmc.orgs.sddcs.networks.cgws package &mdash; VMware Cloud on AWS Console API 1.3.0 documentation</title>
@ -24,8 +24,7 @@
<link rel="stylesheet" href="_static/css/theme.css" type="text/css" />
<link rel="stylesheet" href="_static/css/theme.css" type="text/css" />
<link rel="stylesheet" href="_static/pygments.css" type="text/css" />
<link rel="index" title="Index" href="genindex.html" />
<link rel="search" title="Search" href="search.html" />
@ -59,7 +58,7 @@
<div class="version">
1.2.0
1.3.0
</div>
@ -355,7 +354,7 @@ Not found. Requested object not found.</p>
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT:'./',
VERSION:'1.2.0',
VERSION:'1.3.0',
LANGUAGE:'en',
COLLAPSE_INDEX:false,
FILE_SUFFIX:'.html',
@ -366,13 +365,11 @@ Not found. Requested object not found.</p>
<script type="text/javascript" src="_static/jquery.js"></script>
<script type="text/javascript" src="_static/underscore.js"></script>
<script type="text/javascript" src="_static/doctools.js"></script>
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.1/MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script>
<script type="text/javascript" src="_static/js/theme.js"></script>
<script type="text/javascript" src="_static/js/theme.js"></script>
<script type="text/javascript">
jQuery(function () {

View File

@ -8,7 +8,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>com.vmware.vmc.orgs.sddcs.networks.edges.firewall package &mdash; VMware Cloud on AWS Console API 1.2.0 documentation</title>
<title>com.vmware.vmc.orgs.sddcs.networks.edges.firewall package &mdash; VMware Cloud on AWS Console API 1.3.0 documentation</title>
@ -24,8 +24,7 @@
<link rel="stylesheet" href="_static/css/theme.css" type="text/css" />
<link rel="stylesheet" href="_static/css/theme.css" type="text/css" />
<link rel="stylesheet" href="_static/pygments.css" type="text/css" />
<link rel="index" title="Index" href="genindex.html" />
<link rel="search" title="Search" href="search.html" />
@ -59,7 +58,7 @@
<div class="version">
1.2.0
1.3.0
</div>
@ -394,7 +393,7 @@ Not found. Requested object not found.</p>
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT:'./',
VERSION:'1.2.0',
VERSION:'1.3.0',
LANGUAGE:'en',
COLLAPSE_INDEX:false,
FILE_SUFFIX:'.html',
@ -405,13 +404,11 @@ Not found. Requested object not found.</p>
<script type="text/javascript" src="_static/jquery.js"></script>
<script type="text/javascript" src="_static/underscore.js"></script>
<script type="text/javascript" src="_static/doctools.js"></script>
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.1/MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script>
<script type="text/javascript" src="_static/js/theme.js"></script>
<script type="text/javascript" src="_static/js/theme.js"></script>
<script type="text/javascript">
jQuery(function () {

View File

@ -8,7 +8,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>com.vmware.vmc.orgs.sddcs.networks.edges package &mdash; VMware Cloud on AWS Console API 1.2.0 documentation</title>
<title>com.vmware.vmc.orgs.sddcs.networks.edges package &mdash; VMware Cloud on AWS Console API 1.3.0 documentation</title>
@ -24,8 +24,7 @@
<link rel="stylesheet" href="_static/css/theme.css" type="text/css" />
<link rel="stylesheet" href="_static/css/theme.css" type="text/css" />
<link rel="stylesheet" href="_static/pygments.css" type="text/css" />
<link rel="index" title="Index" href="genindex.html" />
<link rel="search" title="Search" href="search.html" />
@ -59,7 +58,7 @@
<div class="version">
1.2.0
1.3.0
</div>
@ -1124,7 +1123,7 @@ Not found. Requested object not found.</p>
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT:'./',
VERSION:'1.2.0',
VERSION:'1.3.0',
LANGUAGE:'en',
COLLAPSE_INDEX:false,
FILE_SUFFIX:'.html',
@ -1135,13 +1134,11 @@ Not found. Requested object not found.</p>
<script type="text/javascript" src="_static/jquery.js"></script>
<script type="text/javascript" src="_static/underscore.js"></script>
<script type="text/javascript" src="_static/doctools.js"></script>
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.1/MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script>
<script type="text/javascript" src="_static/js/theme.js"></script>
<script type="text/javascript" src="_static/js/theme.js"></script>
<script type="text/javascript">
jQuery(function () {

View File

@ -8,7 +8,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>com.vmware.vmc.orgs.sddcs.networks.edges.l2vpn package &mdash; VMware Cloud on AWS Console API 1.2.0 documentation</title>
<title>com.vmware.vmc.orgs.sddcs.networks.edges.l2vpn package &mdash; VMware Cloud on AWS Console API 1.3.0 documentation</title>
@ -24,8 +24,7 @@
<link rel="stylesheet" href="_static/css/theme.css" type="text/css" />
<link rel="stylesheet" href="_static/css/theme.css" type="text/css" />
<link rel="stylesheet" href="_static/pygments.css" type="text/css" />
<link rel="index" title="Index" href="genindex.html" />
<link rel="search" title="Search" href="search.html" />
@ -59,7 +58,7 @@
<div class="version">
1.2.0
1.3.0
</div>
@ -293,7 +292,7 @@ Not found. Requested object not found.</p>
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT:'./',
VERSION:'1.2.0',
VERSION:'1.3.0',
LANGUAGE:'en',
COLLAPSE_INDEX:false,
FILE_SUFFIX:'.html',
@ -304,13 +303,11 @@ Not found. Requested object not found.</p>
<script type="text/javascript" src="_static/jquery.js"></script>
<script type="text/javascript" src="_static/underscore.js"></script>
<script type="text/javascript" src="_static/doctools.js"></script>
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.1/MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script>
<script type="text/javascript" src="_static/js/theme.js"></script>
<script type="text/javascript" src="_static/js/theme.js"></script>
<script type="text/javascript">
jQuery(function () {

View File

@ -8,7 +8,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>com.vmware.vmc.orgs.sddcs.networks.edges.nat package &mdash; VMware Cloud on AWS Console API 1.2.0 documentation</title>
<title>com.vmware.vmc.orgs.sddcs.networks.edges.nat package &mdash; VMware Cloud on AWS Console API 1.3.0 documentation</title>
@ -24,8 +24,7 @@
<link rel="stylesheet" href="_static/css/theme.css" type="text/css" />
<link rel="stylesheet" href="_static/css/theme.css" type="text/css" />
<link rel="stylesheet" href="_static/pygments.css" type="text/css" />
<link rel="index" title="Index" href="genindex.html" />
<link rel="search" title="Search" href="search.html" />
@ -59,7 +58,7 @@
<div class="version">
1.2.0
1.3.0
</div>
@ -355,7 +354,7 @@ Not found. Requested object not found.</p>
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT:'./',
VERSION:'1.2.0',
VERSION:'1.3.0',
LANGUAGE:'en',
COLLAPSE_INDEX:false,
FILE_SUFFIX:'.html',
@ -366,13 +365,11 @@ Not found. Requested object not found.</p>
<script type="text/javascript" src="_static/jquery.js"></script>
<script type="text/javascript" src="_static/underscore.js"></script>
<script type="text/javascript" src="_static/doctools.js"></script>
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.1/MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script>
<script type="text/javascript" src="_static/js/theme.js"></script>
<script type="text/javascript" src="_static/js/theme.js"></script>
<script type="text/javascript">
jQuery(function () {

View File

@ -8,7 +8,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>com.vmware.vmc.orgs.sddcs.networks.edges.statistics package &mdash; VMware Cloud on AWS Console API 1.2.0 documentation</title>
<title>com.vmware.vmc.orgs.sddcs.networks.edges.statistics package &mdash; VMware Cloud on AWS Console API 1.3.0 documentation</title>
@ -24,8 +24,7 @@
<link rel="stylesheet" href="_static/css/theme.css" type="text/css" />
<link rel="stylesheet" href="_static/css/theme.css" type="text/css" />
<link rel="stylesheet" href="_static/pygments.css" type="text/css" />
<link rel="index" title="Index" href="genindex.html" />
<link rel="search" title="Search" href="search.html" />
@ -58,7 +57,7 @@
<div class="version">
1.2.0
1.3.0
</div>
@ -531,7 +530,7 @@ Not found. Requested object not found.</p>
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT:'./',
VERSION:'1.2.0',
VERSION:'1.3.0',
LANGUAGE:'en',
COLLAPSE_INDEX:false,
FILE_SUFFIX:'.html',
@ -542,13 +541,11 @@ Not found. Requested object not found.</p>
<script type="text/javascript" src="_static/jquery.js"></script>
<script type="text/javascript" src="_static/underscore.js"></script>
<script type="text/javascript" src="_static/doctools.js"></script>
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.1/MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script>
<script type="text/javascript" src="_static/js/theme.js"></script>
<script type="text/javascript" src="_static/js/theme.js"></script>
<script type="text/javascript">
jQuery(function () {

View File

@ -8,7 +8,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>com.vmware.vmc.orgs.sddcs.networks package &mdash; VMware Cloud on AWS Console API 1.2.0 documentation</title>
<title>com.vmware.vmc.orgs.sddcs.networks package &mdash; VMware Cloud on AWS Console API 1.3.0 documentation</title>
@ -24,8 +24,7 @@
<link rel="stylesheet" href="_static/css/theme.css" type="text/css" />
<link rel="stylesheet" href="_static/css/theme.css" type="text/css" />
<link rel="stylesheet" href="_static/pygments.css" type="text/css" />
<link rel="index" title="Index" href="genindex.html" />
<link rel="search" title="Search" href="search.html" />
@ -59,7 +58,7 @@
<div class="version">
1.2.0
1.3.0
</div>
@ -452,7 +451,7 @@ Not found. Requested object not found.</p>
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT:'./',
VERSION:'1.2.0',
VERSION:'1.3.0',
LANGUAGE:'en',
COLLAPSE_INDEX:false,
FILE_SUFFIX:'.html',
@ -463,13 +462,11 @@ Not found. Requested object not found.</p>
<script type="text/javascript" src="_static/jquery.js"></script>
<script type="text/javascript" src="_static/underscore.js"></script>
<script type="text/javascript" src="_static/doctools.js"></script>
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.1/MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script>
<script type="text/javascript" src="_static/js/theme.js"></script>
<script type="text/javascript" src="_static/js/theme.js"></script>
<script type="text/javascript">
jQuery(function () {

View File

@ -8,7 +8,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Interface definition language to python mapping for enumerated types &mdash; VMware Cloud on AWS Console API 1.2.0 documentation</title>
<title>Interface definition language to python mapping for enumerated types &mdash; VMware Cloud on AWS Console API 1.3.0 documentation</title>
@ -24,8 +24,7 @@
<link rel="stylesheet" href="_static/css/theme.css" type="text/css" />
<link rel="stylesheet" href="_static/css/theme.css" type="text/css" />
<link rel="stylesheet" href="_static/pygments.css" type="text/css" />
<link rel="index" title="Index" href="genindex.html" />
<link rel="search" title="Search" href="search.html" />
@ -57,7 +56,7 @@
<div class="version">
1.2.0
1.3.0
</div>
@ -261,7 +260,7 @@ enumerated type class.</p>
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT:'./',
VERSION:'1.2.0',
VERSION:'1.3.0',
LANGUAGE:'en',
COLLAPSE_INDEX:false,
FILE_SUFFIX:'.html',
@ -272,13 +271,11 @@ enumerated type class.</p>
<script type="text/javascript" src="_static/jquery.js"></script>
<script type="text/javascript" src="_static/underscore.js"></script>
<script type="text/javascript" src="_static/doctools.js"></script>
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.1/MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script>
<script type="text/javascript" src="_static/js/theme.js"></script>
<script type="text/javascript" src="_static/js/theme.js"></script>
<script type="text/javascript">
jQuery(function () {

View File

@ -9,7 +9,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Index &mdash; VMware Cloud on AWS Console API 1.2.0 documentation</title>
<title>Index &mdash; VMware Cloud on AWS Console API 1.3.0 documentation</title>
@ -25,8 +25,7 @@
<link rel="stylesheet" href="_static/css/theme.css" type="text/css" />
<link rel="stylesheet" href="_static/css/theme.css" type="text/css" />
<link rel="stylesheet" href="_static/pygments.css" type="text/css" />
<link rel="index" title="Index" href="#" />
<link rel="search" title="Search" href="search.html" />
@ -58,7 +57,7 @@
<div class="version">
1.2.0
1.3.0
</div>
@ -231,7 +230,7 @@
</li>
<li><a href="com.vmware.vmc.html#com.vmware.vmc.model_client.AwsKeyPair">AwsKeyPair (class in com.vmware.vmc.model_client)</a>
</li>
<li><a href="com.vmware.vmc.html#com.vmware.vmc.model_client.AwsOrgConfiguration">AwsOrgConfiguration (class in com.vmware.vmc.model_client)</a>
<li><a href="com.vmware.vmc.html#com.vmware.vmc.model_client.AwsKmsInfo">AwsKmsInfo (class in com.vmware.vmc.model_client)</a>
</li>
<li><a href="com.vmware.vmc.html#com.vmware.vmc.model_client.AwsSddcConfig">AwsSddcConfig (class in com.vmware.vmc.model_client)</a>
</li>
@ -288,12 +287,14 @@
<li><a href="com.vmware.vmc.orgs.html#module-com.vmware.vmc.orgs">com.vmware.vmc.orgs (module)</a>
</li>
<li><a href="com.vmware.vmc.orgs.html#module-com.vmware.vmc.orgs.account_link_client">com.vmware.vmc.orgs.account_link_client (module)</a>
</li>
<li><a href="com.vmware.vmc.orgs.html#module-com.vmware.vmc.orgs.reservations_client">com.vmware.vmc.orgs.reservations_client (module)</a>
</li>
<li><a href="com.vmware.vmc.orgs.sddcs.html#module-com.vmware.vmc.orgs.sddcs">com.vmware.vmc.orgs.sddcs (module)</a>
</li>
<li><a href="com.vmware.vmc.orgs.sddcs.html#module-com.vmware.vmc.orgs.sddcs.dns_client">com.vmware.vmc.orgs.sddcs.dns_client (module)</a>
</li>
<li><a href="com.vmware.vmc.orgs.sddcs.html#module-com.vmware.vmc.orgs.sddcs.mgw_client">com.vmware.vmc.orgs.sddcs.mgw_client (module)</a>
<li><a href="com.vmware.vmc.orgs.sddcs.html#module-com.vmware.vmc.orgs.sddcs.networking_client">com.vmware.vmc.orgs.sddcs.networking_client (module)</a>
</li>
<li><a href="com.vmware.vmc.orgs.sddcs.networks.html#module-com.vmware.vmc.orgs.sddcs.networks">com.vmware.vmc.orgs.sddcs.networks (module)</a>
</li>
@ -315,12 +316,12 @@
</li>
<li><a href="com.vmware.vmc.orgs.sddcs.networks.edges.html#module-com.vmware.vmc.orgs.sddcs.networks.edges.ipsec_client">com.vmware.vmc.orgs.sddcs.networks.edges.ipsec_client (module)</a>
</li>
</ul></td>
<td style="width: 33%; vertical-align: top;"><ul>
<li><a href="com.vmware.vmc.orgs.sddcs.networks.edges.l2vpn.html#module-com.vmware.vmc.orgs.sddcs.networks.edges.l2vpn">com.vmware.vmc.orgs.sddcs.networks.edges.l2vpn (module)</a>
</li>
<li><a href="com.vmware.vmc.orgs.sddcs.networks.edges.l2vpn.html#module-com.vmware.vmc.orgs.sddcs.networks.edges.l2vpn.config_client">com.vmware.vmc.orgs.sddcs.networks.edges.l2vpn.config_client (module)</a>
</li>
</ul></td>
<td style="width: 33%; vertical-align: top;"><ul>
<li><a href="com.vmware.vmc.orgs.sddcs.networks.edges.nat.html#module-com.vmware.vmc.orgs.sddcs.networks.edges.nat">com.vmware.vmc.orgs.sddcs.networks.edges.nat (module)</a>
</li>
<li><a href="com.vmware.vmc.orgs.sddcs.networks.edges.nat.html#module-com.vmware.vmc.orgs.sddcs.networks.edges.nat.config_client">com.vmware.vmc.orgs.sddcs.networks.edges.nat.config_client (module)</a>
@ -340,6 +341,8 @@
<li><a href="com.vmware.vmc.orgs.sddcs.html#module-com.vmware.vmc.orgs.sddcs.networks_client">com.vmware.vmc.orgs.sddcs.networks_client (module)</a>
</li>
<li><a href="com.vmware.vmc.orgs.html#module-com.vmware.vmc.orgs.sddcs_client">com.vmware.vmc.orgs.sddcs_client (module)</a>
</li>
<li><a href="com.vmware.vmc.orgs.html#module-com.vmware.vmc.orgs.tbrs_client">com.vmware.vmc.orgs.tbrs_client (module)</a>
</li>
<li><a href="com.vmware.vmc.html#module-com.vmware.vmc.orgs_client">com.vmware.vmc.orgs_client (module)</a>
</li>
@ -364,6 +367,18 @@
</li>
</ul></li>
<li><a href="com.vmware.vmc.orgs.html#com.vmware.vmc.orgs.account_link_client.ConnectedAccounts">ConnectedAccounts (class in com.vmware.vmc.orgs.account_link_client)</a>
</li>
<li><a href="com.vmware.vmc.html#com.vmware.vmc.model_client.ConnectivityAgentValidation">ConnectivityAgentValidation (class in com.vmware.vmc.model_client)</a>
</li>
<li><a href="com.vmware.vmc.orgs.sddcs.html#com.vmware.vmc.orgs.sddcs.networking_client.ConnectivityTests">ConnectivityTests (class in com.vmware.vmc.orgs.sddcs.networking_client)</a>
</li>
<li><a href="com.vmware.vmc.html#com.vmware.vmc.model_client.ConnectivityValidationGroup">ConnectivityValidationGroup (class in com.vmware.vmc.model_client)</a>
</li>
<li><a href="com.vmware.vmc.html#com.vmware.vmc.model_client.ConnectivityValidationGroups">ConnectivityValidationGroups (class in com.vmware.vmc.model_client)</a>
</li>
<li><a href="com.vmware.vmc.html#com.vmware.vmc.model_client.ConnectivityValidationInput">ConnectivityValidationInput (class in com.vmware.vmc.model_client)</a>
</li>
<li><a href="com.vmware.vmc.html#com.vmware.vmc.model_client.ConnectivityValidationSubGroup">ConnectivityValidationSubGroup (class in com.vmware.vmc.model_client)</a>
</li>
<li><a href="com.vmware.vmc.orgs.html#com.vmware.vmc.orgs.sddcs_client.Convert">Convert (class in com.vmware.vmc.orgs.sddcs_client)</a>
</li>
@ -379,8 +394,6 @@
<li><a href="com.vmware.vmc.orgs.html#com.vmware.vmc.orgs.sddcs_client.Esxs.create">(com.vmware.vmc.orgs.sddcs_client.Esxs method)</a>
</li>
<li><a href="com.vmware.vmc.orgs.html#com.vmware.vmc.orgs.sddcs_client.Publicips.create">(com.vmware.vmc.orgs.sddcs_client.Publicips method)</a>
</li>
<li><a href="com.vmware.vmc.html#com.vmware.vmc.orgs_client.AccountLink.create">(com.vmware.vmc.orgs_client.AccountLink method)</a>
</li>
<li><a href="com.vmware.vmc.html#com.vmware.vmc.orgs_client.Sddcs.create">(com.vmware.vmc.orgs_client.Sddcs method)</a>
</li>
@ -407,6 +420,62 @@
</li>
<li><a href="com.vmware.vmc.html#com.vmware.vmc.model_client.DataPermissions">DataPermissions (class in com.vmware.vmc.model_client)</a>
</li>
<li><a href="com.vmware.vmc.html#com.vmware.vmc.model_client.MaintenanceWindow.DAY_OF_WEEK_FRIDAY">DAY_OF_WEEK_FRIDAY (com.vmware.vmc.model_client.MaintenanceWindow attribute)</a>
<ul>
<li><a href="com.vmware.vmc.html#com.vmware.vmc.model_client.MaintenanceWindowGet.DAY_OF_WEEK_FRIDAY">(com.vmware.vmc.model_client.MaintenanceWindowGet attribute)</a>
</li>
<li><a href="com.vmware.vmc.html#com.vmware.vmc.model_client.ReservationSchedule.DAY_OF_WEEK_FRIDAY">(com.vmware.vmc.model_client.ReservationSchedule attribute)</a>
</li>
</ul></li>
<li><a href="com.vmware.vmc.html#com.vmware.vmc.model_client.MaintenanceWindow.DAY_OF_WEEK_MONDAY">DAY_OF_WEEK_MONDAY (com.vmware.vmc.model_client.MaintenanceWindow attribute)</a>
<ul>
<li><a href="com.vmware.vmc.html#com.vmware.vmc.model_client.MaintenanceWindowGet.DAY_OF_WEEK_MONDAY">(com.vmware.vmc.model_client.MaintenanceWindowGet attribute)</a>
</li>
<li><a href="com.vmware.vmc.html#com.vmware.vmc.model_client.ReservationSchedule.DAY_OF_WEEK_MONDAY">(com.vmware.vmc.model_client.ReservationSchedule attribute)</a>
</li>
</ul></li>
<li><a href="com.vmware.vmc.html#com.vmware.vmc.model_client.MaintenanceWindow.DAY_OF_WEEK_SATURDAY">DAY_OF_WEEK_SATURDAY (com.vmware.vmc.model_client.MaintenanceWindow attribute)</a>
<ul>
<li><a href="com.vmware.vmc.html#com.vmware.vmc.model_client.MaintenanceWindowGet.DAY_OF_WEEK_SATURDAY">(com.vmware.vmc.model_client.MaintenanceWindowGet attribute)</a>
</li>
<li><a href="com.vmware.vmc.html#com.vmware.vmc.model_client.ReservationSchedule.DAY_OF_WEEK_SATURDAY">(com.vmware.vmc.model_client.ReservationSchedule attribute)</a>
</li>
</ul></li>
<li><a href="com.vmware.vmc.html#com.vmware.vmc.model_client.MaintenanceWindow.DAY_OF_WEEK_SUNDAY">DAY_OF_WEEK_SUNDAY (com.vmware.vmc.model_client.MaintenanceWindow attribute)</a>
<ul>
<li><a href="com.vmware.vmc.html#com.vmware.vmc.model_client.MaintenanceWindowGet.DAY_OF_WEEK_SUNDAY">(com.vmware.vmc.model_client.MaintenanceWindowGet attribute)</a>
</li>
<li><a href="com.vmware.vmc.html#com.vmware.vmc.model_client.ReservationSchedule.DAY_OF_WEEK_SUNDAY">(com.vmware.vmc.model_client.ReservationSchedule attribute)</a>
</li>
</ul></li>
<li><a href="com.vmware.vmc.html#com.vmware.vmc.model_client.MaintenanceWindow.DAY_OF_WEEK_THURSDAY">DAY_OF_WEEK_THURSDAY (com.vmware.vmc.model_client.MaintenanceWindow attribute)</a>
<ul>
<li><a href="com.vmware.vmc.html#com.vmware.vmc.model_client.MaintenanceWindowGet.DAY_OF_WEEK_THURSDAY">(com.vmware.vmc.model_client.MaintenanceWindowGet attribute)</a>
</li>
<li><a href="com.vmware.vmc.html#com.vmware.vmc.model_client.ReservationSchedule.DAY_OF_WEEK_THURSDAY">(com.vmware.vmc.model_client.ReservationSchedule attribute)</a>
</li>
</ul></li>
<li><a href="com.vmware.vmc.html#com.vmware.vmc.model_client.MaintenanceWindow.DAY_OF_WEEK_TUESDAY">DAY_OF_WEEK_TUESDAY (com.vmware.vmc.model_client.MaintenanceWindow attribute)</a>
<ul>
<li><a href="com.vmware.vmc.html#com.vmware.vmc.model_client.MaintenanceWindowGet.DAY_OF_WEEK_TUESDAY">(com.vmware.vmc.model_client.MaintenanceWindowGet attribute)</a>
</li>
<li><a href="com.vmware.vmc.html#com.vmware.vmc.model_client.ReservationSchedule.DAY_OF_WEEK_TUESDAY">(com.vmware.vmc.model_client.ReservationSchedule attribute)</a>
</li>
</ul></li>
<li><a href="com.vmware.vmc.html#com.vmware.vmc.model_client.MaintenanceWindow.DAY_OF_WEEK_WEDNESDAY">DAY_OF_WEEK_WEDNESDAY (com.vmware.vmc.model_client.MaintenanceWindow attribute)</a>
<ul>
<li><a href="com.vmware.vmc.html#com.vmware.vmc.model_client.MaintenanceWindowGet.DAY_OF_WEEK_WEDNESDAY">(com.vmware.vmc.model_client.MaintenanceWindowGet attribute)</a>
</li>
<li><a href="com.vmware.vmc.html#com.vmware.vmc.model_client.ReservationSchedule.DAY_OF_WEEK_WEDNESDAY">(com.vmware.vmc.model_client.ReservationSchedule attribute)</a>
</li>
</ul></li>
<li><a href="com.vmware.vmc.orgs.html#com.vmware.vmc.orgs.account_link_client.ConnectedAccounts.delete">delete() (com.vmware.vmc.orgs.account_link_client.ConnectedAccounts method)</a>
<ul>
@ -433,24 +502,18 @@
<li><a href="com.vmware.vmc.html#com.vmware.vmc.orgs_client.SddcTemplates.delete">(com.vmware.vmc.orgs_client.SddcTemplates method)</a>
</li>
<li><a href="com.vmware.vmc.html#com.vmware.vmc.orgs_client.Sddcs.delete">(com.vmware.vmc.orgs_client.Sddcs method)</a>
</li>
<li><a href="com.vmware.vmc.html#com.vmware.vmc.orgs_client.Subscriptions.delete">(com.vmware.vmc.orgs_client.Subscriptions method)</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.SddcResourceConfig.DEPLOYMENT_TYPE_MULTI_AZ">DEPLOYMENT_TYPE_MULTI_AZ (com.vmware.vmc.model_client.SddcResourceConfig attribute)</a>
</li>
<li><a href="com.vmware.vmc.html#com.vmware.vmc.model_client.SddcConfig.DEPLOYMENT_TYPE_MULTIAZ">DEPLOYMENT_TYPE_MULTIAZ (com.vmware.vmc.model_client.SddcConfig attribute)</a>
<ul>
<li><a href="com.vmware.vmc.html#com.vmware.vmc.model_client.SddcResourceConfig.DEPLOYMENT_TYPE_MULTIAZ">(com.vmware.vmc.model_client.SddcResourceConfig attribute)</a>
</li>
</ul></li>
<li><a href="com.vmware.vmc.html#com.vmware.vmc.model_client.SddcResourceConfig.DEPLOYMENT_TYPE_SINGLE_AZ">DEPLOYMENT_TYPE_SINGLE_AZ (com.vmware.vmc.model_client.SddcResourceConfig attribute)</a>
</li>
<li><a href="com.vmware.vmc.html#com.vmware.vmc.model_client.SddcConfig.DEPLOYMENT_TYPE_SINGLEAZ">DEPLOYMENT_TYPE_SINGLEAZ (com.vmware.vmc.model_client.SddcConfig attribute)</a>
<ul>
<li><a href="com.vmware.vmc.html#com.vmware.vmc.model_client.SddcResourceConfig.DEPLOYMENT_TYPE_SINGLEAZ">(com.vmware.vmc.model_client.SddcResourceConfig attribute)</a>
</li>
</ul></li>
<li><a href="com.vmware.vmc.html#com.vmware.vmc.model_client.Vpn.DH_GROUP_DH14">DH_GROUP_DH14 (com.vmware.vmc.model_client.Vpn attribute)</a>
</li>
<li><a href="com.vmware.vmc.html#com.vmware.vmc.model_client.Vpn.DH_GROUP_DH15">DH_GROUP_DH15 (com.vmware.vmc.model_client.Vpn attribute)</a>
@ -466,6 +529,10 @@
<li><a href="com.vmware.vmc.html#com.vmware.vmc.model_client.DhcpLeaseInfo">DhcpLeaseInfo (class in com.vmware.vmc.model_client)</a>
</li>
<li><a href="com.vmware.vmc.html#com.vmware.vmc.model_client.DhcpLeases">DhcpLeases (class in com.vmware.vmc.model_client)</a>
</li>
<li><a href="com.vmware.vmc.html#com.vmware.vmc.model_client.Vpn.DIGEST_ALGORITHM_SHA1">DIGEST_ALGORITHM_SHA1 (com.vmware.vmc.model_client.Vpn attribute)</a>
</li>
<li><a href="com.vmware.vmc.html#com.vmware.vmc.model_client.Vpn.DIGEST_ALGORITHM_SHA_256">DIGEST_ALGORITHM_SHA_256 (com.vmware.vmc.model_client.Vpn attribute)</a>
</li>
<li><a href="com.vmware.vmc.html#com.vmware.vmc.model_client.DnsConfig">DnsConfig (class in com.vmware.vmc.model_client)</a>
</li>
@ -588,7 +655,9 @@
</li>
<li><a href="com.vmware.vmc.orgs.html#com.vmware.vmc.orgs.account_link_client.SddcConnections.get">(com.vmware.vmc.orgs.account_link_client.SddcConnections method)</a>
</li>
<li><a href="com.vmware.vmc.orgs.sddcs.html#com.vmware.vmc.orgs.sddcs.mgw_client.Publicips.get">(com.vmware.vmc.orgs.sddcs.mgw_client.Publicips method)</a>
<li><a href="com.vmware.vmc.orgs.html#com.vmware.vmc.orgs.reservations_client.Mw.get">(com.vmware.vmc.orgs.reservations_client.Mw method)</a>
</li>
<li><a href="com.vmware.vmc.orgs.sddcs.html#com.vmware.vmc.orgs.sddcs.networking_client.ConnectivityTests.get">(com.vmware.vmc.orgs.sddcs.networking_client.ConnectivityTests method)</a>
</li>
<li><a href="com.vmware.vmc.orgs.sddcs.networks.cgws.html#com.vmware.vmc.orgs.sddcs.networks.cgws.l2vpn_client.Config.get">(com.vmware.vmc.orgs.sddcs.networks.cgws.l2vpn_client.Config method)</a>
</li>
@ -637,6 +706,10 @@
<li><a href="com.vmware.vmc.orgs.html#com.vmware.vmc.orgs.sddcs_client.Publicips.get">(com.vmware.vmc.orgs.sddcs_client.Publicips method)</a>
</li>
<li><a href="com.vmware.vmc.orgs.html#com.vmware.vmc.orgs.sddcs_client.SddcTemplate.get">(com.vmware.vmc.orgs.sddcs_client.SddcTemplate method)</a>
</li>
<li><a href="com.vmware.vmc.orgs.html#com.vmware.vmc.orgs.tbrs_client.SupportWindow.get">(com.vmware.vmc.orgs.tbrs_client.SupportWindow method)</a>
</li>
<li><a href="com.vmware.vmc.html#com.vmware.vmc.orgs_client.AccountLink.get">(com.vmware.vmc.orgs_client.AccountLink method)</a>
</li>
<li><a href="com.vmware.vmc.html#com.vmware.vmc.orgs_client.SddcTemplates.get">(com.vmware.vmc.orgs_client.SddcTemplates method)</a>
</li>
@ -677,10 +750,36 @@
<h2 id="I">I</h2>
<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.ConnectivityValidationSubGroup.ID_ACTIVE_DIRECTORY">ID_ACTIVE_DIRECTORY (com.vmware.vmc.model_client.ConnectivityValidationSubGroup attribute)</a>
</li>
<li><a href="com.vmware.vmc.html#com.vmware.vmc.model_client.ConnectivityValidationGroup.ID_HLM">ID_HLM (com.vmware.vmc.model_client.ConnectivityValidationGroup attribute)</a>
</li>
<li><a href="com.vmware.vmc.html#com.vmware.vmc.model_client.ConnectivityValidationInput.ID_HOST_IP">ID_HOST_IP (com.vmware.vmc.model_client.ConnectivityValidationInput attribute)</a>
</li>
<li><a href="com.vmware.vmc.html#com.vmware.vmc.model_client.ConnectivityValidationInput.ID_HOSTNAME">ID_HOSTNAME (com.vmware.vmc.model_client.ConnectivityValidationInput attribute)</a>
</li>
<li><a href="com.vmware.vmc.html#com.vmware.vmc.model_client.ConnectivityValidationInput.ID_HOSTNAME_OR_IP">ID_HOSTNAME_OR_IP (com.vmware.vmc.model_client.ConnectivityValidationInput attribute)</a>
</li>
<li><a href="com.vmware.vmc.html#com.vmware.vmc.model_client.ConnectivityValidationSubGroup.ID_ONPREM_ESX">ID_ONPREM_ESX (com.vmware.vmc.model_client.ConnectivityValidationSubGroup attribute)</a>
</li>
<li><a href="com.vmware.vmc.html#com.vmware.vmc.model_client.ConnectivityValidationSubGroup.ID_ONPREM_PSC">ID_ONPREM_PSC (com.vmware.vmc.model_client.ConnectivityValidationSubGroup attribute)</a>
</li>
<li><a href="com.vmware.vmc.html#com.vmware.vmc.model_client.ConnectivityValidationSubGroup.ID_ONPREM_VCENTER">ID_ONPREM_VCENTER (com.vmware.vmc.model_client.ConnectivityValidationSubGroup attribute)</a>
</li>
<li><a href="com.vmware.vmc.html#com.vmware.vmc.model_client.ConnectivityValidationSubGroup.ID_PRIMARY_DNS">ID_PRIMARY_DNS (com.vmware.vmc.model_client.ConnectivityValidationSubGroup attribute)</a>
</li>
<li><a href="com.vmware.vmc.html#com.vmware.vmc.model_client.ConnectivityValidationSubGroup.ID_SECONDARY_DNS">ID_SECONDARY_DNS (com.vmware.vmc.model_client.ConnectivityValidationSubGroup attribute)</a>
</li>
<li><a href="com.vmware.vmc.html#com.vmware.vmc.model_client.Vpn.IKE_OPTION_IKEV1">IKE_OPTION_IKEV1 (com.vmware.vmc.model_client.Vpn attribute)</a>
</li>
<li><a href="com.vmware.vmc.html#com.vmware.vmc.model_client.Vpn.IKE_OPTION_IKEV2">IKE_OPTION_IKEV2 (com.vmware.vmc.model_client.Vpn attribute)</a>
</li>
<li><a href="com.vmware.vmc.html#com.vmware.vmc.model_client.InteractionPermissions">InteractionPermissions (class in com.vmware.vmc.model_client)</a>
</li>
<li><a href="com.vmware.vmc.orgs.sddcs.networks.edges.statistics.html#com.vmware.vmc.orgs.sddcs.networks.edges.statistics.dashboard_client.Interface">Interface (class in com.vmware.vmc.orgs.sddcs.networks.edges.statistics.dashboard_client)</a>
</li>
</ul></td>
<td style="width: 33%; vertical-align: top;"><ul>
<li><a href="com.vmware.vmc.orgs.sddcs.networks.edges.html#com.vmware.vmc.orgs.sddcs.networks.edges.statistics_client.Interfaces">Interfaces (class in com.vmware.vmc.orgs.sddcs.networks.edges.statistics_client)</a>
</li>
<li><a href="com.vmware.vmc.html#com.vmware.vmc.model_client.InterfacesDashboardStats">InterfacesDashboardStats (class in com.vmware.vmc.model_client)</a>
@ -695,8 +794,6 @@
<li><a href="com.vmware.vmc.orgs.sddcs.networks.edges.statistics.html#com.vmware.vmc.orgs.sddcs.networks.edges.statistics.dashboard_client.Ipsec">(class in com.vmware.vmc.orgs.sddcs.networks.edges.statistics.dashboard_client)</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.IpsecDashboardStats">IpsecDashboardStats (class in com.vmware.vmc.model_client)</a>
</li>
<li><a href="com.vmware.vmc.html#com.vmware.vmc.model_client.IpsecGlobalConfig">IpsecGlobalConfig (class in com.vmware.vmc.model_client)</a>
@ -720,6 +817,10 @@
<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.KeyValueAttributes">KeyValueAttributes (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.KmsVpcEndpoint">KmsVpcEndpoint (class in com.vmware.vmc.model_client)</a>
</li>
</ul></td>
</tr></table>
@ -739,14 +840,14 @@
</li>
<li><a href="com.vmware.vmc.html#com.vmware.vmc.model_client.LicenceAclPermissions">LicenceAclPermissions (class in com.vmware.vmc.model_client)</a>
</li>
<li><a href="com.vmware.vmc.orgs.sddcs.html#com.vmware.vmc.orgs.sddcs.mgw_client.Publicips.list">list() (com.vmware.vmc.orgs.sddcs.mgw_client.Publicips method)</a>
<li><a href="com.vmware.vmc.orgs.html#com.vmware.vmc.orgs.sddcs_client.Publicips.list">list() (com.vmware.vmc.orgs.sddcs_client.Publicips method)</a>
<ul>
<li><a href="com.vmware.vmc.orgs.html#com.vmware.vmc.orgs.sddcs_client.Publicips.list">(com.vmware.vmc.orgs.sddcs_client.Publicips method)</a>
</li>
<li><a href="com.vmware.vmc.html#com.vmware.vmc.orgs_client.OfferInstances.list">(com.vmware.vmc.orgs_client.OfferInstances method)</a>
</li>
<li><a href="com.vmware.vmc.html#com.vmware.vmc.orgs_client.Providers.list">(com.vmware.vmc.orgs_client.Providers method)</a>
</li>
<li><a href="com.vmware.vmc.html#com.vmware.vmc.orgs_client.Reservations.list">(com.vmware.vmc.orgs_client.Reservations method)</a>
</li>
<li><a href="com.vmware.vmc.html#com.vmware.vmc.orgs_client.SddcTemplates.list">(com.vmware.vmc.orgs_client.SddcTemplates method)</a>
</li>
@ -760,6 +861,8 @@
</ul></td>
<td style="width: 33%; vertical-align: top;"><ul>
<li><a href="com.vmware.vmc.html#com.vmware.vmc.model_client.LoadBalancerDashboardStats">LoadBalancerDashboardStats (class in com.vmware.vmc.model_client)</a>
</li>
<li><a href="com.vmware.html#com.vmware.vmc_client.Locale">Locale (class in com.vmware.vmc_client)</a>
</li>
<li><a href="com.vmware.vmc.html#com.vmware.vmc.model_client.Logging">Logging (class in com.vmware.vmc.model_client)</a>
</li>
@ -779,17 +882,25 @@
<td style="width: 33%; vertical-align: top;"><ul>
<li><a href="com.vmware.vmc.html#com.vmware.vmc.model_client.MacAddress">MacAddress (class in com.vmware.vmc.model_client)</a>
</li>
<li><a href="com.vmware.vmc.html#com.vmware.vmc.model_client.ManagementGatewayTemplate">ManagementGatewayTemplate (class in com.vmware.vmc.model_client)</a>
<li><a href="com.vmware.vmc.html#com.vmware.vmc.model_client.MaintenanceWindow">MaintenanceWindow (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><a href="com.vmware.vmc.html#com.vmware.vmc.model_client.MaintenanceWindowEntry">MaintenanceWindowEntry (class in com.vmware.vmc.model_client)</a>
</li>
<li><a href="com.vmware.vmc.html#com.vmware.vmc.model_client.MaintenanceWindowGet">MaintenanceWindowGet (class in com.vmware.vmc.model_client)</a>
</li>
<li><a href="com.vmware.vmc.html#com.vmware.vmc.model_client.ManagementGatewayTemplate">ManagementGatewayTemplate (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.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.MapZonesRequest">MapZonesRequest (class in com.vmware.vmc.model_client)</a>
</li>
<li><a href="com.vmware.vmc.html#com.vmware.vmc.model_client.MetaDashboardStats">MetaDashboardStats (class in com.vmware.vmc.model_client)</a>
</li>
<li><a href="com.vmware.vmc.html#com.vmware.vmc.model_client.Metadata">Metadata (class in com.vmware.vmc.model_client)</a>
</li>
<li><a href="com.vmware.vmc.orgs.html#com.vmware.vmc.orgs.reservations_client.Mw">Mw (class in com.vmware.vmc.orgs.reservations_client)</a>
</li>
</ul></td>
</tr></table>
@ -811,7 +922,7 @@
</li>
</ul></td>
<td style="width: 33%; vertical-align: top;"><ul>
<li><a href="com.vmware.vmc.html#com.vmware.vmc.model_client.NetworkingTemplate">NetworkingTemplate (class in com.vmware.vmc.model_client)</a>
<li><a href="com.vmware.vmc.html#com.vmware.vmc.model_client.NetworkTemplate">NetworkTemplate (class in com.vmware.vmc.model_client)</a>
</li>
<li><a href="com.vmware.vmc.html#com.vmware.vmc.model_client.Nsxfirewallrule">Nsxfirewallrule (class in com.vmware.vmc.model_client)</a>
</li>
@ -836,16 +947,14 @@
<li><a href="com.vmware.vmc.html#com.vmware.vmc.model_client.OfferInstancesHolder">OfferInstancesHolder (class in com.vmware.vmc.model_client)</a>
</li>
<li><a href="com.vmware.vmc.html#com.vmware.vmc.model_client.OfferType">OfferType (class in com.vmware.vmc.model_client)</a>
</li>
<li><a href="com.vmware.vmc.html#com.vmware.vmc.model_client.OfferType.ON_DEMAND">ON_DEMAND (com.vmware.vmc.model_client.OfferType 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.OfferType.ON_DEMAND">ON_DEMAND (com.vmware.vmc.model_client.OfferType attribute)</a>
</li>
<li><a href="com.vmware.vmc.html#com.vmware.vmc.model_client.OnDemandOfferInstance">OnDemandOfferInstance (class in com.vmware.vmc.model_client)</a>
</li>
<li><a href="com.vmware.vmc.html#com.vmware.vmc.model_client.Organization">Organization (class in com.vmware.vmc.model_client)</a>
</li>
<li><a href="com.vmware.vmc.html#com.vmware.vmc.model_client.OrgConfiguration">OrgConfiguration (class in com.vmware.vmc.model_client)</a>
</li>
<li><a href="com.vmware.vmc.html#com.vmware.vmc.model_client.OrgProperties">OrgProperties (class in com.vmware.vmc.model_client)</a>
</li>
@ -876,35 +985,37 @@
</li>
<li><a href="com.vmware.vmc.orgs.html#com.vmware.vmc.orgs.account_link_client.MapCustomerZones.post">(com.vmware.vmc.orgs.account_link_client.MapCustomerZones method)</a>
</li>
</ul></li>
<li><a href="com.vmware.vmc.orgs.sddcs.html#com.vmware.vmc.orgs.sddcs.dns_client.Private">Private (class in com.vmware.vmc.orgs.sddcs.dns_client)</a>
<li><a href="com.vmware.vmc.orgs.sddcs.html#com.vmware.vmc.orgs.sddcs.networking_client.ConnectivityTests.post">(com.vmware.vmc.orgs.sddcs.networking_client.ConnectivityTests method)</a>
</li>
<li><a href="com.vmware.vmc.orgs.html#com.vmware.vmc.orgs.tbrs_client.Reservation.post">(com.vmware.vmc.orgs.tbrs_client.Reservation method)</a>
</li>
</ul></li>
</ul></td>
<td style="width: 33%; vertical-align: top;"><ul>
<li><a href="com.vmware.vmc.orgs.sddcs.html#com.vmware.vmc.orgs.sddcs.dns_client.Private">Private (class in com.vmware.vmc.orgs.sddcs.dns_client)</a>
</li>
<li><a href="com.vmware.vmc.html#com.vmware.vmc.model_client.Organization.PROJECT_STATE_CREATED">PROJECT_STATE_CREATED (com.vmware.vmc.model_client.Organization attribute)</a>
</li>
<li><a href="com.vmware.vmc.html#com.vmware.vmc.model_client.Organization.PROJECT_STATE_DELETED">PROJECT_STATE_DELETED (com.vmware.vmc.model_client.Organization attribute)</a>
</li>
<li><a href="com.vmware.vmc.html#com.vmware.vmc.model_client.OrgConfiguration.PROVIDER_AWS">PROVIDER_AWS (com.vmware.vmc.model_client.OrgConfiguration attribute)</a>
<li><a href="com.vmware.vmc.html#com.vmware.vmc.model_client.Sddc.PROVIDER_AWS">PROVIDER_AWS (com.vmware.vmc.model_client.Sddc attribute)</a>
<ul>
<li><a href="com.vmware.vmc.html#com.vmware.vmc.model_client.Sddc.PROVIDER_AWS">(com.vmware.vmc.model_client.Sddc attribute)</a>
</li>
<li><a href="com.vmware.vmc.html#com.vmware.vmc.model_client.SddcConfig.PROVIDER_AWS">(com.vmware.vmc.model_client.SddcConfig attribute)</a>
</li>
<li><a href="com.vmware.vmc.html#com.vmware.vmc.model_client.SddcResourceConfig.PROVIDER_AWS">(com.vmware.vmc.model_client.SddcResourceConfig attribute)</a>
</li>
<li><a href="com.vmware.vmc.html#com.vmware.vmc.model_client.SddcTemplate.PROVIDER_AWS">(com.vmware.vmc.model_client.SddcTemplate attribute)</a>
</li>
</ul></li>
<li><a href="com.vmware.vmc.html#com.vmware.vmc.orgs_client.Providers">Providers (class in com.vmware.vmc.orgs_client)</a>
</li>
<li><a href="com.vmware.vmc.orgs.sddcs.html#com.vmware.vmc.orgs.sddcs.dns_client.Public">Public (class in com.vmware.vmc.orgs.sddcs.dns_client)</a>
</li>
<li><a href="com.vmware.vmc.orgs.sddcs.html#com.vmware.vmc.orgs.sddcs.mgw_client.Publicips">Publicips (class in com.vmware.vmc.orgs.sddcs.mgw_client)</a>
<li><a href="com.vmware.vmc.orgs.html#com.vmware.vmc.orgs.sddcs_client.Publicips">Publicips (class in com.vmware.vmc.orgs.sddcs_client)</a>
</li>
<li><a href="com.vmware.vmc.orgs.html#com.vmware.vmc.orgs.reservations_client.Mw.put">put() (com.vmware.vmc.orgs.reservations_client.Mw method)</a>
<ul>
<li><a href="com.vmware.vmc.orgs.html#com.vmware.vmc.orgs.sddcs_client.Publicips">(class in com.vmware.vmc.orgs.sddcs_client)</a>
<li><a href="com.vmware.vmc.orgs.html#com.vmware.vmc.orgs.tbrs_client.SupportWindow.put">(com.vmware.vmc.orgs.tbrs_client.SupportWindow method)</a>
</li>
</ul></li>
</ul></td>
@ -914,13 +1025,37 @@
<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.Requests">Requests (class in com.vmware.vmc.model_client)</a>
</li>
<li><a href="com.vmware.vmc.html#com.vmware.vmc.model_client.Reservation">Reservation (class in com.vmware.vmc.model_client)</a>
<ul>
<li><a href="com.vmware.vmc.orgs.html#com.vmware.vmc.orgs.tbrs_client.Reservation">(class in com.vmware.vmc.orgs.tbrs_client)</a>
</li>
</ul></li>
<li><a href="com.vmware.vmc.html#com.vmware.vmc.model_client.ReservationWindow.RESERVATION_STATE_CANCELED">RESERVATION_STATE_CANCELED (com.vmware.vmc.model_client.ReservationWindow attribute)</a>
</li>
<li><a href="com.vmware.vmc.html#com.vmware.vmc.model_client.ReservationWindow.RESERVATION_STATE_COMPLETED">RESERVATION_STATE_COMPLETED (com.vmware.vmc.model_client.ReservationWindow attribute)</a>
</li>
<li><a href="com.vmware.vmc.html#com.vmware.vmc.model_client.ReservationWindow.RESERVATION_STATE_RUNNING">RESERVATION_STATE_RUNNING (com.vmware.vmc.model_client.ReservationWindow attribute)</a>
</li>
<li><a href="com.vmware.vmc.html#com.vmware.vmc.model_client.ReservationWindow.RESERVATION_STATE_SCHEDULED">RESERVATION_STATE_SCHEDULED (com.vmware.vmc.model_client.ReservationWindow attribute)</a>
</li>
<li><a href="com.vmware.vmc.html#com.vmware.vmc.model_client.ReservationInMw">ReservationInMw (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.orgs_client.Reservations">Reservations (class in com.vmware.vmc.orgs_client)</a>
</li>
<li><a href="com.vmware.vmc.html#com.vmware.vmc.model_client.ReservationSchedule">ReservationSchedule (class in com.vmware.vmc.model_client)</a>
</li>
<li><a href="com.vmware.vmc.html#com.vmware.vmc.model_client.ReservationWindow">ReservationWindow (class in com.vmware.vmc.model_client)</a>
</li>
<li><a href="com.vmware.vmc.html#com.vmware.vmc.model_client.ReservationWindowMaintenanceProperties">ReservationWindowMaintenanceProperties (class in com.vmware.vmc.model_client)</a>
</li>
<li><a href="com.vmware.vmc.html#com.vmware.vmc.model_client.Result">Result (class in com.vmware.vmc.model_client)</a>
</li>
<li><a href="com.vmware.vmc.html#com.vmware.vmc.model_client.FirewallRule.RULE_TYPE_DEFAULT">RULE_TYPE_DEFAULT (com.vmware.vmc.model_client.FirewallRule 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.FirewallRule.RULE_TYPE_USER">RULE_TYPE_USER (com.vmware.vmc.model_client.FirewallRule attribute)</a>
</li>
<li><a href="com.vmware.vmc.orgs.sddcs.networks.edges.firewall.html#com.vmware.vmc.orgs.sddcs.networks.edges.firewall.config_client.Rules">Rules (class in com.vmware.vmc.orgs.sddcs.networks.edges.firewall.config_client)</a>
@ -956,6 +1091,8 @@
<li><a href="com.vmware.vmc.html#com.vmware.vmc.model_client.SddcConfig">SddcConfig (class in com.vmware.vmc.model_client)</a>
</li>
<li><a href="com.vmware.vmc.orgs.html#com.vmware.vmc.orgs.account_link_client.SddcConnections">SddcConnections (class in com.vmware.vmc.orgs.account_link_client)</a>
</li>
<li><a href="com.vmware.vmc.html#com.vmware.vmc.model_client.SddcId">SddcId (class in com.vmware.vmc.model_client)</a>
</li>
<li><a href="com.vmware.vmc.html#com.vmware.vmc.model_client.SddcLinkConfig">SddcLinkConfig (class in com.vmware.vmc.model_client)</a>
</li>
@ -976,6 +1113,8 @@
<li><a href="com.vmware.vmc.html#com.vmware.vmc.model_client.SddcResourceConfig">SddcResourceConfig (class in com.vmware.vmc.model_client)</a>
</li>
<li><a href="com.vmware.vmc.html#com.vmware.vmc.orgs_client.Sddcs">Sddcs (class in com.vmware.vmc.orgs_client)</a>
</li>
<li><a href="com.vmware.vmc.html#com.vmware.vmc.model_client.SddcStateRequest">SddcStateRequest (class in com.vmware.vmc.model_client)</a>
</li>
<li><a href="com.vmware.vmc.html#com.vmware.vmc.model_client.SddcTemplate">SddcTemplate (class in com.vmware.vmc.model_client)</a>
@ -1024,31 +1163,37 @@
<li><a href="com.vmware.vmc.html#com.vmware.vmc.model_client.PopServiceInfo.SERVICE_S3_ADAPTER">SERVICE_S3_ADAPTER (com.vmware.vmc.model_client.PopServiceInfo attribute)</a>
</li>
<li><a href="com.vmware.vmc.html#com.vmware.vmc.model_client.ServiceError">ServiceError (class in com.vmware.vmc.model_client)</a>
</li>
<li><a href="com.vmware.html#com.vmware.vmc_client.Locale.set">set() (com.vmware.vmc_client.Locale method)</a>
</li>
<li><a href="com.vmware.vmc.html#com.vmware.vmc.model_client.Site">Site (class in com.vmware.vmc.model_client)</a>
</li>
<li><a href="com.vmware.vmc.html#com.vmware.vmc.model_client.Sites">Sites (class in com.vmware.vmc.model_client)</a>
</li>
<li><a href="com.vmware.vmc.html#com.vmware.vmc.model_client.Organization.SLA_CUSTOMER">SLA_CUSTOMER (com.vmware.vmc.model_client.Organization attribute)</a>
</li>
<li><a href="com.vmware.vmc.html#com.vmware.vmc.model_client.Organization.SLA_INTERNAL_CUSTOMER">SLA_INTERNAL_CUSTOMER (com.vmware.vmc.model_client.Organization attribute)</a>
</li>
<li><a href="com.vmware.vmc.html#com.vmware.vmc.model_client.Organization.SLA_SECOND_PARTY_PARTNER">SLA_SECOND_PARTY_PARTNER (com.vmware.vmc.model_client.Organization attribute)</a>
</li>
<li><a href="com.vmware.vmc.html#com.vmware.vmc.model_client.Organization.SLA_THIRD_PARTY_PARTNER">SLA_THIRD_PARTY_PARTNER (com.vmware.vmc.model_client.Organization attribute)</a>
</li>
<li><a href="com.vmware.vmc.html#com.vmware.vmc.model_client.Organization.SLA_VMC_INTERNAL">SLA_VMC_INTERNAL (com.vmware.vmc.model_client.Organization attribute)</a>
</li>
<li><a href="com.vmware.vmc.html#com.vmware.vmc.model_client.SslvpnDashboardStats">SslvpnDashboardStats (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.SupportWindow.START_DAY_FRIDAY">START_DAY_FRIDAY (com.vmware.vmc.model_client.SupportWindow attribute)</a>
</li>
<li><a href="com.vmware.vmc.html#com.vmware.vmc.model_client.SupportWindow.START_DAY_MONDAY">START_DAY_MONDAY (com.vmware.vmc.model_client.SupportWindow attribute)</a>
</li>
<li><a href="com.vmware.vmc.html#com.vmware.vmc.model_client.SupportWindow.START_DAY_SATURDAY">START_DAY_SATURDAY (com.vmware.vmc.model_client.SupportWindow attribute)</a>
</li>
<li><a href="com.vmware.vmc.html#com.vmware.vmc.model_client.SupportWindow.START_DAY_SUNDAY">START_DAY_SUNDAY (com.vmware.vmc.model_client.SupportWindow attribute)</a>
</li>
<li><a href="com.vmware.vmc.html#com.vmware.vmc.model_client.SupportWindow.START_DAY_THURSDAY">START_DAY_THURSDAY (com.vmware.vmc.model_client.SupportWindow attribute)</a>
</li>
<li><a href="com.vmware.vmc.html#com.vmware.vmc.model_client.SupportWindow.START_DAY_TUESDAY">START_DAY_TUESDAY (com.vmware.vmc.model_client.SupportWindow attribute)</a>
</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>
<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>
</li>
<li><a href="com.vmware.vmc.html#com.vmware.vmc.model_client.Vpn.STATE_CONNECTED">STATE_CONNECTED (com.vmware.vmc.model_client.Vpn 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.SddcTemplate.STATE_DELETED">STATE_DELETED (com.vmware.vmc.model_client.SddcTemplate attribute)</a>
</li>
<li><a href="com.vmware.vmc.html#com.vmware.vmc.model_client.SddcTemplate.STATE_DELETING">STATE_DELETING (com.vmware.vmc.model_client.SddcTemplate attribute)</a>
@ -1056,12 +1201,22 @@
<li><a href="com.vmware.vmc.html#com.vmware.vmc.model_client.Vpn.STATE_DISCONNECTED">STATE_DISCONNECTED (com.vmware.vmc.model_client.Vpn attribute)</a>
</li>
<li><a href="com.vmware.vmc.html#com.vmware.vmc.model_client.SddcTemplate.STATE_FAILED">STATE_FAILED (com.vmware.vmc.model_client.SddcTemplate attribute)</a>
</li>
<li><a href="com.vmware.vmc.html#com.vmware.vmc.model_client.SddcTemplate.STATE_INITIALIZING">STATE_INITIALIZING (com.vmware.vmc.model_client.SddcTemplate attribute)</a>
</li>
<li><a href="com.vmware.vmc.html#com.vmware.vmc.model_client.SddcTemplate.STATE_INUSE">STATE_INUSE (com.vmware.vmc.model_client.SddcTemplate attribute)</a>
</li>
<li><a href="com.vmware.vmc.html#com.vmware.vmc.model_client.Vpn.STATE_PARTIALLY_CONNECTED">STATE_PARTIALLY_CONNECTED (com.vmware.vmc.model_client.Vpn attribute)</a>
</li>
<li><a href="com.vmware.vmc.html#com.vmware.vmc.model_client.Vpn.STATE_UNKNOWN">STATE_UNKNOWN (com.vmware.vmc.model_client.Vpn attribute)</a>
</li>
<li><a href="com.vmware.vmc.html#com.vmware.vmc.model_client.SddcStateRequest.STATES_CANCELED">STATES_CANCELED (com.vmware.vmc.model_client.SddcStateRequest attribute)</a>
</li>
<li><a href="com.vmware.vmc.html#com.vmware.vmc.model_client.SddcStateRequest.STATES_COMPLETED">STATES_COMPLETED (com.vmware.vmc.model_client.SddcStateRequest attribute)</a>
</li>
<li><a href="com.vmware.vmc.html#com.vmware.vmc.model_client.SddcStateRequest.STATES_RUNNING">STATES_RUNNING (com.vmware.vmc.model_client.SddcStateRequest attribute)</a>
</li>
<li><a href="com.vmware.vmc.html#com.vmware.vmc.model_client.SddcStateRequest.STATES_SCHEDULED">STATES_SCHEDULED (com.vmware.vmc.model_client.SddcStateRequest attribute)</a>
</li>
<li><a href="com.vmware.vmc.orgs.sddcs.networks.edges.html#com.vmware.vmc.orgs.sddcs.networks.edges.dns_client.Statistics">Statistics (class in com.vmware.vmc.orgs.sddcs.networks.edges.dns_client)</a>
@ -1094,6 +1249,8 @@
</li>
</ul></li>
<li><a href="com.vmware.vmc.html#com.vmware.vmc.model_client.Task.STATUS_FINISHED">STATUS_FINISHED (com.vmware.vmc.model_client.Task attribute)</a>
</li>
<li><a href="com.vmware.vmc.html#com.vmware.vmc.model_client.SubscriptionDetails.STATUS_ORDER_SUBMITTED">STATUS_ORDER_SUBMITTED (com.vmware.vmc.model_client.SubscriptionDetails attribute)</a>
</li>
<li><a href="com.vmware.vmc.html#com.vmware.vmc.model_client.SubscriptionDetails.STATUS_PENDING_PROVISIONING">STATUS_PENDING_PROVISIONING (com.vmware.vmc.model_client.SubscriptionDetails attribute)</a>
</li>
@ -1103,10 +1260,12 @@
<ul>
<li><a href="com.vmware.vmc.orgs.html#com.vmware.vmc.orgs.account_link_client.StubFactory">(class in com.vmware.vmc.orgs.account_link_client)</a>
</li>
<li><a href="com.vmware.vmc.orgs.html#com.vmware.vmc.orgs.reservations_client.StubFactory">(class in com.vmware.vmc.orgs.reservations_client)</a>
</li>
<li><a href="com.vmware.vmc.orgs.sddcs.html#com.vmware.vmc.orgs.sddcs.dns_client.StubFactory">(class in com.vmware.vmc.orgs.sddcs.dns_client)</a>
</li>
<li><a href="com.vmware.vmc.orgs.sddcs.html#com.vmware.vmc.orgs.sddcs.mgw_client.StubFactory">(class in com.vmware.vmc.orgs.sddcs.mgw_client)</a>
<li><a href="com.vmware.vmc.orgs.sddcs.html#com.vmware.vmc.orgs.sddcs.networking_client.StubFactory">(class in com.vmware.vmc.orgs.sddcs.networking_client)</a>
</li>
<li><a href="com.vmware.vmc.orgs.sddcs.networks.cgws.html#com.vmware.vmc.orgs.sddcs.networks.cgws.l2vpn_client.StubFactory">(class in com.vmware.vmc.orgs.sddcs.networks.cgws.l2vpn_client)</a>
</li>
@ -1137,6 +1296,8 @@
<li><a href="com.vmware.vmc.orgs.sddcs.html#com.vmware.vmc.orgs.sddcs.networks_client.StubFactory">(class in com.vmware.vmc.orgs.sddcs.networks_client)</a>
</li>
<li><a href="com.vmware.vmc.orgs.html#com.vmware.vmc.orgs.sddcs_client.StubFactory">(class in com.vmware.vmc.orgs.sddcs_client)</a>
</li>
<li><a href="com.vmware.vmc.orgs.html#com.vmware.vmc.orgs.tbrs_client.StubFactory">(class in com.vmware.vmc.orgs.tbrs_client)</a>
</li>
<li><a href="com.vmware.vmc.html#com.vmware.vmc.orgs_client.StubFactory">(class in com.vmware.vmc.orgs_client)</a>
</li>
@ -1146,6 +1307,8 @@
<li><a href="com.vmware.vmc.html#com.vmware.vmc.model_client.SubInterface">SubInterface (class in com.vmware.vmc.model_client)</a>
</li>
<li><a href="com.vmware.vmc.html#com.vmware.vmc.model_client.SubInterfaces">SubInterfaces (class in com.vmware.vmc.model_client)</a>
</li>
<li><a href="com.vmware.vmc.html#com.vmware.vmc.model_client.SubnetInfo">SubnetInfo (class in com.vmware.vmc.model_client)</a>
</li>
<li><a href="com.vmware.vmc.html#com.vmware.vmc.model_client.Subnets">Subnets (class in com.vmware.vmc.model_client)</a>
</li>
@ -1155,6 +1318,12 @@
</li>
<li><a href="com.vmware.vmc.html#com.vmware.vmc.orgs_client.Subscriptions">Subscriptions (class in com.vmware.vmc.orgs_client)</a>
</li>
<li><a href="com.vmware.vmc.html#com.vmware.vmc.model_client.SupportWindow">SupportWindow (class in com.vmware.vmc.model_client)</a>
<ul>
<li><a href="com.vmware.vmc.orgs.html#com.vmware.vmc.orgs.tbrs_client.SupportWindow">(class in com.vmware.vmc.orgs.tbrs_client)</a>
</li>
</ul></li>
</ul></td>
</tr></table>
@ -1179,14 +1348,14 @@
<li><a href="com.vmware.vmc.html#com.vmware.vmc.model_client.VpnTunnelStatus.TUNNEL_STATUS_CONNECTED">(com.vmware.vmc.model_client.VpnTunnelStatus 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.Site.TUNNEL_STATUS_DISCONNECTED">TUNNEL_STATUS_DISCONNECTED (com.vmware.vmc.model_client.Site attribute)</a>
<ul>
<li><a href="com.vmware.vmc.html#com.vmware.vmc.model_client.VpnTunnelStatus.TUNNEL_STATUS_DISCONNECTED">(com.vmware.vmc.model_client.VpnTunnelStatus 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.Site.TUNNEL_STATUS_UNKNOWN">TUNNEL_STATUS_UNKNOWN (com.vmware.vmc.model_client.Site attribute)</a>
<ul>
@ -1194,8 +1363,16 @@
</li>
</ul></li>
<li><a href="com.vmware.vmc.html#com.vmware.vmc.model_client.PopAmiInfo.TYPE_CENTOS">TYPE_CENTOS (com.vmware.vmc.model_client.PopAmiInfo attribute)</a>
</li>
<li><a href="com.vmware.vmc.html#com.vmware.vmc.model_client.ConnectivityAgentValidation.TYPE_CONNECTIVITY">TYPE_CONNECTIVITY (com.vmware.vmc.model_client.ConnectivityAgentValidation attribute)</a>
</li>
<li><a href="com.vmware.vmc.html#com.vmware.vmc.model_client.ConnectivityAgentValidation.TYPE_DNS">TYPE_DNS (com.vmware.vmc.model_client.ConnectivityAgentValidation attribute)</a>
</li>
<li><a href="com.vmware.vmc.html#com.vmware.vmc.model_client.ConnectivityAgentValidation.TYPE_PING">TYPE_PING (com.vmware.vmc.model_client.ConnectivityAgentValidation attribute)</a>
</li>
<li><a href="com.vmware.vmc.html#com.vmware.vmc.model_client.PopAmiInfo.TYPE_POP">TYPE_POP (com.vmware.vmc.model_client.PopAmiInfo attribute)</a>
</li>
<li><a href="com.vmware.vmc.html#com.vmware.vmc.model_client.ConnectivityAgentValidation.TYPE_TRACEROUTE">TYPE_TRACEROUTE (com.vmware.vmc.model_client.ConnectivityAgentValidation attribute)</a>
</li>
</ul></td>
</tr></table>
@ -1239,6 +1416,8 @@
<h2 id="V">V</h2>
<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.VmcLocale">VmcLocale (class in com.vmware.vmc.model_client)</a>
</li>
<li><a href="com.vmware.vmc.html#com.vmware.vmc.model_client.Vnic">Vnic (class in com.vmware.vmc.model_client)</a>
</li>
<li><a href="com.vmware.vmc.html#com.vmware.vmc.model_client.FirewallRuleScope.VNIC_GROUP_IDS_EXTERNAL">VNIC_GROUP_IDS_EXTERNAL (com.vmware.vmc.model_client.FirewallRuleScope attribute)</a>
@ -1259,10 +1438,10 @@
</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>
</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_7">VNIC_GROUP_IDS_VNIC_INDEX_7 (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_8">VNIC_GROUP_IDS_VNIC_INDEX_8 (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_9">VNIC_GROUP_IDS_VNIC_INDEX_9 (com.vmware.vmc.model_client.FirewallRuleScope attribute)</a>
@ -1276,6 +1455,8 @@
</li>
</ul></li>
<li><a href="com.vmware.vmc.html#com.vmware.vmc.model_client.VpcInfo">VpcInfo (class in com.vmware.vmc.model_client)</a>
</li>
<li><a href="com.vmware.vmc.html#com.vmware.vmc.model_client.VpcInfoSubnets">VpcInfoSubnets (class in com.vmware.vmc.model_client)</a>
</li>
<li><a href="com.vmware.vmc.html#com.vmware.vmc.model_client.Vpn">Vpn (class in com.vmware.vmc.model_client)</a>
</li>
@ -1284,6 +1465,8 @@
<li><a href="com.vmware.vmc.html#com.vmware.vmc.model_client.VpnTunnelStatus">VpnTunnelStatus (class in com.vmware.vmc.model_client)</a>
</li>
<li><a href="com.vmware.vmc.html#com.vmware.vmc.model_client.VpnTunnelTrafficStats">VpnTunnelTrafficStats (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>
</ul></td>
</tr></table>
@ -1322,7 +1505,7 @@
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT:'./',
VERSION:'1.2.0',
VERSION:'1.3.0',
LANGUAGE:'en',
COLLAPSE_INDEX:false,
FILE_SUFFIX:'.html',
@ -1333,13 +1516,11 @@
<script type="text/javascript" src="_static/jquery.js"></script>
<script type="text/javascript" src="_static/underscore.js"></script>
<script type="text/javascript" src="_static/doctools.js"></script>
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.1/MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script>
<script type="text/javascript" src="_static/js/theme.js"></script>
<script type="text/javascript" src="_static/js/theme.js"></script>
<script type="text/javascript">
jQuery(function () {

View File

@ -8,7 +8,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Welcome to VMware Cloud on AWS Console APIs documentation! &mdash; VMware Cloud on AWS Console API 1.2.0 documentation</title>
<title>Welcome to VMware Cloud on AWS Console APIs documentation! &mdash; VMware Cloud on AWS Console API 1.3.0 documentation</title>
@ -24,8 +24,7 @@
<link rel="stylesheet" href="_static/css/theme.css" type="text/css" />
<link rel="stylesheet" href="_static/css/theme.css" type="text/css" />
<link rel="stylesheet" href="_static/pygments.css" type="text/css" />
<link rel="index" title="Index" href="genindex.html" />
<link rel="search" title="Search" href="search.html" />
@ -58,7 +57,7 @@
<div class="version">
1.2.0
1.3.0
</div>
@ -166,7 +165,7 @@
<li class="toctree-l10"><a class="reference internal" href="com.vmware.vmc.orgs.sddcs.html#subpackages">Subpackages</a></li>
<li class="toctree-l10"><a class="reference internal" href="com.vmware.vmc.orgs.sddcs.html#submodules">Submodules</a></li>
<li class="toctree-l10"><a class="reference internal" href="com.vmware.vmc.orgs.sddcs.html#module-com.vmware.vmc.orgs.sddcs.dns_client">com.vmware.vmc.orgs.sddcs.dns_client module</a></li>
<li class="toctree-l10"><a class="reference internal" href="com.vmware.vmc.orgs.sddcs.html#module-com.vmware.vmc.orgs.sddcs.mgw_client">com.vmware.vmc.orgs.sddcs.mgw_client module</a></li>
<li class="toctree-l10"><a class="reference internal" href="com.vmware.vmc.orgs.sddcs.html#module-com.vmware.vmc.orgs.sddcs.networking_client">com.vmware.vmc.orgs.sddcs.networking_client module</a></li>
<li class="toctree-l10"><a class="reference internal" href="com.vmware.vmc.orgs.sddcs.html#module-com.vmware.vmc.orgs.sddcs.networks_client">com.vmware.vmc.orgs.sddcs.networks_client module</a></li>
</ul>
</li>
@ -174,7 +173,9 @@
</li>
<li class="toctree-l8"><a class="reference internal" href="com.vmware.vmc.orgs.html#submodules">Submodules</a></li>
<li class="toctree-l8"><a class="reference internal" href="com.vmware.vmc.orgs.html#module-com.vmware.vmc.orgs.account_link_client">com.vmware.vmc.orgs.account_link_client module</a></li>
<li class="toctree-l8"><a class="reference internal" href="com.vmware.vmc.orgs.html#module-com.vmware.vmc.orgs.reservations_client">com.vmware.vmc.orgs.reservations_client module</a></li>
<li class="toctree-l8"><a class="reference internal" href="com.vmware.vmc.orgs.html#module-com.vmware.vmc.orgs.sddcs_client">com.vmware.vmc.orgs.sddcs_client module</a></li>
<li class="toctree-l8"><a class="reference internal" href="com.vmware.vmc.orgs.html#module-com.vmware.vmc.orgs.tbrs_client">com.vmware.vmc.orgs.tbrs_client module</a></li>
</ul>
</li>
</ul>
@ -246,7 +247,7 @@
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT:'./',
VERSION:'1.2.0',
VERSION:'1.3.0',
LANGUAGE:'en',
COLLAPSE_INDEX:false,
FILE_SUFFIX:'.html',
@ -257,13 +258,11 @@
<script type="text/javascript" src="_static/jquery.js"></script>
<script type="text/javascript" src="_static/underscore.js"></script>
<script type="text/javascript" src="_static/doctools.js"></script>
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.1/MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script>
<script type="text/javascript" src="_static/js/theme.js"></script>
<script type="text/javascript" src="_static/js/theme.js"></script>
<script type="text/javascript">
jQuery(function () {

Binary file not shown.

View File

@ -8,7 +8,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Python Module Index &mdash; VMware Cloud on AWS Console API 1.2.0 documentation</title>
<title>Python Module Index &mdash; VMware Cloud on AWS Console API 1.3.0 documentation</title>
@ -24,8 +24,7 @@
<link rel="stylesheet" href="_static/css/theme.css" type="text/css" />
<link rel="stylesheet" href="_static/css/theme.css" type="text/css" />
<link rel="stylesheet" href="_static/pygments.css" type="text/css" />
<link rel="index" title="Index" href="genindex.html" />
<link rel="search" title="Search" href="search.html" />
@ -60,7 +59,7 @@
<div class="version">
1.2.0
1.3.0
</div>
@ -189,6 +188,11 @@
<td>&#160;&#160;&#160;
<a href="com.vmware.vmc.orgs.html#module-com.vmware.vmc.orgs.account_link_client"><code class="xref">com.vmware.vmc.orgs.account_link_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.html#module-com.vmware.vmc.orgs.reservations_client"><code class="xref">com.vmware.vmc.orgs.reservations_client</code></a></td><td>
<em></em></td></tr>
<tr class="cg-1">
<td></td>
<td>&#160;&#160;&#160;
@ -202,7 +206,7 @@
<tr class="cg-1">
<td></td>
<td>&#160;&#160;&#160;
<a href="com.vmware.vmc.orgs.sddcs.html#module-com.vmware.vmc.orgs.sddcs.mgw_client"><code class="xref">com.vmware.vmc.orgs.sddcs.mgw_client</code></a></td><td>
<a href="com.vmware.vmc.orgs.sddcs.html#module-com.vmware.vmc.orgs.sddcs.networking_client"><code class="xref">com.vmware.vmc.orgs.sddcs.networking_client</code></a></td><td>
<em></em></td></tr>
<tr class="cg-1">
<td></td>
@ -314,6 +318,11 @@
<td>&#160;&#160;&#160;
<a href="com.vmware.vmc.orgs.html#module-com.vmware.vmc.orgs.sddcs_client"><code class="xref">com.vmware.vmc.orgs.sddcs_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.html#module-com.vmware.vmc.orgs.tbrs_client"><code class="xref">com.vmware.vmc.orgs.tbrs_client</code></a></td><td>
<em></em></td></tr>
<tr class="cg-1">
<td></td>
<td>&#160;&#160;&#160;
@ -359,7 +368,7 @@
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT:'./',
VERSION:'1.2.0',
VERSION:'1.3.0',
LANGUAGE:'en',
COLLAPSE_INDEX:false,
FILE_SUFFIX:'.html',
@ -370,13 +379,11 @@
<script type="text/javascript" src="_static/jquery.js"></script>
<script type="text/javascript" src="_static/underscore.js"></script>
<script type="text/javascript" src="_static/doctools.js"></script>
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.1/MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script>
<script type="text/javascript" src="_static/js/theme.js"></script>
<script type="text/javascript" src="_static/js/theme.js"></script>
<script type="text/javascript">
jQuery(function () {

View File

@ -8,7 +8,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Search &mdash; VMware Cloud on AWS Console API 1.2.0 documentation</title>
<title>Search &mdash; VMware Cloud on AWS Console API 1.3.0 documentation</title>
@ -24,8 +24,7 @@
<link rel="stylesheet" href="_static/css/theme.css" type="text/css" />
<link rel="stylesheet" href="_static/css/theme.css" type="text/css" />
<link rel="stylesheet" href="_static/pygments.css" type="text/css" />
<link rel="index" title="Index" href="genindex.html" />
<link rel="search" title="Search" href="#" />
@ -57,7 +56,7 @@
<div class="version">
1.2.0
1.3.0
</div>
@ -192,7 +191,7 @@
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT:'./',
VERSION:'1.2.0',
VERSION:'1.3.0',
LANGUAGE:'en',
COLLAPSE_INDEX:false,
FILE_SUFFIX:'.html',
@ -203,14 +202,12 @@
<script type="text/javascript" src="_static/jquery.js"></script>
<script type="text/javascript" src="_static/underscore.js"></script>
<script type="text/javascript" src="_static/doctools.js"></script>
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.1/MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script>
<script type="text/javascript" src="_static/searchtools.js"></script>
<script type="text/javascript" src="_static/js/theme.js"></script>
<script type="text/javascript" src="_static/js/theme.js"></script>
<script type="text/javascript">
jQuery(function () {

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1,20 @@
com.vmware.vcenter.compute.policies.capabilities package
========================================================
.. automodule:: com.vmware.vcenter.compute.policies.capabilities
:members:
:undoc-members:
:show-inheritance:
Submodules
----------
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:

View File

@ -0,0 +1,27 @@
com.vmware.vcenter.compute.policies package
===========================================
.. automodule:: com.vmware.vcenter.compute.policies
:members:
:undoc-members:
:show-inheritance:
Subpackages
-----------
.. toctree::
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:

View File

@ -0,0 +1,27 @@
com.vmware.vcenter.compute package
==================================
.. automodule:: com.vmware.vcenter.compute
:members:
:undoc-members:
:show-inheritance:
Subpackages
-----------
.. toctree::
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:

View File

@ -11,14 +11,24 @@ Subpackages
.. toctree::
com.vmware.vcenter.compute
com.vmware.vcenter.deployment
com.vmware.vcenter.hvc
com.vmware.vcenter.storage
com.vmware.vcenter.vm
com.vmware.vcenter.vm_template
Submodules
----------
com.vmware.vcenter.compute\_client module
-----------------------------------------
.. automodule:: com.vmware.vcenter.compute_client
:members:
:undoc-members:
:show-inheritance:
com.vmware.vcenter.datastore\_client module
-------------------------------------------
@ -35,6 +45,14 @@ com.vmware.vcenter.deployment\_client module
: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
-------------------------------------

View File

@ -17,6 +17,14 @@ Subpackages
Submodules
----------
com.vmware.vcenter.vm.compute\_client module
--------------------------------------------
.. automodule:: com.vmware.vcenter.vm.compute_client
:members:
:undoc-members:
:show-inheritance:
com.vmware.vcenter.vm.guest\_client module
------------------------------------------

View File

@ -0,0 +1,20 @@
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:

View File

@ -1,5 +1,5 @@
.. vSphere Automation SDK for Python documentation master file, created by
sphinx-quickstart on Tue May 15 20:11:34 2018.
sphinx-quickstart on Wed Sep 19 04:21:51 2018.
You can adapt this file completely to your liking, but it should at least
contain the root `toctree` directive.

View File

@ -81,6 +81,10 @@ div.sphinxsidebar input {
font-size: 1em;
}
div.sphinxsidebar #searchbox form.search {
overflow: hidden;
}
div.sphinxsidebar #searchbox input[type="text"] {
float: left;
width: 80%;
@ -427,6 +431,13 @@ table.field-list td, table.field-list th {
hyphens: manual;
}
/* -- hlist styles ---------------------------------------------------------- */
table.hlist td {
vertical-align: top;
}
/* -- other body styles ----------------------------------------------------- */
ol.arabic {

File diff suppressed because one or more lines are too long

View File

@ -150,7 +150,9 @@ var Documentation = {
this.fixFirefoxAnchorBug();
this.highlightSearchWords();
this.initIndexTable();
if (DOCUMENTATION_OPTIONS.NAVIGATION_WITH_KEYS) {
this.initOnKeyListeners();
}
},
/**

View File

@ -1,9 +1,296 @@
var DOCUMENTATION_OPTIONS = {
URL_ROOT: '',
VERSION: '6.8.0',
URL_ROOT: document.getElementById("documentation_options").getAttribute('data-url_root'),
VERSION: '6.8.1',
LANGUAGE: 'en',
COLLAPSE_INDEX: false,
FILE_SUFFIX: '.html',
HAS_SOURCE: true,
SOURCELINK_SUFFIX: '.txt'
SOURCELINK_SUFFIX: '.txt',
NAVIGATION_WITH_KEYS: false,
SEARCH_LANGUAGE_STOP_WORDS: ["a","and","are","as","at","be","but","by","for","if","in","into","is","it","near","no","not","of","on","or","such","that","the","their","then","there","these","they","this","to","was","will","with"]
};
/* Non-minified version JS is _stemmer.js if file is provided */
/**
* Porter Stemmer
*/
var Stemmer = function() {
var step2list = {
ational: 'ate',
tional: 'tion',
enci: 'ence',
anci: 'ance',
izer: 'ize',
bli: 'ble',
alli: 'al',
entli: 'ent',
eli: 'e',
ousli: 'ous',
ization: 'ize',
ation: 'ate',
ator: 'ate',
alism: 'al',
iveness: 'ive',
fulness: 'ful',
ousness: 'ous',
aliti: 'al',
iviti: 'ive',
biliti: 'ble',
logi: 'log'
};
var step3list = {
icate: 'ic',
ative: '',
alize: 'al',
iciti: 'ic',
ical: 'ic',
ful: '',
ness: ''
};
var c = "[^aeiou]"; // consonant
var v = "[aeiouy]"; // vowel
var C = c + "[^aeiouy]*"; // consonant sequence
var V = v + "[aeiou]*"; // vowel sequence
var mgr0 = "^(" + C + ")?" + V + C; // [C]VC... is m>0
var meq1 = "^(" + C + ")?" + V + C + "(" + V + ")?$"; // [C]VC[V] is m=1
var mgr1 = "^(" + C + ")?" + V + C + V + C; // [C]VCVC... is m>1
var s_v = "^(" + C + ")?" + v; // vowel in stem
this.stemWord = function (w) {
var stem;
var suffix;
var firstch;
var origword = w;
if (w.length < 3)
return w;
var re;
var re2;
var re3;
var re4;
firstch = w.substr(0,1);
if (firstch == "y")
w = firstch.toUpperCase() + w.substr(1);
// Step 1a
re = /^(.+?)(ss|i)es$/;
re2 = /^(.+?)([^s])s$/;
if (re.test(w))
w = w.replace(re,"$1$2");
else if (re2.test(w))
w = w.replace(re2,"$1$2");
// Step 1b
re = /^(.+?)eed$/;
re2 = /^(.+?)(ed|ing)$/;
if (re.test(w)) {
var fp = re.exec(w);
re = new RegExp(mgr0);
if (re.test(fp[1])) {
re = /.$/;
w = w.replace(re,"");
}
}
else if (re2.test(w)) {
var fp = re2.exec(w);
stem = fp[1];
re2 = new RegExp(s_v);
if (re2.test(stem)) {
w = stem;
re2 = /(at|bl|iz)$/;
re3 = new RegExp("([^aeiouylsz])\\1$");
re4 = new RegExp("^" + C + v + "[^aeiouwxy]$");
if (re2.test(w))
w = w + "e";
else if (re3.test(w)) {
re = /.$/;
w = w.replace(re,"");
}
else if (re4.test(w))
w = w + "e";
}
}
// Step 1c
re = /^(.+?)y$/;
if (re.test(w)) {
var fp = re.exec(w);
stem = fp[1];
re = new RegExp(s_v);
if (re.test(stem))
w = stem + "i";
}
// Step 2
re = /^(.+?)(ational|tional|enci|anci|izer|bli|alli|entli|eli|ousli|ization|ation|ator|alism|iveness|fulness|ousness|aliti|iviti|biliti|logi)$/;
if (re.test(w)) {
var fp = re.exec(w);
stem = fp[1];
suffix = fp[2];
re = new RegExp(mgr0);
if (re.test(stem))
w = stem + step2list[suffix];
}
// Step 3
re = /^(.+?)(icate|ative|alize|iciti|ical|ful|ness)$/;
if (re.test(w)) {
var fp = re.exec(w);
stem = fp[1];
suffix = fp[2];
re = new RegExp(mgr0);
if (re.test(stem))
w = stem + step3list[suffix];
}
// Step 4
re = /^(.+?)(al|ance|ence|er|ic|able|ible|ant|ement|ment|ent|ou|ism|ate|iti|ous|ive|ize)$/;
re2 = /^(.+?)(s|t)(ion)$/;
if (re.test(w)) {
var fp = re.exec(w);
stem = fp[1];
re = new RegExp(mgr1);
if (re.test(stem))
w = stem;
}
else if (re2.test(w)) {
var fp = re2.exec(w);
stem = fp[1] + fp[2];
re2 = new RegExp(mgr1);
if (re2.test(stem))
w = stem;
}
// Step 5
re = /^(.+?)e$/;
if (re.test(w)) {
var fp = re.exec(w);
stem = fp[1];
re = new RegExp(mgr1);
re2 = new RegExp(meq1);
re3 = new RegExp("^" + C + v + "[^aeiouwxy]$");
if (re.test(stem) || (re2.test(stem) && !(re3.test(stem))))
w = stem;
}
re = /ll$/;
re2 = new RegExp(mgr1);
if (re.test(w) && re2.test(w)) {
re = /.$/;
w = w.replace(re,"");
}
// and turn initial Y back to y
if (firstch == "y")
w = firstch.toLowerCase() + w.substr(1);
return w;
}
}
var splitChars = (function() {
var result = {};
var singles = [96, 180, 187, 191, 215, 247, 749, 885, 903, 907, 909, 930, 1014, 1648,
1748, 1809, 2416, 2473, 2481, 2526, 2601, 2609, 2612, 2615, 2653, 2702,
2706, 2729, 2737, 2740, 2857, 2865, 2868, 2910, 2928, 2948, 2961, 2971,
2973, 3085, 3089, 3113, 3124, 3213, 3217, 3241, 3252, 3295, 3341, 3345,
3369, 3506, 3516, 3633, 3715, 3721, 3736, 3744, 3748, 3750, 3756, 3761,
3781, 3912, 4239, 4347, 4681, 4695, 4697, 4745, 4785, 4799, 4801, 4823,
4881, 5760, 5901, 5997, 6313, 7405, 8024, 8026, 8028, 8030, 8117, 8125,
8133, 8181, 8468, 8485, 8487, 8489, 8494, 8527, 11311, 11359, 11687, 11695,
11703, 11711, 11719, 11727, 11735, 12448, 12539, 43010, 43014, 43019, 43587,
43696, 43713, 64286, 64297, 64311, 64317, 64319, 64322, 64325, 65141];
var i, j, start, end;
for (i = 0; i < singles.length; i++) {
result[singles[i]] = true;
}
var ranges = [[0, 47], [58, 64], [91, 94], [123, 169], [171, 177], [182, 184], [706, 709],
[722, 735], [741, 747], [751, 879], [888, 889], [894, 901], [1154, 1161],
[1318, 1328], [1367, 1368], [1370, 1376], [1416, 1487], [1515, 1519], [1523, 1568],
[1611, 1631], [1642, 1645], [1750, 1764], [1767, 1773], [1789, 1790], [1792, 1807],
[1840, 1868], [1958, 1968], [1970, 1983], [2027, 2035], [2038, 2041], [2043, 2047],
[2070, 2073], [2075, 2083], [2085, 2087], [2089, 2307], [2362, 2364], [2366, 2383],
[2385, 2391], [2402, 2405], [2419, 2424], [2432, 2436], [2445, 2446], [2449, 2450],
[2483, 2485], [2490, 2492], [2494, 2509], [2511, 2523], [2530, 2533], [2546, 2547],
[2554, 2564], [2571, 2574], [2577, 2578], [2618, 2648], [2655, 2661], [2672, 2673],
[2677, 2692], [2746, 2748], [2750, 2767], [2769, 2783], [2786, 2789], [2800, 2820],
[2829, 2830], [2833, 2834], [2874, 2876], [2878, 2907], [2914, 2917], [2930, 2946],
[2955, 2957], [2966, 2968], [2976, 2978], [2981, 2983], [2987, 2989], [3002, 3023],
[3025, 3045], [3059, 3076], [3130, 3132], [3134, 3159], [3162, 3167], [3170, 3173],
[3184, 3191], [3199, 3204], [3258, 3260], [3262, 3293], [3298, 3301], [3312, 3332],
[3386, 3388], [3390, 3423], [3426, 3429], [3446, 3449], [3456, 3460], [3479, 3481],
[3518, 3519], [3527, 3584], [3636, 3647], [3655, 3663], [3674, 3712], [3717, 3718],
[3723, 3724], [3726, 3731], [3752, 3753], [3764, 3772], [3774, 3775], [3783, 3791],
[3802, 3803], [3806, 3839], [3841, 3871], [3892, 3903], [3949, 3975], [3980, 4095],
[4139, 4158], [4170, 4175], [4182, 4185], [4190, 4192], [4194, 4196], [4199, 4205],
[4209, 4212], [4226, 4237], [4250, 4255], [4294, 4303], [4349, 4351], [4686, 4687],
[4702, 4703], [4750, 4751], [4790, 4791], [4806, 4807], [4886, 4887], [4955, 4968],
[4989, 4991], [5008, 5023], [5109, 5120], [5741, 5742], [5787, 5791], [5867, 5869],
[5873, 5887], [5906, 5919], [5938, 5951], [5970, 5983], [6001, 6015], [6068, 6102],
[6104, 6107], [6109, 6111], [6122, 6127], [6138, 6159], [6170, 6175], [6264, 6271],
[6315, 6319], [6390, 6399], [6429, 6469], [6510, 6511], [6517, 6527], [6572, 6592],
[6600, 6607], [6619, 6655], [6679, 6687], [6741, 6783], [6794, 6799], [6810, 6822],
[6824, 6916], [6964, 6980], [6988, 6991], [7002, 7042], [7073, 7085], [7098, 7167],
[7204, 7231], [7242, 7244], [7294, 7400], [7410, 7423], [7616, 7679], [7958, 7959],
[7966, 7967], [8006, 8007], [8014, 8015], [8062, 8063], [8127, 8129], [8141, 8143],
[8148, 8149], [8156, 8159], [8173, 8177], [8189, 8303], [8306, 8307], [8314, 8318],
[8330, 8335], [8341, 8449], [8451, 8454], [8456, 8457], [8470, 8472], [8478, 8483],
[8506, 8507], [8512, 8516], [8522, 8525], [8586, 9311], [9372, 9449], [9472, 10101],
[10132, 11263], [11493, 11498], [11503, 11516], [11518, 11519], [11558, 11567],
[11622, 11630], [11632, 11647], [11671, 11679], [11743, 11822], [11824, 12292],
[12296, 12320], [12330, 12336], [12342, 12343], [12349, 12352], [12439, 12444],
[12544, 12548], [12590, 12592], [12687, 12689], [12694, 12703], [12728, 12783],
[12800, 12831], [12842, 12880], [12896, 12927], [12938, 12976], [12992, 13311],
[19894, 19967], [40908, 40959], [42125, 42191], [42238, 42239], [42509, 42511],
[42540, 42559], [42592, 42593], [42607, 42622], [42648, 42655], [42736, 42774],
[42784, 42785], [42889, 42890], [42893, 43002], [43043, 43055], [43062, 43071],
[43124, 43137], [43188, 43215], [43226, 43249], [43256, 43258], [43260, 43263],
[43302, 43311], [43335, 43359], [43389, 43395], [43443, 43470], [43482, 43519],
[43561, 43583], [43596, 43599], [43610, 43615], [43639, 43641], [43643, 43647],
[43698, 43700], [43703, 43704], [43710, 43711], [43715, 43738], [43742, 43967],
[44003, 44015], [44026, 44031], [55204, 55215], [55239, 55242], [55292, 55295],
[57344, 63743], [64046, 64047], [64110, 64111], [64218, 64255], [64263, 64274],
[64280, 64284], [64434, 64466], [64830, 64847], [64912, 64913], [64968, 65007],
[65020, 65135], [65277, 65295], [65306, 65312], [65339, 65344], [65371, 65381],
[65471, 65473], [65480, 65481], [65488, 65489], [65496, 65497]];
for (i = 0; i < ranges.length; i++) {
start = ranges[i][0];
end = ranges[i][1];
for (j = start; j <= end; j++) {
result[j] = true;
}
}
return result;
})();
function splitQuery(query) {
var result = [];
var start = -1;
for (var i = 0; i < query.length; i++) {
if (splitChars[query.charCodeAt(i)]) {
if (start !== -1) {
result.push(query.slice(start, i));
start = -1;
}
} else if (start === -1) {
start = i;
}
}
if (start !== -1) {
result.push(query.slice(start));
}
return result;
}

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Some files were not shown because too many files have changed in this diff Show More