diff --git a/vmc/_sources/com.vmware.vmc.orgs.rst.txt b/vmc/_sources/com.vmware.vmc.orgs.rst.txt index f3f3e3f8..18b42dce 100644 --- a/vmc/_sources/com.vmware.vmc.orgs.rst.txt +++ b/vmc/_sources/com.vmware.vmc.orgs.rst.txt @@ -16,6 +16,14 @@ Subpackages Submodules ---------- +com.vmware.vmc.orgs.account\_link\_client module +------------------------------------------------ + +.. automodule:: com.vmware.vmc.orgs.account_link_client + :members: + :undoc-members: + :show-inheritance: + com.vmware.vmc.orgs.reservations\_client module ----------------------------------------------- @@ -32,6 +40,22 @@ com.vmware.vmc.orgs.sddcs\_client module :undoc-members: :show-inheritance: +com.vmware.vmc.orgs.storage\_client module +------------------------------------------ + +.. automodule:: com.vmware.vmc.orgs.storage_client + :members: + :undoc-members: + :show-inheritance: + +com.vmware.vmc.orgs.subscriptions\_client module +------------------------------------------------ + +.. automodule:: com.vmware.vmc.orgs.subscriptions_client + :members: + :undoc-members: + :show-inheritance: + com.vmware.vmc.orgs.tbrs\_client module --------------------------------------- diff --git a/vmc/_sources/index.rst.txt b/vmc/_sources/index.rst.txt index af615d08..f6790025 100644 --- a/vmc/_sources/index.rst.txt +++ b/vmc/_sources/index.rst.txt @@ -1,5 +1,5 @@ .. VMware Cloud on AWS Console API documentation master file, created by - sphinx-quickstart on Thu Oct 18 01:50:14 2018. + sphinx-quickstart on Thu Jan 10 05:32:03 2019. You can adapt this file completely to your liking, but it should at least contain the root `toctree` directive. @@ -11,6 +11,7 @@ Welcome to VMware Cloud on AWS Console API's documentation! :caption: Contents: com + vmware Indices and tables diff --git a/vmc/_sources/vmware.rst.txt b/vmc/_sources/vmware.rst.txt new file mode 100644 index 00000000..e2ea3a3f --- /dev/null +++ b/vmc/_sources/vmware.rst.txt @@ -0,0 +1,15 @@ +vmware package +============== + +.. automodule:: vmware + :members: + :undoc-members: + :show-inheritance: + +Subpackages +----------- + +.. toctree:: + + vmware.vapi + diff --git a/vmc/_sources/vmware.vapi.rst.txt b/vmc/_sources/vmware.vapi.rst.txt new file mode 100644 index 00000000..e2283c1f --- /dev/null +++ b/vmc/_sources/vmware.vapi.rst.txt @@ -0,0 +1,15 @@ +vmware.vapi package +=================== + +.. automodule:: vmware.vapi + :members: + :undoc-members: + :show-inheritance: + +Subpackages +----------- + +.. toctree:: + + vmware.vapi.vmc + diff --git a/vmc/_sources/vmware.vapi.vmc.rst.txt b/vmc/_sources/vmware.vapi.vmc.rst.txt new file mode 100644 index 00000000..c5e81604 --- /dev/null +++ b/vmc/_sources/vmware.vapi.vmc.rst.txt @@ -0,0 +1,28 @@ +vmware.vapi.vmc package +======================= + +.. automodule:: vmware.vapi.vmc + :members: + :undoc-members: + :show-inheritance: + +Submodules +---------- + +vmware.vapi.vmc.client module +----------------------------- + +.. automodule:: vmware.vapi.vmc.client + :members: + :undoc-members: + :show-inheritance: + +vmware.vapi.vmc.csp\_filter module +---------------------------------- + +.. automodule:: vmware.vapi.vmc.csp_filter + :members: + :undoc-members: + :show-inheritance: + + diff --git a/vmc/_static/documentation_options.js b/vmc/_static/documentation_options.js index c9368b4c..ef4442d6 100644 --- a/vmc/_static/documentation_options.js +++ b/vmc/_static/documentation_options.js @@ -1,296 +1,10 @@ var DOCUMENTATION_OPTIONS = { URL_ROOT: document.getElementById("documentation_options").getAttribute('data-url_root'), - VERSION: '1.3.0', + VERSION: '1.3.1', LANGUAGE: 'en', COLLAPSE_INDEX: false, FILE_SUFFIX: '.html', HAS_SOURCE: true, 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; -} - - +}; \ No newline at end of file diff --git a/vmc/_static/language_data.js b/vmc/_static/language_data.js new file mode 100644 index 00000000..908a6278 --- /dev/null +++ b/vmc/_static/language_data.js @@ -0,0 +1,297 @@ +/* + * language_data.js + * ~~~~~~~~~~~~~~~~ + * + * This script contains the language-specific data used by searchtools.js, + * namely the list of stopwords, stemmer, scorer and splitter. + * + * :copyright: Copyright 2007-2018 by the Sphinx team, see AUTHORS. + * :license: BSD, see LICENSE for details. + * + */ + +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"]; + + +/* 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; +} + + diff --git a/vmc/_static/searchtools.js b/vmc/_static/searchtools.js index 7473859b..02ccf02a 100644 --- a/vmc/_static/searchtools.js +++ b/vmc/_static/searchtools.js @@ -138,7 +138,6 @@ var Search = { */ query : function(query) { var i; - var stopwords = DOCUMENTATION_OPTIONS.SEARCH_LANGUAGE_STOP_WORDS; // stem the searchterms and add them to the correct list var stemmer = new Stemmer(); diff --git a/vmc/com.html b/vmc/com.html index ebb6e62d..8c348ed9 100644 --- a/vmc/com.html +++ b/vmc/com.html @@ -8,7 +8,7 @@ - com package — VMware Cloud on AWS Console API 1.3.0 documentation + com package — VMware Cloud on AWS Console API 1.3.1 documentation @@ -58,7 +58,7 @@
- 1.3.0 + 1.3.1
@@ -91,6 +91,7 @@ +
  • vmware package
  • @@ -227,8 +228,11 @@
  • Submodules
  • +
  • com.vmware.vmc.orgs.account_link_client module
  • com.vmware.vmc.orgs.reservations_client module
  • com.vmware.vmc.orgs.sddcs_client module
  • +
  • com.vmware.vmc.orgs.storage_client module
  • +
  • com.vmware.vmc.orgs.subscriptions_client module
  • com.vmware.vmc.orgs.tbrs_client module
  • @@ -270,7 +274,7 @@

    - © Copyright 2018, VMware, Inc. + © Copyright 2019, VMware, Inc.

    @@ -295,7 +299,7 @@ - + diff --git a/vmc/com.vmware.html b/vmc/com.vmware.html index dac0d294..f003d595 100644 --- a/vmc/com.vmware.html +++ b/vmc/com.vmware.html @@ -8,7 +8,7 @@ - com.vmware package — VMware Cloud on AWS Console API 1.3.0 documentation + com.vmware package — VMware Cloud on AWS Console API 1.3.1 documentation @@ -58,7 +58,7 @@
    - 1.3.0 + 1.3.1
    @@ -96,6 +96,7 @@ +
  • vmware package
  • @@ -232,8 +233,11 @@
  • Submodules
  • +
  • com.vmware.vmc.orgs.account_link_client module
  • com.vmware.vmc.orgs.reservations_client module
  • com.vmware.vmc.orgs.sddcs_client module
  • +
  • com.vmware.vmc.orgs.storage_client module
  • +
  • com.vmware.vmc.orgs.subscriptions_client module
  • com.vmware.vmc.orgs.tbrs_client module
  • @@ -279,12 +283,12 @@ responses.

    Returns:com.vmware.vmc.model.VmcLocale -Raise:com.vmware.vapi.std.errors_client.Unauthorized -Forbidden - -Raise:com.vmware.vapi.std.errors_client.Unauthenticated +Raise:com.vmware.vapi.std.errors_client.Unauthenticated Unauthorized +Raise:com.vmware.vapi.std.errors_client.Unauthorized +Forbidden + @@ -317,15 +321,15 @@ Unauthorized Returns:com.vmware.vmc.model.Organization -Raise:com.vmware.vapi.std.errors_client.Unauthorized -Forbidden - -Raise:com.vmware.vapi.std.errors_client.NotFound -Organization doesn’t exist - Raise:com.vmware.vapi.std.errors_client.Unauthenticated Unauthorized +Raise:com.vmware.vapi.std.errors_client.Unauthorized +Forbidden + +Raise:com.vmware.vapi.std.errors_client.NotFound +Organization doesn’t exist + @@ -343,12 +347,12 @@ credential) is authorized on.

    Returns: -Raise:com.vmware.vapi.std.errors_client.Unauthorized -Forbidden - -Raise:com.vmware.vapi.std.errors_client.Unauthenticated +Raise:com.vmware.vapi.std.errors_client.Unauthenticated Unauthorized +Raise:com.vmware.vapi.std.errors_client.Unauthorized +Forbidden + @@ -393,7 +397,7 @@ Unauthorized

    - © Copyright 2018, VMware, Inc. + © Copyright 2019, VMware, Inc.

    @@ -418,7 +422,7 @@ Unauthorized - + diff --git a/vmc/com.vmware.vmc.html b/vmc/com.vmware.vmc.html index a395c74d..7a5fdc63 100644 --- a/vmc/com.vmware.vmc.html +++ b/vmc/com.vmware.vmc.html @@ -8,7 +8,7 @@ - com.vmware.vmc package — VMware Cloud on AWS Console API 1.3.0 documentation + com.vmware.vmc package — VMware Cloud on AWS Console API 1.3.1 documentation @@ -58,7 +58,7 @@
    - 1.3.0 + 1.3.1
    @@ -96,6 +96,7 @@ +
  • vmware package
  • @@ -232,8 +233,11 @@
  • Submodules
  • +
  • com.vmware.vmc.orgs.account_link_client module
  • com.vmware.vmc.orgs.reservations_client module
  • com.vmware.vmc.orgs.sddcs_client module
  • +
  • com.vmware.vmc.orgs.storage_client module
  • +
  • com.vmware.vmc.orgs.subscriptions_client module
  • com.vmware.vmc.orgs.tbrs_client module
  • @@ -349,7 +353,7 @@ or internal. Can define multiple.
    -class com.vmware.vmc.model_client.Agent(addresses=None, healthy=None, custom_properties=None, last_health_status_change=None, internal_ip=None, reserved_ip=None, network_netmask=None, network_gateway=None, provider='Agent', agent_url=None, network_cidr=None, id=None)
    +class com.vmware.vmc.model_client.Agent(addresses=None, reserved_ip=None, healthy=None, custom_properties=None, last_health_status_change=None, cert_enabled=None, internal_ip=None, hostname_verifier_enabled=None, network_netmask=None, network_gateway=None, provider='Agent', is_master=None, network_cidr=None, id=None, agent_url=None)

    Bases: vmware.vapi.bindings.struct.VapiStruct

    Tip

    @@ -362,17 +366,22 @@ names.

    Parameters:
    • addresses (list of str or None) –
    • +
    • reserved_ip (str or None) –
    • healthy (bool or None) –
    • custom_properties ((dict of str and str) or None) –
    • last_health_status_change (long or None) –
    • +
    • cert_enabled (bool or None) – Boolean flag to indicate if the agent is using CA signed +certificate
    • internal_ip (str or None) –
    • -
    • reserved_ip (str or None) –
    • +
    • hostname_verifier_enabled (bool or None) – Boolean flag to indicate if the agent is using FQDN in the +certificate
    • network_netmask (str or None) –
    • network_gateway (str or None) –
    • provider (str) –
    • -
    • agent_url (str or None) –
    • +
    • is_master (bool or None) – Boolean flag to indicate if the agent is the master
    • network_cidr (str or None) –
    • id (str or None) –
    • +
    • agent_url (str or None) –
    @@ -475,7 +484,7 @@ define multiple.
    -class com.vmware.vmc.model_client.AwsAgent(instance_id=None, key_pair=None, addresses=None, healthy=None, custom_properties=None, last_health_status_change=None, internal_ip=None, reserved_ip=None, network_netmask=None, network_gateway=None, provider='AWS', agent_url=None, network_cidr=None, id=None)
    +class com.vmware.vmc.model_client.AwsAgent(instance_id=None, key_pair=None, addresses=None, reserved_ip=None, healthy=None, custom_properties=None, last_health_status_change=None, cert_enabled=None, internal_ip=None, hostname_verifier_enabled=None, network_netmask=None, network_gateway=None, provider='AWS', is_master=None, network_cidr=None, id=None, agent_url=None)

    Bases: vmware.vapi.bindings.struct.VapiStruct

    Tip

    @@ -490,17 +499,22 @@ names.

  • instance_id (str or None) –
  • key_pair (AwsKeyPair or None) –
  • addresses (list of str or None) –
  • +
  • reserved_ip (str or None) –
  • healthy (bool or None) –
  • custom_properties ((dict of str and str) or None) –
  • last_health_status_change (long or None) –
  • +
  • cert_enabled (bool or None) – Boolean flag to indicate if the agent is using CA signed +certificate
  • internal_ip (str or None) –
  • -
  • reserved_ip (str or None) –
  • +
  • hostname_verifier_enabled (bool or None) – Boolean flag to indicate if the agent is using FQDN in the +certificate
  • network_netmask (str or None) –
  • network_gateway (str or None) –
  • provider (str) –
  • -
  • agent_url (str or None) –
  • +
  • is_master (bool or None) – Boolean flag to indicate if the agent is the master
  • network_cidr (str or None) –
  • id (str or None) –
  • +
  • agent_url (str or None) –
  • @@ -675,7 +689,7 @@ names.

    -class com.vmware.vmc.model_client.AwsSddcConfig(region=None, name=None, account_link_sddc_config=None, vpc_cidr=None, num_hosts=None, sddc_type=None, vxlan_subnet=None, account_link_config=None, provider='AWS', sso_domain=None, sddc_template_id=None, deployment_type=None)
    +class com.vmware.vmc.model_client.AwsSddcConfig(region=None, storage_capacity=None, name=None, account_link_sddc_config=None, vpc_cidr=None, num_hosts=None, sddc_type=None, vxlan_subnet=None, account_link_config=None, provider='AWS', skip_creating_vxlan=None, sso_domain=None, sddc_template_id=None, deployment_type=None)

    Bases: vmware.vapi.bindings.struct.VapiStruct

    Tip

    @@ -688,13 +702,17 @@ names.

    Parameters:
    • region (str) –
    • +
    • storage_capacity (long or None) – The storage capacity value to be requested for the sddc primary +cluster, in GiBs. If provided, instead of using the direct-attached +storage, a capacity value amount of seperable storage will be used. +format: int64
    • name (str) –
    • account_link_sddc_config (list of AccountLinkSddcConfig or None) – A list of the SDDC linking configurations to use.
    • vpc_cidr (str or None) – AWS VPC IP range. Only prefix of 16 or 20 is currently supported.
    • num_hosts (long) –
    • sddc_type (str or None) – Denotes the sddc type , if the value is null or empty, the type is considered as default.
    • -
    • vxlan_subnet (str or None) – VXLAN IP subnet
    • +
    • vxlan_subnet (str or None) – VXLAN IP subnet in CIDR for compute gateway
    • account_link_config (AccountLinkConfig or None) – The account linking configuration, we will keep this one and remove accountLinkSddcConfig finally.
    • provider (str) –

      Possible values are:

      @@ -704,6 +722,7 @@ accountLinkSddcConfig finally.
    • Determines what additional properties are available based on cloud provider.

      +
    • skip_creating_vxlan (bool or None) – skip creating vxlan for compute gateway for SDDC provisioning
    • sso_domain (str or None) – The SSO domain name to use for vSphere users. If not specified, vmc.local will be used.
    • sddc_template_id (str or None) – If provided, configuration from the template will applied to the @@ -766,7 +785,7 @@ names.

      -class com.vmware.vmc.model_client.AwsSddcResourceConfig(backup_restore_bucket=None, public_ip_pool=None, vpc_info=None, kms_vpc_endpoint=None, max_num_public_ip=None, account_link_sddc_config=None, region=None, vsan_encryption_config=None, vpc_info_peered_agent=None, mgmt_appliance_network_name=None, dns_with_management_vm_private_ip=None, nsxt=None, mgw_id=None, nsx_mgr_url=None, psc_management_ip=None, psc_url=None, cgws=None, availability_zones=None, management_ds=None, nsx_api_public_endpoint_url=None, custom_properties=None, cloud_password=None, provider='AWS', clusters=None, vc_management_ip=None, sddc_networks=None, cloud_username=None, esx_hosts=None, nsx_mgr_management_ip=None, vc_instance_id=None, esx_cluster_id=None, vc_public_ip=None, vc_url=None, sddc_manifest=None, vxlan_subnet=None, cloud_user_group=None, management_rp=None, witness_availability_zone=None, esx_host_subnet=None, sso_domain=None, deployment_type=None)
      +class com.vmware.vmc.model_client.AwsSddcResourceConfig(backup_restore_bucket=None, public_ip_pool=None, vpc_info=None, kms_vpc_endpoint=None, max_num_public_ip=None, account_link_sddc_config=None, region=None, vsan_encryption_config=None, vpc_info_peered_agent=None, mgmt_appliance_network_name=None, nsxt=None, mgw_id=None, nsx_mgr_url=None, psc_management_ip=None, psc_url=None, cgws=None, availability_zones=None, management_ds=None, nsx_api_public_endpoint_url=None, custom_properties=None, cloud_password=None, provider='AWS', clusters=None, vc_management_ip=None, sddc_networks=None, cloud_username=None, esx_hosts=None, nsx_mgr_management_ip=None, vc_instance_id=None, esx_cluster_id=None, vc_public_ip=None, skip_creating_vxlan=None, vc_url=None, sddc_manifest=None, vxlan_subnet=None, cloud_user_group=None, management_rp=None, witness_availability_zone=None, esx_host_subnet=None, sso_domain=None, deployment_type=None, dns_with_management_vm_private_ip=None)

      Bases: vmware.vapi.bindings.struct.VapiStruct

      Tip

      @@ -788,8 +807,6 @@ names.

    • vsan_encryption_config (VsanEncryptionConfig or None) –
    • vpc_info_peered_agent (VpcInfo or None) –
    • mgmt_appliance_network_name (str or None) – Name for management appliance network.
    • -
    • dns_with_management_vm_private_ip (bool or None) – if true, use the private IP addresses to register DNS records for -the management VMs
    • nsxt (bool or None) – if true, NSX-T UI is enabled.
    • mgw_id (str or None) – Management Gateway Id
    • nsx_mgr_url (str or None) – URL of the NSX Manager
    • @@ -824,6 +841,7 @@ in vc_instance_id (str or None) – unique id of the vCenter server
    • esx_cluster_id (str or None) – Cluster Id to add ESX workflow
    • vc_public_ip (str or None) – vCenter public IP
    • +
    • skip_creating_vxlan (bool or None) – skip creating vxlan for compute gateway for SDDC provisioning
    • vc_url (str or None) – URL of the vCenter server
    • sddc_manifest (SddcManifest or None) –
    • vxlan_subnet (str or None) – VXLAN IP subnet
    • @@ -841,6 +859,8 @@ MultiAZ SDDC. This is null for a SingleAZ SDDC.
      Denotes if this is a SingleAZ SDDC or a MultiAZ SDDC.
      +
    • dns_with_management_vm_private_ip (bool or None) – if true, use the private IP addresses to register DNS records for +the management VMs
    @@ -1060,7 +1080,7 @@ names.

    -class com.vmware.vmc.model_client.ClusterConfig(num_hosts=None)
    +class com.vmware.vmc.model_client.ClusterConfig(host_cpu_cores_count=None, storage_capacity=None, num_hosts=None)

    Bases: vmware.vapi.bindings.struct.VapiStruct

    Tip

    @@ -1071,7 +1091,14 @@ names.

    -Parameters:num_hosts (long) – +Parameters:
      +
    • host_cpu_cores_count (long or None) – Customize CPU cores on hosts in a cluster. Specify number of cores +to be enabled on hosts in a cluster. format: int32
    • +
    • storage_capacity (long or None) – For EBS-backed instances only, the requested storage capacity in +GiB. format: int64
    • +
    • num_hosts (long) –
    • +
    + @@ -1108,7 +1135,7 @@ names.

    -class com.vmware.vmc.model_client.ConnectivityAgentValidation(type=None, ports=None)
    +class com.vmware.vmc.model_client.ConnectivityAgentValidation(source=None, type=None, ports=None, path=None)

    Bases: vmware.vapi.bindings.struct.VapiStruct

    Tip

    @@ -1120,28 +1147,59 @@ names.

    Parameters: +
    +
    +SOURCE_SRM = 'SRM'
    +
    + +
    +
    +SOURCE_VCENTER = 'VCENTER'
    +
    + +
    +
    +SOURCE_VR = 'VR'
    +
    +
    TYPE_CONNECTIVITY = 'CONNECTIVITY'
    +
    +
    +TYPE_CURL = 'CURL'
    +
    +
    TYPE_DNS = 'DNS'
    @@ -1176,6 +1234,7 @@ names.

  • id (str or None) –

    Possible values are:

    test group id, currently, only HLM.
    @@ -1187,6 +1246,11 @@ names.

    +
    +
    +ID_DRAAS = 'DRAAS'
    +
    +
    ID_HLM = 'HLM'
    @@ -1289,9 +1353,14 @@ names.

  • ConnectivityValidationSubGroup.ID_ONPREM_PSC
  • ConnectivityValidationSubGroup.ID_ACTIVE_DIRECTORY
  • ConnectivityValidationSubGroup.ID_ONPREM_ESX
  • +
  • ConnectivityValidationSubGroup.ID_DRAAS_ONPREM_VCENTER
  • +
  • ConnectivityValidationSubGroup.ID_DRAAS_ONPREM_PSC
  • +
  • ConnectivityValidationSubGroup.ID_DRAAS_ONPREM_SRM
  • +
  • ConnectivityValidationSubGroup.ID_DRAAS_ONPREM_VR
  • subGroup id, i.e. PRIMARY_DNS, SECONDARY_DNS, ONPREM_VCENTER, -ONPREM_PSC, ACTIVE_DIRECTORY, and ONPREM_ESX.

    +ONPREM_PSC, ACTIVE_DIRECTORY, ONPREM_ESX, DRAAS_ONPREM_VCENTER, +DRAAS_ONPREM_PSC, DRAAS_ONPREM_SRM and DRAAS_ONPREM_VR.

  • @@ -1303,6 +1372,26 @@ ONPREM_PSC, ACTIVE_DIRECTORY, and ONPREM_ESX.

    ID_ACTIVE_DIRECTORY = 'ACTIVE_DIRECTORY'
    +
    +
    +ID_DRAAS_ONPREM_PSC = 'DRAAS_ONPREM_PSC'
    +
    + +
    +
    +ID_DRAAS_ONPREM_SRM = 'DRAAS_ONPREM_SRM'
    +
    + +
    +
    +ID_DRAAS_ONPREM_VCENTER = 'DRAAS_ONPREM_VCENTER'
    +
    + +
    +
    +ID_DRAAS_ONPREM_VR = 'DRAAS_ONPREM_VR'
    +
    +
    ID_ONPREM_ESX = 'ONPREM_ESX'
    @@ -4513,7 +4602,7 @@ names.

    -class com.vmware.vmc.model_client.ReservationWindow(reservation_state=None, maintenance_properties=None, reserve_id=None, start_hour=None, sddc_id=None, manifest_id=None, duration_hours=None, start_date=None)
    +class com.vmware.vmc.model_client.ReservationWindow(reservation_state=None, emergency=None, maintenance_properties=None, reserve_id=None, start_hour=None, sddc_id=None, manifest_id=None, duration_hours=None, start_date=None)

    Bases: vmware.vapi.bindings.struct.VapiStruct

    Tip

    @@ -4533,6 +4622,7 @@ names.

  • ReservationWindow.RESERVATION_STATE_COMPLETED
  • +
  • emergency (bool or None) –
  • maintenance_properties (ReservationWindowMaintenanceProperties or None) –
  • reserve_id (str or None) –
  • start_hour (long or None) –
  • @@ -4637,7 +4727,7 @@ names.

    -class com.vmware.vmc.model_client.Sddc(updated=None, user_id=None, updated_by_user_id=None, created=None, version=None, updated_by_user_name=None, user_name=None, id=None, name=None, sddc_state=None, expiration_date=None, org_id=None, sddc_type=None, provider=None, account_link_state=None, resource_config=None)
    +class com.vmware.vmc.model_client.Sddc(updated=None, user_id=None, updated_by_user_id=None, created=None, version=None, updated_by_user_name=None, user_name=None, id=None, name=None, sddc_state=None, expiration_date=None, org_id=None, sddc_type=None, provider=None, account_link_state=None, sddc_access_state=None, resource_config=None)

    Bases: vmware.vapi.bindings.struct.VapiStruct

    Tip

    @@ -4686,6 +4776,8 @@ format: date-time
    Account linking state of the sddc
    +
  • sddc_access_state (str or None) – Describes the access state of sddc, valid state is DISABLED or +ENABLED
  • resource_config (AwsSddcResourceConfig or None) –
  • @@ -4771,7 +4863,7 @@ allocated.
    -class com.vmware.vmc.model_client.SddcConfig(name=None, account_link_sddc_config=None, vpc_cidr=None, num_hosts=None, sddc_type=None, vxlan_subnet=None, account_link_config=None, provider='SddcConfig', sso_domain=None, sddc_template_id=None, deployment_type=None)
    +class com.vmware.vmc.model_client.SddcConfig(storage_capacity=None, name=None, account_link_sddc_config=None, vpc_cidr=None, num_hosts=None, sddc_type=None, vxlan_subnet=None, account_link_config=None, provider='SddcConfig', skip_creating_vxlan=None, sso_domain=None, sddc_template_id=None, deployment_type=None)

    Bases: vmware.vapi.bindings.struct.VapiStruct

    Tip

    @@ -4783,13 +4875,17 @@ names.

    Parameters:
      +
    • storage_capacity (long or None) – The storage capacity value to be requested for the sddc primary +cluster, in GiBs. If provided, instead of using the direct-attached +storage, a capacity value amount of seperable storage will be used. +format: int64
    • name (str) –
    • account_link_sddc_config (list of AccountLinkSddcConfig or None) – A list of the SDDC linking configurations to use.
    • vpc_cidr (str or None) – AWS VPC IP range. Only prefix of 16 or 20 is currently supported.
    • num_hosts (long) –
    • sddc_type (str or None) – Denotes the sddc type , if the value is null or empty, the type is considered as default.
    • -
    • vxlan_subnet (str or None) – VXLAN IP subnet
    • +
    • vxlan_subnet (str or None) – VXLAN IP subnet in CIDR for compute gateway
    • account_link_config (AccountLinkConfig or None) – The account linking configuration, we will keep this one and remove accountLinkSddcConfig finally.
    • provider (str) –

      Possible values are:

      @@ -4799,6 +4895,7 @@ accountLinkSddcConfig finally.
    • Determines what additional properties are available based on cloud provider.

      +
    • skip_creating_vxlan (bool or None) – skip creating vxlan for compute gateway for SDDC provisioning
    • sso_domain (str or None) – The SSO domain name to use for vSphere users. If not specified, vmc.local will be used.
    • sddc_template_id (str or None) – If provided, configuration from the template will applied to the @@ -4846,7 +4943,7 @@ names.

      -Parameters:sddc_id (str or None) – Sddc ID format: UUID +Parameters:sddc_id (str or None) – Sddc ID @@ -5053,7 +5150,7 @@ names.

      -class com.vmware.vmc.model_client.SddcResourceConfig(mgmt_appliance_network_name=None, dns_with_management_vm_private_ip=None, nsxt=None, mgw_id=None, nsx_mgr_url=None, psc_management_ip=None, psc_url=None, cgws=None, availability_zones=None, management_ds=None, nsx_api_public_endpoint_url=None, custom_properties=None, cloud_password=None, provider='SddcResourceConfig', clusters=None, vc_management_ip=None, sddc_networks=None, cloud_username=None, esx_hosts=None, nsx_mgr_management_ip=None, vc_instance_id=None, esx_cluster_id=None, vc_public_ip=None, vc_url=None, sddc_manifest=None, vxlan_subnet=None, cloud_user_group=None, management_rp=None, witness_availability_zone=None, esx_host_subnet=None, sso_domain=None, deployment_type=None)
      +class com.vmware.vmc.model_client.SddcResourceConfig(mgmt_appliance_network_name=None, nsxt=None, mgw_id=None, nsx_mgr_url=None, psc_management_ip=None, psc_url=None, cgws=None, availability_zones=None, management_ds=None, nsx_api_public_endpoint_url=None, custom_properties=None, cloud_password=None, provider='SddcResourceConfig', clusters=None, vc_management_ip=None, sddc_networks=None, cloud_username=None, esx_hosts=None, nsx_mgr_management_ip=None, vc_instance_id=None, esx_cluster_id=None, vc_public_ip=None, skip_creating_vxlan=None, vc_url=None, sddc_manifest=None, vxlan_subnet=None, cloud_user_group=None, management_rp=None, witness_availability_zone=None, esx_host_subnet=None, sso_domain=None, deployment_type=None, dns_with_management_vm_private_ip=None)

      Bases: vmware.vapi.bindings.struct.VapiStruct

      Tip

      @@ -5066,8 +5163,6 @@ names.

      Parameters: @@ -5299,7 +5397,7 @@ names.

      -class com.vmware.vmc.model_client.ServiceError(original_service=None, params=None, default_message=None, original_service_error_code=None, error_code=None, localized_message=None)
      +class com.vmware.vmc.model_client.ServiceError(default_message=None, original_service=None, localized_message=None, original_service_error_code=None)

      Bases: vmware.vapi.bindings.struct.VapiStruct

      Detailed service errors associated with a task.

      @@ -5312,12 +5410,10 @@ names.

      Parameters:
        -
      • original_service (str) – The original service name of the error.
      • -
      • params (list of str or None) – The parameters of the service error.
      • default_message (str or None) – Error message in English.
      • -
      • original_service_error_code (str) – The original error code of the service.
      • -
      • error_code (str) – Localizable error code.
      • +
      • original_service (str) – The original service name of the error.
      • localized_message (str or None) – The localized message.
      • +
      • original_service_error_code (str) – The original error code of the service.
      @@ -5653,9 +5749,33 @@ names.

      +
      +
      +class com.vmware.vmc.model_client.SubscriptionProducts(product=None, types=None)
      +

      Bases: vmware.vapi.bindings.struct.VapiStruct

      +

      Details of products that are available for purchase.

      +
      +

      Tip

      +

      The arguments are used to initialize data attributes with the same +names.

      +
      + +++ + + + +
      Parameters:
        +
      • product (str or None) – The name of the product
      • +
      • types (list of str or None) – A list of different types/version for the product.
      • +
      +
      +
      +
      -class com.vmware.vmc.model_client.SubscriptionRequest(offer_version=None, product_type=None, region=None, commitment_term=None, offer_name=None, quantity=None)
      +class com.vmware.vmc.model_client.SubscriptionRequest(product=None, product_type=None, region=None, commitment_term=None, offer_name=None, type=None, offer_version=None, quantity=None)

      Bases: vmware.vapi.bindings.struct.VapiStruct

      Tip

      @@ -5667,11 +5787,15 @@ names.

      Parameters:
        -
      • offer_version (str) –
      • -
      • product_type (str) –
      • +
      • product (str or None) – The product for which subscription needs to be created. Refer +/vmc/api/orgs/{orgId}/products.
      • +
      • product_type (str) – Old identifier for product. *Deprecarted*. See product and type
      • region (str) –
      • commitment_term (str) –
      • offer_name (str) –
      • +
      • type (str or None) – The type of the product for which the subscription needs to be +created.
      • +
      • offer_version (str) –
      • quantity (long) –
      @@ -5753,9 +5877,28 @@ names.

      +
      +
      +class com.vmware.vmc.model_client.SupportWindowId(window_id=None)
      +

      Bases: vmware.vapi.bindings.struct.VapiStruct

      +
      +

      Tip

      +

      The arguments are used to initialize data attributes with the same +names.

      +
      + +++ + + + +
      Parameters:window_id (str or None) – Support Window ID
      +
      +
      -class com.vmware.vmc.model_client.Task(updated=None, user_id=None, updated_by_user_id=None, created=None, version=None, updated_by_user_name=None, user_name=None, id=None, status=None, estimated_remaining_minutes=None, localized_error_message=None, resource_id=None, task_version=None, start_resource_entity_version=None, sub_status=None, task_type=None, start_time=None, task_progress_phases=None, error_message=None, org_id=None, end_resource_entity_version=None, service_errors=None, org_type=None, parent_task_id=None, params=None, progress_percent=None, phase_in_progress=None, resource_type=None, end_time=None)
      +class com.vmware.vmc.model_client.Task(updated=None, user_id=None, updated_by_user_id=None, created=None, version=None, updated_by_user_name=None, user_name=None, id=None, status=None, localized_error_message=None, resource_id=None, parent_task_id=None, task_version=None, correlation_id=None, start_resource_entity_version=None, sub_status=None, task_type=None, start_time=None, task_progress_phases=None, error_message=None, org_id=None, end_resource_entity_version=None, service_errors=None, org_type=None, estimated_remaining_minutes=None, params=None, progress_percent=None, phase_in_progress=None, resource_type=None, end_time=None)

      Bases: vmware.vapi.bindings.struct.VapiStruct

      Tip

      @@ -5784,11 +5927,15 @@ names.

    • Task.STATUS_CANCELED
    -
  • estimated_remaining_minutes (long or None) – Estimated remaining time in minute of the task execution, < 0 means -no estimation for the task. format: int32
  • localized_error_message (str or None) –
  • -
  • resource_id (str or None) – UUID of resources task is acting upon
  • +
  • resource_id (str or None) – UUID of the resource the task is acting upon
  • +
  • parent_task_id (str or None) – If this task was created by another task - this provides the +linkage. Mostly for debugging.
  • task_version (str or None) –
  • +
  • correlation_id (str or None) – (Optional) Client provided uniqifier to make task creation +idempotent. Be aware not all tasks support this. For tasks that do +- supplying the same correlation Id, for the same task type, within +a predefined window will ensure the operation happens at most once.
  • start_resource_entity_version (long or None) – Entity version of the resource at the start of the task. This is only set for some task types. format: int32
  • sub_status (str or None) –
  • @@ -5801,8 +5948,8 @@ only set for some task types. format: int32 set for some task types. format: int32
  • service_errors (list of ServiceError or None) – Service errors returned from SDDC services.
  • org_type (str or None) –
  • -
  • parent_task_id (str or None) – If this task was created by another task - this provides the -linkage. Mostly for debugging.
  • +
  • estimated_remaining_minutes (long or None) – Estimated remaining time in minute of the task execution, < 0 means +no estimation for the task. format: int32
  • params (vmware.vapi.struct.VapiStruct or None) –
  • progress_percent (long or None) – Estimated progress percentage the task executed format: int32
  • phase_in_progress (str or None) – The current in progress phase ID in the task execution, if none in @@ -6323,7 +6470,7 @@ names.

    Parameters:
    • on_prem_subnet (str or None) –
    • -
    • traffic_stats (vmware.vapi.struct.VapiStruct or None) –
    • +
    • traffic_stats (VpnTunnelTrafficStats or None) –
    • last_info_message (str or None) –
    • local_subnet (str or None) –
    • tunnel_state (str or None) –
    • @@ -6389,6 +6536,37 @@ names.

  • +
    +
    +class com.vmware.vmc.model_client.VsanConfigConstraints(max_capacity=None, recommended_capacities=None, supported_capacity_increment=None, min_capacity=None, num_hosts=None)
    +

    Bases: vmware.vapi.bindings.struct.VapiStruct

    +

    This describes the possible physical storage capacity choices for use with +a given VsanStorageDesigner implementation. These choices are specific to a +customer-defined number of hosts per cluster.

    +
    +

    Tip

    +

    The arguments are used to initialize data attributes with the same +names.

    +
    + +++ + + + +
    Parameters:
      +
    • max_capacity (long) – Maximum capacity supported for cluster (GiB). format: int64
    • +
    • recommended_capacities (list of long) – List of supported capacities which may offer preferable performance +(GiB). format: int64
    • +
    • supported_capacity_increment (long or None) – Increment to be added to min_capacity to result in a supported +capacity (GiB). format: int64
    • +
    • min_capacity (long) – Minimum capacity supported for cluster (GiB). format: int64
    • +
    • num_hosts (long) – Number of hosts in cluster. format: int64
    • +
    +
    +
    +
    class com.vmware.vmc.model_client.VsanEncryptionConfig(port=None, certificate=None)
    @@ -6416,8 +6594,8 @@ names.

    com.vmware.vmc.orgs_client module

    -
    -class com.vmware.vmc.orgs_client.OfferInstances(config)
    +

    Bases: vmware.vapi.bindings.stub.VapiInterface

    @@ -6428,38 +6606,18 @@ names.

    -
    -list(org, region, product_type)
    -

    List all offers available for the specific product type in the specific -region

    +
    +get(org)
    +

    Gets a link that can be used on a customer’s account to start the +linking process.

    - + - - - - - - - - - +
    Parameters:
      -
    • org (str) – Organization identifier. (required)
    • -
    • region (str) – Region for the offer (required)
    • -
    • product_type (str) – Type of the product in offers (required)
    • -
    -
    Parameters:org (str) – Organization identifier. (required)
    Return type:

    com.vmware.vmc.model_client.OfferInstancesHolder

    -
    Returns:

    com.vmware.vmc.model.OfferInstancesHolder

    -
    Raise:

    com.vmware.vapi.std.errors_client.InvalidRequest -Bad Request. Type of the product not supported.

    -
    Raise:

    com.vmware.vapi.std.errors_client.Unauthorized -Forbidden

    -
    Raise:

    com.vmware.vapi.std.errors_client.Unauthenticated -Unauthorized

    -
    Raise:com.vmware.vapi.std.errors_client.Error +Generic Error
    @@ -6492,15 +6650,15 @@ Unauthorized

    Returns: -Raise:com.vmware.vapi.std.errors_client.Unauthorized -Forbidden - -Raise:com.vmware.vapi.std.errors_client.NotFound -Organization doesn’t exist - Raise:com.vmware.vapi.std.errors_client.Unauthenticated Unauthorized +Raise:com.vmware.vapi.std.errors_client.Unauthorized +Forbidden + +Raise:com.vmware.vapi.std.errors_client.NotFound +Organization doesn’t exist +
    @@ -6533,12 +6691,12 @@ Unauthorized Returns: -Raise:com.vmware.vapi.std.errors_client.Unauthorized -Access not allowed to the operation for the current user - -Raise:com.vmware.vapi.std.errors_client.Unauthenticated +Raise:com.vmware.vapi.std.errors_client.Unauthenticated Unauthorized +Raise:com.vmware.vapi.std.errors_client.Unauthorized +Access not allowed to the operation for the current user +
    @@ -6577,12 +6735,12 @@ Unauthorized Returns:

    com.vmware.vmc.model.Task

    -Raise:

    com.vmware.vapi.std.errors_client.Unauthorized -Forbidden

    +Raise:

    com.vmware.vapi.std.errors_client.Unauthenticated +Unauthorized

    -Raise:

    com.vmware.vapi.std.errors_client.Unauthenticated -Unauthorized

    +Raise:

    com.vmware.vapi.std.errors_client.Unauthorized +Forbidden

    @@ -6609,18 +6767,18 @@ Unauthorized

    Returns:

    com.vmware.vmc.model.SddcTemplate

    -Raise:

    com.vmware.vapi.std.errors_client.Unauthorized +Raise:

    com.vmware.vapi.std.errors_client.Unauthenticated +Unauthorized

    + + +Raise:

    com.vmware.vapi.std.errors_client.Unauthorized Forbidden

    -Raise:

    com.vmware.vapi.std.errors_client.NotFound +Raise:

    com.vmware.vapi.std.errors_client.NotFound Cannot find the SDDC Template with given identifier

    -Raise:

    com.vmware.vapi.std.errors_client.Unauthenticated -Unauthorized

    - -
    @@ -6639,12 +6797,12 @@ Unauthorized

    Returns: -Raise:com.vmware.vapi.std.errors_client.Unauthorized -Forbidden - -Raise:com.vmware.vapi.std.errors_client.Unauthenticated +Raise:com.vmware.vapi.std.errors_client.Unauthenticated Unauthorized +Raise:com.vmware.vapi.std.errors_client.Unauthorized +Forbidden +
    @@ -6683,12 +6841,12 @@ Unauthorized Returns:

    com.vmware.vmc.model.Task

    -Raise:

    com.vmware.vapi.std.errors_client.Unauthorized -Forbidden

    +Raise:

    com.vmware.vapi.std.errors_client.Unauthenticated +Unauthorized

    -Raise:

    com.vmware.vapi.std.errors_client.Unauthenticated -Unauthorized

    +Raise:

    com.vmware.vapi.std.errors_client.Unauthorized +Forbidden

    @@ -6724,22 +6882,22 @@ is running against this SDDC. This option is restricted. (optional) Returns:

    com.vmware.vmc.model.Task

    -Raise:

    com.vmware.vapi.std.errors_client.InvalidRequest +Raise:

    com.vmware.vapi.std.errors_client.Unauthenticated +Unauthorized

    + + +Raise:

    com.vmware.vapi.std.errors_client.InvalidRequest The sddc is not in a state that’s valid for deletion

    -Raise:

    com.vmware.vapi.std.errors_client.Unauthorized +Raise:

    com.vmware.vapi.std.errors_client.Unauthorized Access not allowed to the operation for the current user

    -Raise:

    com.vmware.vapi.std.errors_client.NotFound +Raise:

    com.vmware.vapi.std.errors_client.NotFound Cannot find the SDDC with given identifier

    -Raise:

    com.vmware.vapi.std.errors_client.Unauthenticated -Unauthorized

    - -
    @@ -6764,18 +6922,18 @@ Unauthorized

    Returns:

    com.vmware.vmc.model.Sddc

    -Raise:

    com.vmware.vapi.std.errors_client.Unauthorized +Raise:

    com.vmware.vapi.std.errors_client.Unauthenticated +Unauthorized

    + + +Raise:

    com.vmware.vapi.std.errors_client.Unauthorized Forbidden

    -Raise:

    com.vmware.vapi.std.errors_client.NotFound +Raise:

    com.vmware.vapi.std.errors_client.NotFound Cannot find the SDDC with given identifier

    -Raise:

    com.vmware.vapi.std.errors_client.Unauthenticated -Unauthorized

    - -
    @@ -6794,12 +6952,12 @@ Unauthorized

    Returns: -Raise:com.vmware.vapi.std.errors_client.Unauthorized -Forbidden - -Raise:com.vmware.vapi.std.errors_client.Unauthenticated +Raise:com.vmware.vapi.std.errors_client.Unauthenticated Unauthorized +Raise:com.vmware.vapi.std.errors_client.Unauthorized +Forbidden +
    @@ -6865,17 +7023,17 @@ Unauthorized Returns:

    com.vmware.vmc.model.Task

    -Raise:

    com.vmware.vapi.std.errors_client.InternalServerError -Server error. Check retryable flag to see if request should be -retried.

    +Raise:

    com.vmware.vapi.std.errors_client.Unauthenticated +Unauthorized

    Raise:

    com.vmware.vapi.std.errors_client.Unauthorized Forbidden

    -Raise:

    com.vmware.vapi.std.errors_client.Unauthenticated -Unauthorized

    +Raise:

    com.vmware.vapi.std.errors_client.InternalServerError +Server error. Check retryable flag to see if request should be +retried.

    @@ -6937,19 +7095,19 @@ specified (optional) Returns:

    -Raise:

    com.vmware.vapi.std.errors_client.InternalServerError +Raise:

    com.vmware.vapi.std.errors_client.Unauthenticated +Unauthorized

    + + +Raise:

    com.vmware.vapi.std.errors_client.InternalServerError Server error. Check retryable flag to see if request should be retried.

    -Raise:

    com.vmware.vapi.std.errors_client.NotFound +Raise:

    com.vmware.vapi.std.errors_client.NotFound Not Found

    -Raise:

    com.vmware.vapi.std.errors_client.Unauthenticated -Unauthorized

    - -
    @@ -6988,18 +7146,18 @@ Unauthorized

    Returns:

    com.vmware.vmc.model.Task

    -Raise:

    com.vmware.vapi.std.errors_client.Unauthorized +Raise:

    com.vmware.vapi.std.errors_client.Unauthenticated +Unauthorized

    + + +Raise:

    com.vmware.vapi.std.errors_client.Unauthorized Forbidden

    -Raise:

    com.vmware.vapi.std.errors_client.NotFound +Raise:

    com.vmware.vapi.std.errors_client.NotFound Cannot find the task with given identifier

    -Raise:

    com.vmware.vapi.std.errors_client.Unauthenticated -Unauthorized

    - -
    @@ -7018,12 +7176,11 @@ Unauthorized

    ‘ge’, ‘mul’, ‘div’, ‘mod’, ‘sub’, ‘add’ Unary Operators: ‘not’, ‘-‘ (minus) String Operators: ‘startswith’, ‘endswith’, ‘length’, ‘contains’, ‘tolower’, ‘toupper’, Nested attributes are composed -using ‘.’ Dates must be formatted as YYYY-MM-DD Strings should -enclosed in single quotes, escape single quote with two single -quotes The special literal ‘created’ will be mapped to the time the -resource was first created. NOTE: currently only ANDs of ORs is -implemented. NOTE2: currently only range operators are implemented -for created date. Examples: - $filter=(created gt 2016-08-09) and +using ‘.’ Dates must be formatted as yyyy-MM-dd or +yyyy-MM-ddTHH:mm:ss[.SSS]Z Strings should enclosed in single +quotes, escape single quote with two single quotes The special +literal ‘created’ will be mapped to the time the resource was first +created. Examples: - $filter=(updated gt 2016-08-09T13:00:00Z) and (org_id eq 278710ff4e-6b6d-4d4e-aefb-ca637f38609e) - $filter=(created eq 2016-08-09) - $filter=(created gt 2016-08-09) and (sddc.status eq ‘READY’) (optional) @@ -7036,12 +7193,12 @@ and (sddc.status eq ‘READY’) (optional) Returns:

    -Raise:

    com.vmware.vapi.std.errors_client.Unauthorized -Forbidden

    +Raise:

    com.vmware.vapi.std.errors_client.Unauthenticated +Unauthorized

    -Raise:

    com.vmware.vapi.std.errors_client.Unauthenticated -Unauthorized

    +Raise:

    com.vmware.vapi.std.errors_client.Unauthorized +Forbidden

    @@ -7072,22 +7229,22 @@ monitored to determine subsequent status.

    Returns:

    com.vmware.vmc.model.Task

    -Raise:

    com.vmware.vapi.std.errors_client.InvalidRequest +Raise:

    com.vmware.vapi.std.errors_client.Unauthenticated +Unauthorized

    + + +Raise:

    com.vmware.vapi.std.errors_client.InvalidRequest Invalid action or bad argument

    -Raise:

    com.vmware.vapi.std.errors_client.Unauthorized +Raise:

    com.vmware.vapi.std.errors_client.Unauthorized Forbidden

    -Raise:

    com.vmware.vapi.std.errors_client.NotFound +Raise:

    com.vmware.vapi.std.errors_client.NotFound Cannot find the task with given identifier

    -Raise:

    com.vmware.vapi.std.errors_client.Unauthenticated -Unauthorized

    - - @@ -7117,7 +7274,7 @@ Unauthorized

    - © Copyright 2018, VMware, Inc. + © Copyright 2019, VMware, Inc.

    @@ -7142,7 +7299,7 @@ Unauthorized

    - + diff --git a/vmc/com.vmware.vmc.orgs.html b/vmc/com.vmware.vmc.orgs.html index cbd94c41..dc9f9701 100644 --- a/vmc/com.vmware.vmc.orgs.html +++ b/vmc/com.vmware.vmc.orgs.html @@ -8,7 +8,7 @@ - com.vmware.vmc.orgs package — VMware Cloud on AWS Console API 1.3.0 documentation + com.vmware.vmc.orgs package — VMware Cloud on AWS Console API 1.3.1 documentation @@ -58,7 +58,7 @@
    - 1.3.0 + 1.3.1
    @@ -96,6 +96,7 @@ +
  • vmware package
  • @@ -234,6 +235,355 @@

    Submodules

    +
    +

    com.vmware.vmc.orgs.reservations_client module

    @@ -269,12 +619,12 @@ Returns:

    com.vmware.vmc.model.MaintenanceWindowGet

    -Raise:

    com.vmware.vapi.std.errors_client.Unauthorized -Access not allowed to the operation for the current user

    +Raise:

    com.vmware.vapi.std.errors_client.Unauthenticated +Unauthorized

    -Raise:

    com.vmware.vapi.std.errors_client.Unauthenticated -Unauthorized

    +Raise:

    com.vmware.vapi.std.errors_client.Unauthorized +Access not allowed to the operation for the current user

    @@ -302,20 +652,20 @@ Unauthorized

    Returns:

    com.vmware.vmc.model.MaintenanceWindow

    -Raise:

    com.vmware.vapi.std.errors_client.InvalidRequest -The reservation is not in a state that’s valid for updates

    +Raise:

    com.vmware.vapi.std.errors_client.Unauthenticated +Unauthorized

    Raise:

    com.vmware.vapi.std.errors_client.ConcurrentChange Conflict with exiting reservation

    -Raise:

    com.vmware.vapi.std.errors_client.Unauthorized -Access not allowed to the operation for the current user

    +Raise:

    com.vmware.vapi.std.errors_client.InvalidRequest +The reservation is not in a state that’s valid for updates

    -Raise:

    com.vmware.vapi.std.errors_client.Unauthenticated -Unauthorized

    +Raise:

    com.vmware.vapi.std.errors_client.Unauthorized +Access not allowed to the operation for the current user

    @@ -375,22 +725,22 @@ Unauthorized

    Returns:

    com.vmware.vmc.model.Task

    -Raise:

    com.vmware.vapi.std.errors_client.InvalidRequest +Raise:

    com.vmware.vapi.std.errors_client.Unauthenticated +Unauthorized

    + + +Raise:

    com.vmware.vapi.std.errors_client.InvalidRequest The sddc is not in a state that’s valid for updates

    -Raise:

    com.vmware.vapi.std.errors_client.Unauthorized +Raise:

    com.vmware.vapi.std.errors_client.Unauthorized Access not allowed to the operation for the current user

    -Raise:

    com.vmware.vapi.std.errors_client.NotFound +Raise:

    com.vmware.vapi.std.errors_client.NotFound Cannot find the cluster with the given identifier

    -Raise:

    com.vmware.vapi.std.errors_client.Unauthenticated -Unauthorized

    - - @@ -418,22 +768,22 @@ be powered off.

    Returns:

    com.vmware.vmc.model.Task

    -Raise:

    com.vmware.vapi.std.errors_client.InvalidRequest +Raise:

    com.vmware.vapi.std.errors_client.Unauthenticated +Unauthorized

    + + +Raise:

    com.vmware.vapi.std.errors_client.InvalidRequest The sddc is not in a state that’s valid for updates

    -Raise:

    com.vmware.vapi.std.errors_client.Unauthorized +Raise:

    com.vmware.vapi.std.errors_client.Unauthorized Access not allowed to the operation for the current user

    -Raise:

    com.vmware.vapi.std.errors_client.NotFound +Raise:

    com.vmware.vapi.std.errors_client.NotFound Cannot find the cluster with the given id

    -Raise:

    com.vmware.vapi.std.errors_client.Unauthenticated -Unauthorized

    - - @@ -474,23 +824,23 @@ SDDC for high availability and data redundancy.

    Returns:

    com.vmware.vmc.model.Task

    -Raise:

    com.vmware.vapi.std.errors_client.InvalidRequest +Raise:

    com.vmware.vapi.std.errors_client.Unauthenticated +Unauthorized

    + + +Raise:

    com.vmware.vapi.std.errors_client.InvalidRequest The sddc is not in a state that’s valid for updates, Method not allowed

    -Raise:

    com.vmware.vapi.std.errors_client.Unauthorized +Raise:

    com.vmware.vapi.std.errors_client.Unauthorized Access not allowed to the operation for the current user

    -Raise:

    com.vmware.vapi.std.errors_client.NotFound +Raise:

    com.vmware.vapi.std.errors_client.NotFound Cannot find the SDDC with given identifier

    -Raise:

    com.vmware.vapi.std.errors_client.Unauthenticated -Unauthorized

    - - @@ -538,22 +888,22 @@ operation). Default behaviour is ‘add’ (optional) Returns:

    com.vmware.vmc.model.Task

    -Raise:

    com.vmware.vapi.std.errors_client.InvalidRequest +Raise:

    com.vmware.vapi.std.errors_client.Unauthenticated +Unauthorized

    + + +Raise:

    com.vmware.vapi.std.errors_client.InvalidRequest The sddc is not in a state that’s valid for updates

    -Raise:

    com.vmware.vapi.std.errors_client.Unauthorized +Raise:

    com.vmware.vapi.std.errors_client.Unauthorized Access not allowed to the operation for the current user

    -Raise:

    com.vmware.vapi.std.errors_client.NotFound +Raise:

    com.vmware.vapi.std.errors_client.NotFound Cannot find the SDDC with the given identifier

    -Raise:

    com.vmware.vapi.std.errors_client.Unauthenticated -Unauthorized

    - - @@ -593,22 +943,22 @@ Unauthorized

    Returns:

    com.vmware.vmc.model.Task

    -Raise:

    com.vmware.vapi.std.errors_client.InvalidRequest +Raise:

    com.vmware.vapi.std.errors_client.Unauthenticated +Unauthorized

    + + +Raise:

    com.vmware.vapi.std.errors_client.InvalidRequest The sddc is not in a state that’s valid for updates

    -Raise:

    com.vmware.vapi.std.errors_client.Unauthorized +Raise:

    com.vmware.vapi.std.errors_client.Unauthorized Access not allowed to the operation for the current user

    -Raise:

    com.vmware.vapi.std.errors_client.NotFound +Raise:

    com.vmware.vapi.std.errors_client.NotFound Cannot find the SDDC with given identifier

    -Raise:

    com.vmware.vapi.std.errors_client.Unauthenticated -Unauthorized

    - - @@ -634,22 +984,22 @@ Unauthorized

    Returns:

    com.vmware.vmc.model.Task

    -Raise:

    com.vmware.vapi.std.errors_client.InvalidRequest +Raise:

    com.vmware.vapi.std.errors_client.Unauthenticated +Unauthorized

    + + +Raise:

    com.vmware.vapi.std.errors_client.InvalidRequest The sddc is not in a state that’s valid for updates

    -Raise:

    com.vmware.vapi.std.errors_client.Unauthorized +Raise:

    com.vmware.vapi.std.errors_client.Unauthorized Access not allowed to the operation for the current user

    -Raise:

    com.vmware.vapi.std.errors_client.NotFound +Raise:

    com.vmware.vapi.std.errors_client.NotFound Cannot find the public IP with given IP address

    -Raise:

    com.vmware.vapi.std.errors_client.Unauthenticated -Unauthorized

    - - @@ -675,18 +1025,18 @@ Unauthorized

    Returns:

    com.vmware.vmc.model.SddcPublicIp

    -Raise:

    com.vmware.vapi.std.errors_client.Unauthorized +Raise:

    com.vmware.vapi.std.errors_client.Unauthenticated +Unauthorized

    + + +Raise:

    com.vmware.vapi.std.errors_client.Unauthorized Forbidden

    -Raise:

    com.vmware.vapi.std.errors_client.NotFound +Raise:

    com.vmware.vapi.std.errors_client.NotFound Cannot find the public IP with given IP address

    -Raise:

    com.vmware.vapi.std.errors_client.Unauthenticated -Unauthorized

    - - @@ -711,18 +1061,18 @@ Unauthorized

    Returns:

    -Raise:

    com.vmware.vapi.std.errors_client.Unauthorized +Raise:

    com.vmware.vapi.std.errors_client.Unauthenticated +Unauthorized

    + + +Raise:

    com.vmware.vapi.std.errors_client.Unauthorized Forbidden

    -Raise:

    com.vmware.vapi.std.errors_client.NotFound +Raise:

    com.vmware.vapi.std.errors_client.NotFound Cannot find the SDDC with given identifier

    -Raise:

    com.vmware.vapi.std.errors_client.Unauthenticated -Unauthorized

    - - @@ -758,22 +1108,22 @@ needs to have a new name string. (required) Returns:

    com.vmware.vmc.model.Task

    -Raise:

    com.vmware.vapi.std.errors_client.InvalidRequest +Raise:

    com.vmware.vapi.std.errors_client.Unauthenticated +Unauthorized

    + + +Raise:

    com.vmware.vapi.std.errors_client.InvalidRequest The sddc is not in a state that’s valid for updates

    -Raise:

    com.vmware.vapi.std.errors_client.Unauthorized +Raise:

    com.vmware.vapi.std.errors_client.Unauthorized Access not allowed to the operation for the current user

    -Raise:

    com.vmware.vapi.std.errors_client.NotFound +Raise:

    com.vmware.vapi.std.errors_client.NotFound Cannot find the public IP with given IP address

    -Raise:

    com.vmware.vapi.std.errors_client.Unauthenticated -Unauthorized

    - - @@ -812,23 +1162,23 @@ Unauthorized

    Returns:

    com.vmware.vmc.model.SddcTemplate

    -Raise:

    com.vmware.vapi.std.errors_client.InvalidRequest +Raise:

    com.vmware.vapi.std.errors_client.Unauthenticated +Unauthorized

    + + +Raise:

    com.vmware.vapi.std.errors_client.InvalidRequest SDDC is in a state that cannot be use for generating configuration template

    -Raise:

    com.vmware.vapi.std.errors_client.Unauthorized +Raise:

    com.vmware.vapi.std.errors_client.Unauthorized Forbidden

    -Raise:

    com.vmware.vapi.std.errors_client.NotFound +Raise:

    com.vmware.vapi.std.errors_client.NotFound Cannot find the SDDC with given identifier

    -Raise:

    com.vmware.vapi.std.errors_client.Unauthenticated -Unauthorized

    - - @@ -850,6 +1200,192 @@ Unauthorized

    +
    +
    +

    com.vmware.vmc.orgs.storage_client module

    +
    +
    +class com.vmware.vmc.orgs.storage_client.ClusterConstraints(config)
    +

    Bases: vmware.vapi.bindings.stub.VapiInterface

    + +++ + + + +
    Parameters:config (vmware.vapi.bindings.stub.StubConfiguration) – Configuration to be used for creating the stub.
    +
    +
    +get(org, provider, num_hosts)
    +

    Get constraints on cluster storage size for EBS-backed clusters.

    + +++ + + + + + + + + + + + + + +
    Parameters:
      +
    • org (str) – Organization identifier. (required)
    • +
    • provider (str) – Cloud storage provider ID (example AWS) (required)
    • +
    • num_hosts (long) – Number of hosts in cluster (required)
    • +
    +
    Return type:

    com.vmware.vmc.model_client.VsanConfigConstraints

    +
    Returns:

    com.vmware.vmc.model.VsanConfigConstraints

    +
    Raise:

    com.vmware.vapi.std.errors_client.Unauthenticated +Unauthorized

    +
    Raise:

    com.vmware.vapi.std.errors_client.InvalidRequest +Invalid or missing parameters

    +
    Raise:

    com.vmware.vapi.std.errors_client.Unauthorized +Forbidden

    +
    +
    + +
    + +
    +
    +class com.vmware.vmc.orgs.storage_client.StubFactory(stub_config)
    +

    Bases: vmware.vapi.bindings.stub.StubFactoryBase

    +

    Initialize StubFactoryBase

    + +++ + + + +
    Parameters:stub_config (vmware.vapi.bindings.stub.StubConfiguration) – Stub config instance
    +
    + +
    +
    +

    com.vmware.vmc.orgs.subscriptions_client module

    +
    +
    +class com.vmware.vmc.orgs.subscriptions_client.OfferInstances(config)
    +

    Bases: vmware.vapi.bindings.stub.VapiInterface

    + +++ + + + +
    Parameters:config (vmware.vapi.bindings.stub.StubConfiguration) – Configuration to be used for creating the stub.
    +
    +
    +list(org, region, product_type, product=None, type=None)
    +

    List all offers available for the specific product type in the specific +region

    + +++ + + + + + + + + + + + + + +
    Parameters:
      +
    • org (str) – Organization identifier. (required)
    • +
    • region (str) – Region for the offer (required)
    • +
    • product_type (str) – Type of the product in offers. *This has been deprecated*. Please +use product & type parameters (required)
    • +
    • product (str or None) – The product that you are trying to purchase, eg. host. This needs +to be accompanied by the type parameter (optional)
    • +
    • type (str or None) – The type/flavor of the product you are trying it purchase,eg. an +`r5.metal` host. This needs to be accompanied by the +product parameter. (optional)
    • +
    +
    Return type:

    com.vmware.vmc.model_client.OfferInstancesHolder

    +
    Returns:

    com.vmware.vmc.model.OfferInstancesHolder

    +
    Raise:

    com.vmware.vapi.std.errors_client.Unauthenticated +Unauthorized

    +
    Raise:

    com.vmware.vapi.std.errors_client.InvalidRequest +Bad Request. Type of the product not supported.

    +
    Raise:

    com.vmware.vapi.std.errors_client.Unauthorized +Forbidden

    +
    +
    + +
    + +
    +
    +class com.vmware.vmc.orgs.subscriptions_client.Products(config)
    +

    Bases: vmware.vapi.bindings.stub.VapiInterface

    + +++ + + + +
    Parameters:config (vmware.vapi.bindings.stub.StubConfiguration) – Configuration to be used for creating the stub.
    +
    +
    +list(org)
    +

    List of all the products that are available for purchase.

    + +++ + + + + + + + + + + + + + +
    Parameters:org (str) – Organization identifier. (required)
    Return type:list of com.vmware.vmc.model_client.SubscriptionProducts
    Returns:
    Raise:com.vmware.vapi.std.errors_client.Unauthenticated +Unauthorized
    Raise:com.vmware.vapi.std.errors_client.Unauthorized +Forbidden
    Raise:com.vmware.vapi.std.errors_client.InternalServerError +Internal server error
    +
    + +
    + +
    +
    +class com.vmware.vmc.orgs.subscriptions_client.StubFactory(stub_config)
    +

    Bases: vmware.vapi.bindings.stub.StubFactoryBase

    +

    Initialize StubFactoryBase

    + +++ + + + +
    Parameters:stub_config (vmware.vapi.bindings.stub.StubConfiguration) – Stub config instance
    +
    +

    com.vmware.vmc.orgs.tbrs_client module

    @@ -879,24 +1415,24 @@ Unauthorized

    -Return type:

    dict of str and com.vmware.vmc.model_client.ReservationWindow

    +Return type:

    dict of str and list of com.vmware.vmc.model_client.ReservationWindow

    Returns:

    -Raise:

    com.vmware.vapi.std.errors_client.InvalidRequest +Raise:

    com.vmware.vapi.std.errors_client.Unauthenticated +Unauthorized

    + + +Raise:

    com.vmware.vapi.std.errors_client.InvalidRequest Bad Call

    -Raise:

    com.vmware.vapi.std.errors_client.Unauthorized +Raise:

    com.vmware.vapi.std.errors_client.Unauthorized Forbidden

    -Raise:

    com.vmware.vapi.std.errors_client.Unauthenticated -Unauthorized

    - - @@ -944,25 +1480,25 @@ Unauthorized

    Returns: -Raise:com.vmware.vapi.std.errors_client.InvalidRequest +Raise:com.vmware.vapi.std.errors_client.Unauthenticated +Unauthorized + +Raise:com.vmware.vapi.std.errors_client.InvalidRequest Invalid request -Raise:com.vmware.vapi.std.errors_client.Unauthorized +Raise:com.vmware.vapi.std.errors_client.Unauthorized Forbidden -Raise:com.vmware.vapi.std.errors_client.NotFound +Raise:com.vmware.vapi.std.errors_client.NotFound No support windows are available -Raise:com.vmware.vapi.std.errors_client.Unauthenticated -Unauthorized -
    -put(org, id, sddc_id=None)
    +put(org, id, sddc_id)

    Move Sddc to new support window

    @@ -971,32 +1507,32 @@ Unauthorized - - - + + - - - -
    Parameters:
    Return type:

    com.vmware.vmc.model_client.SupportWindow

    +
    Return type:

    com.vmware.vmc.model_client.SupportWindowId

    Returns:

    com.vmware.vmc.model.SupportWindow

    +
    Returns:

    com.vmware.vmc.model.SupportWindowId

    Raise:

    com.vmware.vapi.std.errors_client.InvalidRequest +

    Raise:

    com.vmware.vapi.std.errors_client.Unauthenticated +Unauthorized

    +
    Raise:

    com.vmware.vapi.std.errors_client.InvalidRequest Invalid request

    Raise:

    com.vmware.vapi.std.errors_client.Unauthorized +

    Raise:

    com.vmware.vapi.std.errors_client.Unauthorized Forbidden

    Raise:

    com.vmware.vapi.std.errors_client.NotFound +

    Raise:

    com.vmware.vapi.std.errors_client.NotFound Feature does not exist

    Raise:

    com.vmware.vapi.std.errors_client.Unauthenticated -Unauthorized

    -
    @@ -1026,7 +1562,7 @@ Unauthorized

    - © Copyright 2018, VMware, Inc. + © Copyright 2019, VMware, Inc.

    @@ -1051,7 +1587,7 @@ Unauthorized

    - + diff --git a/vmc/com.vmware.vmc.orgs.sddcs.html b/vmc/com.vmware.vmc.orgs.sddcs.html index eef4aeba..35c3392c 100644 --- a/vmc/com.vmware.vmc.orgs.sddcs.html +++ b/vmc/com.vmware.vmc.orgs.sddcs.html @@ -8,7 +8,7 @@ - com.vmware.vmc.orgs.sddcs package — VMware Cloud on AWS Console API 1.3.0 documentation + com.vmware.vmc.orgs.sddcs package — VMware Cloud on AWS Console API 1.3.1 documentation @@ -58,7 +58,7 @@
    - 1.3.0 + 1.3.1
    @@ -96,6 +96,7 @@ +
  • vmware package
  • @@ -261,18 +262,18 @@ Returns:

    com.vmware.vmc.model.Task

    -Raise:

    com.vmware.vapi.std.errors_client.InvalidRequest +Raise:

    com.vmware.vapi.std.errors_client.Unauthenticated +Unauthorized

    + + +Raise:

    com.vmware.vapi.std.errors_client.InvalidRequest The sddc is not in a state that’s valid for updates or invalid body

    -Raise:

    com.vmware.vapi.std.errors_client.Unauthorized +Raise:

    com.vmware.vapi.std.errors_client.Unauthorized Forbidden

    -Raise:

    com.vmware.vapi.std.errors_client.Unauthenticated -Unauthorized

    - - @@ -311,18 +312,18 @@ Unauthorized

    Returns:

    com.vmware.vmc.model.Task

    -Raise:

    com.vmware.vapi.std.errors_client.InvalidRequest +Raise:

    com.vmware.vapi.std.errors_client.Unauthenticated +Unauthorized

    + + +Raise:

    com.vmware.vapi.std.errors_client.InvalidRequest The sddc is not in a state that’s valid for updates or invalid body

    -Raise:

    com.vmware.vapi.std.errors_client.Unauthorized +Raise:

    com.vmware.vapi.std.errors_client.Unauthorized Forbidden

    -Raise:

    com.vmware.vapi.std.errors_client.Unauthenticated -Unauthorized

    - - @@ -379,12 +380,12 @@ Unauthorized

    Returns:

    com.vmware.vmc.model.ConnectivityValidationGroups

    -Raise:

    com.vmware.vapi.std.errors_client.Unauthorized -Forbidden

    +Raise:

    com.vmware.vapi.std.errors_client.Unauthenticated +Unauthorized

    -Raise:

    com.vmware.vapi.std.errors_client.Unauthenticated -Unauthorized

    +Raise:

    com.vmware.vapi.std.errors_client.Unauthorized +Forbidden

    @@ -414,18 +415,18 @@ task.params[‘test_result’].

    Returns:

    com.vmware.vmc.model.Task

    -Raise:

    com.vmware.vapi.std.errors_client.InvalidRequest +Raise:

    com.vmware.vapi.std.errors_client.Unauthenticated +Unauthorized

    + + +Raise:

    com.vmware.vapi.std.errors_client.InvalidRequest Bad Request

    -Raise:

    com.vmware.vapi.std.errors_client.Unauthorized +Raise:

    com.vmware.vapi.std.errors_client.Unauthorized Forbidden

    -Raise:

    com.vmware.vapi.std.errors_client.Unauthenticated -Unauthorized

    - - @@ -737,7 +738,7 @@ Not found. Requested object not found.

    - © Copyright 2018, VMware, Inc. + © Copyright 2019, VMware, Inc.

    @@ -762,7 +763,7 @@ Not found. Requested object not found.

    - + diff --git a/vmc/com.vmware.vmc.orgs.sddcs.networks.cgws.html b/vmc/com.vmware.vmc.orgs.sddcs.networks.cgws.html index 040038d0..50dee20b 100644 --- a/vmc/com.vmware.vmc.orgs.sddcs.networks.cgws.html +++ b/vmc/com.vmware.vmc.orgs.sddcs.networks.cgws.html @@ -8,7 +8,7 @@ - com.vmware.vmc.orgs.sddcs.networks.cgws package — VMware Cloud on AWS Console API 1.3.0 documentation + com.vmware.vmc.orgs.sddcs.networks.cgws package — VMware Cloud on AWS Console API 1.3.1 documentation @@ -58,7 +58,7 @@
    - 1.3.0 + 1.3.1
    @@ -96,6 +96,7 @@ +
  • vmware package
  • @@ -332,7 +333,7 @@ Not found. Requested object not found.

    - © Copyright 2018, VMware, Inc. + © Copyright 2019, VMware, Inc.

    @@ -357,7 +358,7 @@ Not found. Requested object not found.

    - + diff --git a/vmc/com.vmware.vmc.orgs.sddcs.networks.edges.firewall.html b/vmc/com.vmware.vmc.orgs.sddcs.networks.edges.firewall.html index c7a5f26c..9bae99b5 100644 --- a/vmc/com.vmware.vmc.orgs.sddcs.networks.edges.firewall.html +++ b/vmc/com.vmware.vmc.orgs.sddcs.networks.edges.firewall.html @@ -8,7 +8,7 @@ - com.vmware.vmc.orgs.sddcs.networks.edges.firewall package — VMware Cloud on AWS Console API 1.3.0 documentation + com.vmware.vmc.orgs.sddcs.networks.edges.firewall package — VMware Cloud on AWS Console API 1.3.1 documentation @@ -58,7 +58,7 @@
    - 1.3.0 + 1.3.1
    @@ -96,6 +96,7 @@ +
  • vmware package
  • @@ -371,7 +372,7 @@ Not found. Requested object not found.

    - © Copyright 2018, VMware, Inc. + © Copyright 2019, VMware, Inc.

    @@ -396,7 +397,7 @@ Not found. Requested object not found.

    - + diff --git a/vmc/com.vmware.vmc.orgs.sddcs.networks.edges.html b/vmc/com.vmware.vmc.orgs.sddcs.networks.edges.html index 4215affa..da756672 100644 --- a/vmc/com.vmware.vmc.orgs.sddcs.networks.edges.html +++ b/vmc/com.vmware.vmc.orgs.sddcs.networks.edges.html @@ -8,7 +8,7 @@ - com.vmware.vmc.orgs.sddcs.networks.edges package — VMware Cloud on AWS Console API 1.3.0 documentation + com.vmware.vmc.orgs.sddcs.networks.edges package — VMware Cloud on AWS Console API 1.3.1 documentation @@ -58,7 +58,7 @@
    - 1.3.0 + 1.3.1
    @@ -96,6 +96,7 @@ +
  • vmware package
  • @@ -1101,7 +1102,7 @@ Not found. Requested object not found.

    - © Copyright 2018, VMware, Inc. + © Copyright 2019, VMware, Inc.

    @@ -1126,7 +1127,7 @@ Not found. Requested object not found.

    - + diff --git a/vmc/com.vmware.vmc.orgs.sddcs.networks.edges.l2vpn.html b/vmc/com.vmware.vmc.orgs.sddcs.networks.edges.l2vpn.html index 3344343f..233d5286 100644 --- a/vmc/com.vmware.vmc.orgs.sddcs.networks.edges.l2vpn.html +++ b/vmc/com.vmware.vmc.orgs.sddcs.networks.edges.l2vpn.html @@ -8,7 +8,7 @@ - com.vmware.vmc.orgs.sddcs.networks.edges.l2vpn package — VMware Cloud on AWS Console API 1.3.0 documentation + com.vmware.vmc.orgs.sddcs.networks.edges.l2vpn package — VMware Cloud on AWS Console API 1.3.1 documentation @@ -58,7 +58,7 @@
    - 1.3.0 + 1.3.1
    @@ -96,6 +96,7 @@ +
  • vmware package
  • @@ -270,7 +271,7 @@ Not found. Requested object not found.

    - © Copyright 2018, VMware, Inc. + © Copyright 2019, VMware, Inc.

    @@ -295,7 +296,7 @@ Not found. Requested object not found.

    - + diff --git a/vmc/com.vmware.vmc.orgs.sddcs.networks.edges.nat.html b/vmc/com.vmware.vmc.orgs.sddcs.networks.edges.nat.html index 54107b66..df0ddba6 100644 --- a/vmc/com.vmware.vmc.orgs.sddcs.networks.edges.nat.html +++ b/vmc/com.vmware.vmc.orgs.sddcs.networks.edges.nat.html @@ -8,7 +8,7 @@ - com.vmware.vmc.orgs.sddcs.networks.edges.nat package — VMware Cloud on AWS Console API 1.3.0 documentation + com.vmware.vmc.orgs.sddcs.networks.edges.nat package — VMware Cloud on AWS Console API 1.3.1 documentation @@ -58,7 +58,7 @@
    - 1.3.0 + 1.3.1
    @@ -96,6 +96,7 @@ +
  • vmware package
  • @@ -332,7 +333,7 @@ Not found. Requested object not found.

    - © Copyright 2018, VMware, Inc. + © Copyright 2019, VMware, Inc.

    @@ -357,7 +358,7 @@ Not found. Requested object not found.

    - + diff --git a/vmc/com.vmware.vmc.orgs.sddcs.networks.edges.statistics.html b/vmc/com.vmware.vmc.orgs.sddcs.networks.edges.statistics.html index c1120813..7b4e50a5 100644 --- a/vmc/com.vmware.vmc.orgs.sddcs.networks.edges.statistics.html +++ b/vmc/com.vmware.vmc.orgs.sddcs.networks.edges.statistics.html @@ -8,7 +8,7 @@ - com.vmware.vmc.orgs.sddcs.networks.edges.statistics package — VMware Cloud on AWS Console API 1.3.0 documentation + com.vmware.vmc.orgs.sddcs.networks.edges.statistics package — VMware Cloud on AWS Console API 1.3.1 documentation @@ -28,6 +28,7 @@ + @@ -57,7 +58,7 @@
    - 1.3.0 + 1.3.1
    @@ -95,6 +96,7 @@ +
  • vmware package
  • @@ -498,6 +500,8 @@ Not found. Requested object not found.