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 @@ -
- © Copyright 2018, VMware, Inc. + © Copyright 2019, VMware, Inc.
com.vmware.vapi.std.errors_client.Unauthorized
-Forbiddencom.vmware.vapi.std.errors_client.Unauthenticated
+com.vmware.vapi.std.errors_client.Unauthenticated
Unauthorizedcom.vmware.vapi.std.errors_client.Unauthorized
+Forbiddencom.vmware.vapi.std.errors_client.Unauthorized
-Forbiddencom.vmware.vapi.std.errors_client.NotFound
-Organization doesn’t existcom.vmware.vapi.std.errors_client.Unauthenticated
Unauthorizedcom.vmware.vapi.std.errors_client.Unauthorized
+Forbiddencom.vmware.vapi.std.errors_client.NotFound
+Organization doesn’t existcom.vmware.vapi.std.errors_client.Unauthorized
-Forbiddencom.vmware.vapi.std.errors_client.Unauthenticated
+com.vmware.vapi.std.errors_client.Unauthenticated
Unauthorizedcom.vmware.vapi.std.errors_client.Unauthorized
+Forbidden- © Copyright 2018, VMware, Inc. + © Copyright 2019, VMware, Inc.
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)¶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.list
of str
or None
) – str
or None
) – bool
or None
) – dict
of str
and str
) or None
) – long
or None
) – bool
or None
) – Boolean flag to indicate if the agent is using CA signed
+certificatestr
or None
) – str
or None
) – bool
or None
) – Boolean flag to indicate if the agent is using FQDN in the
+certificatestr
or None
) – str
or None
) – str
) – str
or None
) – bool
or None
) – Boolean flag to indicate if the agent is the masterstr
or None
) – str
or None
) – str
or None
) – 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)¶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.str
or None
) – AwsKeyPair
or None
) – list
of str
or None
) – str
or None
) – bool
or None
) – dict
of str
and str
) or None
) – long
or None
) – bool
or None
) – Boolean flag to indicate if the agent is using CA signed
+certificatestr
or None
) – str
or None
) – bool
or None
) – Boolean flag to indicate if the agent is using FQDN in the
+certificatestr
or None
) – str
or None
) – str
) – str
or None
) – bool
or None
) – Boolean flag to indicate if the agent is the masterstr
or None
) – str
or None
) – str
or None
) – 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)¶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.str
) – 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: int64str
) – list
of AccountLinkSddcConfig
or None
) – A list of the SDDC linking configurations to use.str
or None
) – AWS VPC IP range. Only prefix of 16 or 20 is currently supported.long
) – str
or None
) – Denotes the sddc type , if the value is null or empty, the type is
considered as default.str
or None
) – VXLAN IP subnetstr
or None
) – VXLAN IP subnet in CIDR for compute gatewayAccountLinkConfig
or None
) – The account linking configuration, we will keep this one and remove
accountLinkSddcConfig finally.str
) – Possible values are:
@@ -704,6 +722,7 @@ accountLinkSddcConfig finally.Determines what additional properties are available based on cloud provider.
+bool
or None
) – skip creating vxlan for compute gateway for SDDC provisioningstr
or None
) – The SSO domain name to use for vSphere users. If not specified,
vmc.local will be used.str
or None
) – If provided, configuration from the template will applied to the
@@ -766,7 +785,7 @@ names.
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)¶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.VsanEncryptionConfig
or None
) – VpcInfo
or None
) – str
or None
) – Name for management appliance network.bool
or None
) – if true, use the private IP addresses to register DNS records for
-the management VMsbool
or None
) – if true, NSX-T UI is enabled.str
or None
) – Management Gateway Idstr
or None
) – URL of the NSX Managerstr
or None
) – unique id of the vCenter server
str
or None
) – Cluster Id to add ESX workflowstr
or None
) – vCenter public IPbool
or None
) – skip creating vxlan for compute gateway for SDDC provisioningstr
or None
) – URL of the vCenter serverSddcManifest
or None
) – str
or None
) – VXLAN IP subnet+Denotes if this is a SingleAZ SDDC or a MultiAZ SDDC.
bool
or None
) – if true, use the private IP addresses to register DNS records for
+the management VMscom.vmware.vmc.model_client.
ClusterConfig
(num_hosts=None)¶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.long
) – long
or None
) – Customize CPU cores on hosts in a cluster. Specify number of cores
+to be enabled on hosts in a cluster. format: int32long
or None
) – For EBS-backed instances only, the requested storage capacity in
+GiB. format: int64long
) – com.vmware.vmc.model_client.
ConnectivityAgentValidation
(type=None, ports=None)¶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.str
or None
) – Possible values are:
+ConnectivityAgentValidation.SOURCE_VCENTER
ConnectivityAgentValidation.SOURCE_SRM
ConnectivityAgentValidation.SOURCE_VR
++source appliance of connectivity test, i.e. VCENTER, SRM, VR.
str
or None
) – Possible values are:
ConnectivityAgentValidation.TYPE_PING
ConnectivityAgentValidation.TYPE_TRACEROUTE
ConnectivityAgentValidation.TYPE_DNS
ConnectivityAgentValidation.TYPE_CONNECTIVITY
ConnectivityAgentValidation.TYPE_CURL
type of connectivity test, i.e. PING, TRACEROUTE, DNS, -CONNECTIVITY. For CONNECTIVITY test only, please specify the ports -to be tested against.
+CONNECTIVITY, CURL. For CONNECTIVITY and CURL tests only, please +specify the ports to be tested against.list
of str
or None
) – TCP ports ONLY for CONNECTIVITY tests.list
of str
or None
) – TCP ports ONLY for CONNECTIVITY and CURL tests.str
or None
) – URL path ONLY for CURL tests.SOURCE_SRM
= 'SRM'¶SOURCE_VCENTER
= 'VCENTER'¶SOURCE_VR
= 'VR'¶TYPE_CONNECTIVITY
= 'CONNECTIVITY'¶TYPE_CURL
= 'CURL'¶TYPE_DNS
= 'DNS'¶str
or None
) – Possible values are:
@@ -1187,6 +1246,11 @@ names.test group id, currently, only HLM.
ID_DRAAS
= 'DRAAS'¶ID_HLM
= 'HLM'¶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'¶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)¶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
bool
or None
) – ReservationWindowMaintenanceProperties
or None
) – str
or None
) – long
or None
) – 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)¶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
str
or None
) – Describes the access state of sddc, valid state is DISABLED or
+ENABLEDAwsSddcResourceConfig
or None
) – 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)¶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.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: int64str
) – list
of AccountLinkSddcConfig
or None
) – A list of the SDDC linking configurations to use.str
or None
) – AWS VPC IP range. Only prefix of 16 or 20 is currently supported.long
) – str
or None
) – Denotes the sddc type , if the value is null or empty, the type is
considered as default.str
or None
) – VXLAN IP subnetstr
or None
) – VXLAN IP subnet in CIDR for compute gatewayAccountLinkConfig
or None
) – The account linking configuration, we will keep this one and remove
accountLinkSddcConfig finally.str
) – Possible values are:
@@ -4799,6 +4895,7 @@ accountLinkSddcConfig finally.Determines what additional properties are available based on cloud provider.
+bool
or None
) – skip creating vxlan for compute gateway for SDDC provisioningstr
or None
) – The SSO domain name to use for vSphere users. If not specified,
vmc.local will be used.str
or None
) – If provided, configuration from the template will applied to the
@@ -4846,7 +4943,7 @@ names.
str
or None
) – Sddc ID format: UUIDstr
or None
) – Sddc IDcom.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)¶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.str
or None
) – Name for management appliance network.bool
or None
) – if true, use the private IP addresses to register DNS records for
-the management VMsbool
or None
) – if true, NSX-T UI is enabled.str
or None
) – Management Gateway Idstr
or None
) – URL of the NSX Managerstr
or None
) – unique id of the vCenter server
str
or None
) – Cluster Id to add ESX workflowstr
or None
) – vCenter public IPbool
or None
) – skip creating vxlan for compute gateway for SDDC provisioningstr
or None
) – URL of the vCenter serverSddcManifest
or None
) – str
or None
) – VXLAN IP subnet+Denotes if this is a SingleAZ SDDC or a MultiAZ SDDC.
bool
or None
) – if true, use the private IP addresses to register DNS records for
+the management VMscom.vmware.vmc.model_client.
ServiceError
(original_service=None, params=None, default_message=None, original_service_error_code=None, error_code=None, localized_message=None)¶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.
str
) – The original service name of the error.list
of str
or None
) – The parameters of the service error.str
or None
) – Error message in English.str
) – The original error code of the service.str
) – Localizable error code.str
) – The original service name of the error.str
or None
) – The localized message.str
) – The original error code of the service.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: |
|
+
---|
com.vmware.vmc.model_client.
SubscriptionRequest
(offer_version=None, product_type=None, region=None, commitment_term=None, offer_name=None, quantity=None)¶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.str
) – str
) – str
or None
) – The product for which subscription needs to be created. Refer
+/vmc/api/orgs/{orgId}/products.str
) – Old identifier for product. *Deprecarted*. See product and typestr
) – str
) – str
) – str
or None
) – The type of the product for which the subscription needs to be
+created.str
) – long
) – 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 |
+
---|
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)¶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
long
or None
) – Estimated remaining time in minute of the task execution, < 0 means
-no estimation for the task. format: int32str
or None
) – str
or None
) – UUID of resources task is acting uponstr
or None
) – UUID of the resource the task is acting uponstr
or None
) – If this task was created by another task - this provides the
+linkage. Mostly for debugging.str
or None
) – 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.long
or None
) – Entity version of the resource at the start of the task. This is
only set for some task types. format: int32str
or None
) – list
of ServiceError
or None
) – Service errors returned from SDDC services.str
or None
) – str
or None
) – If this task was created by another task - this provides the
-linkage. Mostly for debugging.long
or None
) – Estimated remaining time in minute of the task execution, < 0 means
+no estimation for the task. format: int32vmware.vapi.struct.VapiStruct
or None
) – long
or None
) – Estimated progress percentage the task executed format: int32str
or None
) – The current in progress phase ID in the task execution, if none in
@@ -6323,7 +6470,7 @@ names.
str
or None
) – vmware.vapi.struct.VapiStruct
or None
) – VpnTunnelTrafficStats
or None
) – str
or None
) – str
or None
) – str
or None
) – 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: |
|
+
---|
com.vmware.vmc.model_client.
VsanEncryptionConfig
(port=None, certificate=None)¶com.vmware.vmc.orgs_client.
OfferInstances
(config)¶com.vmware.vmc.orgs_client.
AccountLink
(config)¶Bases: vmware.vapi.bindings.stub.VapiInterface
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: |
|
+
---|---|
Parameters: | org (str ) – Organization identifier. (required) |
Return type: | - | -
Returns: | com.vmware.vmc.model.OfferInstancesHolder - |
-
Raise: |
|
-
Raise: |
|
-
Raise: |
|
+
Raise: | com.vmware.vapi.std.errors_client.Error
+Generic Error |
com.vmware.vapi.std.errors_client.Unauthorized
-Forbiddencom.vmware.vapi.std.errors_client.NotFound
-Organization doesn’t existcom.vmware.vapi.std.errors_client.Unauthenticated
Unauthorizedcom.vmware.vapi.std.errors_client.Unauthorized
+Forbiddencom.vmware.vapi.std.errors_client.NotFound
+Organization doesn’t existcom.vmware.vapi.std.errors_client.Unauthorized
-Access not allowed to the operation for the current usercom.vmware.vapi.std.errors_client.Unauthenticated
+com.vmware.vapi.std.errors_client.Unauthenticated
Unauthorizedcom.vmware.vapi.std.errors_client.Unauthorized
+Access not allowed to the operation for the current usercom.vmware.vmc.model.Task
com.vmware.vapi.std.errors_client.Unauthorized
-Forbidden
com.vmware.vapi.std.errors_client.Unauthenticated
+Unauthorized
com.vmware.vapi.std.errors_client.Unauthenticated
-Unauthorized
com.vmware.vapi.std.errors_client.Unauthorized
+Forbidden
com.vmware.vmc.model.SddcTemplate
com.vmware.vapi.std.errors_client.Unauthorized
+
com.vmware.vapi.std.errors_client.Unauthenticated
+Unauthorized
com.vmware.vapi.std.errors_client.Unauthorized
Forbidden
com.vmware.vapi.std.errors_client.NotFound
+
com.vmware.vapi.std.errors_client.NotFound
Cannot find the SDDC Template with given identifier
com.vmware.vapi.std.errors_client.Unauthenticated
-Unauthorized
com.vmware.vapi.std.errors_client.Unauthorized
-Forbiddencom.vmware.vapi.std.errors_client.Unauthenticated
+com.vmware.vapi.std.errors_client.Unauthenticated
Unauthorizedcom.vmware.vapi.std.errors_client.Unauthorized
+Forbiddencom.vmware.vmc.model.Task
com.vmware.vapi.std.errors_client.Unauthorized
-Forbidden
com.vmware.vapi.std.errors_client.Unauthenticated
+Unauthorized
com.vmware.vapi.std.errors_client.Unauthenticated
-Unauthorized
com.vmware.vapi.std.errors_client.Unauthorized
+Forbidden
com.vmware.vmc.model.Task
com.vmware.vapi.std.errors_client.InvalidRequest
+
com.vmware.vapi.std.errors_client.Unauthenticated
+Unauthorized
com.vmware.vapi.std.errors_client.InvalidRequest
The sddc is not in a state that’s valid for deletion
com.vmware.vapi.std.errors_client.Unauthorized
+
com.vmware.vapi.std.errors_client.Unauthorized
Access not allowed to the operation for the current user
com.vmware.vapi.std.errors_client.NotFound
+
com.vmware.vapi.std.errors_client.NotFound
Cannot find the SDDC with given identifier
com.vmware.vapi.std.errors_client.Unauthenticated
-Unauthorized
com.vmware.vmc.model.Sddc
com.vmware.vapi.std.errors_client.Unauthorized
+
com.vmware.vapi.std.errors_client.Unauthenticated
+Unauthorized
com.vmware.vapi.std.errors_client.Unauthorized
Forbidden
com.vmware.vapi.std.errors_client.NotFound
+
com.vmware.vapi.std.errors_client.NotFound
Cannot find the SDDC with given identifier
com.vmware.vapi.std.errors_client.Unauthenticated
-Unauthorized
com.vmware.vapi.std.errors_client.Unauthorized
-Forbiddencom.vmware.vapi.std.errors_client.Unauthenticated
+com.vmware.vapi.std.errors_client.Unauthenticated
Unauthorizedcom.vmware.vapi.std.errors_client.Unauthorized
+Forbiddencom.vmware.vmc.model.Task
com.vmware.vapi.std.errors_client.InternalServerError
-Server error. Check retryable flag to see if request should be
-retried.
com.vmware.vapi.std.errors_client.Unauthenticated
+Unauthorized
com.vmware.vapi.std.errors_client.Unauthorized
Forbidden
com.vmware.vapi.std.errors_client.Unauthenticated
-Unauthorized
com.vmware.vapi.std.errors_client.InternalServerError
+Server error. Check retryable flag to see if request should be
+retried.
com.vmware.vapi.std.errors_client.InternalServerError
+
com.vmware.vapi.std.errors_client.Unauthenticated
+Unauthorized
com.vmware.vapi.std.errors_client.InternalServerError
Server error. Check retryable flag to see if request should be
retried.
com.vmware.vapi.std.errors_client.NotFound
+
com.vmware.vapi.std.errors_client.NotFound
Not Found
com.vmware.vapi.std.errors_client.Unauthenticated
-Unauthorized
com.vmware.vmc.model.Task
com.vmware.vapi.std.errors_client.Unauthorized
+
com.vmware.vapi.std.errors_client.Unauthenticated
+Unauthorized
com.vmware.vapi.std.errors_client.Unauthorized
Forbidden
com.vmware.vapi.std.errors_client.NotFound
+
com.vmware.vapi.std.errors_client.NotFound
Cannot find the task with given identifier
com.vmware.vapi.std.errors_client.Unauthenticated
-Unauthorized
com.vmware.vapi.std.errors_client.Unauthorized
-Forbidden
com.vmware.vapi.std.errors_client.Unauthenticated
+Unauthorized
com.vmware.vapi.std.errors_client.Unauthenticated
-Unauthorized
com.vmware.vapi.std.errors_client.Unauthorized
+Forbidden
com.vmware.vmc.model.Task
com.vmware.vapi.std.errors_client.InvalidRequest
+
com.vmware.vapi.std.errors_client.Unauthenticated
+Unauthorized
com.vmware.vapi.std.errors_client.InvalidRequest
Invalid action or bad argument
com.vmware.vapi.std.errors_client.Unauthorized
+
com.vmware.vapi.std.errors_client.Unauthorized
Forbidden
com.vmware.vapi.std.errors_client.NotFound
+
com.vmware.vapi.std.errors_client.NotFound
Cannot find the task with given identifier
com.vmware.vapi.std.errors_client.Unauthenticated
-Unauthorized
- © Copyright 2018, VMware, Inc. + © Copyright 2019, VMware, Inc.
com.vmware.vmc.orgs.account_link_client.
CompatibleSubnets
(config)¶Bases: vmware.vapi.bindings.stub.VapiInterface
Parameters: | config (vmware.vapi.bindings.stub.StubConfiguration ) – Configuration to be used for creating the stub. |
+
---|
get
(org, linked_account_id=None, region=None, sddc=None, force_refresh=None)¶Gets a customer’s compatible subnets for account linking
+Parameters: |
|
+
---|---|
Return type: | + | +
Returns: | com.vmware.vmc.model.AwsCompatibleSubnets + |
+
Raise: |
|
+
Raise: |
|
+
post
(org)¶Sets which subnet to use to link accounts and finishes the linking +process
+Parameters: | org (str ) – Organization identifier. (required) |
+
---|---|
Return type: | com.vmware.vmc.model_client.AwsSubnet |
+
Returns: | com.vmware.vmc.model.AwsSubnet | +
Raise: | com.vmware.vapi.std.errors_client.Unauthenticated
+Unauthorized |
+
Raise: | com.vmware.vapi.std.errors_client.Unauthorized
+Forbidden |
+
com.vmware.vmc.orgs.account_link_client.
CompatibleSubnetsAsync
(config)¶Bases: vmware.vapi.bindings.stub.VapiInterface
Parameters: | config (vmware.vapi.bindings.stub.StubConfiguration ) – Configuration to be used for creating the stub. |
+
---|
get
(org, linked_account_id=None, region=None, sddc=None)¶Gets a customer’s 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 +complete), and it’s documented under ref +/definitions/AwsCompatibleSubnets
+Parameters: |
|
+
---|---|
Return type: | + | +
Returns: | com.vmware.vmc.model.Task + |
+
Raise: |
|
+
Raise: |
|
+
post
(aws_subnet, org)¶Sets which subnet to use to link accounts and finishes the linking +process via a task
+Parameters: |
|
+
---|---|
Return type: | + | +
Returns: | com.vmware.vmc.model.Task + |
+
Raise: |
|
+
Raise: |
|
+
com.vmware.vmc.orgs.account_link_client.
ConnectedAccounts
(config)¶Bases: vmware.vapi.bindings.stub.VapiInterface
Parameters: | config (vmware.vapi.bindings.stub.StubConfiguration ) – Configuration to be used for creating the stub. |
+
---|
delete
(org, linked_account_path_id, force_even_when_sddc_present=None)¶Delete a particular connected (linked) account.
+Parameters: |
|
+
---|---|
Return type: | + | +
Returns: | com.vmware.vmc.model.AwsCustomerConnectedAccount + |
+
Raise: |
|
+
Raise: |
|
+
Raise: |
|
+
get
(org)¶Get a list of connected accounts
+Parameters: | org (str ) – Organization identifier. (required) |
+
---|---|
Return type: | list of com.vmware.vmc.model_client.AwsCustomerConnectedAccount |
+
Returns: | + |
Raise: | com.vmware.vapi.std.errors_client.Unauthenticated
+Unauthorized |
+
Raise: | com.vmware.vapi.std.errors_client.Unauthorized
+Forbidden |
+
com.vmware.vmc.orgs.account_link_client.
MapCustomerZones
(config)¶Bases: vmware.vapi.bindings.stub.VapiInterface
Parameters: | config (vmware.vapi.bindings.stub.StubConfiguration ) – Configuration to be used for creating the stub. |
+
---|
post
(org, map_zones_request)¶Creates a task to re-map customer’s datacenters across zones.
+Parameters: |
|
+
---|---|
Return type: | + | +
Returns: | com.vmware.vmc.model.Task + |
+
Raise: |
|
+
Raise: |
|
+
com.vmware.vmc.orgs.account_link_client.
SddcConnections
(config)¶Bases: vmware.vapi.bindings.stub.VapiInterface
Parameters: | config (vmware.vapi.bindings.stub.StubConfiguration ) – Configuration to be used for creating the stub. |
+
---|
get
(org, sddc=None)¶Get a list of SDDC connections currently setup for the customer’s +organization.
+Parameters: |
|
+
---|---|
Return type: | + | +
Returns: | + | +
Raise: |
|
+
Raise: |
|
+
com.vmware.vmc.orgs.account_link_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.model.MaintenanceWindowGet
com.vmware.vapi.std.errors_client.Unauthorized
-Access not allowed to the operation for the current user
com.vmware.vapi.std.errors_client.Unauthenticated
+Unauthorized
com.vmware.vapi.std.errors_client.Unauthenticated
-Unauthorized
com.vmware.vapi.std.errors_client.Unauthorized
+Access not allowed to the operation for the current user
com.vmware.vmc.model.MaintenanceWindow
com.vmware.vapi.std.errors_client.InvalidRequest
-The reservation is not in a state that’s valid for updates
com.vmware.vapi.std.errors_client.Unauthenticated
+Unauthorized
com.vmware.vapi.std.errors_client.ConcurrentChange
Conflict with exiting reservation
com.vmware.vapi.std.errors_client.Unauthorized
-Access not allowed to the operation for the current user
com.vmware.vapi.std.errors_client.InvalidRequest
+The reservation is not in a state that’s valid for updates
com.vmware.vapi.std.errors_client.Unauthenticated
-Unauthorized
com.vmware.vapi.std.errors_client.Unauthorized
+Access not allowed to the operation for the current user
com.vmware.vmc.model.Task
com.vmware.vapi.std.errors_client.InvalidRequest
+
com.vmware.vapi.std.errors_client.Unauthenticated
+Unauthorized
com.vmware.vapi.std.errors_client.InvalidRequest
The sddc is not in a state that’s valid for updates
com.vmware.vapi.std.errors_client.Unauthorized
+
com.vmware.vapi.std.errors_client.Unauthorized
Access not allowed to the operation for the current user
com.vmware.vapi.std.errors_client.NotFound
+
com.vmware.vapi.std.errors_client.NotFound
Cannot find the cluster with the given identifier
com.vmware.vapi.std.errors_client.Unauthenticated
-Unauthorized
com.vmware.vmc.model.Task
com.vmware.vapi.std.errors_client.InvalidRequest
+
com.vmware.vapi.std.errors_client.Unauthenticated
+Unauthorized
com.vmware.vapi.std.errors_client.InvalidRequest
The sddc is not in a state that’s valid for updates
com.vmware.vapi.std.errors_client.Unauthorized
+
com.vmware.vapi.std.errors_client.Unauthorized
Access not allowed to the operation for the current user
com.vmware.vapi.std.errors_client.NotFound
+
com.vmware.vapi.std.errors_client.NotFound
Cannot find the cluster with the given id
com.vmware.vapi.std.errors_client.Unauthenticated
-Unauthorized
com.vmware.vmc.model.Task
com.vmware.vapi.std.errors_client.InvalidRequest
+
com.vmware.vapi.std.errors_client.Unauthenticated
+Unauthorized
com.vmware.vapi.std.errors_client.InvalidRequest
The sddc is not in a state that’s valid for updates, Method not
allowed
com.vmware.vapi.std.errors_client.Unauthorized
+
com.vmware.vapi.std.errors_client.Unauthorized
Access not allowed to the operation for the current user
com.vmware.vapi.std.errors_client.NotFound
+
com.vmware.vapi.std.errors_client.NotFound
Cannot find the SDDC with given identifier
com.vmware.vapi.std.errors_client.Unauthenticated
-Unauthorized
com.vmware.vmc.model.Task
com.vmware.vapi.std.errors_client.InvalidRequest
+
com.vmware.vapi.std.errors_client.Unauthenticated
+Unauthorized
com.vmware.vapi.std.errors_client.InvalidRequest
The sddc is not in a state that’s valid for updates
com.vmware.vapi.std.errors_client.Unauthorized
+
com.vmware.vapi.std.errors_client.Unauthorized
Access not allowed to the operation for the current user
com.vmware.vapi.std.errors_client.NotFound
+
com.vmware.vapi.std.errors_client.NotFound
Cannot find the SDDC with the given identifier
com.vmware.vapi.std.errors_client.Unauthenticated
-Unauthorized
com.vmware.vmc.model.Task
com.vmware.vapi.std.errors_client.InvalidRequest
+
com.vmware.vapi.std.errors_client.Unauthenticated
+Unauthorized
com.vmware.vapi.std.errors_client.InvalidRequest
The sddc is not in a state that’s valid for updates
com.vmware.vapi.std.errors_client.Unauthorized
+
com.vmware.vapi.std.errors_client.Unauthorized
Access not allowed to the operation for the current user
com.vmware.vapi.std.errors_client.NotFound
+
com.vmware.vapi.std.errors_client.NotFound
Cannot find the SDDC with given identifier
com.vmware.vapi.std.errors_client.Unauthenticated
-Unauthorized
com.vmware.vmc.model.Task
com.vmware.vapi.std.errors_client.InvalidRequest
+
com.vmware.vapi.std.errors_client.Unauthenticated
+Unauthorized
com.vmware.vapi.std.errors_client.InvalidRequest
The sddc is not in a state that’s valid for updates
com.vmware.vapi.std.errors_client.Unauthorized
+
com.vmware.vapi.std.errors_client.Unauthorized
Access not allowed to the operation for the current user
com.vmware.vapi.std.errors_client.NotFound
+
com.vmware.vapi.std.errors_client.NotFound
Cannot find the public IP with given IP address
com.vmware.vapi.std.errors_client.Unauthenticated
-Unauthorized
com.vmware.vmc.model.SddcPublicIp
com.vmware.vapi.std.errors_client.Unauthorized
+
com.vmware.vapi.std.errors_client.Unauthenticated
+Unauthorized
com.vmware.vapi.std.errors_client.Unauthorized
Forbidden
com.vmware.vapi.std.errors_client.NotFound
+
com.vmware.vapi.std.errors_client.NotFound
Cannot find the public IP with given IP address
com.vmware.vapi.std.errors_client.Unauthenticated
-Unauthorized
com.vmware.vapi.std.errors_client.Unauthorized
+
com.vmware.vapi.std.errors_client.Unauthenticated
+Unauthorized
com.vmware.vapi.std.errors_client.Unauthorized
Forbidden
com.vmware.vapi.std.errors_client.NotFound
+
com.vmware.vapi.std.errors_client.NotFound
Cannot find the SDDC with given identifier
com.vmware.vapi.std.errors_client.Unauthenticated
-Unauthorized
com.vmware.vmc.model.Task
com.vmware.vapi.std.errors_client.InvalidRequest
+
com.vmware.vapi.std.errors_client.Unauthenticated
+Unauthorized
com.vmware.vapi.std.errors_client.InvalidRequest
The sddc is not in a state that’s valid for updates
com.vmware.vapi.std.errors_client.Unauthorized
+
com.vmware.vapi.std.errors_client.Unauthorized
Access not allowed to the operation for the current user
com.vmware.vapi.std.errors_client.NotFound
+
com.vmware.vapi.std.errors_client.NotFound
Cannot find the public IP with given IP address
com.vmware.vapi.std.errors_client.Unauthenticated
-Unauthorized
com.vmware.vmc.model.SddcTemplate
com.vmware.vapi.std.errors_client.InvalidRequest
+
com.vmware.vapi.std.errors_client.Unauthenticated
+Unauthorized
com.vmware.vapi.std.errors_client.InvalidRequest
SDDC is in a state that cannot be use for generating configuration
template
com.vmware.vapi.std.errors_client.Unauthorized
+
com.vmware.vapi.std.errors_client.Unauthorized
Forbidden
com.vmware.vapi.std.errors_client.NotFound
+
com.vmware.vapi.std.errors_client.NotFound
Cannot find the SDDC with given identifier
com.vmware.vapi.std.errors_client.Unauthenticated
-Unauthorized
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: |
|
+
---|---|
Return type: | + | +
Returns: | com.vmware.vmc.model.VsanConfigConstraints + |
+
Raise: |
|
+
Raise: |
|
+
Raise: |
|
+
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.
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: |
|
+
---|---|
Return type: | + | +
Returns: | com.vmware.vmc.model.OfferInstancesHolder + |
+
Raise: |
|
+
Raise: |
|
+
Raise: |
|
+
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 |
+
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 |
+
---|
dict
of str
and com.vmware.vmc.model_client.ReservationWindow
dict
of str
and list
of com.vmware.vmc.model_client.ReservationWindow
com.vmware.vapi.std.errors_client.InvalidRequest
+
com.vmware.vapi.std.errors_client.Unauthenticated
+Unauthorized
com.vmware.vapi.std.errors_client.InvalidRequest
Bad Call
com.vmware.vapi.std.errors_client.Unauthorized
+
com.vmware.vapi.std.errors_client.Unauthorized
Forbidden
com.vmware.vapi.std.errors_client.Unauthenticated
-Unauthorized
com.vmware.vapi.std.errors_client.InvalidRequest
+com.vmware.vapi.std.errors_client.Unauthenticated
+Unauthorizedcom.vmware.vapi.std.errors_client.InvalidRequest
Invalid requestcom.vmware.vapi.std.errors_client.Unauthorized
+com.vmware.vapi.std.errors_client.Unauthorized
Forbiddencom.vmware.vapi.std.errors_client.NotFound
+com.vmware.vapi.std.errors_client.NotFound
No support windows are availablecom.vmware.vapi.std.errors_client.Unauthenticated
-Unauthorizedput
(org, id, sddc_id=None)¶put
(org, id, sddc_id)¶
Move Sddc to new support window
Parameters: |
|
---|---|
Return type: | + |
Return type: | |
Returns: | com.vmware.vmc.model.SupportWindow + |
Returns: | com.vmware.vmc.model.SupportWindowId |
Raise: |
|
Raise: |
|
+
Raise: |
|
Raise: |
|
Raise: |
|
Raise: |
|
Raise: |
|
Raise: |
|
-
- © Copyright 2018, VMware, Inc. + © Copyright 2019, VMware, Inc.
com.vmware.vmc.model.Task
com.vmware.vapi.std.errors_client.InvalidRequest
+
com.vmware.vapi.std.errors_client.Unauthenticated
+Unauthorized
com.vmware.vapi.std.errors_client.InvalidRequest
The sddc is not in a state that’s valid for updates or invalid body
com.vmware.vapi.std.errors_client.Unauthorized
+
com.vmware.vapi.std.errors_client.Unauthorized
Forbidden
com.vmware.vapi.std.errors_client.Unauthenticated
-Unauthorized
com.vmware.vmc.model.Task
com.vmware.vapi.std.errors_client.InvalidRequest
+
com.vmware.vapi.std.errors_client.Unauthenticated
+Unauthorized
com.vmware.vapi.std.errors_client.InvalidRequest
The sddc is not in a state that’s valid for updates or invalid body
com.vmware.vapi.std.errors_client.Unauthorized
+
com.vmware.vapi.std.errors_client.Unauthorized
Forbidden
com.vmware.vapi.std.errors_client.Unauthenticated
-Unauthorized
com.vmware.vmc.model.ConnectivityValidationGroups
com.vmware.vapi.std.errors_client.Unauthorized
-Forbidden
com.vmware.vapi.std.errors_client.Unauthenticated
+Unauthorized
com.vmware.vapi.std.errors_client.Unauthenticated
-Unauthorized
com.vmware.vapi.std.errors_client.Unauthorized
+Forbidden
com.vmware.vmc.model.Task
com.vmware.vapi.std.errors_client.InvalidRequest
+
com.vmware.vapi.std.errors_client.Unauthenticated
+Unauthorized
com.vmware.vapi.std.errors_client.InvalidRequest
Bad Request
com.vmware.vapi.std.errors_client.Unauthorized
+
com.vmware.vapi.std.errors_client.Unauthorized
Forbidden
com.vmware.vapi.std.errors_client.Unauthenticated
-Unauthorized
- © Copyright 2018, VMware, Inc. + © Copyright 2019, VMware, Inc.
- © Copyright 2018, VMware, Inc. + © Copyright 2019, VMware, Inc.
- © Copyright 2018, VMware, Inc. + © Copyright 2019, VMware, Inc.
- © Copyright 2018, VMware, Inc. + © Copyright 2019, VMware, Inc.
- © Copyright 2018, VMware, Inc. + © Copyright 2019, VMware, Inc.
- © Copyright 2018, VMware, Inc. + © Copyright 2019, VMware, Inc.