@azure/arm-attestation 1.0.0 → 2.0.1-alpha.20211230.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.txt → LICENSE} +2 -2
- package/README.md +72 -73
- package/dist/index.js +1319 -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/attestationManagementClient.d.ts +20 -0
- package/dist-esm/src/attestationManagementClient.d.ts.map +1 -0
- package/dist-esm/src/attestationManagementClient.js +53 -0
- package/dist-esm/src/attestationManagementClient.js.map +1 -0
- package/dist-esm/src/index.d.ts +5 -0
- package/dist-esm/src/index.d.ts.map +1 -0
- package/dist-esm/src/index.js +12 -0
- package/dist-esm/src/index.js.map +1 -0
- package/dist-esm/src/models/index.d.ts +389 -0
- package/dist-esm/src/models/index.d.ts.map +1 -0
- package/dist-esm/src/models/index.js +38 -0
- package/dist-esm/src/models/index.js.map +1 -0
- package/dist-esm/src/models/mappers.d.ts +21 -0
- package/dist-esm/src/models/mappers.d.ts.map +1 -0
- package/{esm → dist-esm/src}/models/mappers.js +239 -164
- package/dist-esm/src/models/mappers.js.map +1 -0
- package/dist-esm/src/models/parameters.d.ts +15 -0
- package/dist-esm/src/models/parameters.d.ts.map +1 -0
- package/dist-esm/src/models/parameters.js +138 -0
- package/dist-esm/src/models/parameters.js.map +1 -0
- package/dist-esm/src/operations/attestationProviders.d.ts +65 -0
- package/dist-esm/src/operations/attestationProviders.d.ts.map +1 -0
- package/dist-esm/src/operations/attestationProviders.js +254 -0
- package/dist-esm/src/operations/attestationProviders.js.map +1 -0
- package/dist-esm/src/operations/index.d.ts +4 -0
- package/dist-esm/src/operations/index.d.ts.map +1 -0
- package/dist-esm/src/operations/index.js +11 -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/operations/privateEndpointConnections.d.ts +58 -0
- package/dist-esm/src/operations/privateEndpointConnections.d.ts.map +1 -0
- package/dist-esm/src/operations/privateEndpointConnections.js +216 -0
- package/dist-esm/src/operations/privateEndpointConnections.js.map +1 -0
- package/dist-esm/src/operationsInterfaces/attestationProviders.d.ts +57 -0
- package/dist-esm/src/operationsInterfaces/attestationProviders.d.ts.map +1 -0
- package/dist-esm/src/operationsInterfaces/attestationProviders.js +9 -0
- package/dist-esm/src/operationsInterfaces/attestationProviders.js.map +1 -0
- package/dist-esm/src/operationsInterfaces/index.d.ts +4 -0
- package/dist-esm/src/operationsInterfaces/index.d.ts.map +1 -0
- package/dist-esm/src/operationsInterfaces/index.js +11 -0
- package/dist-esm/src/operationsInterfaces/index.js.map +1 -0
- package/dist-esm/src/operationsInterfaces/operations.d.ts +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/src/operationsInterfaces/privateEndpointConnections.d.ts +41 -0
- package/dist-esm/src/operationsInterfaces/privateEndpointConnections.d.ts.map +1 -0
- package/dist-esm/src/operationsInterfaces/privateEndpointConnections.js +9 -0
- package/dist-esm/src/operationsInterfaces/privateEndpointConnections.js.map +1 -0
- package/dist-esm/test/attestation_examples.d.ts +4 -0
- package/dist-esm/test/attestation_examples.d.ts.map +1 -0
- package/dist-esm/test/attestation_examples.js +94 -0
- package/dist-esm/test/attestation_examples.js.map +1 -0
- package/package.json +63 -21
- package/review/arm-attestation.api.md +346 -0
- package/rollup.config.js +181 -30
- package/src/attestationManagementClient.ts +74 -31
- package/src/index.ts +12 -0
- package/src/models/index.ts +299 -384
- package/src/models/mappers.ts +242 -162
- package/src/models/parameters.ts +106 -29
- package/src/operations/attestationProviders.ts +178 -315
- package/src/operations/index.ts +4 -5
- package/src/operations/operations.ts +29 -44
- package/src/operations/privateEndpointConnections.ts +277 -0
- package/src/operationsInterfaces/attestationProviders.ts +111 -0
- package/src/operationsInterfaces/index.ts +11 -0
- package/src/operationsInterfaces/operations.ts +21 -0
- package/src/operationsInterfaces/privateEndpointConnections.ts +78 -0
- package/tsconfig.json +3 -3
- package/types/arm-attestation.d.ts +565 -0
- package/types/tsdoc-metadata.json +11 -0
- package/dist/arm-attestation.js +0 -1105
- package/dist/arm-attestation.js.map +0 -1
- package/dist/arm-attestation.min.js +0 -1
- package/dist/arm-attestation.min.js.map +0 -1
- package/esm/attestationManagementClient.d.ts +0 -19
- package/esm/attestationManagementClient.d.ts.map +0 -1
- package/esm/attestationManagementClient.js +0 -34
- package/esm/attestationManagementClient.js.map +0 -1
- package/esm/attestationManagementClientContext.d.ts +0 -16
- package/esm/attestationManagementClientContext.d.ts.map +0 -1
- package/esm/attestationManagementClientContext.js +0 -56
- package/esm/attestationManagementClientContext.js.map +0 -1
- package/esm/models/attestationProvidersMappers.d.ts +0 -2
- package/esm/models/attestationProvidersMappers.d.ts.map +0 -1
- package/esm/models/attestationProvidersMappers.js +0 -9
- package/esm/models/attestationProvidersMappers.js.map +0 -1
- package/esm/models/index.d.ts +0 -492
- 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.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 -81
- package/esm/models/parameters.js.map +0 -1
- package/esm/operations/attestationProviders.d.ts +0 -169
- package/esm/operations/attestationProviders.d.ts.map +0 -1
- package/esm/operations/attestationProviders.js +0 -277
- package/esm/operations/attestationProviders.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/attestationManagementClientContext.ts +0 -62
- package/src/models/attestationProvidersMappers.ts +0 -24
- package/src/models/operationsMappers.ts +0 -15
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"arm-attestation.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/attestationProvidersMappers.ts","../src/operations/attestationProviders.ts","../src/attestationManagementClientContext.ts","../src/attestationManagementClient.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 * Metadata pertaining to creation and last modification of the resource.\n */\nexport interface SystemData {\n /**\n * The identity that created the resource.\n */\n createdBy?: string;\n /**\n * The type of identity that created the resource. Possible values include: 'User',\n * 'Application', 'ManagedIdentity', 'Key'\n */\n createdByType?: CreatedByType;\n /**\n * The timestamp of resource creation (UTC).\n */\n createdAt?: Date;\n /**\n * The identity that last modified the resource.\n */\n lastModifiedBy?: string;\n /**\n * The type of identity that last modified the resource. Possible values include: 'User',\n * 'Application', 'ManagedIdentity', 'Key'\n */\n lastModifiedByType?: CreatedByType;\n /**\n * The type of identity that last modified the resource.\n */\n lastModifiedAt?: Date;\n}\n\n/**\n * Display object with properties of the operation.\n */\nexport interface OperationsDisplayDefinition {\n /**\n * Resource provider of the operation.\n */\n provider?: string;\n /**\n * Resource for the operation.\n */\n resource?: string;\n /**\n * Short description of the operation.\n */\n operation?: string;\n /**\n * Description of the operation.\n */\n description?: string;\n}\n\n/**\n * Definition object with the name and properties of an operation.\n */\nexport interface OperationsDefinition {\n /**\n * Name of the operation.\n */\n name?: string;\n /**\n * Display object with properties of the operation.\n */\n display?: OperationsDisplayDefinition;\n}\n\n/**\n * List of supported operations.\n */\nexport interface OperationList {\n /**\n * The system metadata relating to this resource\n * **NOTE: This property will not be serialized. It can only be populated by the server.**\n */\n readonly systemData?: SystemData;\n /**\n * List of supported operations.\n */\n value?: OperationsDefinition[];\n}\n\n/**\n * Common fields that are returned in the response for all Azure Resource Manager resources\n * @summary Resource\n */\nexport interface Resource extends BaseResource {\n /**\n * Fully qualified resource ID for the resource. Ex -\n * /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}\n * **NOTE: This property will not be serialized. It can only be populated by the server.**\n */\n readonly id?: string;\n /**\n * The name of the resource\n * **NOTE: This property will not be serialized. It can only be populated by the server.**\n */\n readonly name?: string;\n /**\n * The type of the resource. E.g. \"Microsoft.Compute/virtualMachines\" or\n * \"Microsoft.Storage/storageAccounts\"\n * **NOTE: This property will not be serialized. It can only be populated by the server.**\n */\n readonly type?: string;\n}\n\n/**\n * The resource model definition for an Azure Resource Manager tracked top level resource which has\n * 'tags' and a 'location'\n * @summary Tracked Resource\n */\nexport interface TrackedResource extends Resource {\n /**\n * Resource tags.\n */\n tags?: { [propertyName: string]: string };\n /**\n * The geo-location where the resource lives\n */\n location: string;\n}\n\n/**\n * Attestation service response message.\n */\nexport interface AttestationProvider extends TrackedResource {\n /**\n * The system metadata relating to this resource\n * **NOTE: This property will not be serialized. It can only be populated by the server.**\n */\n readonly systemData?: SystemData;\n /**\n * Trust model for the attestation service instance.\n */\n trustModel?: string;\n /**\n * Status of attestation service. Possible values include: 'Ready', 'NotReady', 'Error'\n */\n status?: AttestationServiceStatus;\n /**\n * Gets the uri of attestation service\n */\n attestUri?: string;\n}\n\n/**\n * Attestation Providers List.\n */\nexport interface AttestationProviderListResult {\n /**\n * The system metadata relating to this resource\n * **NOTE: This property will not be serialized. It can only be populated by the server.**\n */\n readonly systemData?: SystemData;\n /**\n * Attestation Provider array.\n */\n value?: AttestationProvider[];\n}\n\n/**\n * Parameters for patching an attestation service instance\n */\nexport interface AttestationServicePatchParams extends BaseResource {\n /**\n * The tags that will be assigned to the attestation service instance.\n */\n tags?: { [propertyName: string]: string };\n}\n\n/**\n * An interface representing JSONWebKey.\n */\nexport interface JSONWebKey {\n /**\n * The \"alg\" (algorithm) parameter identifies the algorithm intended for\n * use with the key. The values used should either be registered in the\n * IANA \"JSON Web Signature and Encryption Algorithms\" registry\n * established by [JWA] or be a value that contains a Collision-\n * Resistant Name.\n */\n alg: string;\n /**\n * The \"crv\" (curve) parameter identifies the curve type\n */\n crv?: string;\n /**\n * RSA private exponent or ECC private key\n */\n d?: string;\n /**\n * RSA Private Key Parameter\n */\n dp?: string;\n /**\n * RSA Private Key Parameter\n */\n dq?: string;\n /**\n * RSA public exponent, in Base64\n */\n e?: string;\n /**\n * Symmetric key\n */\n k?: string;\n /**\n * The \"kid\" (key ID) parameter is used to match a specific key. This\n * is used, for instance, to choose among a set of keys within a JWK Set\n * during key rollover. The structure of the \"kid\" value is\n * unspecified. When \"kid\" values are used within a JWK Set, different\n * keys within the JWK Set SHOULD use distinct \"kid\" values. (One\n * example in which different keys might use the same \"kid\" value is if\n * they have different \"kty\" (key type) values but are considered to be\n * equivalent alternatives by the application using them.) The \"kid\"\n * value is a case-sensitive string.\n */\n kid: string;\n /**\n * The \"kty\" (key type) parameter identifies the cryptographic algorithm\n * family used with the key, such as \"RSA\" or \"EC\". \"kty\" values should\n * either be registered in the IANA \"JSON Web Key Types\" registry\n * established by [JWA] or be a value that contains a Collision-\n * Resistant Name. The \"kty\" value is a case-sensitive string.\n */\n kty: string;\n /**\n * RSA modulus, in Base64\n */\n n?: string;\n /**\n * RSA secret prime\n */\n p?: string;\n /**\n * RSA secret prime, with p < q\n */\n q?: string;\n /**\n * RSA Private Key Parameter\n */\n qi?: string;\n /**\n * Use (\"public key use\") identifies the intended use of\n * the public key. The \"use\" parameter is employed to indicate whether\n * a public key is used for encrypting data or verifying the signature\n * on data. Values are commonly \"sig\" (signature) or \"enc\" (encryption).\n */\n use: string;\n /**\n * X coordinate for the Elliptic Curve point\n */\n x?: string;\n /**\n * The \"x5c\" (X.509 certificate chain) parameter contains a chain of one\n * or more PKIX certificates [RFC5280]. The certificate chain is\n * represented as a JSON array of certificate value strings. Each\n * string in the array is a base64-encoded (Section 4 of [RFC4648] --\n * not base64url-encoded) DER [ITU.X690.1994] PKIX certificate value.\n * The PKIX certificate containing the key value MUST be the first\n * certificate.\n */\n x5c?: string[];\n /**\n * Y coordinate for the Elliptic Curve point\n */\n y?: string;\n}\n\n/**\n * An interface representing JSONWebKeySet.\n */\nexport interface JSONWebKeySet {\n /**\n * The value of the \"keys\" parameter is an array of JWK values. By\n * default, the order of the JWK values within the array does not imply\n * an order of preference among them, although applications of JWK Sets\n * can choose to assign a meaning to the order for their purposes, if\n * desired.\n */\n keys?: JSONWebKey[];\n}\n\n/**\n * Client supplied parameters used to create a new attestation service instance.\n */\nexport interface AttestationServiceCreationSpecificParams {\n /**\n * JSON Web Key Set defining a set of X.509 Certificates that will represent the parent\n * certificate for the signing certificate used for policy operations\n */\n policySigningCertificates?: JSONWebKeySet;\n}\n\n/**\n * Parameters for creating an attestation service instance\n */\nexport interface AttestationServiceCreationParams extends BaseResource {\n /**\n * The supported Azure location where the attestation service instance should be created.\n */\n location: string;\n /**\n * The tags that will be assigned to the attestation service instance.\n */\n tags?: { [propertyName: string]: string };\n /**\n * Properties of the attestation service instance\n */\n properties: AttestationServiceCreationSpecificParams;\n}\n\n/**\n * The resource model definition for a Azure Resource Manager proxy resource. It will not have tags\n * and a location\n * @summary Proxy Resource\n */\nexport interface ProxyResource extends Resource {\n}\n\n/**\n * The resource model definition for an Azure Resource Manager resource with an etag.\n * @summary Entity Resource\n */\nexport interface AzureEntityResource extends Resource {\n /**\n * Resource Etag.\n * **NOTE: This property will not be serialized. It can only be populated by the server.**\n */\n readonly etag?: string;\n}\n\n/**\n * An interface representing AttestationManagementClientOptions.\n */\nexport interface AttestationManagementClientOptions extends AzureServiceClientOptions {\n baseUri?: string;\n}\n\n/**\n * Defines values for CreatedByType.\n * Possible values include: 'User', 'Application', 'ManagedIdentity', 'Key'\n * @readonly\n * @enum {string}\n */\nexport type CreatedByType = 'User' | 'Application' | 'ManagedIdentity' | 'Key';\n\n/**\n * Defines values for AttestationServiceStatus.\n * Possible values include: 'Ready', 'NotReady', 'Error'\n * @readonly\n * @enum {string}\n */\nexport type AttestationServiceStatus = 'Ready' | 'NotReady' | 'Error';\n\n/**\n * Contains response data for the list operation.\n */\nexport type OperationsListResponse = OperationList & {\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: OperationList;\n };\n};\n\n/**\n * Contains response data for the get operation.\n */\nexport type AttestationProvidersGetResponse = AttestationProvider & {\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: AttestationProvider;\n };\n};\n\n/**\n * Contains response data for the create operation.\n */\nexport type AttestationProvidersCreateResponse = AttestationProvider & {\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: AttestationProvider;\n };\n};\n\n/**\n * Contains response data for the update operation.\n */\nexport type AttestationProvidersUpdateResponse = AttestationProvider & {\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: AttestationProvider;\n };\n};\n\n/**\n * Contains response data for the list operation.\n */\nexport type AttestationProvidersListResponse = AttestationProviderListResult & {\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: AttestationProviderListResult;\n };\n};\n\n/**\n * Contains response data for the listByResourceGroup operation.\n */\nexport type AttestationProvidersListByResourceGroupResponse = AttestationProviderListResult & {\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: AttestationProviderListResult;\n };\n};\n\n/**\n * Contains response data for the listDefault operation.\n */\nexport type AttestationProvidersListDefaultResponse = AttestationProviderListResult & {\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: AttestationProviderListResult;\n };\n};\n\n/**\n * Contains response data for the getDefaultByLocation operation.\n */\nexport type AttestationProvidersGetDefaultByLocationResponse = AttestationProvider & {\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: AttestationProvider;\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 SystemData: msRest.CompositeMapper = {\n serializedName: \"systemData\",\n type: {\n name: \"Composite\",\n className: \"SystemData\",\n modelProperties: {\n createdBy: {\n serializedName: \"createdBy\",\n type: {\n name: \"String\"\n }\n },\n createdByType: {\n serializedName: \"createdByType\",\n type: {\n name: \"String\"\n }\n },\n createdAt: {\n serializedName: \"createdAt\",\n type: {\n name: \"DateTime\"\n }\n },\n lastModifiedBy: {\n serializedName: \"lastModifiedBy\",\n type: {\n name: \"String\"\n }\n },\n lastModifiedByType: {\n serializedName: \"lastModifiedByType\",\n type: {\n name: \"String\"\n }\n },\n lastModifiedAt: {\n serializedName: \"lastModifiedAt\",\n type: {\n name: \"DateTime\"\n }\n }\n }\n }\n};\n\nexport const OperationsDisplayDefinition: msRest.CompositeMapper = {\n serializedName: \"OperationsDisplayDefinition\",\n type: {\n name: \"Composite\",\n className: \"OperationsDisplayDefinition\",\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 OperationsDefinition: msRest.CompositeMapper = {\n serializedName: \"OperationsDefinition\",\n type: {\n name: \"Composite\",\n className: \"OperationsDefinition\",\n modelProperties: {\n name: {\n serializedName: \"name\",\n type: {\n name: \"String\"\n }\n },\n display: {\n serializedName: \"display\",\n type: {\n name: \"Composite\",\n className: \"OperationsDisplayDefinition\"\n }\n }\n }\n }\n};\n\nexport const OperationList: msRest.CompositeMapper = {\n serializedName: \"OperationList\",\n type: {\n name: \"Composite\",\n className: \"OperationList\",\n modelProperties: {\n systemData: {\n readOnly: true,\n serializedName: \"systemData\",\n type: {\n name: \"Composite\",\n className: \"SystemData\"\n }\n },\n value: {\n serializedName: \"value\",\n type: {\n name: \"Sequence\",\n element: {\n type: {\n name: \"Composite\",\n className: \"OperationsDefinition\"\n }\n }\n }\n }\n }\n }\n};\n\nexport const Resource: msRest.CompositeMapper = {\n serializedName: \"Resource\",\n type: {\n name: \"Composite\",\n className: \"Resource\",\n modelProperties: {\n id: {\n readOnly: true,\n serializedName: \"id\",\n type: {\n name: \"String\"\n }\n },\n name: {\n readOnly: true,\n serializedName: \"name\",\n type: {\n name: \"String\"\n }\n },\n type: {\n readOnly: true,\n serializedName: \"type\",\n type: {\n name: \"String\"\n }\n }\n }\n }\n};\n\nexport const 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 AttestationProvider: msRest.CompositeMapper = {\n serializedName: \"AttestationProvider\",\n type: {\n name: \"Composite\",\n className: \"AttestationProvider\",\n modelProperties: {\n ...TrackedResource.type.modelProperties,\n systemData: {\n readOnly: true,\n serializedName: \"systemData\",\n type: {\n name: \"Composite\",\n className: \"SystemData\"\n }\n },\n trustModel: {\n serializedName: \"properties.trustModel\",\n type: {\n name: \"String\"\n }\n },\n status: {\n serializedName: \"properties.status\",\n type: {\n name: \"String\"\n }\n },\n attestUri: {\n serializedName: \"properties.attestUri\",\n type: {\n name: \"String\"\n }\n }\n }\n }\n};\n\nexport const AttestationProviderListResult: msRest.CompositeMapper = {\n serializedName: \"AttestationProviderListResult\",\n type: {\n name: \"Composite\",\n className: \"AttestationProviderListResult\",\n modelProperties: {\n systemData: {\n readOnly: true,\n serializedName: \"systemData\",\n type: {\n name: \"Composite\",\n className: \"SystemData\"\n }\n },\n value: {\n serializedName: \"value\",\n type: {\n name: \"Sequence\",\n element: {\n type: {\n name: \"Composite\",\n className: \"AttestationProvider\"\n }\n }\n }\n }\n }\n }\n};\n\nexport const AttestationServicePatchParams: msRest.CompositeMapper = {\n serializedName: \"AttestationServicePatchParams\",\n type: {\n name: \"Composite\",\n className: \"AttestationServicePatchParams\",\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 JSONWebKey: msRest.CompositeMapper = {\n serializedName: \"JSONWebKey\",\n type: {\n name: \"Composite\",\n className: \"JSONWebKey\",\n modelProperties: {\n alg: {\n required: true,\n serializedName: \"alg\",\n type: {\n name: \"String\"\n }\n },\n crv: {\n serializedName: \"crv\",\n type: {\n name: \"String\"\n }\n },\n d: {\n serializedName: \"d\",\n type: {\n name: \"String\"\n }\n },\n dp: {\n serializedName: \"dp\",\n type: {\n name: \"String\"\n }\n },\n dq: {\n serializedName: \"dq\",\n type: {\n name: \"String\"\n }\n },\n e: {\n serializedName: \"e\",\n type: {\n name: \"String\"\n }\n },\n k: {\n serializedName: \"k\",\n type: {\n name: \"String\"\n }\n },\n kid: {\n required: true,\n serializedName: \"kid\",\n type: {\n name: \"String\"\n }\n },\n kty: {\n required: true,\n serializedName: \"kty\",\n type: {\n name: \"String\"\n }\n },\n n: {\n serializedName: \"n\",\n type: {\n name: \"String\"\n }\n },\n p: {\n serializedName: \"p\",\n type: {\n name: \"String\"\n }\n },\n q: {\n serializedName: \"q\",\n type: {\n name: \"String\"\n }\n },\n qi: {\n serializedName: \"qi\",\n type: {\n name: \"String\"\n }\n },\n use: {\n required: true,\n serializedName: \"use\",\n type: {\n name: \"String\"\n }\n },\n x: {\n serializedName: \"x\",\n type: {\n name: \"String\"\n }\n },\n x5c: {\n serializedName: \"x5c\",\n type: {\n name: \"Sequence\",\n element: {\n type: {\n name: \"String\"\n }\n }\n }\n },\n y: {\n serializedName: \"y\",\n type: {\n name: \"String\"\n }\n }\n }\n }\n};\n\nexport const JSONWebKeySet: msRest.CompositeMapper = {\n serializedName: \"JSONWebKeySet\",\n type: {\n name: \"Composite\",\n className: \"JSONWebKeySet\",\n modelProperties: {\n keys: {\n serializedName: \"keys\",\n type: {\n name: \"Sequence\",\n element: {\n type: {\n name: \"Composite\",\n className: \"JSONWebKey\"\n }\n }\n }\n }\n }\n }\n};\n\nexport const AttestationServiceCreationSpecificParams: msRest.CompositeMapper = {\n serializedName: \"AttestationServiceCreationSpecificParams\",\n type: {\n name: \"Composite\",\n className: \"AttestationServiceCreationSpecificParams\",\n modelProperties: {\n policySigningCertificates: {\n serializedName: \"policySigningCertificates\",\n type: {\n name: \"Composite\",\n className: \"JSONWebKeySet\"\n }\n }\n }\n }\n};\n\nexport const AttestationServiceCreationParams: msRest.CompositeMapper = {\n serializedName: \"AttestationServiceCreationParams\",\n type: {\n name: \"Composite\",\n className: \"AttestationServiceCreationParams\",\n modelProperties: {\n location: {\n required: true,\n serializedName: \"location\",\n type: {\n name: \"String\"\n }\n },\n tags: {\n serializedName: \"tags\",\n type: {\n name: \"Dictionary\",\n value: {\n type: {\n name: \"String\"\n }\n }\n }\n },\n properties: {\n required: true,\n serializedName: \"properties\",\n type: {\n name: \"Composite\",\n className: \"AttestationServiceCreationSpecificParams\"\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","/*\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 CloudError,\n OperationList,\n OperationsDefinition,\n OperationsDisplayDefinition,\n SystemData\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 type: {\n name: \"String\"\n }\n }\n};\nexport const location: msRest.OperationURLParameter = {\n parameterPath: \"location\",\n mapper: {\n required: true,\n serializedName: \"location\",\n constraints: {\n MinLength: 1\n },\n type: {\n name: \"String\"\n }\n }\n};\nexport const providerName: msRest.OperationURLParameter = {\n parameterPath: \"providerName\",\n mapper: {\n required: true,\n serializedName: \"providerName\",\n type: {\n name: \"String\"\n }\n }\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 { AttestationManagementClientContext } from \"../attestationManagementClientContext\";\n\n/** Class representing a Operations. */\nexport class Operations {\n private readonly client: AttestationManagementClientContext;\n\n /**\n * Create a Operations.\n * @param {AttestationManagementClientContext} client Reference to the service client.\n */\n constructor(client: AttestationManagementClientContext) {\n this.client = client;\n }\n\n /**\n * Lists all of the available Azure attestation 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.OperationList>): void;\n /**\n * @param options The optional parameters\n * @param callback The callback\n */\n list(options: msRest.RequestOptionsBase, callback: msRest.ServiceCallback<Models.OperationList>): void;\n list(options?: msRest.RequestOptionsBase | msRest.ServiceCallback<Models.OperationList>, callback?: msRest.ServiceCallback<Models.OperationList>): 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.Attestation/operations\",\n queryParameters: [\n Parameters.apiVersion\n ],\n headerParameters: [\n Parameters.acceptLanguage\n ],\n responses: {\n 200: {\n bodyMapper: Mappers.OperationList\n },\n default: {\n bodyMapper: Mappers.CloudError\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 AttestationProvider,\n AttestationProviderListResult,\n AttestationServiceCreationParams,\n AttestationServiceCreationSpecificParams,\n AttestationServicePatchParams,\n AzureEntityResource,\n BaseResource,\n CloudError,\n JSONWebKey,\n JSONWebKeySet,\n ProxyResource,\n Resource,\n SystemData,\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/attestationProvidersMappers\";\nimport * as Parameters from \"../models/parameters\";\nimport { AttestationManagementClientContext } from \"../attestationManagementClientContext\";\n\n/** Class representing a AttestationProviders. */\nexport class AttestationProviders {\n private readonly client: AttestationManagementClientContext;\n\n /**\n * Create a AttestationProviders.\n * @param {AttestationManagementClientContext} client Reference to the service client.\n */\n constructor(client: AttestationManagementClientContext) {\n this.client = client;\n }\n\n /**\n * Get the status of Attestation Provider.\n * @param resourceGroupName The name of the resource group. The name is case insensitive.\n * @param providerName Name of the attestation service instance\n * @param [options] The optional parameters\n * @returns Promise<Models.AttestationProvidersGetResponse>\n */\n get(resourceGroupName: string, providerName: string, options?: msRest.RequestOptionsBase): Promise<Models.AttestationProvidersGetResponse>;\n /**\n * @param resourceGroupName The name of the resource group. The name is case insensitive.\n * @param providerName Name of the attestation service instance\n * @param callback The callback\n */\n get(resourceGroupName: string, providerName: string, callback: msRest.ServiceCallback<Models.AttestationProvider>): void;\n /**\n * @param resourceGroupName The name of the resource group. The name is case insensitive.\n * @param providerName Name of the attestation service instance\n * @param options The optional parameters\n * @param callback The callback\n */\n get(resourceGroupName: string, providerName: string, options: msRest.RequestOptionsBase, callback: msRest.ServiceCallback<Models.AttestationProvider>): void;\n get(resourceGroupName: string, providerName: string, options?: msRest.RequestOptionsBase | msRest.ServiceCallback<Models.AttestationProvider>, callback?: msRest.ServiceCallback<Models.AttestationProvider>): Promise<Models.AttestationProvidersGetResponse> {\n return this.client.sendOperationRequest(\n {\n resourceGroupName,\n providerName,\n options\n },\n getOperationSpec,\n callback) as Promise<Models.AttestationProvidersGetResponse>;\n }\n\n /**\n * Creates a new Attestation Provider instance.\n * @param resourceGroupName The name of the resource group. The name is case insensitive.\n * @param providerName Name of the attestation service instance.\n * @param creationParams Client supplied parameters.\n * @param [options] The optional parameters\n * @returns Promise<Models.AttestationProvidersCreateResponse>\n */\n create(resourceGroupName: string, providerName: string, creationParams: Models.AttestationServiceCreationParams, options?: msRest.RequestOptionsBase): Promise<Models.AttestationProvidersCreateResponse>;\n /**\n * @param resourceGroupName The name of the resource group. The name is case insensitive.\n * @param providerName Name of the attestation service instance.\n * @param creationParams Client supplied parameters.\n * @param callback The callback\n */\n create(resourceGroupName: string, providerName: string, creationParams: Models.AttestationServiceCreationParams, callback: msRest.ServiceCallback<Models.AttestationProvider>): void;\n /**\n * @param resourceGroupName The name of the resource group. The name is case insensitive.\n * @param providerName Name of the attestation service instance.\n * @param creationParams Client supplied parameters.\n * @param options The optional parameters\n * @param callback The callback\n */\n create(resourceGroupName: string, providerName: string, creationParams: Models.AttestationServiceCreationParams, options: msRest.RequestOptionsBase, callback: msRest.ServiceCallback<Models.AttestationProvider>): void;\n create(resourceGroupName: string, providerName: string, creationParams: Models.AttestationServiceCreationParams, options?: msRest.RequestOptionsBase | msRest.ServiceCallback<Models.AttestationProvider>, callback?: msRest.ServiceCallback<Models.AttestationProvider>): Promise<Models.AttestationProvidersCreateResponse> {\n return this.client.sendOperationRequest(\n {\n resourceGroupName,\n providerName,\n creationParams,\n options\n },\n createOperationSpec,\n callback) as Promise<Models.AttestationProvidersCreateResponse>;\n }\n\n /**\n * Updates the Attestation Provider.\n * @param resourceGroupName The name of the resource group. The name is case insensitive.\n * @param providerName Name of the attestation service instance.\n * @param updateParams Client supplied parameters.\n * @param [options] The optional parameters\n * @returns Promise<Models.AttestationProvidersUpdateResponse>\n */\n update(resourceGroupName: string, providerName: string, updateParams: Models.AttestationServicePatchParams, options?: msRest.RequestOptionsBase): Promise<Models.AttestationProvidersUpdateResponse>;\n /**\n * @param resourceGroupName The name of the resource group. The name is case insensitive.\n * @param providerName Name of the attestation service instance.\n * @param updateParams Client supplied parameters.\n * @param callback The callback\n */\n update(resourceGroupName: string, providerName: string, updateParams: Models.AttestationServicePatchParams, callback: msRest.ServiceCallback<Models.AttestationProvider>): void;\n /**\n * @param resourceGroupName The name of the resource group. The name is case insensitive.\n * @param providerName Name of the attestation service instance.\n * @param updateParams Client supplied parameters.\n * @param options The optional parameters\n * @param callback The callback\n */\n update(resourceGroupName: string, providerName: string, updateParams: Models.AttestationServicePatchParams, options: msRest.RequestOptionsBase, callback: msRest.ServiceCallback<Models.AttestationProvider>): void;\n update(resourceGroupName: string, providerName: string, updateParams: Models.AttestationServicePatchParams, options?: msRest.RequestOptionsBase | msRest.ServiceCallback<Models.AttestationProvider>, callback?: msRest.ServiceCallback<Models.AttestationProvider>): Promise<Models.AttestationProvidersUpdateResponse> {\n return this.client.sendOperationRequest(\n {\n resourceGroupName,\n providerName,\n updateParams,\n options\n },\n updateOperationSpec,\n callback) as Promise<Models.AttestationProvidersUpdateResponse>;\n }\n\n /**\n * Delete Attestation Service.\n * @param resourceGroupName The name of the resource group. The name is case insensitive.\n * @param providerName Name of the attestation service\n * @param [options] The optional parameters\n * @returns Promise<msRest.RestResponse>\n */\n deleteMethod(resourceGroupName: string, providerName: string, options?: msRest.RequestOptionsBase): Promise<msRest.RestResponse>;\n /**\n * @param resourceGroupName The name of the resource group. The name is case insensitive.\n * @param providerName Name of the attestation service\n * @param callback The callback\n */\n deleteMethod(resourceGroupName: string, providerName: string, callback: msRest.ServiceCallback<void>): void;\n /**\n * @param resourceGroupName The name of the resource group. The name is case insensitive.\n * @param providerName Name of the attestation service\n * @param options The optional parameters\n * @param callback The callback\n */\n deleteMethod(resourceGroupName: string, providerName: string, options: msRest.RequestOptionsBase, callback: msRest.ServiceCallback<void>): void;\n deleteMethod(resourceGroupName: string, providerName: string, options?: msRest.RequestOptionsBase | msRest.ServiceCallback<void>, callback?: msRest.ServiceCallback<void>): Promise<msRest.RestResponse> {\n return this.client.sendOperationRequest(\n {\n resourceGroupName,\n providerName,\n options\n },\n deleteMethodOperationSpec,\n callback);\n }\n\n /**\n * Returns a list of attestation providers in a subscription.\n * @param [options] The optional parameters\n * @returns Promise<Models.AttestationProvidersListResponse>\n */\n list(options?: msRest.RequestOptionsBase): Promise<Models.AttestationProvidersListResponse>;\n /**\n * @param callback The callback\n */\n list(callback: msRest.ServiceCallback<Models.AttestationProviderListResult>): void;\n /**\n * @param options The optional parameters\n * @param callback The callback\n */\n list(options: msRest.RequestOptionsBase, callback: msRest.ServiceCallback<Models.AttestationProviderListResult>): void;\n list(options?: msRest.RequestOptionsBase | msRest.ServiceCallback<Models.AttestationProviderListResult>, callback?: msRest.ServiceCallback<Models.AttestationProviderListResult>): Promise<Models.AttestationProvidersListResponse> {\n return this.client.sendOperationRequest(\n {\n options\n },\n listOperationSpec,\n callback) as Promise<Models.AttestationProvidersListResponse>;\n }\n\n /**\n * Returns attestation providers list 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.AttestationProvidersListByResourceGroupResponse>\n */\n listByResourceGroup(resourceGroupName: string, options?: msRest.RequestOptionsBase): Promise<Models.AttestationProvidersListByResourceGroupResponse>;\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.AttestationProviderListResult>): 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.AttestationProviderListResult>): void;\n listByResourceGroup(resourceGroupName: string, options?: msRest.RequestOptionsBase | msRest.ServiceCallback<Models.AttestationProviderListResult>, callback?: msRest.ServiceCallback<Models.AttestationProviderListResult>): Promise<Models.AttestationProvidersListByResourceGroupResponse> {\n return this.client.sendOperationRequest(\n {\n resourceGroupName,\n options\n },\n listByResourceGroupOperationSpec,\n callback) as Promise<Models.AttestationProvidersListByResourceGroupResponse>;\n }\n\n /**\n * Get the default provider\n * @param [options] The optional parameters\n * @returns Promise<Models.AttestationProvidersListDefaultResponse>\n */\n listDefault(options?: msRest.RequestOptionsBase): Promise<Models.AttestationProvidersListDefaultResponse>;\n /**\n * @param callback The callback\n */\n listDefault(callback: msRest.ServiceCallback<Models.AttestationProviderListResult>): void;\n /**\n * @param options The optional parameters\n * @param callback The callback\n */\n listDefault(options: msRest.RequestOptionsBase, callback: msRest.ServiceCallback<Models.AttestationProviderListResult>): void;\n listDefault(options?: msRest.RequestOptionsBase | msRest.ServiceCallback<Models.AttestationProviderListResult>, callback?: msRest.ServiceCallback<Models.AttestationProviderListResult>): Promise<Models.AttestationProvidersListDefaultResponse> {\n return this.client.sendOperationRequest(\n {\n options\n },\n listDefaultOperationSpec,\n callback) as Promise<Models.AttestationProvidersListDefaultResponse>;\n }\n\n /**\n * Get the default provider by location.\n * @param location The location of the default provider.\n * @param [options] The optional parameters\n * @returns Promise<Models.AttestationProvidersGetDefaultByLocationResponse>\n */\n getDefaultByLocation(location: string, options?: msRest.RequestOptionsBase): Promise<Models.AttestationProvidersGetDefaultByLocationResponse>;\n /**\n * @param location The location of the default provider.\n * @param callback The callback\n */\n getDefaultByLocation(location: string, callback: msRest.ServiceCallback<Models.AttestationProvider>): void;\n /**\n * @param location The location of the default provider.\n * @param options The optional parameters\n * @param callback The callback\n */\n getDefaultByLocation(location: string, options: msRest.RequestOptionsBase, callback: msRest.ServiceCallback<Models.AttestationProvider>): void;\n getDefaultByLocation(location: string, options?: msRest.RequestOptionsBase | msRest.ServiceCallback<Models.AttestationProvider>, callback?: msRest.ServiceCallback<Models.AttestationProvider>): Promise<Models.AttestationProvidersGetDefaultByLocationResponse> {\n return this.client.sendOperationRequest(\n {\n location,\n options\n },\n getDefaultByLocationOperationSpec,\n callback) as Promise<Models.AttestationProvidersGetDefaultByLocationResponse>;\n }\n}\n\n// Operation Specifications\nconst serializer = new msRest.Serializer(Mappers);\nconst getOperationSpec: msRest.OperationSpec = {\n httpMethod: \"GET\",\n path: \"subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Attestation/attestationProviders/{providerName}\",\n urlParameters: [\n Parameters.subscriptionId,\n Parameters.resourceGroupName,\n Parameters.providerName\n ],\n queryParameters: [\n Parameters.apiVersion\n ],\n headerParameters: [\n Parameters.acceptLanguage\n ],\n responses: {\n 200: {\n bodyMapper: Mappers.AttestationProvider\n },\n default: {\n bodyMapper: Mappers.CloudError\n }\n },\n serializer\n};\n\nconst createOperationSpec: msRest.OperationSpec = {\n httpMethod: \"PUT\",\n path: \"subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Attestation/attestationProviders/{providerName}\",\n urlParameters: [\n Parameters.subscriptionId,\n Parameters.resourceGroupName,\n Parameters.providerName\n ],\n queryParameters: [\n Parameters.apiVersion\n ],\n headerParameters: [\n Parameters.acceptLanguage\n ],\n requestBody: {\n parameterPath: \"creationParams\",\n mapper: {\n ...Mappers.AttestationServiceCreationParams,\n required: true\n }\n },\n responses: {\n 200: {\n bodyMapper: Mappers.AttestationProvider\n },\n 201: {\n bodyMapper: Mappers.AttestationProvider\n },\n default: {\n bodyMapper: Mappers.CloudError\n }\n },\n serializer\n};\n\nconst updateOperationSpec: msRest.OperationSpec = {\n httpMethod: \"PATCH\",\n path: \"subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Attestation/attestationProviders/{providerName}\",\n urlParameters: [\n Parameters.subscriptionId,\n Parameters.resourceGroupName,\n Parameters.providerName\n ],\n queryParameters: [\n Parameters.apiVersion\n ],\n headerParameters: [\n Parameters.acceptLanguage\n ],\n requestBody: {\n parameterPath: \"updateParams\",\n mapper: {\n ...Mappers.AttestationServicePatchParams,\n required: true\n }\n },\n responses: {\n 200: {\n bodyMapper: Mappers.AttestationProvider\n },\n default: {\n bodyMapper: Mappers.CloudError\n }\n },\n serializer\n};\n\nconst deleteMethodOperationSpec: msRest.OperationSpec = {\n httpMethod: \"DELETE\",\n path: \"subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Attestation/attestationProviders/{providerName}\",\n urlParameters: [\n Parameters.subscriptionId,\n Parameters.resourceGroupName,\n Parameters.providerName\n ],\n queryParameters: [\n Parameters.apiVersion\n ],\n headerParameters: [\n Parameters.acceptLanguage\n ],\n responses: {\n 200: {},\n 202: {},\n 204: {},\n default: {\n bodyMapper: Mappers.CloudError\n }\n },\n serializer\n};\n\nconst listOperationSpec: msRest.OperationSpec = {\n httpMethod: \"GET\",\n path: \"subscriptions/{subscriptionId}/providers/Microsoft.Attestation/attestationProviders\",\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.AttestationProviderListResult\n },\n default: {\n bodyMapper: Mappers.CloudError\n }\n },\n serializer\n};\n\nconst listByResourceGroupOperationSpec: msRest.OperationSpec = {\n httpMethod: \"GET\",\n path: \"subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Attestation/attestationProviders\",\n urlParameters: [\n Parameters.resourceGroupName,\n Parameters.subscriptionId\n ],\n queryParameters: [\n Parameters.apiVersion\n ],\n headerParameters: [\n Parameters.acceptLanguage\n ],\n responses: {\n 200: {\n bodyMapper: Mappers.AttestationProviderListResult\n },\n default: {\n bodyMapper: Mappers.CloudError\n }\n },\n serializer\n};\n\nconst listDefaultOperationSpec: msRest.OperationSpec = {\n httpMethod: \"GET\",\n path: \"subscriptions/{subscriptionId}/providers/Microsoft.Attestation/defaultProviders\",\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.AttestationProviderListResult\n },\n default: {\n bodyMapper: Mappers.CloudError\n }\n },\n serializer\n};\n\nconst getDefaultByLocationOperationSpec: msRest.OperationSpec = {\n httpMethod: \"GET\",\n path: \"subscriptions/{subscriptionId}/providers/Microsoft.Attestation/locations/{location}/defaultProvider\",\n urlParameters: [\n Parameters.location,\n Parameters.subscriptionId\n ],\n queryParameters: [\n Parameters.apiVersion\n ],\n headerParameters: [\n Parameters.acceptLanguage\n ],\n responses: {\n 200: {\n bodyMapper: Mappers.AttestationProvider\n },\n default: {\n bodyMapper: Mappers.CloudError\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 * as msRestAzure from \"@azure/ms-rest-azure-js\";\n\nconst packageName = \"@azure/arm-attestation\";\nconst packageVersion = \"1.0.0\";\n\nexport class AttestationManagementClientContext extends msRestAzure.AzureServiceClient {\n credentials: msRest.ServiceClientCredentials;\n apiVersion?: string;\n subscriptionId: string;\n\n /**\n * Initializes a new instance of the AttestationManagementClient class.\n * @param credentials Credentials needed for the client to connect to Azure.\n * @param subscriptionId The ID of the target subscription.\n * @param [options] The parameter options\n */\n constructor(credentials: msRest.ServiceClientCredentials, subscriptionId: string, options?: Models.AttestationManagementClientOptions) {\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-10-01';\n this.acceptLanguage = 'en-US';\n this.longRunningOperationRetryTimeout = 30;\n this.baseUri = options.baseUri || this.baseUri || \"https://management.azure.com\";\n this.requestContentType = \"application/json; charset=utf-8\";\n this.credentials = credentials;\n this.subscriptionId = subscriptionId;\n\n if(options.acceptLanguage !== null && options.acceptLanguage !== undefined) {\n this.acceptLanguage = options.acceptLanguage;\n }\n if(options.longRunningOperationRetryTimeout !== null && options.longRunningOperationRetryTimeout !== undefined) {\n this.longRunningOperationRetryTimeout = options.longRunningOperationRetryTimeout;\n }\n }\n}\n","/*\n * Copyright (c) Microsoft Corporation. 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/mappers\";\nimport * as operations from \"./operations\";\nimport { AttestationManagementClientContext } from \"./attestationManagementClientContext\";\n\n\nclass AttestationManagementClient extends AttestationManagementClientContext {\n // Operation groups\n operations: operations.Operations;\n attestationProviders: operations.AttestationProviders;\n\n /**\n * Initializes a new instance of the AttestationManagementClient class.\n * @param credentials Credentials needed for the client to connect to Azure.\n * @param subscriptionId The ID of the target subscription.\n * @param [options] The parameter options\n */\n constructor(credentials: msRest.ServiceClientCredentials, subscriptionId: string, options?: Models.AttestationManagementClientOptions) {\n super(credentials, subscriptionId, options);\n this.operations = new operations.Operations(this);\n this.attestationProviders = new operations.AttestationProviders(this);\n }\n}\n\n// Operation Specifications\n\nexport {\n AttestationManagementClient,\n AttestationManagementClientContext,\n Models as AttestationManagementModels,\n Mappers as AttestationManagementMappers\n};\nexport * from \"./operations\";\n"],"names":["CloudErrorMapper","BaseResourceMapper","msRest.Serializer","Parameters.apiVersion","Parameters.acceptLanguage","Mappers.OperationList","Mappers.CloudError","listOperationSpec","serializer","Mappers","Parameters.subscriptionId","Parameters.resourceGroupName","Parameters.providerName","Mappers.AttestationProvider","Mappers.AttestationServiceCreationParams","Mappers.AttestationServicePatchParams","Mappers.AttestationProviderListResult","Parameters.location","msRestAzure.getDefaultUserAgentValue","msRestAzure.AzureServiceClient","operations.Operations","operations.AttestationProviders"],"mappings":"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"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
!function(e,t){"object"==typeof exports&&"undefined"!=typeof module?t(exports,require("@azure/ms-rest-azure-js"),require("@azure/ms-rest-js")):"function"==typeof define&&define.amd?define(["exports","@azure/ms-rest-azure-js","@azure/ms-rest-js"],t):t(((e=e||self).Azure=e.Azure||{},e.Azure.ArmAttestation={}),e.msRestAzure,e.msRest)}(this,function(e,s,t){"use strict";var a=function(e,t){return(a=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var r in t)t.hasOwnProperty(r)&&(e[r]=t[r])})(e,t)};function r(e,t){function r(){this.constructor=e}a(e,t),e.prototype=null===t?Object.create(t):(r.prototype=t.prototype,new r)}var i=function(){return(i=Object.assign||function(e){for(var t,r=1,a=arguments.length;r<a;r++)for(var i in t=arguments[r])Object.prototype.hasOwnProperty.call(t,i)&&(e[i]=t[i]);return e}).apply(this,arguments)},o=Object.freeze({__proto__:null}),n=s.CloudErrorMapper,p=s.BaseResourceMapper,m={serializedName:"systemData",type:{name:"Composite",className:"SystemData",modelProperties:{createdBy:{serializedName:"createdBy",type:{name:"String"}},createdByType:{serializedName:"createdByType",type:{name:"String"}},createdAt:{serializedName:"createdAt",type:{name:"DateTime"}},lastModifiedBy:{serializedName:"lastModifiedBy",type:{name:"String"}},lastModifiedByType:{serializedName:"lastModifiedByType",type:{name:"String"}},lastModifiedAt:{serializedName:"lastModifiedAt",type:{name:"DateTime"}}}}},d={serializedName:"OperationsDisplayDefinition",type:{name:"Composite",className:"OperationsDisplayDefinition",modelProperties:{provider:{serializedName:"provider",type:{name:"String"}},resource:{serializedName:"resource",type:{name:"String"}},operation:{serializedName:"operation",type:{name:"String"}},description:{serializedName:"description",type:{name:"String"}}}}},l={serializedName:"OperationsDefinition",type:{name:"Composite",className:"OperationsDefinition",modelProperties:{name:{serializedName:"name",type:{name:"String"}},display:{serializedName:"display",type:{name:"Composite",className:"OperationsDisplayDefinition"}}}}},u={serializedName:"OperationList",type:{name:"Composite",className:"OperationList",modelProperties:{systemData:{readOnly:!0,serializedName:"systemData",type:{name:"Composite",className:"SystemData"}},value:{serializedName:"value",type:{name:"Sequence",element:{type:{name:"Composite",className:"OperationsDefinition"}}}}}}},c={serializedName:"Resource",type:{name:"Composite",className:"Resource",modelProperties:{id:{readOnly:!0,serializedName:"id",type:{name:"String"}},name:{readOnly:!0,serializedName:"name",type:{name:"String"}},type:{readOnly:!0,serializedName:"type",type:{name:"String"}}}}},y={serializedName:"TrackedResource",type:{name:"Composite",className:"TrackedResource",modelProperties:i(i({},c.type.modelProperties),{tags:{serializedName:"tags",type:{name:"Dictionary",value:{type:{name:"String"}}}},location:{required:!0,serializedName:"location",type:{name:"String"}}})}},N={serializedName:"AttestationProvider",type:{name:"Composite",className:"AttestationProvider",modelProperties:i(i({},y.type.modelProperties),{systemData:{readOnly:!0,serializedName:"systemData",type:{name:"Composite",className:"SystemData"}},trustModel:{serializedName:"properties.trustModel",type:{name:"String"}},status:{serializedName:"properties.status",type:{name:"String"}},attestUri:{serializedName:"properties.attestUri",type:{name:"String"}}})}},P={serializedName:"AttestationProviderListResult",type:{name:"Composite",className:"AttestationProviderListResult",modelProperties:{systemData:{readOnly:!0,serializedName:"systemData",type:{name:"Composite",className:"SystemData"}},value:{serializedName:"value",type:{name:"Sequence",element:{type:{name:"Composite",className:"AttestationProvider"}}}}}}},z={serializedName:"AttestationServicePatchParams",type:{name:"Composite",className:"AttestationServicePatchParams",modelProperties:{tags:{serializedName:"tags",type:{name:"Dictionary",value:{type:{name:"String"}}}}}}},g={serializedName:"JSONWebKey",type:{name:"Composite",className:"JSONWebKey",modelProperties:{alg:{required:!0,serializedName:"alg",type:{name:"String"}},crv:{serializedName:"crv",type:{name:"String"}},d:{serializedName:"d",type:{name:"String"}},dp:{serializedName:"dp",type:{name:"String"}},dq:{serializedName:"dq",type:{name:"String"}},e:{serializedName:"e",type:{name:"String"}},k:{serializedName:"k",type:{name:"String"}},kid:{required:!0,serializedName:"kid",type:{name:"String"}},kty:{required:!0,serializedName:"kty",type:{name:"String"}},n:{serializedName:"n",type:{name:"String"}},p:{serializedName:"p",type:{name:"String"}},q:{serializedName:"q",type:{name:"String"}},qi:{serializedName:"qi",type:{name:"String"}},use:{required:!0,serializedName:"use",type:{name:"String"}},x:{serializedName:"x",type:{name:"String"}},x5c:{serializedName:"x5c",type:{name:"Sequence",element:{type:{name:"String"}}}},y:{serializedName:"y",type:{name:"String"}}}}},S={serializedName:"JSONWebKeySet",type:{name:"Composite",className:"JSONWebKeySet",modelProperties:{keys:{serializedName:"keys",type:{name:"Sequence",element:{type:{name:"Composite",className:"JSONWebKey"}}}}}}},f={serializedName:"AttestationServiceCreationSpecificParams",type:{name:"Composite",className:"AttestationServiceCreationSpecificParams",modelProperties:{policySigningCertificates:{serializedName:"policySigningCertificates",type:{name:"Composite",className:"JSONWebKeySet"}}}}},h={serializedName:"AttestationServiceCreationParams",type:{name:"Composite",className:"AttestationServiceCreationParams",modelProperties:{location:{required:!0,serializedName:"location",type:{name:"String"}},tags:{serializedName:"tags",type:{name:"Dictionary",value:{type:{name:"String"}}}},properties:{required:!0,serializedName:"properties",type:{name:"Composite",className:"AttestationServiceCreationSpecificParams"}}}}},v={serializedName:"ProxyResource",type:{name:"Composite",className:"ProxyResource",modelProperties:i({},c.type.modelProperties)}},b={serializedName:"AzureEntityResource",type:{name:"Composite",className:"AzureEntityResource",modelProperties:i(i({},c.type.modelProperties),{etag:{readOnly:!0,serializedName:"etag",type:{name:"String"}}})}},M=Object.freeze({__proto__:null,CloudError:n,BaseResource:p,SystemData:m,OperationsDisplayDefinition:d,OperationsDefinition:l,OperationList:u,Resource:c,TrackedResource:y,AttestationProvider:N,AttestationProviderListResult:P,AttestationServicePatchParams:z,JSONWebKey:g,JSONWebKeySet:S,AttestationServiceCreationSpecificParams:f,AttestationServiceCreationParams:h,ProxyResource:v,AzureEntityResource:b}),O=Object.freeze({__proto__:null,CloudError:n,OperationList:u,OperationsDefinition:l,OperationsDisplayDefinition:d,SystemData:m}),A={parameterPath:"acceptLanguage",mapper:{serializedName:"accept-language",defaultValue:"en-US",type:{name:"String"}}},q={parameterPath:"apiVersion",mapper:{required:!0,serializedName:"api-version",type:{name:"String"}}},C={parameterPath:"providerName",mapper:{required:!0,serializedName:"providerName",type:{name:"String"}}},l={parameterPath:"resourceGroupName",mapper:{required:!0,serializedName:"resourceGroupName",constraints:{MaxLength:90,MinLength:1,Pattern:/^[-\w\._\(\)]+$/},type:{name:"String"}}},d={parameterPath:"subscriptionId",mapper:{required:!0,serializedName:"subscriptionId",constraints:{MinLength:1},type:{name:"String"}}},R=(D.prototype.list=function(e,t){return this.client.sendOperationRequest({options:e},_,t)},D);function D(e){this.client=e}var _={httpMethod:"GET",path:"providers/Microsoft.Attestation/operations",queryParameters:[q],headerParameters:[A],responses:{200:{bodyMapper:u},default:{bodyMapper:n}},serializer:new t.Serializer(O)},y=Object.freeze({__proto__:null,AttestationProvider:N,AttestationProviderListResult:P,AttestationServiceCreationParams:h,AttestationServiceCreationSpecificParams:f,AttestationServicePatchParams:z,AzureEntityResource:b,BaseResource:p,CloudError:n,JSONWebKey:g,JSONWebKeySet:S,ProxyResource:v,Resource:c,SystemData:m,TrackedResource:y}),T=(G.prototype.get=function(e,t,r,a){return this.client.sendOperationRequest({resourceGroupName:e,providerName:t,options:r},E,a)},G.prototype.create=function(e,t,r,a,i){return this.client.sendOperationRequest({resourceGroupName:e,providerName:t,creationParams:r,options:a},j,i)},G.prototype.update=function(e,t,r,a,i){return this.client.sendOperationRequest({resourceGroupName:e,providerName:t,updateParams:r,options:a},B,i)},G.prototype.deleteMethod=function(e,t,r,a){return this.client.sendOperationRequest({resourceGroupName:e,providerName:t,options:r},x,a)},G.prototype.list=function(e,t){return this.client.sendOperationRequest({options:e},k,t)},G.prototype.listByResourceGroup=function(e,t,r){return this.client.sendOperationRequest({resourceGroupName:e,options:t},w,r)},G.prototype.listDefault=function(e,t){return this.client.sendOperationRequest({options:e},I,t)},G.prototype.getDefaultByLocation=function(e,t,r){return this.client.sendOperationRequest({location:e,options:t},J,r)},G);function G(e){this.client=e}var L,y=new t.Serializer(y),E={httpMethod:"GET",path:"subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Attestation/attestationProviders/{providerName}",urlParameters:[d,l,C],queryParameters:[q],headerParameters:[A],responses:{200:{bodyMapper:N},default:{bodyMapper:n}},serializer:y},j={httpMethod:"PUT",path:"subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Attestation/attestationProviders/{providerName}",urlParameters:[d,l,C],queryParameters:[q],headerParameters:[A],requestBody:{parameterPath:"creationParams",mapper:i(i({},h),{required:!0})},responses:{200:{bodyMapper:N},201:{bodyMapper:N},default:{bodyMapper:n}},serializer:y},B={httpMethod:"PATCH",path:"subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Attestation/attestationProviders/{providerName}",urlParameters:[d,l,C],queryParameters:[q],headerParameters:[A],requestBody:{parameterPath:"updateParams",mapper:i(i({},z),{required:!0})},responses:{200:{bodyMapper:N},default:{bodyMapper:n}},serializer:y},x={httpMethod:"DELETE",path:"subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Attestation/attestationProviders/{providerName}",urlParameters:[d,l,C],queryParameters:[q],headerParameters:[A],responses:{200:{},202:{},204:{},default:{bodyMapper:n}},serializer:y},k={httpMethod:"GET",path:"subscriptions/{subscriptionId}/providers/Microsoft.Attestation/attestationProviders",urlParameters:[d],queryParameters:[q],headerParameters:[A],responses:{200:{bodyMapper:P},default:{bodyMapper:n}},serializer:y},w={httpMethod:"GET",path:"subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Attestation/attestationProviders",urlParameters:[l,d],queryParameters:[q],headerParameters:[A],responses:{200:{bodyMapper:P},default:{bodyMapper:n}},serializer:y},I={httpMethod:"GET",path:"subscriptions/{subscriptionId}/providers/Microsoft.Attestation/defaultProviders",urlParameters:[d],queryParameters:[q],headerParameters:[A],responses:{200:{bodyMapper:P},default:{bodyMapper:n}},serializer:y},J={httpMethod:"GET",path:"subscriptions/{subscriptionId}/providers/Microsoft.Attestation/locations/{location}/defaultProvider",urlParameters:[{parameterPath:"location",mapper:{required:!0,serializedName:"location",constraints:{MinLength:1},type:{name:"String"}}},d],queryParameters:[q],headerParameters:[A],responses:{200:{bodyMapper:N},default:{bodyMapper:n}},serializer:y},n=(r(K,L=s.AzureServiceClient),K);function K(e,t,r){var a,i=this;if(null==e)throw new Error("'credentials' cannot be null.");if(null==t)throw new Error("'subscriptionId' cannot be null.");return(r=r||{}).userAgent||(a=s.getDefaultUserAgentValue(),r.userAgent="@azure/arm-attestation/1.0.0 "+a),(i=L.call(this,e,r)||this).apiVersion="2020-10-01",i.acceptLanguage="en-US",i.longRunningOperationRetryTimeout=30,i.baseUri=r.baseUri||i.baseUri||"https://management.azure.com",i.requestContentType="application/json; charset=utf-8",i.credentials=e,i.subscriptionId=t,null!==r.acceptLanguage&&void 0!==r.acceptLanguage&&(i.acceptLanguage=r.acceptLanguage),null!==r.longRunningOperationRetryTimeout&&void 0!==r.longRunningOperationRetryTimeout&&(i.longRunningOperationRetryTimeout=r.longRunningOperationRetryTimeout),i}var W,y=(r(U,W=n),U);function U(e,t,r){r=W.call(this,e,t,r)||this;return r.operations=new R(r),r.attestationProviders=new T(r),r}e.AttestationManagementClient=y,e.AttestationManagementClientContext=n,e.AttestationManagementMappers=M,e.AttestationManagementModels=o,e.AttestationProviders=T,e.Operations=R,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/attestationProviders.ts","../src/attestationManagementClientContext.ts","../src/attestationManagementClient.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","SystemData","serializedName","type","name","className","modelProperties","createdBy","createdByType","createdAt","lastModifiedBy","lastModifiedByType","lastModifiedAt","OperationsDisplayDefinition","provider","resource","operation","description","OperationsDefinition","display","OperationList","systemData","readOnly","value","element","Resource","id","TrackedResource","tags","location","required","AttestationProvider","trustModel","status","attestUri","AttestationProviderListResult","AttestationServicePatchParams","JSONWebKey","alg","crv","dp","dq","e","k","kid","kty","q","qi","use","x","x5c","y","JSONWebKeySet","keys","AttestationServiceCreationSpecificParams","policySigningCertificates","AttestationServiceCreationParams","properties","ProxyResource","AzureEntityResource","etag","acceptLanguage","parameterPath","mapper","defaultValue","apiVersion","providerName","resourceGroupName","constraints","MaxLength","MinLength","Pattern","subscriptionId","Operations","list","options","callback","client","sendOperationRequest","listOperationSpec","httpMethod","path","queryParameters","Parameters.apiVersion","headerParameters","Parameters.acceptLanguage","responses","200","bodyMapper","Mappers.OperationList","default","Mappers.CloudError","serializer","msRest.Serializer","Mappers","AttestationProviders","get","getOperationSpec","creationParams","createOperationSpec","update","updateParams","updateOperationSpec","deleteMethod","deleteMethodOperationSpec","listByResourceGroup","listByResourceGroupOperationSpec","listDefault","listDefaultOperationSpec","getDefaultByLocation","getDefaultByLocationOperationSpec","_super","urlParameters","Parameters.subscriptionId","Parameters.resourceGroupName","Parameters.providerName","Mappers.AttestationProvider","serializer$1","requestBody","Mappers.AttestationServiceCreationParams","201","Mappers.AttestationServicePatchParams","202","204","Mappers.AttestationProviderListResult","AttestationManagementClientContext","msRestAzure.AzureServiceClient","credentials","defaultUserAgent","_this","undefined","Error","userAgent","msRestAzure.getDefaultUserAgentValue","packageName","longRunningOperationRetryTimeout","baseUri","requestContentType","AttestationManagementClient","operations","operations.Operations","attestationProviders","operations.AttestationProviders"],"mappings":"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"}
|
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
import * as msRest from "@azure/ms-rest-js";
|
|
2
|
-
import * as Models from "./models";
|
|
3
|
-
import * as Mappers from "./models/mappers";
|
|
4
|
-
import * as operations from "./operations";
|
|
5
|
-
import { AttestationManagementClientContext } from "./attestationManagementClientContext";
|
|
6
|
-
declare class AttestationManagementClient extends AttestationManagementClientContext {
|
|
7
|
-
operations: operations.Operations;
|
|
8
|
-
attestationProviders: operations.AttestationProviders;
|
|
9
|
-
/**
|
|
10
|
-
* Initializes a new instance of the AttestationManagementClient class.
|
|
11
|
-
* @param credentials Credentials needed for the client to connect to Azure.
|
|
12
|
-
* @param subscriptionId The ID of the target subscription.
|
|
13
|
-
* @param [options] The parameter options
|
|
14
|
-
*/
|
|
15
|
-
constructor(credentials: msRest.ServiceClientCredentials, subscriptionId: string, options?: Models.AttestationManagementClientOptions);
|
|
16
|
-
}
|
|
17
|
-
export { AttestationManagementClient, AttestationManagementClientContext, Models as AttestationManagementModels, Mappers as AttestationManagementMappers };
|
|
18
|
-
export * from "./operations";
|
|
19
|
-
//# sourceMappingURL=attestationManagementClient.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"attestationManagementClient.d.ts","sourceRoot":"","sources":["../src/attestationManagementClient.ts"],"names":[],"mappings":"AAUA,OAAO,KAAK,MAAM,MAAM,mBAAmB,CAAC;AAC5C,OAAO,KAAK,MAAM,MAAM,UAAU,CAAC;AACnC,OAAO,KAAK,OAAO,MAAM,kBAAkB,CAAC;AAC5C,OAAO,KAAK,UAAU,MAAM,cAAc,CAAC;AAC3C,OAAO,EAAE,kCAAkC,EAAE,MAAM,sCAAsC,CAAC;AAG1F,cAAM,2BAA4B,SAAQ,kCAAkC;IAE1E,UAAU,EAAE,UAAU,CAAC,UAAU,CAAC;IAClC,oBAAoB,EAAE,UAAU,CAAC,oBAAoB,CAAC;IAEtD;;;;;OAKG;gBACS,WAAW,EAAE,MAAM,CAAC,wBAAwB,EAAE,cAAc,EAAE,MAAM,EAAE,OAAO,CAAC,EAAE,MAAM,CAAC,kCAAkC;CAKtI;AAID,OAAO,EACL,2BAA2B,EAC3B,kCAAkC,EAClC,MAAM,IAAI,2BAA2B,EACrC,OAAO,IAAI,4BAA4B,EACxC,CAAC;AACF,cAAc,cAAc,CAAC"}
|
|
@@ -1,34 +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 { AttestationManagementClientContext } from "./attestationManagementClientContext";
|
|
15
|
-
var AttestationManagementClient = /** @class */ (function (_super) {
|
|
16
|
-
__extends(AttestationManagementClient, _super);
|
|
17
|
-
/**
|
|
18
|
-
* Initializes a new instance of the AttestationManagementClient class.
|
|
19
|
-
* @param credentials Credentials needed for the client to connect to Azure.
|
|
20
|
-
* @param subscriptionId The ID of the target subscription.
|
|
21
|
-
* @param [options] The parameter options
|
|
22
|
-
*/
|
|
23
|
-
function AttestationManagementClient(credentials, subscriptionId, options) {
|
|
24
|
-
var _this = _super.call(this, credentials, subscriptionId, options) || this;
|
|
25
|
-
_this.operations = new operations.Operations(_this);
|
|
26
|
-
_this.attestationProviders = new operations.AttestationProviders(_this);
|
|
27
|
-
return _this;
|
|
28
|
-
}
|
|
29
|
-
return AttestationManagementClient;
|
|
30
|
-
}(AttestationManagementClientContext));
|
|
31
|
-
// Operation Specifications
|
|
32
|
-
export { AttestationManagementClient, AttestationManagementClientContext, Models as AttestationManagementModels, Mappers as AttestationManagementMappers };
|
|
33
|
-
export * from "./operations";
|
|
34
|
-
//# sourceMappingURL=attestationManagementClient.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"attestationManagementClient.js","sourceRoot":"","sources":["../src/attestationManagementClient.ts"],"names":[],"mappings":"AAAA;;;;;;;;GAQG;;AAGH,OAAO,KAAK,MAAM,MAAM,UAAU,CAAC;AACnC,OAAO,KAAK,OAAO,MAAM,kBAAkB,CAAC;AAC5C,OAAO,KAAK,UAAU,MAAM,cAAc,CAAC;AAC3C,OAAO,EAAE,kCAAkC,EAAE,MAAM,sCAAsC,CAAC;AAG1F;IAA0C,+CAAkC;IAK1E;;;;;OAKG;IACH,qCAAY,WAA4C,EAAE,cAAsB,EAAE,OAAmD;QAArI,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,oBAAoB,GAAG,IAAI,UAAU,CAAC,oBAAoB,CAAC,KAAI,CAAC,CAAC;;IACxE,CAAC;IACH,kCAAC;AAAD,CAAC,AAhBD,CAA0C,kCAAkC,GAgB3E;AAED,2BAA2B;AAE3B,OAAO,EACL,2BAA2B,EAC3B,kCAAkC,EAClC,MAAM,IAAI,2BAA2B,EACrC,OAAO,IAAI,4BAA4B,EACxC,CAAC;AACF,cAAc,cAAc,CAAC"}
|
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
import * as Models from "./models";
|
|
2
|
-
import * as msRest from "@azure/ms-rest-js";
|
|
3
|
-
import * as msRestAzure from "@azure/ms-rest-azure-js";
|
|
4
|
-
export declare class AttestationManagementClientContext extends msRestAzure.AzureServiceClient {
|
|
5
|
-
credentials: msRest.ServiceClientCredentials;
|
|
6
|
-
apiVersion?: string;
|
|
7
|
-
subscriptionId: string;
|
|
8
|
-
/**
|
|
9
|
-
* Initializes a new instance of the AttestationManagementClient class.
|
|
10
|
-
* @param credentials Credentials needed for the client to connect to Azure.
|
|
11
|
-
* @param subscriptionId The ID of the target subscription.
|
|
12
|
-
* @param [options] The parameter options
|
|
13
|
-
*/
|
|
14
|
-
constructor(credentials: msRest.ServiceClientCredentials, subscriptionId: string, options?: Models.AttestationManagementClientOptions);
|
|
15
|
-
}
|
|
16
|
-
//# sourceMappingURL=attestationManagementClientContext.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"attestationManagementClientContext.d.ts","sourceRoot":"","sources":["../src/attestationManagementClientContext.ts"],"names":[],"mappings":"AAUA,OAAO,KAAK,MAAM,MAAM,UAAU,CAAC;AACnC,OAAO,KAAK,MAAM,MAAM,mBAAmB,CAAC;AAC5C,OAAO,KAAK,WAAW,MAAM,yBAAyB,CAAC;AAKvD,qBAAa,kCAAmC,SAAQ,WAAW,CAAC,kBAAkB;IACpF,WAAW,EAAE,MAAM,CAAC,wBAAwB,CAAC;IAC7C,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,cAAc,EAAE,MAAM,CAAC;IAEvB;;;;;OAKG;gBACS,WAAW,EAAE,MAAM,CAAC,wBAAwB,EAAE,cAAc,EAAE,MAAM,EAAE,OAAO,CAAC,EAAE,MAAM,CAAC,kCAAkC;CAiCtI"}
|
|
@@ -1,56 +0,0 @@
|
|
|
1
|
-
/*
|
|
2
|
-
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
3
|
-
* Licensed under the MIT License. See License.txt in the project root for
|
|
4
|
-
* license information.
|
|
5
|
-
*
|
|
6
|
-
* Code generated by Microsoft (R) AutoRest Code Generator.
|
|
7
|
-
* Changes may cause incorrect behavior and will be lost if the code is
|
|
8
|
-
* regenerated.
|
|
9
|
-
*/
|
|
10
|
-
import { __extends } from "tslib";
|
|
11
|
-
import * as msRestAzure from "@azure/ms-rest-azure-js";
|
|
12
|
-
var packageName = "@azure/arm-attestation";
|
|
13
|
-
var packageVersion = "1.0.0";
|
|
14
|
-
var AttestationManagementClientContext = /** @class */ (function (_super) {
|
|
15
|
-
__extends(AttestationManagementClientContext, _super);
|
|
16
|
-
/**
|
|
17
|
-
* Initializes a new instance of the AttestationManagementClient class.
|
|
18
|
-
* @param credentials Credentials needed for the client to connect to Azure.
|
|
19
|
-
* @param subscriptionId The ID of the target subscription.
|
|
20
|
-
* @param [options] The parameter options
|
|
21
|
-
*/
|
|
22
|
-
function AttestationManagementClientContext(credentials, subscriptionId, options) {
|
|
23
|
-
var _this = this;
|
|
24
|
-
if (credentials == undefined) {
|
|
25
|
-
throw new Error('\'credentials\' cannot be null.');
|
|
26
|
-
}
|
|
27
|
-
if (subscriptionId == undefined) {
|
|
28
|
-
throw new Error('\'subscriptionId\' cannot be null.');
|
|
29
|
-
}
|
|
30
|
-
if (!options) {
|
|
31
|
-
options = {};
|
|
32
|
-
}
|
|
33
|
-
if (!options.userAgent) {
|
|
34
|
-
var defaultUserAgent = msRestAzure.getDefaultUserAgentValue();
|
|
35
|
-
options.userAgent = packageName + "/" + packageVersion + " " + defaultUserAgent;
|
|
36
|
-
}
|
|
37
|
-
_this = _super.call(this, credentials, options) || this;
|
|
38
|
-
_this.apiVersion = '2020-10-01';
|
|
39
|
-
_this.acceptLanguage = 'en-US';
|
|
40
|
-
_this.longRunningOperationRetryTimeout = 30;
|
|
41
|
-
_this.baseUri = options.baseUri || _this.baseUri || "https://management.azure.com";
|
|
42
|
-
_this.requestContentType = "application/json; charset=utf-8";
|
|
43
|
-
_this.credentials = credentials;
|
|
44
|
-
_this.subscriptionId = subscriptionId;
|
|
45
|
-
if (options.acceptLanguage !== null && options.acceptLanguage !== undefined) {
|
|
46
|
-
_this.acceptLanguage = options.acceptLanguage;
|
|
47
|
-
}
|
|
48
|
-
if (options.longRunningOperationRetryTimeout !== null && options.longRunningOperationRetryTimeout !== undefined) {
|
|
49
|
-
_this.longRunningOperationRetryTimeout = options.longRunningOperationRetryTimeout;
|
|
50
|
-
}
|
|
51
|
-
return _this;
|
|
52
|
-
}
|
|
53
|
-
return AttestationManagementClientContext;
|
|
54
|
-
}(msRestAzure.AzureServiceClient));
|
|
55
|
-
export { AttestationManagementClientContext };
|
|
56
|
-
//# sourceMappingURL=attestationManagementClientContext.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"attestationManagementClientContext.js","sourceRoot":"","sources":["../src/attestationManagementClientContext.ts"],"names":[],"mappings":"AAAA;;;;;;;;GAQG;;AAIH,OAAO,KAAK,WAAW,MAAM,yBAAyB,CAAC;AAEvD,IAAM,WAAW,GAAG,wBAAwB,CAAC;AAC7C,IAAM,cAAc,GAAG,OAAO,CAAC;AAE/B;IAAwD,sDAA8B;IAKpF;;;;;OAKG;IACH,4CAAY,WAA4C,EAAE,cAAsB,EAAE,OAAmD;QAArI,iBAgCC;QA/BC,IAAI,WAAW,IAAI,SAAS,EAAE;YAC5B,MAAM,IAAI,KAAK,CAAC,iCAAiC,CAAC,CAAC;SACpD;QACD,IAAI,cAAc,IAAI,SAAS,EAAE;YAC/B,MAAM,IAAI,KAAK,CAAC,oCAAoC,CAAC,CAAC;SACvD;QAED,IAAI,CAAC,OAAO,EAAE;YACZ,OAAO,GAAG,EAAE,CAAC;SACd;QACD,IAAG,CAAC,OAAO,CAAC,SAAS,EAAE;YACrB,IAAM,gBAAgB,GAAG,WAAW,CAAC,wBAAwB,EAAE,CAAC;YAChE,OAAO,CAAC,SAAS,GAAM,WAAW,SAAI,cAAc,SAAI,gBAAkB,CAAC;SAC5E;QAED,QAAA,kBAAM,WAAW,EAAE,OAAO,CAAC,SAAC;QAE5B,KAAI,CAAC,UAAU,GAAG,YAAY,CAAC;QAC/B,KAAI,CAAC,cAAc,GAAG,OAAO,CAAC;QAC9B,KAAI,CAAC,gCAAgC,GAAG,EAAE,CAAC;QAC3C,KAAI,CAAC,OAAO,GAAG,OAAO,CAAC,OAAO,IAAI,KAAI,CAAC,OAAO,IAAI,8BAA8B,CAAC;QACjF,KAAI,CAAC,kBAAkB,GAAG,iCAAiC,CAAC;QAC5D,KAAI,CAAC,WAAW,GAAG,WAAW,CAAC;QAC/B,KAAI,CAAC,cAAc,GAAG,cAAc,CAAC;QAErC,IAAG,OAAO,CAAC,cAAc,KAAK,IAAI,IAAI,OAAO,CAAC,cAAc,KAAK,SAAS,EAAE;YAC1E,KAAI,CAAC,cAAc,GAAG,OAAO,CAAC,cAAc,CAAC;SAC9C;QACD,IAAG,OAAO,CAAC,gCAAgC,KAAK,IAAI,IAAI,OAAO,CAAC,gCAAgC,KAAK,SAAS,EAAE;YAC9G,KAAI,CAAC,gCAAgC,GAAG,OAAO,CAAC,gCAAgC,CAAC;SAClF;;IACH,CAAC;IACH,yCAAC;AAAD,CAAC,AA5CD,CAAwD,WAAW,CAAC,kBAAkB,GA4CrF"}
|
|
@@ -1,2 +0,0 @@
|
|
|
1
|
-
export { AttestationProvider, AttestationProviderListResult, AttestationServiceCreationParams, AttestationServiceCreationSpecificParams, AttestationServicePatchParams, AzureEntityResource, BaseResource, CloudError, JSONWebKey, JSONWebKeySet, ProxyResource, Resource, SystemData, TrackedResource } from "../models/mappers";
|
|
2
|
-
//# sourceMappingURL=attestationProvidersMappers.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"attestationProvidersMappers.d.ts","sourceRoot":"","sources":["../../src/models/attestationProvidersMappers.ts"],"names":[],"mappings":"AAQA,OAAO,EACL,mBAAmB,EACnB,6BAA6B,EAC7B,gCAAgC,EAChC,wCAAwC,EACxC,6BAA6B,EAC7B,mBAAmB,EACnB,YAAY,EACZ,UAAU,EACV,UAAU,EACV,aAAa,EACb,aAAa,EACb,QAAQ,EACR,UAAU,EACV,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 { AttestationProvider, AttestationProviderListResult, AttestationServiceCreationParams, AttestationServiceCreationSpecificParams, AttestationServicePatchParams, AzureEntityResource, BaseResource, CloudError, JSONWebKey, JSONWebKeySet, ProxyResource, Resource, SystemData, TrackedResource } from "../models/mappers";
|
|
9
|
-
//# sourceMappingURL=attestationProvidersMappers.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"attestationProvidersMappers.js","sourceRoot":"","sources":["../../src/models/attestationProvidersMappers.ts"],"names":[],"mappings":"AAAA;;;;;;GAMG;AAEH,OAAO,EACL,mBAAmB,EACnB,6BAA6B,EAC7B,gCAAgC,EAChC,wCAAwC,EACxC,6BAA6B,EAC7B,mBAAmB,EACnB,YAAY,EACZ,UAAU,EACV,UAAU,EACV,aAAa,EACb,aAAa,EACb,QAAQ,EACR,UAAU,EACV,eAAe,EAChB,MAAM,mBAAmB,CAAC"}
|