@azure/arm-azurestackhci 1.1.1 → 2.0.1-alpha.20220119.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +21 -0
- package/LICENSE +21 -0
- package/README.md +69 -80
- package/dist/index.js +2369 -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/azureStackHCIClient.d.ts +21 -0
- package/dist-esm/src/azureStackHCIClient.d.ts.map +1 -0
- package/dist-esm/src/azureStackHCIClient.js +54 -0
- package/dist-esm/src/azureStackHCIClient.js.map +1 -0
- package/dist-esm/src/index.d.ts +5 -0
- package/dist-esm/src/index.d.ts.map +1 -0
- package/dist-esm/src/index.js +12 -0
- package/dist-esm/src/index.js.map +1 -0
- package/dist-esm/src/lroImpl.d.ts +16 -0
- package/dist-esm/src/lroImpl.d.ts.map +1 -0
- package/dist-esm/src/lroImpl.js +29 -0
- package/dist-esm/src/lroImpl.js.map +1 -0
- package/dist-esm/src/models/index.d.ts +864 -0
- package/dist-esm/src/models/index.d.ts.map +1 -0
- package/dist-esm/src/models/index.js +135 -0
- package/dist-esm/src/models/index.js.map +1 -0
- package/dist-esm/src/models/mappers.d.ts +23 -0
- package/dist-esm/src/models/mappers.d.ts.map +1 -0
- package/dist-esm/src/models/mappers.js +881 -0
- package/dist-esm/src/models/mappers.js.map +1 -0
- package/dist-esm/src/models/parameters.d.ts +16 -0
- package/dist-esm/src/models/parameters.d.ts.map +1 -0
- package/dist-esm/src/models/parameters.js +137 -0
- package/dist-esm/src/models/parameters.js.map +1 -0
- package/dist-esm/src/operations/arcSettings.d.ts +72 -0
- package/dist-esm/src/operations/arcSettings.d.ts.map +1 -0
- package/dist-esm/src/operations/arcSettings.js +281 -0
- package/dist-esm/src/operations/arcSettings.js.map +1 -0
- package/dist-esm/src/operations/clusters.d.ts +83 -0
- package/dist-esm/src/operations/clusters.d.ts.map +1 -0
- package/dist-esm/src/operations/clusters.js +356 -0
- package/dist-esm/src/operations/clusters.js.map +1 -0
- package/dist-esm/src/operations/extensions.d.ts +109 -0
- package/dist-esm/src/operations/extensions.d.ts.map +1 -0
- package/dist-esm/src/operations/extensions.js +462 -0
- package/dist-esm/src/operations/extensions.js.map +1 -0
- package/dist-esm/src/operations/index.d.ts +5 -0
- package/dist-esm/src/operations/index.d.ts.map +1 -0
- package/dist-esm/src/operations/index.js +12 -0
- package/dist-esm/src/operations/index.js.map +1 -0
- package/dist-esm/src/operations/operations.d.ts +18 -0
- package/dist-esm/src/operations/operations.d.ts.map +1 -0
- package/dist-esm/src/operations/operations.js +46 -0
- package/dist-esm/src/operations/operations.js.map +1 -0
- package/dist-esm/src/operationsInterfaces/arcSettings.d.ts +47 -0
- package/dist-esm/src/operationsInterfaces/arcSettings.d.ts.map +1 -0
- package/dist-esm/src/operationsInterfaces/arcSettings.js +9 -0
- package/dist-esm/src/operationsInterfaces/arcSettings.js.map +1 -0
- package/dist-esm/src/operationsInterfaces/clusters.d.ts +47 -0
- package/dist-esm/src/operationsInterfaces/clusters.d.ts.map +1 -0
- package/dist-esm/src/operationsInterfaces/clusters.js +9 -0
- package/dist-esm/src/operationsInterfaces/clusters.js.map +1 -0
- package/dist-esm/src/operationsInterfaces/extensions.d.ts +82 -0
- package/dist-esm/src/operationsInterfaces/extensions.d.ts.map +1 -0
- package/dist-esm/src/operationsInterfaces/extensions.js +9 -0
- package/dist-esm/src/operationsInterfaces/extensions.js.map +1 -0
- package/dist-esm/src/operationsInterfaces/index.d.ts +5 -0
- package/dist-esm/src/operationsInterfaces/index.d.ts.map +1 -0
- package/dist-esm/src/operationsInterfaces/index.js +12 -0
- package/dist-esm/src/operationsInterfaces/index.js.map +1 -0
- package/dist-esm/src/operationsInterfaces/operations.d.ts +10 -0
- package/dist-esm/src/operationsInterfaces/operations.d.ts.map +1 -0
- package/dist-esm/src/operationsInterfaces/operations.js +9 -0
- package/dist-esm/src/operationsInterfaces/operations.js.map +1 -0
- package/dist-esm/test/sampleTest.d.ts +2 -0
- package/dist-esm/test/sampleTest.d.ts.map +1 -0
- package/dist-esm/test/sampleTest.js +40 -0
- package/dist-esm/test/sampleTest.js.map +1 -0
- package/package.json +65 -22
- package/review/arm-azurestackhci.api.md +650 -0
- package/rollup.config.js +181 -30
- package/src/azureStackHCIClient.ts +78 -37
- package/src/index.ts +12 -0
- package/src/lroImpl.ts +34 -0
- package/src/models/index.ts +775 -366
- package/src/models/mappers.ts +635 -239
- package/src/models/parameters.ts +112 -35
- package/src/operations/arcSettings.ts +394 -0
- package/src/operations/clusters.ts +279 -309
- package/src/operations/extensions.ts +672 -0
- package/src/operations/index.ts +6 -6
- package/src/operations/operations.ts +30 -45
- package/src/operationsInterfaces/arcSettings.ts +89 -0
- package/src/operationsInterfaces/clusters.ts +91 -0
- package/src/operationsInterfaces/extensions.ts +162 -0
- package/src/operationsInterfaces/index.ts +12 -0
- package/src/operationsInterfaces/operations.ts +21 -0
- package/tsconfig.json +3 -3
- package/types/arm-azurestackhci.d.ts +1146 -0
- package/types/tsdoc-metadata.json +11 -0
- package/dist/arm-azurestackhci.js +0 -1151
- package/dist/arm-azurestackhci.js.map +0 -1
- package/dist/arm-azurestackhci.min.js +0 -1
- package/dist/arm-azurestackhci.min.js.map +0 -1
- package/esm/azureStackHCIClient.d.ts +0 -25
- package/esm/azureStackHCIClient.d.ts.map +0 -1
- package/esm/azureStackHCIClient.js +0 -39
- package/esm/azureStackHCIClient.js.map +0 -1
- package/esm/azureStackHCIClientContext.d.ts +0 -22
- package/esm/azureStackHCIClientContext.d.ts.map +0 -1
- package/esm/azureStackHCIClientContext.js +0 -61
- package/esm/azureStackHCIClientContext.js.map +0 -1
- package/esm/models/clustersMappers.d.ts +0 -2
- package/esm/models/clustersMappers.d.ts.map +0 -1
- package/esm/models/clustersMappers.js +0 -9
- package/esm/models/clustersMappers.js.map +0 -1
- package/esm/models/index.d.ts +0 -509
- package/esm/models/index.d.ts.map +0 -1
- package/esm/models/index.js +0 -8
- package/esm/models/index.js.map +0 -1
- package/esm/models/mappers.d.ts +0 -19
- package/esm/models/mappers.d.ts.map +0 -1
- package/esm/models/mappers.js +0 -527
- 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 -8
- package/esm/models/parameters.d.ts.map +0 -1
- package/esm/models/parameters.js +0 -82
- package/esm/models/parameters.js.map +0 -1
- package/esm/operations/clusters.d.ts +0 -169
- package/esm/operations/clusters.d.ts.map +0 -1
- package/esm/operations/clusters.js +0 -273
- package/esm/operations/clusters.js.map +0 -1
- package/esm/operations/index.d.ts +0 -3
- package/esm/operations/index.d.ts.map +0 -1
- package/esm/operations/index.js +0 -12
- package/esm/operations/index.js.map +0 -1
- package/esm/operations/operations.d.ts +0 -28
- package/esm/operations/operations.d.ts.map +0 -1
- package/esm/operations/operations.js +0 -51
- package/esm/operations/operations.js.map +0 -1
- package/src/azureStackHCIClientContext.ts +0 -68
- package/src/models/clustersMappers.ts +0 -23
- package/src/models/operationsMappers.ts +0 -16
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"arm-azurestackhci.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/clustersMappers.ts","../src/operations/clusters.ts","../src/azureStackHCIClientContext.ts","../src/azureStackHCIClient.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. All rights reserved.\n * Licensed under the MIT License. See License.txt in the project root for license information.\n *\n * Code generated by Microsoft (R) AutoRest Code Generator.\n * Changes may cause incorrect behavior and will be lost if the code is 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 * Cluster node details.\n */\nexport interface ClusterNode {\n /**\n * Name of the cluster node.\n * **NOTE: This property will not be serialized. It can only be populated by the server.**\n */\n readonly name?: string;\n /**\n * Id of the node in the cluster.\n * **NOTE: This property will not be serialized. It can only be populated by the server.**\n */\n readonly id?: number;\n /**\n * Manufacturer of the cluster node hardware.\n * **NOTE: This property will not be serialized. It can only be populated by the server.**\n */\n readonly manufacturer?: string;\n /**\n * Model name of the cluster node hardware.\n * **NOTE: This property will not be serialized. It can only be populated by the server.**\n */\n readonly model?: string;\n /**\n * Operating system running on the cluster node.\n * **NOTE: This property will not be serialized. It can only be populated by the server.**\n */\n readonly osName?: string;\n /**\n * Version of the operating system running on the cluster node.\n * **NOTE: This property will not be serialized. It can only be populated by the server.**\n */\n readonly osVersion?: string;\n /**\n * Immutable id of the cluster node.\n * **NOTE: This property will not be serialized. It can only be populated by the server.**\n */\n readonly serialNumber?: string;\n /**\n * Number of physical cores on the cluster node.\n * **NOTE: This property will not be serialized. It can only be populated by the server.**\n */\n readonly coreCount?: number;\n /**\n * Total available memory on the cluster node (in GiB).\n * **NOTE: This property will not be serialized. It can only be populated by the server.**\n */\n readonly memoryInGiB?: number;\n}\n\n/**\n * Properties reported by cluster agent.\n */\nexport interface ClusterReportedProperties {\n /**\n * Name of the on-prem cluster connected to this resource.\n * **NOTE: This property will not be serialized. It can only be populated by the server.**\n */\n readonly clusterName?: string;\n /**\n * Unique id generated by the on-prem cluster.\n * **NOTE: This property will not be serialized. It can only be populated by the server.**\n */\n readonly clusterId?: string;\n /**\n * Version of the cluster software.\n * **NOTE: This property will not be serialized. It can only be populated by the server.**\n */\n readonly clusterVersion?: string;\n /**\n * List of nodes reported by the cluster.\n * **NOTE: This property will not be serialized. It can only be populated by the server.**\n */\n readonly nodes?: ClusterNode[];\n /**\n * Last time the cluster reported the data.\n * **NOTE: This property will not be serialized. It can only be populated by the server.**\n */\n readonly lastUpdated?: Date;\n}\n\n/**\n * An interface representing 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. Ex- 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 ARM tracked top level resource\n */\nexport interface TrackedResource extends Resource {\n /**\n * Resource tags.\n */\n tags?: { [propertyName: string]: string };\n /**\n * The geo-location where the resource lives\n */\n location: string;\n}\n\n/**\n * Cluster details.\n */\nexport interface Cluster extends TrackedResource {\n /**\n * Provisioning state. Possible values include: 'Succeeded', 'Failed', 'Canceled', 'Accepted',\n * 'Provisioning'\n * **NOTE: This property will not be serialized. It can only be populated by the server.**\n */\n readonly provisioningState?: ProvisioningState;\n /**\n * Status of the cluster agent. Possible values include: 'NotYetRegistered', 'ConnectedRecently',\n * 'NotConnectedRecently', 'Disconnected', 'Error'\n * **NOTE: This property will not be serialized. It can only be populated by the server.**\n */\n readonly status?: Status;\n /**\n * Unique, immutable resource id.\n * **NOTE: This property will not be serialized. It can only be populated by the server.**\n */\n readonly cloudId?: string;\n /**\n * App id of cluster AAD identity.\n */\n aadClientId: string;\n /**\n * Tenant id of cluster AAD identity.\n */\n aadTenantId: string;\n /**\n * Properties reported by cluster agent.\n */\n reportedProperties?: ClusterReportedProperties;\n /**\n * Number of days remaining in the trial period.\n * **NOTE: This property will not be serialized. It can only be populated by the server.**\n */\n readonly trialDaysRemaining?: number;\n /**\n * Type of billing applied to the resource.\n * **NOTE: This property will not be serialized. It can only be populated by the server.**\n */\n readonly billingModel?: string;\n /**\n * First cluster sync timestamp.\n * **NOTE: This property will not be serialized. It can only be populated by the server.**\n */\n readonly registrationTimestamp?: Date;\n /**\n * Most recent cluster sync timestamp.\n * **NOTE: This property will not be serialized. It can only be populated by the server.**\n */\n readonly lastSyncTimestamp?: Date;\n /**\n * Most recent billing meter timestamp.\n * **NOTE: This property will not be serialized. It can only be populated by the server.**\n */\n readonly lastBillingTimestamp?: Date;\n}\n\n/**\n * Cluster details to update.\n */\nexport interface ClusterUpdate {\n /**\n * Resource tags.\n */\n tags?: { [propertyName: string]: string };\n}\n\n/**\n * Operation display payload\n */\nexport interface OperationDisplay {\n /**\n * Resource provider of the operation\n */\n provider?: string;\n /**\n * Resource of the operation\n */\n resource?: string;\n /**\n * Localized friendly name for the operation\n */\n operation?: string;\n /**\n * Localized friendly description for the operation\n */\n description?: string;\n}\n\n/**\n * Operation detail payload\n */\nexport interface OperationDetail {\n /**\n * Name of the operation\n */\n name?: string;\n /**\n * Indicates whether the operation is a data action\n */\n isDataAction?: boolean;\n /**\n * Display of the operation\n */\n display?: OperationDisplay;\n /**\n * Origin of the operation\n */\n origin?: string;\n /**\n * Properties of the operation\n */\n properties?: any;\n}\n\n/**\n * Available operations of the service\n */\nexport interface AvailableOperations {\n /**\n * Collection of available operation details\n */\n value?: OperationDetail[];\n /**\n * URL client should use to fetch the next page (per server side paging).\n * It's null for now, added for future use.\n */\n nextLink?: string;\n}\n\n/**\n * The resource model definition for a ARM proxy resource. It will have everything other than\n * required location and tags\n */\nexport interface ProxyResource extends Resource {\n}\n\n/**\n * The resource model definition for a Azure Resource Manager resource with an etag.\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 object.\n */\nexport interface ErrorResponseError {\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?: ErrorResponse[];\n /**\n * The error additional info.\n * **NOTE: This property will not be serialized. It can only be populated by the server.**\n */\n readonly additionalInfo?: ErrorAdditionalInfo[];\n}\n\n/**\n * The resource management error response.\n */\nexport interface ErrorResponse {\n /**\n * The error object.\n */\n error?: ErrorResponseError;\n}\n\n/**\n * Optional Parameters.\n */\nexport interface ClustersUpdateOptionalParams extends msRest.RequestOptionsBase {\n /**\n * Resource tags.\n */\n tags?: { [propertyName: string]: string };\n}\n\n/**\n * An interface representing AzureStackHCIClientOptions.\n */\nexport interface AzureStackHCIClientOptions extends AzureServiceClientOptions {\n baseUri?: string;\n}\n\n/**\n * @interface\n * List of clusters.\n * @extends Array<Cluster>\n */\nexport interface ClusterList extends Array<Cluster> {\n /**\n * Link to the next set of results.\n * **NOTE: This property will not be serialized. It can only be populated by the server.**\n */\n readonly nextLink?: string;\n}\n\n/**\n * Defines values for ProvisioningState.\n * Possible values include: 'Succeeded', 'Failed', 'Canceled', 'Accepted', 'Provisioning'\n * @readonly\n * @enum {string}\n */\nexport type ProvisioningState = 'Succeeded' | 'Failed' | 'Canceled' | 'Accepted' | 'Provisioning';\n\n/**\n * Defines values for Status.\n * Possible values include: 'NotYetRegistered', 'ConnectedRecently', 'NotConnectedRecently',\n * 'Disconnected', 'Error'\n * @readonly\n * @enum {string}\n */\nexport type Status = 'NotYetRegistered' | 'ConnectedRecently' | 'NotConnectedRecently' | 'Disconnected' | 'Error';\n\n/**\n * Contains response data for the list operation.\n */\nexport type OperationsListResponse = AvailableOperations & {\n /**\n * The underlying HTTP response.\n */\n _response: msRest.HttpResponse & {\n /**\n * The response body as text (string format)\n */\n bodyAsText: string;\n\n /**\n * The response body as parsed JSON or XML\n */\n parsedBody: AvailableOperations;\n };\n};\n\n/**\n * Contains response data for the list operation.\n */\nexport type ClustersListResponse = ClusterList & {\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: ClusterList;\n };\n};\n\n/**\n * Contains response data for the listByResourceGroup operation.\n */\nexport type ClustersListByResourceGroupResponse = ClusterList & {\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: ClusterList;\n };\n};\n\n/**\n * Contains response data for the get operation.\n */\nexport type ClustersGetResponse = Cluster & {\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: Cluster;\n };\n};\n\n/**\n * Contains response data for the create operation.\n */\nexport type ClustersCreateResponse = Cluster & {\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: Cluster;\n };\n};\n\n/**\n * Contains response data for the update operation.\n */\nexport type ClustersUpdateResponse = Cluster & {\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: Cluster;\n };\n};\n\n/**\n * Contains response data for the listNext operation.\n */\nexport type ClustersListNextResponse = ClusterList & {\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: ClusterList;\n };\n};\n\n/**\n * Contains response data for the listByResourceGroupNext operation.\n */\nexport type ClustersListByResourceGroupNextResponse = ClusterList & {\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: ClusterList;\n };\n};\n","/*\n * Copyright (c) Microsoft Corporation. All rights reserved.\n * Licensed under the MIT License. See License.txt in the project root for license information.\n *\n * Code generated by Microsoft (R) AutoRest Code Generator.\n * Changes may cause incorrect behavior and will be lost if the code is 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 ClusterNode: msRest.CompositeMapper = {\n serializedName: \"ClusterNode\",\n type: {\n name: \"Composite\",\n className: \"ClusterNode\",\n modelProperties: {\n name: {\n readOnly: true,\n serializedName: \"name\",\n type: {\n name: \"String\"\n }\n },\n id: {\n readOnly: true,\n serializedName: \"id\",\n type: {\n name: \"Number\"\n }\n },\n manufacturer: {\n readOnly: true,\n serializedName: \"manufacturer\",\n type: {\n name: \"String\"\n }\n },\n model: {\n readOnly: true,\n serializedName: \"model\",\n type: {\n name: \"String\"\n }\n },\n osName: {\n readOnly: true,\n serializedName: \"osName\",\n type: {\n name: \"String\"\n }\n },\n osVersion: {\n readOnly: true,\n serializedName: \"osVersion\",\n type: {\n name: \"String\"\n }\n },\n serialNumber: {\n readOnly: true,\n serializedName: \"serialNumber\",\n type: {\n name: \"String\"\n }\n },\n coreCount: {\n readOnly: true,\n serializedName: \"coreCount\",\n type: {\n name: \"Number\"\n }\n },\n memoryInGiB: {\n readOnly: true,\n serializedName: \"memoryInGiB\",\n type: {\n name: \"Number\"\n }\n }\n }\n }\n};\n\nexport const ClusterReportedProperties: msRest.CompositeMapper = {\n serializedName: \"ClusterReportedProperties\",\n type: {\n name: \"Composite\",\n className: \"ClusterReportedProperties\",\n modelProperties: {\n clusterName: {\n readOnly: true,\n serializedName: \"clusterName\",\n type: {\n name: \"String\"\n }\n },\n clusterId: {\n readOnly: true,\n serializedName: \"clusterId\",\n type: {\n name: \"String\"\n }\n },\n clusterVersion: {\n readOnly: true,\n serializedName: \"clusterVersion\",\n type: {\n name: \"String\"\n }\n },\n nodes: {\n readOnly: true,\n serializedName: \"nodes\",\n type: {\n name: \"Sequence\",\n element: {\n type: {\n name: \"Composite\",\n className: \"ClusterNode\"\n }\n }\n }\n },\n lastUpdated: {\n readOnly: true,\n serializedName: \"lastUpdated\",\n type: {\n name: \"DateTime\"\n }\n }\n }\n }\n};\n\nexport const Resource: msRest.CompositeMapper = {\n serializedName: \"Resource\",\n type: {\n name: \"Composite\",\n className: \"Resource\",\n modelProperties: {\n id: {\n readOnly: true,\n serializedName: \"id\",\n type: {\n name: \"String\"\n }\n },\n name: {\n readOnly: true,\n serializedName: \"name\",\n type: {\n name: \"String\"\n }\n },\n type: {\n readOnly: true,\n serializedName: \"type\",\n type: {\n name: \"String\"\n }\n }\n }\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 Cluster: msRest.CompositeMapper = {\n serializedName: \"Cluster\",\n type: {\n name: \"Composite\",\n className: \"Cluster\",\n modelProperties: {\n ...TrackedResource.type.modelProperties,\n provisioningState: {\n readOnly: true,\n serializedName: \"properties.provisioningState\",\n type: {\n name: \"String\"\n }\n },\n status: {\n readOnly: true,\n serializedName: \"properties.status\",\n type: {\n name: \"String\"\n }\n },\n cloudId: {\n readOnly: true,\n serializedName: \"properties.cloudId\",\n type: {\n name: \"String\"\n }\n },\n aadClientId: {\n required: true,\n serializedName: \"properties.aadClientId\",\n type: {\n name: \"String\"\n }\n },\n aadTenantId: {\n required: true,\n serializedName: \"properties.aadTenantId\",\n type: {\n name: \"String\"\n }\n },\n reportedProperties: {\n serializedName: \"properties.reportedProperties\",\n type: {\n name: \"Composite\",\n className: \"ClusterReportedProperties\"\n }\n },\n trialDaysRemaining: {\n readOnly: true,\n serializedName: \"properties.trialDaysRemaining\",\n type: {\n name: \"Number\"\n }\n },\n billingModel: {\n readOnly: true,\n serializedName: \"properties.billingModel\",\n type: {\n name: \"String\"\n }\n },\n registrationTimestamp: {\n readOnly: true,\n serializedName: \"properties.registrationTimestamp\",\n type: {\n name: \"DateTime\"\n }\n },\n lastSyncTimestamp: {\n readOnly: true,\n serializedName: \"properties.lastSyncTimestamp\",\n type: {\n name: \"DateTime\"\n }\n },\n lastBillingTimestamp: {\n readOnly: true,\n serializedName: \"properties.lastBillingTimestamp\",\n type: {\n name: \"DateTime\"\n }\n }\n }\n }\n};\n\nexport const ClusterUpdate: msRest.CompositeMapper = {\n serializedName: \"ClusterUpdate\",\n type: {\n name: \"Composite\",\n className: \"ClusterUpdate\",\n modelProperties: {\n tags: {\n serializedName: \"tags\",\n type: {\n name: \"Dictionary\",\n value: {\n type: {\n name: \"String\"\n }\n }\n }\n }\n }\n }\n};\n\nexport const OperationDisplay: msRest.CompositeMapper = {\n serializedName: \"OperationDisplay\",\n type: {\n name: \"Composite\",\n className: \"OperationDisplay\",\n modelProperties: {\n provider: {\n serializedName: \"provider\",\n type: {\n name: \"String\"\n }\n },\n resource: {\n serializedName: \"resource\",\n type: {\n name: \"String\"\n }\n },\n operation: {\n serializedName: \"operation\",\n type: {\n name: \"String\"\n }\n },\n description: {\n serializedName: \"description\",\n type: {\n name: \"String\"\n }\n }\n }\n }\n};\n\nexport const OperationDetail: msRest.CompositeMapper = {\n serializedName: \"OperationDetail\",\n type: {\n name: \"Composite\",\n className: \"OperationDetail\",\n modelProperties: {\n name: {\n serializedName: \"name\",\n type: {\n name: \"String\"\n }\n },\n isDataAction: {\n serializedName: \"isDataAction\",\n type: {\n name: \"Boolean\"\n }\n },\n display: {\n serializedName: \"display\",\n type: {\n name: \"Composite\",\n className: \"OperationDisplay\"\n }\n },\n origin: {\n serializedName: \"origin\",\n type: {\n name: \"String\"\n }\n },\n properties: {\n serializedName: \"properties\",\n type: {\n name: \"Object\"\n }\n }\n }\n }\n};\n\nexport const AvailableOperations: msRest.CompositeMapper = {\n serializedName: \"AvailableOperations\",\n type: {\n name: \"Composite\",\n className: \"AvailableOperations\",\n modelProperties: {\n value: {\n serializedName: \"value\",\n type: {\n name: \"Sequence\",\n element: {\n type: {\n name: \"Composite\",\n className: \"OperationDetail\"\n }\n }\n }\n },\n nextLink: {\n serializedName: \"nextLink\",\n type: {\n name: \"String\"\n }\n }\n }\n }\n};\n\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 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 ErrorResponseError: msRest.CompositeMapper = {\n serializedName: \"ErrorResponse_error\",\n type: {\n name: \"Composite\",\n className: \"ErrorResponseError\",\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: \"ErrorResponse\"\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: \"ErrorResponseError\"\n }\n }\n }\n }\n};\n\nexport const ClusterList: msRest.CompositeMapper = {\n serializedName: \"ClusterList\",\n type: {\n name: \"Composite\",\n className: \"ClusterList\",\n modelProperties: {\n value: {\n serializedName: \"\",\n type: {\n name: \"Sequence\",\n element: {\n type: {\n name: \"Composite\",\n className: \"Cluster\"\n }\n }\n }\n },\n nextLink: {\n readOnly: true,\n serializedName: \"nextLink\",\n type: {\n name: \"String\"\n }\n }\n }\n }\n};\n","/*\n * Copyright (c) Microsoft Corporation. All rights reserved.\n * Licensed under the MIT License. See License.txt in the project root for license information.\n *\n * Code generated by Microsoft (R) AutoRest Code Generator.\n * Changes may cause incorrect behavior and will be lost if the code is regenerated.\n */\n\nexport {\n AvailableOperations,\n ErrorAdditionalInfo,\n ErrorResponse,\n ErrorResponseError,\n OperationDetail,\n OperationDisplay\n} from \"../models/mappers\";\n","/*\n * Copyright (c) Microsoft Corporation. All rights reserved.\n * Licensed under the MIT License. See License.txt in the project root for\n * license information.\n *\n * Code generated by Microsoft (R) AutoRest Code Generator.\n * Changes may cause incorrect behavior and will be lost if the code is\n * regenerated.\n */\n\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 clusterName: msRest.OperationURLParameter = {\n parameterPath: \"clusterName\",\n mapper: {\n required: true,\n serializedName: \"clusterName\",\n type: {\n name: \"String\"\n }\n }\n};\nexport const nextPageLink: msRest.OperationURLParameter = {\n parameterPath: \"nextPageLink\",\n mapper: {\n required: true,\n serializedName: \"nextLink\",\n type: {\n name: \"String\"\n }\n },\n skipEncoding: true\n};\nexport const resourceGroupName: msRest.OperationURLParameter = {\n parameterPath: \"resourceGroupName\",\n mapper: {\n required: true,\n serializedName: \"resourceGroupName\",\n constraints: {\n MaxLength: 90,\n MinLength: 1,\n Pattern: /^[-\\w\\._\\(\\)]+$/\n },\n type: {\n name: \"String\"\n }\n }\n};\nexport const subscriptionId: msRest.OperationURLParameter = {\n parameterPath: \"subscriptionId\",\n mapper: {\n required: true,\n serializedName: \"subscriptionId\",\n constraints: {\n MinLength: 1\n },\n type: {\n name: \"String\"\n }\n }\n};\n","/*\n * Copyright (c) Microsoft Corporation. All rights reserved.\n * Licensed under the MIT License. See License.txt in the project root for\n * license information.\n *\n * Code generated by Microsoft (R) AutoRest Code Generator.\n * Changes may cause incorrect behavior and will be lost if the code is\n * regenerated.\n */\n\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 { AzureStackHCIClientContext } from \"../azureStackHCIClientContext\";\n\n/** Class representing a Operations. */\nexport class Operations {\n private readonly client: AzureStackHCIClientContext;\n\n /**\n * Create a Operations.\n * @param {AzureStackHCIClientContext} client Reference to the service client.\n */\n constructor(client: AzureStackHCIClientContext) {\n this.client = client;\n }\n\n /**\n * List all available Microsoft.AzureStackHCI provider operations\n * @param [options] The optional parameters\n * @returns Promise<Models.OperationsListResponse>\n */\n list(options?: msRest.RequestOptionsBase): Promise<Models.OperationsListResponse>;\n /**\n * @param callback The callback\n */\n list(callback: msRest.ServiceCallback<Models.AvailableOperations>): void;\n /**\n * @param options The optional parameters\n * @param callback The callback\n */\n list(options: msRest.RequestOptionsBase, callback: msRest.ServiceCallback<Models.AvailableOperations>): void;\n list(options?: msRest.RequestOptionsBase | msRest.ServiceCallback<Models.AvailableOperations>, callback?: msRest.ServiceCallback<Models.AvailableOperations>): Promise<Models.OperationsListResponse> {\n return this.client.sendOperationRequest(\n {\n options\n },\n listOperationSpec,\n callback) as Promise<Models.OperationsListResponse>;\n }\n}\n\n// Operation Specifications\nconst serializer = new msRest.Serializer(Mappers);\nconst listOperationSpec: msRest.OperationSpec = {\n httpMethod: \"GET\",\n path: \"providers/Microsoft.AzureStackHCI/operations\",\n queryParameters: [\n Parameters.apiVersion\n ],\n headerParameters: [\n Parameters.acceptLanguage\n ],\n responses: {\n 200: {\n bodyMapper: Mappers.AvailableOperations\n },\n default: {\n bodyMapper: Mappers.ErrorResponse\n }\n },\n serializer\n};\n","/*\n * Copyright (c) Microsoft Corporation. All rights reserved.\n * Licensed under the MIT License. See License.txt in the project root for license information.\n *\n * Code generated by Microsoft (R) AutoRest Code Generator.\n * Changes may cause incorrect behavior and will be lost if the code is regenerated.\n */\n\nexport {\n AzureEntityResource,\n BaseResource,\n Cluster,\n ClusterList,\n ClusterNode,\n ClusterReportedProperties,\n ClusterUpdate,\n ErrorAdditionalInfo,\n ErrorResponse,\n ErrorResponseError,\n ProxyResource,\n Resource,\n TrackedResource\n} from \"../models/mappers\";\n","/*\n * Copyright (c) Microsoft Corporation. All rights reserved.\n * Licensed under the MIT License. See License.txt in the project root for\n * license information.\n *\n * Code generated by Microsoft (R) AutoRest Code Generator.\n * Changes may cause incorrect behavior and will be lost if the code is\n * regenerated.\n */\n\nimport * as msRest from \"@azure/ms-rest-js\";\nimport * as Models from \"../models\";\nimport * as Mappers from \"../models/clustersMappers\";\nimport * as Parameters from \"../models/parameters\";\nimport { AzureStackHCIClientContext } from \"../azureStackHCIClientContext\";\n\n/** Class representing a Clusters. */\nexport class Clusters {\n private readonly client: AzureStackHCIClientContext;\n\n /**\n * Create a Clusters.\n * @param {AzureStackHCIClientContext} client Reference to the service client.\n */\n constructor(client: AzureStackHCIClientContext) {\n this.client = client;\n }\n\n /**\n * List all HCI clusters in a subscription.\n * @param [options] The optional parameters\n * @returns Promise<Models.ClustersListResponse>\n */\n list(options?: msRest.RequestOptionsBase): Promise<Models.ClustersListResponse>;\n /**\n * @param callback The callback\n */\n list(callback: msRest.ServiceCallback<Models.ClusterList>): void;\n /**\n * @param options The optional parameters\n * @param callback The callback\n */\n list(options: msRest.RequestOptionsBase, callback: msRest.ServiceCallback<Models.ClusterList>): void;\n list(options?: msRest.RequestOptionsBase | msRest.ServiceCallback<Models.ClusterList>, callback?: msRest.ServiceCallback<Models.ClusterList>): Promise<Models.ClustersListResponse> {\n return this.client.sendOperationRequest(\n {\n options\n },\n listOperationSpec,\n callback) as Promise<Models.ClustersListResponse>;\n }\n\n /**\n * List all HCI clusters in a resource group.\n * @param resourceGroupName The name of the resource group. The name is case insensitive.\n * @param [options] The optional parameters\n * @returns Promise<Models.ClustersListByResourceGroupResponse>\n */\n listByResourceGroup(resourceGroupName: string, options?: msRest.RequestOptionsBase): Promise<Models.ClustersListByResourceGroupResponse>;\n /**\n * @param resourceGroupName The name of the resource group. The name is case insensitive.\n * @param callback The callback\n */\n listByResourceGroup(resourceGroupName: string, callback: msRest.ServiceCallback<Models.ClusterList>): void;\n /**\n * @param resourceGroupName The name of the resource group. The name is case insensitive.\n * @param options The optional parameters\n * @param callback The callback\n */\n listByResourceGroup(resourceGroupName: string, options: msRest.RequestOptionsBase, callback: msRest.ServiceCallback<Models.ClusterList>): void;\n listByResourceGroup(resourceGroupName: string, options?: msRest.RequestOptionsBase | msRest.ServiceCallback<Models.ClusterList>, callback?: msRest.ServiceCallback<Models.ClusterList>): Promise<Models.ClustersListByResourceGroupResponse> {\n return this.client.sendOperationRequest(\n {\n resourceGroupName,\n options\n },\n listByResourceGroupOperationSpec,\n callback) as Promise<Models.ClustersListByResourceGroupResponse>;\n }\n\n /**\n * Get HCI cluster.\n * @param resourceGroupName The name of the resource group. The name is case insensitive.\n * @param clusterName The name of the cluster.\n * @param [options] The optional parameters\n * @returns Promise<Models.ClustersGetResponse>\n */\n get(resourceGroupName: string, clusterName: string, options?: msRest.RequestOptionsBase): Promise<Models.ClustersGetResponse>;\n /**\n * @param resourceGroupName The name of the resource group. The name is case insensitive.\n * @param clusterName The name of the cluster.\n * @param callback The callback\n */\n get(resourceGroupName: string, clusterName: string, callback: msRest.ServiceCallback<Models.Cluster>): void;\n /**\n * @param resourceGroupName The name of the resource group. The name is case insensitive.\n * @param clusterName The name of the cluster.\n * @param options The optional parameters\n * @param callback The callback\n */\n get(resourceGroupName: string, clusterName: string, options: msRest.RequestOptionsBase, callback: msRest.ServiceCallback<Models.Cluster>): void;\n get(resourceGroupName: string, clusterName: string, options?: msRest.RequestOptionsBase | msRest.ServiceCallback<Models.Cluster>, callback?: msRest.ServiceCallback<Models.Cluster>): Promise<Models.ClustersGetResponse> {\n return this.client.sendOperationRequest(\n {\n resourceGroupName,\n clusterName,\n options\n },\n getOperationSpec,\n callback) as Promise<Models.ClustersGetResponse>;\n }\n\n /**\n * Create an HCI cluster.\n * @param resourceGroupName The name of the resource group. The name is case insensitive.\n * @param clusterName The name of the cluster.\n * @param cluster Details of the HCI cluster.\n * @param [options] The optional parameters\n * @returns Promise<Models.ClustersCreateResponse>\n */\n create(resourceGroupName: string, clusterName: string, cluster: Models.Cluster, options?: msRest.RequestOptionsBase): Promise<Models.ClustersCreateResponse>;\n /**\n * @param resourceGroupName The name of the resource group. The name is case insensitive.\n * @param clusterName The name of the cluster.\n * @param cluster Details of the HCI cluster.\n * @param callback The callback\n */\n create(resourceGroupName: string, clusterName: string, cluster: Models.Cluster, callback: msRest.ServiceCallback<Models.Cluster>): void;\n /**\n * @param resourceGroupName The name of the resource group. The name is case insensitive.\n * @param clusterName The name of the cluster.\n * @param cluster Details of the HCI cluster.\n * @param options The optional parameters\n * @param callback The callback\n */\n create(resourceGroupName: string, clusterName: string, cluster: Models.Cluster, options: msRest.RequestOptionsBase, callback: msRest.ServiceCallback<Models.Cluster>): void;\n create(resourceGroupName: string, clusterName: string, cluster: Models.Cluster, options?: msRest.RequestOptionsBase | msRest.ServiceCallback<Models.Cluster>, callback?: msRest.ServiceCallback<Models.Cluster>): Promise<Models.ClustersCreateResponse> {\n return this.client.sendOperationRequest(\n {\n resourceGroupName,\n clusterName,\n cluster,\n options\n },\n createOperationSpec,\n callback) as Promise<Models.ClustersCreateResponse>;\n }\n\n /**\n * Update an HCI cluster.\n * @param resourceGroupName The name of the resource group. The name is case insensitive.\n * @param clusterName The name of the cluster.\n * @param [options] The optional parameters\n * @returns Promise<Models.ClustersUpdateResponse>\n */\n update(resourceGroupName: string, clusterName: string, options?: Models.ClustersUpdateOptionalParams): Promise<Models.ClustersUpdateResponse>;\n /**\n * @param resourceGroupName The name of the resource group. The name is case insensitive.\n * @param clusterName The name of the cluster.\n * @param callback The callback\n */\n update(resourceGroupName: string, clusterName: string, callback: msRest.ServiceCallback<Models.Cluster>): void;\n /**\n * @param resourceGroupName The name of the resource group. The name is case insensitive.\n * @param clusterName The name of the cluster.\n * @param options The optional parameters\n * @param callback The callback\n */\n update(resourceGroupName: string, clusterName: string, options: Models.ClustersUpdateOptionalParams, callback: msRest.ServiceCallback<Models.Cluster>): void;\n update(resourceGroupName: string, clusterName: string, options?: Models.ClustersUpdateOptionalParams | msRest.ServiceCallback<Models.Cluster>, callback?: msRest.ServiceCallback<Models.Cluster>): Promise<Models.ClustersUpdateResponse> {\n return this.client.sendOperationRequest(\n {\n resourceGroupName,\n clusterName,\n options\n },\n updateOperationSpec,\n callback) as Promise<Models.ClustersUpdateResponse>;\n }\n\n /**\n * Delete an HCI cluster.\n * @param resourceGroupName The name of the resource group. The name is case insensitive.\n * @param clusterName The name of the cluster.\n * @param [options] The optional parameters\n * @returns Promise<msRest.RestResponse>\n */\n deleteMethod(resourceGroupName: string, clusterName: string, options?: msRest.RequestOptionsBase): Promise<msRest.RestResponse>;\n /**\n * @param resourceGroupName The name of the resource group. The name is case insensitive.\n * @param clusterName The name of the cluster.\n * @param callback The callback\n */\n deleteMethod(resourceGroupName: string, clusterName: string, callback: msRest.ServiceCallback<void>): void;\n /**\n * @param resourceGroupName The name of the resource group. The name is case insensitive.\n * @param clusterName The name of the cluster.\n * @param options The optional parameters\n * @param callback The callback\n */\n deleteMethod(resourceGroupName: string, clusterName: string, options: msRest.RequestOptionsBase, callback: msRest.ServiceCallback<void>): void;\n deleteMethod(resourceGroupName: string, clusterName: string, options?: msRest.RequestOptionsBase | msRest.ServiceCallback<void>, callback?: msRest.ServiceCallback<void>): Promise<msRest.RestResponse> {\n return this.client.sendOperationRequest(\n {\n resourceGroupName,\n clusterName,\n options\n },\n deleteMethodOperationSpec,\n callback);\n }\n\n /**\n * List all HCI clusters in a subscription.\n * @param nextPageLink The NextLink from the previous successful call to List operation.\n * @param [options] The optional parameters\n * @returns Promise<Models.ClustersListNextResponse>\n */\n listNext(nextPageLink: string, options?: msRest.RequestOptionsBase): Promise<Models.ClustersListNextResponse>;\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.ClusterList>): void;\n /**\n * @param nextPageLink The NextLink from the previous successful call to List operation.\n * @param options The optional parameters\n * @param callback The callback\n */\n listNext(nextPageLink: string, options: msRest.RequestOptionsBase, callback: msRest.ServiceCallback<Models.ClusterList>): void;\n listNext(nextPageLink: string, options?: msRest.RequestOptionsBase | msRest.ServiceCallback<Models.ClusterList>, callback?: msRest.ServiceCallback<Models.ClusterList>): Promise<Models.ClustersListNextResponse> {\n return this.client.sendOperationRequest(\n {\n nextPageLink,\n options\n },\n listNextOperationSpec,\n callback) as Promise<Models.ClustersListNextResponse>;\n }\n\n /**\n * List all HCI clusters in a resource group.\n * @param nextPageLink The NextLink from the previous successful call to List operation.\n * @param [options] The optional parameters\n * @returns Promise<Models.ClustersListByResourceGroupNextResponse>\n */\n listByResourceGroupNext(nextPageLink: string, options?: msRest.RequestOptionsBase): Promise<Models.ClustersListByResourceGroupNextResponse>;\n /**\n * @param nextPageLink The NextLink from the previous successful call to List operation.\n * @param callback The callback\n */\n listByResourceGroupNext(nextPageLink: string, callback: msRest.ServiceCallback<Models.ClusterList>): void;\n /**\n * @param nextPageLink The NextLink from the previous successful call to List operation.\n * @param options The optional parameters\n * @param callback The callback\n */\n listByResourceGroupNext(nextPageLink: string, options: msRest.RequestOptionsBase, callback: msRest.ServiceCallback<Models.ClusterList>): void;\n listByResourceGroupNext(nextPageLink: string, options?: msRest.RequestOptionsBase | msRest.ServiceCallback<Models.ClusterList>, callback?: msRest.ServiceCallback<Models.ClusterList>): Promise<Models.ClustersListByResourceGroupNextResponse> {\n return this.client.sendOperationRequest(\n {\n nextPageLink,\n options\n },\n listByResourceGroupNextOperationSpec,\n callback) as Promise<Models.ClustersListByResourceGroupNextResponse>;\n }\n}\n\n// Operation Specifications\nconst serializer = new msRest.Serializer(Mappers);\nconst listOperationSpec: msRest.OperationSpec = {\n httpMethod: \"GET\",\n path: \"subscriptions/{subscriptionId}/providers/Microsoft.AzureStackHCI/clusters\",\n urlParameters: [\n Parameters.subscriptionId\n ],\n queryParameters: [\n Parameters.apiVersion\n ],\n headerParameters: [\n Parameters.acceptLanguage\n ],\n responses: {\n 200: {\n bodyMapper: Mappers.ClusterList\n },\n default: {\n bodyMapper: Mappers.ErrorResponse\n }\n },\n serializer\n};\n\nconst listByResourceGroupOperationSpec: msRest.OperationSpec = {\n httpMethod: \"GET\",\n path: \"subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.AzureStackHCI/clusters\",\n urlParameters: [\n Parameters.subscriptionId,\n Parameters.resourceGroupName\n ],\n queryParameters: [\n Parameters.apiVersion\n ],\n headerParameters: [\n Parameters.acceptLanguage\n ],\n responses: {\n 200: {\n bodyMapper: Mappers.ClusterList\n },\n default: {\n bodyMapper: Mappers.ErrorResponse\n }\n },\n serializer\n};\n\nconst getOperationSpec: msRest.OperationSpec = {\n httpMethod: \"GET\",\n path: \"subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.AzureStackHCI/clusters/{clusterName}\",\n urlParameters: [\n Parameters.subscriptionId,\n Parameters.resourceGroupName,\n Parameters.clusterName\n ],\n queryParameters: [\n Parameters.apiVersion\n ],\n headerParameters: [\n Parameters.acceptLanguage\n ],\n responses: {\n 200: {\n bodyMapper: Mappers.Cluster\n },\n default: {\n bodyMapper: Mappers.ErrorResponse\n }\n },\n serializer\n};\n\nconst createOperationSpec: msRest.OperationSpec = {\n httpMethod: \"PUT\",\n path: \"subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.AzureStackHCI/clusters/{clusterName}\",\n urlParameters: [\n Parameters.subscriptionId,\n Parameters.resourceGroupName,\n Parameters.clusterName\n ],\n queryParameters: [\n Parameters.apiVersion\n ],\n headerParameters: [\n Parameters.acceptLanguage\n ],\n requestBody: {\n parameterPath: \"cluster\",\n mapper: {\n ...Mappers.Cluster,\n required: true\n }\n },\n responses: {\n 200: {\n bodyMapper: Mappers.Cluster\n },\n default: {\n bodyMapper: Mappers.ErrorResponse\n }\n },\n serializer\n};\n\nconst updateOperationSpec: msRest.OperationSpec = {\n httpMethod: \"PATCH\",\n path: \"subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.AzureStackHCI/clusters/{clusterName}\",\n urlParameters: [\n Parameters.subscriptionId,\n Parameters.resourceGroupName,\n Parameters.clusterName\n ],\n queryParameters: [\n Parameters.apiVersion\n ],\n headerParameters: [\n Parameters.acceptLanguage\n ],\n requestBody: {\n parameterPath: {\n tags: [\n \"options\",\n \"tags\"\n ]\n },\n mapper: {\n ...Mappers.ClusterUpdate,\n required: true\n }\n },\n responses: {\n 200: {\n bodyMapper: Mappers.Cluster\n },\n default: {\n bodyMapper: Mappers.ErrorResponse\n }\n },\n serializer\n};\n\nconst deleteMethodOperationSpec: msRest.OperationSpec = {\n httpMethod: \"DELETE\",\n path: \"subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.AzureStackHCI/clusters/{clusterName}\",\n urlParameters: [\n Parameters.subscriptionId,\n Parameters.resourceGroupName,\n Parameters.clusterName\n ],\n queryParameters: [\n Parameters.apiVersion\n ],\n headerParameters: [\n Parameters.acceptLanguage\n ],\n responses: {\n 200: {},\n 204: {},\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 headerParameters: [\n Parameters.acceptLanguage\n ],\n responses: {\n 200: {\n bodyMapper: Mappers.ClusterList\n },\n default: {\n bodyMapper: Mappers.ErrorResponse\n }\n },\n serializer\n};\n\nconst listByResourceGroupNextOperationSpec: msRest.OperationSpec = {\n httpMethod: \"GET\",\n baseUrl: \"https://management.azure.com\",\n path: \"{nextLink}\",\n urlParameters: [\n Parameters.nextPageLink\n ],\n headerParameters: [\n Parameters.acceptLanguage\n ],\n responses: {\n 200: {\n bodyMapper: Mappers.ClusterList\n },\n default: {\n bodyMapper: Mappers.ErrorResponse\n }\n },\n serializer\n};\n","/*\n * Copyright (c) Microsoft Corporation. All rights reserved.\n * Licensed under the MIT License. See License.txt in the project root for\n * license information.\n *\n * Code generated by Microsoft (R) AutoRest Code Generator.\n * Changes may cause incorrect behavior and will be lost if the code is\n * regenerated.\n */\n\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-azurestackhci\";\nconst packageVersion = \"1.1.1\";\n\nexport class AzureStackHCIClientContext extends msRestAzure.AzureServiceClient {\n credentials: msRest.ServiceClientCredentials | TokenCredential;\n apiVersion?: string;\n subscriptionId: string;\n\n /**\n * Initializes a new instance of the AzureStackHCIClient 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.AzureStackHCIClientOptions) {\n if (credentials == undefined) {\n throw new Error('\\'credentials\\' cannot be null.');\n }\n if (subscriptionId == undefined) {\n throw new Error('\\'subscriptionId\\' cannot be null.');\n }\n\n if (!options) {\n options = {};\n }\n if (!options.userAgent) {\n const defaultUserAgent = msRestAzure.getDefaultUserAgentValue();\n options.userAgent = `${packageName}/${packageVersion} ${defaultUserAgent}`;\n }\n\n super(credentials, options);\n\n this.apiVersion = '2020-03-01-preview';\n this.acceptLanguage = 'en-US';\n this.longRunningOperationRetryTimeout = 30;\n this.baseUri = options.baseUri || this.baseUri || \"https://management.azure.com\";\n this.requestContentType = \"application/json; charset=utf-8\";\n this.credentials = credentials;\n this.subscriptionId = subscriptionId;\n\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. All rights reserved.\n * Licensed under the MIT License. See License.txt in the project root for\n * license information.\n *\n * Code generated by Microsoft (R) AutoRest Code Generator.\n * Changes may cause incorrect behavior and will be lost if the code is\n * regenerated.\n */\n\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 { AzureStackHCIClientContext } from \"./azureStackHCIClientContext\";\n\n\nclass AzureStackHCIClient extends AzureStackHCIClientContext {\n // Operation groups\n operations: operations.Operations;\n clusters: operations.Clusters;\n\n /**\n * Initializes a new instance of the AzureStackHCIClient 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.AzureStackHCIClientOptions) {\n super(credentials, subscriptionId, options);\n this.operations = new operations.Operations(this);\n this.clusters = new operations.Clusters(this);\n }\n}\n\n// Operation Specifications\n\nexport {\n AzureStackHCIClient,\n AzureStackHCIClientContext,\n Models as AzureStackHCIModels,\n Mappers as AzureStackHCIMappers\n};\nexport * from \"./operations\";\n"],"names":["CloudErrorMapper","BaseResourceMapper","msRest.Serializer","Parameters.apiVersion","Parameters.acceptLanguage","Mappers.AvailableOperations","Mappers.ErrorResponse","listOperationSpec","serializer","Mappers","Parameters.subscriptionId","Mappers.ClusterList","Parameters.resourceGroupName","Parameters.clusterName","Mappers.Cluster","Mappers.ClusterUpdate","Parameters.nextPageLink","msRestAzure.getDefaultUserAgentValue","msRestAzure.AzureServiceClient","operations.Operations","operations.Clusters"],"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.ArmAzurestackhci={}),e.msRestAzure,e.msRest)}(this,function(e,s,r){"use strict";var a=function(e,r){return(a=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,r){e.__proto__=r}||function(e,r){for(var t in r)r.hasOwnProperty(t)&&(e[t]=r[t])})(e,r)};function t(e,r){function t(){this.constructor=e}a(e,r),e.prototype=null===r?Object.create(r):(t.prototype=r.prototype,new t)}var i=function(){return(i=Object.assign||function(e){for(var r,t=1,a=arguments.length;t<a;t++)for(var i in r=arguments[t])Object.prototype.hasOwnProperty.call(r,i)&&(e[i]=r[i]);return e}).apply(this,arguments)},o=Object.freeze({__proto__:null}),n=s.CloudErrorMapper,p=s.BaseResourceMapper,l={serializedName:"ClusterNode",type:{name:"Composite",className:"ClusterNode",modelProperties:{name:{readOnly:!0,serializedName:"name",type:{name:"String"}},id:{readOnly:!0,serializedName:"id",type:{name:"Number"}},manufacturer:{readOnly:!0,serializedName:"manufacturer",type:{name:"String"}},model:{readOnly:!0,serializedName:"model",type:{name:"String"}},osName:{readOnly:!0,serializedName:"osName",type:{name:"String"}},osVersion:{readOnly:!0,serializedName:"osVersion",type:{name:"String"}},serialNumber:{readOnly:!0,serializedName:"serialNumber",type:{name:"String"}},coreCount:{readOnly:!0,serializedName:"coreCount",type:{name:"Number"}},memoryInGiB:{readOnly:!0,serializedName:"memoryInGiB",type:{name:"Number"}}}}},m={serializedName:"ClusterReportedProperties",type:{name:"Composite",className:"ClusterReportedProperties",modelProperties:{clusterName:{readOnly:!0,serializedName:"clusterName",type:{name:"String"}},clusterId:{readOnly:!0,serializedName:"clusterId",type:{name:"String"}},clusterVersion:{readOnly:!0,serializedName:"clusterVersion",type:{name:"String"}},nodes:{readOnly:!0,serializedName:"nodes",type:{name:"Sequence",element:{type:{name:"Composite",className:"ClusterNode"}}}},lastUpdated:{readOnly:!0,serializedName:"lastUpdated",type:{name:"DateTime"}}}}},u={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"}}}}},d={serializedName:"TrackedResource",type:{name:"Composite",className:"TrackedResource",modelProperties:i(i({},u.type.modelProperties),{tags:{serializedName:"tags",type:{name:"Dictionary",value:{type:{name:"String"}}}},location:{required:!0,serializedName:"location",type:{name:"String"}}})}},c={serializedName:"Cluster",type:{name:"Composite",className:"Cluster",modelProperties:i(i({},d.type.modelProperties),{provisioningState:{readOnly:!0,serializedName:"properties.provisioningState",type:{name:"String"}},status:{readOnly:!0,serializedName:"properties.status",type:{name:"String"}},cloudId:{readOnly:!0,serializedName:"properties.cloudId",type:{name:"String"}},aadClientId:{required:!0,serializedName:"properties.aadClientId",type:{name:"String"}},aadTenantId:{required:!0,serializedName:"properties.aadTenantId",type:{name:"String"}},reportedProperties:{serializedName:"properties.reportedProperties",type:{name:"Composite",className:"ClusterReportedProperties"}},trialDaysRemaining:{readOnly:!0,serializedName:"properties.trialDaysRemaining",type:{name:"Number"}},billingModel:{readOnly:!0,serializedName:"properties.billingModel",type:{name:"String"}},registrationTimestamp:{readOnly:!0,serializedName:"properties.registrationTimestamp",type:{name:"DateTime"}},lastSyncTimestamp:{readOnly:!0,serializedName:"properties.lastSyncTimestamp",type:{name:"DateTime"}},lastBillingTimestamp:{readOnly:!0,serializedName:"properties.lastBillingTimestamp",type:{name:"DateTime"}}})}},y={serializedName:"ClusterUpdate",type:{name:"Composite",className:"ClusterUpdate",modelProperties:{tags:{serializedName:"tags",type:{name:"Dictionary",value:{type:{name:"String"}}}}}}},N={serializedName:"OperationDisplay",type:{name:"Composite",className:"OperationDisplay",modelProperties:{provider:{serializedName:"provider",type:{name:"String"}},resource:{serializedName:"resource",type:{name:"String"}},operation:{serializedName:"operation",type:{name:"String"}},description:{serializedName:"description",type:{name:"String"}}}}},z={serializedName:"OperationDetail",type:{name:"Composite",className:"OperationDetail",modelProperties:{name:{serializedName:"name",type:{name:"String"}},isDataAction:{serializedName:"isDataAction",type:{name:"Boolean"}},display:{serializedName:"display",type:{name:"Composite",className:"OperationDisplay"}},origin:{serializedName:"origin",type:{name:"String"}},properties:{serializedName:"properties",type:{name:"Object"}}}}},g={serializedName:"AvailableOperations",type:{name:"Composite",className:"AvailableOperations",modelProperties:{value:{serializedName:"value",type:{name:"Sequence",element:{type:{name:"Composite",className:"OperationDetail"}}}},nextLink:{serializedName:"nextLink",type:{name:"String"}}}}},h={serializedName:"ProxyResource",type:{name:"Composite",className:"ProxyResource",modelProperties:i({},u.type.modelProperties)}},O={serializedName:"AzureEntityResource",type:{name:"Composite",className:"AzureEntityResource",modelProperties:i(i({},u.type.modelProperties),{etag:{readOnly:!0,serializedName:"etag",type:{name:"String"}}})}},f={serializedName:"ErrorAdditionalInfo",type:{name:"Composite",className:"ErrorAdditionalInfo",modelProperties:{type:{readOnly:!0,serializedName:"type",type:{name:"String"}},info:{readOnly:!0,serializedName:"info",type:{name:"Object"}}}}},P={serializedName:"ErrorResponse_error",type:{name:"Composite",className:"ErrorResponseError",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:"ErrorResponse"}}}},additionalInfo:{readOnly:!0,serializedName:"additionalInfo",type:{name:"Sequence",element:{type:{name:"Composite",className:"ErrorAdditionalInfo"}}}}}}},C={serializedName:"ErrorResponse",type:{name:"Composite",className:"ErrorResponse",modelProperties:{error:{serializedName:"error",type:{name:"Composite",className:"ErrorResponseError"}}}}},S={serializedName:"ClusterList",type:{name:"Composite",className:"ClusterList",modelProperties:{value:{serializedName:"",type:{name:"Sequence",element:{type:{name:"Composite",className:"Cluster"}}}},nextLink:{readOnly:!0,serializedName:"nextLink",type:{name:"String"}}}}},b=Object.freeze({__proto__:null,CloudError:n,BaseResource:p,ClusterNode:l,ClusterReportedProperties:m,Resource:u,TrackedResource:d,Cluster:c,ClusterUpdate:y,OperationDisplay:N,OperationDetail:z,AvailableOperations:g,ProxyResource:h,AzureEntityResource:O,ErrorAdditionalInfo:f,ErrorResponseError:P,ErrorResponse:C,ClusterList:S}),R=Object.freeze({__proto__:null,AvailableOperations:g,ErrorAdditionalInfo:f,ErrorResponse:C,ErrorResponseError:P,OperationDetail:z,OperationDisplay:N}),M={parameterPath:"acceptLanguage",mapper:{serializedName:"accept-language",defaultValue:"en-US",type:{name:"String"}}},E={parameterPath:"apiVersion",mapper:{required:!0,serializedName:"api-version",constraints:{MinLength:1},type:{name:"String"}}},A={parameterPath:"clusterName",mapper:{required:!0,serializedName:"clusterName",type:{name:"String"}}},n={parameterPath:"nextPageLink",mapper:{required:!0,serializedName:"nextLink",type:{name:"String"}},skipEncoding:!0},z={parameterPath:"resourceGroupName",mapper:{required:!0,serializedName:"resourceGroupName",constraints:{MaxLength:90,MinLength:1,Pattern:/^[-\w\._\(\)]+$/},type:{name:"String"}}},N={parameterPath:"subscriptionId",mapper:{required:!0,serializedName:"subscriptionId",constraints:{MinLength:1},type:{name:"String"}}},I=(q.prototype.list=function(e,r){return this.client.sendOperationRequest({options:e},v,r)},q);function q(e){this.client=e}var v={httpMethod:"GET",path:"providers/Microsoft.AzureStackHCI/operations",queryParameters:[E],headerParameters:[M],responses:{200:{bodyMapper:g},default:{bodyMapper:C}},serializer:new r.Serializer(R)},d=Object.freeze({__proto__:null,AzureEntityResource:O,BaseResource:p,Cluster:c,ClusterList:S,ClusterNode:l,ClusterReportedProperties:m,ClusterUpdate:y,ErrorAdditionalInfo:f,ErrorResponse:C,ErrorResponseError:P,ProxyResource:h,Resource:u,TrackedResource:d}),T=(k.prototype.list=function(e,r){return this.client.sendOperationRequest({options:e},G,r)},k.prototype.listByResourceGroup=function(e,r,t){return this.client.sendOperationRequest({resourceGroupName:e,options:r},L,t)},k.prototype.get=function(e,r,t,a){return this.client.sendOperationRequest({resourceGroupName:e,clusterName:r,options:t},D,a)},k.prototype.create=function(e,r,t,a,i){return this.client.sendOperationRequest({resourceGroupName:e,clusterName:r,cluster:t,options:a},x,i)},k.prototype.update=function(e,r,t,a){return this.client.sendOperationRequest({resourceGroupName:e,clusterName:r,options:t},j,a)},k.prototype.deleteMethod=function(e,r,t,a){return this.client.sendOperationRequest({resourceGroupName:e,clusterName:r,options:t},U,a)},k.prototype.listNext=function(e,r,t){return this.client.sendOperationRequest({nextPageLink:e,options:r},w,t)},k.prototype.listByResourceGroupNext=function(e,r,t){return this.client.sendOperationRequest({nextPageLink:e,options:r},B,t)},k);function k(e){this.client=e}var _,d=new r.Serializer(d),G={httpMethod:"GET",path:"subscriptions/{subscriptionId}/providers/Microsoft.AzureStackHCI/clusters",urlParameters:[N],queryParameters:[E],headerParameters:[M],responses:{200:{bodyMapper:S},default:{bodyMapper:C}},serializer:d},L={httpMethod:"GET",path:"subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.AzureStackHCI/clusters",urlParameters:[N,z],queryParameters:[E],headerParameters:[M],responses:{200:{bodyMapper:S},default:{bodyMapper:C}},serializer:d},D={httpMethod:"GET",path:"subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.AzureStackHCI/clusters/{clusterName}",urlParameters:[N,z,A],queryParameters:[E],headerParameters:[M],responses:{200:{bodyMapper:c},default:{bodyMapper:C}},serializer:d},x={httpMethod:"PUT",path:"subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.AzureStackHCI/clusters/{clusterName}",urlParameters:[N,z,A],queryParameters:[E],headerParameters:[M],requestBody:{parameterPath:"cluster",mapper:i(i({},c),{required:!0})},responses:{200:{bodyMapper:c},default:{bodyMapper:C}},serializer:d},j={httpMethod:"PATCH",path:"subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.AzureStackHCI/clusters/{clusterName}",urlParameters:[N,z,A],queryParameters:[E],headerParameters:[M],requestBody:{parameterPath:{tags:["options","tags"]},mapper:i(i({},y),{required:!0})},responses:{200:{bodyMapper:c},default:{bodyMapper:C}},serializer:d},U={httpMethod:"DELETE",path:"subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.AzureStackHCI/clusters/{clusterName}",urlParameters:[N,z,A],queryParameters:[E],headerParameters:[M],responses:{200:{},204:{},default:{bodyMapper:C}},serializer:d},w={httpMethod:"GET",baseUrl:"https://management.azure.com",path:"{nextLink}",urlParameters:[n],headerParameters:[M],responses:{200:{bodyMapper:S},default:{bodyMapper:C}},serializer:d},B={httpMethod:"GET",baseUrl:"https://management.azure.com",path:"{nextLink}",urlParameters:[n],headerParameters:[M],responses:{200:{bodyMapper:S},default:{bodyMapper:C}},serializer:d},C=(t(H,_=s.AzureServiceClient),H);function H(e,r,t){var a,i=this;if(null==e)throw new Error("'credentials' cannot be null.");if(null==r)throw new Error("'subscriptionId' cannot be null.");return(t=t||{}).userAgent||(a=s.getDefaultUserAgentValue(),t.userAgent="@azure/arm-azurestackhci/1.1.1 "+a),(i=_.call(this,e,t)||this).apiVersion="2020-03-01-preview",i.acceptLanguage="en-US",i.longRunningOperationRetryTimeout=30,i.baseUri=t.baseUri||i.baseUri||"https://management.azure.com",i.requestContentType="application/json; charset=utf-8",i.credentials=e,i.subscriptionId=r,null!==t.acceptLanguage&&void 0!==t.acceptLanguage&&(i.acceptLanguage=t.acceptLanguage),null!==t.longRunningOperationRetryTimeout&&void 0!==t.longRunningOperationRetryTimeout&&(i.longRunningOperationRetryTimeout=t.longRunningOperationRetryTimeout),i}var V,d=(t($,V=C),$);function $(e,r,t){t=V.call(this,e,r,t)||this;return t.operations=new I(t),t.clusters=new T(t),t}e.AzureStackHCIClient=d,e.AzureStackHCIClientContext=C,e.AzureStackHCIMappers=b,e.AzureStackHCIModels=o,e.Clusters=T,e.Operations=I,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/clusters.ts","../src/azureStackHCIClientContext.ts","../src/azureStackHCIClient.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","ClusterNode","serializedName","type","name","className","modelProperties","readOnly","id","manufacturer","model","osName","osVersion","serialNumber","coreCount","memoryInGiB","ClusterReportedProperties","clusterName","clusterId","clusterVersion","nodes","element","lastUpdated","Resource","TrackedResource","tags","value","location","required","Cluster","provisioningState","status","cloudId","aadClientId","aadTenantId","reportedProperties","trialDaysRemaining","billingModel","registrationTimestamp","lastSyncTimestamp","lastBillingTimestamp","ClusterUpdate","OperationDisplay","provider","resource","operation","description","OperationDetail","isDataAction","display","origin","properties","AvailableOperations","nextLink","ProxyResource","AzureEntityResource","etag","ErrorAdditionalInfo","info","ErrorResponseError","code","message","target","details","additionalInfo","ErrorResponse","error","ClusterList","acceptLanguage","parameterPath","mapper","defaultValue","apiVersion","constraints","MinLength","nextPageLink","skipEncoding","resourceGroupName","MaxLength","Pattern","subscriptionId","Operations","list","options","callback","client","sendOperationRequest","listOperationSpec","httpMethod","path","queryParameters","Parameters.apiVersion","headerParameters","Parameters.acceptLanguage","responses","200","bodyMapper","Mappers.AvailableOperations","default","Mappers.ErrorResponse","serializer","msRest.Serializer","Mappers","Clusters","listByResourceGroup","listByResourceGroupOperationSpec","get","getOperationSpec","cluster","createOperationSpec","update","updateOperationSpec","deleteMethod","deleteMethodOperationSpec","listNext","listNextOperationSpec","listByResourceGroupNext","listByResourceGroupNextOperationSpec","_super","urlParameters","Parameters.subscriptionId","Mappers.ClusterList","serializer$1","Parameters.resourceGroupName","Parameters.clusterName","Mappers.Cluster","requestBody","Mappers.ClusterUpdate","204","baseUrl","Parameters.nextPageLink","AzureStackHCIClientContext","msRestAzure.AzureServiceClient","credentials","defaultUserAgent","_this","undefined","Error","userAgent","msRestAzure.getDefaultUserAgentValue","packageName","longRunningOperationRetryTimeout","baseUri","requestContentType","AzureStackHCIClient","operations","operations.Operations","clusters","operations.Clusters"],"mappings":"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"}
|
|
@@ -1,25 +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 { AzureStackHCIClientContext } from "./azureStackHCIClientContext";
|
|
7
|
-
declare class AzureStackHCIClient extends AzureStackHCIClientContext {
|
|
8
|
-
operations: operations.Operations;
|
|
9
|
-
clusters: operations.Clusters;
|
|
10
|
-
/**
|
|
11
|
-
* Initializes a new instance of the AzureStackHCIClient class.
|
|
12
|
-
* @param credentials Credentials needed for the client to connect to Azure. Credentials
|
|
13
|
-
* implementing the TokenCredential interface from the @azure/identity package are recommended. For
|
|
14
|
-
* more information about these credentials, see
|
|
15
|
-
* {@link https://www.npmjs.com/package/@azure/identity}. Credentials implementing the
|
|
16
|
-
* ServiceClientCredentials interface from the older packages @azure/ms-rest-nodeauth and
|
|
17
|
-
* @azure/ms-rest-browserauth are also supported.
|
|
18
|
-
* @param subscriptionId The ID of the target subscription.
|
|
19
|
-
* @param [options] The parameter options
|
|
20
|
-
*/
|
|
21
|
-
constructor(credentials: msRest.ServiceClientCredentials | TokenCredential, subscriptionId: string, options?: Models.AzureStackHCIClientOptions);
|
|
22
|
-
}
|
|
23
|
-
export { AzureStackHCIClient, AzureStackHCIClientContext, Models as AzureStackHCIModels, Mappers as AzureStackHCIMappers };
|
|
24
|
-
export * from "./operations";
|
|
25
|
-
//# sourceMappingURL=azureStackHCIClient.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"azureStackHCIClient.d.ts","sourceRoot":"","sources":["../src/azureStackHCIClient.ts"],"names":[],"mappings":"AAUA,OAAO,KAAK,MAAM,MAAM,mBAAmB,CAAC;AAC5C,OAAO,EAAE,eAAe,EAAE,MAAM,kBAAkB,CAAC;AACnD,OAAO,KAAK,MAAM,MAAM,UAAU,CAAC;AACnC,OAAO,KAAK,OAAO,MAAM,kBAAkB,CAAC;AAC5C,OAAO,KAAK,UAAU,MAAM,cAAc,CAAC;AAC3C,OAAO,EAAE,0BAA0B,EAAE,MAAM,8BAA8B,CAAC;AAG1E,cAAM,mBAAoB,SAAQ,0BAA0B;IAE1D,UAAU,EAAE,UAAU,CAAC,UAAU,CAAC;IAClC,QAAQ,EAAE,UAAU,CAAC,QAAQ,CAAC;IAE9B;;;;;;;;;;OAUG;gBACS,WAAW,EAAE,MAAM,CAAC,wBAAwB,GAAG,eAAe,EAAE,cAAc,EAAE,MAAM,EAAE,OAAO,CAAC,EAAE,MAAM,CAAC,0BAA0B;CAKhJ;AAID,OAAO,EACL,mBAAmB,EACnB,0BAA0B,EAC1B,MAAM,IAAI,mBAAmB,EAC7B,OAAO,IAAI,oBAAoB,EAChC,CAAC;AACF,cAAc,cAAc,CAAC"}
|
|
@@ -1,39 +0,0 @@
|
|
|
1
|
-
/*
|
|
2
|
-
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
3
|
-
* Licensed under the MIT License. See License.txt in the project root for
|
|
4
|
-
* license information.
|
|
5
|
-
*
|
|
6
|
-
* Code generated by Microsoft (R) AutoRest Code Generator.
|
|
7
|
-
* Changes may cause incorrect behavior and will be lost if the code is
|
|
8
|
-
* regenerated.
|
|
9
|
-
*/
|
|
10
|
-
import { __extends } from "tslib";
|
|
11
|
-
import * as Models from "./models";
|
|
12
|
-
import * as Mappers from "./models/mappers";
|
|
13
|
-
import * as operations from "./operations";
|
|
14
|
-
import { AzureStackHCIClientContext } from "./azureStackHCIClientContext";
|
|
15
|
-
var AzureStackHCIClient = /** @class */ (function (_super) {
|
|
16
|
-
__extends(AzureStackHCIClient, _super);
|
|
17
|
-
/**
|
|
18
|
-
* Initializes a new instance of the AzureStackHCIClient class.
|
|
19
|
-
* @param credentials Credentials needed for the client to connect to Azure. Credentials
|
|
20
|
-
* implementing the TokenCredential interface from the @azure/identity package are recommended. For
|
|
21
|
-
* more information about these credentials, see
|
|
22
|
-
* {@link https://www.npmjs.com/package/@azure/identity}. Credentials implementing the
|
|
23
|
-
* ServiceClientCredentials interface from the older packages @azure/ms-rest-nodeauth and
|
|
24
|
-
* @azure/ms-rest-browserauth are also supported.
|
|
25
|
-
* @param subscriptionId The ID of the target subscription.
|
|
26
|
-
* @param [options] The parameter options
|
|
27
|
-
*/
|
|
28
|
-
function AzureStackHCIClient(credentials, subscriptionId, options) {
|
|
29
|
-
var _this = _super.call(this, credentials, subscriptionId, options) || this;
|
|
30
|
-
_this.operations = new operations.Operations(_this);
|
|
31
|
-
_this.clusters = new operations.Clusters(_this);
|
|
32
|
-
return _this;
|
|
33
|
-
}
|
|
34
|
-
return AzureStackHCIClient;
|
|
35
|
-
}(AzureStackHCIClientContext));
|
|
36
|
-
// Operation Specifications
|
|
37
|
-
export { AzureStackHCIClient, AzureStackHCIClientContext, Models as AzureStackHCIModels, Mappers as AzureStackHCIMappers };
|
|
38
|
-
export * from "./operations";
|
|
39
|
-
//# sourceMappingURL=azureStackHCIClient.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"azureStackHCIClient.js","sourceRoot":"","sources":["../src/azureStackHCIClient.ts"],"names":[],"mappings":"AAAA;;;;;;;;GAQG;;AAIH,OAAO,KAAK,MAAM,MAAM,UAAU,CAAC;AACnC,OAAO,KAAK,OAAO,MAAM,kBAAkB,CAAC;AAC5C,OAAO,KAAK,UAAU,MAAM,cAAc,CAAC;AAC3C,OAAO,EAAE,0BAA0B,EAAE,MAAM,8BAA8B,CAAC;AAG1E;IAAkC,uCAA0B;IAK1D;;;;;;;;;;OAUG;IACH,6BAAY,WAA8D,EAAE,cAAsB,EAAE,OAA2C;QAA/I,YACE,kBAAM,WAAW,EAAE,cAAc,EAAE,OAAO,CAAC,SAG5C;QAFC,KAAI,CAAC,UAAU,GAAG,IAAI,UAAU,CAAC,UAAU,CAAC,KAAI,CAAC,CAAC;QAClD,KAAI,CAAC,QAAQ,GAAG,IAAI,UAAU,CAAC,QAAQ,CAAC,KAAI,CAAC,CAAC;;IAChD,CAAC;IACH,0BAAC;AAAD,CAAC,AArBD,CAAkC,0BAA0B,GAqB3D;AAED,2BAA2B;AAE3B,OAAO,EACL,mBAAmB,EACnB,0BAA0B,EAC1B,MAAM,IAAI,mBAAmB,EAC7B,OAAO,IAAI,oBAAoB,EAChC,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 AzureStackHCIClientContext extends msRestAzure.AzureServiceClient {
|
|
6
|
-
credentials: msRest.ServiceClientCredentials | TokenCredential;
|
|
7
|
-
apiVersion?: string;
|
|
8
|
-
subscriptionId: string;
|
|
9
|
-
/**
|
|
10
|
-
* Initializes a new instance of the AzureStackHCIClient 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.AzureStackHCIClientOptions);
|
|
21
|
-
}
|
|
22
|
-
//# sourceMappingURL=azureStackHCIClientContext.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"azureStackHCIClientContext.d.ts","sourceRoot":"","sources":["../src/azureStackHCIClientContext.ts"],"names":[],"mappings":"AAUA,OAAO,KAAK,MAAM,MAAM,UAAU,CAAC;AACnC,OAAO,KAAK,MAAM,MAAM,mBAAmB,CAAC;AAC5C,OAAO,EAAE,eAAe,EAAE,MAAM,kBAAkB,CAAC;AACnD,OAAO,KAAK,WAAW,MAAM,yBAAyB,CAAC;AAKvD,qBAAa,0BAA2B,SAAQ,WAAW,CAAC,kBAAkB;IAC5E,WAAW,EAAE,MAAM,CAAC,wBAAwB,GAAG,eAAe,CAAC;IAC/D,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,cAAc,EAAE,MAAM,CAAC;IAEvB;;;;;;;;;;OAUG;gBACS,WAAW,EAAE,MAAM,CAAC,wBAAwB,GAAG,eAAe,EAAE,cAAc,EAAE,MAAM,EAAE,OAAO,CAAC,EAAE,MAAM,CAAC,0BAA0B;CAiChJ"}
|
|
@@ -1,61 +0,0 @@
|
|
|
1
|
-
/*
|
|
2
|
-
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
3
|
-
* Licensed under the MIT License. See License.txt in the project root for
|
|
4
|
-
* license information.
|
|
5
|
-
*
|
|
6
|
-
* Code generated by Microsoft (R) AutoRest Code Generator.
|
|
7
|
-
* Changes may cause incorrect behavior and will be lost if the code is
|
|
8
|
-
* regenerated.
|
|
9
|
-
*/
|
|
10
|
-
import { __extends } from "tslib";
|
|
11
|
-
import * as msRestAzure from "@azure/ms-rest-azure-js";
|
|
12
|
-
var packageName = "@azure/arm-azurestackhci";
|
|
13
|
-
var packageVersion = "1.1.1";
|
|
14
|
-
var AzureStackHCIClientContext = /** @class */ (function (_super) {
|
|
15
|
-
__extends(AzureStackHCIClientContext, _super);
|
|
16
|
-
/**
|
|
17
|
-
* Initializes a new instance of the AzureStackHCIClient 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 AzureStackHCIClientContext(credentials, subscriptionId, options) {
|
|
28
|
-
var _this = this;
|
|
29
|
-
if (credentials == undefined) {
|
|
30
|
-
throw new Error('\'credentials\' cannot be null.');
|
|
31
|
-
}
|
|
32
|
-
if (subscriptionId == undefined) {
|
|
33
|
-
throw new Error('\'subscriptionId\' cannot be null.');
|
|
34
|
-
}
|
|
35
|
-
if (!options) {
|
|
36
|
-
options = {};
|
|
37
|
-
}
|
|
38
|
-
if (!options.userAgent) {
|
|
39
|
-
var defaultUserAgent = msRestAzure.getDefaultUserAgentValue();
|
|
40
|
-
options.userAgent = packageName + "/" + packageVersion + " " + defaultUserAgent;
|
|
41
|
-
}
|
|
42
|
-
_this = _super.call(this, credentials, options) || this;
|
|
43
|
-
_this.apiVersion = '2020-03-01-preview';
|
|
44
|
-
_this.acceptLanguage = 'en-US';
|
|
45
|
-
_this.longRunningOperationRetryTimeout = 30;
|
|
46
|
-
_this.baseUri = options.baseUri || _this.baseUri || "https://management.azure.com";
|
|
47
|
-
_this.requestContentType = "application/json; charset=utf-8";
|
|
48
|
-
_this.credentials = credentials;
|
|
49
|
-
_this.subscriptionId = subscriptionId;
|
|
50
|
-
if (options.acceptLanguage !== null && options.acceptLanguage !== undefined) {
|
|
51
|
-
_this.acceptLanguage = options.acceptLanguage;
|
|
52
|
-
}
|
|
53
|
-
if (options.longRunningOperationRetryTimeout !== null && options.longRunningOperationRetryTimeout !== undefined) {
|
|
54
|
-
_this.longRunningOperationRetryTimeout = options.longRunningOperationRetryTimeout;
|
|
55
|
-
}
|
|
56
|
-
return _this;
|
|
57
|
-
}
|
|
58
|
-
return AzureStackHCIClientContext;
|
|
59
|
-
}(msRestAzure.AzureServiceClient));
|
|
60
|
-
export { AzureStackHCIClientContext };
|
|
61
|
-
//# sourceMappingURL=azureStackHCIClientContext.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"azureStackHCIClientContext.js","sourceRoot":"","sources":["../src/azureStackHCIClientContext.ts"],"names":[],"mappings":"AAAA;;;;;;;;GAQG;;AAKH,OAAO,KAAK,WAAW,MAAM,yBAAyB,CAAC;AAEvD,IAAM,WAAW,GAAG,0BAA0B,CAAC;AAC/C,IAAM,cAAc,GAAG,OAAO,CAAC;AAE/B;IAAgD,8CAA8B;IAK5E;;;;;;;;;;OAUG;IACH,oCAAY,WAA8D,EAAE,cAAsB,EAAE,OAA2C;QAA/I,iBAgCC;QA/BC,IAAI,WAAW,IAAI,SAAS,EAAE;YAC5B,MAAM,IAAI,KAAK,CAAC,iCAAiC,CAAC,CAAC;SACpD;QACD,IAAI,cAAc,IAAI,SAAS,EAAE;YAC/B,MAAM,IAAI,KAAK,CAAC,oCAAoC,CAAC,CAAC;SACvD;QAED,IAAI,CAAC,OAAO,EAAE;YACZ,OAAO,GAAG,EAAE,CAAC;SACd;QACD,IAAI,CAAC,OAAO,CAAC,SAAS,EAAE;YACtB,IAAM,gBAAgB,GAAG,WAAW,CAAC,wBAAwB,EAAE,CAAC;YAChE,OAAO,CAAC,SAAS,GAAM,WAAW,SAAI,cAAc,SAAI,gBAAkB,CAAC;SAC5E;QAED,QAAA,kBAAM,WAAW,EAAE,OAAO,CAAC,SAAC;QAE5B,KAAI,CAAC,UAAU,GAAG,oBAAoB,CAAC;QACvC,KAAI,CAAC,cAAc,GAAG,OAAO,CAAC;QAC9B,KAAI,CAAC,gCAAgC,GAAG,EAAE,CAAC;QAC3C,KAAI,CAAC,OAAO,GAAG,OAAO,CAAC,OAAO,IAAI,KAAI,CAAC,OAAO,IAAI,8BAA8B,CAAC;QACjF,KAAI,CAAC,kBAAkB,GAAG,iCAAiC,CAAC;QAC5D,KAAI,CAAC,WAAW,GAAG,WAAW,CAAC;QAC/B,KAAI,CAAC,cAAc,GAAG,cAAc,CAAC;QAErC,IAAI,OAAO,CAAC,cAAc,KAAK,IAAI,IAAI,OAAO,CAAC,cAAc,KAAK,SAAS,EAAE;YAC3E,KAAI,CAAC,cAAc,GAAG,OAAO,CAAC,cAAc,CAAC;SAC9C;QACD,IAAI,OAAO,CAAC,gCAAgC,KAAK,IAAI,IAAI,OAAO,CAAC,gCAAgC,KAAK,SAAS,EAAE;YAC/G,KAAI,CAAC,gCAAgC,GAAG,OAAO,CAAC,gCAAgC,CAAC;SAClF;;IACH,CAAC;IACH,iCAAC;AAAD,CAAC,AAjDD,CAAgD,WAAW,CAAC,kBAAkB,GAiD7E"}
|
|
@@ -1,2 +0,0 @@
|
|
|
1
|
-
export { AzureEntityResource, BaseResource, Cluster, ClusterList, ClusterNode, ClusterReportedProperties, ClusterUpdate, ErrorAdditionalInfo, ErrorResponse, ErrorResponseError, ProxyResource, Resource, TrackedResource } from "../models/mappers";
|
|
2
|
-
//# sourceMappingURL=clustersMappers.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"clustersMappers.d.ts","sourceRoot":"","sources":["../../src/models/clustersMappers.ts"],"names":[],"mappings":"AAQA,OAAO,EACL,mBAAmB,EACnB,YAAY,EACZ,OAAO,EACP,WAAW,EACX,WAAW,EACX,yBAAyB,EACzB,aAAa,EACb,mBAAmB,EACnB,aAAa,EACb,kBAAkB,EAClB,aAAa,EACb,QAAQ,EACR,eAAe,EAChB,MAAM,mBAAmB,CAAC"}
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
/*
|
|
2
|
-
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
3
|
-
* Licensed under the MIT License. See License.txt in the project root for license information.
|
|
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, Cluster, ClusterList, ClusterNode, ClusterReportedProperties, ClusterUpdate, ErrorAdditionalInfo, ErrorResponse, ErrorResponseError, ProxyResource, Resource, TrackedResource } from "../models/mappers";
|
|
9
|
-
//# sourceMappingURL=clustersMappers.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"clustersMappers.js","sourceRoot":"","sources":["../../src/models/clustersMappers.ts"],"names":[],"mappings":"AAAA;;;;;;GAMG;AAEH,OAAO,EACL,mBAAmB,EACnB,YAAY,EACZ,OAAO,EACP,WAAW,EACX,WAAW,EACX,yBAAyB,EACzB,aAAa,EACb,mBAAmB,EACnB,aAAa,EACb,kBAAkB,EAClB,aAAa,EACb,QAAQ,EACR,eAAe,EAChB,MAAM,mBAAmB,CAAC"}
|