@azure/arm-devspaces 1.2.1 → 2.0.1-alpha.20220201.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +21 -0
- package/LICENSE +21 -0
- package/README.md +69 -83
- package/dist/index.js +1321 -0
- package/dist/index.js.map +1 -0
- package/dist/index.min.js +1 -0
- package/dist/index.min.js.map +1 -0
- package/dist-esm/src/devSpacesManagementClient.d.ts +20 -0
- package/dist-esm/src/devSpacesManagementClient.d.ts.map +1 -0
- package/dist-esm/src/devSpacesManagementClient.js +53 -0
- package/dist-esm/src/devSpacesManagementClient.js.map +1 -0
- package/dist-esm/src/index.d.ts +5 -0
- package/dist-esm/src/index.d.ts.map +1 -0
- package/dist-esm/src/index.js +12 -0
- package/dist-esm/src/index.js.map +1 -0
- package/dist-esm/src/lroImpl.d.ts +16 -0
- package/dist-esm/src/lroImpl.d.ts.map +1 -0
- package/dist-esm/src/lroImpl.js +29 -0
- package/dist-esm/src/lroImpl.js.map +1 -0
- package/dist-esm/src/models/index.d.ts +287 -0
- package/dist-esm/src/models/index.d.ts.map +1 -0
- package/dist-esm/src/models/index.js +29 -0
- package/dist-esm/src/models/index.js.map +1 -0
- package/dist-esm/src/models/mappers.d.ts +23 -0
- package/dist-esm/src/models/mappers.d.ts.map +1 -0
- package/{esm → dist-esm/src}/models/mappers.js +204 -231
- package/dist-esm/src/models/mappers.js.map +1 -0
- package/dist-esm/src/models/parameters.d.ts +15 -0
- package/dist-esm/src/models/parameters.d.ts.map +1 -0
- package/dist-esm/src/models/parameters.js +129 -0
- package/dist-esm/src/models/parameters.js.map +1 -0
- package/dist-esm/src/operations/containerHostMappings.d.ts +23 -0
- package/dist-esm/src/operations/containerHostMappings.d.ts.map +1 -0
- package/dist-esm/src/operations/containerHostMappings.js +59 -0
- package/dist-esm/src/operations/containerHostMappings.js.map +1 -0
- package/dist-esm/src/operations/controllers.d.ts +111 -0
- package/dist-esm/src/operations/controllers.d.ts.map +1 -0
- package/dist-esm/src/operations/controllers.js +490 -0
- package/dist-esm/src/operations/controllers.js.map +1 -0
- package/{esm → dist-esm/src}/operations/index.d.ts +1 -1
- package/dist-esm/src/operations/index.d.ts.map +1 -0
- package/{esm → dist-esm/src}/operations/index.js +4 -6
- package/dist-esm/src/operations/index.js.map +1 -0
- package/dist-esm/src/operations/operations.d.ts +34 -0
- package/dist-esm/src/operations/operations.d.ts.map +1 -0
- package/dist-esm/src/operations/operations.js +116 -0
- package/dist-esm/src/operations/operations.js.map +1 -0
- package/dist-esm/src/operationsInterfaces/containerHostMappings.d.ts +15 -0
- package/dist-esm/src/operationsInterfaces/containerHostMappings.d.ts.map +1 -0
- package/dist-esm/src/operationsInterfaces/containerHostMappings.js +9 -0
- package/dist-esm/src/operationsInterfaces/containerHostMappings.js.map +1 -0
- package/dist-esm/src/operationsInterfaces/controllers.d.ts +74 -0
- package/dist-esm/src/operationsInterfaces/controllers.d.ts.map +1 -0
- package/dist-esm/src/operationsInterfaces/controllers.js +9 -0
- package/dist-esm/src/operationsInterfaces/controllers.js.map +1 -0
- package/dist-esm/src/operationsInterfaces/index.d.ts +4 -0
- package/dist-esm/src/operationsInterfaces/index.d.ts.map +1 -0
- package/dist-esm/src/operationsInterfaces/index.js +11 -0
- package/dist-esm/src/operationsInterfaces/index.js.map +1 -0
- package/dist-esm/src/operationsInterfaces/operations.d.ts +12 -0
- package/dist-esm/src/operationsInterfaces/operations.d.ts.map +1 -0
- package/dist-esm/src/operationsInterfaces/operations.js +9 -0
- package/dist-esm/src/operationsInterfaces/operations.js.map +1 -0
- package/dist-esm/test/sampleTest.d.ts +2 -0
- package/dist-esm/test/sampleTest.d.ts.map +1 -0
- package/dist-esm/test/sampleTest.js +40 -0
- package/dist-esm/test/sampleTest.js.map +1 -0
- package/package.json +69 -24
- package/review/arm-devspaces.api.md +300 -0
- package/rollup.config.js +184 -27
- package/src/devSpacesManagementClient.ts +74 -39
- package/src/index.ts +12 -0
- package/src/lroImpl.ts +34 -0
- package/src/models/index.ts +251 -512
- package/src/models/mappers.ts +202 -226
- package/src/models/parameters.ts +98 -38
- package/src/operations/containerHostMappings.ts +51 -69
- package/src/operations/controllers.ts +469 -377
- package/src/operations/index.ts +4 -6
- package/src/operations/operations.ts +87 -81
- package/src/operationsInterfaces/containerHostMappings.ts +32 -0
- package/src/operationsInterfaces/controllers.ts +140 -0
- package/src/operationsInterfaces/index.ts +11 -0
- package/src/operationsInterfaces/operations.ts +26 -0
- package/tsconfig.json +4 -4
- package/types/arm-devspaces.d.ts +451 -0
- package/types/tsdoc-metadata.json +11 -0
- package/dist/arm-devspaces.js +0 -1261
- package/dist/arm-devspaces.js.map +0 -1
- package/dist/arm-devspaces.min.js +0 -1
- package/dist/arm-devspaces.min.js.map +0 -1
- package/esm/devSpacesManagementClient.d.ts +0 -26
- package/esm/devSpacesManagementClient.d.ts.map +0 -1
- package/esm/devSpacesManagementClient.js +0 -40
- package/esm/devSpacesManagementClient.js.map +0 -1
- package/esm/devSpacesManagementClientContext.d.ts +0 -22
- package/esm/devSpacesManagementClientContext.d.ts.map +0 -1
- package/esm/devSpacesManagementClientContext.js +0 -61
- package/esm/devSpacesManagementClientContext.js.map +0 -1
- package/esm/models/containerHostMappingsMappers.d.ts +0 -2
- package/esm/models/containerHostMappingsMappers.d.ts.map +0 -1
- package/esm/models/containerHostMappingsMappers.js +0 -11
- package/esm/models/containerHostMappingsMappers.js.map +0 -1
- package/esm/models/controllersMappers.d.ts +0 -2
- package/esm/models/controllersMappers.d.ts.map +0 -1
- package/esm/models/controllersMappers.js +0 -11
- package/esm/models/controllersMappers.js.map +0 -1
- package/esm/models/index.d.ts +0 -564
- package/esm/models/index.d.ts.map +0 -1
- package/esm/models/index.js +0 -10
- package/esm/models/index.js.map +0 -1
- package/esm/models/mappers.d.ts +0 -24
- package/esm/models/mappers.d.ts.map +0 -1
- package/esm/models/mappers.js.map +0 -1
- package/esm/models/operationsMappers.d.ts +0 -2
- package/esm/models/operationsMappers.d.ts.map +0 -1
- package/esm/models/operationsMappers.js +0 -11
- package/esm/models/operationsMappers.js.map +0 -1
- package/esm/models/parameters.d.ts +0 -9
- package/esm/models/parameters.d.ts.map +0 -1
- package/esm/models/parameters.js +0 -90
- package/esm/models/parameters.js.map +0 -1
- package/esm/operations/containerHostMappings.d.ts +0 -35
- package/esm/operations/containerHostMappings.d.ts.map +0 -1
- package/esm/operations/containerHostMappings.js +0 -66
- package/esm/operations/containerHostMappings.js.map +0 -1
- package/esm/operations/controllers.d.ts +0 -198
- package/esm/operations/controllers.d.ts.map +0 -1
- package/esm/operations/controllers.js +0 -346
- package/esm/operations/controllers.js.map +0 -1
- package/esm/operations/index.d.ts.map +0 -1
- package/esm/operations/index.js.map +0 -1
- package/esm/operations/operations.d.ts +0 -50
- package/esm/operations/operations.d.ts.map +0 -1
- package/esm/operations/operations.js +0 -77
- package/esm/operations/operations.js.map +0 -1
- package/src/devSpacesManagementClientContext.ts +0 -68
- package/src/models/containerHostMappingsMappers.ts +0 -16
- package/src/models/controllersMappers.ts +0 -27
- package/src/models/operationsMappers.ts +0 -18
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"arm-devspaces.js","sources":["../node_modules/tslib/tslib.es6.js","../esm/models/index.js","../esm/models/mappers.js","../esm/models/containerHostMappingsMappers.js","../esm/models/parameters.js","../esm/operations/containerHostMappings.js","../esm/models/controllersMappers.js","../esm/operations/controllers.js","../esm/models/operationsMappers.js","../esm/operations/operations.js","../esm/operations/index.js","../esm/devSpacesManagementClientContext.js","../esm/devSpacesManagementClient.js"],"sourcesContent":["/*! *****************************************************************************\r\nCopyright (c) Microsoft Corporation.\r\n\r\nPermission to use, copy, modify, and/or distribute this software for any\r\npurpose with or without fee is hereby granted.\r\n\r\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH\r\nREGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY\r\nAND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,\r\nINDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM\r\nLOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR\r\nOTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR\r\nPERFORMANCE OF THIS SOFTWARE.\r\n***************************************************************************** */\r\n/* global Reflect, Promise */\r\n\r\nvar extendStatics = function(d, b) {\r\n extendStatics = Object.setPrototypeOf ||\r\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\r\n function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };\r\n return extendStatics(d, b);\r\n};\r\n\r\nexport function __extends(d, b) {\r\n extendStatics(d, b);\r\n function __() { this.constructor = d; }\r\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\r\n}\r\n\r\nexport var __assign = function() {\r\n __assign = Object.assign || function __assign(t) {\r\n for (var s, i = 1, n = arguments.length; i < n; i++) {\r\n s = arguments[i];\r\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p];\r\n }\r\n return t;\r\n }\r\n return __assign.apply(this, arguments);\r\n}\r\n\r\nexport function __rest(s, e) {\r\n var t = {};\r\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)\r\n t[p] = s[p];\r\n if (s != null && typeof Object.getOwnPropertySymbols === \"function\")\r\n for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {\r\n if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))\r\n t[p[i]] = s[p[i]];\r\n }\r\n return t;\r\n}\r\n\r\nexport function __decorate(decorators, target, key, desc) {\r\n var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;\r\n if (typeof Reflect === \"object\" && typeof Reflect.decorate === \"function\") r = Reflect.decorate(decorators, target, key, desc);\r\n else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;\r\n return c > 3 && r && Object.defineProperty(target, key, r), r;\r\n}\r\n\r\nexport function __param(paramIndex, decorator) {\r\n return function (target, key) { decorator(target, key, paramIndex); }\r\n}\r\n\r\nexport function __metadata(metadataKey, metadataValue) {\r\n if (typeof Reflect === \"object\" && typeof Reflect.metadata === \"function\") return Reflect.metadata(metadataKey, metadataValue);\r\n}\r\n\r\nexport function __awaiter(thisArg, _arguments, P, generator) {\r\n function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }\r\n return new (P || (P = Promise))(function (resolve, reject) {\r\n function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }\r\n function rejected(value) { try { step(generator[\"throw\"](value)); } catch (e) { reject(e); } }\r\n function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }\r\n step((generator = generator.apply(thisArg, _arguments || [])).next());\r\n });\r\n}\r\n\r\nexport function __generator(thisArg, body) {\r\n var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;\r\n return g = { next: verb(0), \"throw\": verb(1), \"return\": verb(2) }, typeof Symbol === \"function\" && (g[Symbol.iterator] = function() { return this; }), g;\r\n function verb(n) { return function (v) { return step([n, v]); }; }\r\n function step(op) {\r\n if (f) throw new TypeError(\"Generator is already executing.\");\r\n while (_) try {\r\n if (f = 1, y && (t = op[0] & 2 ? y[\"return\"] : op[0] ? y[\"throw\"] || ((t = y[\"return\"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;\r\n if (y = 0, t) op = [op[0] & 2, t.value];\r\n switch (op[0]) {\r\n case 0: case 1: t = op; break;\r\n case 4: _.label++; return { value: op[1], done: false };\r\n case 5: _.label++; y = op[1]; op = [0]; continue;\r\n case 7: op = _.ops.pop(); _.trys.pop(); continue;\r\n default:\r\n if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }\r\n if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }\r\n if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }\r\n if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }\r\n if (t[2]) _.ops.pop();\r\n _.trys.pop(); continue;\r\n }\r\n op = body.call(thisArg, _);\r\n } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }\r\n if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };\r\n }\r\n}\r\n\r\nexport function __createBinding(o, m, k, k2) {\r\n if (k2 === undefined) k2 = k;\r\n o[k2] = m[k];\r\n}\r\n\r\nexport function __exportStar(m, exports) {\r\n for (var p in m) if (p !== \"default\" && !exports.hasOwnProperty(p)) exports[p] = m[p];\r\n}\r\n\r\nexport function __values(o) {\r\n var s = typeof Symbol === \"function\" && Symbol.iterator, m = s && o[s], i = 0;\r\n if (m) return m.call(o);\r\n if (o && typeof o.length === \"number\") return {\r\n next: function () {\r\n if (o && i >= o.length) o = void 0;\r\n return { value: o && o[i++], done: !o };\r\n }\r\n };\r\n throw new TypeError(s ? \"Object is not iterable.\" : \"Symbol.iterator is not defined.\");\r\n}\r\n\r\nexport function __read(o, n) {\r\n var m = typeof Symbol === \"function\" && o[Symbol.iterator];\r\n if (!m) return o;\r\n var i = m.call(o), r, ar = [], e;\r\n try {\r\n while ((n === void 0 || n-- > 0) && !(r = i.next()).done) ar.push(r.value);\r\n }\r\n catch (error) { e = { error: error }; }\r\n finally {\r\n try {\r\n if (r && !r.done && (m = i[\"return\"])) m.call(i);\r\n }\r\n finally { if (e) throw e.error; }\r\n }\r\n return ar;\r\n}\r\n\r\nexport function __spread() {\r\n for (var ar = [], i = 0; i < arguments.length; i++)\r\n ar = ar.concat(__read(arguments[i]));\r\n return ar;\r\n}\r\n\r\nexport function __spreadArrays() {\r\n for (var s = 0, i = 0, il = arguments.length; i < il; i++) s += arguments[i].length;\r\n for (var r = Array(s), k = 0, i = 0; i < il; i++)\r\n for (var a = arguments[i], j = 0, jl = a.length; j < jl; j++, k++)\r\n r[k] = a[j];\r\n return r;\r\n};\r\n\r\nexport function __await(v) {\r\n return this instanceof __await ? (this.v = v, this) : new __await(v);\r\n}\r\n\r\nexport function __asyncGenerator(thisArg, _arguments, generator) {\r\n if (!Symbol.asyncIterator) throw new TypeError(\"Symbol.asyncIterator is not defined.\");\r\n var g = generator.apply(thisArg, _arguments || []), i, q = [];\r\n return i = {}, verb(\"next\"), verb(\"throw\"), verb(\"return\"), i[Symbol.asyncIterator] = function () { return this; }, i;\r\n function verb(n) { if (g[n]) i[n] = function (v) { return new Promise(function (a, b) { q.push([n, v, a, b]) > 1 || resume(n, v); }); }; }\r\n function resume(n, v) { try { step(g[n](v)); } catch (e) { settle(q[0][3], e); } }\r\n function step(r) { r.value instanceof __await ? Promise.resolve(r.value.v).then(fulfill, reject) : settle(q[0][2], r); }\r\n function fulfill(value) { resume(\"next\", value); }\r\n function reject(value) { resume(\"throw\", value); }\r\n function settle(f, v) { if (f(v), q.shift(), q.length) resume(q[0][0], q[0][1]); }\r\n}\r\n\r\nexport function __asyncDelegator(o) {\r\n var i, p;\r\n return i = {}, verb(\"next\"), verb(\"throw\", function (e) { throw e; }), verb(\"return\"), i[Symbol.iterator] = function () { return this; }, i;\r\n function verb(n, f) { i[n] = o[n] ? function (v) { return (p = !p) ? { value: __await(o[n](v)), done: n === \"return\" } : f ? f(v) : v; } : f; }\r\n}\r\n\r\nexport function __asyncValues(o) {\r\n if (!Symbol.asyncIterator) throw new TypeError(\"Symbol.asyncIterator is not defined.\");\r\n var m = o[Symbol.asyncIterator], i;\r\n return m ? m.call(o) : (o = typeof __values === \"function\" ? __values(o) : o[Symbol.iterator](), i = {}, verb(\"next\"), verb(\"throw\"), verb(\"return\"), i[Symbol.asyncIterator] = function () { return this; }, i);\r\n function verb(n) { i[n] = o[n] && function (v) { return new Promise(function (resolve, reject) { v = o[n](v), settle(resolve, reject, v.done, v.value); }); }; }\r\n function settle(resolve, reject, d, v) { Promise.resolve(v).then(function(v) { resolve({ value: v, done: d }); }, reject); }\r\n}\r\n\r\nexport function __makeTemplateObject(cooked, raw) {\r\n if (Object.defineProperty) { Object.defineProperty(cooked, \"raw\", { value: raw }); } else { cooked.raw = raw; }\r\n return cooked;\r\n};\r\n\r\nexport function __importStar(mod) {\r\n if (mod && mod.__esModule) return mod;\r\n var result = {};\r\n if (mod != null) for (var k in mod) if (Object.hasOwnProperty.call(mod, k)) result[k] = mod[k];\r\n result.default = mod;\r\n return result;\r\n}\r\n\r\nexport function __importDefault(mod) {\r\n return (mod && mod.__esModule) ? mod : { default: mod };\r\n}\r\n\r\nexport function __classPrivateFieldGet(receiver, privateMap) {\r\n if (!privateMap.has(receiver)) {\r\n throw new TypeError(\"attempted to get private field on non-instance\");\r\n }\r\n return privateMap.get(receiver);\r\n}\r\n\r\nexport function __classPrivateFieldSet(receiver, privateMap, value) {\r\n if (!privateMap.has(receiver)) {\r\n throw new TypeError(\"attempted to set private field on non-instance\");\r\n }\r\n privateMap.set(receiver, value);\r\n return value;\r\n}\r\n","/*\n * Copyright (c) Microsoft Corporation. All rights reserved.\n * Licensed under the MIT License. See License.txt in the project root for\n * license information.\n *\n * Code generated by Microsoft (R) AutoRest Code Generator.\n * Changes may cause incorrect behavior and will be lost if the code is\n * regenerated.\n */\n//# sourceMappingURL=index.js.map","/*\n * Copyright (c) Microsoft Corporation. All rights reserved.\n * Licensed under the MIT License. See License.txt in the project root for\n * license information.\n *\n * Code generated by Microsoft (R) AutoRest Code Generator.\n * Changes may cause incorrect behavior and will be lost if the code is\n * regenerated.\n */\nimport { __assign } from \"tslib\";\nimport { CloudErrorMapper, BaseResourceMapper } from \"@azure/ms-rest-azure-js\";\nexport var CloudError = CloudErrorMapper;\nexport var BaseResource = BaseResourceMapper;\nexport var ContainerHostMapping = {\n serializedName: \"ContainerHostMapping\",\n type: {\n name: \"Composite\",\n className: \"ContainerHostMapping\",\n modelProperties: {\n containerHostResourceId: {\n serializedName: \"containerHostResourceId\",\n type: {\n name: \"String\"\n }\n },\n mappedControllerResourceId: {\n readOnly: true,\n serializedName: \"mappedControllerResourceId\",\n type: {\n name: \"String\"\n }\n }\n }\n }\n};\nexport var Sku = {\n serializedName: \"Sku\",\n type: {\n name: \"Composite\",\n className: \"Sku\",\n modelProperties: {\n name: {\n required: true,\n isConstant: true,\n serializedName: \"name\",\n defaultValue: 'S1',\n type: {\n name: \"String\"\n }\n },\n tier: {\n serializedName: \"tier\",\n type: {\n name: \"String\"\n }\n }\n }\n }\n};\nexport var Resource = {\n serializedName: \"Resource\",\n type: {\n name: \"Composite\",\n className: \"Resource\",\n modelProperties: {\n id: {\n readOnly: true,\n serializedName: \"id\",\n type: {\n name: \"String\"\n }\n },\n name: {\n readOnly: true,\n serializedName: \"name\",\n type: {\n name: \"String\"\n }\n },\n type: {\n readOnly: true,\n serializedName: \"type\",\n type: {\n name: \"String\"\n }\n }\n }\n }\n};\nexport var TrackedResource = {\n serializedName: \"TrackedResource\",\n type: {\n name: \"Composite\",\n className: \"TrackedResource\",\n modelProperties: __assign(__assign({}, Resource.type.modelProperties), { tags: {\n serializedName: \"tags\",\n type: {\n name: \"Dictionary\",\n value: {\n type: {\n name: \"String\"\n }\n }\n }\n }, location: {\n serializedName: \"location\",\n type: {\n name: \"String\"\n }\n } })\n }\n};\nexport var Controller = {\n serializedName: \"Controller\",\n type: {\n name: \"Composite\",\n className: \"Controller\",\n modelProperties: __assign(__assign({}, TrackedResource.type.modelProperties), { provisioningState: {\n readOnly: true,\n serializedName: \"properties.provisioningState\",\n type: {\n name: \"String\"\n }\n }, hostSuffix: {\n required: true,\n serializedName: \"properties.hostSuffix\",\n type: {\n name: \"String\"\n }\n }, dataPlaneFqdn: {\n readOnly: true,\n serializedName: \"properties.dataPlaneFqdn\",\n type: {\n name: \"String\"\n }\n }, targetContainerHostResourceId: {\n required: true,\n serializedName: \"properties.targetContainerHostResourceId\",\n type: {\n name: \"String\"\n }\n }, targetContainerHostCredentialsBase64: {\n required: true,\n serializedName: \"properties.targetContainerHostCredentialsBase64\",\n type: {\n name: \"String\"\n }\n }, sku: {\n required: true,\n serializedName: \"sku\",\n defaultValue: {},\n type: {\n name: \"Composite\",\n className: \"Sku\"\n }\n } })\n }\n};\nexport var ControllerUpdateParameters = {\n serializedName: \"ControllerUpdateParameters\",\n type: {\n name: \"Composite\",\n className: \"ControllerUpdateParameters\",\n modelProperties: {\n tags: {\n serializedName: \"tags\",\n type: {\n name: \"Dictionary\",\n value: {\n type: {\n name: \"String\"\n }\n }\n }\n }\n }\n }\n};\nexport var OrchestratorSpecificConnectionDetails = {\n serializedName: \"OrchestratorSpecificConnectionDetails\",\n type: {\n name: \"Composite\",\n polymorphicDiscriminator: {\n serializedName: \"instanceType\",\n clientName: \"instanceType\"\n },\n uberParent: \"OrchestratorSpecificConnectionDetails\",\n className: \"OrchestratorSpecificConnectionDetails\",\n modelProperties: {\n instanceType: {\n required: true,\n serializedName: \"instanceType\",\n type: {\n name: \"String\"\n }\n }\n }\n }\n};\nexport var ControllerConnectionDetails = {\n serializedName: \"ControllerConnectionDetails\",\n type: {\n name: \"Composite\",\n className: \"ControllerConnectionDetails\",\n modelProperties: {\n authKey: {\n readOnly: true,\n serializedName: \"authKey\",\n type: {\n name: \"String\"\n }\n },\n workspaceStorageAccountName: {\n readOnly: true,\n serializedName: \"workspaceStorageAccountName\",\n type: {\n name: \"String\"\n }\n },\n workspaceStorageSasToken: {\n readOnly: true,\n serializedName: \"workspaceStorageSasToken\",\n type: {\n name: \"String\"\n }\n },\n orchestratorSpecificConnectionDetails: {\n serializedName: \"orchestratorSpecificConnectionDetails\",\n type: {\n name: \"Composite\",\n className: \"OrchestratorSpecificConnectionDetails\"\n }\n }\n }\n }\n};\nexport var ControllerConnectionDetailsList = {\n serializedName: \"ControllerConnectionDetailsList\",\n type: {\n name: \"Composite\",\n className: \"ControllerConnectionDetailsList\",\n modelProperties: {\n connectionDetailsList: {\n serializedName: \"connectionDetailsList\",\n type: {\n name: \"Sequence\",\n element: {\n type: {\n name: \"Composite\",\n className: \"ControllerConnectionDetails\"\n }\n }\n }\n }\n }\n }\n};\nexport var ResourceProviderOperationDisplay = {\n serializedName: \"ResourceProviderOperationDisplay\",\n type: {\n name: \"Composite\",\n className: \"ResourceProviderOperationDisplay\",\n modelProperties: {\n provider: {\n serializedName: \"provider\",\n type: {\n name: \"String\"\n }\n },\n resource: {\n serializedName: \"resource\",\n type: {\n name: \"String\"\n }\n },\n operation: {\n serializedName: \"operation\",\n type: {\n name: \"String\"\n }\n },\n description: {\n serializedName: \"description\",\n type: {\n name: \"String\"\n }\n }\n }\n }\n};\nexport var ResourceProviderOperationDefinition = {\n serializedName: \"ResourceProviderOperationDefinition\",\n type: {\n name: \"Composite\",\n className: \"ResourceProviderOperationDefinition\",\n modelProperties: {\n name: {\n serializedName: \"name\",\n type: {\n name: \"String\"\n }\n },\n display: {\n serializedName: \"display\",\n type: {\n name: \"Composite\",\n className: \"ResourceProviderOperationDisplay\"\n }\n }\n }\n }\n};\nexport var KubernetesConnectionDetails = {\n serializedName: \"Kubernetes\",\n type: {\n name: \"Composite\",\n polymorphicDiscriminator: OrchestratorSpecificConnectionDetails.type.polymorphicDiscriminator,\n uberParent: \"OrchestratorSpecificConnectionDetails\",\n className: \"KubernetesConnectionDetails\",\n modelProperties: __assign(__assign({}, OrchestratorSpecificConnectionDetails.type.modelProperties), { kubeConfig: {\n serializedName: \"kubeConfig\",\n type: {\n name: \"String\"\n }\n } })\n }\n};\nexport var ErrorDetails = {\n serializedName: \"ErrorDetails\",\n type: {\n name: \"Composite\",\n className: \"ErrorDetails\",\n modelProperties: {\n code: {\n readOnly: true,\n serializedName: \"code\",\n type: {\n name: \"String\"\n }\n },\n message: {\n readOnly: true,\n serializedName: \"message\",\n type: {\n name: \"String\"\n }\n },\n target: {\n readOnly: true,\n serializedName: \"target\",\n type: {\n name: \"String\"\n }\n }\n }\n }\n};\nexport var ErrorResponse = {\n serializedName: \"ErrorResponse\",\n type: {\n name: \"Composite\",\n className: \"ErrorResponse\",\n modelProperties: {\n error: {\n serializedName: \"error\",\n type: {\n name: \"Composite\",\n className: \"ErrorDetails\"\n }\n }\n }\n }\n};\nexport var ControllerList = {\n serializedName: \"ControllerList\",\n type: {\n name: \"Composite\",\n className: \"ControllerList\",\n modelProperties: {\n value: {\n serializedName: \"\",\n type: {\n name: \"Sequence\",\n element: {\n type: {\n name: \"Composite\",\n className: \"Controller\"\n }\n }\n }\n },\n nextLink: {\n readOnly: true,\n serializedName: \"nextLink\",\n type: {\n name: \"String\"\n }\n }\n }\n }\n};\nexport var ResourceProviderOperationList = {\n serializedName: \"ResourceProviderOperationList\",\n type: {\n name: \"Composite\",\n className: \"ResourceProviderOperationList\",\n modelProperties: {\n value: {\n serializedName: \"\",\n type: {\n name: \"Sequence\",\n element: {\n type: {\n name: \"Composite\",\n className: \"ResourceProviderOperationDefinition\"\n }\n }\n }\n },\n nextLink: {\n readOnly: true,\n serializedName: \"nextLink\",\n type: {\n name: \"String\"\n }\n }\n }\n }\n};\nexport var discriminators = {\n 'OrchestratorSpecificConnectionDetails': OrchestratorSpecificConnectionDetails,\n 'OrchestratorSpecificConnectionDetails.Kubernetes': KubernetesConnectionDetails\n};\n//# sourceMappingURL=mappers.js.map","/*\n * Copyright (c) Microsoft Corporation. All rights reserved.\n * Licensed under the MIT License. See License.txt in the project root for\n * license information.\n *\n * Code generated by Microsoft (R) AutoRest Code Generator.\n * Changes may cause incorrect behavior and will be lost if the code is\n * regenerated.\n */\nexport { discriminators, ContainerHostMapping, CloudError } from \"../models/mappers\";\n//# sourceMappingURL=containerHostMappingsMappers.js.map","/*\n * Copyright (c) Microsoft Corporation. All rights reserved.\n * Licensed under the MIT License. See License.txt in the project root for\n * license information.\n *\n * Code generated by Microsoft (R) AutoRest Code Generator.\n * Changes may cause incorrect behavior and will be lost if the code is\n * regenerated.\n */\nexport var acceptLanguage = {\n parameterPath: \"acceptLanguage\",\n mapper: {\n serializedName: \"accept-language\",\n defaultValue: 'en-US',\n type: {\n name: \"String\"\n }\n }\n};\nexport var apiVersion = {\n parameterPath: \"apiVersion\",\n mapper: {\n required: true,\n serializedName: \"api-version\",\n type: {\n name: \"String\"\n }\n }\n};\nexport var location = {\n parameterPath: \"location\",\n mapper: {\n required: true,\n serializedName: \"location\",\n type: {\n name: \"String\"\n }\n }\n};\nexport var name = {\n parameterPath: \"name\",\n mapper: {\n required: true,\n serializedName: \"name\",\n constraints: {\n MaxLength: 31,\n MinLength: 3,\n Pattern: /^[a-zA-Z0-9](-?[a-zA-Z0-9])*$/\n },\n type: {\n name: \"String\"\n }\n }\n};\nexport var nextPageLink = {\n parameterPath: \"nextPageLink\",\n mapper: {\n required: true,\n serializedName: \"nextLink\",\n type: {\n name: \"String\"\n }\n },\n skipEncoding: true\n};\nexport var resourceGroupName = {\n parameterPath: \"resourceGroupName\",\n mapper: {\n required: true,\n serializedName: \"resourceGroupName\",\n constraints: {\n MaxLength: 90,\n MinLength: 1\n },\n type: {\n name: \"String\"\n }\n }\n};\nexport var subscriptionId = {\n parameterPath: \"subscriptionId\",\n mapper: {\n required: true,\n serializedName: \"subscriptionId\",\n type: {\n name: \"String\"\n }\n }\n};\n//# sourceMappingURL=parameters.js.map","/*\n * Copyright (c) Microsoft Corporation. All rights reserved.\n * Licensed under the MIT License. See License.txt in the project root for\n * license information.\n *\n * Code generated by Microsoft (R) AutoRest Code Generator.\n * Changes may cause incorrect behavior and will be lost if the code is\n * regenerated.\n */\nimport { __assign } from \"tslib\";\nimport * as msRest from \"@azure/ms-rest-js\";\nimport * as Mappers from \"../models/containerHostMappingsMappers\";\nimport * as Parameters from \"../models/parameters\";\n/** Class representing a ContainerHostMappings. */\nvar ContainerHostMappings = /** @class */ (function () {\n /**\n * Create a ContainerHostMappings.\n * @param {DevSpacesManagementClientContext} client Reference to the service client.\n */\n function ContainerHostMappings(client) {\n this.client = client;\n }\n ContainerHostMappings.prototype.getContainerHostMapping = function (containerHostMapping, location, options, callback) {\n return this.client.sendOperationRequest({\n containerHostMapping: containerHostMapping,\n location: location,\n options: options\n }, getContainerHostMappingOperationSpec, callback);\n };\n return ContainerHostMappings;\n}());\nexport { ContainerHostMappings };\n// Operation Specifications\nvar serializer = new msRest.Serializer(Mappers);\nvar getContainerHostMappingOperationSpec = {\n httpMethod: \"POST\",\n path: \"providers/Microsoft.DevSpaces/locations/{location}/checkContainerHostMapping\",\n urlParameters: [\n Parameters.location\n ],\n queryParameters: [\n Parameters.apiVersion\n ],\n headerParameters: [\n Parameters.acceptLanguage\n ],\n requestBody: {\n parameterPath: \"containerHostMapping\",\n mapper: __assign(__assign({}, Mappers.ContainerHostMapping), { required: true })\n },\n responses: {\n 200: {\n bodyMapper: {\n serializedName: \"parsedResponse\",\n type: {\n name: \"Object\"\n }\n }\n },\n default: {\n bodyMapper: Mappers.CloudError\n }\n },\n serializer: serializer\n};\n//# sourceMappingURL=containerHostMappings.js.map","/*\n * Copyright (c) Microsoft Corporation. All rights reserved.\n * Licensed under the MIT License. See License.txt in the project root for\n * license information.\n *\n * Code generated by Microsoft (R) AutoRest Code Generator.\n * Changes may cause incorrect behavior and will be lost if the code is\n * regenerated.\n */\nexport { discriminators, Controller, TrackedResource, Resource, BaseResource, Sku, ErrorResponse, ErrorDetails, ControllerUpdateParameters, ControllerList, ControllerConnectionDetailsList, ControllerConnectionDetails, OrchestratorSpecificConnectionDetails, KubernetesConnectionDetails } from \"../models/mappers\";\n//# sourceMappingURL=controllersMappers.js.map","/*\n * Copyright (c) Microsoft Corporation. All rights reserved.\n * Licensed under the MIT License. See License.txt in the project root for\n * license information.\n *\n * Code generated by Microsoft (R) AutoRest Code Generator.\n * Changes may cause incorrect behavior and will be lost if the code is\n * regenerated.\n */\nimport { __assign } from \"tslib\";\nimport * as msRest from \"@azure/ms-rest-js\";\nimport * as Mappers from \"../models/controllersMappers\";\nimport * as Parameters from \"../models/parameters\";\n/** Class representing a Controllers. */\nvar Controllers = /** @class */ (function () {\n /**\n * Create a Controllers.\n * @param {DevSpacesManagementClientContext} client Reference to the service client.\n */\n function Controllers(client) {\n this.client = client;\n }\n Controllers.prototype.get = function (resourceGroupName, name, options, callback) {\n return this.client.sendOperationRequest({\n resourceGroupName: resourceGroupName,\n name: name,\n options: options\n }, getOperationSpec, callback);\n };\n /**\n * Creates an Azure Dev Spaces Controller with the specified create parameters.\n * @summary Creates an Azure Dev Spaces Controller.\n * @param resourceGroupName Resource group to which the resource belongs.\n * @param name Name of the resource.\n * @param controller Controller create parameters.\n * @param [options] The optional parameters\n * @returns Promise<Models.ControllersCreateResponse>\n */\n Controllers.prototype.create = function (resourceGroupName, name, controller, options) {\n return this.beginCreate(resourceGroupName, name, controller, options)\n .then(function (lroPoller) { return lroPoller.pollUntilFinished(); });\n };\n /**\n * Deletes an existing Azure Dev Spaces Controller.\n * @summary Deletes an Azure Dev Spaces Controller.\n * @param resourceGroupName Resource group to which the resource belongs.\n * @param name Name of the resource.\n * @param [options] The optional parameters\n * @returns Promise<msRest.RestResponse>\n */\n Controllers.prototype.deleteMethod = function (resourceGroupName, name, options) {\n return this.beginDeleteMethod(resourceGroupName, name, options)\n .then(function (lroPoller) { return lroPoller.pollUntilFinished(); });\n };\n Controllers.prototype.update = function (resourceGroupName, name, controllerUpdateParameters, options, callback) {\n return this.client.sendOperationRequest({\n resourceGroupName: resourceGroupName,\n name: name,\n controllerUpdateParameters: controllerUpdateParameters,\n options: options\n }, updateOperationSpec, callback);\n };\n Controllers.prototype.listByResourceGroup = function (resourceGroupName, options, callback) {\n return this.client.sendOperationRequest({\n resourceGroupName: resourceGroupName,\n options: options\n }, listByResourceGroupOperationSpec, callback);\n };\n Controllers.prototype.list = function (options, callback) {\n return this.client.sendOperationRequest({\n options: options\n }, listOperationSpec, callback);\n };\n Controllers.prototype.listConnectionDetails = function (resourceGroupName, name, options, callback) {\n return this.client.sendOperationRequest({\n resourceGroupName: resourceGroupName,\n name: name,\n options: options\n }, listConnectionDetailsOperationSpec, callback);\n };\n /**\n * Creates an Azure Dev Spaces Controller with the specified create parameters.\n * @summary Creates an Azure Dev Spaces Controller.\n * @param resourceGroupName Resource group to which the resource belongs.\n * @param name Name of the resource.\n * @param controller Controller create parameters.\n * @param [options] The optional parameters\n * @returns Promise<msRestAzure.LROPoller>\n */\n Controllers.prototype.beginCreate = function (resourceGroupName, name, controller, options) {\n return this.client.sendLRORequest({\n resourceGroupName: resourceGroupName,\n name: name,\n controller: controller,\n options: options\n }, beginCreateOperationSpec, options);\n };\n /**\n * Deletes an existing Azure Dev Spaces Controller.\n * @summary Deletes an Azure Dev Spaces Controller.\n * @param resourceGroupName Resource group to which the resource belongs.\n * @param name Name of the resource.\n * @param [options] The optional parameters\n * @returns Promise<msRestAzure.LROPoller>\n */\n Controllers.prototype.beginDeleteMethod = function (resourceGroupName, name, options) {\n return this.client.sendLRORequest({\n resourceGroupName: resourceGroupName,\n name: name,\n options: options\n }, beginDeleteMethodOperationSpec, options);\n };\n Controllers.prototype.listByResourceGroupNext = function (nextPageLink, options, callback) {\n return this.client.sendOperationRequest({\n nextPageLink: nextPageLink,\n options: options\n }, listByResourceGroupNextOperationSpec, callback);\n };\n Controllers.prototype.listNext = function (nextPageLink, options, callback) {\n return this.client.sendOperationRequest({\n nextPageLink: nextPageLink,\n options: options\n }, listNextOperationSpec, callback);\n };\n return Controllers;\n}());\nexport { Controllers };\n// Operation Specifications\nvar serializer = new msRest.Serializer(Mappers);\nvar getOperationSpec = {\n httpMethod: \"GET\",\n path: \"subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DevSpaces/controllers/{name}\",\n urlParameters: [\n Parameters.subscriptionId,\n Parameters.resourceGroupName,\n Parameters.name\n ],\n queryParameters: [\n Parameters.apiVersion\n ],\n headerParameters: [\n Parameters.acceptLanguage\n ],\n responses: {\n 200: {\n bodyMapper: Mappers.Controller\n },\n default: {\n bodyMapper: Mappers.ErrorResponse\n }\n },\n serializer: serializer\n};\nvar updateOperationSpec = {\n httpMethod: \"PATCH\",\n path: \"subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DevSpaces/controllers/{name}\",\n urlParameters: [\n Parameters.subscriptionId,\n Parameters.resourceGroupName,\n Parameters.name\n ],\n queryParameters: [\n Parameters.apiVersion\n ],\n headerParameters: [\n Parameters.acceptLanguage\n ],\n requestBody: {\n parameterPath: \"controllerUpdateParameters\",\n mapper: __assign(__assign({}, Mappers.ControllerUpdateParameters), { required: true })\n },\n responses: {\n 200: {\n bodyMapper: Mappers.Controller\n },\n default: {\n bodyMapper: Mappers.ErrorResponse\n }\n },\n serializer: serializer\n};\nvar listByResourceGroupOperationSpec = {\n httpMethod: \"GET\",\n path: \"subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DevSpaces/controllers\",\n urlParameters: [\n Parameters.subscriptionId,\n Parameters.resourceGroupName\n ],\n queryParameters: [\n Parameters.apiVersion\n ],\n headerParameters: [\n Parameters.acceptLanguage\n ],\n responses: {\n 200: {\n bodyMapper: Mappers.ControllerList\n },\n default: {\n bodyMapper: Mappers.ErrorResponse\n }\n },\n serializer: serializer\n};\nvar listOperationSpec = {\n httpMethod: \"GET\",\n path: \"subscriptions/{subscriptionId}/providers/Microsoft.DevSpaces/controllers\",\n urlParameters: [\n Parameters.subscriptionId\n ],\n queryParameters: [\n Parameters.apiVersion\n ],\n headerParameters: [\n Parameters.acceptLanguage\n ],\n responses: {\n 200: {\n bodyMapper: Mappers.ControllerList\n },\n default: {\n bodyMapper: Mappers.ErrorResponse\n }\n },\n serializer: serializer\n};\nvar listConnectionDetailsOperationSpec = {\n httpMethod: \"POST\",\n path: \"subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DevSpaces/controllers/{name}/listConnectionDetails\",\n urlParameters: [\n Parameters.subscriptionId,\n Parameters.resourceGroupName,\n Parameters.name\n ],\n queryParameters: [\n Parameters.apiVersion\n ],\n headerParameters: [\n Parameters.acceptLanguage\n ],\n responses: {\n 200: {\n bodyMapper: Mappers.ControllerConnectionDetailsList\n },\n default: {\n bodyMapper: Mappers.ErrorResponse\n }\n },\n serializer: serializer\n};\nvar beginCreateOperationSpec = {\n httpMethod: \"PUT\",\n path: \"subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DevSpaces/controllers/{name}\",\n urlParameters: [\n Parameters.subscriptionId,\n Parameters.resourceGroupName,\n Parameters.name\n ],\n queryParameters: [\n Parameters.apiVersion\n ],\n headerParameters: [\n Parameters.acceptLanguage\n ],\n requestBody: {\n parameterPath: \"controller\",\n mapper: __assign(__assign({}, Mappers.Controller), { required: true })\n },\n responses: {\n 200: {\n bodyMapper: Mappers.Controller\n },\n 201: {\n bodyMapper: Mappers.Controller\n },\n default: {\n bodyMapper: Mappers.ErrorResponse\n }\n },\n serializer: serializer\n};\nvar beginDeleteMethodOperationSpec = {\n httpMethod: \"DELETE\",\n path: \"subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DevSpaces/controllers/{name}\",\n urlParameters: [\n Parameters.subscriptionId,\n Parameters.resourceGroupName,\n Parameters.name\n ],\n queryParameters: [\n Parameters.apiVersion\n ],\n headerParameters: [\n Parameters.acceptLanguage\n ],\n responses: {\n 200: {},\n 202: {},\n 204: {},\n default: {\n bodyMapper: Mappers.ErrorResponse\n }\n },\n serializer: serializer\n};\nvar listByResourceGroupNextOperationSpec = {\n httpMethod: \"GET\",\n baseUrl: \"https://management.azure.com\",\n path: \"{nextLink}\",\n urlParameters: [\n Parameters.nextPageLink\n ],\n headerParameters: [\n Parameters.acceptLanguage\n ],\n responses: {\n 200: {\n bodyMapper: Mappers.ControllerList\n },\n default: {\n bodyMapper: Mappers.ErrorResponse\n }\n },\n serializer: serializer\n};\nvar listNextOperationSpec = {\n httpMethod: \"GET\",\n baseUrl: \"https://management.azure.com\",\n path: \"{nextLink}\",\n urlParameters: [\n Parameters.nextPageLink\n ],\n headerParameters: [\n Parameters.acceptLanguage\n ],\n responses: {\n 200: {\n bodyMapper: Mappers.ControllerList\n },\n default: {\n bodyMapper: Mappers.ErrorResponse\n }\n },\n serializer: serializer\n};\n//# sourceMappingURL=controllers.js.map","/*\n * Copyright (c) Microsoft Corporation. All rights reserved.\n * Licensed under the MIT License. See License.txt in the project root for\n * license information.\n *\n * Code generated by Microsoft (R) AutoRest Code Generator.\n * Changes may cause incorrect behavior and will be lost if the code is\n * regenerated.\n */\nexport { discriminators, ResourceProviderOperationList, ResourceProviderOperationDefinition, ResourceProviderOperationDisplay, CloudError } from \"../models/mappers\";\n//# sourceMappingURL=operationsMappers.js.map","/*\n * Copyright (c) Microsoft Corporation. All rights reserved.\n * Licensed under the MIT License. See License.txt in the project root for\n * license information.\n *\n * Code generated by Microsoft (R) AutoRest Code Generator.\n * Changes may cause incorrect behavior and will be lost if the code is\n * regenerated.\n */\nimport * as msRest from \"@azure/ms-rest-js\";\nimport * as Mappers from \"../models/operationsMappers\";\nimport * as Parameters from \"../models/parameters\";\n/** Class representing a Operations. */\nvar Operations = /** @class */ (function () {\n /**\n * Create a Operations.\n * @param {DevSpacesManagementClientContext} client Reference to the service client.\n */\n function Operations(client) {\n this.client = client;\n }\n Operations.prototype.list = function (options, callback) {\n return this.client.sendOperationRequest({\n options: options\n }, listOperationSpec, callback);\n };\n Operations.prototype.listNext = function (nextPageLink, options, callback) {\n return this.client.sendOperationRequest({\n nextPageLink: nextPageLink,\n options: options\n }, listNextOperationSpec, callback);\n };\n return Operations;\n}());\nexport { Operations };\n// Operation Specifications\nvar serializer = new msRest.Serializer(Mappers);\nvar listOperationSpec = {\n httpMethod: \"GET\",\n path: \"providers/Microsoft.DevSpaces/operations\",\n queryParameters: [\n Parameters.apiVersion\n ],\n headerParameters: [\n Parameters.acceptLanguage\n ],\n responses: {\n 200: {\n bodyMapper: Mappers.ResourceProviderOperationList\n },\n default: {\n bodyMapper: Mappers.CloudError\n }\n },\n serializer: serializer\n};\nvar listNextOperationSpec = {\n httpMethod: \"GET\",\n baseUrl: \"https://management.azure.com\",\n path: \"{nextLink}\",\n urlParameters: [\n Parameters.nextPageLink\n ],\n headerParameters: [\n Parameters.acceptLanguage\n ],\n responses: {\n 200: {\n bodyMapper: Mappers.ResourceProviderOperationList\n },\n default: {\n bodyMapper: Mappers.CloudError\n }\n },\n serializer: serializer\n};\n//# sourceMappingURL=operations.js.map","/*\n * Copyright (c) Microsoft Corporation. All rights reserved.\n * Licensed under the MIT License. See License.txt in the project root for\n * license information.\n *\n * Code generated by Microsoft (R) AutoRest Code Generator.\n * Changes may cause incorrect behavior and will be lost if the code is\n * regenerated.\n */\nexport * from \"./containerHostMappings\";\nexport * from \"./controllers\";\nexport * from \"./operations\";\n//# sourceMappingURL=index.js.map","/*\n * Copyright (c) Microsoft Corporation. All rights reserved.\n * Licensed under the MIT License. See License.txt in the project root for\n * license information.\n *\n * Code generated by Microsoft (R) AutoRest Code Generator.\n * Changes may cause incorrect behavior and will be lost if the code is\n * regenerated.\n */\nimport { __extends } from \"tslib\";\nimport * as msRestAzure from \"@azure/ms-rest-azure-js\";\nvar packageName = \"@azure/arm-devspaces\";\nvar packageVersion = \"1.2.1\";\nvar DevSpacesManagementClientContext = /** @class */ (function (_super) {\n __extends(DevSpacesManagementClientContext, _super);\n /**\n * Initializes a new instance of the DevSpacesManagementClient class.\n * @param credentials Credentials needed for the client to connect to Azure. Credentials\n * implementing the TokenCredential interface from the @azure/identity package are recommended. For\n * more information about these credentials, see\n * {@link https://www.npmjs.com/package/@azure/identity}. Credentials implementing the\n * ServiceClientCredentials interface from the older packages @azure/ms-rest-nodeauth and\n * @azure/ms-rest-browserauth are also supported.\n * @param subscriptionId Azure subscription ID.\n * @param [options] The parameter options\n */\n function DevSpacesManagementClientContext(credentials, subscriptionId, options) {\n var _this = this;\n if (credentials == undefined) {\n throw new Error('\\'credentials\\' cannot be null.');\n }\n if (subscriptionId == undefined) {\n throw new Error('\\'subscriptionId\\' cannot be null.');\n }\n if (!options) {\n options = {};\n }\n if (!options.userAgent) {\n var defaultUserAgent = msRestAzure.getDefaultUserAgentValue();\n options.userAgent = packageName + \"/\" + packageVersion + \" \" + defaultUserAgent;\n }\n _this = _super.call(this, credentials, options) || this;\n _this.apiVersion = '2018-06-01-preview';\n _this.acceptLanguage = 'en-US';\n _this.longRunningOperationRetryTimeout = 30;\n _this.baseUri = options.baseUri || _this.baseUri || \"https://management.azure.com\";\n _this.requestContentType = \"application/json; charset=utf-8\";\n _this.credentials = credentials;\n _this.subscriptionId = subscriptionId;\n if (options.acceptLanguage !== null && options.acceptLanguage !== undefined) {\n _this.acceptLanguage = options.acceptLanguage;\n }\n if (options.longRunningOperationRetryTimeout !== null && options.longRunningOperationRetryTimeout !== undefined) {\n _this.longRunningOperationRetryTimeout = options.longRunningOperationRetryTimeout;\n }\n return _this;\n }\n return DevSpacesManagementClientContext;\n}(msRestAzure.AzureServiceClient));\nexport { DevSpacesManagementClientContext };\n//# sourceMappingURL=devSpacesManagementClientContext.js.map","/*\n * Copyright (c) Microsoft Corporation. All rights reserved.\n * Licensed under the MIT License. See License.txt in the project root for\n * license information.\n *\n * Code generated by Microsoft (R) AutoRest Code Generator.\n * Changes may cause incorrect behavior and will be lost if the code is\n * regenerated.\n */\nimport { __extends } from \"tslib\";\nimport * as Models from \"./models\";\nimport * as Mappers from \"./models/mappers\";\nimport * as operations from \"./operations\";\nimport { DevSpacesManagementClientContext } from \"./devSpacesManagementClientContext\";\nvar DevSpacesManagementClient = /** @class */ (function (_super) {\n __extends(DevSpacesManagementClient, _super);\n /**\n * Initializes a new instance of the DevSpacesManagementClient class.\n * @param credentials Credentials needed for the client to connect to Azure. Credentials\n * implementing the TokenCredential interface from the @azure/identity package are recommended. For\n * more information about these credentials, see\n * {@link https://www.npmjs.com/package/@azure/identity}. Credentials implementing the\n * ServiceClientCredentials interface from the older packages @azure/ms-rest-nodeauth and\n * @azure/ms-rest-browserauth are also supported.\n * @param subscriptionId Azure subscription ID.\n * @param [options] The parameter options\n */\n function DevSpacesManagementClient(credentials, subscriptionId, options) {\n var _this = _super.call(this, credentials, subscriptionId, options) || this;\n _this.containerHostMappings = new operations.ContainerHostMappings(_this);\n _this.controllers = new operations.Controllers(_this);\n _this.operations = new operations.Operations(_this);\n return _this;\n }\n return DevSpacesManagementClient;\n}(DevSpacesManagementClientContext));\n// Operation Specifications\nexport { DevSpacesManagementClient, DevSpacesManagementClientContext, Models as DevSpacesManagementModels, Mappers as DevSpacesManagementMappers };\nexport * from \"./operations\";\n//# sourceMappingURL=devSpacesManagementClient.js.map"],"names":["CloudErrorMapper","BaseResourceMapper","location","msRest.Serializer","Parameters.location","Parameters.apiVersion","Parameters.acceptLanguage","Mappers.ContainerHostMapping","Mappers.CloudError","resourceGroupName","name","nextPageLink","serializer","Mappers","Parameters.subscriptionId","Parameters.resourceGroupName","Parameters.name","Mappers.Controller","Mappers.ErrorResponse","Mappers.ControllerUpdateParameters","Mappers.ControllerList","Mappers.ControllerConnectionDetailsList","Parameters.nextPageLink","listOperationSpec","listNextOperationSpec","Mappers.ResourceProviderOperationList","msRestAzure.getDefaultUserAgentValue","msRestAzure.AzureServiceClient","operations.ContainerHostMappings","operations.Controllers","operations.Operations"],"mappings":";;;;;;;;;;;;;;;IAAA;IACA;;IAEA;IACA;;IAEA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;;IAEA,IAAI,aAAa,GAAG,SAAS,CAAC,EAAE,CAAC,EAAE;IACnC,IAAI,aAAa,GAAG,MAAM,CAAC,cAAc;IACzC,SAAS,EAAE,SAAS,EAAE,EAAE,EAAE,YAAY,KAAK,IAAI,UAAU,CAAC,EAAE,CAAC,EAAE,EAAE,CAAC,CAAC,SAAS,GAAG,CAAC,CAAC,EAAE,CAAC;IACpF,QAAQ,UAAU,CAAC,EAAE,CAAC,EAAE,EAAE,KAAK,IAAI,CAAC,IAAI,CAAC,EAAE,IAAI,CAAC,CAAC,cAAc,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,CAAC;IACnF,IAAI,OAAO,aAAa,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC;IAC/B,CAAC,CAAC;;AAEF,IAAO,SAAS,SAAS,CAAC,CAAC,EAAE,CAAC,EAAE;IAChC,IAAI,aAAa,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC;IACxB,IAAI,SAAS,EAAE,GAAG,EAAE,IAAI,CAAC,WAAW,GAAG,CAAC,CAAC,EAAE;IAC3C,IAAI,CAAC,CAAC,SAAS,GAAG,CAAC,KAAK,IAAI,GAAG,MAAM,CAAC,MAAM,CAAC,CAAC,CAAC,IAAI,EAAE,CAAC,SAAS,GAAG,CAAC,CAAC,SAAS,EAAE,IAAI,EAAE,EAAE,CAAC,CAAC;IACzF,CAAC;;AAED,IAAO,IAAI,QAAQ,GAAG,WAAW;IACjC,IAAI,QAAQ,GAAG,MAAM,CAAC,MAAM,IAAI,SAAS,QAAQ,CAAC,CAAC,EAAE;IACrD,QAAQ,KAAK,IAAI,CAAC,EAAE,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,SAAS,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,EAAE,CAAC,EAAE,EAAE;IAC7D,YAAY,CAAC,GAAG,SAAS,CAAC,CAAC,CAAC,CAAC;IAC7B,YAAY,KAAK,IAAI,CAAC,IAAI,CAAC,EAAE,IAAI,MAAM,CAAC,SAAS,CAAC,cAAc,CAAC,IAAI,CAAC,CAAC,EAAE,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC;IACzF,SAAS;IACT,QAAQ,OAAO,CAAC,CAAC;IACjB,MAAK;IACL,IAAI,OAAO,QAAQ,CAAC,KAAK,CAAC,IAAI,EAAE,SAAS,CAAC,CAAC;IAC3C,CAAC;;ICtCD;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA,GAAG;;;;;;ICRH;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;AACA,IAEO,IAAI,UAAU,GAAGA,4BAAgB,CAAC;AACzC,IAAO,IAAI,YAAY,GAAGC,8BAAkB,CAAC;AAC7C,IAAO,IAAI,oBAAoB,GAAG;IAClC,IAAI,cAAc,EAAE,sBAAsB;IAC1C,IAAI,IAAI,EAAE;IACV,QAAQ,IAAI,EAAE,WAAW;IACzB,QAAQ,SAAS,EAAE,sBAAsB;IACzC,QAAQ,eAAe,EAAE;IACzB,YAAY,uBAAuB,EAAE;IACrC,gBAAgB,cAAc,EAAE,yBAAyB;IACzD,gBAAgB,IAAI,EAAE;IACtB,oBAAoB,IAAI,EAAE,QAAQ;IAClC,iBAAiB;IACjB,aAAa;IACb,YAAY,0BAA0B,EAAE;IACxC,gBAAgB,QAAQ,EAAE,IAAI;IAC9B,gBAAgB,cAAc,EAAE,4BAA4B;IAC5D,gBAAgB,IAAI,EAAE;IACtB,oBAAoB,IAAI,EAAE,QAAQ;IAClC,iBAAiB;IACjB,aAAa;IACb,SAAS;IACT,KAAK;IACL,CAAC,CAAC;AACF,IAAO,IAAI,GAAG,GAAG;IACjB,IAAI,cAAc,EAAE,KAAK;IACzB,IAAI,IAAI,EAAE;IACV,QAAQ,IAAI,EAAE,WAAW;IACzB,QAAQ,SAAS,EAAE,KAAK;IACxB,QAAQ,eAAe,EAAE;IACzB,YAAY,IAAI,EAAE;IAClB,gBAAgB,QAAQ,EAAE,IAAI;IAC9B,gBAAgB,UAAU,EAAE,IAAI;IAChC,gBAAgB,cAAc,EAAE,MAAM;IACtC,gBAAgB,YAAY,EAAE,IAAI;IAClC,gBAAgB,IAAI,EAAE;IACtB,oBAAoB,IAAI,EAAE,QAAQ;IAClC,iBAAiB;IACjB,aAAa;IACb,YAAY,IAAI,EAAE;IAClB,gBAAgB,cAAc,EAAE,MAAM;IACtC,gBAAgB,IAAI,EAAE;IACtB,oBAAoB,IAAI,EAAE,QAAQ;IAClC,iBAAiB;IACjB,aAAa;IACb,SAAS;IACT,KAAK;IACL,CAAC,CAAC;AACF,IAAO,IAAI,QAAQ,GAAG;IACtB,IAAI,cAAc,EAAE,UAAU;IAC9B,IAAI,IAAI,EAAE;IACV,QAAQ,IAAI,EAAE,WAAW;IACzB,QAAQ,SAAS,EAAE,UAAU;IAC7B,QAAQ,eAAe,EAAE;IACzB,YAAY,EAAE,EAAE;IAChB,gBAAgB,QAAQ,EAAE,IAAI;IAC9B,gBAAgB,cAAc,EAAE,IAAI;IACpC,gBAAgB,IAAI,EAAE;IACtB,oBAAoB,IAAI,EAAE,QAAQ;IAClC,iBAAiB;IACjB,aAAa;IACb,YAAY,IAAI,EAAE;IAClB,gBAAgB,QAAQ,EAAE,IAAI;IAC9B,gBAAgB,cAAc,EAAE,MAAM;IACtC,gBAAgB,IAAI,EAAE;IACtB,oBAAoB,IAAI,EAAE,QAAQ;IAClC,iBAAiB;IACjB,aAAa;IACb,YAAY,IAAI,EAAE;IAClB,gBAAgB,QAAQ,EAAE,IAAI;IAC9B,gBAAgB,cAAc,EAAE,MAAM;IACtC,gBAAgB,IAAI,EAAE;IACtB,oBAAoB,IAAI,EAAE,QAAQ;IAClC,iBAAiB;IACjB,aAAa;IACb,SAAS;IACT,KAAK;IACL,CAAC,CAAC;AACF,IAAO,IAAI,eAAe,GAAG;IAC7B,IAAI,cAAc,EAAE,iBAAiB;IACrC,IAAI,IAAI,EAAE;IACV,QAAQ,IAAI,EAAE,WAAW;IACzB,QAAQ,SAAS,EAAE,iBAAiB;IACpC,QAAQ,eAAe,EAAE,QAAQ,CAAC,QAAQ,CAAC,EAAE,EAAE,QAAQ,CAAC,IAAI,CAAC,eAAe,CAAC,EAAE,EAAE,IAAI,EAAE;IACvF,gBAAgB,cAAc,EAAE,MAAM;IACtC,gBAAgB,IAAI,EAAE;IACtB,oBAAoB,IAAI,EAAE,YAAY;IACtC,oBAAoB,KAAK,EAAE;IAC3B,wBAAwB,IAAI,EAAE;IAC9B,4BAA4B,IAAI,EAAE,QAAQ;IAC1C,yBAAyB;IACzB,qBAAqB;IACrB,iBAAiB;IACjB,aAAa,EAAE,QAAQ,EAAE;IACzB,gBAAgB,cAAc,EAAE,UAAU;IAC1C,gBAAgB,IAAI,EAAE;IACtB,oBAAoB,IAAI,EAAE,QAAQ;IAClC,iBAAiB;IACjB,aAAa,EAAE,CAAC;IAChB,KAAK;IACL,CAAC,CAAC;AACF,IAAO,IAAI,UAAU,GAAG;IACxB,IAAI,cAAc,EAAE,YAAY;IAChC,IAAI,IAAI,EAAE;IACV,QAAQ,IAAI,EAAE,WAAW;IACzB,QAAQ,SAAS,EAAE,YAAY;IAC/B,QAAQ,eAAe,EAAE,QAAQ,CAAC,QAAQ,CAAC,EAAE,EAAE,eAAe,CAAC,IAAI,CAAC,eAAe,CAAC,EAAE,EAAE,iBAAiB,EAAE;IAC3G,gBAAgB,QAAQ,EAAE,IAAI;IAC9B,gBAAgB,cAAc,EAAE,8BAA8B;IAC9D,gBAAgB,IAAI,EAAE;IACtB,oBAAoB,IAAI,EAAE,QAAQ;IAClC,iBAAiB;IACjB,aAAa,EAAE,UAAU,EAAE;IAC3B,gBAAgB,QAAQ,EAAE,IAAI;IAC9B,gBAAgB,cAAc,EAAE,uBAAuB;IACvD,gBAAgB,IAAI,EAAE;IACtB,oBAAoB,IAAI,EAAE,QAAQ;IAClC,iBAAiB;IACjB,aAAa,EAAE,aAAa,EAAE;IAC9B,gBAAgB,QAAQ,EAAE,IAAI;IAC9B,gBAAgB,cAAc,EAAE,0BAA0B;IAC1D,gBAAgB,IAAI,EAAE;IACtB,oBAAoB,IAAI,EAAE,QAAQ;IAClC,iBAAiB;IACjB,aAAa,EAAE,6BAA6B,EAAE;IAC9C,gBAAgB,QAAQ,EAAE,IAAI;IAC9B,gBAAgB,cAAc,EAAE,0CAA0C;IAC1E,gBAAgB,IAAI,EAAE;IACtB,oBAAoB,IAAI,EAAE,QAAQ;IAClC,iBAAiB;IACjB,aAAa,EAAE,oCAAoC,EAAE;IACrD,gBAAgB,QAAQ,EAAE,IAAI;IAC9B,gBAAgB,cAAc,EAAE,iDAAiD;IACjF,gBAAgB,IAAI,EAAE;IACtB,oBAAoB,IAAI,EAAE,QAAQ;IAClC,iBAAiB;IACjB,aAAa,EAAE,GAAG,EAAE;IACpB,gBAAgB,QAAQ,EAAE,IAAI;IAC9B,gBAAgB,cAAc,EAAE,KAAK;IACrC,gBAAgB,YAAY,EAAE,EAAE;IAChC,gBAAgB,IAAI,EAAE;IACtB,oBAAoB,IAAI,EAAE,WAAW;IACrC,oBAAoB,SAAS,EAAE,KAAK;IACpC,iBAAiB;IACjB,aAAa,EAAE,CAAC;IAChB,KAAK;IACL,CAAC,CAAC;AACF,IAAO,IAAI,0BAA0B,GAAG;IACxC,IAAI,cAAc,EAAE,4BAA4B;IAChD,IAAI,IAAI,EAAE;IACV,QAAQ,IAAI,EAAE,WAAW;IACzB,QAAQ,SAAS,EAAE,4BAA4B;IAC/C,QAAQ,eAAe,EAAE;IACzB,YAAY,IAAI,EAAE;IAClB,gBAAgB,cAAc,EAAE,MAAM;IACtC,gBAAgB,IAAI,EAAE;IACtB,oBAAoB,IAAI,EAAE,YAAY;IACtC,oBAAoB,KAAK,EAAE;IAC3B,wBAAwB,IAAI,EAAE;IAC9B,4BAA4B,IAAI,EAAE,QAAQ;IAC1C,yBAAyB;IACzB,qBAAqB;IACrB,iBAAiB;IACjB,aAAa;IACb,SAAS;IACT,KAAK;IACL,CAAC,CAAC;AACF,IAAO,IAAI,qCAAqC,GAAG;IACnD,IAAI,cAAc,EAAE,uCAAuC;IAC3D,IAAI,IAAI,EAAE;IACV,QAAQ,IAAI,EAAE,WAAW;IACzB,QAAQ,wBAAwB,EAAE;IAClC,YAAY,cAAc,EAAE,cAAc;IAC1C,YAAY,UAAU,EAAE,cAAc;IACtC,SAAS;IACT,QAAQ,UAAU,EAAE,uCAAuC;IAC3D,QAAQ,SAAS,EAAE,uCAAuC;IAC1D,QAAQ,eAAe,EAAE;IACzB,YAAY,YAAY,EAAE;IAC1B,gBAAgB,QAAQ,EAAE,IAAI;IAC9B,gBAAgB,cAAc,EAAE,cAAc;IAC9C,gBAAgB,IAAI,EAAE;IACtB,oBAAoB,IAAI,EAAE,QAAQ;IAClC,iBAAiB;IACjB,aAAa;IACb,SAAS;IACT,KAAK;IACL,CAAC,CAAC;AACF,IAAO,IAAI,2BAA2B,GAAG;IACzC,IAAI,cAAc,EAAE,6BAA6B;IACjD,IAAI,IAAI,EAAE;IACV,QAAQ,IAAI,EAAE,WAAW;IACzB,QAAQ,SAAS,EAAE,6BAA6B;IAChD,QAAQ,eAAe,EAAE;IACzB,YAAY,OAAO,EAAE;IACrB,gBAAgB,QAAQ,EAAE,IAAI;IAC9B,gBAAgB,cAAc,EAAE,SAAS;IACzC,gBAAgB,IAAI,EAAE;IACtB,oBAAoB,IAAI,EAAE,QAAQ;IAClC,iBAAiB;IACjB,aAAa;IACb,YAAY,2BAA2B,EAAE;IACzC,gBAAgB,QAAQ,EAAE,IAAI;IAC9B,gBAAgB,cAAc,EAAE,6BAA6B;IAC7D,gBAAgB,IAAI,EAAE;IACtB,oBAAoB,IAAI,EAAE,QAAQ;IAClC,iBAAiB;IACjB,aAAa;IACb,YAAY,wBAAwB,EAAE;IACtC,gBAAgB,QAAQ,EAAE,IAAI;IAC9B,gBAAgB,cAAc,EAAE,0BAA0B;IAC1D,gBAAgB,IAAI,EAAE;IACtB,oBAAoB,IAAI,EAAE,QAAQ;IAClC,iBAAiB;IACjB,aAAa;IACb,YAAY,qCAAqC,EAAE;IACnD,gBAAgB,cAAc,EAAE,uCAAuC;IACvE,gBAAgB,IAAI,EAAE;IACtB,oBAAoB,IAAI,EAAE,WAAW;IACrC,oBAAoB,SAAS,EAAE,uCAAuC;IACtE,iBAAiB;IACjB,aAAa;IACb,SAAS;IACT,KAAK;IACL,CAAC,CAAC;AACF,IAAO,IAAI,+BAA+B,GAAG;IAC7C,IAAI,cAAc,EAAE,iCAAiC;IACrD,IAAI,IAAI,EAAE;IACV,QAAQ,IAAI,EAAE,WAAW;IACzB,QAAQ,SAAS,EAAE,iCAAiC;IACpD,QAAQ,eAAe,EAAE;IACzB,YAAY,qBAAqB,EAAE;IACnC,gBAAgB,cAAc,EAAE,uBAAuB;IACvD,gBAAgB,IAAI,EAAE;IACtB,oBAAoB,IAAI,EAAE,UAAU;IACpC,oBAAoB,OAAO,EAAE;IAC7B,wBAAwB,IAAI,EAAE;IAC9B,4BAA4B,IAAI,EAAE,WAAW;IAC7C,4BAA4B,SAAS,EAAE,6BAA6B;IACpE,yBAAyB;IACzB,qBAAqB;IACrB,iBAAiB;IACjB,aAAa;IACb,SAAS;IACT,KAAK;IACL,CAAC,CAAC;AACF,IAAO,IAAI,gCAAgC,GAAG;IAC9C,IAAI,cAAc,EAAE,kCAAkC;IACtD,IAAI,IAAI,EAAE;IACV,QAAQ,IAAI,EAAE,WAAW;IACzB,QAAQ,SAAS,EAAE,kCAAkC;IACrD,QAAQ,eAAe,EAAE;IACzB,YAAY,QAAQ,EAAE;IACtB,gBAAgB,cAAc,EAAE,UAAU;IAC1C,gBAAgB,IAAI,EAAE;IACtB,oBAAoB,IAAI,EAAE,QAAQ;IAClC,iBAAiB;IACjB,aAAa;IACb,YAAY,QAAQ,EAAE;IACtB,gBAAgB,cAAc,EAAE,UAAU;IAC1C,gBAAgB,IAAI,EAAE;IACtB,oBAAoB,IAAI,EAAE,QAAQ;IAClC,iBAAiB;IACjB,aAAa;IACb,YAAY,SAAS,EAAE;IACvB,gBAAgB,cAAc,EAAE,WAAW;IAC3C,gBAAgB,IAAI,EAAE;IACtB,oBAAoB,IAAI,EAAE,QAAQ;IAClC,iBAAiB;IACjB,aAAa;IACb,YAAY,WAAW,EAAE;IACzB,gBAAgB,cAAc,EAAE,aAAa;IAC7C,gBAAgB,IAAI,EAAE;IACtB,oBAAoB,IAAI,EAAE,QAAQ;IAClC,iBAAiB;IACjB,aAAa;IACb,SAAS;IACT,KAAK;IACL,CAAC,CAAC;AACF,IAAO,IAAI,mCAAmC,GAAG;IACjD,IAAI,cAAc,EAAE,qCAAqC;IACzD,IAAI,IAAI,EAAE;IACV,QAAQ,IAAI,EAAE,WAAW;IACzB,QAAQ,SAAS,EAAE,qCAAqC;IACxD,QAAQ,eAAe,EAAE;IACzB,YAAY,IAAI,EAAE;IAClB,gBAAgB,cAAc,EAAE,MAAM;IACtC,gBAAgB,IAAI,EAAE;IACtB,oBAAoB,IAAI,EAAE,QAAQ;IAClC,iBAAiB;IACjB,aAAa;IACb,YAAY,OAAO,EAAE;IACrB,gBAAgB,cAAc,EAAE,SAAS;IACzC,gBAAgB,IAAI,EAAE;IACtB,oBAAoB,IAAI,EAAE,WAAW;IACrC,oBAAoB,SAAS,EAAE,kCAAkC;IACjE,iBAAiB;IACjB,aAAa;IACb,SAAS;IACT,KAAK;IACL,CAAC,CAAC;AACF,IAAO,IAAI,2BAA2B,GAAG;IACzC,IAAI,cAAc,EAAE,YAAY;IAChC,IAAI,IAAI,EAAE;IACV,QAAQ,IAAI,EAAE,WAAW;IACzB,QAAQ,wBAAwB,EAAE,qCAAqC,CAAC,IAAI,CAAC,wBAAwB;IACrG,QAAQ,UAAU,EAAE,uCAAuC;IAC3D,QAAQ,SAAS,EAAE,6BAA6B;IAChD,QAAQ,eAAe,EAAE,QAAQ,CAAC,QAAQ,CAAC,EAAE,EAAE,qCAAqC,CAAC,IAAI,CAAC,eAAe,CAAC,EAAE,EAAE,UAAU,EAAE;IAC1H,gBAAgB,cAAc,EAAE,YAAY;IAC5C,gBAAgB,IAAI,EAAE;IACtB,oBAAoB,IAAI,EAAE,QAAQ;IAClC,iBAAiB;IACjB,aAAa,EAAE,CAAC;IAChB,KAAK;IACL,CAAC,CAAC;AACF,IAAO,IAAI,YAAY,GAAG;IAC1B,IAAI,cAAc,EAAE,cAAc;IAClC,IAAI,IAAI,EAAE;IACV,QAAQ,IAAI,EAAE,WAAW;IACzB,QAAQ,SAAS,EAAE,cAAc;IACjC,QAAQ,eAAe,EAAE;IACzB,YAAY,IAAI,EAAE;IAClB,gBAAgB,QAAQ,EAAE,IAAI;IAC9B,gBAAgB,cAAc,EAAE,MAAM;IACtC,gBAAgB,IAAI,EAAE;IACtB,oBAAoB,IAAI,EAAE,QAAQ;IAClC,iBAAiB;IACjB,aAAa;IACb,YAAY,OAAO,EAAE;IACrB,gBAAgB,QAAQ,EAAE,IAAI;IAC9B,gBAAgB,cAAc,EAAE,SAAS;IACzC,gBAAgB,IAAI,EAAE;IACtB,oBAAoB,IAAI,EAAE,QAAQ;IAClC,iBAAiB;IACjB,aAAa;IACb,YAAY,MAAM,EAAE;IACpB,gBAAgB,QAAQ,EAAE,IAAI;IAC9B,gBAAgB,cAAc,EAAE,QAAQ;IACxC,gBAAgB,IAAI,EAAE;IACtB,oBAAoB,IAAI,EAAE,QAAQ;IAClC,iBAAiB;IACjB,aAAa;IACb,SAAS;IACT,KAAK;IACL,CAAC,CAAC;AACF,IAAO,IAAI,aAAa,GAAG;IAC3B,IAAI,cAAc,EAAE,eAAe;IACnC,IAAI,IAAI,EAAE;IACV,QAAQ,IAAI,EAAE,WAAW;IACzB,QAAQ,SAAS,EAAE,eAAe;IAClC,QAAQ,eAAe,EAAE;IACzB,YAAY,KAAK,EAAE;IACnB,gBAAgB,cAAc,EAAE,OAAO;IACvC,gBAAgB,IAAI,EAAE;IACtB,oBAAoB,IAAI,EAAE,WAAW;IACrC,oBAAoB,SAAS,EAAE,cAAc;IAC7C,iBAAiB;IACjB,aAAa;IACb,SAAS;IACT,KAAK;IACL,CAAC,CAAC;AACF,IAAO,IAAI,cAAc,GAAG;IAC5B,IAAI,cAAc,EAAE,gBAAgB;IACpC,IAAI,IAAI,EAAE;IACV,QAAQ,IAAI,EAAE,WAAW;IACzB,QAAQ,SAAS,EAAE,gBAAgB;IACnC,QAAQ,eAAe,EAAE;IACzB,YAAY,KAAK,EAAE;IACnB,gBAAgB,cAAc,EAAE,EAAE;IAClC,gBAAgB,IAAI,EAAE;IACtB,oBAAoB,IAAI,EAAE,UAAU;IACpC,oBAAoB,OAAO,EAAE;IAC7B,wBAAwB,IAAI,EAAE;IAC9B,4BAA4B,IAAI,EAAE,WAAW;IAC7C,4BAA4B,SAAS,EAAE,YAAY;IACnD,yBAAyB;IACzB,qBAAqB;IACrB,iBAAiB;IACjB,aAAa;IACb,YAAY,QAAQ,EAAE;IACtB,gBAAgB,QAAQ,EAAE,IAAI;IAC9B,gBAAgB,cAAc,EAAE,UAAU;IAC1C,gBAAgB,IAAI,EAAE;IACtB,oBAAoB,IAAI,EAAE,QAAQ;IAClC,iBAAiB;IACjB,aAAa;IACb,SAAS;IACT,KAAK;IACL,CAAC,CAAC;AACF,IAAO,IAAI,6BAA6B,GAAG;IAC3C,IAAI,cAAc,EAAE,+BAA+B;IACnD,IAAI,IAAI,EAAE;IACV,QAAQ,IAAI,EAAE,WAAW;IACzB,QAAQ,SAAS,EAAE,+BAA+B;IAClD,QAAQ,eAAe,EAAE;IACzB,YAAY,KAAK,EAAE;IACnB,gBAAgB,cAAc,EAAE,EAAE;IAClC,gBAAgB,IAAI,EAAE;IACtB,oBAAoB,IAAI,EAAE,UAAU;IACpC,oBAAoB,OAAO,EAAE;IAC7B,wBAAwB,IAAI,EAAE;IAC9B,4BAA4B,IAAI,EAAE,WAAW;IAC7C,4BAA4B,SAAS,EAAE,qCAAqC;IAC5E,yBAAyB;IACzB,qBAAqB;IACrB,iBAAiB;IACjB,aAAa;IACb,YAAY,QAAQ,EAAE;IACtB,gBAAgB,QAAQ,EAAE,IAAI;IAC9B,gBAAgB,cAAc,EAAE,UAAU;IAC1C,gBAAgB,IAAI,EAAE;IACtB,oBAAoB,IAAI,EAAE,QAAQ;IAClC,iBAAiB;IACjB,aAAa;IACb,SAAS;IACT,KAAK;IACL,CAAC,CAAC;AACF,IAAO,IAAI,cAAc,GAAG;IAC5B,IAAI,uCAAuC,EAAE,qCAAqC;IAClF,IAAI,kDAAkD,EAAE,2BAA2B;IACnF,CAAC,CAAC;;;;;;;;;;;;;;;;;;;;;;;;IChbF;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA,GAAG;;;;;;;;ICRH;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;AACA,IAAO,IAAI,cAAc,GAAG;IAC5B,IAAI,aAAa,EAAE,gBAAgB;IACnC,IAAI,MAAM,EAAE;IACZ,QAAQ,cAAc,EAAE,iBAAiB;IACzC,QAAQ,YAAY,EAAE,OAAO;IAC7B,QAAQ,IAAI,EAAE;IACd,YAAY,IAAI,EAAE,QAAQ;IAC1B,SAAS;IACT,KAAK;IACL,CAAC,CAAC;AACF,IAAO,IAAI,UAAU,GAAG;IACxB,IAAI,aAAa,EAAE,YAAY;IAC/B,IAAI,MAAM,EAAE;IACZ,QAAQ,QAAQ,EAAE,IAAI;IACtB,QAAQ,cAAc,EAAE,aAAa;IACrC,QAAQ,IAAI,EAAE;IACd,YAAY,IAAI,EAAE,QAAQ;IAC1B,SAAS;IACT,KAAK;IACL,CAAC,CAAC;AACF,IAAO,IAAI,QAAQ,GAAG;IACtB,IAAI,aAAa,EAAE,UAAU;IAC7B,IAAI,MAAM,EAAE;IACZ,QAAQ,QAAQ,EAAE,IAAI;IACtB,QAAQ,cAAc,EAAE,UAAU;IAClC,QAAQ,IAAI,EAAE;IACd,YAAY,IAAI,EAAE,QAAQ;IAC1B,SAAS;IACT,KAAK;IACL,CAAC,CAAC;AACF,IAAO,IAAI,IAAI,GAAG;IAClB,IAAI,aAAa,EAAE,MAAM;IACzB,IAAI,MAAM,EAAE;IACZ,QAAQ,QAAQ,EAAE,IAAI;IACtB,QAAQ,cAAc,EAAE,MAAM;IAC9B,QAAQ,WAAW,EAAE;IACrB,YAAY,SAAS,EAAE,EAAE;IACzB,YAAY,SAAS,EAAE,CAAC;IACxB,YAAY,OAAO,EAAE,+BAA+B;IACpD,SAAS;IACT,QAAQ,IAAI,EAAE;IACd,YAAY,IAAI,EAAE,QAAQ;IAC1B,SAAS;IACT,KAAK;IACL,CAAC,CAAC;AACF,IAAO,IAAI,YAAY,GAAG;IAC1B,IAAI,aAAa,EAAE,cAAc;IACjC,IAAI,MAAM,EAAE;IACZ,QAAQ,QAAQ,EAAE,IAAI;IACtB,QAAQ,cAAc,EAAE,UAAU;IAClC,QAAQ,IAAI,EAAE;IACd,YAAY,IAAI,EAAE,QAAQ;IAC1B,SAAS;IACT,KAAK;IACL,IAAI,YAAY,EAAE,IAAI;IACtB,CAAC,CAAC;AACF,IAAO,IAAI,iBAAiB,GAAG;IAC/B,IAAI,aAAa,EAAE,mBAAmB;IACtC,IAAI,MAAM,EAAE;IACZ,QAAQ,QAAQ,EAAE,IAAI;IACtB,QAAQ,cAAc,EAAE,mBAAmB;IAC3C,QAAQ,WAAW,EAAE;IACrB,YAAY,SAAS,EAAE,EAAE;IACzB,YAAY,SAAS,EAAE,CAAC;IACxB,SAAS;IACT,QAAQ,IAAI,EAAE;IACd,YAAY,IAAI,EAAE,QAAQ;IAC1B,SAAS;IACT,KAAK;IACL,CAAC,CAAC;AACF,IAAO,IAAI,cAAc,GAAG;IAC5B,IAAI,aAAa,EAAE,gBAAgB;IACnC,IAAI,MAAM,EAAE;IACZ,QAAQ,QAAQ,EAAE,IAAI;IACtB,QAAQ,cAAc,EAAE,gBAAgB;IACxC,QAAQ,IAAI,EAAE;IACd,YAAY,IAAI,EAAE,QAAQ;IAC1B,SAAS;IACT,KAAK;IACL,CAAC,CAAC;;ICxFF;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;AACA,IAIA;AACA,AAAG,QAAC,qBAAqB,kBAAkB,YAAY;IACvD;IACA;IACA;IACA;IACA,IAAI,SAAS,qBAAqB,CAAC,MAAM,EAAE;IAC3C,QAAQ,IAAI,CAAC,MAAM,GAAG,MAAM,CAAC;IAC7B,KAAK;IACL,IAAI,qBAAqB,CAAC,SAAS,CAAC,uBAAuB,GAAG,UAAU,oBAAoB,EAAEC,WAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE;IAC3H,QAAQ,OAAO,IAAI,CAAC,MAAM,CAAC,oBAAoB,CAAC;IAChD,YAAY,oBAAoB,EAAE,oBAAoB;IACtD,YAAY,QAAQ,EAAEA,WAAQ;IAC9B,YAAY,OAAO,EAAE,OAAO;IAC5B,SAAS,EAAE,oCAAoC,EAAE,QAAQ,CAAC,CAAC;IAC3D,KAAK,CAAC;IACN,IAAI,OAAO,qBAAqB,CAAC;IACjC,CAAC,EAAE,CAAC,CAAC;AACL,IACA;IACA,IAAI,UAAU,GAAG,IAAIC,iBAAiB,CAAC,OAAO,CAAC,CAAC;IAChD,IAAI,oCAAoC,GAAG;IAC3C,IAAI,UAAU,EAAE,MAAM;IACtB,IAAI,IAAI,EAAE,8EAA8E;IACxF,IAAI,aAAa,EAAE;IACnB,QAAQC,QAAmB;IAC3B,KAAK;IACL,IAAI,eAAe,EAAE;IACrB,QAAQC,UAAqB;IAC7B,KAAK;IACL,IAAI,gBAAgB,EAAE;IACtB,QAAQC,cAAyB;IACjC,KAAK;IACL,IAAI,WAAW,EAAE;IACjB,QAAQ,aAAa,EAAE,sBAAsB;IAC7C,QAAQ,MAAM,EAAE,QAAQ,CAAC,QAAQ,CAAC,EAAE,EAAEC,oBAA4B,CAAC,EAAE,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;IACxF,KAAK;IACL,IAAI,SAAS,EAAE;IACf,QAAQ,GAAG,EAAE;IACb,YAAY,UAAU,EAAE;IACxB,gBAAgB,cAAc,EAAE,gBAAgB;IAChD,gBAAgB,IAAI,EAAE;IACtB,oBAAoB,IAAI,EAAE,QAAQ;IAClC,iBAAiB;IACjB,aAAa;IACb,SAAS;IACT,QAAQ,OAAO,EAAE;IACjB,YAAY,UAAU,EAAEC,UAAkB;IAC1C,SAAS;IACT,KAAK;IACL,IAAI,UAAU,EAAE,UAAU;IAC1B,CAAC,CAAC;;IChEF;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA,GAAG;;;;;;;;;;;;;;;;;;;ICRH;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;AACA,IAIA;AACA,AAAG,QAAC,WAAW,kBAAkB,YAAY;IAC7C;IACA;IACA;IACA;IACA,IAAI,SAAS,WAAW,CAAC,MAAM,EAAE;IACjC,QAAQ,IAAI,CAAC,MAAM,GAAG,MAAM,CAAC;IAC7B,KAAK;IACL,IAAI,WAAW,CAAC,SAAS,CAAC,GAAG,GAAG,UAAUC,oBAAiB,EAAEC,OAAI,EAAE,OAAO,EAAE,QAAQ,EAAE;IACtF,QAAQ,OAAO,IAAI,CAAC,MAAM,CAAC,oBAAoB,CAAC;IAChD,YAAY,iBAAiB,EAAED,oBAAiB;IAChD,YAAY,IAAI,EAAEC,OAAI;IACtB,YAAY,OAAO,EAAE,OAAO;IAC5B,SAAS,EAAE,gBAAgB,EAAE,QAAQ,CAAC,CAAC;IACvC,KAAK,CAAC;IACN;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA,IAAI,WAAW,CAAC,SAAS,CAAC,MAAM,GAAG,UAAUD,oBAAiB,EAAEC,OAAI,EAAE,UAAU,EAAE,OAAO,EAAE;IAC3F,QAAQ,OAAO,IAAI,CAAC,WAAW,CAACD,oBAAiB,EAAEC,OAAI,EAAE,UAAU,EAAE,OAAO,CAAC;IAC7E,aAAa,IAAI,CAAC,UAAU,SAAS,EAAE,EAAE,OAAO,SAAS,CAAC,iBAAiB,EAAE,CAAC,EAAE,CAAC,CAAC;IAClF,KAAK,CAAC;IACN;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA,IAAI,WAAW,CAAC,SAAS,CAAC,YAAY,GAAG,UAAUD,oBAAiB,EAAEC,OAAI,EAAE,OAAO,EAAE;IACrF,QAAQ,OAAO,IAAI,CAAC,iBAAiB,CAACD,oBAAiB,EAAEC,OAAI,EAAE,OAAO,CAAC;IACvE,aAAa,IAAI,CAAC,UAAU,SAAS,EAAE,EAAE,OAAO,SAAS,CAAC,iBAAiB,EAAE,CAAC,EAAE,CAAC,CAAC;IAClF,KAAK,CAAC;IACN,IAAI,WAAW,CAAC,SAAS,CAAC,MAAM,GAAG,UAAUD,oBAAiB,EAAEC,OAAI,EAAE,0BAA0B,EAAE,OAAO,EAAE,QAAQ,EAAE;IACrH,QAAQ,OAAO,IAAI,CAAC,MAAM,CAAC,oBAAoB,CAAC;IAChD,YAAY,iBAAiB,EAAED,oBAAiB;IAChD,YAAY,IAAI,EAAEC,OAAI;IACtB,YAAY,0BAA0B,EAAE,0BAA0B;IAClE,YAAY,OAAO,EAAE,OAAO;IAC5B,SAAS,EAAE,mBAAmB,EAAE,QAAQ,CAAC,CAAC;IAC1C,KAAK,CAAC;IACN,IAAI,WAAW,CAAC,SAAS,CAAC,mBAAmB,GAAG,UAAUD,oBAAiB,EAAE,OAAO,EAAE,QAAQ,EAAE;IAChG,QAAQ,OAAO,IAAI,CAAC,MAAM,CAAC,oBAAoB,CAAC;IAChD,YAAY,iBAAiB,EAAEA,oBAAiB;IAChD,YAAY,OAAO,EAAE,OAAO;IAC5B,SAAS,EAAE,gCAAgC,EAAE,QAAQ,CAAC,CAAC;IACvD,KAAK,CAAC;IACN,IAAI,WAAW,CAAC,SAAS,CAAC,IAAI,GAAG,UAAU,OAAO,EAAE,QAAQ,EAAE;IAC9D,QAAQ,OAAO,IAAI,CAAC,MAAM,CAAC,oBAAoB,CAAC;IAChD,YAAY,OAAO,EAAE,OAAO;IAC5B,SAAS,EAAE,iBAAiB,EAAE,QAAQ,CAAC,CAAC;IACxC,KAAK,CAAC;IACN,IAAI,WAAW,CAAC,SAAS,CAAC,qBAAqB,GAAG,UAAUA,oBAAiB,EAAEC,OAAI,EAAE,OAAO,EAAE,QAAQ,EAAE;IACxG,QAAQ,OAAO,IAAI,CAAC,MAAM,CAAC,oBAAoB,CAAC;IAChD,YAAY,iBAAiB,EAAED,oBAAiB;IAChD,YAAY,IAAI,EAAEC,OAAI;IACtB,YAAY,OAAO,EAAE,OAAO;IAC5B,SAAS,EAAE,kCAAkC,EAAE,QAAQ,CAAC,CAAC;IACzD,KAAK,CAAC;IACN;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA,IAAI,WAAW,CAAC,SAAS,CAAC,WAAW,GAAG,UAAUD,oBAAiB,EAAEC,OAAI,EAAE,UAAU,EAAE,OAAO,EAAE;IAChG,QAAQ,OAAO,IAAI,CAAC,MAAM,CAAC,cAAc,CAAC;IAC1C,YAAY,iBAAiB,EAAED,oBAAiB;IAChD,YAAY,IAAI,EAAEC,OAAI;IACtB,YAAY,UAAU,EAAE,UAAU;IAClC,YAAY,OAAO,EAAE,OAAO;IAC5B,SAAS,EAAE,wBAAwB,EAAE,OAAO,CAAC,CAAC;IAC9C,KAAK,CAAC;IACN;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA,IAAI,WAAW,CAAC,SAAS,CAAC,iBAAiB,GAAG,UAAUD,oBAAiB,EAAEC,OAAI,EAAE,OAAO,EAAE;IAC1F,QAAQ,OAAO,IAAI,CAAC,MAAM,CAAC,cAAc,CAAC;IAC1C,YAAY,iBAAiB,EAAED,oBAAiB;IAChD,YAAY,IAAI,EAAEC,OAAI;IACtB,YAAY,OAAO,EAAE,OAAO;IAC5B,SAAS,EAAE,8BAA8B,EAAE,OAAO,CAAC,CAAC;IACpD,KAAK,CAAC;IACN,IAAI,WAAW,CAAC,SAAS,CAAC,uBAAuB,GAAG,UAAUC,eAAY,EAAE,OAAO,EAAE,QAAQ,EAAE;IAC/F,QAAQ,OAAO,IAAI,CAAC,MAAM,CAAC,oBAAoB,CAAC;IAChD,YAAY,YAAY,EAAEA,eAAY;IACtC,YAAY,OAAO,EAAE,OAAO;IAC5B,SAAS,EAAE,oCAAoC,EAAE,QAAQ,CAAC,CAAC;IAC3D,KAAK,CAAC;IACN,IAAI,WAAW,CAAC,SAAS,CAAC,QAAQ,GAAG,UAAUA,eAAY,EAAE,OAAO,EAAE,QAAQ,EAAE;IAChF,QAAQ,OAAO,IAAI,CAAC,MAAM,CAAC,oBAAoB,CAAC;IAChD,YAAY,YAAY,EAAEA,eAAY;IACtC,YAAY,OAAO,EAAE,OAAO;IAC5B,SAAS,EAAE,qBAAqB,EAAE,QAAQ,CAAC,CAAC;IAC5C,KAAK,CAAC;IACN,IAAI,OAAO,WAAW,CAAC;IACvB,CAAC,EAAE,CAAC,CAAC;AACL,IACA;IACA,IAAIC,YAAU,GAAG,IAAIT,iBAAiB,CAACU,SAAO,CAAC,CAAC;IAChD,IAAI,gBAAgB,GAAG;IACvB,IAAI,UAAU,EAAE,KAAK;IACrB,IAAI,IAAI,EAAE,oHAAoH;IAC9H,IAAI,aAAa,EAAE;IACnB,QAAQC,cAAyB;IACjC,QAAQC,iBAA4B;IACpC,QAAQC,IAAe;IACvB,KAAK;IACL,IAAI,eAAe,EAAE;IACrB,QAAQX,UAAqB;IAC7B,KAAK;IACL,IAAI,gBAAgB,EAAE;IACtB,QAAQC,cAAyB;IACjC,KAAK;IACL,IAAI,SAAS,EAAE;IACf,QAAQ,GAAG,EAAE;IACb,YAAY,UAAU,EAAEW,UAAkB;IAC1C,SAAS;IACT,QAAQ,OAAO,EAAE;IACjB,YAAY,UAAU,EAAEC,aAAqB;IAC7C,SAAS;IACT,KAAK;IACL,IAAI,UAAU,EAAEN,YAAU;IAC1B,CAAC,CAAC;IACF,IAAI,mBAAmB,GAAG;IAC1B,IAAI,UAAU,EAAE,OAAO;IACvB,IAAI,IAAI,EAAE,oHAAoH;IAC9H,IAAI,aAAa,EAAE;IACnB,QAAQE,cAAyB;IACjC,QAAQC,iBAA4B;IACpC,QAAQC,IAAe;IACvB,KAAK;IACL,IAAI,eAAe,EAAE;IACrB,QAAQX,UAAqB;IAC7B,KAAK;IACL,IAAI,gBAAgB,EAAE;IACtB,QAAQC,cAAyB;IACjC,KAAK;IACL,IAAI,WAAW,EAAE;IACjB,QAAQ,aAAa,EAAE,4BAA4B;IACnD,QAAQ,MAAM,EAAE,QAAQ,CAAC,QAAQ,CAAC,EAAE,EAAEa,0BAAkC,CAAC,EAAE,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;IAC9F,KAAK;IACL,IAAI,SAAS,EAAE;IACf,QAAQ,GAAG,EAAE;IACb,YAAY,UAAU,EAAEF,UAAkB;IAC1C,SAAS;IACT,QAAQ,OAAO,EAAE;IACjB,YAAY,UAAU,EAAEC,aAAqB;IAC7C,SAAS;IACT,KAAK;IACL,IAAI,UAAU,EAAEN,YAAU;IAC1B,CAAC,CAAC;IACF,IAAI,gCAAgC,GAAG;IACvC,IAAI,UAAU,EAAE,KAAK;IACrB,IAAI,IAAI,EAAE,6GAA6G;IACvH,IAAI,aAAa,EAAE;IACnB,QAAQE,cAAyB;IACjC,QAAQC,iBAA4B;IACpC,KAAK;IACL,IAAI,eAAe,EAAE;IACrB,QAAQV,UAAqB;IAC7B,KAAK;IACL,IAAI,gBAAgB,EAAE;IACtB,QAAQC,cAAyB;IACjC,KAAK;IACL,IAAI,SAAS,EAAE;IACf,QAAQ,GAAG,EAAE;IACb,YAAY,UAAU,EAAEc,cAAsB;IAC9C,SAAS;IACT,QAAQ,OAAO,EAAE;IACjB,YAAY,UAAU,EAAEF,aAAqB;IAC7C,SAAS;IACT,KAAK;IACL,IAAI,UAAU,EAAEN,YAAU;IAC1B,CAAC,CAAC;IACF,IAAI,iBAAiB,GAAG;IACxB,IAAI,UAAU,EAAE,KAAK;IACrB,IAAI,IAAI,EAAE,0EAA0E;IACpF,IAAI,aAAa,EAAE;IACnB,QAAQE,cAAyB;IACjC,KAAK;IACL,IAAI,eAAe,EAAE;IACrB,QAAQT,UAAqB;IAC7B,KAAK;IACL,IAAI,gBAAgB,EAAE;IACtB,QAAQC,cAAyB;IACjC,KAAK;IACL,IAAI,SAAS,EAAE;IACf,QAAQ,GAAG,EAAE;IACb,YAAY,UAAU,EAAEc,cAAsB;IAC9C,SAAS;IACT,QAAQ,OAAO,EAAE;IACjB,YAAY,UAAU,EAAEF,aAAqB;IAC7C,SAAS;IACT,KAAK;IACL,IAAI,UAAU,EAAEN,YAAU;IAC1B,CAAC,CAAC;IACF,IAAI,kCAAkC,GAAG;IACzC,IAAI,UAAU,EAAE,MAAM;IACtB,IAAI,IAAI,EAAE,0IAA0I;IACpJ,IAAI,aAAa,EAAE;IACnB,QAAQE,cAAyB;IACjC,QAAQC,iBAA4B;IACpC,QAAQC,IAAe;IACvB,KAAK;IACL,IAAI,eAAe,EAAE;IACrB,QAAQX,UAAqB;IAC7B,KAAK;IACL,IAAI,gBAAgB,EAAE;IACtB,QAAQC,cAAyB;IACjC,KAAK;IACL,IAAI,SAAS,EAAE;IACf,QAAQ,GAAG,EAAE;IACb,YAAY,UAAU,EAAEe,+BAAuC;IAC/D,SAAS;IACT,QAAQ,OAAO,EAAE;IACjB,YAAY,UAAU,EAAEH,aAAqB;IAC7C,SAAS;IACT,KAAK;IACL,IAAI,UAAU,EAAEN,YAAU;IAC1B,CAAC,CAAC;IACF,IAAI,wBAAwB,GAAG;IAC/B,IAAI,UAAU,EAAE,KAAK;IACrB,IAAI,IAAI,EAAE,oHAAoH;IAC9H,IAAI,aAAa,EAAE;IACnB,QAAQE,cAAyB;IACjC,QAAQC,iBAA4B;IACpC,QAAQC,IAAe;IACvB,KAAK;IACL,IAAI,eAAe,EAAE;IACrB,QAAQX,UAAqB;IAC7B,KAAK;IACL,IAAI,gBAAgB,EAAE;IACtB,QAAQC,cAAyB;IACjC,KAAK;IACL,IAAI,WAAW,EAAE;IACjB,QAAQ,aAAa,EAAE,YAAY;IACnC,QAAQ,MAAM,EAAE,QAAQ,CAAC,QAAQ,CAAC,EAAE,EAAEW,UAAkB,CAAC,EAAE,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;IAC9E,KAAK;IACL,IAAI,SAAS,EAAE;IACf,QAAQ,GAAG,EAAE;IACb,YAAY,UAAU,EAAEA,UAAkB;IAC1C,SAAS;IACT,QAAQ,GAAG,EAAE;IACb,YAAY,UAAU,EAAEA,UAAkB;IAC1C,SAAS;IACT,QAAQ,OAAO,EAAE;IACjB,YAAY,UAAU,EAAEC,aAAqB;IAC7C,SAAS;IACT,KAAK;IACL,IAAI,UAAU,EAAEN,YAAU;IAC1B,CAAC,CAAC;IACF,IAAI,8BAA8B,GAAG;IACrC,IAAI,UAAU,EAAE,QAAQ;IACxB,IAAI,IAAI,EAAE,oHAAoH;IAC9H,IAAI,aAAa,EAAE;IACnB,QAAQE,cAAyB;IACjC,QAAQC,iBAA4B;IACpC,QAAQC,IAAe;IACvB,KAAK;IACL,IAAI,eAAe,EAAE;IACrB,QAAQX,UAAqB;IAC7B,KAAK;IACL,IAAI,gBAAgB,EAAE;IACtB,QAAQC,cAAyB;IACjC,KAAK;IACL,IAAI,SAAS,EAAE;IACf,QAAQ,GAAG,EAAE,EAAE;IACf,QAAQ,GAAG,EAAE,EAAE;IACf,QAAQ,GAAG,EAAE,EAAE;IACf,QAAQ,OAAO,EAAE;IACjB,YAAY,UAAU,EAAEY,aAAqB;IAC7C,SAAS;IACT,KAAK;IACL,IAAI,UAAU,EAAEN,YAAU;IAC1B,CAAC,CAAC;IACF,IAAI,oCAAoC,GAAG;IAC3C,IAAI,UAAU,EAAE,KAAK;IACrB,IAAI,OAAO,EAAE,8BAA8B;IAC3C,IAAI,IAAI,EAAE,YAAY;IACtB,IAAI,aAAa,EAAE;IACnB,QAAQU,YAAuB;IAC/B,KAAK;IACL,IAAI,gBAAgB,EAAE;IACtB,QAAQhB,cAAyB;IACjC,KAAK;IACL,IAAI,SAAS,EAAE;IACf,QAAQ,GAAG,EAAE;IACb,YAAY,UAAU,EAAEc,cAAsB;IAC9C,SAAS;IACT,QAAQ,OAAO,EAAE;IACjB,YAAY,UAAU,EAAEF,aAAqB;IAC7C,SAAS;IACT,KAAK;IACL,IAAI,UAAU,EAAEN,YAAU;IAC1B,CAAC,CAAC;IACF,IAAI,qBAAqB,GAAG;IAC5B,IAAI,UAAU,EAAE,KAAK;IACrB,IAAI,OAAO,EAAE,8BAA8B;IAC3C,IAAI,IAAI,EAAE,YAAY;IACtB,IAAI,aAAa,EAAE;IACnB,QAAQU,YAAuB;IAC/B,KAAK;IACL,IAAI,gBAAgB,EAAE;IACtB,QAAQhB,cAAyB;IACjC,KAAK;IACL,IAAI,SAAS,EAAE;IACf,QAAQ,GAAG,EAAE;IACb,YAAY,UAAU,EAAEc,cAAsB;IAC9C,SAAS;IACT,QAAQ,OAAO,EAAE;IACjB,YAAY,UAAU,EAAEF,aAAqB;IAC7C,SAAS;IACT,KAAK;IACL,IAAI,UAAU,EAAEN,YAAU;IAC1B,CAAC,CAAC;;ICxVF;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA,GAAG;;;;;;;;;;ICRH;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;AACA,IAGA;AACA,AAAG,QAAC,UAAU,kBAAkB,YAAY;IAC5C;IACA;IACA;IACA;IACA,IAAI,SAAS,UAAU,CAAC,MAAM,EAAE;IAChC,QAAQ,IAAI,CAAC,MAAM,GAAG,MAAM,CAAC;IAC7B,KAAK;IACL,IAAI,UAAU,CAAC,SAAS,CAAC,IAAI,GAAG,UAAU,OAAO,EAAE,QAAQ,EAAE;IAC7D,QAAQ,OAAO,IAAI,CAAC,MAAM,CAAC,oBAAoB,CAAC;IAChD,YAAY,OAAO,EAAE,OAAO;IAC5B,SAAS,EAAEW,mBAAiB,EAAE,QAAQ,CAAC,CAAC;IACxC,KAAK,CAAC;IACN,IAAI,UAAU,CAAC,SAAS,CAAC,QAAQ,GAAG,UAAUZ,eAAY,EAAE,OAAO,EAAE,QAAQ,EAAE;IAC/E,QAAQ,OAAO,IAAI,CAAC,MAAM,CAAC,oBAAoB,CAAC;IAChD,YAAY,YAAY,EAAEA,eAAY;IACtC,YAAY,OAAO,EAAE,OAAO;IAC5B,SAAS,EAAEa,uBAAqB,EAAE,QAAQ,CAAC,CAAC;IAC5C,KAAK,CAAC;IACN,IAAI,OAAO,UAAU,CAAC;IACtB,CAAC,EAAE,CAAC,CAAC;AACL,IACA;IACA,IAAIZ,YAAU,GAAG,IAAIT,iBAAiB,CAACU,SAAO,CAAC,CAAC;IAChD,IAAIU,mBAAiB,GAAG;IACxB,IAAI,UAAU,EAAE,KAAK;IACrB,IAAI,IAAI,EAAE,0CAA0C;IACpD,IAAI,eAAe,EAAE;IACrB,QAAQlB,UAAqB;IAC7B,KAAK;IACL,IAAI,gBAAgB,EAAE;IACtB,QAAQC,cAAyB;IACjC,KAAK;IACL,IAAI,SAAS,EAAE;IACf,QAAQ,GAAG,EAAE;IACb,YAAY,UAAU,EAAEmB,6BAAqC;IAC7D,SAAS;IACT,QAAQ,OAAO,EAAE;IACjB,YAAY,UAAU,EAAEjB,UAAkB;IAC1C,SAAS;IACT,KAAK;IACL,IAAI,UAAU,EAAEI,YAAU;IAC1B,CAAC,CAAC;IACF,IAAIY,uBAAqB,GAAG;IAC5B,IAAI,UAAU,EAAE,KAAK;IACrB,IAAI,OAAO,EAAE,8BAA8B;IAC3C,IAAI,IAAI,EAAE,YAAY;IACtB,IAAI,aAAa,EAAE;IACnB,QAAQF,YAAuB;IAC/B,KAAK;IACL,IAAI,gBAAgB,EAAE;IACtB,QAAQhB,cAAyB;IACjC,KAAK;IACL,IAAI,SAAS,EAAE;IACf,QAAQ,GAAG,EAAE;IACb,YAAY,UAAU,EAAEmB,6BAAqC;IAC7D,SAAS;IACT,QAAQ,OAAO,EAAE;IACjB,YAAY,UAAU,EAAEjB,UAAkB;IAC1C,SAAS;IACT,KAAK;IACL,IAAI,UAAU,EAAEI,YAAU;IAC1B,CAAC,CAAC;;IC3EF;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA,GAAG;;ICRH;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;AACA,IAEA,IAAI,WAAW,GAAG,sBAAsB,CAAC;IACzC,IAAI,cAAc,GAAG,OAAO,CAAC;AAC7B,AAAG,QAAC,gCAAgC,kBAAkB,UAAU,MAAM,EAAE;IACxE,IAAI,SAAS,CAAC,gCAAgC,EAAE,MAAM,CAAC,CAAC;IACxD;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA,IAAI,SAAS,gCAAgC,CAAC,WAAW,EAAE,cAAc,EAAE,OAAO,EAAE;IACpF,QAAQ,IAAI,KAAK,GAAG,IAAI,CAAC;IACzB,QAAQ,IAAI,WAAW,IAAI,SAAS,EAAE;IACtC,YAAY,MAAM,IAAI,KAAK,CAAC,iCAAiC,CAAC,CAAC;IAC/D,SAAS;IACT,QAAQ,IAAI,cAAc,IAAI,SAAS,EAAE;IACzC,YAAY,MAAM,IAAI,KAAK,CAAC,oCAAoC,CAAC,CAAC;IAClE,SAAS;IACT,QAAQ,IAAI,CAAC,OAAO,EAAE;IACtB,YAAY,OAAO,GAAG,EAAE,CAAC;IACzB,SAAS;IACT,QAAQ,IAAI,CAAC,OAAO,CAAC,SAAS,EAAE;IAChC,YAAY,IAAI,gBAAgB,GAAGc,oCAAoC,EAAE,CAAC;IAC1E,YAAY,OAAO,CAAC,SAAS,GAAG,WAAW,GAAG,GAAG,GAAG,cAAc,GAAG,GAAG,GAAG,gBAAgB,CAAC;IAC5F,SAAS;IACT,QAAQ,KAAK,GAAG,MAAM,CAAC,IAAI,CAAC,IAAI,EAAE,WAAW,EAAE,OAAO,CAAC,IAAI,IAAI,CAAC;IAChE,QAAQ,KAAK,CAAC,UAAU,GAAG,oBAAoB,CAAC;IAChD,QAAQ,KAAK,CAAC,cAAc,GAAG,OAAO,CAAC;IACvC,QAAQ,KAAK,CAAC,gCAAgC,GAAG,EAAE,CAAC;IACpD,QAAQ,KAAK,CAAC,OAAO,GAAG,OAAO,CAAC,OAAO,IAAI,KAAK,CAAC,OAAO,IAAI,8BAA8B,CAAC;IAC3F,QAAQ,KAAK,CAAC,kBAAkB,GAAG,iCAAiC,CAAC;IACrE,QAAQ,KAAK,CAAC,WAAW,GAAG,WAAW,CAAC;IACxC,QAAQ,KAAK,CAAC,cAAc,GAAG,cAAc,CAAC;IAC9C,QAAQ,IAAI,OAAO,CAAC,cAAc,KAAK,IAAI,IAAI,OAAO,CAAC,cAAc,KAAK,SAAS,EAAE;IACrF,YAAY,KAAK,CAAC,cAAc,GAAG,OAAO,CAAC,cAAc,CAAC;IAC1D,SAAS;IACT,QAAQ,IAAI,OAAO,CAAC,gCAAgC,KAAK,IAAI,IAAI,OAAO,CAAC,gCAAgC,KAAK,SAAS,EAAE;IACzH,YAAY,KAAK,CAAC,gCAAgC,GAAG,OAAO,CAAC,gCAAgC,CAAC;IAC9F,SAAS;IACT,QAAQ,OAAO,KAAK,CAAC;IACrB,KAAK;IACL,IAAI,OAAO,gCAAgC,CAAC;IAC5C,CAAC,CAACC,8BAA8B,CAAC,CAAC;;IC1DlC;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;AACA,AAKG,QAAC,yBAAyB,kBAAkB,UAAU,MAAM,EAAE;IACjE,IAAI,SAAS,CAAC,yBAAyB,EAAE,MAAM,CAAC,CAAC;IACjD;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA,IAAI,SAAS,yBAAyB,CAAC,WAAW,EAAE,cAAc,EAAE,OAAO,EAAE;IAC7E,QAAQ,IAAI,KAAK,GAAG,MAAM,CAAC,IAAI,CAAC,IAAI,EAAE,WAAW,EAAE,cAAc,EAAE,OAAO,CAAC,IAAI,IAAI,CAAC;IACpF,QAAQ,KAAK,CAAC,qBAAqB,GAAG,IAAIC,qBAAgC,CAAC,KAAK,CAAC,CAAC;IAClF,QAAQ,KAAK,CAAC,WAAW,GAAG,IAAIC,WAAsB,CAAC,KAAK,CAAC,CAAC;IAC9D,QAAQ,KAAK,CAAC,UAAU,GAAG,IAAIC,UAAqB,CAAC,KAAK,CAAC,CAAC;IAC5D,QAAQ,OAAO,KAAK,CAAC;IACrB,KAAK;IACL,IAAI,OAAO,yBAAyB,CAAC;IACrC,CAAC,CAAC,gCAAgC,CAAC,CAAC;;;;;;;;;;;;;;;;;;"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
!function(e,r){"object"==typeof exports&&"undefined"!=typeof module?r(exports,require("@azure/ms-rest-azure-js"),require("@azure/ms-rest-js")):"function"==typeof define&&define.amd?define(["exports","@azure/ms-rest-azure-js","@azure/ms-rest-js"],r):r((e.Azure=e.Azure||{},e.Azure.ArmDevspaces={}),e.msRestAzure,e.msRest)}(this,function(e,i,r){"use strict";var a=function(e,r){return(a=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,r){e.__proto__=r}||function(e,r){for(var t in r)r.hasOwnProperty(t)&&(e[t]=r[t])})(e,r)};function t(e,r){function t(){this.constructor=e}a(e,r),e.prototype=null===r?Object.create(r):(t.prototype=r.prototype,new t)}var o=function(){return(o=Object.assign||function(e){for(var r,t=1,a=arguments.length;t<a;t++)for(var o in r=arguments[t])Object.prototype.hasOwnProperty.call(r,o)&&(e[o]=r[o]);return e}).apply(this,arguments)},n=Object.freeze({}),s=i.CloudErrorMapper,p=i.BaseResourceMapper,l={serializedName:"ContainerHostMapping",type:{name:"Composite",className:"ContainerHostMapping",modelProperties:{containerHostResourceId:{serializedName:"containerHostResourceId",type:{name:"String"}},mappedControllerResourceId:{readOnly:!0,serializedName:"mappedControllerResourceId",type:{name:"String"}}}}},c={serializedName:"Sku",type:{name:"Composite",className:"Sku",modelProperties:{name:{required:!0,isConstant:!0,serializedName:"name",defaultValue:"S1",type:{name:"String"}},tier:{serializedName:"tier",type:{name:"String"}}}}},m={serializedName:"Resource",type:{name:"Composite",className:"Resource",modelProperties:{id:{readOnly:!0,serializedName:"id",type:{name:"String"}},name:{readOnly:!0,serializedName:"name",type:{name:"String"}},type:{readOnly:!0,serializedName:"type",type:{name:"String"}}}}},u={serializedName:"TrackedResource",type:{name:"Composite",className:"TrackedResource",modelProperties:o(o({},m.type.modelProperties),{tags:{serializedName:"tags",type:{name:"Dictionary",value:{type:{name:"String"}}}},location:{serializedName:"location",type:{name:"String"}}})}},d={serializedName:"Controller",type:{name:"Composite",className:"Controller",modelProperties:o(o({},u.type.modelProperties),{provisioningState:{readOnly:!0,serializedName:"properties.provisioningState",type:{name:"String"}},hostSuffix:{required:!0,serializedName:"properties.hostSuffix",type:{name:"String"}},dataPlaneFqdn:{readOnly:!0,serializedName:"properties.dataPlaneFqdn",type:{name:"String"}},targetContainerHostResourceId:{required:!0,serializedName:"properties.targetContainerHostResourceId",type:{name:"String"}},targetContainerHostCredentialsBase64:{required:!0,serializedName:"properties.targetContainerHostCredentialsBase64",type:{name:"String"}},sku:{required:!0,serializedName:"sku",defaultValue:{},type:{name:"Composite",className:"Sku"}}})}},y={serializedName:"ControllerUpdateParameters",type:{name:"Composite",className:"ControllerUpdateParameters",modelProperties:{tags:{serializedName:"tags",type:{name:"Dictionary",value:{type:{name:"String"}}}}}}},h={serializedName:"OrchestratorSpecificConnectionDetails",type:{name:"Composite",polymorphicDiscriminator:{serializedName:"instanceType",clientName:"instanceType"},uberParent:"OrchestratorSpecificConnectionDetails",className:"OrchestratorSpecificConnectionDetails",modelProperties:{instanceType:{required:!0,serializedName:"instanceType",type:{name:"String"}}}}},g={serializedName:"ControllerConnectionDetails",type:{name:"Composite",className:"ControllerConnectionDetails",modelProperties:{authKey:{readOnly:!0,serializedName:"authKey",type:{name:"String"}},workspaceStorageAccountName:{readOnly:!0,serializedName:"workspaceStorageAccountName",type:{name:"String"}},workspaceStorageSasToken:{readOnly:!0,serializedName:"workspaceStorageSasToken",type:{name:"String"}},orchestratorSpecificConnectionDetails:{serializedName:"orchestratorSpecificConnectionDetails",type:{name:"Composite",className:"OrchestratorSpecificConnectionDetails"}}}}},N={serializedName:"ControllerConnectionDetailsList",type:{name:"Composite",className:"ControllerConnectionDetailsList",modelProperties:{connectionDetailsList:{serializedName:"connectionDetailsList",type:{name:"Sequence",element:{type:{name:"Composite",className:"ControllerConnectionDetails"}}}}}}},C={serializedName:"ResourceProviderOperationDisplay",type:{name:"Composite",className:"ResourceProviderOperationDisplay",modelProperties:{provider:{serializedName:"provider",type:{name:"String"}},resource:{serializedName:"resource",type:{name:"String"}},operation:{serializedName:"operation",type:{name:"String"}},description:{serializedName:"description",type:{name:"String"}}}}},z={serializedName:"ResourceProviderOperationDefinition",type:{name:"Composite",className:"ResourceProviderOperationDefinition",modelProperties:{name:{serializedName:"name",type:{name:"String"}},display:{serializedName:"display",type:{name:"Composite",className:"ResourceProviderOperationDisplay"}}}}},f={serializedName:"Kubernetes",type:{name:"Composite",polymorphicDiscriminator:h.type.polymorphicDiscriminator,uberParent:"OrchestratorSpecificConnectionDetails",className:"KubernetesConnectionDetails",modelProperties:o(o({},h.type.modelProperties),{kubeConfig:{serializedName:"kubeConfig",type:{name:"String"}}})}},P={serializedName:"ErrorDetails",type:{name:"Composite",className:"ErrorDetails",modelProperties:{code:{readOnly:!0,serializedName:"code",type:{name:"String"}},message:{readOnly:!0,serializedName:"message",type:{name:"String"}},target:{readOnly:!0,serializedName:"target",type:{name:"String"}}}}},S={serializedName:"ErrorResponse",type:{name:"Composite",className:"ErrorResponse",modelProperties:{error:{serializedName:"error",type:{name:"Composite",className:"ErrorDetails"}}}}},b={serializedName:"ControllerList",type:{name:"Composite",className:"ControllerList",modelProperties:{value:{serializedName:"",type:{name:"Sequence",element:{type:{name:"Composite",className:"Controller"}}}},nextLink:{readOnly:!0,serializedName:"nextLink",type:{name:"String"}}}}},M={serializedName:"ResourceProviderOperationList",type:{name:"Composite",className:"ResourceProviderOperationList",modelProperties:{value:{serializedName:"",type:{name:"Sequence",element:{type:{name:"Composite",className:"ResourceProviderOperationDefinition"}}}},nextLink:{readOnly:!0,serializedName:"nextLink",type:{name:"String"}}}}},O={OrchestratorSpecificConnectionDetails:h,"OrchestratorSpecificConnectionDetails.Kubernetes":f},D=Object.freeze({CloudError:s,BaseResource:p,ContainerHostMapping:l,Sku:c,Resource:m,TrackedResource:u,Controller:d,ControllerUpdateParameters:y,OrchestratorSpecificConnectionDetails:h,ControllerConnectionDetails:g,ControllerConnectionDetailsList:N,ResourceProviderOperationDisplay:C,ResourceProviderOperationDefinition:z,KubernetesConnectionDetails:f,ErrorDetails:P,ErrorResponse:S,ControllerList:b,ResourceProviderOperationList:M,discriminators:O}),R=Object.freeze({discriminators:O,ContainerHostMapping:l,CloudError:s}),v={parameterPath:"acceptLanguage",mapper:{serializedName:"accept-language",defaultValue:"en-US",type:{name:"String"}}},q={parameterPath:"apiVersion",mapper:{required:!0,serializedName:"api-version",type:{name:"String"}}},L={parameterPath:"name",mapper:{required:!0,serializedName:"name",constraints:{MaxLength:31,MinLength:3,Pattern:/^[a-zA-Z0-9](-?[a-zA-Z0-9])*$/},type:{name:"String"}}},k={parameterPath:"nextPageLink",mapper:{required:!0,serializedName:"nextLink",type:{name:"String"}},skipEncoding:!0},G={parameterPath:"resourceGroupName",mapper:{required:!0,serializedName:"resourceGroupName",constraints:{MaxLength:90,MinLength:1},type:{name:"String"}}},T={parameterPath:"subscriptionId",mapper:{required:!0,serializedName:"subscriptionId",type:{name:"String"}}},E=(x.prototype.getContainerHostMapping=function(e,r,t,a){return this.client.sendOperationRequest({containerHostMapping:e,location:r,options:t},w,a)},x);function x(e){this.client=e}var R=new r.Serializer(R),w={httpMethod:"POST",path:"providers/Microsoft.DevSpaces/locations/{location}/checkContainerHostMapping",urlParameters:[{parameterPath:"location",mapper:{required:!0,serializedName:"location",type:{name:"String"}}}],queryParameters:[q],headerParameters:[v],requestBody:{parameterPath:"containerHostMapping",mapper:o(o({},l),{required:!0})},responses:{200:{bodyMapper:{serializedName:"parsedResponse",type:{name:"Object"}}},default:{bodyMapper:s}},serializer:R},f=Object.freeze({discriminators:O,Controller:d,TrackedResource:u,Resource:m,BaseResource:p,Sku:c,ErrorResponse:S,ErrorDetails:P,ControllerUpdateParameters:y,ControllerList:b,ControllerConnectionDetailsList:N,ControllerConnectionDetails:g,OrchestratorSpecificConnectionDetails:h,KubernetesConnectionDetails:f}),U=(j.prototype.get=function(e,r,t,a){return this.client.sendOperationRequest({resourceGroupName:e,name:r,options:t},H,a)},j.prototype.create=function(e,r,t,a){return this.beginCreate(e,r,t,a).then(function(e){return e.pollUntilFinished()})},j.prototype.deleteMethod=function(e,r,t){return this.beginDeleteMethod(e,r,t).then(function(e){return e.pollUntilFinished()})},j.prototype.update=function(e,r,t,a,o){return this.client.sendOperationRequest({resourceGroupName:e,name:r,controllerUpdateParameters:t,options:a},I,o)},j.prototype.listByResourceGroup=function(e,r,t){return this.client.sendOperationRequest({resourceGroupName:e,options:r},A,t)},j.prototype.list=function(e,r){return this.client.sendOperationRequest({options:e},B,r)},j.prototype.listConnectionDetails=function(e,r,t,a){return this.client.sendOperationRequest({resourceGroupName:e,name:r,options:t},_,a)},j.prototype.beginCreate=function(e,r,t,a){return this.client.sendLRORequest({resourceGroupName:e,name:r,controller:t,options:a},K,a)},j.prototype.beginDeleteMethod=function(e,r,t){return this.client.sendLRORequest({resourceGroupName:e,name:r,options:t},V,t)},j.prototype.listByResourceGroupNext=function(e,r,t){return this.client.sendOperationRequest({nextPageLink:e,options:r},F,t)},j.prototype.listNext=function(e,r,t){return this.client.sendOperationRequest({nextPageLink:e,options:r},Z,t)},j);function j(e){this.client=e}var f=new r.Serializer(f),H={httpMethod:"GET",path:"subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DevSpaces/controllers/{name}",urlParameters:[T,G,L],queryParameters:[q],headerParameters:[v],responses:{200:{bodyMapper:d},default:{bodyMapper:S}},serializer:f},I={httpMethod:"PATCH",path:"subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DevSpaces/controllers/{name}",urlParameters:[T,G,L],queryParameters:[q],headerParameters:[v],requestBody:{parameterPath:"controllerUpdateParameters",mapper:o(o({},y),{required:!0})},responses:{200:{bodyMapper:d},default:{bodyMapper:S}},serializer:f},A={httpMethod:"GET",path:"subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DevSpaces/controllers",urlParameters:[T,G],queryParameters:[q],headerParameters:[v],responses:{200:{bodyMapper:b},default:{bodyMapper:S}},serializer:f},B={httpMethod:"GET",path:"subscriptions/{subscriptionId}/providers/Microsoft.DevSpaces/controllers",urlParameters:[T],queryParameters:[q],headerParameters:[v],responses:{200:{bodyMapper:b},default:{bodyMapper:S}},serializer:f},_={httpMethod:"POST",path:"subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DevSpaces/controllers/{name}/listConnectionDetails",urlParameters:[T,G,L],queryParameters:[q],headerParameters:[v],responses:{200:{bodyMapper:N},default:{bodyMapper:S}},serializer:f},K={httpMethod:"PUT",path:"subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DevSpaces/controllers/{name}",urlParameters:[T,G,L],queryParameters:[q],headerParameters:[v],requestBody:{parameterPath:"controller",mapper:o(o({},d),{required:!0})},responses:{200:{bodyMapper:d},201:{bodyMapper:d},default:{bodyMapper:S}},serializer:f},V={httpMethod:"DELETE",path:"subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DevSpaces/controllers/{name}",urlParameters:[T,G,L],queryParameters:[q],headerParameters:[v],responses:{200:{},202:{},204:{},default:{bodyMapper:S}},serializer:f},F={httpMethod:"GET",baseUrl:"https://management.azure.com",path:"{nextLink}",urlParameters:[k],headerParameters:[v],responses:{200:{bodyMapper:b},default:{bodyMapper:S}},serializer:f},Z={httpMethod:"GET",baseUrl:"https://management.azure.com",path:"{nextLink}",urlParameters:[k],headerParameters:[v],responses:{200:{bodyMapper:b},default:{bodyMapper:S}},serializer:f},C=Object.freeze({discriminators:O,ResourceProviderOperationList:M,ResourceProviderOperationDefinition:z,ResourceProviderOperationDisplay:C,CloudError:s}),$=(J.prototype.list=function(e,r){return this.client.sendOperationRequest({options:e},W,r)},J.prototype.listNext=function(e,r,t){return this.client.sendOperationRequest({nextPageLink:e,options:r},X,t)},J);function J(e){this.client=e}var Q,C=new r.Serializer(C),W={httpMethod:"GET",path:"providers/Microsoft.DevSpaces/operations",queryParameters:[q],headerParameters:[v],responses:{200:{bodyMapper:M},default:{bodyMapper:s}},serializer:C},X={httpMethod:"GET",baseUrl:"https://management.azure.com",path:"{nextLink}",urlParameters:[k],headerParameters:[v],responses:{200:{bodyMapper:M},default:{bodyMapper:s}},serializer:C},s=(t(Y,Q=i.AzureServiceClient),Y);function Y(e,r,t){var a,o=this;if(null==e)throw new Error("'credentials' cannot be null.");if(null==r)throw new Error("'subscriptionId' cannot be null.");return(t=t||{}).userAgent||(a=i.getDefaultUserAgentValue(),t.userAgent="@azure/arm-devspaces/1.2.1 "+a),(o=Q.call(this,e,t)||this).apiVersion="2018-06-01-preview",o.acceptLanguage="en-US",o.longRunningOperationRetryTimeout=30,o.baseUri=t.baseUri||o.baseUri||"https://management.azure.com",o.requestContentType="application/json; charset=utf-8",o.credentials=e,o.subscriptionId=r,null!==t.acceptLanguage&&void 0!==t.acceptLanguage&&(o.acceptLanguage=t.acceptLanguage),null!==t.longRunningOperationRetryTimeout&&void 0!==t.longRunningOperationRetryTimeout&&(o.longRunningOperationRetryTimeout=t.longRunningOperationRetryTimeout),o}var ee,C=(t(re,ee=s),re);function re(e,r,t){t=ee.call(this,e,r,t)||this;return t.containerHostMappings=new E(t),t.controllers=new U(t),t.operations=new $(t),t}e.DevSpacesManagementClient=C,e.DevSpacesManagementClientContext=s,e.DevSpacesManagementModels=n,e.DevSpacesManagementMappers=D,e.ContainerHostMappings=E,e.Controllers=U,e.Operations=$,Object.defineProperty(e,"__esModule",{value:!0})});
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"sources":["../node_modules/tslib/tslib.es6.js","../esm/models/mappers.js","../esm/models/parameters.js","../esm/operations/containerHostMappings.js","../esm/operations/controllers.js","../esm/operations/operations.js","../esm/devSpacesManagementClientContext.js","../esm/devSpacesManagementClient.js"],"names":["extendStatics","d","b","Object","setPrototypeOf","__proto__","Array","p","hasOwnProperty","__extends","__","this","constructor","prototype","create","__assign","assign","t","s","i","n","arguments","length","call","apply","CloudError","CloudErrorMapper","BaseResource","BaseResourceMapper","ContainerHostMapping","serializedName","type","name","className","modelProperties","containerHostResourceId","mappedControllerResourceId","readOnly","Sku","required","isConstant","defaultValue","tier","Resource","id","TrackedResource","tags","value","location","Controller","provisioningState","hostSuffix","dataPlaneFqdn","targetContainerHostResourceId","targetContainerHostCredentialsBase64","sku","ControllerUpdateParameters","OrchestratorSpecificConnectionDetails","polymorphicDiscriminator","clientName","uberParent","instanceType","ControllerConnectionDetails","authKey","workspaceStorageAccountName","workspaceStorageSasToken","orchestratorSpecificConnectionDetails","ControllerConnectionDetailsList","connectionDetailsList","element","ResourceProviderOperationDisplay","provider","resource","operation","description","ResourceProviderOperationDefinition","display","KubernetesConnectionDetails","kubeConfig","ErrorDetails","code","message","target","ErrorResponse","error","ControllerList","nextLink","ResourceProviderOperationList","discriminators","OrchestratorSpecificConnectionDetails.Kubernetes","acceptLanguage","parameterPath","mapper","apiVersion","constraints","MaxLength","MinLength","Pattern","nextPageLink","skipEncoding","resourceGroupName","subscriptionId","ContainerHostMappings","getContainerHostMapping","containerHostMapping","options","callback","client","sendOperationRequest","getContainerHostMappingOperationSpec","serializer","msRest.Serializer","Mappers","httpMethod","path","urlParameters","queryParameters","Parameters.apiVersion","headerParameters","Parameters.acceptLanguage","requestBody","Mappers.ContainerHostMapping","responses","200","bodyMapper","default","Mappers.CloudError","Controllers","get","getOperationSpec","controller","beginCreate","then","lroPoller","pollUntilFinished","deleteMethod","beginDeleteMethod","update","controllerUpdateParameters","updateOperationSpec","listByResourceGroup","listByResourceGroupOperationSpec","list","listOperationSpec","listConnectionDetails","listConnectionDetailsOperationSpec","sendLRORequest","beginCreateOperationSpec","beginDeleteMethodOperationSpec","listByResourceGroupNext","listByResourceGroupNextOperationSpec","listNext","listNextOperationSpec","Parameters.subscriptionId","Parameters.resourceGroupName","Parameters.name","Mappers.Controller","Mappers.ErrorResponse","Mappers.ControllerUpdateParameters","Mappers.ControllerList","Mappers.ControllerConnectionDetailsList","201","202","204","baseUrl","Parameters.nextPageLink","Operations","_super","Mappers.ResourceProviderOperationList","DevSpacesManagementClientContext","msRestAzure.AzureServiceClient","credentials","defaultUserAgent","_this","undefined","Error","userAgent","msRestAzure.getDefaultUserAgentValue","packageName","longRunningOperationRetryTimeout","baseUri","requestContentType","DevSpacesManagementClient","containerHostMappings","operations.ContainerHostMappings","controllers","operations.Controllers","operations","operations.Operations"],"mappings":"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"}
|
|
@@ -1,26 +0,0 @@
|
|
|
1
|
-
import * as msRest from "@azure/ms-rest-js";
|
|
2
|
-
import { TokenCredential } from "@azure/core-auth";
|
|
3
|
-
import * as Models from "./models";
|
|
4
|
-
import * as Mappers from "./models/mappers";
|
|
5
|
-
import * as operations from "./operations";
|
|
6
|
-
import { DevSpacesManagementClientContext } from "./devSpacesManagementClientContext";
|
|
7
|
-
declare class DevSpacesManagementClient extends DevSpacesManagementClientContext {
|
|
8
|
-
containerHostMappings: operations.ContainerHostMappings;
|
|
9
|
-
controllers: operations.Controllers;
|
|
10
|
-
operations: operations.Operations;
|
|
11
|
-
/**
|
|
12
|
-
* Initializes a new instance of the DevSpacesManagementClient class.
|
|
13
|
-
* @param credentials Credentials needed for the client to connect to Azure. Credentials
|
|
14
|
-
* implementing the TokenCredential interface from the @azure/identity package are recommended. For
|
|
15
|
-
* more information about these credentials, see
|
|
16
|
-
* {@link https://www.npmjs.com/package/@azure/identity}. Credentials implementing the
|
|
17
|
-
* ServiceClientCredentials interface from the older packages @azure/ms-rest-nodeauth and
|
|
18
|
-
* @azure/ms-rest-browserauth are also supported.
|
|
19
|
-
* @param subscriptionId Azure subscription ID.
|
|
20
|
-
* @param [options] The parameter options
|
|
21
|
-
*/
|
|
22
|
-
constructor(credentials: msRest.ServiceClientCredentials | TokenCredential, subscriptionId: string, options?: Models.DevSpacesManagementClientOptions);
|
|
23
|
-
}
|
|
24
|
-
export { DevSpacesManagementClient, DevSpacesManagementClientContext, Models as DevSpacesManagementModels, Mappers as DevSpacesManagementMappers };
|
|
25
|
-
export * from "./operations";
|
|
26
|
-
//# sourceMappingURL=devSpacesManagementClient.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"devSpacesManagementClient.d.ts","sourceRoot":"","sources":["../src/devSpacesManagementClient.ts"],"names":[],"mappings":"AAUA,OAAO,KAAK,MAAM,MAAM,mBAAmB,CAAC;AAC5C,OAAO,EAAE,eAAe,EAAE,MAAM,kBAAkB,CAAC;AACnD,OAAO,KAAK,MAAM,MAAM,UAAU,CAAC;AACnC,OAAO,KAAK,OAAO,MAAM,kBAAkB,CAAC;AAC5C,OAAO,KAAK,UAAU,MAAM,cAAc,CAAC;AAC3C,OAAO,EAAE,gCAAgC,EAAE,MAAM,oCAAoC,CAAC;AAGtF,cAAM,yBAA0B,SAAQ,gCAAgC;IAEtE,qBAAqB,EAAE,UAAU,CAAC,qBAAqB,CAAC;IACxD,WAAW,EAAE,UAAU,CAAC,WAAW,CAAC;IACpC,UAAU,EAAE,UAAU,CAAC,UAAU,CAAC;IAElC;;;;;;;;;;OAUG;gBACS,WAAW,EAAE,MAAM,CAAC,wBAAwB,GAAG,eAAe,EAAE,cAAc,EAAE,MAAM,EAAE,OAAO,CAAC,EAAE,MAAM,CAAC,gCAAgC;CAMtJ;AAID,OAAO,EACL,yBAAyB,EACzB,gCAAgC,EAChC,MAAM,IAAI,yBAAyB,EACnC,OAAO,IAAI,0BAA0B,EACtC,CAAC;AACF,cAAc,cAAc,CAAC"}
|
|
@@ -1,40 +0,0 @@
|
|
|
1
|
-
/*
|
|
2
|
-
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
3
|
-
* Licensed under the MIT License. See License.txt in the project root for
|
|
4
|
-
* license information.
|
|
5
|
-
*
|
|
6
|
-
* Code generated by Microsoft (R) AutoRest Code Generator.
|
|
7
|
-
* Changes may cause incorrect behavior and will be lost if the code is
|
|
8
|
-
* regenerated.
|
|
9
|
-
*/
|
|
10
|
-
import { __extends } from "tslib";
|
|
11
|
-
import * as Models from "./models";
|
|
12
|
-
import * as Mappers from "./models/mappers";
|
|
13
|
-
import * as operations from "./operations";
|
|
14
|
-
import { DevSpacesManagementClientContext } from "./devSpacesManagementClientContext";
|
|
15
|
-
var DevSpacesManagementClient = /** @class */ (function (_super) {
|
|
16
|
-
__extends(DevSpacesManagementClient, _super);
|
|
17
|
-
/**
|
|
18
|
-
* Initializes a new instance of the DevSpacesManagementClient class.
|
|
19
|
-
* @param credentials Credentials needed for the client to connect to Azure. Credentials
|
|
20
|
-
* implementing the TokenCredential interface from the @azure/identity package are recommended. For
|
|
21
|
-
* more information about these credentials, see
|
|
22
|
-
* {@link https://www.npmjs.com/package/@azure/identity}. Credentials implementing the
|
|
23
|
-
* ServiceClientCredentials interface from the older packages @azure/ms-rest-nodeauth and
|
|
24
|
-
* @azure/ms-rest-browserauth are also supported.
|
|
25
|
-
* @param subscriptionId Azure subscription ID.
|
|
26
|
-
* @param [options] The parameter options
|
|
27
|
-
*/
|
|
28
|
-
function DevSpacesManagementClient(credentials, subscriptionId, options) {
|
|
29
|
-
var _this = _super.call(this, credentials, subscriptionId, options) || this;
|
|
30
|
-
_this.containerHostMappings = new operations.ContainerHostMappings(_this);
|
|
31
|
-
_this.controllers = new operations.Controllers(_this);
|
|
32
|
-
_this.operations = new operations.Operations(_this);
|
|
33
|
-
return _this;
|
|
34
|
-
}
|
|
35
|
-
return DevSpacesManagementClient;
|
|
36
|
-
}(DevSpacesManagementClientContext));
|
|
37
|
-
// Operation Specifications
|
|
38
|
-
export { DevSpacesManagementClient, DevSpacesManagementClientContext, Models as DevSpacesManagementModels, Mappers as DevSpacesManagementMappers };
|
|
39
|
-
export * from "./operations";
|
|
40
|
-
//# sourceMappingURL=devSpacesManagementClient.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"devSpacesManagementClient.js","sourceRoot":"","sources":["../src/devSpacesManagementClient.ts"],"names":[],"mappings":"AAAA;;;;;;;;GAQG;;AAIH,OAAO,KAAK,MAAM,MAAM,UAAU,CAAC;AACnC,OAAO,KAAK,OAAO,MAAM,kBAAkB,CAAC;AAC5C,OAAO,KAAK,UAAU,MAAM,cAAc,CAAC;AAC3C,OAAO,EAAE,gCAAgC,EAAE,MAAM,oCAAoC,CAAC;AAGtF;IAAwC,6CAAgC;IAMtE;;;;;;;;;;OAUG;IACH,mCAAY,WAA8D,EAAE,cAAsB,EAAE,OAAiD;QAArJ,YACE,kBAAM,WAAW,EAAE,cAAc,EAAE,OAAO,CAAC,SAI5C;QAHC,KAAI,CAAC,qBAAqB,GAAG,IAAI,UAAU,CAAC,qBAAqB,CAAC,KAAI,CAAC,CAAC;QACxE,KAAI,CAAC,WAAW,GAAG,IAAI,UAAU,CAAC,WAAW,CAAC,KAAI,CAAC,CAAC;QACpD,KAAI,CAAC,UAAU,GAAG,IAAI,UAAU,CAAC,UAAU,CAAC,KAAI,CAAC,CAAC;;IACpD,CAAC;IACH,gCAAC;AAAD,CAAC,AAvBD,CAAwC,gCAAgC,GAuBvE;AAED,2BAA2B;AAE3B,OAAO,EACL,yBAAyB,EACzB,gCAAgC,EAChC,MAAM,IAAI,yBAAyB,EACnC,OAAO,IAAI,0BAA0B,EACtC,CAAC;AACF,cAAc,cAAc,CAAC"}
|
|
@@ -1,22 +0,0 @@
|
|
|
1
|
-
import * as Models from "./models";
|
|
2
|
-
import * as msRest from "@azure/ms-rest-js";
|
|
3
|
-
import { TokenCredential } from "@azure/core-auth";
|
|
4
|
-
import * as msRestAzure from "@azure/ms-rest-azure-js";
|
|
5
|
-
export declare class DevSpacesManagementClientContext extends msRestAzure.AzureServiceClient {
|
|
6
|
-
credentials: msRest.ServiceClientCredentials | TokenCredential;
|
|
7
|
-
subscriptionId: string;
|
|
8
|
-
apiVersion?: string;
|
|
9
|
-
/**
|
|
10
|
-
* Initializes a new instance of the DevSpacesManagementClient class.
|
|
11
|
-
* @param credentials Credentials needed for the client to connect to Azure. Credentials
|
|
12
|
-
* implementing the TokenCredential interface from the @azure/identity package are recommended. For
|
|
13
|
-
* more information about these credentials, see
|
|
14
|
-
* {@link https://www.npmjs.com/package/@azure/identity}. Credentials implementing the
|
|
15
|
-
* ServiceClientCredentials interface from the older packages @azure/ms-rest-nodeauth and
|
|
16
|
-
* @azure/ms-rest-browserauth are also supported.
|
|
17
|
-
* @param subscriptionId Azure subscription ID.
|
|
18
|
-
* @param [options] The parameter options
|
|
19
|
-
*/
|
|
20
|
-
constructor(credentials: msRest.ServiceClientCredentials | TokenCredential, subscriptionId: string, options?: Models.DevSpacesManagementClientOptions);
|
|
21
|
-
}
|
|
22
|
-
//# sourceMappingURL=devSpacesManagementClientContext.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"devSpacesManagementClientContext.d.ts","sourceRoot":"","sources":["../src/devSpacesManagementClientContext.ts"],"names":[],"mappings":"AAUA,OAAO,KAAK,MAAM,MAAM,UAAU,CAAC;AACnC,OAAO,KAAK,MAAM,MAAM,mBAAmB,CAAC;AAC5C,OAAO,EAAE,eAAe,EAAE,MAAM,kBAAkB,CAAC;AACnD,OAAO,KAAK,WAAW,MAAM,yBAAyB,CAAC;AAKvD,qBAAa,gCAAiC,SAAQ,WAAW,CAAC,kBAAkB;IAClF,WAAW,EAAE,MAAM,CAAC,wBAAwB,GAAG,eAAe,CAAC;IAC/D,cAAc,EAAE,MAAM,CAAC;IACvB,UAAU,CAAC,EAAE,MAAM,CAAC;IAEpB;;;;;;;;;;OAUG;gBACS,WAAW,EAAE,MAAM,CAAC,wBAAwB,GAAG,eAAe,EAAE,cAAc,EAAE,MAAM,EAAE,OAAO,CAAC,EAAE,MAAM,CAAC,gCAAgC;CAiCtJ"}
|
|
@@ -1,61 +0,0 @@
|
|
|
1
|
-
/*
|
|
2
|
-
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
3
|
-
* Licensed under the MIT License. See License.txt in the project root for
|
|
4
|
-
* license information.
|
|
5
|
-
*
|
|
6
|
-
* Code generated by Microsoft (R) AutoRest Code Generator.
|
|
7
|
-
* Changes may cause incorrect behavior and will be lost if the code is
|
|
8
|
-
* regenerated.
|
|
9
|
-
*/
|
|
10
|
-
import { __extends } from "tslib";
|
|
11
|
-
import * as msRestAzure from "@azure/ms-rest-azure-js";
|
|
12
|
-
var packageName = "@azure/arm-devspaces";
|
|
13
|
-
var packageVersion = "1.2.1";
|
|
14
|
-
var DevSpacesManagementClientContext = /** @class */ (function (_super) {
|
|
15
|
-
__extends(DevSpacesManagementClientContext, _super);
|
|
16
|
-
/**
|
|
17
|
-
* Initializes a new instance of the DevSpacesManagementClient class.
|
|
18
|
-
* @param credentials Credentials needed for the client to connect to Azure. Credentials
|
|
19
|
-
* implementing the TokenCredential interface from the @azure/identity package are recommended. For
|
|
20
|
-
* more information about these credentials, see
|
|
21
|
-
* {@link https://www.npmjs.com/package/@azure/identity}. Credentials implementing the
|
|
22
|
-
* ServiceClientCredentials interface from the older packages @azure/ms-rest-nodeauth and
|
|
23
|
-
* @azure/ms-rest-browserauth are also supported.
|
|
24
|
-
* @param subscriptionId Azure subscription ID.
|
|
25
|
-
* @param [options] The parameter options
|
|
26
|
-
*/
|
|
27
|
-
function DevSpacesManagementClientContext(credentials, subscriptionId, options) {
|
|
28
|
-
var _this = this;
|
|
29
|
-
if (credentials == undefined) {
|
|
30
|
-
throw new Error('\'credentials\' cannot be null.');
|
|
31
|
-
}
|
|
32
|
-
if (subscriptionId == undefined) {
|
|
33
|
-
throw new Error('\'subscriptionId\' cannot be null.');
|
|
34
|
-
}
|
|
35
|
-
if (!options) {
|
|
36
|
-
options = {};
|
|
37
|
-
}
|
|
38
|
-
if (!options.userAgent) {
|
|
39
|
-
var defaultUserAgent = msRestAzure.getDefaultUserAgentValue();
|
|
40
|
-
options.userAgent = packageName + "/" + packageVersion + " " + defaultUserAgent;
|
|
41
|
-
}
|
|
42
|
-
_this = _super.call(this, credentials, options) || this;
|
|
43
|
-
_this.apiVersion = '2018-06-01-preview';
|
|
44
|
-
_this.acceptLanguage = 'en-US';
|
|
45
|
-
_this.longRunningOperationRetryTimeout = 30;
|
|
46
|
-
_this.baseUri = options.baseUri || _this.baseUri || "https://management.azure.com";
|
|
47
|
-
_this.requestContentType = "application/json; charset=utf-8";
|
|
48
|
-
_this.credentials = credentials;
|
|
49
|
-
_this.subscriptionId = subscriptionId;
|
|
50
|
-
if (options.acceptLanguage !== null && options.acceptLanguage !== undefined) {
|
|
51
|
-
_this.acceptLanguage = options.acceptLanguage;
|
|
52
|
-
}
|
|
53
|
-
if (options.longRunningOperationRetryTimeout !== null && options.longRunningOperationRetryTimeout !== undefined) {
|
|
54
|
-
_this.longRunningOperationRetryTimeout = options.longRunningOperationRetryTimeout;
|
|
55
|
-
}
|
|
56
|
-
return _this;
|
|
57
|
-
}
|
|
58
|
-
return DevSpacesManagementClientContext;
|
|
59
|
-
}(msRestAzure.AzureServiceClient));
|
|
60
|
-
export { DevSpacesManagementClientContext };
|
|
61
|
-
//# sourceMappingURL=devSpacesManagementClientContext.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"devSpacesManagementClientContext.js","sourceRoot":"","sources":["../src/devSpacesManagementClientContext.ts"],"names":[],"mappings":"AAAA;;;;;;;;GAQG;;AAKH,OAAO,KAAK,WAAW,MAAM,yBAAyB,CAAC;AAEvD,IAAM,WAAW,GAAG,sBAAsB,CAAC;AAC3C,IAAM,cAAc,GAAG,OAAO,CAAC;AAE/B;IAAsD,oDAA8B;IAKlF;;;;;;;;;;OAUG;IACH,0CAAY,WAA8D,EAAE,cAAsB,EAAE,OAAiD;QAArJ,iBAgCC;QA/BC,IAAI,WAAW,IAAI,SAAS,EAAE;YAC5B,MAAM,IAAI,KAAK,CAAC,iCAAiC,CAAC,CAAC;SACpD;QACD,IAAI,cAAc,IAAI,SAAS,EAAE;YAC/B,MAAM,IAAI,KAAK,CAAC,oCAAoC,CAAC,CAAC;SACvD;QAED,IAAI,CAAC,OAAO,EAAE;YACZ,OAAO,GAAG,EAAE,CAAC;SACd;QACD,IAAI,CAAC,OAAO,CAAC,SAAS,EAAE;YACtB,IAAM,gBAAgB,GAAG,WAAW,CAAC,wBAAwB,EAAE,CAAC;YAChE,OAAO,CAAC,SAAS,GAAM,WAAW,SAAI,cAAc,SAAI,gBAAkB,CAAC;SAC5E;QAED,QAAA,kBAAM,WAAW,EAAE,OAAO,CAAC,SAAC;QAE5B,KAAI,CAAC,UAAU,GAAG,oBAAoB,CAAC;QACvC,KAAI,CAAC,cAAc,GAAG,OAAO,CAAC;QAC9B,KAAI,CAAC,gCAAgC,GAAG,EAAE,CAAC;QAC3C,KAAI,CAAC,OAAO,GAAG,OAAO,CAAC,OAAO,IAAI,KAAI,CAAC,OAAO,IAAI,8BAA8B,CAAC;QACjF,KAAI,CAAC,kBAAkB,GAAG,iCAAiC,CAAC;QAC5D,KAAI,CAAC,WAAW,GAAG,WAAW,CAAC;QAC/B,KAAI,CAAC,cAAc,GAAG,cAAc,CAAC;QAErC,IAAI,OAAO,CAAC,cAAc,KAAK,IAAI,IAAI,OAAO,CAAC,cAAc,KAAK,SAAS,EAAE;YAC3E,KAAI,CAAC,cAAc,GAAG,OAAO,CAAC,cAAc,CAAC;SAC9C;QACD,IAAI,OAAO,CAAC,gCAAgC,KAAK,IAAI,IAAI,OAAO,CAAC,gCAAgC,KAAK,SAAS,EAAE;YAC/G,KAAI,CAAC,gCAAgC,GAAG,OAAO,CAAC,gCAAgC,CAAC;SAClF;;IACH,CAAC;IACH,uCAAC;AAAD,CAAC,AAjDD,CAAsD,WAAW,CAAC,kBAAkB,GAiDnF"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"containerHostMappingsMappers.d.ts","sourceRoot":"","sources":["../../src/models/containerHostMappingsMappers.ts"],"names":[],"mappings":"AAUA,OAAO,EACL,cAAc,EACd,oBAAoB,EACpB,UAAU,EACX,MAAM,mBAAmB,CAAC"}
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
/*
|
|
2
|
-
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
3
|
-
* Licensed under the MIT License. See License.txt in the project root for
|
|
4
|
-
* license information.
|
|
5
|
-
*
|
|
6
|
-
* Code generated by Microsoft (R) AutoRest Code Generator.
|
|
7
|
-
* Changes may cause incorrect behavior and will be lost if the code is
|
|
8
|
-
* regenerated.
|
|
9
|
-
*/
|
|
10
|
-
export { discriminators, ContainerHostMapping, CloudError } from "../models/mappers";
|
|
11
|
-
//# sourceMappingURL=containerHostMappingsMappers.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"containerHostMappingsMappers.js","sourceRoot":"","sources":["../../src/models/containerHostMappingsMappers.ts"],"names":[],"mappings":"AAAA;;;;;;;;GAQG;AAEH,OAAO,EACL,cAAc,EACd,oBAAoB,EACpB,UAAU,EACX,MAAM,mBAAmB,CAAC"}
|
|
@@ -1,2 +0,0 @@
|
|
|
1
|
-
export { discriminators, Controller, TrackedResource, Resource, BaseResource, Sku, ErrorResponse, ErrorDetails, ControllerUpdateParameters, ControllerList, ControllerConnectionDetailsList, ControllerConnectionDetails, OrchestratorSpecificConnectionDetails, KubernetesConnectionDetails } from "../models/mappers";
|
|
2
|
-
//# sourceMappingURL=controllersMappers.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"controllersMappers.d.ts","sourceRoot":"","sources":["../../src/models/controllersMappers.ts"],"names":[],"mappings":"AAUA,OAAO,EACL,cAAc,EACd,UAAU,EACV,eAAe,EACf,QAAQ,EACR,YAAY,EACZ,GAAG,EACH,aAAa,EACb,YAAY,EACZ,0BAA0B,EAC1B,cAAc,EACd,+BAA+B,EAC/B,2BAA2B,EAC3B,qCAAqC,EACrC,2BAA2B,EAC5B,MAAM,mBAAmB,CAAC"}
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
/*
|
|
2
|
-
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
3
|
-
* Licensed under the MIT License. See License.txt in the project root for
|
|
4
|
-
* license information.
|
|
5
|
-
*
|
|
6
|
-
* Code generated by Microsoft (R) AutoRest Code Generator.
|
|
7
|
-
* Changes may cause incorrect behavior and will be lost if the code is
|
|
8
|
-
* regenerated.
|
|
9
|
-
*/
|
|
10
|
-
export { discriminators, Controller, TrackedResource, Resource, BaseResource, Sku, ErrorResponse, ErrorDetails, ControllerUpdateParameters, ControllerList, ControllerConnectionDetailsList, ControllerConnectionDetails, OrchestratorSpecificConnectionDetails, KubernetesConnectionDetails } from "../models/mappers";
|
|
11
|
-
//# sourceMappingURL=controllersMappers.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"controllersMappers.js","sourceRoot":"","sources":["../../src/models/controllersMappers.ts"],"names":[],"mappings":"AAAA;;;;;;;;GAQG;AAEH,OAAO,EACL,cAAc,EACd,UAAU,EACV,eAAe,EACf,QAAQ,EACR,YAAY,EACZ,GAAG,EACH,aAAa,EACb,YAAY,EACZ,0BAA0B,EAC1B,cAAc,EACd,+BAA+B,EAC/B,2BAA2B,EAC3B,qCAAqC,EACrC,2BAA2B,EAC5B,MAAM,mBAAmB,CAAC"}
|