@azure/arm-healthbot 1.0.0 → 2.0.1-alpha.20220113.4
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 +70 -74
- package/dist/index.js +1301 -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/healthbotClient.d.ts +19 -0
- package/dist-esm/src/healthbotClient.d.ts.map +1 -0
- package/dist-esm/src/healthbotClient.js +52 -0
- package/dist-esm/src/healthbotClient.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 +309 -0
- package/dist-esm/src/models/index.d.ts.map +1 -0
- package/dist-esm/src/models/index.js +16 -0
- package/dist-esm/src/models/index.js.map +1 -0
- package/dist-esm/src/models/mappers.d.ts +19 -0
- package/dist-esm/src/models/mappers.d.ts.map +1 -0
- package/{esm → dist-esm/src}/models/mappers.js +252 -199
- package/dist-esm/src/models/mappers.js.map +1 -0
- package/dist-esm/src/models/parameters.d.ts +12 -0
- package/dist-esm/src/models/parameters.d.ts.map +1 -0
- package/dist-esm/src/models/parameters.js +112 -0
- package/dist-esm/src/models/parameters.js.map +1 -0
- package/dist-esm/src/operations/bots.d.ts +99 -0
- package/dist-esm/src/operations/bots.d.ts.map +1 -0
- package/dist-esm/src/operations/bots.js +454 -0
- package/dist-esm/src/operations/bots.js.map +1 -0
- package/{esm → dist-esm/src}/operations/index.d.ts +0 -0
- package/dist-esm/src/operations/index.d.ts.map +1 -0
- package/{esm → dist-esm/src}/operations/index.js +1 -2
- package/dist-esm/src/operations/index.js.map +1 -0
- package/dist-esm/src/operations/operations.d.ts +32 -0
- package/dist-esm/src/operations/operations.d.ts.map +1 -0
- package/dist-esm/src/operations/operations.js +120 -0
- package/dist-esm/src/operations/operations.js.map +1 -0
- package/dist-esm/src/operationsInterfaces/bots.d.ts +63 -0
- package/dist-esm/src/operationsInterfaces/bots.d.ts.map +1 -0
- package/{esm/models/index.js → dist-esm/src/operationsInterfaces/bots.js} +2 -1
- package/dist-esm/src/operationsInterfaces/bots.js.map +1 -0
- package/dist-esm/src/operationsInterfaces/index.d.ts +3 -0
- package/dist-esm/src/operationsInterfaces/index.d.ts.map +1 -0
- package/{esm/models/operationsMappers.js → dist-esm/src/operationsInterfaces/index.js} +3 -2
- package/dist-esm/src/operationsInterfaces/index.js.map +1 -0
- package/dist-esm/src/operationsInterfaces/operations.d.ts +11 -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 +65 -21
- package/review/arm-healthbot.api.md +271 -0
- package/rollup.config.js +181 -30
- package/src/healthbotClient.ts +62 -28
- package/src/index.ts +12 -0
- package/src/lroImpl.ts +34 -0
- package/src/models/index.ts +239 -394
- package/src/models/mappers.ts +260 -204
- package/src/models/parameters.ts +81 -33
- package/src/operations/bots.ts +424 -322
- package/src/operations/index.ts +1 -2
- package/src/operations/operations.ts +87 -75
- package/src/operationsInterfaces/bots.ts +116 -0
- package/src/{models/operationsMappers.ts → operationsInterfaces/index.ts} +2 -8
- package/src/operationsInterfaces/operations.ts +22 -0
- package/tsconfig.json +3 -3
- package/types/arm-healthbot.d.ts +439 -0
- package/types/tsdoc-metadata.json +11 -0
- package/dist/arm-healthbot.js +0 -1133
- package/dist/arm-healthbot.js.map +0 -1
- package/dist/arm-healthbot.min.js +0 -1
- package/dist/arm-healthbot.min.js.map +0 -1
- package/esm/healthbotClient.d.ts +0 -19
- package/esm/healthbotClient.d.ts.map +0 -1
- package/esm/healthbotClient.js +0 -33
- package/esm/healthbotClient.js.map +0 -1
- package/esm/healthbotClientContext.d.ts +0 -16
- package/esm/healthbotClientContext.d.ts.map +0 -1
- package/esm/healthbotClientContext.js +0 -55
- package/esm/healthbotClientContext.js.map +0 -1
- package/esm/models/botsMappers.d.ts +0 -2
- package/esm/models/botsMappers.d.ts.map +0 -1
- package/esm/models/botsMappers.js +0 -9
- package/esm/models/botsMappers.js.map +0 -1
- package/esm/models/index.d.ts +0 -464
- package/esm/models/index.d.ts.map +0 -1
- package/esm/models/index.js.map +0 -1
- package/esm/models/mappers.d.ts +0 -19
- 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.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 -80
- package/esm/models/parameters.js.map +0 -1
- package/esm/operations/bots.d.ts +0 -162
- package/esm/operations/bots.d.ts.map +0 -1
- package/esm/operations/bots.js +0 -319
- package/esm/operations/bots.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 -46
- package/esm/operations/operations.d.ts.map +0 -1
- package/esm/operations/operations.js +0 -79
- package/esm/operations/operations.js.map +0 -1
- package/src/healthbotClientContext.ts +0 -61
- package/src/models/botsMappers.ts +0 -22
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"arm-healthbot.js","sources":["../node_modules/tslib/tslib.es6.js","../src/models/index.ts","../src/models/mappers.ts","../src/models/botsMappers.ts","../src/models/parameters.ts","../src/operations/bots.ts","../src/models/operationsMappers.ts","../src/operations/operations.ts","../src/healthbotClientContext.ts","../src/healthbotClient.ts"],"sourcesContent":["/*! *****************************************************************************\r\nCopyright (c) Microsoft Corporation.\r\n\r\nPermission to use, copy, modify, and/or distribute this software for any\r\npurpose with or without fee is hereby granted.\r\n\r\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH\r\nREGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY\r\nAND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,\r\nINDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM\r\nLOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR\r\nOTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR\r\nPERFORMANCE OF THIS SOFTWARE.\r\n***************************************************************************** */\r\n/* global Reflect, Promise */\r\n\r\nvar extendStatics = function(d, b) {\r\n extendStatics = Object.setPrototypeOf ||\r\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\r\n function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };\r\n return extendStatics(d, b);\r\n};\r\n\r\nexport function __extends(d, b) {\r\n extendStatics(d, b);\r\n function __() { this.constructor = d; }\r\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\r\n}\r\n\r\nexport var __assign = function() {\r\n __assign = Object.assign || function __assign(t) {\r\n for (var s, i = 1, n = arguments.length; i < n; i++) {\r\n s = arguments[i];\r\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p];\r\n }\r\n return t;\r\n }\r\n return __assign.apply(this, arguments);\r\n}\r\n\r\nexport function __rest(s, e) {\r\n var t = {};\r\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)\r\n t[p] = s[p];\r\n if (s != null && typeof Object.getOwnPropertySymbols === \"function\")\r\n for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {\r\n if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))\r\n t[p[i]] = s[p[i]];\r\n }\r\n return t;\r\n}\r\n\r\nexport function __decorate(decorators, target, key, desc) {\r\n var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;\r\n if (typeof Reflect === \"object\" && typeof Reflect.decorate === \"function\") r = Reflect.decorate(decorators, target, key, desc);\r\n else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;\r\n return c > 3 && r && Object.defineProperty(target, key, r), r;\r\n}\r\n\r\nexport function __param(paramIndex, decorator) {\r\n return function (target, key) { decorator(target, key, paramIndex); }\r\n}\r\n\r\nexport function __metadata(metadataKey, metadataValue) {\r\n if (typeof Reflect === \"object\" && typeof Reflect.metadata === \"function\") return Reflect.metadata(metadataKey, metadataValue);\r\n}\r\n\r\nexport function __awaiter(thisArg, _arguments, P, generator) {\r\n function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }\r\n return new (P || (P = Promise))(function (resolve, reject) {\r\n function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }\r\n function rejected(value) { try { step(generator[\"throw\"](value)); } catch (e) { reject(e); } }\r\n function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }\r\n step((generator = generator.apply(thisArg, _arguments || [])).next());\r\n });\r\n}\r\n\r\nexport function __generator(thisArg, body) {\r\n var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;\r\n return g = { next: verb(0), \"throw\": verb(1), \"return\": verb(2) }, typeof Symbol === \"function\" && (g[Symbol.iterator] = function() { return this; }), g;\r\n function verb(n) { return function (v) { return step([n, v]); }; }\r\n function step(op) {\r\n if (f) throw new TypeError(\"Generator is already executing.\");\r\n while (_) try {\r\n if (f = 1, y && (t = op[0] & 2 ? y[\"return\"] : op[0] ? y[\"throw\"] || ((t = y[\"return\"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;\r\n if (y = 0, t) op = [op[0] & 2, t.value];\r\n switch (op[0]) {\r\n case 0: case 1: t = op; break;\r\n case 4: _.label++; return { value: op[1], done: false };\r\n case 5: _.label++; y = op[1]; op = [0]; continue;\r\n case 7: op = _.ops.pop(); _.trys.pop(); continue;\r\n default:\r\n if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }\r\n if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }\r\n if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }\r\n if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }\r\n if (t[2]) _.ops.pop();\r\n _.trys.pop(); continue;\r\n }\r\n op = body.call(thisArg, _);\r\n } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }\r\n if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };\r\n }\r\n}\r\n\r\nexport function __createBinding(o, m, k, k2) {\r\n if (k2 === undefined) k2 = k;\r\n o[k2] = m[k];\r\n}\r\n\r\nexport function __exportStar(m, exports) {\r\n for (var p in m) if (p !== \"default\" && !exports.hasOwnProperty(p)) exports[p] = m[p];\r\n}\r\n\r\nexport function __values(o) {\r\n var s = typeof Symbol === \"function\" && Symbol.iterator, m = s && o[s], i = 0;\r\n if (m) return m.call(o);\r\n if (o && typeof o.length === \"number\") return {\r\n next: function () {\r\n if (o && i >= o.length) o = void 0;\r\n return { value: o && o[i++], done: !o };\r\n }\r\n };\r\n throw new TypeError(s ? \"Object is not iterable.\" : \"Symbol.iterator is not defined.\");\r\n}\r\n\r\nexport function __read(o, n) {\r\n var m = typeof Symbol === \"function\" && o[Symbol.iterator];\r\n if (!m) return o;\r\n var i = m.call(o), r, ar = [], e;\r\n try {\r\n while ((n === void 0 || n-- > 0) && !(r = i.next()).done) ar.push(r.value);\r\n }\r\n catch (error) { e = { error: error }; }\r\n finally {\r\n try {\r\n if (r && !r.done && (m = i[\"return\"])) m.call(i);\r\n }\r\n finally { if (e) throw e.error; }\r\n }\r\n return ar;\r\n}\r\n\r\nexport function __spread() {\r\n for (var ar = [], i = 0; i < arguments.length; i++)\r\n ar = ar.concat(__read(arguments[i]));\r\n return ar;\r\n}\r\n\r\nexport function __spreadArrays() {\r\n for (var s = 0, i = 0, il = arguments.length; i < il; i++) s += arguments[i].length;\r\n for (var r = Array(s), k = 0, i = 0; i < il; i++)\r\n for (var a = arguments[i], j = 0, jl = a.length; j < jl; j++, k++)\r\n r[k] = a[j];\r\n return r;\r\n};\r\n\r\nexport function __await(v) {\r\n return this instanceof __await ? (this.v = v, this) : new __await(v);\r\n}\r\n\r\nexport function __asyncGenerator(thisArg, _arguments, generator) {\r\n if (!Symbol.asyncIterator) throw new TypeError(\"Symbol.asyncIterator is not defined.\");\r\n var g = generator.apply(thisArg, _arguments || []), i, q = [];\r\n return i = {}, verb(\"next\"), verb(\"throw\"), verb(\"return\"), i[Symbol.asyncIterator] = function () { return this; }, i;\r\n function verb(n) { if (g[n]) i[n] = function (v) { return new Promise(function (a, b) { q.push([n, v, a, b]) > 1 || resume(n, v); }); }; }\r\n function resume(n, v) { try { step(g[n](v)); } catch (e) { settle(q[0][3], e); } }\r\n function step(r) { r.value instanceof __await ? Promise.resolve(r.value.v).then(fulfill, reject) : settle(q[0][2], r); }\r\n function fulfill(value) { resume(\"next\", value); }\r\n function reject(value) { resume(\"throw\", value); }\r\n function settle(f, v) { if (f(v), q.shift(), q.length) resume(q[0][0], q[0][1]); }\r\n}\r\n\r\nexport function __asyncDelegator(o) {\r\n var i, p;\r\n return i = {}, verb(\"next\"), verb(\"throw\", function (e) { throw e; }), verb(\"return\"), i[Symbol.iterator] = function () { return this; }, i;\r\n function verb(n, f) { i[n] = o[n] ? function (v) { return (p = !p) ? { value: __await(o[n](v)), done: n === \"return\" } : f ? f(v) : v; } : f; }\r\n}\r\n\r\nexport function __asyncValues(o) {\r\n if (!Symbol.asyncIterator) throw new TypeError(\"Symbol.asyncIterator is not defined.\");\r\n var m = o[Symbol.asyncIterator], i;\r\n return m ? m.call(o) : (o = typeof __values === \"function\" ? __values(o) : o[Symbol.iterator](), i = {}, verb(\"next\"), verb(\"throw\"), verb(\"return\"), i[Symbol.asyncIterator] = function () { return this; }, i);\r\n function verb(n) { i[n] = o[n] && function (v) { return new Promise(function (resolve, reject) { v = o[n](v), settle(resolve, reject, v.done, v.value); }); }; }\r\n function settle(resolve, reject, d, v) { Promise.resolve(v).then(function(v) { resolve({ value: v, done: d }); }, reject); }\r\n}\r\n\r\nexport function __makeTemplateObject(cooked, raw) {\r\n if (Object.defineProperty) { Object.defineProperty(cooked, \"raw\", { value: raw }); } else { cooked.raw = raw; }\r\n return cooked;\r\n};\r\n\r\nexport function __importStar(mod) {\r\n if (mod && mod.__esModule) return mod;\r\n var result = {};\r\n if (mod != null) for (var k in mod) if (Object.hasOwnProperty.call(mod, k)) result[k] = mod[k];\r\n result.default = mod;\r\n return result;\r\n}\r\n\r\nexport function __importDefault(mod) {\r\n return (mod && mod.__esModule) ? mod : { default: mod };\r\n}\r\n\r\nexport function __classPrivateFieldGet(receiver, privateMap) {\r\n if (!privateMap.has(receiver)) {\r\n throw new TypeError(\"attempted to get private field on non-instance\");\r\n }\r\n return privateMap.get(receiver);\r\n}\r\n\r\nexport function __classPrivateFieldSet(receiver, privateMap, value) {\r\n if (!privateMap.has(receiver)) {\r\n throw new TypeError(\"attempted to set private field on non-instance\");\r\n }\r\n privateMap.set(receiver, value);\r\n return value;\r\n}\r\n","/*\n * Copyright (c) Microsoft Corporation.\n * Licensed under the MIT License.\n *\n * Code generated by Microsoft (R) AutoRest Code Generator.\n * Changes may cause incorrect behavior and will be lost if the code is regenerated.\n */\n\nimport { BaseResource, CloudError, AzureServiceClientOptions } from \"@azure/ms-rest-azure-js\";\nimport * as msRest from \"@azure/ms-rest-js\";\n\nexport { BaseResource, CloudError };\n\n/**\n * The resource model definition representing SKU\n */\nexport interface Sku {\n /**\n * The name of the HealthBot SKU. Possible values include: 'F0', 'S1', 'C0'\n */\n name: SkuName;\n}\n\n/**\n * Read only system data\n */\nexport interface SystemData {\n /**\n * The identity that created the resource.\n */\n createdBy?: string;\n /**\n * The type of identity that created the resource. Possible values include: 'User',\n * 'Application', 'ManagedIdentity', 'Key'\n */\n createdByType?: IdentityType;\n /**\n * The timestamp of resource creation (UTC)\n */\n createdAt?: Date;\n /**\n * The identity that last modified the resource.\n */\n lastModifiedBy?: string;\n /**\n * The type of identity that last modified the resource. Possible values include: 'User',\n * 'Application', 'ManagedIdentity', 'Key'\n */\n lastModifiedByType?: IdentityType;\n /**\n * The timestamp of resource last modification (UTC)\n */\n lastModifiedAt?: Date;\n}\n\n/**\n * The resource model definition for a ARM tracked top level resource\n */\nexport interface Resource extends BaseResource {\n /**\n * Fully qualified resource Id for the resource.\n * **NOTE: This property will not be serialized. It can only be populated by the server.**\n */\n readonly id?: string;\n /**\n * The name of the resource\n * **NOTE: This property will not be serialized. It can only be populated by the server.**\n */\n readonly name?: string;\n /**\n * The type of the resource.\n * **NOTE: This property will not be serialized. It can only be populated by the server.**\n */\n readonly type?: string;\n /**\n * Metadata pertaining to creation and last modification of the resource\n * **NOTE: This property will not be serialized. It can only be populated by the server.**\n */\n readonly systemData?: SystemData;\n}\n\n/**\n * The resource model definition for a ARM tracked top level resource\n */\nexport interface TrackedResource extends Resource {\n /**\n * Resource tags.\n */\n tags?: { [propertyName: string]: string };\n /**\n * The geo-location where the resource lives\n */\n location: string;\n}\n\n/**\n * The properties of a HealthBot. The Health Bot Service is a cloud platform that empowers\n * developers in Healthcare organizations to build and deploy their compliant, AI-powered virtual\n * health assistants and health bots, that help them improve processes and reduce costs.\n * @summary HealthBotProperties\n */\nexport interface HealthBotProperties {\n /**\n * The provisioning state of the Healthbot resource.\n * **NOTE: This property will not be serialized. It can only be populated by the server.**\n */\n readonly provisioningState?: string;\n /**\n * The link.\n * **NOTE: This property will not be serialized. It can only be populated by the server.**\n */\n readonly botManagementPortalLink?: string;\n}\n\n/**\n * HealthBot resource definition\n */\nexport interface HealthBot extends TrackedResource {\n /**\n * SKU of the HealthBot.\n */\n sku: Sku;\n /**\n * The set of properties specific to Healthbot resource.\n */\n properties?: HealthBotProperties;\n}\n\n/**\n * Parameters for updating a HealthBot.\n */\nexport interface HealthBotUpdateParameters {\n /**\n * Tags for a HealthBot.\n */\n tags?: { [propertyName: string]: string };\n /**\n * SKU of the HealthBot.\n */\n sku?: Sku;\n}\n\n/**\n * The response returned from validation process\n * @summary ValidationResult\n */\nexport interface ValidationResult {\n /**\n * The status code of the response validation.\n */\n status?: string;\n}\n\n/**\n * The resource management error additional info.\n */\nexport interface ErrorAdditionalInfo {\n /**\n * The additional info type.\n * **NOTE: This property will not be serialized. It can only be populated by the server.**\n */\n readonly type?: string;\n /**\n * The additional info.\n * **NOTE: This property will not be serialized. It can only be populated by the server.**\n */\n readonly info?: any;\n}\n\n/**\n * The error object.\n */\nexport interface ErrorError {\n /**\n * The error code.\n * **NOTE: This property will not be serialized. It can only be populated by the server.**\n */\n readonly code?: string;\n /**\n * The error message.\n * **NOTE: This property will not be serialized. It can only be populated by the server.**\n */\n readonly message?: string;\n /**\n * The error target.\n * **NOTE: This property will not be serialized. It can only be populated by the server.**\n */\n readonly target?: string;\n /**\n * The error details.\n * **NOTE: This property will not be serialized. It can only be populated by the server.**\n */\n readonly details?: ErrorModel[];\n /**\n * The error additional info.\n * **NOTE: This property will not be serialized. It can only be populated by the server.**\n */\n readonly additionalInfo?: ErrorAdditionalInfo[];\n}\n\n/**\n * The resource management error response.\n */\nexport interface ErrorModel {\n /**\n * The error object.\n */\n error?: ErrorError;\n}\n\n/**\n * Operation display payload\n */\nexport interface OperationDisplay {\n /**\n * Resource provider of the operation\n */\n provider?: string;\n /**\n * Resource of the operation\n */\n resource?: string;\n /**\n * Localized friendly name for the operation\n */\n operation?: string;\n /**\n * Localized friendly description for the operation\n */\n description?: string;\n}\n\n/**\n * Operation detail payload\n */\nexport interface OperationDetail {\n /**\n * Name of the operation\n */\n name?: string;\n /**\n * Indicates whether the operation is a data action\n */\n isDataAction?: boolean;\n /**\n * Display of the operation\n */\n display?: OperationDisplay;\n /**\n * Origin of the operation\n */\n origin?: string;\n /**\n * Additional properties.\n */\n properties?: any;\n}\n\n/**\n * An interface representing HealthbotClientOptions.\n */\nexport interface HealthbotClientOptions extends AzureServiceClientOptions {\n baseUri?: string;\n}\n\n/**\n * @interface\n * The list of Healthbot operation response.\n * @extends Array<HealthBot>\n */\nexport interface BotResponseList extends Array<HealthBot> {\n /**\n * The link used to get the next page of bot service resources.\n * **NOTE: This property will not be serialized. It can only be populated by the server.**\n */\n readonly nextLink?: string;\n}\n\n/**\n * @interface\n * Available operations of the service\n * @extends Array<OperationDetail>\n */\nexport interface AvailableOperations extends Array<OperationDetail> {\n /**\n * URL client should use to fetch the next page (per server side paging).\n * It's null for now, added for future use.\n */\n nextLink?: string;\n}\n\n/**\n * Defines values for SkuName.\n * Possible values include: 'F0', 'S1', 'C0'\n * @readonly\n * @enum {string}\n */\nexport type SkuName = 'F0' | 'S1' | 'C0';\n\n/**\n * Defines values for IdentityType.\n * Possible values include: 'User', 'Application', 'ManagedIdentity', 'Key'\n * @readonly\n * @enum {string}\n */\nexport type IdentityType = 'User' | 'Application' | 'ManagedIdentity' | 'Key';\n\n/**\n * Contains response data for the create operation.\n */\nexport type BotsCreateResponse = HealthBot & {\n /**\n * The underlying HTTP response.\n */\n _response: msRest.HttpResponse & {\n /**\n * The response body as text (string format)\n */\n bodyAsText: string;\n\n /**\n * The response body as parsed JSON or XML\n */\n parsedBody: HealthBot;\n };\n};\n\n/**\n * Contains response data for the get operation.\n */\nexport type BotsGetResponse = HealthBot & {\n /**\n * The underlying HTTP response.\n */\n _response: msRest.HttpResponse & {\n /**\n * The response body as text (string format)\n */\n bodyAsText: string;\n\n /**\n * The response body as parsed JSON or XML\n */\n parsedBody: HealthBot;\n };\n};\n\n/**\n * Contains response data for the update operation.\n */\nexport type BotsUpdateResponse = HealthBot & {\n /**\n * The underlying HTTP response.\n */\n _response: msRest.HttpResponse & {\n /**\n * The response body as text (string format)\n */\n bodyAsText: string;\n\n /**\n * The response body as parsed JSON or XML\n */\n parsedBody: HealthBot;\n };\n};\n\n/**\n * Contains response data for the listByResourceGroup operation.\n */\nexport type BotsListByResourceGroupResponse = BotResponseList & {\n /**\n * The underlying HTTP response.\n */\n _response: msRest.HttpResponse & {\n /**\n * The response body as text (string format)\n */\n bodyAsText: string;\n\n /**\n * The response body as parsed JSON or XML\n */\n parsedBody: BotResponseList;\n };\n};\n\n/**\n * Contains response data for the list operation.\n */\nexport type BotsListResponse = BotResponseList & {\n /**\n * The underlying HTTP response.\n */\n _response: msRest.HttpResponse & {\n /**\n * The response body as text (string format)\n */\n bodyAsText: string;\n\n /**\n * The response body as parsed JSON or XML\n */\n parsedBody: BotResponseList;\n };\n};\n\n/**\n * Contains response data for the beginCreate operation.\n */\nexport type BotsBeginCreateResponse = HealthBot & {\n /**\n * The underlying HTTP response.\n */\n _response: msRest.HttpResponse & {\n /**\n * The response body as text (string format)\n */\n bodyAsText: string;\n\n /**\n * The response body as parsed JSON or XML\n */\n parsedBody: HealthBot;\n };\n};\n\n/**\n * Contains response data for the listByResourceGroupNext operation.\n */\nexport type BotsListByResourceGroupNextResponse = BotResponseList & {\n /**\n * The underlying HTTP response.\n */\n _response: msRest.HttpResponse & {\n /**\n * The response body as text (string format)\n */\n bodyAsText: string;\n\n /**\n * The response body as parsed JSON or XML\n */\n parsedBody: BotResponseList;\n };\n};\n\n/**\n * Contains response data for the listNext operation.\n */\nexport type BotsListNextResponse = BotResponseList & {\n /**\n * The underlying HTTP response.\n */\n _response: msRest.HttpResponse & {\n /**\n * The response body as text (string format)\n */\n bodyAsText: string;\n\n /**\n * The response body as parsed JSON or XML\n */\n parsedBody: BotResponseList;\n };\n};\n\n/**\n * Contains response data for the list operation.\n */\nexport type OperationsListResponse = AvailableOperations & {\n /**\n * The underlying HTTP response.\n */\n _response: msRest.HttpResponse & {\n /**\n * The response body as text (string format)\n */\n bodyAsText: string;\n\n /**\n * The response body as parsed JSON or XML\n */\n parsedBody: AvailableOperations;\n };\n};\n\n/**\n * Contains response data for the listNext operation.\n */\nexport type OperationsListNextResponse = AvailableOperations & {\n /**\n * The underlying HTTP response.\n */\n _response: msRest.HttpResponse & {\n /**\n * The response body as text (string format)\n */\n bodyAsText: string;\n\n /**\n * The response body as parsed JSON or XML\n */\n parsedBody: AvailableOperations;\n };\n};\n","/*\n * Copyright (c) Microsoft Corporation.\n * Licensed under the MIT License.\n *\n * Code generated by Microsoft (R) AutoRest Code Generator.\n * Changes may cause incorrect behavior and will be lost if the code is regenerated.\n */\n\nimport { CloudErrorMapper, BaseResourceMapper } from \"@azure/ms-rest-azure-js\";\nimport * as msRest from \"@azure/ms-rest-js\";\n\nexport const CloudError = CloudErrorMapper;\nexport const BaseResource = BaseResourceMapper;\n\nexport const Sku: msRest.CompositeMapper = {\n serializedName: \"Sku\",\n type: {\n name: \"Composite\",\n className: \"Sku\",\n modelProperties: {\n name: {\n required: true,\n serializedName: \"name\",\n type: {\n name: \"Enum\",\n allowedValues: [\n \"F0\",\n \"S1\",\n \"C0\"\n ]\n }\n }\n }\n }\n};\n\nexport const SystemData: msRest.CompositeMapper = {\n serializedName: \"SystemData\",\n type: {\n name: \"Composite\",\n className: \"SystemData\",\n modelProperties: {\n createdBy: {\n serializedName: \"createdBy\",\n type: {\n name: \"String\"\n }\n },\n createdByType: {\n serializedName: \"createdByType\",\n type: {\n name: \"String\"\n }\n },\n createdAt: {\n serializedName: \"createdAt\",\n type: {\n name: \"DateTime\"\n }\n },\n lastModifiedBy: {\n serializedName: \"lastModifiedBy\",\n type: {\n name: \"String\"\n }\n },\n lastModifiedByType: {\n serializedName: \"lastModifiedByType\",\n type: {\n name: \"String\"\n }\n },\n lastModifiedAt: {\n serializedName: \"lastModifiedAt\",\n type: {\n name: \"DateTime\"\n }\n }\n }\n }\n};\n\nexport const Resource: msRest.CompositeMapper = {\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 systemData: {\n readOnly: true,\n serializedName: \"systemData\",\n type: {\n name: \"Composite\",\n className: \"SystemData\"\n }\n }\n }\n }\n};\n\nexport const TrackedResource: msRest.CompositeMapper = {\n serializedName: \"TrackedResource\",\n type: {\n name: \"Composite\",\n className: \"TrackedResource\",\n modelProperties: {\n ...Resource.type.modelProperties,\n tags: {\n serializedName: \"tags\",\n type: {\n name: \"Dictionary\",\n value: {\n type: {\n name: \"String\"\n }\n }\n }\n },\n location: {\n required: true,\n serializedName: \"location\",\n type: {\n name: \"String\"\n }\n }\n }\n }\n};\n\nexport const HealthBotProperties: msRest.CompositeMapper = {\n serializedName: \"HealthBotProperties\",\n type: {\n name: \"Composite\",\n className: \"HealthBotProperties\",\n modelProperties: {\n provisioningState: {\n readOnly: true,\n serializedName: \"provisioningState\",\n type: {\n name: \"String\"\n }\n },\n botManagementPortalLink: {\n readOnly: true,\n serializedName: \"botManagementPortalLink\",\n type: {\n name: \"String\"\n }\n }\n }\n }\n};\n\nexport const HealthBot: msRest.CompositeMapper = {\n serializedName: \"HealthBot\",\n type: {\n name: \"Composite\",\n className: \"HealthBot\",\n modelProperties: {\n ...TrackedResource.type.modelProperties,\n sku: {\n required: true,\n serializedName: \"sku\",\n type: {\n name: \"Composite\",\n className: \"Sku\"\n }\n },\n properties: {\n serializedName: \"properties\",\n type: {\n name: \"Composite\",\n className: \"HealthBotProperties\"\n }\n }\n }\n }\n};\n\nexport const HealthBotUpdateParameters: msRest.CompositeMapper = {\n serializedName: \"HealthBotUpdateParameters\",\n type: {\n name: \"Composite\",\n className: \"HealthBotUpdateParameters\",\n modelProperties: {\n tags: {\n serializedName: \"tags\",\n type: {\n name: \"Dictionary\",\n value: {\n type: {\n name: \"String\"\n }\n }\n }\n },\n sku: {\n serializedName: \"sku\",\n type: {\n name: \"Composite\",\n className: \"Sku\"\n }\n }\n }\n }\n};\n\nexport const ValidationResult: msRest.CompositeMapper = {\n serializedName: \"ValidationResult\",\n type: {\n name: \"Composite\",\n className: \"ValidationResult\",\n modelProperties: {\n status: {\n serializedName: \"status\",\n type: {\n name: \"String\"\n }\n }\n }\n }\n};\n\nexport const ErrorAdditionalInfo: msRest.CompositeMapper = {\n serializedName: \"ErrorAdditionalInfo\",\n type: {\n name: \"Composite\",\n className: \"ErrorAdditionalInfo\",\n modelProperties: {\n type: {\n readOnly: true,\n serializedName: \"type\",\n type: {\n name: \"String\"\n }\n },\n info: {\n readOnly: true,\n serializedName: \"info\",\n type: {\n name: \"Object\"\n }\n }\n }\n }\n};\n\nexport const ErrorError: msRest.CompositeMapper = {\n serializedName: \"Error_error\",\n type: {\n name: \"Composite\",\n className: \"ErrorError\",\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 details: {\n readOnly: true,\n serializedName: \"details\",\n type: {\n name: \"Sequence\",\n element: {\n type: {\n name: \"Composite\",\n className: \"ErrorModel\"\n }\n }\n }\n },\n additionalInfo: {\n readOnly: true,\n serializedName: \"additionalInfo\",\n type: {\n name: \"Sequence\",\n element: {\n type: {\n name: \"Composite\",\n className: \"ErrorAdditionalInfo\"\n }\n }\n }\n }\n }\n }\n};\n\nexport const ErrorModel: msRest.CompositeMapper = {\n serializedName: \"Error\",\n type: {\n name: \"Composite\",\n className: \"ErrorModel\",\n modelProperties: {\n error: {\n serializedName: \"error\",\n type: {\n name: \"Composite\",\n className: \"ErrorError\"\n }\n }\n }\n }\n};\n\nexport const OperationDisplay: msRest.CompositeMapper = {\n serializedName: \"OperationDisplay\",\n type: {\n name: \"Composite\",\n className: \"OperationDisplay\",\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};\n\nexport const OperationDetail: msRest.CompositeMapper = {\n serializedName: \"OperationDetail\",\n type: {\n name: \"Composite\",\n className: \"OperationDetail\",\n modelProperties: {\n name: {\n serializedName: \"name\",\n type: {\n name: \"String\"\n }\n },\n isDataAction: {\n serializedName: \"isDataAction\",\n type: {\n name: \"Boolean\"\n }\n },\n display: {\n serializedName: \"display\",\n type: {\n name: \"Composite\",\n className: \"OperationDisplay\"\n }\n },\n origin: {\n serializedName: \"origin\",\n type: {\n name: \"String\"\n }\n },\n properties: {\n serializedName: \"properties\",\n type: {\n name: \"Object\"\n }\n }\n }\n }\n};\n\nexport const BotResponseList: msRest.CompositeMapper = {\n serializedName: \"BotResponseList\",\n type: {\n name: \"Composite\",\n className: \"BotResponseList\",\n modelProperties: {\n nextLink: {\n readOnly: true,\n serializedName: \"nextLink\",\n type: {\n name: \"String\"\n }\n },\n value: {\n readOnly: true,\n serializedName: \"\",\n type: {\n name: \"Sequence\",\n element: {\n type: {\n name: \"Composite\",\n className: \"HealthBot\"\n }\n }\n }\n }\n }\n }\n};\n\nexport const AvailableOperations: msRest.CompositeMapper = {\n serializedName: \"AvailableOperations\",\n type: {\n name: \"Composite\",\n className: \"AvailableOperations\",\n modelProperties: {\n value: {\n serializedName: \"\",\n type: {\n name: \"Sequence\",\n element: {\n type: {\n name: \"Composite\",\n className: \"OperationDetail\"\n }\n }\n }\n },\n nextLink: {\n serializedName: \"nextLink\",\n type: {\n name: \"String\"\n }\n }\n }\n }\n};\n","/*\n * Copyright (c) Microsoft Corporation.\n * Licensed under the MIT License.\n *\n * Code generated by Microsoft (R) AutoRest Code Generator.\n * Changes may cause incorrect behavior and will be lost if the code is regenerated.\n */\n\nexport {\n BaseResource,\n BotResponseList,\n ErrorAdditionalInfo,\n ErrorError,\n ErrorModel,\n HealthBot,\n HealthBotProperties,\n HealthBotUpdateParameters,\n Resource,\n Sku,\n SystemData,\n TrackedResource\n} from \"../models/mappers\";\n","/*\n * Copyright (c) Microsoft Corporation.\n * Licensed under the MIT License.\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\nimport * as msRest from \"@azure/ms-rest-js\";\n\nexport const acceptLanguage: msRest.OperationParameter = {\n parameterPath: \"acceptLanguage\",\n mapper: {\n serializedName: \"accept-language\",\n defaultValue: 'en-US',\n type: {\n name: \"String\"\n }\n }\n};\nexport const apiVersion: msRest.OperationQueryParameter = {\n parameterPath: \"apiVersion\",\n mapper: {\n required: true,\n serializedName: \"api-version\",\n type: {\n name: \"String\"\n }\n }\n};\nexport const botName: msRest.OperationURLParameter = {\n parameterPath: \"botName\",\n mapper: {\n required: true,\n serializedName: \"botName\",\n constraints: {\n MaxLength: 64,\n MinLength: 2,\n Pattern: /^[a-zA-Z0-9][a-zA-Z0-9_.-]*$/\n },\n type: {\n name: \"String\"\n }\n }\n};\nexport const nextPageLink: msRest.OperationURLParameter = {\n parameterPath: \"nextPageLink\",\n mapper: {\n required: true,\n serializedName: \"nextLink\",\n type: {\n name: \"String\"\n }\n },\n skipEncoding: true\n};\nexport const resourceGroupName: msRest.OperationURLParameter = {\n parameterPath: \"resourceGroupName\",\n mapper: {\n required: true,\n serializedName: \"resourceGroupName\",\n constraints: {\n MaxLength: 64,\n MinLength: 2,\n Pattern: /^[a-zA-Z0-9][a-zA-Z0-9_.-]*$/\n },\n type: {\n name: \"String\"\n }\n }\n};\nexport const subscriptionId: msRest.OperationURLParameter = {\n parameterPath: \"subscriptionId\",\n mapper: {\n required: true,\n serializedName: \"subscriptionId\",\n type: {\n name: \"String\"\n }\n }\n};\n","/*\n * Copyright (c) Microsoft Corporation.\n * Licensed under the MIT License.\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\nimport * as msRest from \"@azure/ms-rest-js\";\nimport * as msRestAzure from \"@azure/ms-rest-azure-js\";\nimport * as Models from \"../models\";\nimport * as Mappers from \"../models/botsMappers\";\nimport * as Parameters from \"../models/parameters\";\nimport { HealthbotClientContext } from \"../healthbotClientContext\";\n\n/** Class representing a Bots. */\nexport class Bots {\n private readonly client: HealthbotClientContext;\n\n /**\n * Create a Bots.\n * @param {HealthbotClientContext} client Reference to the service client.\n */\n constructor(client: HealthbotClientContext) {\n this.client = client;\n }\n\n /**\n * Create a new HealthBot.\n * @param resourceGroupName The name of the Bot resource group in the user subscription.\n * @param botName The name of the Bot resource.\n * @param parameters The parameters to provide for the created bot.\n * @param [options] The optional parameters\n * @returns Promise<Models.BotsCreateResponse>\n */\n create(resourceGroupName: string, botName: string, parameters: Models.HealthBot, options?: msRest.RequestOptionsBase): Promise<Models.BotsCreateResponse> {\n return this.beginCreate(resourceGroupName,botName,parameters,options)\n .then(lroPoller => lroPoller.pollUntilFinished()) as Promise<Models.BotsCreateResponse>;\n }\n\n /**\n * Get a HealthBot.\n * @param resourceGroupName The name of the Bot resource group in the user subscription.\n * @param botName The name of the Bot resource.\n * @param [options] The optional parameters\n * @returns Promise<Models.BotsGetResponse>\n */\n get(resourceGroupName: string, botName: string, options?: msRest.RequestOptionsBase): Promise<Models.BotsGetResponse>;\n /**\n * @param resourceGroupName The name of the Bot resource group in the user subscription.\n * @param botName The name of the Bot resource.\n * @param callback The callback\n */\n get(resourceGroupName: string, botName: string, callback: msRest.ServiceCallback<Models.HealthBot>): void;\n /**\n * @param resourceGroupName The name of the Bot resource group in the user subscription.\n * @param botName The name of the Bot resource.\n * @param options The optional parameters\n * @param callback The callback\n */\n get(resourceGroupName: string, botName: string, options: msRest.RequestOptionsBase, callback: msRest.ServiceCallback<Models.HealthBot>): void;\n get(resourceGroupName: string, botName: string, options?: msRest.RequestOptionsBase | msRest.ServiceCallback<Models.HealthBot>, callback?: msRest.ServiceCallback<Models.HealthBot>): Promise<Models.BotsGetResponse> {\n return this.client.sendOperationRequest(\n {\n resourceGroupName,\n botName,\n options\n },\n getOperationSpec,\n callback) as Promise<Models.BotsGetResponse>;\n }\n\n /**\n * Patch a HealthBot.\n * @param resourceGroupName The name of the Bot resource group in the user subscription.\n * @param botName The name of the Bot resource.\n * @param parameters The parameters to provide for the required bot.\n * @param [options] The optional parameters\n * @returns Promise<Models.BotsUpdateResponse>\n */\n update(resourceGroupName: string, botName: string, parameters: Models.HealthBotUpdateParameters, options?: msRest.RequestOptionsBase): Promise<Models.BotsUpdateResponse>;\n /**\n * @param resourceGroupName The name of the Bot resource group in the user subscription.\n * @param botName The name of the Bot resource.\n * @param parameters The parameters to provide for the required bot.\n * @param callback The callback\n */\n update(resourceGroupName: string, botName: string, parameters: Models.HealthBotUpdateParameters, callback: msRest.ServiceCallback<Models.HealthBot>): void;\n /**\n * @param resourceGroupName The name of the Bot resource group in the user subscription.\n * @param botName The name of the Bot resource.\n * @param parameters The parameters to provide for the required bot.\n * @param options The optional parameters\n * @param callback The callback\n */\n update(resourceGroupName: string, botName: string, parameters: Models.HealthBotUpdateParameters, options: msRest.RequestOptionsBase, callback: msRest.ServiceCallback<Models.HealthBot>): void;\n update(resourceGroupName: string, botName: string, parameters: Models.HealthBotUpdateParameters, options?: msRest.RequestOptionsBase | msRest.ServiceCallback<Models.HealthBot>, callback?: msRest.ServiceCallback<Models.HealthBot>): Promise<Models.BotsUpdateResponse> {\n return this.client.sendOperationRequest(\n {\n resourceGroupName,\n botName,\n parameters,\n options\n },\n updateOperationSpec,\n callback) as Promise<Models.BotsUpdateResponse>;\n }\n\n /**\n * Delete a HealthBot.\n * @param resourceGroupName The name of the Bot resource group in the user subscription.\n * @param botName The name of the Bot resource.\n * @param [options] The optional parameters\n * @returns Promise<msRest.RestResponse>\n */\n deleteMethod(resourceGroupName: string, botName: string, options?: msRest.RequestOptionsBase): Promise<msRest.RestResponse> {\n return this.beginDeleteMethod(resourceGroupName,botName,options)\n .then(lroPoller => lroPoller.pollUntilFinished());\n }\n\n /**\n * Returns all the resources of a particular type belonging to a resource group\n * @param resourceGroupName The name of the Bot resource group in the user subscription.\n * @param [options] The optional parameters\n * @returns Promise<Models.BotsListByResourceGroupResponse>\n */\n listByResourceGroup(resourceGroupName: string, options?: msRest.RequestOptionsBase): Promise<Models.BotsListByResourceGroupResponse>;\n /**\n * @param resourceGroupName The name of the Bot resource group in the user subscription.\n * @param callback The callback\n */\n listByResourceGroup(resourceGroupName: string, callback: msRest.ServiceCallback<Models.BotResponseList>): void;\n /**\n * @param resourceGroupName The name of the Bot resource group in the user subscription.\n * @param options The optional parameters\n * @param callback The callback\n */\n listByResourceGroup(resourceGroupName: string, options: msRest.RequestOptionsBase, callback: msRest.ServiceCallback<Models.BotResponseList>): void;\n listByResourceGroup(resourceGroupName: string, options?: msRest.RequestOptionsBase | msRest.ServiceCallback<Models.BotResponseList>, callback?: msRest.ServiceCallback<Models.BotResponseList>): Promise<Models.BotsListByResourceGroupResponse> {\n return this.client.sendOperationRequest(\n {\n resourceGroupName,\n options\n },\n listByResourceGroupOperationSpec,\n callback) as Promise<Models.BotsListByResourceGroupResponse>;\n }\n\n /**\n * Returns all the resources of a particular type belonging to a subscription.\n * @param [options] The optional parameters\n * @returns Promise<Models.BotsListResponse>\n */\n list(options?: msRest.RequestOptionsBase): Promise<Models.BotsListResponse>;\n /**\n * @param callback The callback\n */\n list(callback: msRest.ServiceCallback<Models.BotResponseList>): void;\n /**\n * @param options The optional parameters\n * @param callback The callback\n */\n list(options: msRest.RequestOptionsBase, callback: msRest.ServiceCallback<Models.BotResponseList>): void;\n list(options?: msRest.RequestOptionsBase | msRest.ServiceCallback<Models.BotResponseList>, callback?: msRest.ServiceCallback<Models.BotResponseList>): Promise<Models.BotsListResponse> {\n return this.client.sendOperationRequest(\n {\n options\n },\n listOperationSpec,\n callback) as Promise<Models.BotsListResponse>;\n }\n\n /**\n * Create a new HealthBot.\n * @param resourceGroupName The name of the Bot resource group in the user subscription.\n * @param botName The name of the Bot resource.\n * @param parameters The parameters to provide for the created bot.\n * @param [options] The optional parameters\n * @returns Promise<msRestAzure.LROPoller>\n */\n beginCreate(resourceGroupName: string, botName: string, parameters: Models.HealthBot, options?: msRest.RequestOptionsBase): Promise<msRestAzure.LROPoller> {\n return this.client.sendLRORequest(\n {\n resourceGroupName,\n botName,\n parameters,\n options\n },\n beginCreateOperationSpec,\n options);\n }\n\n /**\n * Delete a HealthBot.\n * @param resourceGroupName The name of the Bot resource group in the user subscription.\n * @param botName The name of the Bot resource.\n * @param [options] The optional parameters\n * @returns Promise<msRestAzure.LROPoller>\n */\n beginDeleteMethod(resourceGroupName: string, botName: string, options?: msRest.RequestOptionsBase): Promise<msRestAzure.LROPoller> {\n return this.client.sendLRORequest(\n {\n resourceGroupName,\n botName,\n options\n },\n beginDeleteMethodOperationSpec,\n options);\n }\n\n /**\n * Returns all the resources of a particular type belonging to a resource group\n * @param nextPageLink The NextLink from the previous successful call to List operation.\n * @param [options] The optional parameters\n * @returns Promise<Models.BotsListByResourceGroupNextResponse>\n */\n listByResourceGroupNext(nextPageLink: string, options?: msRest.RequestOptionsBase): Promise<Models.BotsListByResourceGroupNextResponse>;\n /**\n * @param nextPageLink The NextLink from the previous successful call to List operation.\n * @param callback The callback\n */\n listByResourceGroupNext(nextPageLink: string, callback: msRest.ServiceCallback<Models.BotResponseList>): void;\n /**\n * @param nextPageLink The NextLink from the previous successful call to List operation.\n * @param options The optional parameters\n * @param callback The callback\n */\n listByResourceGroupNext(nextPageLink: string, options: msRest.RequestOptionsBase, callback: msRest.ServiceCallback<Models.BotResponseList>): void;\n listByResourceGroupNext(nextPageLink: string, options?: msRest.RequestOptionsBase | msRest.ServiceCallback<Models.BotResponseList>, callback?: msRest.ServiceCallback<Models.BotResponseList>): Promise<Models.BotsListByResourceGroupNextResponse> {\n return this.client.sendOperationRequest(\n {\n nextPageLink,\n options\n },\n listByResourceGroupNextOperationSpec,\n callback) as Promise<Models.BotsListByResourceGroupNextResponse>;\n }\n\n /**\n * Returns all the resources of a particular type belonging to a subscription.\n * @param nextPageLink The NextLink from the previous successful call to List operation.\n * @param [options] The optional parameters\n * @returns Promise<Models.BotsListNextResponse>\n */\n listNext(nextPageLink: string, options?: msRest.RequestOptionsBase): Promise<Models.BotsListNextResponse>;\n /**\n * @param nextPageLink The NextLink from the previous successful call to List operation.\n * @param callback The callback\n */\n listNext(nextPageLink: string, callback: msRest.ServiceCallback<Models.BotResponseList>): void;\n /**\n * @param nextPageLink The NextLink from the previous successful call to List operation.\n * @param options The optional parameters\n * @param callback The callback\n */\n listNext(nextPageLink: string, options: msRest.RequestOptionsBase, callback: msRest.ServiceCallback<Models.BotResponseList>): void;\n listNext(nextPageLink: string, options?: msRest.RequestOptionsBase | msRest.ServiceCallback<Models.BotResponseList>, callback?: msRest.ServiceCallback<Models.BotResponseList>): Promise<Models.BotsListNextResponse> {\n return this.client.sendOperationRequest(\n {\n nextPageLink,\n options\n },\n listNextOperationSpec,\n callback) as Promise<Models.BotsListNextResponse>;\n }\n}\n\n// Operation Specifications\nconst serializer = new msRest.Serializer(Mappers);\nconst getOperationSpec: msRest.OperationSpec = {\n httpMethod: \"GET\",\n path: \"subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.HealthBot/healthBots/{botName}\",\n urlParameters: [\n Parameters.subscriptionId,\n Parameters.resourceGroupName,\n Parameters.botName\n ],\n queryParameters: [\n Parameters.apiVersion\n ],\n headerParameters: [\n Parameters.acceptLanguage\n ],\n responses: {\n 200: {\n bodyMapper: Mappers.HealthBot\n },\n default: {\n bodyMapper: Mappers.ErrorModel\n }\n },\n serializer\n};\n\nconst updateOperationSpec: msRest.OperationSpec = {\n httpMethod: \"PATCH\",\n path: \"subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.HealthBot/healthBots/{botName}\",\n urlParameters: [\n Parameters.subscriptionId,\n Parameters.resourceGroupName,\n Parameters.botName\n ],\n queryParameters: [\n Parameters.apiVersion\n ],\n headerParameters: [\n Parameters.acceptLanguage\n ],\n requestBody: {\n parameterPath: \"parameters\",\n mapper: {\n ...Mappers.HealthBotUpdateParameters,\n required: true\n }\n },\n responses: {\n 200: {\n bodyMapper: Mappers.HealthBot\n },\n 201: {\n bodyMapper: Mappers.HealthBot\n },\n default: {\n bodyMapper: Mappers.ErrorModel\n }\n },\n serializer\n};\n\nconst listByResourceGroupOperationSpec: msRest.OperationSpec = {\n httpMethod: \"GET\",\n path: \"subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.HealthBot/healthBots\",\n urlParameters: [\n Parameters.resourceGroupName,\n Parameters.subscriptionId\n ],\n queryParameters: [\n Parameters.apiVersion\n ],\n headerParameters: [\n Parameters.acceptLanguage\n ],\n responses: {\n 200: {\n bodyMapper: Mappers.BotResponseList\n },\n default: {\n bodyMapper: Mappers.ErrorModel\n }\n },\n serializer\n};\n\nconst listOperationSpec: msRest.OperationSpec = {\n httpMethod: \"GET\",\n path: \"subscriptions/{subscriptionId}/providers/Microsoft.HealthBot/healthBots\",\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.BotResponseList\n },\n default: {\n bodyMapper: Mappers.ErrorModel\n }\n },\n serializer\n};\n\nconst beginCreateOperationSpec: msRest.OperationSpec = {\n httpMethod: \"PUT\",\n path: \"subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.HealthBot/healthBots/{botName}\",\n urlParameters: [\n Parameters.subscriptionId,\n Parameters.resourceGroupName,\n Parameters.botName\n ],\n queryParameters: [\n Parameters.apiVersion\n ],\n headerParameters: [\n Parameters.acceptLanguage\n ],\n requestBody: {\n parameterPath: \"parameters\",\n mapper: {\n ...Mappers.HealthBot,\n required: true\n }\n },\n responses: {\n 200: {\n bodyMapper: Mappers.HealthBot\n },\n 201: {\n bodyMapper: Mappers.HealthBot\n },\n default: {\n bodyMapper: Mappers.ErrorModel\n }\n },\n serializer\n};\n\nconst beginDeleteMethodOperationSpec: msRest.OperationSpec = {\n httpMethod: \"DELETE\",\n path: \"subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.HealthBot/healthBots/{botName}\",\n urlParameters: [\n Parameters.subscriptionId,\n Parameters.resourceGroupName,\n Parameters.botName\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.ErrorModel\n }\n },\n serializer\n};\n\nconst listByResourceGroupNextOperationSpec: msRest.OperationSpec = {\n httpMethod: \"GET\",\n baseUrl: \"https://management.azure.com\",\n path: \"{nextLink}\",\n urlParameters: [\n Parameters.nextPageLink\n ],\n queryParameters: [\n Parameters.apiVersion\n ],\n headerParameters: [\n Parameters.acceptLanguage\n ],\n responses: {\n 200: {\n bodyMapper: Mappers.BotResponseList\n },\n default: {\n bodyMapper: Mappers.ErrorModel\n }\n },\n serializer\n};\n\nconst listNextOperationSpec: msRest.OperationSpec = {\n httpMethod: \"GET\",\n baseUrl: \"https://management.azure.com\",\n path: \"{nextLink}\",\n urlParameters: [\n Parameters.nextPageLink\n ],\n queryParameters: [\n Parameters.apiVersion\n ],\n headerParameters: [\n Parameters.acceptLanguage\n ],\n responses: {\n 200: {\n bodyMapper: Mappers.BotResponseList\n },\n default: {\n bodyMapper: Mappers.ErrorModel\n }\n },\n serializer\n};\n","/*\n * Copyright (c) Microsoft Corporation.\n * Licensed under the MIT License.\n *\n * Code generated by Microsoft (R) AutoRest Code Generator.\n * Changes may cause incorrect behavior and will be lost if the code is regenerated.\n */\n\nexport {\n AvailableOperations,\n ErrorAdditionalInfo,\n ErrorError,\n ErrorModel,\n OperationDetail,\n OperationDisplay\n} from \"../models/mappers\";\n","/*\n * Copyright (c) Microsoft Corporation.\n * Licensed under the MIT License.\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\nimport * as msRest from \"@azure/ms-rest-js\";\nimport * as Models from \"../models\";\nimport * as Mappers from \"../models/operationsMappers\";\nimport * as Parameters from \"../models/parameters\";\nimport { HealthbotClientContext } from \"../healthbotClientContext\";\n\n/** Class representing a Operations. */\nexport class Operations {\n private readonly client: HealthbotClientContext;\n\n /**\n * Create a Operations.\n * @param {HealthbotClientContext} client Reference to the service client.\n */\n constructor(client: HealthbotClientContext) {\n this.client = client;\n }\n\n /**\n * Lists all the available HealthBot operations.\n * @param [options] The optional parameters\n * @returns Promise<Models.OperationsListResponse>\n */\n list(options?: msRest.RequestOptionsBase): Promise<Models.OperationsListResponse>;\n /**\n * @param callback The callback\n */\n list(callback: msRest.ServiceCallback<Models.AvailableOperations>): void;\n /**\n * @param options The optional parameters\n * @param callback The callback\n */\n list(options: msRest.RequestOptionsBase, callback: msRest.ServiceCallback<Models.AvailableOperations>): void;\n list(options?: msRest.RequestOptionsBase | msRest.ServiceCallback<Models.AvailableOperations>, callback?: msRest.ServiceCallback<Models.AvailableOperations>): Promise<Models.OperationsListResponse> {\n return this.client.sendOperationRequest(\n {\n options\n },\n listOperationSpec,\n callback) as Promise<Models.OperationsListResponse>;\n }\n\n /**\n * Lists all the available HealthBot operations.\n * @param nextPageLink The NextLink from the previous successful call to List operation.\n * @param [options] The optional parameters\n * @returns Promise<Models.OperationsListNextResponse>\n */\n listNext(nextPageLink: string, options?: msRest.RequestOptionsBase): Promise<Models.OperationsListNextResponse>;\n /**\n * @param nextPageLink The NextLink from the previous successful call to List operation.\n * @param callback The callback\n */\n listNext(nextPageLink: string, callback: msRest.ServiceCallback<Models.AvailableOperations>): void;\n /**\n * @param nextPageLink The NextLink from the previous successful call to List operation.\n * @param options The optional parameters\n * @param callback The callback\n */\n listNext(nextPageLink: string, options: msRest.RequestOptionsBase, callback: msRest.ServiceCallback<Models.AvailableOperations>): void;\n listNext(nextPageLink: string, options?: msRest.RequestOptionsBase | msRest.ServiceCallback<Models.AvailableOperations>, callback?: msRest.ServiceCallback<Models.AvailableOperations>): Promise<Models.OperationsListNextResponse> {\n return this.client.sendOperationRequest(\n {\n nextPageLink,\n options\n },\n listNextOperationSpec,\n callback) as Promise<Models.OperationsListNextResponse>;\n }\n}\n\n// Operation Specifications\nconst serializer = new msRest.Serializer(Mappers);\nconst listOperationSpec: msRest.OperationSpec = {\n httpMethod: \"GET\",\n path: \"providers/Microsoft.HealthBot/operations\",\n queryParameters: [\n Parameters.apiVersion\n ],\n headerParameters: [\n Parameters.acceptLanguage\n ],\n responses: {\n 200: {\n bodyMapper: Mappers.AvailableOperations\n },\n default: {\n bodyMapper: Mappers.ErrorModel\n }\n },\n serializer\n};\n\nconst listNextOperationSpec: msRest.OperationSpec = {\n httpMethod: \"GET\",\n baseUrl: \"https://management.azure.com\",\n path: \"{nextLink}\",\n urlParameters: [\n Parameters.nextPageLink\n ],\n queryParameters: [\n Parameters.apiVersion\n ],\n headerParameters: [\n Parameters.acceptLanguage\n ],\n responses: {\n 200: {\n bodyMapper: Mappers.AvailableOperations\n },\n default: {\n bodyMapper: Mappers.ErrorModel\n }\n },\n serializer\n};\n","/*\n * Copyright (c) Microsoft Corporation.\n * Licensed under the MIT License.\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\nimport * as Models from \"./models\";\nimport * as msRest from \"@azure/ms-rest-js\";\nimport * as msRestAzure from \"@azure/ms-rest-azure-js\";\n\nconst packageName = \"@azure/arm-healthbot\";\nconst packageVersion = \"1.0.0\";\n\nexport class HealthbotClientContext extends msRestAzure.AzureServiceClient {\n credentials: msRest.ServiceClientCredentials;\n subscriptionId: string;\n apiVersion?: string;\n\n /**\n * Initializes a new instance of the HealthbotClient 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 constructor(credentials: msRest.ServiceClientCredentials, subscriptionId: string, options?: Models.HealthbotClientOptions) {\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\n if (!options) {\n options = {};\n }\n if(!options.userAgent) {\n const defaultUserAgent = msRestAzure.getDefaultUserAgentValue();\n options.userAgent = `${packageName}/${packageVersion} ${defaultUserAgent}`;\n }\n\n super(credentials, options);\n\n this.apiVersion = '2020-12-08';\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\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 }\n}\n","/*\n * Copyright (c) Microsoft Corporation.\n * Licensed under the MIT License.\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\nimport * as msRest from \"@azure/ms-rest-js\";\nimport * as Models from \"./models\";\nimport * as Mappers from \"./models/mappers\";\nimport * as operations from \"./operations\";\nimport { HealthbotClientContext } from \"./healthbotClientContext\";\n\n\nclass HealthbotClient extends HealthbotClientContext {\n // Operation groups\n bots: operations.Bots;\n operations: operations.Operations;\n\n /**\n * Initializes a new instance of the HealthbotClient 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 constructor(credentials: msRest.ServiceClientCredentials, subscriptionId: string, options?: Models.HealthbotClientOptions) {\n super(credentials, subscriptionId, options);\n this.bots = new operations.Bots(this);\n this.operations = new operations.Operations(this);\n }\n}\n\n// Operation Specifications\n\nexport {\n HealthbotClient,\n HealthbotClientContext,\n Models as HealthbotModels,\n Mappers as HealthbotMappers\n};\nexport * from \"./operations\";\n"],"names":["CloudErrorMapper","BaseResourceMapper","msRest.Serializer","Parameters.subscriptionId","Parameters.resourceGroupName","Parameters.botName","Parameters.apiVersion","Parameters.acceptLanguage","Mappers.HealthBot","Mappers.ErrorModel","Mappers.HealthBotUpdateParameters","Mappers.BotResponseList","Parameters.nextPageLink","listOperationSpec","listNextOperationSpec","serializer","Mappers","Mappers.AvailableOperations","msRestAzure.getDefaultUserAgentValue","msRestAzure.AzureServiceClient","operations.Bots","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=e||self).Azure=e.Azure||{},e.Azure.ArmHealthbot={}),e.msRestAzure,e.msRest)}(this,function(e,o,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)},s=Object.freeze({__proto__:null}),n=o.CloudErrorMapper,p=o.BaseResourceMapper,l={serializedName:"Sku",type:{name:"Composite",className:"Sku",modelProperties:{name:{required:!0,serializedName:"name",type:{name:"Enum",allowedValues:["F0","S1","C0"]}}}}},m={serializedName:"SystemData",type:{name:"Composite",className:"SystemData",modelProperties:{createdBy:{serializedName:"createdBy",type:{name:"String"}},createdByType:{serializedName:"createdByType",type:{name:"String"}},createdAt:{serializedName:"createdAt",type:{name:"DateTime"}},lastModifiedBy:{serializedName:"lastModifiedBy",type:{name:"String"}},lastModifiedByType:{serializedName:"lastModifiedByType",type:{name:"String"}},lastModifiedAt:{serializedName:"lastModifiedAt",type:{name:"DateTime"}}}}},d={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"}},systemData:{readOnly:!0,serializedName:"systemData",type:{name:"Composite",className:"SystemData"}}}}},u={serializedName:"TrackedResource",type:{name:"Composite",className:"TrackedResource",modelProperties:i(i({},d.type.modelProperties),{tags:{serializedName:"tags",type:{name:"Dictionary",value:{type:{name:"String"}}}},location:{required:!0,serializedName:"location",type:{name:"String"}}})}},c={serializedName:"HealthBotProperties",type:{name:"Composite",className:"HealthBotProperties",modelProperties:{provisioningState:{readOnly:!0,serializedName:"provisioningState",type:{name:"String"}},botManagementPortalLink:{readOnly:!0,serializedName:"botManagementPortalLink",type:{name:"String"}}}}},y={serializedName:"HealthBot",type:{name:"Composite",className:"HealthBot",modelProperties:i(i({},u.type.modelProperties),{sku:{required:!0,serializedName:"sku",type:{name:"Composite",className:"Sku"}},properties:{serializedName:"properties",type:{name:"Composite",className:"HealthBotProperties"}}})}},h={serializedName:"HealthBotUpdateParameters",type:{name:"Composite",className:"HealthBotUpdateParameters",modelProperties:{tags:{serializedName:"tags",type:{name:"Dictionary",value:{type:{name:"String"}}}},sku:{serializedName:"sku",type:{name:"Composite",className:"Sku"}}}}},N={serializedName:"ErrorAdditionalInfo",type:{name:"Composite",className:"ErrorAdditionalInfo",modelProperties:{type:{readOnly:!0,serializedName:"type",type:{name:"String"}},info:{readOnly:!0,serializedName:"info",type:{name:"Object"}}}}},z={serializedName:"Error_error",type:{name:"Composite",className:"ErrorError",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"}},details:{readOnly:!0,serializedName:"details",type:{name:"Sequence",element:{type:{name:"Composite",className:"ErrorModel"}}}},additionalInfo:{readOnly:!0,serializedName:"additionalInfo",type:{name:"Sequence",element:{type:{name:"Composite",className:"ErrorAdditionalInfo"}}}}}}},g={serializedName:"Error",type:{name:"Composite",className:"ErrorModel",modelProperties:{error:{serializedName:"error",type:{name:"Composite",className:"ErrorError"}}}}},b={serializedName:"OperationDisplay",type:{name:"Composite",className:"OperationDisplay",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"}}}}},f={serializedName:"OperationDetail",type:{name:"Composite",className:"OperationDetail",modelProperties:{name:{serializedName:"name",type:{name:"String"}},isDataAction:{serializedName:"isDataAction",type:{name:"Boolean"}},display:{serializedName:"display",type:{name:"Composite",className:"OperationDisplay"}},origin:{serializedName:"origin",type:{name:"String"}},properties:{serializedName:"properties",type:{name:"Object"}}}}},P={serializedName:"BotResponseList",type:{name:"Composite",className:"BotResponseList",modelProperties:{nextLink:{readOnly:!0,serializedName:"nextLink",type:{name:"String"}},value:{readOnly:!0,serializedName:"",type:{name:"Sequence",element:{type:{name:"Composite",className:"HealthBot"}}}}}}},M={serializedName:"AvailableOperations",type:{name:"Composite",className:"AvailableOperations",modelProperties:{value:{serializedName:"",type:{name:"Sequence",element:{type:{name:"Composite",className:"OperationDetail"}}}},nextLink:{serializedName:"nextLink",type:{name:"String"}}}}},O=Object.freeze({__proto__:null,CloudError:n,BaseResource:p,Sku:l,SystemData:m,Resource:d,TrackedResource:u,HealthBotProperties:c,HealthBot:y,HealthBotUpdateParameters:h,ValidationResult:{serializedName:"ValidationResult",type:{name:"Composite",className:"ValidationResult",modelProperties:{status:{serializedName:"status",type:{name:"String"}}}}},ErrorAdditionalInfo:N,ErrorError:z,ErrorModel:g,OperationDisplay:b,OperationDetail:f,BotResponseList:P,AvailableOperations:M}),n=Object.freeze({__proto__:null,BaseResource:p,BotResponseList:P,ErrorAdditionalInfo:N,ErrorError:z,ErrorModel:g,HealthBot:y,HealthBotProperties:c,HealthBotUpdateParameters:h,Resource:d,Sku:l,SystemData:m,TrackedResource:u}),p={parameterPath:"acceptLanguage",mapper:{serializedName:"accept-language",defaultValue:"en-US",type:{name:"String"}}},c={parameterPath:"apiVersion",mapper:{required:!0,serializedName:"api-version",type:{name:"String"}}},d={parameterPath:"botName",mapper:{required:!0,serializedName:"botName",constraints:{MaxLength:64,MinLength:2,Pattern:/^[a-zA-Z0-9][a-zA-Z0-9_.-]*$/},type:{name:"String"}}},l={parameterPath:"nextPageLink",mapper:{required:!0,serializedName:"nextLink",type:{name:"String"}},skipEncoding:!0},m={parameterPath:"resourceGroupName",mapper:{required:!0,serializedName:"resourceGroupName",constraints:{MaxLength:64,MinLength:2,Pattern:/^[a-zA-Z0-9][a-zA-Z0-9_.-]*$/},type:{name:"String"}}},u={parameterPath:"subscriptionId",mapper:{required:!0,serializedName:"subscriptionId",type:{name:"String"}}},S=(B.prototype.create=function(e,r,t,a){return this.beginCreate(e,r,t,a).then(function(e){return e.pollUntilFinished()})},B.prototype.get=function(e,r,t,a){return this.client.sendOperationRequest({resourceGroupName:e,botName:r,options:t},R,a)},B.prototype.update=function(e,r,t,a,i){return this.client.sendOperationRequest({resourceGroupName:e,botName:r,parameters:t,options:a},q,i)},B.prototype.deleteMethod=function(e,r,t){return this.beginDeleteMethod(e,r,t).then(function(e){return e.pollUntilFinished()})},B.prototype.listByResourceGroup=function(e,r,t){return this.client.sendOperationRequest({resourceGroupName:e,options:r},E,t)},B.prototype.list=function(e,r){return this.client.sendOperationRequest({options:e},C,r)},B.prototype.beginCreate=function(e,r,t,a){return this.client.sendLRORequest({resourceGroupName:e,botName:r,parameters:t,options:a},v,a)},B.prototype.beginDeleteMethod=function(e,r,t){return this.client.sendLRORequest({resourceGroupName:e,botName:r,options:t},A,t)},B.prototype.listByResourceGroupNext=function(e,r,t){return this.client.sendOperationRequest({nextPageLink:e,options:r},L,t)},B.prototype.listNext=function(e,r,t){return this.client.sendOperationRequest({nextPageLink:e,options:r},k,t)},B);function B(e){this.client=e}var n=new r.Serializer(n),R={httpMethod:"GET",path:"subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.HealthBot/healthBots/{botName}",urlParameters:[u,m,d],queryParameters:[c],headerParameters:[p],responses:{200:{bodyMapper:y},default:{bodyMapper:g}},serializer:n},q={httpMethod:"PATCH",path:"subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.HealthBot/healthBots/{botName}",urlParameters:[u,m,d],queryParameters:[c],headerParameters:[p],requestBody:{parameterPath:"parameters",mapper:i(i({},h),{required:!0})},responses:{200:{bodyMapper:y},201:{bodyMapper:y},default:{bodyMapper:g}},serializer:n},E={httpMethod:"GET",path:"subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.HealthBot/healthBots",urlParameters:[m,u],queryParameters:[c],headerParameters:[p],responses:{200:{bodyMapper:P},default:{bodyMapper:g}},serializer:n},C={httpMethod:"GET",path:"subscriptions/{subscriptionId}/providers/Microsoft.HealthBot/healthBots",urlParameters:[u],queryParameters:[c],headerParameters:[p],responses:{200:{bodyMapper:P},default:{bodyMapper:g}},serializer:n},v={httpMethod:"PUT",path:"subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.HealthBot/healthBots/{botName}",urlParameters:[u,m,d],queryParameters:[c],headerParameters:[p],requestBody:{parameterPath:"parameters",mapper:i(i({},y),{required:!0})},responses:{200:{bodyMapper:y},201:{bodyMapper:y},default:{bodyMapper:g}},serializer:n},A={httpMethod:"DELETE",path:"subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.HealthBot/healthBots/{botName}",urlParameters:[u,m,d],queryParameters:[c],headerParameters:[p],responses:{200:{},202:{},204:{},default:{bodyMapper:g}},serializer:n},L={httpMethod:"GET",baseUrl:"https://management.azure.com",path:"{nextLink}",urlParameters:[l],queryParameters:[c],headerParameters:[p],responses:{200:{bodyMapper:P},default:{bodyMapper:g}},serializer:n},k={httpMethod:"GET",baseUrl:"https://management.azure.com",path:"{nextLink}",urlParameters:[l],queryParameters:[c],headerParameters:[p],responses:{200:{bodyMapper:P},default:{bodyMapper:g}},serializer:n},b=Object.freeze({__proto__:null,AvailableOperations:M,ErrorAdditionalInfo:N,ErrorError:z,ErrorModel:g,OperationDetail:f,OperationDisplay:b}),_=(D.prototype.list=function(e,r){return this.client.sendOperationRequest({options:e},G,r)},D.prototype.listNext=function(e,r,t){return this.client.sendOperationRequest({nextPageLink:e,options:r},T,t)},D);function D(e){this.client=e}var H,b=new r.Serializer(b),G={httpMethod:"GET",path:"providers/Microsoft.HealthBot/operations",queryParameters:[c],headerParameters:[p],responses:{200:{bodyMapper:M},default:{bodyMapper:g}},serializer:b},T={httpMethod:"GET",baseUrl:"https://management.azure.com",path:"{nextLink}",urlParameters:[l],queryParameters:[c],headerParameters:[p],responses:{200:{bodyMapper:M},default:{bodyMapper:g}},serializer:b},g=(t(x,H=o.AzureServiceClient),x);function x(e,r,t){var a,i=this;if(null==e)throw new Error("'credentials' cannot be null.");if(null==r)throw new Error("'subscriptionId' cannot be null.");return(t=t||{}).userAgent||(a=o.getDefaultUserAgentValue(),t.userAgent="@azure/arm-healthbot/1.0.0 "+a),(i=H.call(this,e,t)||this).apiVersion="2020-12-08",i.acceptLanguage="en-US",i.longRunningOperationRetryTimeout=30,i.baseUri=t.baseUri||i.baseUri||"https://management.azure.com",i.requestContentType="application/json; charset=utf-8",i.credentials=e,i.subscriptionId=r,null!==t.acceptLanguage&&void 0!==t.acceptLanguage&&(i.acceptLanguage=t.acceptLanguage),null!==t.longRunningOperationRetryTimeout&&void 0!==t.longRunningOperationRetryTimeout&&(i.longRunningOperationRetryTimeout=t.longRunningOperationRetryTimeout),i}var I,b=(t(j,I=g),j);function j(e,r,t){t=I.call(this,e,r,t)||this;return t.bots=new S(t),t.operations=new _(t),t}e.Bots=S,e.HealthbotClient=b,e.HealthbotClientContext=g,e.HealthbotMappers=O,e.HealthbotModels=s,e.Operations=_,Object.defineProperty(e,"__esModule",{value:!0})});
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"sources":["../node_modules/tslib/tslib.es6.js","../src/models/mappers.ts","../src/models/parameters.ts","../src/operations/bots.ts","../src/operations/operations.ts","../src/healthbotClientContext.ts","../src/healthbotClient.ts"],"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","Sku","serializedName","type","name","className","modelProperties","required","allowedValues","SystemData","createdBy","createdByType","createdAt","lastModifiedBy","lastModifiedByType","lastModifiedAt","Resource","id","readOnly","systemData","TrackedResource","tags","value","location","HealthBotProperties","provisioningState","botManagementPortalLink","HealthBot","sku","properties","HealthBotUpdateParameters","ErrorAdditionalInfo","info","ErrorError","code","message","target","details","element","additionalInfo","ErrorModel","error","OperationDisplay","provider","resource","operation","description","OperationDetail","isDataAction","display","origin","BotResponseList","nextLink","AvailableOperations","status","acceptLanguage","parameterPath","mapper","defaultValue","apiVersion","botName","constraints","MaxLength","MinLength","Pattern","nextPageLink","skipEncoding","resourceGroupName","subscriptionId","Bots","parameters","options","beginCreate","then","lroPoller","pollUntilFinished","get","callback","client","sendOperationRequest","getOperationSpec","update","updateOperationSpec","deleteMethod","beginDeleteMethod","listByResourceGroup","listByResourceGroupOperationSpec","list","listOperationSpec","sendLRORequest","beginCreateOperationSpec","beginDeleteMethodOperationSpec","listByResourceGroupNext","listByResourceGroupNextOperationSpec","listNext","listNextOperationSpec","serializer","msRest.Serializer","Mappers","httpMethod","path","urlParameters","Parameters.subscriptionId","Parameters.resourceGroupName","Parameters.botName","queryParameters","Parameters.apiVersion","headerParameters","Parameters.acceptLanguage","responses","200","bodyMapper","Mappers.HealthBot","default","Mappers.ErrorModel","requestBody","Mappers.HealthBotUpdateParameters","201","Mappers.BotResponseList","202","204","baseUrl","Parameters.nextPageLink","Operations","_super","Mappers.AvailableOperations","serializer$1","HealthbotClientContext","msRestAzure.AzureServiceClient","credentials","defaultUserAgent","_this","undefined","Error","userAgent","msRestAzure.getDefaultUserAgentValue","packageName","longRunningOperationRetryTimeout","baseUri","requestContentType","HealthbotClient","bots","operations.Bots","operations","operations.Operations"],"mappings":"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"}
|
package/esm/healthbotClient.d.ts
DELETED
|
@@ -1,19 +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 { HealthbotClientContext } from "./healthbotClientContext";
|
|
6
|
-
declare class HealthbotClient extends HealthbotClientContext {
|
|
7
|
-
bots: operations.Bots;
|
|
8
|
-
operations: operations.Operations;
|
|
9
|
-
/**
|
|
10
|
-
* Initializes a new instance of the HealthbotClient class.
|
|
11
|
-
* @param credentials Credentials needed for the client to connect to Azure.
|
|
12
|
-
* @param subscriptionId Azure Subscription ID.
|
|
13
|
-
* @param [options] The parameter options
|
|
14
|
-
*/
|
|
15
|
-
constructor(credentials: msRest.ServiceClientCredentials, subscriptionId: string, options?: Models.HealthbotClientOptions);
|
|
16
|
-
}
|
|
17
|
-
export { HealthbotClient, HealthbotClientContext, Models as HealthbotModels, Mappers as HealthbotMappers };
|
|
18
|
-
export * from "./operations";
|
|
19
|
-
//# sourceMappingURL=healthbotClient.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"healthbotClient.d.ts","sourceRoot":"","sources":["../src/healthbotClient.ts"],"names":[],"mappings":"AASA,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,sBAAsB,EAAE,MAAM,0BAA0B,CAAC;AAGlE,cAAM,eAAgB,SAAQ,sBAAsB;IAElD,IAAI,EAAE,UAAU,CAAC,IAAI,CAAC;IACtB,UAAU,EAAE,UAAU,CAAC,UAAU,CAAC;IAElC;;;;;OAKG;gBACS,WAAW,EAAE,MAAM,CAAC,wBAAwB,EAAE,cAAc,EAAE,MAAM,EAAE,OAAO,CAAC,EAAE,MAAM,CAAC,sBAAsB;CAK1H;AAID,OAAO,EACL,eAAe,EACf,sBAAsB,EACtB,MAAM,IAAI,eAAe,EACzB,OAAO,IAAI,gBAAgB,EAC5B,CAAC;AACF,cAAc,cAAc,CAAC"}
|
package/esm/healthbotClient.js
DELETED
|
@@ -1,33 +0,0 @@
|
|
|
1
|
-
/*
|
|
2
|
-
* Copyright (c) Microsoft Corporation.
|
|
3
|
-
* Licensed under the MIT License.
|
|
4
|
-
*
|
|
5
|
-
* Code generated by Microsoft (R) AutoRest Code Generator.
|
|
6
|
-
* Changes may cause incorrect behavior and will be lost if the code is
|
|
7
|
-
* regenerated.
|
|
8
|
-
*/
|
|
9
|
-
import { __extends } from "tslib";
|
|
10
|
-
import * as Models from "./models";
|
|
11
|
-
import * as Mappers from "./models/mappers";
|
|
12
|
-
import * as operations from "./operations";
|
|
13
|
-
import { HealthbotClientContext } from "./healthbotClientContext";
|
|
14
|
-
var HealthbotClient = /** @class */ (function (_super) {
|
|
15
|
-
__extends(HealthbotClient, _super);
|
|
16
|
-
/**
|
|
17
|
-
* Initializes a new instance of the HealthbotClient 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 HealthbotClient(credentials, subscriptionId, options) {
|
|
23
|
-
var _this = _super.call(this, credentials, subscriptionId, options) || this;
|
|
24
|
-
_this.bots = new operations.Bots(_this);
|
|
25
|
-
_this.operations = new operations.Operations(_this);
|
|
26
|
-
return _this;
|
|
27
|
-
}
|
|
28
|
-
return HealthbotClient;
|
|
29
|
-
}(HealthbotClientContext));
|
|
30
|
-
// Operation Specifications
|
|
31
|
-
export { HealthbotClient, HealthbotClientContext, Models as HealthbotModels, Mappers as HealthbotMappers };
|
|
32
|
-
export * from "./operations";
|
|
33
|
-
//# sourceMappingURL=healthbotClient.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"healthbotClient.js","sourceRoot":"","sources":["../src/healthbotClient.ts"],"names":[],"mappings":"AAAA;;;;;;;GAOG;;AAGH,OAAO,KAAK,MAAM,MAAM,UAAU,CAAC;AACnC,OAAO,KAAK,OAAO,MAAM,kBAAkB,CAAC;AAC5C,OAAO,KAAK,UAAU,MAAM,cAAc,CAAC;AAC3C,OAAO,EAAE,sBAAsB,EAAE,MAAM,0BAA0B,CAAC;AAGlE;IAA8B,mCAAsB;IAKlD;;;;;OAKG;IACH,yBAAY,WAA4C,EAAE,cAAsB,EAAE,OAAuC;QAAzH,YACE,kBAAM,WAAW,EAAE,cAAc,EAAE,OAAO,CAAC,SAG5C;QAFC,KAAI,CAAC,IAAI,GAAG,IAAI,UAAU,CAAC,IAAI,CAAC,KAAI,CAAC,CAAC;QACtC,KAAI,CAAC,UAAU,GAAG,IAAI,UAAU,CAAC,UAAU,CAAC,KAAI,CAAC,CAAC;;IACpD,CAAC;IACH,sBAAC;AAAD,CAAC,AAhBD,CAA8B,sBAAsB,GAgBnD;AAED,2BAA2B;AAE3B,OAAO,EACL,eAAe,EACf,sBAAsB,EACtB,MAAM,IAAI,eAAe,EACzB,OAAO,IAAI,gBAAgB,EAC5B,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 HealthbotClientContext extends msRestAzure.AzureServiceClient {
|
|
5
|
-
credentials: msRest.ServiceClientCredentials;
|
|
6
|
-
subscriptionId: string;
|
|
7
|
-
apiVersion?: string;
|
|
8
|
-
/**
|
|
9
|
-
* Initializes a new instance of the HealthbotClient 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.HealthbotClientOptions);
|
|
15
|
-
}
|
|
16
|
-
//# sourceMappingURL=healthbotClientContext.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"healthbotClientContext.d.ts","sourceRoot":"","sources":["../src/healthbotClientContext.ts"],"names":[],"mappings":"AASA,OAAO,KAAK,MAAM,MAAM,UAAU,CAAC;AACnC,OAAO,KAAK,MAAM,MAAM,mBAAmB,CAAC;AAC5C,OAAO,KAAK,WAAW,MAAM,yBAAyB,CAAC;AAKvD,qBAAa,sBAAuB,SAAQ,WAAW,CAAC,kBAAkB;IACxE,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,sBAAsB;CAiC1H"}
|
|
@@ -1,55 +0,0 @@
|
|
|
1
|
-
/*
|
|
2
|
-
* Copyright (c) Microsoft Corporation.
|
|
3
|
-
* Licensed under the MIT License.
|
|
4
|
-
*
|
|
5
|
-
* Code generated by Microsoft (R) AutoRest Code Generator.
|
|
6
|
-
* Changes may cause incorrect behavior and will be lost if the code is
|
|
7
|
-
* regenerated.
|
|
8
|
-
*/
|
|
9
|
-
import { __extends } from "tslib";
|
|
10
|
-
import * as msRestAzure from "@azure/ms-rest-azure-js";
|
|
11
|
-
var packageName = "@azure/arm-healthbot";
|
|
12
|
-
var packageVersion = "1.0.0";
|
|
13
|
-
var HealthbotClientContext = /** @class */ (function (_super) {
|
|
14
|
-
__extends(HealthbotClientContext, _super);
|
|
15
|
-
/**
|
|
16
|
-
* Initializes a new instance of the HealthbotClient class.
|
|
17
|
-
* @param credentials Credentials needed for the client to connect to Azure.
|
|
18
|
-
* @param subscriptionId Azure Subscription ID.
|
|
19
|
-
* @param [options] The parameter options
|
|
20
|
-
*/
|
|
21
|
-
function HealthbotClientContext(credentials, subscriptionId, options) {
|
|
22
|
-
var _this = this;
|
|
23
|
-
if (credentials == undefined) {
|
|
24
|
-
throw new Error('\'credentials\' cannot be null.');
|
|
25
|
-
}
|
|
26
|
-
if (subscriptionId == undefined) {
|
|
27
|
-
throw new Error('\'subscriptionId\' cannot be null.');
|
|
28
|
-
}
|
|
29
|
-
if (!options) {
|
|
30
|
-
options = {};
|
|
31
|
-
}
|
|
32
|
-
if (!options.userAgent) {
|
|
33
|
-
var defaultUserAgent = msRestAzure.getDefaultUserAgentValue();
|
|
34
|
-
options.userAgent = packageName + "/" + packageVersion + " " + defaultUserAgent;
|
|
35
|
-
}
|
|
36
|
-
_this = _super.call(this, credentials, options) || this;
|
|
37
|
-
_this.apiVersion = '2020-12-08';
|
|
38
|
-
_this.acceptLanguage = 'en-US';
|
|
39
|
-
_this.longRunningOperationRetryTimeout = 30;
|
|
40
|
-
_this.baseUri = options.baseUri || _this.baseUri || "https://management.azure.com";
|
|
41
|
-
_this.requestContentType = "application/json; charset=utf-8";
|
|
42
|
-
_this.credentials = credentials;
|
|
43
|
-
_this.subscriptionId = subscriptionId;
|
|
44
|
-
if (options.acceptLanguage !== null && options.acceptLanguage !== undefined) {
|
|
45
|
-
_this.acceptLanguage = options.acceptLanguage;
|
|
46
|
-
}
|
|
47
|
-
if (options.longRunningOperationRetryTimeout !== null && options.longRunningOperationRetryTimeout !== undefined) {
|
|
48
|
-
_this.longRunningOperationRetryTimeout = options.longRunningOperationRetryTimeout;
|
|
49
|
-
}
|
|
50
|
-
return _this;
|
|
51
|
-
}
|
|
52
|
-
return HealthbotClientContext;
|
|
53
|
-
}(msRestAzure.AzureServiceClient));
|
|
54
|
-
export { HealthbotClientContext };
|
|
55
|
-
//# sourceMappingURL=healthbotClientContext.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"healthbotClientContext.js","sourceRoot":"","sources":["../src/healthbotClientContext.ts"],"names":[],"mappings":"AAAA;;;;;;;GAOG;;AAIH,OAAO,KAAK,WAAW,MAAM,yBAAyB,CAAC;AAEvD,IAAM,WAAW,GAAG,sBAAsB,CAAC;AAC3C,IAAM,cAAc,GAAG,OAAO,CAAC;AAE/B;IAA4C,0CAA8B;IAKxE;;;;;OAKG;IACH,gCAAY,WAA4C,EAAE,cAAsB,EAAE,OAAuC;QAAzH,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,6BAAC;AAAD,CAAC,AA5CD,CAA4C,WAAW,CAAC,kBAAkB,GA4CzE"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"botsMappers.d.ts","sourceRoot":"","sources":["../../src/models/botsMappers.ts"],"names":[],"mappings":"AAQA,OAAO,EACL,YAAY,EACZ,eAAe,EACf,mBAAmB,EACnB,UAAU,EACV,UAAU,EACV,SAAS,EACT,mBAAmB,EACnB,yBAAyB,EACzB,QAAQ,EACR,GAAG,EACH,UAAU,EACV,eAAe,EAChB,MAAM,mBAAmB,CAAC"}
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
/*
|
|
2
|
-
* Copyright (c) Microsoft Corporation.
|
|
3
|
-
* Licensed under the MIT License.
|
|
4
|
-
*
|
|
5
|
-
* Code generated by Microsoft (R) AutoRest Code Generator.
|
|
6
|
-
* Changes may cause incorrect behavior and will be lost if the code is regenerated.
|
|
7
|
-
*/
|
|
8
|
-
export { BaseResource, BotResponseList, ErrorAdditionalInfo, ErrorError, ErrorModel, HealthBot, HealthBotProperties, HealthBotUpdateParameters, Resource, Sku, SystemData, TrackedResource } from "../models/mappers";
|
|
9
|
-
//# sourceMappingURL=botsMappers.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"botsMappers.js","sourceRoot":"","sources":["../../src/models/botsMappers.ts"],"names":[],"mappings":"AAAA;;;;;;GAMG;AAEH,OAAO,EACL,YAAY,EACZ,eAAe,EACf,mBAAmB,EACnB,UAAU,EACV,UAAU,EACV,SAAS,EACT,mBAAmB,EACnB,yBAAyB,EACzB,QAAQ,EACR,GAAG,EACH,UAAU,EACV,eAAe,EAChB,MAAM,mBAAmB,CAAC"}
|