@azure/arm-devspaces 1.1.0 → 2.0.1-alpha.20220113.2
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 +75 -77
- 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 +71 -25
- package/review/arm-devspaces.api.md +300 -0
- package/rollup.config.js +184 -27
- package/src/devSpacesManagementClient.ts +87 -0
- package/src/index.ts +12 -0
- package/src/lroImpl.ts +34 -0
- package/src/models/index.ts +343 -0
- package/{lib → src}/models/mappers.ts +202 -226
- package/src/models/parameters.ts +152 -0
- package/src/operations/containerHostMappings.ts +80 -0
- package/src/operations/controllers.ts +640 -0
- package/{lib → src}/operations/index.ts +4 -6
- package/src/operations/operations.ts +133 -0
- 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 -1251
- 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 -20
- package/esm/devSpacesManagementClient.d.ts.map +0 -1
- package/esm/devSpacesManagementClient.js +0 -35
- package/esm/devSpacesManagementClient.js.map +0 -1
- package/esm/devSpacesManagementClientContext.d.ts +0 -16
- package/esm/devSpacesManagementClientContext.d.ts.map +0 -1
- package/esm/devSpacesManagementClientContext.js +0 -56
- 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/lib/devSpacesManagementClient.ts +0 -46
- package/lib/devSpacesManagementClientContext.ts +0 -62
- package/lib/models/containerHostMappingsMappers.ts +0 -16
- package/lib/models/controllersMappers.ts +0 -27
- package/lib/models/index.ts +0 -604
- package/lib/models/operationsMappers.ts +0 -18
- package/lib/models/parameters.ts +0 -92
- package/lib/operations/containerHostMappings.ts +0 -98
- package/lib/operations/controllers.ts +0 -548
- package/lib/operations/operations.ts +0 -127
|
@@ -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. All rights reserved.\r\nLicensed under the Apache License, Version 2.0 (the \"License\"); you may not use\r\nthis file except in compliance with the License. You may obtain a copy of the\r\nLicense at http://www.apache.org/licenses/LICENSE-2.0\r\n\r\nTHIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\r\nKIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED\r\nWARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,\r\nMERCHANTABLITY OR NON-INFRINGEMENT.\r\n\r\nSee the Apache Version 2.0 License for specific language governing permissions\r\nand limitations under the License.\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++) if (e.indexOf(p[i]) < 0)\r\n t[p[i]] = s[p[i]];\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 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) : new P(function (resolve) { resolve(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 __exportStar(m, exports) {\r\n for (var p in m) if (!exports.hasOwnProperty(p)) exports[p] = m[p];\r\n}\r\n\r\nexport function __values(o) {\r\n var m = typeof Symbol === \"function\" && o[Symbol.iterator], i = 0;\r\n if (m) return m.call(o);\r\n 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}\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 __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","/*\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 * as tslib_1 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: tslib_1.__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: tslib_1.__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: tslib_1.__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 * as tslib_1 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: tslib_1.__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 * as tslib_1 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: tslib_1.__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: tslib_1.__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 * as tslib_1 from \"tslib\";\nimport * as msRestAzure from \"@azure/ms-rest-azure-js\";\nvar packageName = \"@azure/arm-devspaces\";\nvar packageVersion = \"0.1.0\";\nvar DevSpacesManagementClientContext = /** @class */ (function (_super) {\n tslib_1.__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.\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 * as tslib_1 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 tslib_1.__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.\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","tslib_1.__assign","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","tslib_1.__extends","msRestAzure.getDefaultUserAgentValue","msRestAzure.AzureServiceClient","operations.ContainerHostMappings","operations.Controllers","operations.Operations"],"mappings":"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"}
|
|
@@ -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,n,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 i=function(){return(i=Object.assign||function(e){for(var r,t=1,a=arguments.length;t<a;t++)for(var i in r=arguments[t])Object.prototype.hasOwnProperty.call(r,i)&&(e[i]=r[i]);return e}).apply(this,arguments)},o=Object.freeze({}),s=n.CloudErrorMapper,p=n.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:i({},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:i({},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"}}}}},f={serializedName:"ControllerConnectionDetailsList",type:{name:"Composite",className:"ControllerConnectionDetailsList",modelProperties:{connectionDetailsList:{serializedName:"connectionDetailsList",type:{name:"Sequence",element:{type:{name:"Composite",className:"ControllerConnectionDetails"}}}}}}},N={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"}}}}},C={serializedName:"ResourceProviderOperationDefinition",type:{name:"Composite",className:"ResourceProviderOperationDefinition",modelProperties:{name:{serializedName:"name",type:{name:"String"}},display:{serializedName:"display",type:{name:"Composite",className:"ResourceProviderOperationDisplay"}}}}},z={serializedName:"Kubernetes",type:{name:"Composite",polymorphicDiscriminator:h.type.polymorphicDiscriminator,uberParent:"OrchestratorSpecificConnectionDetails",className:"KubernetesConnectionDetails",modelProperties:i({},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":z},D=Object.freeze({CloudError:s,BaseResource:p,ContainerHostMapping:l,Sku:c,Resource:m,TrackedResource:u,Controller:d,ControllerUpdateParameters:y,OrchestratorSpecificConnectionDetails:h,ControllerConnectionDetails:g,ControllerConnectionDetailsList:f,ResourceProviderOperationDisplay:N,ResourceProviderOperationDefinition:C,KubernetesConnectionDetails:z,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=function(){function e(e){this.client=e}return e.prototype.getContainerHostMapping=function(e,r,t,a){return this.client.sendOperationRequest({containerHostMapping:e,location:r,options:t},w,a)},e}(),x=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:i({},l,{required:!0})},responses:{200:{bodyMapper:{serializedName:"parsedResponse",type:{name:"Object"}}},default:{bodyMapper:s}},serializer:x},U=Object.freeze({discriminators:O,Controller:d,TrackedResource:u,Resource:m,BaseResource:p,Sku:c,ErrorResponse:S,ErrorDetails:P,ControllerUpdateParameters:y,ControllerList:b,ControllerConnectionDetailsList:f,ControllerConnectionDetails:g,OrchestratorSpecificConnectionDetails:h,KubernetesConnectionDetails:z}),j=function(){function e(e){this.client=e}return e.prototype.get=function(e,r,t,a){return this.client.sendOperationRequest({resourceGroupName:e,name:r,options:t},I,a)},e.prototype.create=function(e,r,t,a){return this.beginCreate(e,r,t,a).then(function(e){return e.pollUntilFinished()})},e.prototype.deleteMethod=function(e,r,t){return this.beginDeleteMethod(e,r,t).then(function(e){return e.pollUntilFinished()})},e.prototype.update=function(e,r,t,a,i){return this.client.sendOperationRequest({resourceGroupName:e,name:r,controllerUpdateParameters:t,options:a},A,i)},e.prototype.listByResourceGroup=function(e,r,t){return this.client.sendOperationRequest({resourceGroupName:e,options:r},B,t)},e.prototype.list=function(e,r){return this.client.sendOperationRequest({options:e},_,r)},e.prototype.listConnectionDetails=function(e,r,t,a){return this.client.sendOperationRequest({resourceGroupName:e,name:r,options:t},K,a)},e.prototype.beginCreate=function(e,r,t,a){return this.client.sendLRORequest({resourceGroupName:e,name:r,controller:t,options:a},V,a)},e.prototype.beginDeleteMethod=function(e,r,t){return this.client.sendLRORequest({resourceGroupName:e,name:r,options:t},F,t)},e.prototype.listByResourceGroupNext=function(e,r,t){return this.client.sendOperationRequest({nextPageLink:e,options:r},Z,t)},e.prototype.listNext=function(e,r,t){return this.client.sendOperationRequest({nextPageLink:e,options:r},$,t)},e}(),H=new r.Serializer(U),I={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:H},A={httpMethod:"PATCH",path:"subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DevSpaces/controllers/{name}",urlParameters:[T,G,L],queryParameters:[q],headerParameters:[v],requestBody:{parameterPath:"controllerUpdateParameters",mapper:i({},y,{required:!0})},responses:{200:{bodyMapper:d},default:{bodyMapper:S}},serializer:H},B={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:H},_={httpMethod:"GET",path:"subscriptions/{subscriptionId}/providers/Microsoft.DevSpaces/controllers",urlParameters:[T],queryParameters:[q],headerParameters:[v],responses:{200:{bodyMapper:b},default:{bodyMapper:S}},serializer:H},K={httpMethod:"POST",path:"subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DevSpaces/controllers/{name}/listConnectionDetails",urlParameters:[T,G,L],queryParameters:[q],headerParameters:[v],responses:{200:{bodyMapper:f},default:{bodyMapper:S}},serializer:H},V={httpMethod:"PUT",path:"subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DevSpaces/controllers/{name}",urlParameters:[T,G,L],queryParameters:[q],headerParameters:[v],requestBody:{parameterPath:"controller",mapper:i({},d,{required:!0})},responses:{200:{bodyMapper:d},201:{bodyMapper:d},default:{bodyMapper:S}},serializer:H},F={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:H},Z={httpMethod:"GET",baseUrl:"https://management.azure.com",path:"{nextLink}",urlParameters:[k],headerParameters:[v],responses:{200:{bodyMapper:b},default:{bodyMapper:S}},serializer:H},$={httpMethod:"GET",baseUrl:"https://management.azure.com",path:"{nextLink}",urlParameters:[k],headerParameters:[v],responses:{200:{bodyMapper:b},default:{bodyMapper:S}},serializer:H},J=Object.freeze({discriminators:O,ResourceProviderOperationList:M,ResourceProviderOperationDefinition:C,ResourceProviderOperationDisplay:N,CloudError:s}),Q=function(){function e(e){this.client=e}return e.prototype.list=function(e,r){return this.client.sendOperationRequest({options:e},X,r)},e.prototype.listNext=function(e,r,t){return this.client.sendOperationRequest({nextPageLink:e,options:r},Y,t)},e}(),W=new r.Serializer(J),X={httpMethod:"GET",path:"providers/Microsoft.DevSpaces/operations",queryParameters:[q],headerParameters:[v],responses:{200:{bodyMapper:M},default:{bodyMapper:s}},serializer:W},Y={httpMethod:"GET",baseUrl:"https://management.azure.com",path:"{nextLink}",urlParameters:[k],headerParameters:[v],responses:{200:{bodyMapper:M},default:{bodyMapper:s}},serializer:W},ee=function(o){function e(e,r,t){var a=this;if(null==e)throw new Error("'credentials' cannot be null.");if(null==r)throw new Error("'subscriptionId' cannot be null.");if(t||(t={}),!t.userAgent){var i=n.getDefaultUserAgentValue();t.userAgent="@azure/arm-devspaces/0.1.0 "+i}return(a=o.call(this,e,t)||this).apiVersion="2018-06-01-preview",a.acceptLanguage="en-US",a.longRunningOperationRetryTimeout=30,a.baseUri=t.baseUri||a.baseUri||"https://management.azure.com",a.requestContentType="application/json; charset=utf-8",a.credentials=e,a.subscriptionId=r,null!==t.acceptLanguage&&void 0!==t.acceptLanguage&&(a.acceptLanguage=t.acceptLanguage),null!==t.longRunningOperationRetryTimeout&&void 0!==t.longRunningOperationRetryTimeout&&(a.longRunningOperationRetryTimeout=t.longRunningOperationRetryTimeout),a}return t(e,o),e}(n.AzureServiceClient),re=function(i){function e(e,r,t){var a=i.call(this,e,r,t)||this;return a.containerHostMappings=new E(a),a.controllers=new j(a),a.operations=new Q(a),a}return t(e,i),e}(ee);e.DevSpacesManagementClient=re,e.DevSpacesManagementClientContext=ee,e.DevSpacesManagementModels=o,e.DevSpacesManagementMappers=D,e.ContainerHostMappings=E,e.Controllers=j,e.Operations=Q,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","tslib_1.__assign","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","client","getContainerHostMapping","containerHostMapping","options","callback","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","Mappers.ResourceProviderOperationList","DevSpacesManagementClientContext","_super","credentials","_this","undefined","Error","userAgent","defaultUserAgent","msRestAzure.getDefaultUserAgentValue","packageName","longRunningOperationRetryTimeout","baseUri","requestContentType","tslib_1.__extends","msRestAzure.AzureServiceClient","DevSpacesManagementClient","containerHostMappings","operations.ContainerHostMappings","controllers","operations.Controllers","operations","operations.Operations"],"mappings":"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"}
|
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
import * as msRest from "@azure/ms-rest-js";
|
|
2
|
-
import * as Models from "./models";
|
|
3
|
-
import * as Mappers from "./models/mappers";
|
|
4
|
-
import * as operations from "./operations";
|
|
5
|
-
import { DevSpacesManagementClientContext } from "./devSpacesManagementClientContext";
|
|
6
|
-
declare class DevSpacesManagementClient extends DevSpacesManagementClientContext {
|
|
7
|
-
containerHostMappings: operations.ContainerHostMappings;
|
|
8
|
-
controllers: operations.Controllers;
|
|
9
|
-
operations: operations.Operations;
|
|
10
|
-
/**
|
|
11
|
-
* Initializes a new instance of the DevSpacesManagementClient class.
|
|
12
|
-
* @param credentials Credentials needed for the client to connect to Azure.
|
|
13
|
-
* @param subscriptionId Azure subscription ID.
|
|
14
|
-
* @param [options] The parameter options
|
|
15
|
-
*/
|
|
16
|
-
constructor(credentials: msRest.ServiceClientCredentials, subscriptionId: string, options?: Models.DevSpacesManagementClientOptions);
|
|
17
|
-
}
|
|
18
|
-
export { DevSpacesManagementClient, DevSpacesManagementClientContext, Models as DevSpacesManagementModels, Mappers as DevSpacesManagementMappers };
|
|
19
|
-
export * from "./operations";
|
|
20
|
-
//# sourceMappingURL=devSpacesManagementClient.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"devSpacesManagementClient.d.ts","sourceRoot":"","sources":["../lib/devSpacesManagementClient.ts"],"names":[],"mappings":"AAUA,OAAO,KAAK,MAAM,MAAM,mBAAmB,CAAC;AAC5C,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;;;;;OAKG;gBACS,WAAW,EAAE,MAAM,CAAC,wBAAwB,EAAE,cAAc,EAAE,MAAM,EAAE,OAAO,CAAC,EAAE,MAAM,CAAC,gCAAgC;CAMpI;AAID,OAAO,EACL,yBAAyB,EACzB,gCAAgC,EAChC,MAAM,IAAI,yBAAyB,EACnC,OAAO,IAAI,0BAA0B,EACtC,CAAC;AACF,cAAc,cAAc,CAAC"}
|
|
@@ -1,35 +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 * as tslib_1 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
|
-
tslib_1.__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.
|
|
20
|
-
* @param subscriptionId Azure subscription ID.
|
|
21
|
-
* @param [options] The parameter options
|
|
22
|
-
*/
|
|
23
|
-
function DevSpacesManagementClient(credentials, subscriptionId, options) {
|
|
24
|
-
var _this = _super.call(this, credentials, subscriptionId, options) || this;
|
|
25
|
-
_this.containerHostMappings = new operations.ContainerHostMappings(_this);
|
|
26
|
-
_this.controllers = new operations.Controllers(_this);
|
|
27
|
-
_this.operations = new operations.Operations(_this);
|
|
28
|
-
return _this;
|
|
29
|
-
}
|
|
30
|
-
return DevSpacesManagementClient;
|
|
31
|
-
}(DevSpacesManagementClientContext));
|
|
32
|
-
// Operation Specifications
|
|
33
|
-
export { DevSpacesManagementClient, DevSpacesManagementClientContext, Models as DevSpacesManagementModels, Mappers as DevSpacesManagementMappers };
|
|
34
|
-
export * from "./operations";
|
|
35
|
-
//# sourceMappingURL=devSpacesManagementClient.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"devSpacesManagementClient.js","sourceRoot":"","sources":["../lib/devSpacesManagementClient.ts"],"names":[],"mappings":"AAAA;;;;;;;;GAQG;;AAGH,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,qDAAgC;IAMtE;;;;;OAKG;IACH,mCAAY,WAA4C,EAAE,cAAsB,EAAE,OAAiD;QAAnI,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,AAlBD,CAAwC,gCAAgC,GAkBvE;AAED,2BAA2B;AAE3B,OAAO,EACL,yBAAyB,EACzB,gCAAgC,EAChC,MAAM,IAAI,yBAAyB,EACnC,OAAO,IAAI,0BAA0B,EACtC,CAAC;AACF,cAAc,cAAc,CAAC"}
|
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
import * as Models from "./models";
|
|
2
|
-
import * as msRest from "@azure/ms-rest-js";
|
|
3
|
-
import * as msRestAzure from "@azure/ms-rest-azure-js";
|
|
4
|
-
export declare class DevSpacesManagementClientContext extends msRestAzure.AzureServiceClient {
|
|
5
|
-
credentials: msRest.ServiceClientCredentials;
|
|
6
|
-
subscriptionId: string;
|
|
7
|
-
apiVersion?: string;
|
|
8
|
-
/**
|
|
9
|
-
* Initializes a new instance of the DevSpacesManagementClient class.
|
|
10
|
-
* @param credentials Credentials needed for the client to connect to Azure.
|
|
11
|
-
* @param subscriptionId Azure subscription ID.
|
|
12
|
-
* @param [options] The parameter options
|
|
13
|
-
*/
|
|
14
|
-
constructor(credentials: msRest.ServiceClientCredentials, subscriptionId: string, options?: Models.DevSpacesManagementClientOptions);
|
|
15
|
-
}
|
|
16
|
-
//# sourceMappingURL=devSpacesManagementClientContext.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"devSpacesManagementClientContext.d.ts","sourceRoot":"","sources":["../lib/devSpacesManagementClientContext.ts"],"names":[],"mappings":"AAUA,OAAO,KAAK,MAAM,MAAM,UAAU,CAAC;AACnC,OAAO,KAAK,MAAM,MAAM,mBAAmB,CAAC;AAC5C,OAAO,KAAK,WAAW,MAAM,yBAAyB,CAAC;AAKvD,qBAAa,gCAAiC,SAAQ,WAAW,CAAC,kBAAkB;IAClF,WAAW,EAAE,MAAM,CAAC,wBAAwB,CAAC;IAC7C,cAAc,EAAE,MAAM,CAAC;IACvB,UAAU,CAAC,EAAE,MAAM,CAAC;IAEpB;;;;;OAKG;gBACS,WAAW,EAAE,MAAM,CAAC,wBAAwB,EAAE,cAAc,EAAE,MAAM,EAAE,OAAO,CAAC,EAAE,MAAM,CAAC,gCAAgC;CAiCpI"}
|
|
@@ -1,56 +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 * as tslib_1 from "tslib";
|
|
11
|
-
import * as msRestAzure from "@azure/ms-rest-azure-js";
|
|
12
|
-
var packageName = "@azure/arm-devspaces";
|
|
13
|
-
var packageVersion = "0.1.0";
|
|
14
|
-
var DevSpacesManagementClientContext = /** @class */ (function (_super) {
|
|
15
|
-
tslib_1.__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.
|
|
19
|
-
* @param subscriptionId Azure subscription ID.
|
|
20
|
-
* @param [options] The parameter options
|
|
21
|
-
*/
|
|
22
|
-
function DevSpacesManagementClientContext(credentials, subscriptionId, options) {
|
|
23
|
-
var _this = this;
|
|
24
|
-
if (credentials == undefined) {
|
|
25
|
-
throw new Error('\'credentials\' cannot be null.');
|
|
26
|
-
}
|
|
27
|
-
if (subscriptionId == undefined) {
|
|
28
|
-
throw new Error('\'subscriptionId\' cannot be null.');
|
|
29
|
-
}
|
|
30
|
-
if (!options) {
|
|
31
|
-
options = {};
|
|
32
|
-
}
|
|
33
|
-
if (!options.userAgent) {
|
|
34
|
-
var defaultUserAgent = msRestAzure.getDefaultUserAgentValue();
|
|
35
|
-
options.userAgent = packageName + "/" + packageVersion + " " + defaultUserAgent;
|
|
36
|
-
}
|
|
37
|
-
_this = _super.call(this, credentials, options) || this;
|
|
38
|
-
_this.apiVersion = '2018-06-01-preview';
|
|
39
|
-
_this.acceptLanguage = 'en-US';
|
|
40
|
-
_this.longRunningOperationRetryTimeout = 30;
|
|
41
|
-
_this.baseUri = options.baseUri || _this.baseUri || "https://management.azure.com";
|
|
42
|
-
_this.requestContentType = "application/json; charset=utf-8";
|
|
43
|
-
_this.credentials = credentials;
|
|
44
|
-
_this.subscriptionId = subscriptionId;
|
|
45
|
-
if (options.acceptLanguage !== null && options.acceptLanguage !== undefined) {
|
|
46
|
-
_this.acceptLanguage = options.acceptLanguage;
|
|
47
|
-
}
|
|
48
|
-
if (options.longRunningOperationRetryTimeout !== null && options.longRunningOperationRetryTimeout !== undefined) {
|
|
49
|
-
_this.longRunningOperationRetryTimeout = options.longRunningOperationRetryTimeout;
|
|
50
|
-
}
|
|
51
|
-
return _this;
|
|
52
|
-
}
|
|
53
|
-
return DevSpacesManagementClientContext;
|
|
54
|
-
}(msRestAzure.AzureServiceClient));
|
|
55
|
-
export { DevSpacesManagementClientContext };
|
|
56
|
-
//# sourceMappingURL=devSpacesManagementClientContext.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"devSpacesManagementClientContext.js","sourceRoot":"","sources":["../lib/devSpacesManagementClientContext.ts"],"names":[],"mappings":"AAAA;;;;;;;;GAQG;;AAIH,OAAO,KAAK,WAAW,MAAM,yBAAyB,CAAC;AAEvD,IAAM,WAAW,GAAG,sBAAsB,CAAC;AAC3C,IAAM,cAAc,GAAG,OAAO,CAAC;AAE/B;IAAsD,4DAA8B;IAKlF;;;;;OAKG;IACH,0CAAY,WAA4C,EAAE,cAAsB,EAAE,OAAiD;QAAnI,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,IAAG,CAAC,OAAO,CAAC,SAAS,EAAE;YACrB,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,IAAG,OAAO,CAAC,cAAc,KAAK,IAAI,IAAI,OAAO,CAAC,cAAc,KAAK,SAAS,EAAE;YAC1E,KAAI,CAAC,cAAc,GAAG,OAAO,CAAC,cAAc,CAAC;SAC9C;QACD,IAAG,OAAO,CAAC,gCAAgC,KAAK,IAAI,IAAI,OAAO,CAAC,gCAAgC,KAAK,SAAS,EAAE;YAC9G,KAAI,CAAC,gCAAgC,GAAG,OAAO,CAAC,gCAAgC,CAAC;SAClF;;IACH,CAAC;IACH,uCAAC;AAAD,CAAC,AA5CD,CAAsD,WAAW,CAAC,kBAAkB,GA4CnF"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"containerHostMappingsMappers.d.ts","sourceRoot":"","sources":["../../lib/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":["../../lib/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":["../../lib/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":["../../lib/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"}
|