@azure/arm-changeanalysis 1.1.1 → 2.0.0
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 +11 -0
- package/LICENSE +21 -0
- package/README.md +69 -81
- package/dist/index.js +1099 -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/azureChangeAnalysisManagementClient.d.ts +20 -0
- package/dist-esm/src/azureChangeAnalysisManagementClient.d.ts.map +1 -0
- package/dist-esm/src/azureChangeAnalysisManagementClient.js +53 -0
- package/dist-esm/src/azureChangeAnalysisManagementClient.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/models/index.d.ts +240 -0
- package/dist-esm/src/models/index.d.ts.map +1 -0
- package/dist-esm/src/models/index.js +22 -0
- package/dist-esm/src/models/index.js.map +1 -0
- package/dist-esm/src/models/mappers.d.ts +14 -0
- package/dist-esm/src/models/mappers.d.ts.map +1 -0
- package/{esm → dist-esm/src}/models/mappers.js +172 -228
- 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/{esm → dist-esm/src}/models/parameters.js +51 -46
- package/dist-esm/src/models/parameters.js.map +1 -0
- package/dist-esm/src/operations/changes.d.ts +71 -0
- package/dist-esm/src/operations/changes.d.ts.map +1 -0
- package/dist-esm/src/operations/changes.js +269 -0
- package/dist-esm/src/operations/changes.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 +34 -0
- package/dist-esm/src/operations/operations.d.ts.map +1 -0
- package/dist-esm/src/operations/operations.js +122 -0
- package/dist-esm/src/operations/operations.js.map +1 -0
- package/dist-esm/src/operations/resourceChanges.d.ts +43 -0
- package/dist-esm/src/operations/resourceChanges.d.ts.map +1 -0
- package/dist-esm/src/operations/resourceChanges.js +141 -0
- package/dist-esm/src/operations/resourceChanges.js.map +1 -0
- package/dist-esm/src/operationsInterfaces/changes.d.ts +23 -0
- package/dist-esm/src/operationsInterfaces/changes.d.ts.map +1 -0
- package/{esm/models/index.js → dist-esm/src/operationsInterfaces/changes.js} +2 -1
- package/dist-esm/src/operationsInterfaces/changes.js.map +1 -0
- package/dist-esm/src/operationsInterfaces/index.d.ts +4 -0
- package/dist-esm/src/operationsInterfaces/index.d.ts.map +1 -0
- package/dist-esm/src/operationsInterfaces/index.js +11 -0
- package/dist-esm/src/operationsInterfaces/index.js.map +1 -0
- package/dist-esm/src/operationsInterfaces/operations.d.ts +12 -0
- package/dist-esm/src/operationsInterfaces/operations.d.ts.map +1 -0
- package/dist-esm/src/operationsInterfaces/operations.js +9 -0
- package/dist-esm/src/operationsInterfaces/operations.js.map +1 -0
- package/dist-esm/src/operationsInterfaces/resourceChanges.d.ts +15 -0
- package/dist-esm/src/operationsInterfaces/resourceChanges.d.ts.map +1 -0
- package/dist-esm/src/operationsInterfaces/resourceChanges.js +9 -0
- package/dist-esm/src/operationsInterfaces/resourceChanges.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 +63 -32
- package/review/arm-changeanalysis.api.md +230 -0
- package/rollup.config.js +181 -30
- package/src/azureChangeAnalysisManagementClient.ts +64 -36
- package/src/index.ts +12 -0
- package/src/models/index.ts +191 -455
- package/src/models/mappers.ts +175 -240
- package/src/models/parameters.ts +65 -47
- package/src/operations/changes.ts +267 -173
- package/src/operations/index.ts +1 -2
- package/src/operations/operations.ts +89 -79
- package/src/operations/resourceChanges.ts +126 -95
- package/src/operationsInterfaces/changes.ts +45 -0
- package/src/{models/operationsMappers.ts → operationsInterfaces/index.ts} +3 -8
- package/src/operationsInterfaces/operations.ts +26 -0
- package/src/operationsInterfaces/resourceChanges.ts +29 -0
- package/tsconfig.json +3 -3
- package/types/arm-changeanalysis.d.ts +337 -0
- package/types/tsdoc-metadata.json +11 -0
- package/dist/arm-changeanalysis.js +0 -1107
- package/dist/arm-changeanalysis.js.map +0 -1
- package/dist/arm-changeanalysis.min.js +0 -1
- package/dist/arm-changeanalysis.min.js.map +0 -1
- package/esm/azureChangeAnalysisManagementClient.d.ts +0 -26
- package/esm/azureChangeAnalysisManagementClient.d.ts.map +0 -1
- package/esm/azureChangeAnalysisManagementClient.js +0 -39
- package/esm/azureChangeAnalysisManagementClient.js.map +0 -1
- package/esm/azureChangeAnalysisManagementClientContext.d.ts +0 -22
- package/esm/azureChangeAnalysisManagementClientContext.d.ts.map +0 -1
- package/esm/azureChangeAnalysisManagementClientContext.js +0 -60
- package/esm/azureChangeAnalysisManagementClientContext.js.map +0 -1
- package/esm/models/changesMappers.d.ts +0 -2
- package/esm/models/changesMappers.d.ts.map +0 -1
- package/esm/models/changesMappers.js +0 -9
- package/esm/models/changesMappers.js.map +0 -1
- package/esm/models/index.d.ts +0 -505
- package/esm/models/index.d.ts.map +0 -1
- package/esm/models/index.js.map +0 -1
- package/esm/models/mappers.d.ts +0 -18
- package/esm/models/mappers.d.ts.map +0 -1
- package/esm/models/mappers.js.map +0 -1
- package/esm/models/operationsMappers.d.ts +0 -2
- package/esm/models/operationsMappers.d.ts.map +0 -1
- package/esm/models/operationsMappers.js +0 -9
- package/esm/models/operationsMappers.js.map +0 -1
- package/esm/models/parameters.d.ts +0 -11
- package/esm/models/parameters.d.ts.map +0 -1
- package/esm/models/parameters.js.map +0 -1
- package/esm/models/resourceChangesMappers.d.ts +0 -2
- package/esm/models/resourceChangesMappers.d.ts.map +0 -1
- package/esm/models/resourceChangesMappers.js +0 -9
- package/esm/models/resourceChangesMappers.js.map +0 -1
- package/esm/operations/changes.d.ts +0 -110
- package/esm/operations/changes.d.ts.map +0 -1
- package/esm/operations/changes.js +0 -160
- package/esm/operations/changes.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 -48
- package/esm/operations/operations.d.ts.map +0 -1
- package/esm/operations/operations.js +0 -81
- package/esm/operations/operations.js.map +0 -1
- package/esm/operations/resourceChanges.d.ts +0 -63
- package/esm/operations/resourceChanges.d.ts.map +0 -1
- package/esm/operations/resourceChanges.js +0 -93
- package/esm/operations/resourceChanges.js.map +0 -1
- package/src/azureChangeAnalysisManagementClientContext.ts +0 -67
- package/src/models/changesMappers.ts +0 -22
- package/src/models/resourceChangesMappers.ts +0 -22
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"arm-changeanalysis.js","sources":["../node_modules/tslib/tslib.es6.js","../src/models/index.ts","../src/models/mappers.ts","../src/models/operationsMappers.ts","../src/models/parameters.ts","../src/operations/operations.ts","../src/models/resourceChangesMappers.ts","../src/operations/resourceChanges.ts","../src/models/changesMappers.ts","../src/operations/changes.ts","../src/azureChangeAnalysisManagementClientContext.ts","../src/azureChangeAnalysisManagementClient.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 provider operation details.\n */\nexport interface ResourceProviderOperationDisplay {\n /**\n * Name of the resource provider.\n */\n provider?: string;\n /**\n * Name of the resource type.\n */\n resource?: string;\n /**\n * Name of the resource provider operation.\n */\n operation?: string;\n /**\n * Description of the resource provider operation.\n */\n description?: string;\n}\n\n/**\n * The resource provider operation definition.\n */\nexport interface ResourceProviderOperationDefinition {\n /**\n * The resource provider operation name.\n */\n name?: string;\n display?: ResourceProviderOperationDisplay;\n}\n\n/**\n * Data of a property change.\n */\nexport interface PropertyChange {\n /**\n * Possible values include: 'Add', 'Remove', 'Update'\n */\n changeType?: ChangeType;\n /**\n * The change category. Possible values include: 'User', 'System'\n */\n changeCategory?: ChangeCategory;\n /**\n * The json path of the changed property.\n */\n jsonPath?: string;\n /**\n * The enhanced display name of the json path. E.g., the json path value[0].properties will be\n * translated to something meaningful like slots[\"Staging\"].properties.\n */\n displayName?: string;\n /**\n * Possible values include: 'Noisy', 'Normal', 'Important'\n */\n level?: Level;\n /**\n * The description of the changed property.\n */\n description?: string;\n /**\n * The value of the property before the change.\n */\n oldValue?: string;\n /**\n * The value of the property after the change.\n */\n newValue?: string;\n /**\n * The boolean indicating whether the oldValue and newValue are masked. The values are masked if\n * it contains sensitive information that the user doesn't have access to.\n */\n isDataMasked?: boolean;\n}\n\n/**\n * The properties of a change.\n */\nexport interface ChangeProperties {\n /**\n * The resource id that the change is attached to.\n */\n resourceId?: string;\n /**\n * The time when the change is detected.\n */\n timeStamp?: Date;\n /**\n * The list of identities who might initiated the change.\n * The identity could be user name (email address) or the object ID of the Service Principal.\n */\n initiatedByList?: string[];\n /**\n * Possible values include: 'Add', 'Remove', 'Update'\n */\n changeType?: ChangeType;\n /**\n * The list of detailed changes at json property level.\n */\n propertyChanges?: PropertyChange[];\n}\n\n/**\n * Common fields that are returned in the response for all Azure Resource Manager resources\n * @summary Resource\n */\nexport interface Resource extends BaseResource {\n /**\n * Fully qualified resource ID for the resource. Ex -\n * /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}\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. E.g. \"Microsoft.Compute/virtualMachines\" or\n * \"Microsoft.Storage/storageAccounts\"\n * **NOTE: This property will not be serialized. It can only be populated by the server.**\n */\n readonly type?: string;\n}\n\n/**\n * The resource model definition for a Azure Resource Manager proxy resource. It will not have tags\n * and a location\n * @summary Proxy Resource\n */\nexport interface ProxyResource extends Resource {\n}\n\n/**\n * The detected change.\n */\nexport interface Change extends ProxyResource {\n properties?: ChangeProperties;\n}\n\n/**\n * The resource model definition for an Azure Resource Manager tracked top level resource which has\n * 'tags' and a 'location'\n * @summary Tracked 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 resource model definition for an Azure Resource Manager resource with an etag.\n * @summary Entity Resource\n */\nexport interface AzureEntityResource extends Resource {\n /**\n * Resource Etag.\n * **NOTE: This property will not be serialized. It can only be populated by the server.**\n */\n readonly etag?: 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 detail.\n */\nexport interface ErrorDetail {\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?: ErrorDetail[];\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 * Common error response for all Azure Resource Manager APIs to return error details for failed\n * operations. (This also follows the OData error response format.).\n * @summary Error response\n */\nexport interface ErrorResponse {\n /**\n * The error object.\n */\n error?: ErrorDetail;\n}\n\n/**\n * Optional Parameters.\n */\nexport interface OperationsListOptionalParams extends msRest.RequestOptionsBase {\n /**\n * A skip token is used to continue retrieving items after an operation returns a partial result.\n * If a previous response contains a nextLink element, the value of the nextLink element will\n * include a skipToken parameter that specifies a starting point to use for subsequent calls.\n */\n skipToken?: string;\n}\n\n/**\n * Optional Parameters.\n */\nexport interface OperationsListNextOptionalParams extends msRest.RequestOptionsBase {\n /**\n * A skip token is used to continue retrieving items after an operation returns a partial result.\n * If a previous response contains a nextLink element, the value of the nextLink element will\n * include a skipToken parameter that specifies a starting point to use for subsequent calls.\n */\n skipToken?: string;\n}\n\n/**\n * Optional Parameters.\n */\nexport interface ResourceChangesListOptionalParams extends msRest.RequestOptionsBase {\n /**\n * A skip token is used to continue retrieving items after an operation returns a partial result.\n * If a previous response contains a nextLink element, the value of the nextLink element will\n * include a skipToken parameter that specifies a starting point to use for subsequent calls.\n */\n skipToken?: string;\n}\n\n/**\n * Optional Parameters.\n */\nexport interface ResourceChangesListNextOptionalParams extends msRest.RequestOptionsBase {\n /**\n * A skip token is used to continue retrieving items after an operation returns a partial result.\n * If a previous response contains a nextLink element, the value of the nextLink element will\n * include a skipToken parameter that specifies a starting point to use for subsequent calls.\n */\n skipToken?: string;\n}\n\n/**\n * Optional Parameters.\n */\nexport interface ChangesListChangesByResourceGroupOptionalParams extends msRest.RequestOptionsBase {\n /**\n * A skip token is used to continue retrieving items after an operation returns a partial result.\n * If a previous response contains a nextLink element, the value of the nextLink element will\n * include a skipToken parameter that specifies a starting point to use for subsequent calls.\n */\n skipToken?: string;\n}\n\n/**\n * Optional Parameters.\n */\nexport interface ChangesListChangesBySubscriptionOptionalParams extends msRest.RequestOptionsBase {\n /**\n * A skip token is used to continue retrieving items after an operation returns a partial result.\n * If a previous response contains a nextLink element, the value of the nextLink element will\n * include a skipToken parameter that specifies a starting point to use for subsequent calls.\n */\n skipToken?: string;\n}\n\n/**\n * Optional Parameters.\n */\nexport interface ChangesListChangesByResourceGroupNextOptionalParams extends msRest.RequestOptionsBase {\n /**\n * A skip token is used to continue retrieving items after an operation returns a partial result.\n * If a previous response contains a nextLink element, the value of the nextLink element will\n * include a skipToken parameter that specifies a starting point to use for subsequent calls.\n */\n skipToken?: string;\n}\n\n/**\n * Optional Parameters.\n */\nexport interface ChangesListChangesBySubscriptionNextOptionalParams extends msRest.RequestOptionsBase {\n /**\n * A skip token is used to continue retrieving items after an operation returns a partial result.\n * If a previous response contains a nextLink element, the value of the nextLink element will\n * include a skipToken parameter that specifies a starting point to use for subsequent calls.\n */\n skipToken?: string;\n}\n\n/**\n * An interface representing AzureChangeAnalysisManagementClientOptions.\n */\nexport interface AzureChangeAnalysisManagementClientOptions extends AzureServiceClientOptions {\n baseUri?: string;\n}\n\n/**\n * @interface\n * The resource provider operation list.\n * @extends Array<ResourceProviderOperationDefinition>\n */\nexport interface ResourceProviderOperationList extends Array<ResourceProviderOperationDefinition> {\n /**\n * The URI that can be used to request the next page for list of Azure operations.\n */\n nextLink?: string;\n}\n\n/**\n * @interface\n * The list of detected changes.\n * @extends Array<Change>\n */\nexport interface ChangeList extends Array<Change> {\n /**\n * The URI that can be used to request the next page of changes.\n */\n nextLink?: string;\n}\n\n/**\n * Defines values for ChangeType.\n * Possible values include: 'Add', 'Remove', 'Update'\n * @readonly\n * @enum {string}\n */\nexport type ChangeType = 'Add' | 'Remove' | 'Update';\n\n/**\n * Defines values for Level.\n * Possible values include: 'Noisy', 'Normal', 'Important'\n * @readonly\n * @enum {string}\n */\nexport type Level = 'Noisy' | 'Normal' | 'Important';\n\n/**\n * Defines values for ChangeCategory.\n * Possible values include: 'User', 'System'\n * @readonly\n * @enum {string}\n */\nexport type ChangeCategory = 'User' | 'System';\n\n/**\n * Contains response data for the list operation.\n */\nexport type OperationsListResponse = ResourceProviderOperationList & {\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: ResourceProviderOperationList;\n };\n};\n\n/**\n * Contains response data for the listNext operation.\n */\nexport type OperationsListNextResponse = ResourceProviderOperationList & {\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: ResourceProviderOperationList;\n };\n};\n\n/**\n * Contains response data for the list operation.\n */\nexport type ResourceChangesListResponse = ChangeList & {\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: ChangeList;\n };\n};\n\n/**\n * Contains response data for the listNext operation.\n */\nexport type ResourceChangesListNextResponse = ChangeList & {\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: ChangeList;\n };\n};\n\n/**\n * Contains response data for the listChangesByResourceGroup operation.\n */\nexport type ChangesListChangesByResourceGroupResponse = ChangeList & {\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: ChangeList;\n };\n};\n\n/**\n * Contains response data for the listChangesBySubscription operation.\n */\nexport type ChangesListChangesBySubscriptionResponse = ChangeList & {\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: ChangeList;\n };\n};\n\n/**\n * Contains response data for the listChangesByResourceGroupNext operation.\n */\nexport type ChangesListChangesByResourceGroupNextResponse = ChangeList & {\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: ChangeList;\n };\n};\n\n/**\n * Contains response data for the listChangesBySubscriptionNext operation.\n */\nexport type ChangesListChangesBySubscriptionNextResponse = ChangeList & {\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: ChangeList;\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 ResourceProviderOperationDisplay: msRest.CompositeMapper = {\n serializedName: \"ResourceProviderOperationDisplay\",\n type: {\n name: \"Composite\",\n className: \"ResourceProviderOperationDisplay\",\n modelProperties: {\n provider: {\n serializedName: \"provider\",\n type: {\n name: \"String\"\n }\n },\n resource: {\n serializedName: \"resource\",\n type: {\n name: \"String\"\n }\n },\n operation: {\n serializedName: \"operation\",\n type: {\n name: \"String\"\n }\n },\n description: {\n serializedName: \"description\",\n type: {\n name: \"String\"\n }\n }\n }\n }\n};\n\nexport const ResourceProviderOperationDefinition: msRest.CompositeMapper = {\n serializedName: \"ResourceProviderOperationDefinition\",\n type: {\n name: \"Composite\",\n className: \"ResourceProviderOperationDefinition\",\n modelProperties: {\n name: {\n serializedName: \"name\",\n type: {\n name: \"String\"\n }\n },\n display: {\n serializedName: \"display\",\n type: {\n name: \"Composite\",\n className: \"ResourceProviderOperationDisplay\"\n }\n }\n }\n }\n};\n\nexport const PropertyChange: msRest.CompositeMapper = {\n serializedName: \"PropertyChange\",\n type: {\n name: \"Composite\",\n className: \"PropertyChange\",\n modelProperties: {\n changeType: {\n serializedName: \"changeType\",\n type: {\n name: \"String\"\n }\n },\n changeCategory: {\n serializedName: \"changeCategory\",\n type: {\n name: \"Enum\",\n allowedValues: [\n \"User\",\n \"System\"\n ]\n }\n },\n jsonPath: {\n serializedName: \"jsonPath\",\n type: {\n name: \"String\"\n }\n },\n displayName: {\n serializedName: \"displayName\",\n type: {\n name: \"String\"\n }\n },\n level: {\n serializedName: \"level\",\n type: {\n name: \"String\"\n }\n },\n description: {\n serializedName: \"description\",\n type: {\n name: \"String\"\n }\n },\n oldValue: {\n serializedName: \"oldValue\",\n type: {\n name: \"String\"\n }\n },\n newValue: {\n serializedName: \"newValue\",\n type: {\n name: \"String\"\n }\n },\n isDataMasked: {\n serializedName: \"isDataMasked\",\n type: {\n name: \"Boolean\"\n }\n }\n }\n }\n};\n\nexport const ChangeProperties: msRest.CompositeMapper = {\n serializedName: \"ChangeProperties\",\n type: {\n name: \"Composite\",\n className: \"ChangeProperties\",\n modelProperties: {\n resourceId: {\n serializedName: \"resourceId\",\n type: {\n name: \"String\"\n }\n },\n timeStamp: {\n serializedName: \"timeStamp\",\n type: {\n name: \"DateTime\"\n }\n },\n initiatedByList: {\n serializedName: \"initiatedByList\",\n type: {\n name: \"Sequence\",\n element: {\n type: {\n name: \"String\"\n }\n }\n }\n },\n changeType: {\n serializedName: \"changeType\",\n type: {\n name: \"String\"\n }\n },\n propertyChanges: {\n serializedName: \"propertyChanges\",\n type: {\n name: \"Sequence\",\n element: {\n type: {\n name: \"Composite\",\n className: \"PropertyChange\"\n }\n }\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 }\n }\n};\n\nexport const ProxyResource: msRest.CompositeMapper = {\n serializedName: \"ProxyResource\",\n type: {\n name: \"Composite\",\n className: \"ProxyResource\",\n modelProperties: {\n ...Resource.type.modelProperties\n }\n }\n};\n\nexport const Change: msRest.CompositeMapper = {\n serializedName: \"Change\",\n type: {\n name: \"Composite\",\n className: \"Change\",\n modelProperties: {\n ...ProxyResource.type.modelProperties,\n properties: {\n serializedName: \"properties\",\n type: {\n name: \"Composite\",\n className: \"ChangeProperties\"\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 AzureEntityResource: msRest.CompositeMapper = {\n serializedName: \"AzureEntityResource\",\n type: {\n name: \"Composite\",\n className: \"AzureEntityResource\",\n modelProperties: {\n ...Resource.type.modelProperties,\n etag: {\n readOnly: true,\n serializedName: \"etag\",\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 ErrorDetail: msRest.CompositeMapper = {\n serializedName: \"ErrorDetail\",\n type: {\n name: \"Composite\",\n className: \"ErrorDetail\",\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: \"ErrorDetail\"\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 ErrorResponse: msRest.CompositeMapper = {\n serializedName: \"ErrorResponse\",\n type: {\n name: \"Composite\",\n className: \"ErrorResponse\",\n modelProperties: {\n error: {\n serializedName: \"error\",\n type: {\n name: \"Composite\",\n className: \"ErrorDetail\"\n }\n }\n }\n }\n};\n\nexport const ResourceProviderOperationList: msRest.CompositeMapper = {\n serializedName: \"ResourceProviderOperationList\",\n type: {\n name: \"Composite\",\n className: \"ResourceProviderOperationList\",\n modelProperties: {\n value: {\n serializedName: \"\",\n type: {\n name: \"Sequence\",\n element: {\n type: {\n name: \"Composite\",\n className: \"ResourceProviderOperationDefinition\"\n }\n }\n }\n },\n nextLink: {\n serializedName: \"nextLink\",\n type: {\n name: \"String\"\n }\n }\n }\n }\n};\n\nexport const ChangeList: msRest.CompositeMapper = {\n serializedName: \"ChangeList\",\n type: {\n name: \"Composite\",\n className: \"ChangeList\",\n modelProperties: {\n value: {\n serializedName: \"\",\n type: {\n name: \"Sequence\",\n element: {\n type: {\n name: \"Composite\",\n className: \"Change\"\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 ErrorAdditionalInfo,\n ErrorDetail,\n ErrorResponse,\n ResourceProviderOperationDefinition,\n ResourceProviderOperationDisplay,\n ResourceProviderOperationList\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 constraints: {\n MinLength: 1\n },\n type: {\n name: \"String\"\n }\n }\n};\nexport const endTime: msRest.OperationQueryParameter = {\n parameterPath: \"endTime\",\n mapper: {\n required: true,\n serializedName: \"$endTime\",\n type: {\n name: \"DateTime\"\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: 90,\n MinLength: 1,\n Pattern: /^[-\\w\\._\\(\\)]+$/\n },\n type: {\n name: \"String\"\n }\n }\n};\nexport const resourceId: msRest.OperationURLParameter = {\n parameterPath: \"resourceId\",\n mapper: {\n required: true,\n serializedName: \"resourceId\",\n type: {\n name: \"String\"\n }\n }\n};\nexport const skipToken: msRest.OperationQueryParameter = {\n parameterPath: [\n \"options\",\n \"skipToken\"\n ],\n mapper: {\n serializedName: \"$skipToken\",\n type: {\n name: \"String\"\n }\n }\n};\nexport const startTime: msRest.OperationQueryParameter = {\n parameterPath: \"startTime\",\n mapper: {\n required: true,\n serializedName: \"$startTime\",\n type: {\n name: \"DateTime\"\n }\n }\n};\nexport const subscriptionId: msRest.OperationURLParameter = {\n parameterPath: \"subscriptionId\",\n mapper: {\n required: true,\n serializedName: \"subscriptionId\",\n constraints: {\n MinLength: 1\n },\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 Models from \"../models\";\nimport * as Mappers from \"../models/operationsMappers\";\nimport * as Parameters from \"../models/parameters\";\nimport { AzureChangeAnalysisManagementClientContext } from \"../azureChangeAnalysisManagementClientContext\";\n\n/** Class representing a Operations. */\nexport class Operations {\n private readonly client: AzureChangeAnalysisManagementClientContext;\n\n /**\n * Create a Operations.\n * @param {AzureChangeAnalysisManagementClientContext} client Reference to the service client.\n */\n constructor(client: AzureChangeAnalysisManagementClientContext) {\n this.client = client;\n }\n\n /**\n * @summary Lists all the supported operations by the Microsoft.ChangeAnalysis resource provider\n * along with their descriptions.\n * @param [options] The optional parameters\n * @returns Promise<Models.OperationsListResponse>\n */\n list(options?: Models.OperationsListOptionalParams): Promise<Models.OperationsListResponse>;\n /**\n * @param callback The callback\n */\n list(callback: msRest.ServiceCallback<Models.ResourceProviderOperationList>): void;\n /**\n * @param options The optional parameters\n * @param callback The callback\n */\n list(options: Models.OperationsListOptionalParams, callback: msRest.ServiceCallback<Models.ResourceProviderOperationList>): void;\n list(options?: Models.OperationsListOptionalParams | msRest.ServiceCallback<Models.ResourceProviderOperationList>, callback?: msRest.ServiceCallback<Models.ResourceProviderOperationList>): Promise<Models.OperationsListResponse> {\n return this.client.sendOperationRequest(\n {\n options\n },\n listOperationSpec,\n callback) as Promise<Models.OperationsListResponse>;\n }\n\n /**\n * @summary Lists all the supported operations by the Microsoft.ChangeAnalysis resource provider\n * along with their descriptions.\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?: Models.OperationsListNextOptionalParams): 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.ResourceProviderOperationList>): 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: Models.OperationsListNextOptionalParams, callback: msRest.ServiceCallback<Models.ResourceProviderOperationList>): void;\n listNext(nextPageLink: string, options?: Models.OperationsListNextOptionalParams | msRest.ServiceCallback<Models.ResourceProviderOperationList>, callback?: msRest.ServiceCallback<Models.ResourceProviderOperationList>): 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.ChangeAnalysis/operations\",\n queryParameters: [\n Parameters.apiVersion,\n Parameters.skipToken\n ],\n headerParameters: [\n Parameters.acceptLanguage\n ],\n responses: {\n 200: {\n bodyMapper: Mappers.ResourceProviderOperationList\n },\n default: {\n bodyMapper: Mappers.ErrorResponse\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 Parameters.skipToken\n ],\n headerParameters: [\n Parameters.acceptLanguage\n ],\n responses: {\n 200: {\n bodyMapper: Mappers.ResourceProviderOperationList\n },\n default: {\n bodyMapper: Mappers.ErrorResponse\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 AzureEntityResource,\n BaseResource,\n Change,\n ChangeList,\n ChangeProperties,\n ErrorAdditionalInfo,\n ErrorDetail,\n ErrorResponse,\n PropertyChange,\n ProxyResource,\n Resource,\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\";\nimport * as Models from \"../models\";\nimport * as Mappers from \"../models/resourceChangesMappers\";\nimport * as Parameters from \"../models/parameters\";\nimport { AzureChangeAnalysisManagementClientContext } from \"../azureChangeAnalysisManagementClientContext\";\n\n/** Class representing a ResourceChanges. */\nexport class ResourceChanges {\n private readonly client: AzureChangeAnalysisManagementClientContext;\n\n /**\n * Create a ResourceChanges.\n * @param {AzureChangeAnalysisManagementClientContext} client Reference to the service client.\n */\n constructor(client: AzureChangeAnalysisManagementClientContext) {\n this.client = client;\n }\n\n /**\n * @summary List the changes of a resource within the specified time range. Customer data will be\n * masked if the user doesn't have access.\n * @param resourceId The identifier of the resource.\n * @param startTime Specifies the start time of the changes request.\n * @param endTime Specifies the end time of the changes request.\n * @param [options] The optional parameters\n * @returns Promise<Models.ResourceChangesListResponse>\n */\n list(resourceId: string, startTime: Date | string, endTime: Date | string, options?: Models.ResourceChangesListOptionalParams): Promise<Models.ResourceChangesListResponse>;\n /**\n * @param resourceId The identifier of the resource.\n * @param startTime Specifies the start time of the changes request.\n * @param endTime Specifies the end time of the changes request.\n * @param callback The callback\n */\n list(resourceId: string, startTime: Date | string, endTime: Date | string, callback: msRest.ServiceCallback<Models.ChangeList>): void;\n /**\n * @param resourceId The identifier of the resource.\n * @param startTime Specifies the start time of the changes request.\n * @param endTime Specifies the end time of the changes request.\n * @param options The optional parameters\n * @param callback The callback\n */\n list(resourceId: string, startTime: Date | string, endTime: Date | string, options: Models.ResourceChangesListOptionalParams, callback: msRest.ServiceCallback<Models.ChangeList>): void;\n list(resourceId: string, startTime: Date | string, endTime: Date | string, options?: Models.ResourceChangesListOptionalParams | msRest.ServiceCallback<Models.ChangeList>, callback?: msRest.ServiceCallback<Models.ChangeList>): Promise<Models.ResourceChangesListResponse> {\n return this.client.sendOperationRequest(\n {\n resourceId,\n startTime,\n endTime,\n options\n },\n listOperationSpec,\n callback) as Promise<Models.ResourceChangesListResponse>;\n }\n\n /**\n * @summary List the changes of a resource within the specified time range. Customer data will be\n * masked if the user doesn't have access.\n * @param nextPageLink The NextLink from the previous successful call to List operation.\n * @param startTime Specifies the start time of the changes request.\n * @param endTime Specifies the end time of the changes request.\n * @param [options] The optional parameters\n * @returns Promise<Models.ResourceChangesListNextResponse>\n */\n listNext(nextPageLink: string, startTime: Date | string, endTime: Date | string, options?: Models.ResourceChangesListNextOptionalParams): Promise<Models.ResourceChangesListNextResponse>;\n /**\n * @param nextPageLink The NextLink from the previous successful call to List operation.\n * @param startTime Specifies the start time of the changes request.\n * @param endTime Specifies the end time of the changes request.\n * @param callback The callback\n */\n listNext(nextPageLink: string, startTime: Date | string, endTime: Date | string, callback: msRest.ServiceCallback<Models.ChangeList>): void;\n /**\n * @param nextPageLink The NextLink from the previous successful call to List operation.\n * @param startTime Specifies the start time of the changes request.\n * @param endTime Specifies the end time of the changes request.\n * @param options The optional parameters\n * @param callback The callback\n */\n listNext(nextPageLink: string, startTime: Date | string, endTime: Date | string, options: Models.ResourceChangesListNextOptionalParams, callback: msRest.ServiceCallback<Models.ChangeList>): void;\n listNext(nextPageLink: string, startTime: Date | string, endTime: Date | string, options?: Models.ResourceChangesListNextOptionalParams | msRest.ServiceCallback<Models.ChangeList>, callback?: msRest.ServiceCallback<Models.ChangeList>): Promise<Models.ResourceChangesListNextResponse> {\n return this.client.sendOperationRequest(\n {\n nextPageLink,\n startTime,\n endTime,\n options\n },\n listNextOperationSpec,\n callback) as Promise<Models.ResourceChangesListNextResponse>;\n }\n}\n\n// Operation Specifications\nconst serializer = new msRest.Serializer(Mappers);\nconst listOperationSpec: msRest.OperationSpec = {\n httpMethod: \"POST\",\n path: \"{resourceId}/providers/Microsoft.ChangeAnalysis/resourceChanges\",\n urlParameters: [\n Parameters.resourceId\n ],\n queryParameters: [\n Parameters.apiVersion,\n Parameters.startTime,\n Parameters.endTime,\n Parameters.skipToken\n ],\n headerParameters: [\n Parameters.acceptLanguage\n ],\n responses: {\n 200: {\n bodyMapper: Mappers.ChangeList\n },\n default: {\n bodyMapper: Mappers.ErrorResponse\n }\n },\n serializer\n};\n\nconst listNextOperationSpec: msRest.OperationSpec = {\n httpMethod: \"POST\",\n baseUrl: \"https://management.azure.com\",\n path: \"{nextLink}\",\n urlParameters: [\n Parameters.nextPageLink\n ],\n queryParameters: [\n Parameters.apiVersion,\n Parameters.startTime,\n Parameters.endTime,\n Parameters.skipToken\n ],\n headerParameters: [\n Parameters.acceptLanguage\n ],\n responses: {\n 200: {\n bodyMapper: Mappers.ChangeList\n },\n default: {\n bodyMapper: Mappers.ErrorResponse\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 AzureEntityResource,\n BaseResource,\n Change,\n ChangeList,\n ChangeProperties,\n ErrorAdditionalInfo,\n ErrorDetail,\n ErrorResponse,\n PropertyChange,\n ProxyResource,\n Resource,\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\";\nimport * as Models from \"../models\";\nimport * as Mappers from \"../models/changesMappers\";\nimport * as Parameters from \"../models/parameters\";\nimport { AzureChangeAnalysisManagementClientContext } from \"../azureChangeAnalysisManagementClientContext\";\n\n/** Class representing a Changes. */\nexport class Changes {\n private readonly client: AzureChangeAnalysisManagementClientContext;\n\n /**\n * Create a Changes.\n * @param {AzureChangeAnalysisManagementClientContext} client Reference to the service client.\n */\n constructor(client: AzureChangeAnalysisManagementClientContext) {\n this.client = client;\n }\n\n /**\n * @summary List the changes of a resource group within the specified time range. Customer data\n * will always be masked.\n * @param resourceGroupName The name of the resource group. The name is case insensitive.\n * @param startTime Specifies the start time of the changes request.\n * @param endTime Specifies the end time of the changes request.\n * @param [options] The optional parameters\n * @returns Promise<Models.ChangesListChangesByResourceGroupResponse>\n */\n listChangesByResourceGroup(resourceGroupName: string, startTime: Date | string, endTime: Date | string, options?: Models.ChangesListChangesByResourceGroupOptionalParams): Promise<Models.ChangesListChangesByResourceGroupResponse>;\n /**\n * @param resourceGroupName The name of the resource group. The name is case insensitive.\n * @param startTime Specifies the start time of the changes request.\n * @param endTime Specifies the end time of the changes request.\n * @param callback The callback\n */\n listChangesByResourceGroup(resourceGroupName: string, startTime: Date | string, endTime: Date | string, callback: msRest.ServiceCallback<Models.ChangeList>): void;\n /**\n * @param resourceGroupName The name of the resource group. The name is case insensitive.\n * @param startTime Specifies the start time of the changes request.\n * @param endTime Specifies the end time of the changes request.\n * @param options The optional parameters\n * @param callback The callback\n */\n listChangesByResourceGroup(resourceGroupName: string, startTime: Date | string, endTime: Date | string, options: Models.ChangesListChangesByResourceGroupOptionalParams, callback: msRest.ServiceCallback<Models.ChangeList>): void;\n listChangesByResourceGroup(resourceGroupName: string, startTime: Date | string, endTime: Date | string, options?: Models.ChangesListChangesByResourceGroupOptionalParams | msRest.ServiceCallback<Models.ChangeList>, callback?: msRest.ServiceCallback<Models.ChangeList>): Promise<Models.ChangesListChangesByResourceGroupResponse> {\n return this.client.sendOperationRequest(\n {\n resourceGroupName,\n startTime,\n endTime,\n options\n },\n listChangesByResourceGroupOperationSpec,\n callback) as Promise<Models.ChangesListChangesByResourceGroupResponse>;\n }\n\n /**\n * @summary List the changes of a subscription within the specified time range. Customer data will\n * always be masked.\n * @param startTime Specifies the start time of the changes request.\n * @param endTime Specifies the end time of the changes request.\n * @param [options] The optional parameters\n * @returns Promise<Models.ChangesListChangesBySubscriptionResponse>\n */\n listChangesBySubscription(startTime: Date | string, endTime: Date | string, options?: Models.ChangesListChangesBySubscriptionOptionalParams): Promise<Models.ChangesListChangesBySubscriptionResponse>;\n /**\n * @param startTime Specifies the start time of the changes request.\n * @param endTime Specifies the end time of the changes request.\n * @param callback The callback\n */\n listChangesBySubscription(startTime: Date | string, endTime: Date | string, callback: msRest.ServiceCallback<Models.ChangeList>): void;\n /**\n * @param startTime Specifies the start time of the changes request.\n * @param endTime Specifies the end time of the changes request.\n * @param options The optional parameters\n * @param callback The callback\n */\n listChangesBySubscription(startTime: Date | string, endTime: Date | string, options: Models.ChangesListChangesBySubscriptionOptionalParams, callback: msRest.ServiceCallback<Models.ChangeList>): void;\n listChangesBySubscription(startTime: Date | string, endTime: Date | string, options?: Models.ChangesListChangesBySubscriptionOptionalParams | msRest.ServiceCallback<Models.ChangeList>, callback?: msRest.ServiceCallback<Models.ChangeList>): Promise<Models.ChangesListChangesBySubscriptionResponse> {\n return this.client.sendOperationRequest(\n {\n startTime,\n endTime,\n options\n },\n listChangesBySubscriptionOperationSpec,\n callback) as Promise<Models.ChangesListChangesBySubscriptionResponse>;\n }\n\n /**\n * @summary List the changes of a resource group within the specified time range. Customer data\n * will always be masked.\n * @param nextPageLink The NextLink from the previous successful call to List operation.\n * @param startTime Specifies the start time of the changes request.\n * @param endTime Specifies the end time of the changes request.\n * @param [options] The optional parameters\n * @returns Promise<Models.ChangesListChangesByResourceGroupNextResponse>\n */\n listChangesByResourceGroupNext(nextPageLink: string, startTime: Date | string, endTime: Date | string, options?: Models.ChangesListChangesByResourceGroupNextOptionalParams): Promise<Models.ChangesListChangesByResourceGroupNextResponse>;\n /**\n * @param nextPageLink The NextLink from the previous successful call to List operation.\n * @param startTime Specifies the start time of the changes request.\n * @param endTime Specifies the end time of the changes request.\n * @param callback The callback\n */\n listChangesByResourceGroupNext(nextPageLink: string, startTime: Date | string, endTime: Date | string, callback: msRest.ServiceCallback<Models.ChangeList>): void;\n /**\n * @param nextPageLink The NextLink from the previous successful call to List operation.\n * @param startTime Specifies the start time of the changes request.\n * @param endTime Specifies the end time of the changes request.\n * @param options The optional parameters\n * @param callback The callback\n */\n listChangesByResourceGroupNext(nextPageLink: string, startTime: Date | string, endTime: Date | string, options: Models.ChangesListChangesByResourceGroupNextOptionalParams, callback: msRest.ServiceCallback<Models.ChangeList>): void;\n listChangesByResourceGroupNext(nextPageLink: string, startTime: Date | string, endTime: Date | string, options?: Models.ChangesListChangesByResourceGroupNextOptionalParams | msRest.ServiceCallback<Models.ChangeList>, callback?: msRest.ServiceCallback<Models.ChangeList>): Promise<Models.ChangesListChangesByResourceGroupNextResponse> {\n return this.client.sendOperationRequest(\n {\n nextPageLink,\n startTime,\n endTime,\n options\n },\n listChangesByResourceGroupNextOperationSpec,\n callback) as Promise<Models.ChangesListChangesByResourceGroupNextResponse>;\n }\n\n /**\n * @summary List the changes of a subscription within the specified time range. Customer data will\n * always be masked.\n * @param nextPageLink The NextLink from the previous successful call to List operation.\n * @param startTime Specifies the start time of the changes request.\n * @param endTime Specifies the end time of the changes request.\n * @param [options] The optional parameters\n * @returns Promise<Models.ChangesListChangesBySubscriptionNextResponse>\n */\n listChangesBySubscriptionNext(nextPageLink: string, startTime: Date | string, endTime: Date | string, options?: Models.ChangesListChangesBySubscriptionNextOptionalParams): Promise<Models.ChangesListChangesBySubscriptionNextResponse>;\n /**\n * @param nextPageLink The NextLink from the previous successful call to List operation.\n * @param startTime Specifies the start time of the changes request.\n * @param endTime Specifies the end time of the changes request.\n * @param callback The callback\n */\n listChangesBySubscriptionNext(nextPageLink: string, startTime: Date | string, endTime: Date | string, callback: msRest.ServiceCallback<Models.ChangeList>): void;\n /**\n * @param nextPageLink The NextLink from the previous successful call to List operation.\n * @param startTime Specifies the start time of the changes request.\n * @param endTime Specifies the end time of the changes request.\n * @param options The optional parameters\n * @param callback The callback\n */\n listChangesBySubscriptionNext(nextPageLink: string, startTime: Date | string, endTime: Date | string, options: Models.ChangesListChangesBySubscriptionNextOptionalParams, callback: msRest.ServiceCallback<Models.ChangeList>): void;\n listChangesBySubscriptionNext(nextPageLink: string, startTime: Date | string, endTime: Date | string, options?: Models.ChangesListChangesBySubscriptionNextOptionalParams | msRest.ServiceCallback<Models.ChangeList>, callback?: msRest.ServiceCallback<Models.ChangeList>): Promise<Models.ChangesListChangesBySubscriptionNextResponse> {\n return this.client.sendOperationRequest(\n {\n nextPageLink,\n startTime,\n endTime,\n options\n },\n listChangesBySubscriptionNextOperationSpec,\n callback) as Promise<Models.ChangesListChangesBySubscriptionNextResponse>;\n }\n}\n\n// Operation Specifications\nconst serializer = new msRest.Serializer(Mappers);\nconst listChangesByResourceGroupOperationSpec: msRest.OperationSpec = {\n httpMethod: \"GET\",\n path: \"subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ChangeAnalysis/changes\",\n urlParameters: [\n Parameters.subscriptionId,\n Parameters.resourceGroupName\n ],\n queryParameters: [\n Parameters.apiVersion,\n Parameters.startTime,\n Parameters.endTime,\n Parameters.skipToken\n ],\n headerParameters: [\n Parameters.acceptLanguage\n ],\n responses: {\n 200: {\n bodyMapper: Mappers.ChangeList\n },\n default: {\n bodyMapper: Mappers.ErrorResponse\n }\n },\n serializer\n};\n\nconst listChangesBySubscriptionOperationSpec: msRest.OperationSpec = {\n httpMethod: \"GET\",\n path: \"subscriptions/{subscriptionId}/providers/Microsoft.ChangeAnalysis/changes\",\n urlParameters: [\n Parameters.subscriptionId\n ],\n queryParameters: [\n Parameters.apiVersion,\n Parameters.startTime,\n Parameters.endTime,\n Parameters.skipToken\n ],\n headerParameters: [\n Parameters.acceptLanguage\n ],\n responses: {\n 200: {\n bodyMapper: Mappers.ChangeList\n },\n default: {\n bodyMapper: Mappers.ErrorResponse\n }\n },\n serializer\n};\n\nconst listChangesByResourceGroupNextOperationSpec: 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 Parameters.startTime,\n Parameters.endTime,\n Parameters.skipToken\n ],\n headerParameters: [\n Parameters.acceptLanguage\n ],\n responses: {\n 200: {\n bodyMapper: Mappers.ChangeList\n },\n default: {\n bodyMapper: Mappers.ErrorResponse\n }\n },\n serializer\n};\n\nconst listChangesBySubscriptionNextOperationSpec: 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 Parameters.startTime,\n Parameters.endTime,\n Parameters.skipToken\n ],\n headerParameters: [\n Parameters.acceptLanguage\n ],\n responses: {\n 200: {\n bodyMapper: Mappers.ChangeList\n },\n default: {\n bodyMapper: Mappers.ErrorResponse\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 { TokenCredential } from \"@azure/core-auth\";\nimport * as msRestAzure from \"@azure/ms-rest-azure-js\";\n\nconst packageName = \"@azure/arm-changeanalysis\";\nconst packageVersion = \"1.1.1\";\n\nexport class AzureChangeAnalysisManagementClientContext extends msRestAzure.AzureServiceClient {\n credentials: msRest.ServiceClientCredentials | TokenCredential;\n subscriptionId: string;\n apiVersion?: string;\n\n /**\n * Initializes a new instance of the AzureChangeAnalysisManagementClient class.\n * @param credentials Credentials needed for the client to connect to Azure. Credentials\n * implementing the TokenCredential interface from the @azure/identity package are recommended. For\n * more information about these credentials, see\n * {@link https://www.npmjs.com/package/@azure/identity}. Credentials implementing the\n * ServiceClientCredentials interface from the older packages @azure/ms-rest-nodeauth and\n * @azure/ms-rest-browserauth are also supported.\n * @param subscriptionId The ID of the target subscription.\n * @param [options] The parameter options\n */\n constructor(credentials: msRest.ServiceClientCredentials | TokenCredential, subscriptionId: string, options?: Models.AzureChangeAnalysisManagementClientOptions) {\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 = '2021-04-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\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 { TokenCredential } from \"@azure/core-auth\";\nimport * as Models from \"./models\";\nimport * as Mappers from \"./models/mappers\";\nimport * as operations from \"./operations\";\nimport { AzureChangeAnalysisManagementClientContext } from \"./azureChangeAnalysisManagementClientContext\";\n\n\nclass AzureChangeAnalysisManagementClient extends AzureChangeAnalysisManagementClientContext {\n // Operation groups\n operations: operations.Operations;\n resourceChanges: operations.ResourceChanges;\n changes: operations.Changes;\n\n /**\n * Initializes a new instance of the AzureChangeAnalysisManagementClient class.\n * @param credentials Credentials needed for the client to connect to Azure. Credentials\n * implementing the TokenCredential interface from the @azure/identity package are recommended. For\n * more information about these credentials, see\n * {@link https://www.npmjs.com/package/@azure/identity}. Credentials implementing the\n * ServiceClientCredentials interface from the older packages @azure/ms-rest-nodeauth and\n * @azure/ms-rest-browserauth are also supported.\n * @param subscriptionId The ID of the target subscription.\n * @param [options] The parameter options\n */\n constructor(credentials: msRest.ServiceClientCredentials | TokenCredential, subscriptionId: string, options?: Models.AzureChangeAnalysisManagementClientOptions) {\n super(credentials, subscriptionId, options);\n this.operations = new operations.Operations(this);\n this.resourceChanges = new operations.ResourceChanges(this);\n this.changes = new operations.Changes(this);\n }\n}\n\n// Operation Specifications\n\nexport {\n AzureChangeAnalysisManagementClient,\n AzureChangeAnalysisManagementClientContext,\n Models as AzureChangeAnalysisManagementModels,\n Mappers as AzureChangeAnalysisManagementMappers\n};\nexport * from \"./operations\";\n"],"names":["CloudErrorMapper","BaseResourceMapper","msRest.Serializer","Parameters.apiVersion","Parameters.skipToken","Parameters.acceptLanguage","Mappers.ResourceProviderOperationList","Mappers.ErrorResponse","Parameters.nextPageLink","listOperationSpec","listNextOperationSpec","serializer","Mappers","Parameters.resourceId","Parameters.startTime","Parameters.endTime","Mappers.ChangeList","Parameters.subscriptionId","Parameters.resourceGroupName","msRestAzure.getDefaultUserAgentValue","msRestAzure.AzureServiceClient","operations.Operations","operations.ResourceChanges","operations.Changes"],"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.ArmChangeanalysis={}),e.msRestAzure,e.msRest)}(this,function(e,n,r){"use strict";var t=function(e,r){return(t=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,r){e.__proto__=r}||function(e,r){for(var a in r)r.hasOwnProperty(a)&&(e[a]=r[a])})(e,r)};function a(e,r){function a(){this.constructor=e}t(e,r),e.prototype=null===r?Object.create(r):(a.prototype=r.prototype,new a)}var i=function(){return(i=Object.assign||function(e){for(var r,a=1,t=arguments.length;a<t;a++)for(var i in r=arguments[a])Object.prototype.hasOwnProperty.call(r,i)&&(e[i]=r[i]);return e}).apply(this,arguments)},s=Object.freeze({__proto__:null}),o=n.CloudErrorMapper,p=n.BaseResourceMapper,m={serializedName:"ResourceProviderOperationDisplay",type:{name:"Composite",className:"ResourceProviderOperationDisplay",modelProperties:{provider:{serializedName:"provider",type:{name:"String"}},resource:{serializedName:"resource",type:{name:"String"}},operation:{serializedName:"operation",type:{name:"String"}},description:{serializedName:"description",type:{name:"String"}}}}},l={serializedName:"ResourceProviderOperationDefinition",type:{name:"Composite",className:"ResourceProviderOperationDefinition",modelProperties:{name:{serializedName:"name",type:{name:"String"}},display:{serializedName:"display",type:{name:"Composite",className:"ResourceProviderOperationDisplay"}}}}},d={serializedName:"PropertyChange",type:{name:"Composite",className:"PropertyChange",modelProperties:{changeType:{serializedName:"changeType",type:{name:"String"}},changeCategory:{serializedName:"changeCategory",type:{name:"Enum",allowedValues:["User","System"]}},jsonPath:{serializedName:"jsonPath",type:{name:"String"}},displayName:{serializedName:"displayName",type:{name:"String"}},level:{serializedName:"level",type:{name:"String"}},description:{serializedName:"description",type:{name:"String"}},oldValue:{serializedName:"oldValue",type:{name:"String"}},newValue:{serializedName:"newValue",type:{name:"String"}},isDataMasked:{serializedName:"isDataMasked",type:{name:"Boolean"}}}}},u={serializedName:"ChangeProperties",type:{name:"Composite",className:"ChangeProperties",modelProperties:{resourceId:{serializedName:"resourceId",type:{name:"String"}},timeStamp:{serializedName:"timeStamp",type:{name:"DateTime"}},initiatedByList:{serializedName:"initiatedByList",type:{name:"Sequence",element:{type:{name:"String"}}}},changeType:{serializedName:"changeType",type:{name:"String"}},propertyChanges:{serializedName:"propertyChanges",type:{name:"Sequence",element:{type:{name:"Composite",className:"PropertyChange"}}}}}}},c={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"}}}}},y={serializedName:"ProxyResource",type:{name:"Composite",className:"ProxyResource",modelProperties:i({},c.type.modelProperties)}},g={serializedName:"Change",type:{name:"Composite",className:"Change",modelProperties:i(i({},y.type.modelProperties),{properties:{serializedName:"properties",type:{name:"Composite",className:"ChangeProperties"}}})}},h={serializedName:"TrackedResource",type:{name:"Composite",className:"TrackedResource",modelProperties:i(i({},c.type.modelProperties),{tags:{serializedName:"tags",type:{name:"Dictionary",value:{type:{name:"String"}}}},location:{required:!0,serializedName:"location",type:{name:"String"}}})}},z={serializedName:"AzureEntityResource",type:{name:"Composite",className:"AzureEntityResource",modelProperties:i(i({},c.type.modelProperties),{etag:{readOnly:!0,serializedName:"etag",type:{name:"String"}}})}},P={serializedName:"ErrorAdditionalInfo",type:{name:"Composite",className:"ErrorAdditionalInfo",modelProperties:{type:{readOnly:!0,serializedName:"type",type:{name:"String"}},info:{readOnly:!0,serializedName:"info",type:{name:"Object"}}}}},N={serializedName:"ErrorDetail",type:{name:"Composite",className:"ErrorDetail",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:"ErrorDetail"}}}},additionalInfo:{readOnly:!0,serializedName:"additionalInfo",type:{name:"Sequence",element:{type:{name:"Composite",className:"ErrorAdditionalInfo"}}}}}}},f={serializedName:"ErrorResponse",type:{name:"Composite",className:"ErrorResponse",modelProperties:{error:{serializedName:"error",type:{name:"Composite",className:"ErrorDetail"}}}}},C={serializedName:"ResourceProviderOperationList",type:{name:"Composite",className:"ResourceProviderOperationList",modelProperties:{value:{serializedName:"",type:{name:"Sequence",element:{type:{name:"Composite",className:"ResourceProviderOperationDefinition"}}}},nextLink:{serializedName:"nextLink",type:{name:"String"}}}}},R={serializedName:"ChangeList",type:{name:"Composite",className:"ChangeList",modelProperties:{value:{serializedName:"",type:{name:"Sequence",element:{type:{name:"Composite",className:"Change"}}}},nextLink:{serializedName:"nextLink",type:{name:"String"}}}}},O=Object.freeze({__proto__:null,CloudError:o,BaseResource:p,ResourceProviderOperationDisplay:m,ResourceProviderOperationDefinition:l,PropertyChange:d,ChangeProperties:u,Resource:c,ProxyResource:y,Change:g,TrackedResource:h,AzureEntityResource:z,ErrorAdditionalInfo:P,ErrorDetail:N,ErrorResponse:f,ResourceProviderOperationList:C,ChangeList:R}),S=Object.freeze({__proto__:null,ErrorAdditionalInfo:P,ErrorDetail:N,ErrorResponse:f,ResourceProviderOperationDefinition:l,ResourceProviderOperationDisplay:m,ResourceProviderOperationList:C}),b={parameterPath:"acceptLanguage",mapper:{serializedName:"accept-language",defaultValue:"en-US",type:{name:"String"}}},T={parameterPath:"apiVersion",mapper:{required:!0,serializedName:"api-version",constraints:{MinLength:1},type:{name:"String"}}},M={parameterPath:"endTime",mapper:{required:!0,serializedName:"$endTime",type:{name:"DateTime"}}},v={parameterPath:"nextPageLink",mapper:{required:!0,serializedName:"nextLink",type:{name:"String"}},skipEncoding:!0},o={parameterPath:["options","skipToken"],mapper:{serializedName:"$skipToken",type:{name:"String"}}},l={parameterPath:"startTime",mapper:{required:!0,serializedName:"$startTime",type:{name:"DateTime"}}},m={parameterPath:"subscriptionId",mapper:{required:!0,serializedName:"subscriptionId",constraints:{MinLength:1},type:{name:"String"}}},E=(L.prototype.list=function(e,r){return this.client.sendOperationRequest({options:e},A,r)},L.prototype.listNext=function(e,r,a){return this.client.sendOperationRequest({nextPageLink:e,options:r},q,a)},L);function L(e){this.client=e}var S=new r.Serializer(S),A={httpMethod:"GET",path:"providers/Microsoft.ChangeAnalysis/operations",queryParameters:[T,o],headerParameters:[b],responses:{200:{bodyMapper:C},default:{bodyMapper:f}},serializer:S},q={httpMethod:"GET",baseUrl:"https://management.azure.com",path:"{nextLink}",urlParameters:[v],queryParameters:[T,o],headerParameters:[b],responses:{200:{bodyMapper:C},default:{bodyMapper:f}},serializer:S},S=Object.freeze({__proto__:null,AzureEntityResource:z,BaseResource:p,Change:g,ChangeList:R,ChangeProperties:u,ErrorAdditionalInfo:P,ErrorDetail:N,ErrorResponse:f,PropertyChange:d,ProxyResource:y,Resource:c,TrackedResource:h}),_=(x.prototype.list=function(e,r,a,t,i){return this.client.sendOperationRequest({resourceId:e,startTime:r,endTime:a,options:t},k,i)},x.prototype.listNext=function(e,r,a,t,i){return this.client.sendOperationRequest({nextPageLink:e,startTime:r,endTime:a,options:t},D,i)},x);function x(e){this.client=e}var S=new r.Serializer(S),k={httpMethod:"POST",path:"{resourceId}/providers/Microsoft.ChangeAnalysis/resourceChanges",urlParameters:[{parameterPath:"resourceId",mapper:{required:!0,serializedName:"resourceId",type:{name:"String"}}}],queryParameters:[T,l,M,o],headerParameters:[b],responses:{200:{bodyMapper:R},default:{bodyMapper:f}},serializer:S},D={httpMethod:"POST",baseUrl:"https://management.azure.com",path:"{nextLink}",urlParameters:[v],queryParameters:[T,l,M,o],headerParameters:[b],responses:{200:{bodyMapper:R},default:{bodyMapper:f}},serializer:S},h=Object.freeze({__proto__:null,AzureEntityResource:z,BaseResource:p,Change:g,ChangeList:R,ChangeProperties:u,ErrorAdditionalInfo:P,ErrorDetail:N,ErrorResponse:f,PropertyChange:d,ProxyResource:y,Resource:c,TrackedResource:h}),I=(j.prototype.listChangesByResourceGroup=function(e,r,a,t,i){return this.client.sendOperationRequest({resourceGroupName:e,startTime:r,endTime:a,options:t},G,i)},j.prototype.listChangesBySubscription=function(e,r,a,t){return this.client.sendOperationRequest({startTime:e,endTime:r,options:a},B,t)},j.prototype.listChangesByResourceGroupNext=function(e,r,a,t,i){return this.client.sendOperationRequest({nextPageLink:e,startTime:r,endTime:a,options:t},U,i)},j.prototype.listChangesBySubscriptionNext=function(e,r,a,t,i){return this.client.sendOperationRequest({nextPageLink:e,startTime:r,endTime:a,options:t},V,i)},j);function j(e){this.client=e}var w,h=new r.Serializer(h),G={httpMethod:"GET",path:"subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ChangeAnalysis/changes",urlParameters:[m,{parameterPath:"resourceGroupName",mapper:{required:!0,serializedName:"resourceGroupName",constraints:{MaxLength:90,MinLength:1,Pattern:/^[-\w\._\(\)]+$/},type:{name:"String"}}}],queryParameters:[T,l,M,o],headerParameters:[b],responses:{200:{bodyMapper:R},default:{bodyMapper:f}},serializer:h},B={httpMethod:"GET",path:"subscriptions/{subscriptionId}/providers/Microsoft.ChangeAnalysis/changes",urlParameters:[m],queryParameters:[T,l,M,o],headerParameters:[b],responses:{200:{bodyMapper:R},default:{bodyMapper:f}},serializer:h},U={httpMethod:"GET",baseUrl:"https://management.azure.com",path:"{nextLink}",urlParameters:[v],queryParameters:[T,l,M,o],headerParameters:[b],responses:{200:{bodyMapper:R},default:{bodyMapper:f}},serializer:h},V={httpMethod:"GET",baseUrl:"https://management.azure.com",path:"{nextLink}",urlParameters:[v],queryParameters:[T,l,M,o],headerParameters:[b],responses:{200:{bodyMapper:R},default:{bodyMapper:f}},serializer:h},f=(a($,w=n.AzureServiceClient),$);function $(e,r,a){var t,i=this;if(null==e)throw new Error("'credentials' cannot be null.");if(null==r)throw new Error("'subscriptionId' cannot be null.");return(a=a||{}).userAgent||(t=n.getDefaultUserAgentValue(),a.userAgent="@azure/arm-changeanalysis/1.1.1 "+t),(i=w.call(this,e,a)||this).apiVersion="2021-04-01",i.acceptLanguage="en-US",i.longRunningOperationRetryTimeout=30,i.baseUri=a.baseUri||i.baseUri||"https://management.azure.com",i.requestContentType="application/json; charset=utf-8",i.credentials=e,i.subscriptionId=r,null!==a.acceptLanguage&&void 0!==a.acceptLanguage&&(i.acceptLanguage=a.acceptLanguage),null!==a.longRunningOperationRetryTimeout&&void 0!==a.longRunningOperationRetryTimeout&&(i.longRunningOperationRetryTimeout=a.longRunningOperationRetryTimeout),i}var F,h=(a(H,F=f),H);function H(e,r,a){a=F.call(this,e,r,a)||this;return a.operations=new E(a),a.resourceChanges=new _(a),a.changes=new I(a),a}e.AzureChangeAnalysisManagementClient=h,e.AzureChangeAnalysisManagementClientContext=f,e.AzureChangeAnalysisManagementMappers=O,e.AzureChangeAnalysisManagementModels=s,e.Changes=I,e.Operations=E,e.ResourceChanges=_,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/operations.ts","../src/operations/resourceChanges.ts","../src/operations/changes.ts","../src/azureChangeAnalysisManagementClientContext.ts","../src/azureChangeAnalysisManagementClient.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","ResourceProviderOperationDisplay","serializedName","type","name","className","modelProperties","provider","resource","operation","description","ResourceProviderOperationDefinition","display","PropertyChange","changeType","changeCategory","allowedValues","jsonPath","displayName","level","oldValue","newValue","isDataMasked","ChangeProperties","resourceId","timeStamp","initiatedByList","element","propertyChanges","Resource","id","readOnly","ProxyResource","Change","properties","TrackedResource","tags","value","location","required","AzureEntityResource","etag","ErrorAdditionalInfo","info","ErrorDetail","code","message","target","details","additionalInfo","ErrorResponse","error","ResourceProviderOperationList","nextLink","ChangeList","acceptLanguage","parameterPath","mapper","defaultValue","apiVersion","constraints","MinLength","endTime","nextPageLink","skipEncoding","skipToken","startTime","subscriptionId","Operations","list","options","callback","client","sendOperationRequest","listOperationSpec","listNext","listNextOperationSpec","serializer","msRest.Serializer","Mappers","httpMethod","path","queryParameters","Parameters.apiVersion","Parameters.skipToken","headerParameters","Parameters.acceptLanguage","responses","200","bodyMapper","Mappers.ResourceProviderOperationList","default","Mappers.ErrorResponse","baseUrl","urlParameters","Parameters.nextPageLink","ResourceChanges","Parameters.startTime","Parameters.endTime","Mappers.ChangeList","serializer$1","Changes","listChangesByResourceGroup","resourceGroupName","listChangesByResourceGroupOperationSpec","listChangesBySubscription","listChangesBySubscriptionOperationSpec","listChangesByResourceGroupNext","listChangesByResourceGroupNextOperationSpec","listChangesBySubscriptionNext","listChangesBySubscriptionNextOperationSpec","_super","Parameters.subscriptionId","MaxLength","Pattern","serializer$2","AzureChangeAnalysisManagementClientContext","msRestAzure.AzureServiceClient","credentials","defaultUserAgent","_this","undefined","Error","userAgent","msRestAzure.getDefaultUserAgentValue","packageName","longRunningOperationRetryTimeout","baseUri","requestContentType","AzureChangeAnalysisManagementClient","operations","operations.Operations","resourceChanges","operations.ResourceChanges","changes","operations.Changes"],"mappings":"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"}
|
|
@@ -1,26 +0,0 @@
|
|
|
1
|
-
import * as msRest from "@azure/ms-rest-js";
|
|
2
|
-
import { TokenCredential } from "@azure/core-auth";
|
|
3
|
-
import * as Models from "./models";
|
|
4
|
-
import * as Mappers from "./models/mappers";
|
|
5
|
-
import * as operations from "./operations";
|
|
6
|
-
import { AzureChangeAnalysisManagementClientContext } from "./azureChangeAnalysisManagementClientContext";
|
|
7
|
-
declare class AzureChangeAnalysisManagementClient extends AzureChangeAnalysisManagementClientContext {
|
|
8
|
-
operations: operations.Operations;
|
|
9
|
-
resourceChanges: operations.ResourceChanges;
|
|
10
|
-
changes: operations.Changes;
|
|
11
|
-
/**
|
|
12
|
-
* Initializes a new instance of the AzureChangeAnalysisManagementClient class.
|
|
13
|
-
* @param credentials Credentials needed for the client to connect to Azure. Credentials
|
|
14
|
-
* implementing the TokenCredential interface from the @azure/identity package are recommended. For
|
|
15
|
-
* more information about these credentials, see
|
|
16
|
-
* {@link https://www.npmjs.com/package/@azure/identity}. Credentials implementing the
|
|
17
|
-
* ServiceClientCredentials interface from the older packages @azure/ms-rest-nodeauth and
|
|
18
|
-
* @azure/ms-rest-browserauth are also supported.
|
|
19
|
-
* @param subscriptionId The ID of the target subscription.
|
|
20
|
-
* @param [options] The parameter options
|
|
21
|
-
*/
|
|
22
|
-
constructor(credentials: msRest.ServiceClientCredentials | TokenCredential, subscriptionId: string, options?: Models.AzureChangeAnalysisManagementClientOptions);
|
|
23
|
-
}
|
|
24
|
-
export { AzureChangeAnalysisManagementClient, AzureChangeAnalysisManagementClientContext, Models as AzureChangeAnalysisManagementModels, Mappers as AzureChangeAnalysisManagementMappers };
|
|
25
|
-
export * from "./operations";
|
|
26
|
-
//# sourceMappingURL=azureChangeAnalysisManagementClient.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"azureChangeAnalysisManagementClient.d.ts","sourceRoot":"","sources":["../src/azureChangeAnalysisManagementClient.ts"],"names":[],"mappings":"AASA,OAAO,KAAK,MAAM,MAAM,mBAAmB,CAAC;AAC5C,OAAO,EAAE,eAAe,EAAE,MAAM,kBAAkB,CAAC;AACnD,OAAO,KAAK,MAAM,MAAM,UAAU,CAAC;AACnC,OAAO,KAAK,OAAO,MAAM,kBAAkB,CAAC;AAC5C,OAAO,KAAK,UAAU,MAAM,cAAc,CAAC;AAC3C,OAAO,EAAE,0CAA0C,EAAE,MAAM,8CAA8C,CAAC;AAG1G,cAAM,mCAAoC,SAAQ,0CAA0C;IAE1F,UAAU,EAAE,UAAU,CAAC,UAAU,CAAC;IAClC,eAAe,EAAE,UAAU,CAAC,eAAe,CAAC;IAC5C,OAAO,EAAE,UAAU,CAAC,OAAO,CAAC;IAE5B;;;;;;;;;;OAUG;gBACS,WAAW,EAAE,MAAM,CAAC,wBAAwB,GAAG,eAAe,EAAE,cAAc,EAAE,MAAM,EAAE,OAAO,CAAC,EAAE,MAAM,CAAC,0CAA0C;CAMhK;AAID,OAAO,EACL,mCAAmC,EACnC,0CAA0C,EAC1C,MAAM,IAAI,mCAAmC,EAC7C,OAAO,IAAI,oCAAoC,EAChD,CAAC;AACF,cAAc,cAAc,CAAC"}
|
|
@@ -1,39 +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 { AzureChangeAnalysisManagementClientContext } from "./azureChangeAnalysisManagementClientContext";
|
|
14
|
-
var AzureChangeAnalysisManagementClient = /** @class */ (function (_super) {
|
|
15
|
-
__extends(AzureChangeAnalysisManagementClient, _super);
|
|
16
|
-
/**
|
|
17
|
-
* Initializes a new instance of the AzureChangeAnalysisManagementClient class.
|
|
18
|
-
* @param credentials Credentials needed for the client to connect to Azure. Credentials
|
|
19
|
-
* implementing the TokenCredential interface from the @azure/identity package are recommended. For
|
|
20
|
-
* more information about these credentials, see
|
|
21
|
-
* {@link https://www.npmjs.com/package/@azure/identity}. Credentials implementing the
|
|
22
|
-
* ServiceClientCredentials interface from the older packages @azure/ms-rest-nodeauth and
|
|
23
|
-
* @azure/ms-rest-browserauth are also supported.
|
|
24
|
-
* @param subscriptionId The ID of the target subscription.
|
|
25
|
-
* @param [options] The parameter options
|
|
26
|
-
*/
|
|
27
|
-
function AzureChangeAnalysisManagementClient(credentials, subscriptionId, options) {
|
|
28
|
-
var _this = _super.call(this, credentials, subscriptionId, options) || this;
|
|
29
|
-
_this.operations = new operations.Operations(_this);
|
|
30
|
-
_this.resourceChanges = new operations.ResourceChanges(_this);
|
|
31
|
-
_this.changes = new operations.Changes(_this);
|
|
32
|
-
return _this;
|
|
33
|
-
}
|
|
34
|
-
return AzureChangeAnalysisManagementClient;
|
|
35
|
-
}(AzureChangeAnalysisManagementClientContext));
|
|
36
|
-
// Operation Specifications
|
|
37
|
-
export { AzureChangeAnalysisManagementClient, AzureChangeAnalysisManagementClientContext, Models as AzureChangeAnalysisManagementModels, Mappers as AzureChangeAnalysisManagementMappers };
|
|
38
|
-
export * from "./operations";
|
|
39
|
-
//# sourceMappingURL=azureChangeAnalysisManagementClient.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"azureChangeAnalysisManagementClient.js","sourceRoot":"","sources":["../src/azureChangeAnalysisManagementClient.ts"],"names":[],"mappings":"AAAA;;;;;;;GAOG;;AAIH,OAAO,KAAK,MAAM,MAAM,UAAU,CAAC;AACnC,OAAO,KAAK,OAAO,MAAM,kBAAkB,CAAC;AAC5C,OAAO,KAAK,UAAU,MAAM,cAAc,CAAC;AAC3C,OAAO,EAAE,0CAA0C,EAAE,MAAM,8CAA8C,CAAC;AAG1G;IAAkD,uDAA0C;IAM1F;;;;;;;;;;OAUG;IACH,6CAAY,WAA8D,EAAE,cAAsB,EAAE,OAA2D;QAA/J,YACE,kBAAM,WAAW,EAAE,cAAc,EAAE,OAAO,CAAC,SAI5C;QAHC,KAAI,CAAC,UAAU,GAAG,IAAI,UAAU,CAAC,UAAU,CAAC,KAAI,CAAC,CAAC;QAClD,KAAI,CAAC,eAAe,GAAG,IAAI,UAAU,CAAC,eAAe,CAAC,KAAI,CAAC,CAAC;QAC5D,KAAI,CAAC,OAAO,GAAG,IAAI,UAAU,CAAC,OAAO,CAAC,KAAI,CAAC,CAAC;;IAC9C,CAAC;IACH,0CAAC;AAAD,CAAC,AAvBD,CAAkD,0CAA0C,GAuB3F;AAED,2BAA2B;AAE3B,OAAO,EACL,mCAAmC,EACnC,0CAA0C,EAC1C,MAAM,IAAI,mCAAmC,EAC7C,OAAO,IAAI,oCAAoC,EAChD,CAAC;AACF,cAAc,cAAc,CAAC"}
|
|
@@ -1,22 +0,0 @@
|
|
|
1
|
-
import * as Models from "./models";
|
|
2
|
-
import * as msRest from "@azure/ms-rest-js";
|
|
3
|
-
import { TokenCredential } from "@azure/core-auth";
|
|
4
|
-
import * as msRestAzure from "@azure/ms-rest-azure-js";
|
|
5
|
-
export declare class AzureChangeAnalysisManagementClientContext extends msRestAzure.AzureServiceClient {
|
|
6
|
-
credentials: msRest.ServiceClientCredentials | TokenCredential;
|
|
7
|
-
subscriptionId: string;
|
|
8
|
-
apiVersion?: string;
|
|
9
|
-
/**
|
|
10
|
-
* Initializes a new instance of the AzureChangeAnalysisManagementClient class.
|
|
11
|
-
* @param credentials Credentials needed for the client to connect to Azure. Credentials
|
|
12
|
-
* implementing the TokenCredential interface from the @azure/identity package are recommended. For
|
|
13
|
-
* more information about these credentials, see
|
|
14
|
-
* {@link https://www.npmjs.com/package/@azure/identity}. Credentials implementing the
|
|
15
|
-
* ServiceClientCredentials interface from the older packages @azure/ms-rest-nodeauth and
|
|
16
|
-
* @azure/ms-rest-browserauth are also supported.
|
|
17
|
-
* @param subscriptionId The ID of the target subscription.
|
|
18
|
-
* @param [options] The parameter options
|
|
19
|
-
*/
|
|
20
|
-
constructor(credentials: msRest.ServiceClientCredentials | TokenCredential, subscriptionId: string, options?: Models.AzureChangeAnalysisManagementClientOptions);
|
|
21
|
-
}
|
|
22
|
-
//# sourceMappingURL=azureChangeAnalysisManagementClientContext.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"azureChangeAnalysisManagementClientContext.d.ts","sourceRoot":"","sources":["../src/azureChangeAnalysisManagementClientContext.ts"],"names":[],"mappings":"AASA,OAAO,KAAK,MAAM,MAAM,UAAU,CAAC;AACnC,OAAO,KAAK,MAAM,MAAM,mBAAmB,CAAC;AAC5C,OAAO,EAAE,eAAe,EAAE,MAAM,kBAAkB,CAAC;AACnD,OAAO,KAAK,WAAW,MAAM,yBAAyB,CAAC;AAKvD,qBAAa,0CAA2C,SAAQ,WAAW,CAAC,kBAAkB;IAC5F,WAAW,EAAE,MAAM,CAAC,wBAAwB,GAAG,eAAe,CAAC;IAC/D,cAAc,EAAE,MAAM,CAAC;IACvB,UAAU,CAAC,EAAE,MAAM,CAAC;IAEpB;;;;;;;;;;OAUG;gBACS,WAAW,EAAE,MAAM,CAAC,wBAAwB,GAAG,eAAe,EAAE,cAAc,EAAE,MAAM,EAAE,OAAO,CAAC,EAAE,MAAM,CAAC,0CAA0C;CAiChK"}
|
|
@@ -1,60 +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-changeanalysis";
|
|
12
|
-
var packageVersion = "1.1.1";
|
|
13
|
-
var AzureChangeAnalysisManagementClientContext = /** @class */ (function (_super) {
|
|
14
|
-
__extends(AzureChangeAnalysisManagementClientContext, _super);
|
|
15
|
-
/**
|
|
16
|
-
* Initializes a new instance of the AzureChangeAnalysisManagementClient class.
|
|
17
|
-
* @param credentials Credentials needed for the client to connect to Azure. Credentials
|
|
18
|
-
* implementing the TokenCredential interface from the @azure/identity package are recommended. For
|
|
19
|
-
* more information about these credentials, see
|
|
20
|
-
* {@link https://www.npmjs.com/package/@azure/identity}. Credentials implementing the
|
|
21
|
-
* ServiceClientCredentials interface from the older packages @azure/ms-rest-nodeauth and
|
|
22
|
-
* @azure/ms-rest-browserauth are also supported.
|
|
23
|
-
* @param subscriptionId The ID of the target subscription.
|
|
24
|
-
* @param [options] The parameter options
|
|
25
|
-
*/
|
|
26
|
-
function AzureChangeAnalysisManagementClientContext(credentials, subscriptionId, options) {
|
|
27
|
-
var _this = this;
|
|
28
|
-
if (credentials == undefined) {
|
|
29
|
-
throw new Error('\'credentials\' cannot be null.');
|
|
30
|
-
}
|
|
31
|
-
if (subscriptionId == undefined) {
|
|
32
|
-
throw new Error('\'subscriptionId\' cannot be null.');
|
|
33
|
-
}
|
|
34
|
-
if (!options) {
|
|
35
|
-
options = {};
|
|
36
|
-
}
|
|
37
|
-
if (!options.userAgent) {
|
|
38
|
-
var defaultUserAgent = msRestAzure.getDefaultUserAgentValue();
|
|
39
|
-
options.userAgent = packageName + "/" + packageVersion + " " + defaultUserAgent;
|
|
40
|
-
}
|
|
41
|
-
_this = _super.call(this, credentials, options) || this;
|
|
42
|
-
_this.apiVersion = '2021-04-01';
|
|
43
|
-
_this.acceptLanguage = 'en-US';
|
|
44
|
-
_this.longRunningOperationRetryTimeout = 30;
|
|
45
|
-
_this.baseUri = options.baseUri || _this.baseUri || "https://management.azure.com";
|
|
46
|
-
_this.requestContentType = "application/json; charset=utf-8";
|
|
47
|
-
_this.credentials = credentials;
|
|
48
|
-
_this.subscriptionId = subscriptionId;
|
|
49
|
-
if (options.acceptLanguage !== null && options.acceptLanguage !== undefined) {
|
|
50
|
-
_this.acceptLanguage = options.acceptLanguage;
|
|
51
|
-
}
|
|
52
|
-
if (options.longRunningOperationRetryTimeout !== null && options.longRunningOperationRetryTimeout !== undefined) {
|
|
53
|
-
_this.longRunningOperationRetryTimeout = options.longRunningOperationRetryTimeout;
|
|
54
|
-
}
|
|
55
|
-
return _this;
|
|
56
|
-
}
|
|
57
|
-
return AzureChangeAnalysisManagementClientContext;
|
|
58
|
-
}(msRestAzure.AzureServiceClient));
|
|
59
|
-
export { AzureChangeAnalysisManagementClientContext };
|
|
60
|
-
//# sourceMappingURL=azureChangeAnalysisManagementClientContext.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"azureChangeAnalysisManagementClientContext.js","sourceRoot":"","sources":["../src/azureChangeAnalysisManagementClientContext.ts"],"names":[],"mappings":"AAAA;;;;;;;GAOG;;AAKH,OAAO,KAAK,WAAW,MAAM,yBAAyB,CAAC;AAEvD,IAAM,WAAW,GAAG,2BAA2B,CAAC;AAChD,IAAM,cAAc,GAAG,OAAO,CAAC;AAE/B;IAAgE,8DAA8B;IAK5F;;;;;;;;;;OAUG;IACH,oDAAY,WAA8D,EAAE,cAAsB,EAAE,OAA2D;QAA/J,iBAgCC;QA/BC,IAAI,WAAW,IAAI,SAAS,EAAE;YAC5B,MAAM,IAAI,KAAK,CAAC,iCAAiC,CAAC,CAAC;SACpD;QACD,IAAI,cAAc,IAAI,SAAS,EAAE;YAC/B,MAAM,IAAI,KAAK,CAAC,oCAAoC,CAAC,CAAC;SACvD;QAED,IAAI,CAAC,OAAO,EAAE;YACZ,OAAO,GAAG,EAAE,CAAC;SACd;QACD,IAAI,CAAC,OAAO,CAAC,SAAS,EAAE;YACtB,IAAM,gBAAgB,GAAG,WAAW,CAAC,wBAAwB,EAAE,CAAC;YAChE,OAAO,CAAC,SAAS,GAAM,WAAW,SAAI,cAAc,SAAI,gBAAkB,CAAC;SAC5E;QAED,QAAA,kBAAM,WAAW,EAAE,OAAO,CAAC,SAAC;QAE5B,KAAI,CAAC,UAAU,GAAG,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,IAAI,OAAO,CAAC,cAAc,KAAK,IAAI,IAAI,OAAO,CAAC,cAAc,KAAK,SAAS,EAAE;YAC3E,KAAI,CAAC,cAAc,GAAG,OAAO,CAAC,cAAc,CAAC;SAC9C;QACD,IAAI,OAAO,CAAC,gCAAgC,KAAK,IAAI,IAAI,OAAO,CAAC,gCAAgC,KAAK,SAAS,EAAE;YAC/G,KAAI,CAAC,gCAAgC,GAAG,OAAO,CAAC,gCAAgC,CAAC;SAClF;;IACH,CAAC;IACH,iDAAC;AAAD,CAAC,AAjDD,CAAgE,WAAW,CAAC,kBAAkB,GAiD7F"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"changesMappers.d.ts","sourceRoot":"","sources":["../../src/models/changesMappers.ts"],"names":[],"mappings":"AAQA,OAAO,EACL,mBAAmB,EACnB,YAAY,EACZ,MAAM,EACN,UAAU,EACV,gBAAgB,EAChB,mBAAmB,EACnB,WAAW,EACX,aAAa,EACb,cAAc,EACd,aAAa,EACb,QAAQ,EACR,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 { AzureEntityResource, BaseResource, Change, ChangeList, ChangeProperties, ErrorAdditionalInfo, ErrorDetail, ErrorResponse, PropertyChange, ProxyResource, Resource, TrackedResource } from "../models/mappers";
|
|
9
|
-
//# sourceMappingURL=changesMappers.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"changesMappers.js","sourceRoot":"","sources":["../../src/models/changesMappers.ts"],"names":[],"mappings":"AAAA;;;;;;GAMG;AAEH,OAAO,EACL,mBAAmB,EACnB,YAAY,EACZ,MAAM,EACN,UAAU,EACV,gBAAgB,EAChB,mBAAmB,EACnB,WAAW,EACX,aAAa,EACb,cAAc,EACd,aAAa,EACb,QAAQ,EACR,eAAe,EAChB,MAAM,mBAAmB,CAAC"}
|