@azure/arm-domainservices 3.1.0 → 4.0.1-alpha.20220113.4
Sign up to get free protection for your applications and to get access to all the features.
- package/CHANGELOG.md +21 -0
- package/LICENSE +21 -0
- package/LICENSE.txt +21 -21
- package/README.md +98 -96
- package/dist/index.js +2502 -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/domainServicesResourceProvider.d.ts +22 -0
- package/dist-esm/src/domainServicesResourceProvider.d.ts.map +1 -0
- package/dist-esm/src/domainServicesResourceProvider.js +55 -0
- package/dist-esm/src/domainServicesResourceProvider.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 +768 -0
- package/dist-esm/src/models/index.d.ts.map +1 -0
- package/dist-esm/src/models/index.js +98 -0
- package/dist-esm/src/models/index.js.map +1 -0
- package/dist-esm/src/models/mappers.d.ts +27 -0
- package/dist-esm/src/models/mappers.d.ts.map +1 -0
- package/dist-esm/src/models/mappers.js +1015 -0
- package/dist-esm/src/models/mappers.js.map +1 -0
- package/dist-esm/src/models/parameters.d.ts +13 -0
- package/dist-esm/src/models/parameters.d.ts.map +1 -0
- package/dist-esm/src/models/parameters.js +117 -0
- package/dist-esm/src/models/parameters.js.map +1 -0
- package/dist-esm/src/operations/domainServiceOperations.d.ts +32 -0
- package/dist-esm/src/operations/domainServiceOperations.d.ts.map +1 -0
- package/dist-esm/src/operations/domainServiceOperations.js +120 -0
- package/dist-esm/src/operations/domainServiceOperations.js.map +1 -0
- package/dist-esm/src/operations/domainServices.d.ts +127 -0
- package/dist-esm/src/operations/domainServices.d.ts.map +1 -0
- package/dist-esm/src/operations/domainServices.js +520 -0
- package/dist-esm/src/operations/domainServices.js.map +1 -0
- package/dist-esm/src/operations/index.d.ts +5 -0
- package/dist-esm/src/operations/index.d.ts.map +1 -0
- package/dist-esm/src/operations/index.js +12 -0
- package/dist-esm/src/operations/index.js.map +1 -0
- package/dist-esm/src/operations/ouContainerOperationGrp.d.ts +111 -0
- package/dist-esm/src/operations/ouContainerOperationGrp.d.ts.map +1 -0
- package/dist-esm/src/operations/ouContainerOperationGrp.js +441 -0
- package/dist-esm/src/operations/ouContainerOperationGrp.js.map +1 -0
- package/dist-esm/src/operations/ouContainerOperations.d.ts +32 -0
- package/dist-esm/src/operations/ouContainerOperations.d.ts.map +1 -0
- package/dist-esm/src/operations/ouContainerOperations.js +120 -0
- package/dist-esm/src/operations/ouContainerOperations.js.map +1 -0
- package/dist-esm/src/operationsInterfaces/domainServiceOperations.d.ts +11 -0
- package/dist-esm/src/operationsInterfaces/domainServiceOperations.d.ts.map +1 -0
- package/dist-esm/src/operationsInterfaces/domainServiceOperations.js +9 -0
- package/dist-esm/src/operationsInterfaces/domainServiceOperations.js.map +1 -0
- package/dist-esm/src/operationsInterfaces/domainServices.d.ts +87 -0
- package/dist-esm/src/operationsInterfaces/domainServices.d.ts.map +1 -0
- package/dist-esm/src/operationsInterfaces/domainServices.js +9 -0
- package/dist-esm/src/operationsInterfaces/domainServices.js.map +1 -0
- package/dist-esm/src/operationsInterfaces/index.d.ts +5 -0
- package/dist-esm/src/operationsInterfaces/index.d.ts.map +1 -0
- package/dist-esm/src/operationsInterfaces/index.js +12 -0
- package/dist-esm/src/operationsInterfaces/index.js.map +1 -0
- package/dist-esm/src/operationsInterfaces/ouContainerOperationGrp.d.ts +84 -0
- package/dist-esm/src/operationsInterfaces/ouContainerOperationGrp.d.ts.map +1 -0
- package/dist-esm/src/operationsInterfaces/ouContainerOperationGrp.js +9 -0
- package/dist-esm/src/operationsInterfaces/ouContainerOperationGrp.js.map +1 -0
- package/dist-esm/src/operationsInterfaces/ouContainerOperations.d.ts +11 -0
- package/dist-esm/src/operationsInterfaces/ouContainerOperations.d.ts.map +1 -0
- package/dist-esm/src/operationsInterfaces/ouContainerOperations.js +9 -0
- package/dist-esm/src/operationsInterfaces/ouContainerOperations.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-domainservices.api.md +591 -0
- package/rollup.config.js +184 -27
- package/src/domainServicesResourceProvider.ts +92 -0
- package/src/index.ts +12 -0
- package/src/lroImpl.ts +34 -0
- package/src/models/index.ts +868 -0
- package/src/models/mappers.ts +1069 -0
- package/src/models/parameters.ts +136 -0
- package/src/operations/domainServiceOperations.ts +137 -0
- package/src/operations/domainServices.ts +690 -0
- package/{lib → src}/operations/index.ts +5 -5
- package/src/operations/ouContainerOperationGrp.ts +632 -0
- package/src/operations/ouContainerOperations.ts +137 -0
- package/src/operationsInterfaces/domainServiceOperations.ts +25 -0
- package/src/operationsInterfaces/domainServices.ts +154 -0
- package/src/operationsInterfaces/index.ts +12 -0
- package/src/operationsInterfaces/ouContainerOperationGrp.ts +157 -0
- package/src/operationsInterfaces/ouContainerOperations.ts +25 -0
- package/tsconfig.json +4 -4
- package/types/arm-domainservices.d.ts +1062 -0
- package/types/tsdoc-metadata.json +11 -0
- package/dist/arm-domainservices.js +0 -1223
- package/dist/arm-domainservices.js.map +0 -1
- package/dist/arm-domainservices.min.js +0 -1
- package/dist/arm-domainservices.min.js.map +0 -1
- package/esm/domainservicesManagementClient.d.ts +0 -20
- package/esm/domainservicesManagementClient.d.ts.map +0 -1
- package/esm/domainservicesManagementClient.js +0 -35
- package/esm/domainservicesManagementClient.js.map +0 -1
- package/esm/domainservicesManagementClientContext.d.ts +0 -17
- package/esm/domainservicesManagementClientContext.d.ts.map +0 -1
- package/esm/domainservicesManagementClientContext.js +0 -57
- package/esm/domainservicesManagementClientContext.js.map +0 -1
- package/esm/models/domainServiceOperationsMappers.d.ts +0 -2
- package/esm/models/domainServiceOperationsMappers.d.ts.map +0 -1
- package/esm/models/domainServiceOperationsMappers.js +0 -11
- package/esm/models/domainServiceOperationsMappers.js.map +0 -1
- package/esm/models/domainServicesMappers.d.ts +0 -2
- package/esm/models/domainServicesMappers.d.ts.map +0 -1
- package/esm/models/domainServicesMappers.js +0 -11
- package/esm/models/domainServicesMappers.js.map +0 -1
- package/esm/models/index.d.ts +0 -693
- 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 -15
- package/esm/models/mappers.d.ts.map +0 -1
- package/esm/models/mappers.js +0 -498
- package/esm/models/mappers.js.map +0 -1
- package/esm/models/parameters.d.ts +0 -8
- package/esm/models/parameters.d.ts.map +0 -1
- package/esm/models/parameters.js +0 -76
- package/esm/models/parameters.js.map +0 -1
- package/esm/operations/domainServiceOperations.d.ts +0 -46
- package/esm/operations/domainServiceOperations.d.ts.map +0 -1
- package/esm/operations/domainServiceOperations.js +0 -77
- package/esm/operations/domainServiceOperations.js.map +0 -1
- package/esm/operations/domainServices.d.ts +0 -189
- package/esm/operations/domainServices.d.ts.map +0 -1
- package/esm/operations/domainServices.js +0 -356
- package/esm/operations/domainServices.js.map +0 -1
- package/esm/operations/index.d.ts +0 -3
- package/esm/operations/index.d.ts.map +0 -1
- package/esm/operations/index.js +0 -12
- package/esm/operations/index.js.map +0 -1
- package/lib/domainservicesManagementClient.ts +0 -45
- package/lib/domainservicesManagementClientContext.ts +0 -63
- package/lib/models/domainServiceOperationsMappers.ts +0 -17
- package/lib/models/domainServicesMappers.ts +0 -23
- package/lib/models/index.ts +0 -736
- package/lib/models/mappers.ts +0 -526
- package/lib/models/parameters.ts +0 -78
- package/lib/operations/domainServiceOperations.ts +0 -123
- package/lib/operations/domainServices.ts +0 -513
@@ -1 +0,0 @@
|
|
1
|
-
{"version":3,"file":"arm-domainservices.js","sources":["../node_modules/tslib/tslib.es6.js","../esm/models/index.js","../esm/models/mappers.js","../esm/models/domainServiceOperationsMappers.js","../esm/models/parameters.js","../esm/operations/domainServiceOperations.js","../esm/models/domainServicesMappers.js","../esm/operations/domainServices.js","../esm/operations/index.js","../esm/domainservicesManagementClientContext.js","../esm/domainservicesManagementClient.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 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 location: {\n serializedName: \"location\",\n type: {\n name: \"String\"\n }\n },\n tags: {\n serializedName: \"tags\",\n type: {\n name: \"Dictionary\",\n value: {\n type: {\n name: \"String\"\n }\n }\n }\n },\n etag: {\n serializedName: \"etag\",\n type: {\n name: \"String\"\n }\n }\n }\n }\n};\nexport var LdapsSettings = {\n serializedName: \"LdapsSettings\",\n type: {\n name: \"Composite\",\n className: \"LdapsSettings\",\n modelProperties: {\n ldaps: {\n serializedName: \"ldaps\",\n type: {\n name: \"String\"\n }\n },\n pfxCertificate: {\n serializedName: \"pfxCertificate\",\n type: {\n name: \"String\"\n }\n },\n pfxCertificatePassword: {\n serializedName: \"pfxCertificatePassword\",\n type: {\n name: \"String\"\n }\n },\n publicCertificate: {\n readOnly: true,\n serializedName: \"publicCertificate\",\n type: {\n name: \"String\"\n }\n },\n certificateThumbprint: {\n readOnly: true,\n serializedName: \"certificateThumbprint\",\n type: {\n name: \"String\"\n }\n },\n certificateNotAfter: {\n readOnly: true,\n serializedName: \"certificateNotAfter\",\n type: {\n name: \"DateTime\"\n }\n },\n externalAccess: {\n serializedName: \"externalAccess\",\n type: {\n name: \"String\"\n }\n },\n externalAccessIpAddress: {\n readOnly: true,\n serializedName: \"externalAccessIpAddress\",\n type: {\n name: \"String\"\n }\n }\n }\n }\n};\nexport var HealthMonitor = {\n serializedName: \"HealthMonitor\",\n type: {\n name: \"Composite\",\n className: \"HealthMonitor\",\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 details: {\n readOnly: true,\n serializedName: \"details\",\n type: {\n name: \"String\"\n }\n }\n }\n }\n};\nexport var HealthAlert = {\n serializedName: \"HealthAlert\",\n type: {\n name: \"Composite\",\n className: \"HealthAlert\",\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 issue: {\n readOnly: true,\n serializedName: \"issue\",\n type: {\n name: \"String\"\n }\n },\n severity: {\n readOnly: true,\n serializedName: \"severity\",\n type: {\n name: \"String\"\n }\n },\n raised: {\n readOnly: true,\n serializedName: \"raised\",\n type: {\n name: \"DateTime\"\n }\n },\n lastDetected: {\n readOnly: true,\n serializedName: \"lastDetected\",\n type: {\n name: \"DateTime\"\n }\n },\n resolutionUri: {\n readOnly: true,\n serializedName: \"resolutionUri\",\n type: {\n name: \"String\"\n }\n }\n }\n }\n};\nexport var NotificationSettings = {\n serializedName: \"NotificationSettings\",\n type: {\n name: \"Composite\",\n className: \"NotificationSettings\",\n modelProperties: {\n notifyGlobalAdmins: {\n serializedName: \"notifyGlobalAdmins\",\n type: {\n name: \"String\"\n }\n },\n notifyDcAdmins: {\n serializedName: \"notifyDcAdmins\",\n type: {\n name: \"String\"\n }\n },\n additionalRecipients: {\n serializedName: \"additionalRecipients\",\n type: {\n name: \"Sequence\",\n element: {\n type: {\n name: \"String\"\n }\n }\n }\n }\n }\n }\n};\nexport var DomainSecuritySettings = {\n serializedName: \"DomainSecuritySettings\",\n type: {\n name: \"Composite\",\n className: \"DomainSecuritySettings\",\n modelProperties: {\n ntlmV1: {\n serializedName: \"ntlmV1\",\n type: {\n name: \"String\"\n }\n },\n tlsV1: {\n serializedName: \"tlsV1\",\n type: {\n name: \"String\"\n }\n },\n syncNtlmPasswords: {\n serializedName: \"syncNtlmPasswords\",\n type: {\n name: \"String\"\n }\n }\n }\n }\n};\nexport var DomainService = {\n serializedName: \"DomainService\",\n type: {\n name: \"Composite\",\n className: \"DomainService\",\n modelProperties: tslib_1.__assign({}, Resource.type.modelProperties, { tenantId: {\n readOnly: true,\n serializedName: \"properties.tenantId\",\n type: {\n name: \"String\"\n }\n }, domainName: {\n serializedName: \"properties.domainName\",\n type: {\n name: \"String\"\n }\n }, vnetSiteId: {\n readOnly: true,\n serializedName: \"properties.vnetSiteId\",\n type: {\n name: \"String\"\n }\n }, subnetId: {\n serializedName: \"properties.subnetId\",\n type: {\n name: \"String\"\n }\n }, ldapsSettings: {\n serializedName: \"properties.ldapsSettings\",\n type: {\n name: \"Composite\",\n className: \"LdapsSettings\"\n }\n }, healthLastEvaluated: {\n readOnly: true,\n serializedName: \"properties.healthLastEvaluated\",\n type: {\n name: \"DateTime\"\n }\n }, healthMonitors: {\n readOnly: true,\n serializedName: \"properties.healthMonitors\",\n type: {\n name: \"Sequence\",\n element: {\n type: {\n name: \"Composite\",\n className: \"HealthMonitor\"\n }\n }\n }\n }, healthAlerts: {\n readOnly: true,\n serializedName: \"properties.healthAlerts\",\n type: {\n name: \"Sequence\",\n element: {\n type: {\n name: \"Composite\",\n className: \"HealthAlert\"\n }\n }\n }\n }, notificationSettings: {\n serializedName: \"properties.notificationSettings\",\n type: {\n name: \"Composite\",\n className: \"NotificationSettings\"\n }\n }, domainSecuritySettings: {\n serializedName: \"properties.domainSecuritySettings\",\n type: {\n name: \"Composite\",\n className: \"DomainSecuritySettings\"\n }\n }, filteredSync: {\n serializedName: \"properties.filteredSync\",\n type: {\n name: \"String\"\n }\n }, domainControllerIpAddress: {\n readOnly: true,\n serializedName: \"properties.domainControllerIpAddress\",\n type: {\n name: \"Sequence\",\n element: {\n type: {\n name: \"String\"\n }\n }\n }\n }, serviceStatus: {\n readOnly: true,\n serializedName: \"properties.serviceStatus\",\n type: {\n name: \"String\"\n }\n }, provisioningState: {\n readOnly: true,\n serializedName: \"properties.provisioningState\",\n type: {\n name: \"String\"\n }\n } })\n }\n};\nexport var OperationDisplayInfo = {\n serializedName: \"OperationDisplayInfo\",\n type: {\n name: \"Composite\",\n className: \"OperationDisplayInfo\",\n modelProperties: {\n description: {\n serializedName: \"description\",\n type: {\n name: \"String\"\n }\n },\n operation: {\n serializedName: \"operation\",\n type: {\n name: \"String\"\n }\n },\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 }\n }\n};\nexport var OperationEntity = {\n serializedName: \"OperationEntity\",\n type: {\n name: \"Composite\",\n className: \"OperationEntity\",\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: \"OperationDisplayInfo\"\n }\n },\n origin: {\n serializedName: \"origin\",\n type: {\n name: \"String\"\n }\n }\n }\n }\n};\nexport var OperationEntityListResult = {\n serializedName: \"OperationEntityListResult\",\n type: {\n name: \"Composite\",\n className: \"OperationEntityListResult\",\n modelProperties: {\n value: {\n serializedName: \"\",\n type: {\n name: \"Sequence\",\n element: {\n type: {\n name: \"Composite\",\n className: \"OperationEntity\"\n }\n }\n }\n },\n nextLink: {\n readOnly: true,\n serializedName: \"nextLink\",\n type: {\n name: \"String\"\n }\n }\n }\n }\n};\nexport var DomainServiceListResult = {\n serializedName: \"DomainServiceListResult\",\n type: {\n name: \"Composite\",\n className: \"DomainServiceListResult\",\n modelProperties: {\n value: {\n serializedName: \"\",\n type: {\n name: \"Sequence\",\n element: {\n type: {\n name: \"Composite\",\n className: \"DomainService\"\n }\n }\n }\n },\n nextLink: {\n readOnly: true,\n serializedName: \"nextLink\",\n type: {\n name: \"String\"\n }\n }\n }\n }\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 { OperationEntityListResult, OperationEntity, OperationDisplayInfo, CloudError } from \"../models/mappers\";\n//# sourceMappingURL=domainServiceOperationsMappers.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 domainServiceName = {\n parameterPath: \"domainServiceName\",\n mapper: {\n required: true,\n serializedName: \"domainServiceName\",\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 Pattern: /^[-\\w\\._\\(\\)]+$/\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 msRest from \"@azure/ms-rest-js\";\nimport * as Mappers from \"../models/domainServiceOperationsMappers\";\nimport * as Parameters from \"../models/parameters\";\n/** Class representing a DomainServiceOperations. */\nvar DomainServiceOperations = /** @class */ (function () {\n /**\n * Create a DomainServiceOperations.\n * @param {DomainservicesManagementClientContext} client Reference to the service client.\n */\n function DomainServiceOperations(client) {\n this.client = client;\n }\n DomainServiceOperations.prototype.list = function (options, callback) {\n return this.client.sendOperationRequest({\n options: options\n }, listOperationSpec, callback);\n };\n DomainServiceOperations.prototype.listNext = function (nextPageLink, options, callback) {\n return this.client.sendOperationRequest({\n nextPageLink: nextPageLink,\n options: options\n }, listNextOperationSpec, callback);\n };\n return DomainServiceOperations;\n}());\nexport { DomainServiceOperations };\n// Operation Specifications\nvar serializer = new msRest.Serializer(Mappers);\nvar listOperationSpec = {\n httpMethod: \"GET\",\n path: \"providers/Microsoft.AAD/operations\",\n queryParameters: [\n Parameters.apiVersion\n ],\n headerParameters: [\n Parameters.acceptLanguage\n ],\n responses: {\n 200: {\n bodyMapper: Mappers.OperationEntityListResult\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.OperationEntityListResult\n },\n default: {\n bodyMapper: Mappers.CloudError\n }\n },\n serializer: serializer\n};\n//# sourceMappingURL=domainServiceOperations.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 { DomainServiceListResult, DomainService, Resource, BaseResource, LdapsSettings, HealthMonitor, HealthAlert, NotificationSettings, DomainSecuritySettings, CloudError } from \"../models/mappers\";\n//# sourceMappingURL=domainServicesMappers.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/domainServicesMappers\";\nimport * as Parameters from \"../models/parameters\";\n/** Class representing a DomainServices. */\nvar DomainServices = /** @class */ (function () {\n /**\n * Create a DomainServices.\n * @param {DomainservicesManagementClientContext} client Reference to the service client.\n */\n function DomainServices(client) {\n this.client = client;\n }\n DomainServices.prototype.list = function (options, callback) {\n return this.client.sendOperationRequest({\n options: options\n }, listOperationSpec, callback);\n };\n DomainServices.prototype.listByResourceGroup = function (resourceGroupName, options, callback) {\n return this.client.sendOperationRequest({\n resourceGroupName: resourceGroupName,\n options: options\n }, listByResourceGroupOperationSpec, callback);\n };\n /**\n * The Create Domain Service operation creates a new domain service with the specified parameters.\n * If the specific service already exists, then any patchable properties will be updated and any\n * immutable properties will remain unchanged.\n * @summary Create or Update Domain Service (PUT Resource)\n * @param resourceGroupName The name of the resource group within the user's subscription. The name\n * is case insensitive.\n * @param domainServiceName The name of the domain service.\n * @param domainService Properties supplied to the Create or Update a Domain Service operation.\n * @param [options] The optional parameters\n * @returns Promise<Models.DomainServicesCreateOrUpdateResponse>\n */\n DomainServices.prototype.createOrUpdate = function (resourceGroupName, domainServiceName, domainService, options) {\n return this.beginCreateOrUpdate(resourceGroupName, domainServiceName, domainService, options)\n .then(function (lroPoller) { return lroPoller.pollUntilFinished(); });\n };\n DomainServices.prototype.get = function (resourceGroupName, domainServiceName, options, callback) {\n return this.client.sendOperationRequest({\n resourceGroupName: resourceGroupName,\n domainServiceName: domainServiceName,\n options: options\n }, getOperationSpec, callback);\n };\n /**\n * The Delete Domain Service operation deletes an existing Domain Service.\n * @summary Delete Domain Service (DELETE Resource)\n * @param resourceGroupName The name of the resource group within the user's subscription. The name\n * is case insensitive.\n * @param domainServiceName The name of the domain service.\n * @param [options] The optional parameters\n * @returns Promise<Models.DomainServicesDeleteMethodResponse>\n */\n DomainServices.prototype.deleteMethod = function (resourceGroupName, domainServiceName, options) {\n return this.beginDeleteMethod(resourceGroupName, domainServiceName, options)\n .then(function (lroPoller) { return lroPoller.pollUntilFinished(); });\n };\n /**\n * The Update Domain Service operation can be used to update the existing deployment. The update\n * call only supports the properties listed in the PATCH body.\n * @summary Update Domain Service (PATCH Resource)\n * @param resourceGroupName The name of the resource group within the user's subscription. The name\n * is case insensitive.\n * @param domainServiceName The name of the domain service.\n * @param domainService Properties supplied to the Update a Domain Service operation.\n * @param [options] The optional parameters\n * @returns Promise<Models.DomainServicesUpdateResponse>\n */\n DomainServices.prototype.update = function (resourceGroupName, domainServiceName, domainService, options) {\n return this.beginUpdate(resourceGroupName, domainServiceName, domainService, options)\n .then(function (lroPoller) { return lroPoller.pollUntilFinished(); });\n };\n /**\n * The Create Domain Service operation creates a new domain service with the specified parameters.\n * If the specific service already exists, then any patchable properties will be updated and any\n * immutable properties will remain unchanged.\n * @summary Create or Update Domain Service (PUT Resource)\n * @param resourceGroupName The name of the resource group within the user's subscription. The name\n * is case insensitive.\n * @param domainServiceName The name of the domain service.\n * @param domainService Properties supplied to the Create or Update a Domain Service operation.\n * @param [options] The optional parameters\n * @returns Promise<msRestAzure.LROPoller>\n */\n DomainServices.prototype.beginCreateOrUpdate = function (resourceGroupName, domainServiceName, domainService, options) {\n return this.client.sendLRORequest({\n resourceGroupName: resourceGroupName,\n domainServiceName: domainServiceName,\n domainService: domainService,\n options: options\n }, beginCreateOrUpdateOperationSpec, options);\n };\n /**\n * The Delete Domain Service operation deletes an existing Domain Service.\n * @summary Delete Domain Service (DELETE Resource)\n * @param resourceGroupName The name of the resource group within the user's subscription. The name\n * is case insensitive.\n * @param domainServiceName The name of the domain service.\n * @param [options] The optional parameters\n * @returns Promise<msRestAzure.LROPoller>\n */\n DomainServices.prototype.beginDeleteMethod = function (resourceGroupName, domainServiceName, options) {\n return this.client.sendLRORequest({\n resourceGroupName: resourceGroupName,\n domainServiceName: domainServiceName,\n options: options\n }, beginDeleteMethodOperationSpec, options);\n };\n /**\n * The Update Domain Service operation can be used to update the existing deployment. The update\n * call only supports the properties listed in the PATCH body.\n * @summary Update Domain Service (PATCH Resource)\n * @param resourceGroupName The name of the resource group within the user's subscription. The name\n * is case insensitive.\n * @param domainServiceName The name of the domain service.\n * @param domainService Properties supplied to the Update a Domain Service operation.\n * @param [options] The optional parameters\n * @returns Promise<msRestAzure.LROPoller>\n */\n DomainServices.prototype.beginUpdate = function (resourceGroupName, domainServiceName, domainService, options) {\n return this.client.sendLRORequest({\n resourceGroupName: resourceGroupName,\n domainServiceName: domainServiceName,\n domainService: domainService,\n options: options\n }, beginUpdateOperationSpec, options);\n };\n DomainServices.prototype.listNext = function (nextPageLink, options, callback) {\n return this.client.sendOperationRequest({\n nextPageLink: nextPageLink,\n options: options\n }, listNextOperationSpec, callback);\n };\n DomainServices.prototype.listByResourceGroupNext = function (nextPageLink, options, callback) {\n return this.client.sendOperationRequest({\n nextPageLink: nextPageLink,\n options: options\n }, listByResourceGroupNextOperationSpec, callback);\n };\n return DomainServices;\n}());\nexport { DomainServices };\n// Operation Specifications\nvar serializer = new msRest.Serializer(Mappers);\nvar listOperationSpec = {\n httpMethod: \"GET\",\n path: \"subscriptions/{subscriptionId}/providers/Microsoft.AAD/domainServices\",\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.DomainServiceListResult\n },\n default: {\n bodyMapper: Mappers.CloudError\n }\n },\n serializer: serializer\n};\nvar listByResourceGroupOperationSpec = {\n httpMethod: \"GET\",\n path: \"subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.AAD/domainServices\",\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.DomainServiceListResult\n },\n default: {\n bodyMapper: Mappers.CloudError\n }\n },\n serializer: serializer\n};\nvar getOperationSpec = {\n httpMethod: \"GET\",\n path: \"subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.AAD/domainServices/{domainServiceName}\",\n urlParameters: [\n Parameters.subscriptionId,\n Parameters.resourceGroupName,\n Parameters.domainServiceName\n ],\n queryParameters: [\n Parameters.apiVersion\n ],\n headerParameters: [\n Parameters.acceptLanguage\n ],\n responses: {\n 200: {\n bodyMapper: Mappers.DomainService\n },\n default: {\n bodyMapper: Mappers.CloudError\n }\n },\n serializer: serializer\n};\nvar beginCreateOrUpdateOperationSpec = {\n httpMethod: \"PUT\",\n path: \"subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.AAD/domainServices/{domainServiceName}\",\n urlParameters: [\n Parameters.subscriptionId,\n Parameters.resourceGroupName,\n Parameters.domainServiceName\n ],\n queryParameters: [\n Parameters.apiVersion\n ],\n headerParameters: [\n Parameters.acceptLanguage\n ],\n requestBody: {\n parameterPath: \"domainService\",\n mapper: tslib_1.__assign({}, Mappers.DomainService, { required: true })\n },\n responses: {\n 200: {\n bodyMapper: Mappers.DomainService\n },\n 201: {\n bodyMapper: Mappers.DomainService\n },\n 202: {\n bodyMapper: Mappers.DomainService\n },\n default: {\n bodyMapper: Mappers.CloudError\n }\n },\n serializer: serializer\n};\nvar beginDeleteMethodOperationSpec = {\n httpMethod: \"DELETE\",\n path: \"subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.AAD/domainServices/{domainServiceName}\",\n urlParameters: [\n Parameters.subscriptionId,\n Parameters.resourceGroupName,\n Parameters.domainServiceName\n ],\n queryParameters: [\n Parameters.apiVersion\n ],\n headerParameters: [\n Parameters.acceptLanguage\n ],\n responses: {\n 202: {\n bodyMapper: Mappers.DomainService\n },\n 204: {},\n default: {\n bodyMapper: Mappers.CloudError\n }\n },\n serializer: serializer\n};\nvar beginUpdateOperationSpec = {\n httpMethod: \"PATCH\",\n path: \"subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.AAD/domainServices/{domainServiceName}\",\n urlParameters: [\n Parameters.subscriptionId,\n Parameters.resourceGroupName,\n Parameters.domainServiceName\n ],\n queryParameters: [\n Parameters.apiVersion\n ],\n headerParameters: [\n Parameters.acceptLanguage\n ],\n requestBody: {\n parameterPath: \"domainService\",\n mapper: tslib_1.__assign({}, Mappers.DomainService, { required: true })\n },\n responses: {\n 200: {\n bodyMapper: Mappers.DomainService\n },\n 202: {\n bodyMapper: Mappers.DomainService\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.DomainServiceListResult\n },\n default: {\n bodyMapper: Mappers.CloudError\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.DomainServiceListResult\n },\n default: {\n bodyMapper: Mappers.CloudError\n }\n },\n serializer: serializer\n};\n//# sourceMappingURL=domainServices.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 \"./domainServiceOperations\";\nexport * from \"./domainServices\";\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-domainservices\";\nvar packageVersion = \"0.1.0\";\nvar DomainservicesManagementClientContext = /** @class */ (function (_super) {\n tslib_1.__extends(DomainservicesManagementClientContext, _super);\n /**\n * Initializes a new instance of the DomainservicesManagementClient class.\n * @param credentials Credentials needed for the client to connect to Azure.\n * @param subscriptionId Gets subscription credentials which uniquely identify the Microsoft Azure\n * subscription. The subscription ID forms part of the URI for every service call.\n * @param [options] The parameter options\n */\n function DomainservicesManagementClientContext(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 = '2017-06-01';\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 DomainservicesManagementClientContext;\n}(msRestAzure.AzureServiceClient));\nexport { DomainservicesManagementClientContext };\n//# sourceMappingURL=domainservicesManagementClientContext.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 { DomainservicesManagementClientContext } from \"./domainservicesManagementClientContext\";\nvar DomainservicesManagementClient = /** @class */ (function (_super) {\n tslib_1.__extends(DomainservicesManagementClient, _super);\n /**\n * Initializes a new instance of the DomainservicesManagementClient class.\n * @param credentials Credentials needed for the client to connect to Azure.\n * @param subscriptionId Gets subscription credentials which uniquely identify the Microsoft Azure\n * subscription. The subscription ID forms part of the URI for every service call.\n * @param [options] The parameter options\n */\n function DomainservicesManagementClient(credentials, subscriptionId, options) {\n var _this = _super.call(this, credentials, subscriptionId, options) || this;\n _this.domainServiceOperations = new operations.DomainServiceOperations(_this);\n _this.domainServices = new operations.DomainServices(_this);\n return _this;\n }\n return DomainservicesManagementClient;\n}(DomainservicesManagementClientContext));\n// Operation Specifications\nexport { DomainservicesManagementClient, DomainservicesManagementClientContext, Models as DomainservicesManagementModels, Mappers as DomainservicesManagementMappers };\nexport * from \"./operations\";\n//# sourceMappingURL=domainservicesManagementClient.js.map"],"names":["CloudErrorMapper","BaseResourceMapper","tslib_1.__assign","nextPageLink","msRest.Serializer","Parameters.apiVersion","Parameters.acceptLanguage","Mappers.OperationEntityListResult","Mappers.CloudError","Parameters.nextPageLink","listOperationSpec","resourceGroupName","domainServiceName","listNextOperationSpec","serializer","Mappers","Parameters.subscriptionId","Mappers.DomainServiceListResult","Parameters.resourceGroupName","Parameters.domainServiceName","Mappers.DomainService","tslib_1.__extends","msRestAzure.getDefaultUserAgentValue","msRestAzure.AzureServiceClient","operations.DomainServiceOperations","operations.DomainServices"],"mappings":"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"}
|
@@ -1 +0,0 @@
|
|
1
|
-
!function(e,t){"object"==typeof exports&&"undefined"!=typeof module?t(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"],t):t((e.Azure=e.Azure||{},e.Azure.ArmDomainservices={}),e.msRestAzure,e.msRest)}(this,function(e,s,t){"use strict";var i=function(e,t){return(i=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var r in t)t.hasOwnProperty(r)&&(e[r]=t[r])})(e,t)};function r(e,t){function r(){this.constructor=e}i(e,t),e.prototype=null===t?Object.create(t):(r.prototype=t.prototype,new r)}var a=function(){return(a=Object.assign||function(e){for(var t,r=1,i=arguments.length;r<i;r++)for(var a in t=arguments[r])Object.prototype.hasOwnProperty.call(t,a)&&(e[a]=t[a]);return e}).apply(this,arguments)},n=Object.freeze({}),o=s.CloudErrorMapper,p=s.BaseResourceMapper,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"}},location:{serializedName:"location",type:{name:"String"}},tags:{serializedName:"tags",type:{name:"Dictionary",value:{type:{name:"String"}}}},etag:{serializedName:"etag",type:{name:"String"}}}}},l={serializedName:"LdapsSettings",type:{name:"Composite",className:"LdapsSettings",modelProperties:{ldaps:{serializedName:"ldaps",type:{name:"String"}},pfxCertificate:{serializedName:"pfxCertificate",type:{name:"String"}},pfxCertificatePassword:{serializedName:"pfxCertificatePassword",type:{name:"String"}},publicCertificate:{readOnly:!0,serializedName:"publicCertificate",type:{name:"String"}},certificateThumbprint:{readOnly:!0,serializedName:"certificateThumbprint",type:{name:"String"}},certificateNotAfter:{readOnly:!0,serializedName:"certificateNotAfter",type:{name:"DateTime"}},externalAccess:{serializedName:"externalAccess",type:{name:"String"}},externalAccessIpAddress:{readOnly:!0,serializedName:"externalAccessIpAddress",type:{name:"String"}}}}},d={serializedName:"HealthMonitor",type:{name:"Composite",className:"HealthMonitor",modelProperties:{id:{readOnly:!0,serializedName:"id",type:{name:"String"}},name:{readOnly:!0,serializedName:"name",type:{name:"String"}},details:{readOnly:!0,serializedName:"details",type:{name:"String"}}}}},u={serializedName:"HealthAlert",type:{name:"Composite",className:"HealthAlert",modelProperties:{id:{readOnly:!0,serializedName:"id",type:{name:"String"}},name:{readOnly:!0,serializedName:"name",type:{name:"String"}},issue:{readOnly:!0,serializedName:"issue",type:{name:"String"}},severity:{readOnly:!0,serializedName:"severity",type:{name:"String"}},raised:{readOnly:!0,serializedName:"raised",type:{name:"DateTime"}},lastDetected:{readOnly:!0,serializedName:"lastDetected",type:{name:"DateTime"}},resolutionUri:{readOnly:!0,serializedName:"resolutionUri",type:{name:"String"}}}}},c={serializedName:"NotificationSettings",type:{name:"Composite",className:"NotificationSettings",modelProperties:{notifyGlobalAdmins:{serializedName:"notifyGlobalAdmins",type:{name:"String"}},notifyDcAdmins:{serializedName:"notifyDcAdmins",type:{name:"String"}},additionalRecipients:{serializedName:"additionalRecipients",type:{name:"Sequence",element:{type:{name:"String"}}}}}}},y={serializedName:"DomainSecuritySettings",type:{name:"Composite",className:"DomainSecuritySettings",modelProperties:{ntlmV1:{serializedName:"ntlmV1",type:{name:"String"}},tlsV1:{serializedName:"tlsV1",type:{name:"String"}},syncNtlmPasswords:{serializedName:"syncNtlmPasswords",type:{name:"String"}}}}},g={serializedName:"DomainService",type:{name:"Composite",className:"DomainService",modelProperties:a({},m.type.modelProperties,{tenantId:{readOnly:!0,serializedName:"properties.tenantId",type:{name:"String"}},domainName:{serializedName:"properties.domainName",type:{name:"String"}},vnetSiteId:{readOnly:!0,serializedName:"properties.vnetSiteId",type:{name:"String"}},subnetId:{serializedName:"properties.subnetId",type:{name:"String"}},ldapsSettings:{serializedName:"properties.ldapsSettings",type:{name:"Composite",className:"LdapsSettings"}},healthLastEvaluated:{readOnly:!0,serializedName:"properties.healthLastEvaluated",type:{name:"DateTime"}},healthMonitors:{readOnly:!0,serializedName:"properties.healthMonitors",type:{name:"Sequence",element:{type:{name:"Composite",className:"HealthMonitor"}}}},healthAlerts:{readOnly:!0,serializedName:"properties.healthAlerts",type:{name:"Sequence",element:{type:{name:"Composite",className:"HealthAlert"}}}},notificationSettings:{serializedName:"properties.notificationSettings",type:{name:"Composite",className:"NotificationSettings"}},domainSecuritySettings:{serializedName:"properties.domainSecuritySettings",type:{name:"Composite",className:"DomainSecuritySettings"}},filteredSync:{serializedName:"properties.filteredSync",type:{name:"String"}},domainControllerIpAddress:{readOnly:!0,serializedName:"properties.domainControllerIpAddress",type:{name:"Sequence",element:{type:{name:"String"}}}},serviceStatus:{readOnly:!0,serializedName:"properties.serviceStatus",type:{name:"String"}},provisioningState:{readOnly:!0,serializedName:"properties.provisioningState",type:{name:"String"}}})}},S={serializedName:"OperationDisplayInfo",type:{name:"Composite",className:"OperationDisplayInfo",modelProperties:{description:{serializedName:"description",type:{name:"String"}},operation:{serializedName:"operation",type:{name:"String"}},provider:{serializedName:"provider",type:{name:"String"}},resource:{serializedName:"resource",type:{name:"String"}}}}},N={serializedName:"OperationEntity",type:{name:"Composite",className:"OperationEntity",modelProperties:{name:{serializedName:"name",type:{name:"String"}},display:{serializedName:"display",type:{name:"Composite",className:"OperationDisplayInfo"}},origin:{serializedName:"origin",type:{name:"String"}}}}},h={serializedName:"OperationEntityListResult",type:{name:"Composite",className:"OperationEntityListResult",modelProperties:{value:{serializedName:"",type:{name:"Sequence",element:{type:{name:"Composite",className:"OperationEntity"}}}},nextLink:{readOnly:!0,serializedName:"nextLink",type:{name:"String"}}}}},f={serializedName:"DomainServiceListResult",type:{name:"Composite",className:"DomainServiceListResult",modelProperties:{value:{serializedName:"",type:{name:"Sequence",element:{type:{name:"Composite",className:"DomainService"}}}},nextLink:{readOnly:!0,serializedName:"nextLink",type:{name:"String"}}}}},z=Object.freeze({CloudError:o,BaseResource:p,Resource:m,LdapsSettings:l,HealthMonitor:d,HealthAlert:u,NotificationSettings:c,DomainSecuritySettings:y,DomainService:g,OperationDisplayInfo:S,OperationEntity:N,OperationEntityListResult:h,DomainServiceListResult:f}),v=Object.freeze({OperationEntityListResult:h,OperationEntity:N,OperationDisplayInfo:S,CloudError:o}),O={parameterPath:"acceptLanguage",mapper:{serializedName:"accept-language",defaultValue:"en-US",type:{name:"String"}}},b={parameterPath:"apiVersion",mapper:{required:!0,serializedName:"api-version",type:{name:"String"}}},M={parameterPath:"domainServiceName",mapper:{required:!0,serializedName:"domainServiceName",type:{name:"String"}}},P={parameterPath:"nextPageLink",mapper:{required:!0,serializedName:"nextLink",type:{name:"String"}},skipEncoding:!0},A={parameterPath:"resourceGroupName",mapper:{required:!0,serializedName:"resourceGroupName",constraints:{MaxLength:90,MinLength:1,Pattern:/^[-\w\._\(\)]+$/},type:{name:"String"}}},D={parameterPath:"subscriptionId",mapper:{required:!0,serializedName:"subscriptionId",type:{name:"String"}}},R=function(){function e(e){this.client=e}return e.prototype.list=function(e,t){return this.client.sendOperationRequest({options:e},L,t)},e.prototype.listNext=function(e,t,r){return this.client.sendOperationRequest({nextPageLink:e,options:t},q,r)},e}(),C=new t.Serializer(v),L={httpMethod:"GET",path:"providers/Microsoft.AAD/operations",queryParameters:[b],headerParameters:[O],responses:{200:{bodyMapper:h},default:{bodyMapper:o}},serializer:C},q={httpMethod:"GET",baseUrl:"https://management.azure.com",path:"{nextLink}",urlParameters:[P],headerParameters:[O],responses:{200:{bodyMapper:h},default:{bodyMapper:o}},serializer:C},x=Object.freeze({DomainServiceListResult:f,DomainService:g,Resource:m,BaseResource:p,LdapsSettings:l,HealthMonitor:d,HealthAlert:u,NotificationSettings:c,DomainSecuritySettings:y,CloudError:o}),E=function(){function e(e){this.client=e}return e.prototype.list=function(e,t){return this.client.sendOperationRequest({options:e},I,t)},e.prototype.listByResourceGroup=function(e,t,r){return this.client.sendOperationRequest({resourceGroupName:e,options:t},T,r)},e.prototype.createOrUpdate=function(e,t,r,i){return this.beginCreateOrUpdate(e,t,r,i).then(function(e){return e.pollUntilFinished()})},e.prototype.get=function(e,t,r,i){return this.client.sendOperationRequest({resourceGroupName:e,domainServiceName:t,options:r},U,i)},e.prototype.deleteMethod=function(e,t,r){return this.beginDeleteMethod(e,t,r).then(function(e){return e.pollUntilFinished()})},e.prototype.update=function(e,t,r,i){return this.beginUpdate(e,t,r,i).then(function(e){return e.pollUntilFinished()})},e.prototype.beginCreateOrUpdate=function(e,t,r,i){return this.client.sendLRORequest({resourceGroupName:e,domainServiceName:t,domainService:r,options:i},w,i)},e.prototype.beginDeleteMethod=function(e,t,r){return this.client.sendLRORequest({resourceGroupName:e,domainServiceName:t,options:r},j,r)},e.prototype.beginUpdate=function(e,t,r,i){return this.client.sendLRORequest({resourceGroupName:e,domainServiceName:t,domainService:r,options:i},k,i)},e.prototype.listNext=function(e,t,r){return this.client.sendOperationRequest({nextPageLink:e,options:t},H,r)},e.prototype.listByResourceGroupNext=function(e,t,r){return this.client.sendOperationRequest({nextPageLink:e,options:t},_,r)},e}(),G=new t.Serializer(x),I={httpMethod:"GET",path:"subscriptions/{subscriptionId}/providers/Microsoft.AAD/domainServices",urlParameters:[D],queryParameters:[b],headerParameters:[O],responses:{200:{bodyMapper:f},default:{bodyMapper:o}},serializer:G},T={httpMethod:"GET",path:"subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.AAD/domainServices",urlParameters:[D,A],queryParameters:[b],headerParameters:[O],responses:{200:{bodyMapper:f},default:{bodyMapper:o}},serializer:G},U={httpMethod:"GET",path:"subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.AAD/domainServices/{domainServiceName}",urlParameters:[D,A,M],queryParameters:[b],headerParameters:[O],responses:{200:{bodyMapper:g},default:{bodyMapper:o}},serializer:G},w={httpMethod:"PUT",path:"subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.AAD/domainServices/{domainServiceName}",urlParameters:[D,A,M],queryParameters:[b],headerParameters:[O],requestBody:{parameterPath:"domainService",mapper:a({},g,{required:!0})},responses:{200:{bodyMapper:g},201:{bodyMapper:g},202:{bodyMapper:g},default:{bodyMapper:o}},serializer:G},j={httpMethod:"DELETE",path:"subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.AAD/domainServices/{domainServiceName}",urlParameters:[D,A,M],queryParameters:[b],headerParameters:[O],responses:{202:{bodyMapper:g},204:{},default:{bodyMapper:o}},serializer:G},k={httpMethod:"PATCH",path:"subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.AAD/domainServices/{domainServiceName}",urlParameters:[D,A,M],queryParameters:[b],headerParameters:[O],requestBody:{parameterPath:"domainService",mapper:a({},g,{required:!0})},responses:{200:{bodyMapper:g},202:{bodyMapper:g},default:{bodyMapper:o}},serializer:G},H={httpMethod:"GET",baseUrl:"https://management.azure.com",path:"{nextLink}",urlParameters:[P],headerParameters:[O],responses:{200:{bodyMapper:f},default:{bodyMapper:o}},serializer:G},_={httpMethod:"GET",baseUrl:"https://management.azure.com",path:"{nextLink}",urlParameters:[P],headerParameters:[O],responses:{200:{bodyMapper:f},default:{bodyMapper:o}},serializer:G},V=function(n){function e(e,t,r){var i=this;if(null==e)throw new Error("'credentials' cannot be null.");if(null==t)throw new Error("'subscriptionId' cannot be null.");if(r||(r={}),!r.userAgent){var a=s.getDefaultUserAgentValue();r.userAgent="@azure/arm-domainservices/0.1.0 "+a}return(i=n.call(this,e,r)||this).apiVersion="2017-06-01",i.acceptLanguage="en-US",i.longRunningOperationRetryTimeout=30,i.baseUri=r.baseUri||i.baseUri||"https://management.azure.com",i.requestContentType="application/json; charset=utf-8",i.credentials=e,i.subscriptionId=t,null!==r.acceptLanguage&&void 0!==r.acceptLanguage&&(i.acceptLanguage=r.acceptLanguage),null!==r.longRunningOperationRetryTimeout&&void 0!==r.longRunningOperationRetryTimeout&&(i.longRunningOperationRetryTimeout=r.longRunningOperationRetryTimeout),i}return r(e,n),e}(s.AzureServiceClient),B=function(a){function e(e,t,r){var i=a.call(this,e,t,r)||this;return i.domainServiceOperations=new R(i),i.domainServices=new E(i),i}return r(e,a),e}(V);e.DomainservicesManagementClient=B,e.DomainservicesManagementClientContext=V,e.DomainservicesManagementModels=n,e.DomainservicesManagementMappers=z,e.DomainServiceOperations=R,e.DomainServices=E,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/domainServiceOperations.js","../esm/operations/domainServices.js","../esm/domainservicesManagementClientContext.js","../esm/domainservicesManagementClient.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","Resource","serializedName","type","name","className","modelProperties","id","readOnly","location","tags","value","etag","LdapsSettings","ldaps","pfxCertificate","pfxCertificatePassword","publicCertificate","certificateThumbprint","certificateNotAfter","externalAccess","externalAccessIpAddress","HealthMonitor","details","HealthAlert","issue","severity","raised","lastDetected","resolutionUri","NotificationSettings","notifyGlobalAdmins","notifyDcAdmins","additionalRecipients","element","DomainSecuritySettings","ntlmV1","tlsV1","syncNtlmPasswords","DomainService","tslib_1.__assign","tenantId","domainName","vnetSiteId","subnetId","ldapsSettings","healthLastEvaluated","healthMonitors","healthAlerts","notificationSettings","domainSecuritySettings","filteredSync","domainControllerIpAddress","serviceStatus","provisioningState","OperationDisplayInfo","description","operation","provider","resource","OperationEntity","display","origin","OperationEntityListResult","nextLink","DomainServiceListResult","acceptLanguage","parameterPath","mapper","defaultValue","apiVersion","required","domainServiceName","nextPageLink","skipEncoding","resourceGroupName","constraints","MaxLength","MinLength","Pattern","subscriptionId","DomainServiceOperations","client","list","options","callback","sendOperationRequest","listOperationSpec","listNext","listNextOperationSpec","serializer","msRest.Serializer","Mappers","httpMethod","path","queryParameters","Parameters.apiVersion","headerParameters","Parameters.acceptLanguage","responses","200","bodyMapper","Mappers.OperationEntityListResult","default","Mappers.CloudError","baseUrl","urlParameters","Parameters.nextPageLink","DomainServices","listByResourceGroup","listByResourceGroupOperationSpec","createOrUpdate","domainService","beginCreateOrUpdate","then","lroPoller","pollUntilFinished","get","getOperationSpec","deleteMethod","beginDeleteMethod","update","beginUpdate","sendLRORequest","beginCreateOrUpdateOperationSpec","beginDeleteMethodOperationSpec","beginUpdateOperationSpec","listByResourceGroupNext","listByResourceGroupNextOperationSpec","Parameters.subscriptionId","Mappers.DomainServiceListResult","Parameters.resourceGroupName","Parameters.domainServiceName","Mappers.DomainService","requestBody","201","202","204","DomainservicesManagementClientContext","_super","credentials","_this","undefined","Error","userAgent","defaultUserAgent","msRestAzure.getDefaultUserAgentValue","packageName","longRunningOperationRetryTimeout","baseUri","requestContentType","tslib_1.__extends","msRestAzure.AzureServiceClient","DomainservicesManagementClient","domainServiceOperations","operations.DomainServiceOperations","domainServices","operations.DomainServices"],"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 { DomainservicesManagementClientContext } from "./domainservicesManagementClientContext";
|
6
|
-
declare class DomainservicesManagementClient extends DomainservicesManagementClientContext {
|
7
|
-
domainServiceOperations: operations.DomainServiceOperations;
|
8
|
-
domainServices: operations.DomainServices;
|
9
|
-
/**
|
10
|
-
* Initializes a new instance of the DomainservicesManagementClient class.
|
11
|
-
* @param credentials Credentials needed for the client to connect to Azure.
|
12
|
-
* @param subscriptionId Gets subscription credentials which uniquely identify the Microsoft Azure
|
13
|
-
* subscription. The subscription ID forms part of the URI for every service call.
|
14
|
-
* @param [options] The parameter options
|
15
|
-
*/
|
16
|
-
constructor(credentials: msRest.ServiceClientCredentials, subscriptionId: string, options?: Models.DomainservicesManagementClientOptions);
|
17
|
-
}
|
18
|
-
export { DomainservicesManagementClient, DomainservicesManagementClientContext, Models as DomainservicesManagementModels, Mappers as DomainservicesManagementMappers };
|
19
|
-
export * from "./operations";
|
20
|
-
//# sourceMappingURL=domainservicesManagementClient.d.ts.map
|
@@ -1 +0,0 @@
|
|
1
|
-
{"version":3,"file":"domainservicesManagementClient.d.ts","sourceRoot":"","sources":["../lib/domainservicesManagementClient.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,qCAAqC,EAAE,MAAM,yCAAyC,CAAC;AAGhG,cAAM,8BAA+B,SAAQ,qCAAqC;IAEhF,uBAAuB,EAAE,UAAU,CAAC,uBAAuB,CAAC;IAC5D,cAAc,EAAE,UAAU,CAAC,cAAc,CAAC;IAE1C;;;;;;OAMG;gBACS,WAAW,EAAE,MAAM,CAAC,wBAAwB,EAAE,cAAc,EAAE,MAAM,EAAE,OAAO,CAAC,EAAE,MAAM,CAAC,qCAAqC;CAKzI;AAID,OAAO,EACL,8BAA8B,EAC9B,qCAAqC,EACrC,MAAM,IAAI,8BAA8B,EACxC,OAAO,IAAI,+BAA+B,EAC3C,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 { DomainservicesManagementClientContext } from "./domainservicesManagementClientContext";
|
15
|
-
var DomainservicesManagementClient = /** @class */ (function (_super) {
|
16
|
-
tslib_1.__extends(DomainservicesManagementClient, _super);
|
17
|
-
/**
|
18
|
-
* Initializes a new instance of the DomainservicesManagementClient class.
|
19
|
-
* @param credentials Credentials needed for the client to connect to Azure.
|
20
|
-
* @param subscriptionId Gets subscription credentials which uniquely identify the Microsoft Azure
|
21
|
-
* subscription. The subscription ID forms part of the URI for every service call.
|
22
|
-
* @param [options] The parameter options
|
23
|
-
*/
|
24
|
-
function DomainservicesManagementClient(credentials, subscriptionId, options) {
|
25
|
-
var _this = _super.call(this, credentials, subscriptionId, options) || this;
|
26
|
-
_this.domainServiceOperations = new operations.DomainServiceOperations(_this);
|
27
|
-
_this.domainServices = new operations.DomainServices(_this);
|
28
|
-
return _this;
|
29
|
-
}
|
30
|
-
return DomainservicesManagementClient;
|
31
|
-
}(DomainservicesManagementClientContext));
|
32
|
-
// Operation Specifications
|
33
|
-
export { DomainservicesManagementClient, DomainservicesManagementClientContext, Models as DomainservicesManagementModels, Mappers as DomainservicesManagementMappers };
|
34
|
-
export * from "./operations";
|
35
|
-
//# sourceMappingURL=domainservicesManagementClient.js.map
|
@@ -1 +0,0 @@
|
|
1
|
-
{"version":3,"file":"domainservicesManagementClient.js","sourceRoot":"","sources":["../lib/domainservicesManagementClient.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,qCAAqC,EAAE,MAAM,yCAAyC,CAAC;AAGhG;IAA6C,0DAAqC;IAKhF;;;;;;OAMG;IACH,wCAAY,WAA4C,EAAE,cAAsB,EAAE,OAAsD;QAAxI,YACE,kBAAM,WAAW,EAAE,cAAc,EAAE,OAAO,CAAC,SAG5C;QAFC,KAAI,CAAC,uBAAuB,GAAG,IAAI,UAAU,CAAC,uBAAuB,CAAC,KAAI,CAAC,CAAC;QAC5E,KAAI,CAAC,cAAc,GAAG,IAAI,UAAU,CAAC,cAAc,CAAC,KAAI,CAAC,CAAC;;IAC5D,CAAC;IACH,qCAAC;AAAD,CAAC,AAjBD,CAA6C,qCAAqC,GAiBjF;AAED,2BAA2B;AAE3B,OAAO,EACL,8BAA8B,EAC9B,qCAAqC,EACrC,MAAM,IAAI,8BAA8B,EACxC,OAAO,IAAI,+BAA+B,EAC3C,CAAC;AACF,cAAc,cAAc,CAAC"}
|
@@ -1,17 +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 DomainservicesManagementClientContext extends msRestAzure.AzureServiceClient {
|
5
|
-
credentials: msRest.ServiceClientCredentials;
|
6
|
-
subscriptionId: string;
|
7
|
-
apiVersion?: string;
|
8
|
-
/**
|
9
|
-
* Initializes a new instance of the DomainservicesManagementClient class.
|
10
|
-
* @param credentials Credentials needed for the client to connect to Azure.
|
11
|
-
* @param subscriptionId Gets subscription credentials which uniquely identify the Microsoft Azure
|
12
|
-
* subscription. The subscription ID forms part of the URI for every service call.
|
13
|
-
* @param [options] The parameter options
|
14
|
-
*/
|
15
|
-
constructor(credentials: msRest.ServiceClientCredentials, subscriptionId: string, options?: Models.DomainservicesManagementClientOptions);
|
16
|
-
}
|
17
|
-
//# sourceMappingURL=domainservicesManagementClientContext.d.ts.map
|
@@ -1 +0,0 @@
|
|
1
|
-
{"version":3,"file":"domainservicesManagementClientContext.d.ts","sourceRoot":"","sources":["../lib/domainservicesManagementClientContext.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,qCAAsC,SAAQ,WAAW,CAAC,kBAAkB;IACvF,WAAW,EAAE,MAAM,CAAC,wBAAwB,CAAC;IAC7C,cAAc,EAAE,MAAM,CAAC;IACvB,UAAU,CAAC,EAAE,MAAM,CAAC;IAEpB;;;;;;OAMG;gBACS,WAAW,EAAE,MAAM,CAAC,wBAAwB,EAAE,cAAc,EAAE,MAAM,EAAE,OAAO,CAAC,EAAE,MAAM,CAAC,qCAAqC;CAiCzI"}
|
@@ -1,57 +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-domainservices";
|
13
|
-
var packageVersion = "0.1.0";
|
14
|
-
var DomainservicesManagementClientContext = /** @class */ (function (_super) {
|
15
|
-
tslib_1.__extends(DomainservicesManagementClientContext, _super);
|
16
|
-
/**
|
17
|
-
* Initializes a new instance of the DomainservicesManagementClient class.
|
18
|
-
* @param credentials Credentials needed for the client to connect to Azure.
|
19
|
-
* @param subscriptionId Gets subscription credentials which uniquely identify the Microsoft Azure
|
20
|
-
* subscription. The subscription ID forms part of the URI for every service call.
|
21
|
-
* @param [options] The parameter options
|
22
|
-
*/
|
23
|
-
function DomainservicesManagementClientContext(credentials, subscriptionId, options) {
|
24
|
-
var _this = this;
|
25
|
-
if (credentials == undefined) {
|
26
|
-
throw new Error('\'credentials\' cannot be null.');
|
27
|
-
}
|
28
|
-
if (subscriptionId == undefined) {
|
29
|
-
throw new Error('\'subscriptionId\' cannot be null.');
|
30
|
-
}
|
31
|
-
if (!options) {
|
32
|
-
options = {};
|
33
|
-
}
|
34
|
-
if (!options.userAgent) {
|
35
|
-
var defaultUserAgent = msRestAzure.getDefaultUserAgentValue();
|
36
|
-
options.userAgent = packageName + "/" + packageVersion + " " + defaultUserAgent;
|
37
|
-
}
|
38
|
-
_this = _super.call(this, credentials, options) || this;
|
39
|
-
_this.apiVersion = '2017-06-01';
|
40
|
-
_this.acceptLanguage = 'en-US';
|
41
|
-
_this.longRunningOperationRetryTimeout = 30;
|
42
|
-
_this.baseUri = options.baseUri || _this.baseUri || "https://management.azure.com";
|
43
|
-
_this.requestContentType = "application/json; charset=utf-8";
|
44
|
-
_this.credentials = credentials;
|
45
|
-
_this.subscriptionId = subscriptionId;
|
46
|
-
if (options.acceptLanguage !== null && options.acceptLanguage !== undefined) {
|
47
|
-
_this.acceptLanguage = options.acceptLanguage;
|
48
|
-
}
|
49
|
-
if (options.longRunningOperationRetryTimeout !== null && options.longRunningOperationRetryTimeout !== undefined) {
|
50
|
-
_this.longRunningOperationRetryTimeout = options.longRunningOperationRetryTimeout;
|
51
|
-
}
|
52
|
-
return _this;
|
53
|
-
}
|
54
|
-
return DomainservicesManagementClientContext;
|
55
|
-
}(msRestAzure.AzureServiceClient));
|
56
|
-
export { DomainservicesManagementClientContext };
|
57
|
-
//# sourceMappingURL=domainservicesManagementClientContext.js.map
|
@@ -1 +0,0 @@
|
|
1
|
-
{"version":3,"file":"domainservicesManagementClientContext.js","sourceRoot":"","sources":["../lib/domainservicesManagementClientContext.ts"],"names":[],"mappings":"AAAA;;;;;;;;GAQG;;AAIH,OAAO,KAAK,WAAW,MAAM,yBAAyB,CAAC;AAEvD,IAAM,WAAW,GAAG,2BAA2B,CAAC;AAChD,IAAM,cAAc,GAAG,OAAO,CAAC;AAE/B;IAA2D,iEAA8B;IAKvF;;;;;;OAMG;IACH,+CAAY,WAA4C,EAAE,cAAsB,EAAE,OAAsD;QAAxI,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,YAAY,CAAC;QAC/B,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,4CAAC;AAAD,CAAC,AA7CD,CAA2D,WAAW,CAAC,kBAAkB,GA6CxF"}
|
@@ -1 +0,0 @@
|
|
1
|
-
{"version":3,"file":"domainServiceOperationsMappers.d.ts","sourceRoot":"","sources":["../../lib/models/domainServiceOperationsMappers.ts"],"names":[],"mappings":"AAUA,OAAO,EACL,yBAAyB,EACzB,eAAe,EACf,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 { OperationEntityListResult, OperationEntity, OperationDisplayInfo, CloudError } from "../models/mappers";
|
11
|
-
//# sourceMappingURL=domainServiceOperationsMappers.js.map
|
@@ -1 +0,0 @@
|
|
1
|
-
{"version":3,"file":"domainServiceOperationsMappers.js","sourceRoot":"","sources":["../../lib/models/domainServiceOperationsMappers.ts"],"names":[],"mappings":"AAAA;;;;;;;;GAQG;AAEH,OAAO,EACL,yBAAyB,EACzB,eAAe,EACf,oBAAoB,EACpB,UAAU,EACX,MAAM,mBAAmB,CAAC"}
|
@@ -1 +0,0 @@
|
|
1
|
-
{"version":3,"file":"domainServicesMappers.d.ts","sourceRoot":"","sources":["../../lib/models/domainServicesMappers.ts"],"names":[],"mappings":"AAUA,OAAO,EACL,uBAAuB,EACvB,aAAa,EACb,QAAQ,EACR,YAAY,EACZ,aAAa,EACb,aAAa,EACb,WAAW,EACX,oBAAoB,EACpB,sBAAsB,EACtB,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 { DomainServiceListResult, DomainService, Resource, BaseResource, LdapsSettings, HealthMonitor, HealthAlert, NotificationSettings, DomainSecuritySettings, CloudError } from "../models/mappers";
|
11
|
-
//# sourceMappingURL=domainServicesMappers.js.map
|
@@ -1 +0,0 @@
|
|
1
|
-
{"version":3,"file":"domainServicesMappers.js","sourceRoot":"","sources":["../../lib/models/domainServicesMappers.ts"],"names":[],"mappings":"AAAA;;;;;;;;GAQG;AAEH,OAAO,EACL,uBAAuB,EACvB,aAAa,EACb,QAAQ,EACR,YAAY,EACZ,aAAa,EACb,aAAa,EACb,WAAW,EACX,oBAAoB,EACpB,sBAAsB,EACtB,UAAU,EACX,MAAM,mBAAmB,CAAC"}
|