@azure/arm-datacatalog 2.0.0 → 3.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +11 -0
- package/LICENSE +21 -0
- package/LICENSE.txt +1 -1
- package/README.md +70 -78
- package/dist/index.js +668 -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/dataCatalogRestClient.d.ts +22 -0
- package/dist-esm/src/dataCatalogRestClient.d.ts.map +1 -0
- package/dist-esm/src/dataCatalogRestClient.js +58 -0
- package/dist-esm/src/dataCatalogRestClient.js.map +1 -0
- package/dist-esm/src/index.d.ts +4 -0
- package/dist-esm/src/index.d.ts.map +1 -0
- package/{esm/models/aDCOperationsMappers.js → dist-esm/src/index.js} +4 -2
- package/dist-esm/src/index.js.map +1 -0
- package/dist-esm/src/lroImpl.d.ts +16 -0
- package/dist-esm/src/lroImpl.d.ts.map +1 -0
- package/dist-esm/src/lroImpl.js +29 -0
- package/dist-esm/src/lroImpl.js.map +1 -0
- package/dist-esm/src/models/index.d.ts +133 -0
- package/dist-esm/src/models/index.d.ts.map +1 -0
- package/dist-esm/src/models/index.js +14 -0
- package/dist-esm/src/models/index.js.map +1 -0
- package/dist-esm/src/models/mappers.d.ts +9 -0
- package/dist-esm/src/models/mappers.d.ts.map +1 -0
- package/{esm → dist-esm/src}/models/mappers.js +101 -116
- package/dist-esm/src/models/mappers.js.map +1 -0
- package/dist-esm/src/models/parameters.d.ts +10 -0
- package/dist-esm/src/models/parameters.d.ts.map +1 -0
- package/dist-esm/src/models/parameters.js +92 -0
- package/dist-esm/src/models/parameters.js.map +1 -0
- package/dist-esm/src/operations/aDCCatalogs.d.ts +62 -0
- package/dist-esm/src/operations/aDCCatalogs.d.ts.map +1 -0
- package/dist-esm/src/operations/aDCCatalogs.js +208 -0
- package/dist-esm/src/operations/aDCCatalogs.js.map +1 -0
- package/dist-esm/src/operations/aDCOperations.d.ts +18 -0
- package/dist-esm/src/operations/aDCOperations.d.ts.map +1 -0
- package/dist-esm/src/operations/aDCOperations.js +43 -0
- package/dist-esm/src/operations/aDCOperations.js.map +1 -0
- package/{esm → dist-esm/src}/operations/index.d.ts +0 -0
- package/dist-esm/src/operations/index.d.ts.map +1 -0
- package/{esm → dist-esm/src}/operations/index.js +1 -2
- package/dist-esm/src/operations/index.js.map +1 -0
- package/dist-esm/src/operationsInterfaces/aDCCatalogs.d.ts +54 -0
- package/dist-esm/src/operationsInterfaces/aDCCatalogs.d.ts.map +1 -0
- package/{esm/models/index.js → dist-esm/src/operationsInterfaces/aDCCatalogs.js} +2 -1
- package/dist-esm/src/operationsInterfaces/aDCCatalogs.js.map +1 -0
- package/dist-esm/src/operationsInterfaces/aDCOperations.d.ts +10 -0
- package/dist-esm/src/operationsInterfaces/aDCOperations.d.ts.map +1 -0
- package/dist-esm/src/operationsInterfaces/aDCOperations.js +9 -0
- package/dist-esm/src/operationsInterfaces/aDCOperations.js.map +1 -0
- package/dist-esm/src/operationsInterfaces/index.d.ts +3 -0
- package/dist-esm/src/operationsInterfaces/index.d.ts.map +1 -0
- package/dist-esm/src/operationsInterfaces/index.js +10 -0
- package/dist-esm/src/operationsInterfaces/index.js.map +1 -0
- package/dist-esm/test/sampleTest.d.ts +2 -0
- package/dist-esm/test/sampleTest.d.ts.map +1 -0
- package/dist-esm/test/sampleTest.js +40 -0
- package/dist-esm/test/sampleTest.js.map +1 -0
- package/package.json +69 -32
- package/review/arm-datacatalog.api.md +157 -0
- package/rollup.config.js +181 -30
- package/src/dataCatalogRestClient.ts +70 -37
- package/src/{models/aDCCatalogsMappers.ts → index.ts} +3 -8
- package/src/lroImpl.ts +34 -0
- package/src/models/index.ts +108 -207
- package/src/models/mappers.ts +104 -119
- package/src/models/parameters.ts +59 -20
- package/src/operations/aDCCatalogs.ts +193 -251
- package/src/operations/aDCOperations.ts +27 -44
- package/src/operations/index.ts +1 -2
- package/src/operationsInterfaces/aDCCatalogs.ts +93 -0
- package/src/operationsInterfaces/aDCOperations.ts +23 -0
- package/src/{models/aDCOperationsMappers.ts → operationsInterfaces/index.ts} +2 -6
- package/tsconfig.json +3 -3
- package/types/arm-datacatalog.d.ts +237 -0
- package/types/tsdoc-metadata.json +11 -0
- package/dist/arm-datacatalog.js +0 -765
- package/dist/arm-datacatalog.js.map +0 -1
- package/dist/arm-datacatalog.min.js +0 -1
- package/dist/arm-datacatalog.min.js.map +0 -1
- package/esm/dataCatalogRestClient.d.ts +0 -28
- package/esm/dataCatalogRestClient.d.ts.map +0 -1
- package/esm/dataCatalogRestClient.js +0 -41
- package/esm/dataCatalogRestClient.js.map +0 -1
- package/esm/dataCatalogRestClientContext.d.ts +0 -26
- package/esm/dataCatalogRestClientContext.d.ts.map +0 -1
- package/esm/dataCatalogRestClientContext.js +0 -67
- package/esm/dataCatalogRestClientContext.js.map +0 -1
- package/esm/models/aDCCatalogsMappers.d.ts +0 -2
- package/esm/models/aDCCatalogsMappers.d.ts.map +0 -1
- package/esm/models/aDCCatalogsMappers.js +0 -9
- package/esm/models/aDCCatalogsMappers.js.map +0 -1
- package/esm/models/aDCOperationsMappers.d.ts +0 -2
- package/esm/models/aDCOperationsMappers.d.ts.map +0 -1
- package/esm/models/aDCOperationsMappers.js.map +0 -1
- package/esm/models/index.d.ts +0 -235
- package/esm/models/index.d.ts.map +0 -1
- package/esm/models/index.js.map +0 -1
- package/esm/models/mappers.d.ts +0 -11
- package/esm/models/mappers.d.ts.map +0 -1
- package/esm/models/mappers.js.map +0 -1
- package/esm/models/parameters.d.ts +0 -7
- package/esm/models/parameters.d.ts.map +0 -1
- package/esm/models/parameters.js +0 -64
- package/esm/models/parameters.js.map +0 -1
- package/esm/operations/aDCCatalogs.d.ts +0 -131
- package/esm/operations/aDCCatalogs.d.ts.map +0 -1
- package/esm/operations/aDCCatalogs.js +0 -209
- package/esm/operations/aDCCatalogs.js.map +0 -1
- package/esm/operations/aDCOperations.d.ts +0 -28
- package/esm/operations/aDCOperations.d.ts.map +0 -1
- package/esm/operations/aDCOperations.js +0 -50
- package/esm/operations/aDCOperations.js.map +0 -1
- package/esm/operations/index.d.ts.map +0 -1
- package/esm/operations/index.js.map +0 -1
- package/src/dataCatalogRestClientContext.ts +0 -75
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"arm-datacatalog.js","sources":["../node_modules/tslib/tslib.es6.js","../src/models/index.ts","../src/models/mappers.ts","../src/models/aDCOperationsMappers.ts","../src/models/parameters.ts","../src/operations/aDCOperations.ts","../src/models/aDCCatalogsMappers.ts","../src/operations/aDCCatalogs.ts","../src/dataCatalogRestClientContext.ts","../src/dataCatalogRestClient.ts"],"sourcesContent":["/*! *****************************************************************************\r\nCopyright (c) Microsoft Corporation.\r\n\r\nPermission to use, copy, modify, and/or distribute this software for any\r\npurpose with or without fee is hereby granted.\r\n\r\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH\r\nREGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY\r\nAND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,\r\nINDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM\r\nLOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR\r\nOTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR\r\nPERFORMANCE OF THIS SOFTWARE.\r\n***************************************************************************** */\r\n/* global Reflect, Promise */\r\n\r\nvar extendStatics = function(d, b) {\r\n extendStatics = Object.setPrototypeOf ||\r\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\r\n function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };\r\n return extendStatics(d, b);\r\n};\r\n\r\nexport function __extends(d, b) {\r\n extendStatics(d, b);\r\n function __() { this.constructor = d; }\r\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\r\n}\r\n\r\nexport var __assign = function() {\r\n __assign = Object.assign || function __assign(t) {\r\n for (var s, i = 1, n = arguments.length; i < n; i++) {\r\n s = arguments[i];\r\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p];\r\n }\r\n return t;\r\n }\r\n return __assign.apply(this, arguments);\r\n}\r\n\r\nexport function __rest(s, e) {\r\n var t = {};\r\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)\r\n t[p] = s[p];\r\n if (s != null && typeof Object.getOwnPropertySymbols === \"function\")\r\n for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {\r\n if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))\r\n t[p[i]] = s[p[i]];\r\n }\r\n return t;\r\n}\r\n\r\nexport function __decorate(decorators, target, key, desc) {\r\n var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;\r\n if (typeof Reflect === \"object\" && typeof Reflect.decorate === \"function\") r = Reflect.decorate(decorators, target, key, desc);\r\n else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;\r\n return c > 3 && r && Object.defineProperty(target, key, r), r;\r\n}\r\n\r\nexport function __param(paramIndex, decorator) {\r\n return function (target, key) { decorator(target, key, paramIndex); }\r\n}\r\n\r\nexport function __metadata(metadataKey, metadataValue) {\r\n if (typeof Reflect === \"object\" && typeof Reflect.metadata === \"function\") return Reflect.metadata(metadataKey, metadataValue);\r\n}\r\n\r\nexport function __awaiter(thisArg, _arguments, P, generator) {\r\n function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }\r\n return new (P || (P = Promise))(function (resolve, reject) {\r\n function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }\r\n function rejected(value) { try { step(generator[\"throw\"](value)); } catch (e) { reject(e); } }\r\n function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }\r\n step((generator = generator.apply(thisArg, _arguments || [])).next());\r\n });\r\n}\r\n\r\nexport function __generator(thisArg, body) {\r\n var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;\r\n return g = { next: verb(0), \"throw\": verb(1), \"return\": verb(2) }, typeof Symbol === \"function\" && (g[Symbol.iterator] = function() { return this; }), g;\r\n function verb(n) { return function (v) { return step([n, v]); }; }\r\n function step(op) {\r\n if (f) throw new TypeError(\"Generator is already executing.\");\r\n while (_) try {\r\n if (f = 1, y && (t = op[0] & 2 ? y[\"return\"] : op[0] ? y[\"throw\"] || ((t = y[\"return\"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;\r\n if (y = 0, t) op = [op[0] & 2, t.value];\r\n switch (op[0]) {\r\n case 0: case 1: t = op; break;\r\n case 4: _.label++; return { value: op[1], done: false };\r\n case 5: _.label++; y = op[1]; op = [0]; continue;\r\n case 7: op = _.ops.pop(); _.trys.pop(); continue;\r\n default:\r\n if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }\r\n if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }\r\n if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }\r\n if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }\r\n if (t[2]) _.ops.pop();\r\n _.trys.pop(); continue;\r\n }\r\n op = body.call(thisArg, _);\r\n } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }\r\n if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };\r\n }\r\n}\r\n\r\nexport function __createBinding(o, m, k, k2) {\r\n if (k2 === undefined) k2 = k;\r\n o[k2] = m[k];\r\n}\r\n\r\nexport function __exportStar(m, exports) {\r\n for (var p in m) if (p !== \"default\" && !exports.hasOwnProperty(p)) exports[p] = m[p];\r\n}\r\n\r\nexport function __values(o) {\r\n var s = typeof Symbol === \"function\" && Symbol.iterator, m = s && o[s], i = 0;\r\n if (m) return m.call(o);\r\n if (o && typeof o.length === \"number\") return {\r\n next: function () {\r\n if (o && i >= o.length) o = void 0;\r\n return { value: o && o[i++], done: !o };\r\n }\r\n };\r\n throw new TypeError(s ? \"Object is not iterable.\" : \"Symbol.iterator is not defined.\");\r\n}\r\n\r\nexport function __read(o, n) {\r\n var m = typeof Symbol === \"function\" && o[Symbol.iterator];\r\n if (!m) return o;\r\n var i = m.call(o), r, ar = [], e;\r\n try {\r\n while ((n === void 0 || n-- > 0) && !(r = i.next()).done) ar.push(r.value);\r\n }\r\n catch (error) { e = { error: error }; }\r\n finally {\r\n try {\r\n if (r && !r.done && (m = i[\"return\"])) m.call(i);\r\n }\r\n finally { if (e) throw e.error; }\r\n }\r\n return ar;\r\n}\r\n\r\nexport function __spread() {\r\n for (var ar = [], i = 0; i < arguments.length; i++)\r\n ar = ar.concat(__read(arguments[i]));\r\n return ar;\r\n}\r\n\r\nexport function __spreadArrays() {\r\n for (var s = 0, i = 0, il = arguments.length; i < il; i++) s += arguments[i].length;\r\n for (var r = Array(s), k = 0, i = 0; i < il; i++)\r\n for (var a = arguments[i], j = 0, jl = a.length; j < jl; j++, k++)\r\n r[k] = a[j];\r\n return r;\r\n};\r\n\r\nexport function __await(v) {\r\n return this instanceof __await ? (this.v = v, this) : new __await(v);\r\n}\r\n\r\nexport function __asyncGenerator(thisArg, _arguments, generator) {\r\n if (!Symbol.asyncIterator) throw new TypeError(\"Symbol.asyncIterator is not defined.\");\r\n var g = generator.apply(thisArg, _arguments || []), i, q = [];\r\n return i = {}, verb(\"next\"), verb(\"throw\"), verb(\"return\"), i[Symbol.asyncIterator] = function () { return this; }, i;\r\n function verb(n) { if (g[n]) i[n] = function (v) { return new Promise(function (a, b) { q.push([n, v, a, b]) > 1 || resume(n, v); }); }; }\r\n function resume(n, v) { try { step(g[n](v)); } catch (e) { settle(q[0][3], e); } }\r\n function step(r) { r.value instanceof __await ? Promise.resolve(r.value.v).then(fulfill, reject) : settle(q[0][2], r); }\r\n function fulfill(value) { resume(\"next\", value); }\r\n function reject(value) { resume(\"throw\", value); }\r\n function settle(f, v) { if (f(v), q.shift(), q.length) resume(q[0][0], q[0][1]); }\r\n}\r\n\r\nexport function __asyncDelegator(o) {\r\n var i, p;\r\n return i = {}, verb(\"next\"), verb(\"throw\", function (e) { throw e; }), verb(\"return\"), i[Symbol.iterator] = function () { return this; }, i;\r\n function verb(n, f) { i[n] = o[n] ? function (v) { return (p = !p) ? { value: __await(o[n](v)), done: n === \"return\" } : f ? f(v) : v; } : f; }\r\n}\r\n\r\nexport function __asyncValues(o) {\r\n if (!Symbol.asyncIterator) throw new TypeError(\"Symbol.asyncIterator is not defined.\");\r\n var m = o[Symbol.asyncIterator], i;\r\n return m ? m.call(o) : (o = typeof __values === \"function\" ? __values(o) : o[Symbol.iterator](), i = {}, verb(\"next\"), verb(\"throw\"), verb(\"return\"), i[Symbol.asyncIterator] = function () { return this; }, i);\r\n function verb(n) { i[n] = o[n] && function (v) { return new Promise(function (resolve, reject) { v = o[n](v), settle(resolve, reject, v.done, v.value); }); }; }\r\n function settle(resolve, reject, d, v) { Promise.resolve(v).then(function(v) { resolve({ value: v, done: d }); }, reject); }\r\n}\r\n\r\nexport function __makeTemplateObject(cooked, raw) {\r\n if (Object.defineProperty) { Object.defineProperty(cooked, \"raw\", { value: raw }); } else { cooked.raw = raw; }\r\n return cooked;\r\n};\r\n\r\nexport function __importStar(mod) {\r\n if (mod && mod.__esModule) return mod;\r\n var result = {};\r\n if (mod != null) for (var k in mod) if (Object.hasOwnProperty.call(mod, k)) result[k] = mod[k];\r\n result.default = mod;\r\n return result;\r\n}\r\n\r\nexport function __importDefault(mod) {\r\n return (mod && mod.__esModule) ? mod : { default: mod };\r\n}\r\n\r\nexport function __classPrivateFieldGet(receiver, privateMap) {\r\n if (!privateMap.has(receiver)) {\r\n throw new TypeError(\"attempted to get private field on non-instance\");\r\n }\r\n return privateMap.get(receiver);\r\n}\r\n\r\nexport function __classPrivateFieldSet(receiver, privateMap, value) {\r\n if (!privateMap.has(receiver)) {\r\n throw new TypeError(\"attempted to set private field on non-instance\");\r\n }\r\n privateMap.set(receiver, value);\r\n return value;\r\n}\r\n","/*\n * Copyright (c) Microsoft Corporation.\n * Licensed under the MIT License.\n *\n * Code generated by Microsoft (R) AutoRest Code Generator.\n * Changes may cause incorrect behavior and will be lost if the code is regenerated.\n */\n\nimport { BaseResource, CloudError, AzureServiceClientOptions } from \"@azure/ms-rest-azure-js\";\nimport * as msRest from \"@azure/ms-rest-js\";\n\nexport { BaseResource, CloudError };\n\n/**\n * User principals.\n */\nexport interface Principals {\n /**\n * UPN of the user.\n */\n upn?: string;\n /**\n * Object Id for the user\n */\n objectId?: string;\n}\n\n/**\n * The Resource model definition.\n */\nexport interface Resource extends BaseResource {\n /**\n * Resource Id\n * **NOTE: This property will not be serialized. It can only be populated by the server.**\n */\n readonly id?: string;\n /**\n * Resource name\n * **NOTE: This property will not be serialized. It can only be populated by the server.**\n */\n readonly name?: string;\n /**\n * Resource type\n * **NOTE: This property will not be serialized. It can only be populated by the server.**\n */\n readonly type?: string;\n /**\n * Resource location\n */\n location?: string;\n /**\n * Resource tags\n */\n tags?: { [propertyName: string]: string };\n /**\n * Resource etag\n */\n etag?: string;\n}\n\n/**\n * Azure Data Catalog.\n */\nexport interface ADCCatalog extends Resource {\n /**\n * Azure data catalog SKU. Possible values include: 'Free', 'Standard'\n */\n sku?: SkuType;\n /**\n * Azure data catalog units.\n */\n units?: number;\n /**\n * Azure data catalog admin list.\n */\n admins?: Principals[];\n /**\n * Azure data catalog user list.\n */\n users?: Principals[];\n /**\n * Azure data catalog provision status.\n */\n successfullyProvisioned?: boolean;\n /**\n * Automatic unit adjustment enabled or not.\n */\n enableAutomaticUnitAdjustment?: boolean;\n}\n\n/**\n * The response from the List Azure Data Catalog operation.\n */\nexport interface ADCCatalogsListResult {\n /**\n * the list of Azure Data Catalogs.\n */\n value?: ADCCatalog[];\n}\n\n/**\n * The operation supported by Azure Data Catalog Service.\n */\nexport interface OperationDisplayInfo {\n /**\n * The description of the operation.\n */\n description?: string;\n /**\n * The action that users can perform, based on their permission level.\n */\n operation?: string;\n /**\n * Service provider: Azure Data Catalog Service.\n */\n provider?: string;\n /**\n * Resource on which the operation is performed.\n */\n resource?: string;\n}\n\n/**\n * The operation supported by Azure Data Catalog Service.\n */\nexport interface OperationEntity {\n /**\n * Operation name: {provider}/{resource}/{operation}.\n */\n name?: string;\n /**\n * The operation supported by Azure Data Catalog Service.\n */\n display?: OperationDisplayInfo;\n}\n\n/**\n * The list of Azure data catalog service operation response.\n */\nexport interface OperationEntityListResult {\n /**\n * The list of operations.\n */\n value?: OperationEntity[];\n}\n\n/**\n * An interface representing DataCatalogRestClientOptions.\n */\nexport interface DataCatalogRestClientOptions extends AzureServiceClientOptions {\n baseUri?: string;\n}\n\n/**\n * Defines values for SkuType.\n * Possible values include: 'Free', 'Standard'\n * @readonly\n * @enum {string}\n */\nexport type SkuType = 'Free' | 'Standard';\n\n/**\n * Contains response data for the list operation.\n */\nexport type ADCOperationsListResponse = OperationEntityListResult & {\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: OperationEntityListResult;\n };\n};\n\n/**\n * Contains response data for the listtByResourceGroup operation.\n */\nexport type ADCCatalogsListtByResourceGroupResponse = ADCCatalogsListResult & {\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: ADCCatalogsListResult;\n };\n};\n\n/**\n * Contains response data for the createOrUpdate operation.\n */\nexport type ADCCatalogsCreateOrUpdateResponse = ADCCatalog & {\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: ADCCatalog;\n };\n};\n\n/**\n * Contains response data for the get operation.\n */\nexport type ADCCatalogsGetResponse = ADCCatalog & {\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: ADCCatalog;\n };\n};\n\n/**\n * Contains response data for the update operation.\n */\nexport type ADCCatalogsUpdateResponse = ADCCatalog & {\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: ADCCatalog;\n };\n};\n","/*\n * Copyright (c) Microsoft Corporation.\n * Licensed under the MIT License.\n *\n * Code generated by Microsoft (R) AutoRest Code Generator.\n * Changes may cause incorrect behavior and will be lost if the code is regenerated.\n */\n\nimport { CloudErrorMapper, BaseResourceMapper } from \"@azure/ms-rest-azure-js\";\nimport * as msRest from \"@azure/ms-rest-js\";\n\nexport const CloudError = CloudErrorMapper;\nexport const BaseResource = BaseResourceMapper;\n\nexport const Principals: msRest.CompositeMapper = {\n serializedName: \"Principals\",\n type: {\n name: \"Composite\",\n className: \"Principals\",\n modelProperties: {\n upn: {\n serializedName: \"upn\",\n type: {\n name: \"String\"\n }\n },\n objectId: {\n serializedName: \"objectId\",\n type: {\n name: \"String\"\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 location: {\n serializedName: \"location\",\n type: {\n name: \"String\"\n }\n },\n tags: {\n serializedName: \"tags\",\n type: {\n name: \"Dictionary\",\n value: {\n type: {\n name: \"String\"\n }\n }\n }\n },\n etag: {\n serializedName: \"etag\",\n type: {\n name: \"String\"\n }\n }\n }\n }\n};\n\nexport const ADCCatalog: msRest.CompositeMapper = {\n serializedName: \"ADCCatalog\",\n type: {\n name: \"Composite\",\n className: \"ADCCatalog\",\n modelProperties: {\n ...Resource.type.modelProperties,\n sku: {\n serializedName: \"properties.sku\",\n type: {\n name: \"String\"\n }\n },\n units: {\n serializedName: \"properties.units\",\n type: {\n name: \"Number\"\n }\n },\n admins: {\n serializedName: \"properties.admins\",\n type: {\n name: \"Sequence\",\n element: {\n type: {\n name: \"Composite\",\n className: \"Principals\"\n }\n }\n }\n },\n users: {\n serializedName: \"properties.users\",\n type: {\n name: \"Sequence\",\n element: {\n type: {\n name: \"Composite\",\n className: \"Principals\"\n }\n }\n }\n },\n successfullyProvisioned: {\n serializedName: \"properties.successfullyProvisioned\",\n type: {\n name: \"Boolean\"\n }\n },\n enableAutomaticUnitAdjustment: {\n serializedName: \"properties.enableAutomaticUnitAdjustment\",\n type: {\n name: \"Boolean\"\n }\n }\n }\n }\n};\n\nexport const ADCCatalogsListResult: msRest.CompositeMapper = {\n serializedName: \"ADCCatalogsListResult\",\n type: {\n name: \"Composite\",\n className: \"ADCCatalogsListResult\",\n modelProperties: {\n value: {\n serializedName: \"value\",\n type: {\n name: \"Sequence\",\n element: {\n type: {\n name: \"Composite\",\n className: \"ADCCatalog\"\n }\n }\n }\n }\n }\n }\n};\n\nexport const OperationDisplayInfo: msRest.CompositeMapper = {\n serializedName: \"OperationDisplayInfo\",\n type: {\n name: \"Composite\",\n className: \"OperationDisplayInfo\",\n modelProperties: {\n description: {\n serializedName: \"description\",\n type: {\n name: \"String\"\n }\n },\n operation: {\n serializedName: \"operation\",\n type: {\n name: \"String\"\n }\n },\n provider: {\n serializedName: \"provider\",\n type: {\n name: \"String\"\n }\n },\n resource: {\n serializedName: \"resource\",\n type: {\n name: \"String\"\n }\n }\n }\n }\n};\n\nexport const OperationEntity: msRest.CompositeMapper = {\n serializedName: \"OperationEntity\",\n type: {\n name: \"Composite\",\n className: \"OperationEntity\",\n modelProperties: {\n name: {\n serializedName: \"name\",\n type: {\n name: \"String\"\n }\n },\n display: {\n serializedName: \"display\",\n type: {\n name: \"Composite\",\n className: \"OperationDisplayInfo\"\n }\n }\n }\n }\n};\n\nexport const OperationEntityListResult: msRest.CompositeMapper = {\n serializedName: \"OperationEntityListResult\",\n type: {\n name: \"Composite\",\n className: \"OperationEntityListResult\",\n modelProperties: {\n value: {\n serializedName: \"value\",\n type: {\n name: \"Sequence\",\n element: {\n type: {\n name: \"Composite\",\n className: \"OperationEntity\"\n }\n }\n }\n }\n }\n }\n};\n","/*\n * Copyright (c) Microsoft Corporation.\n * Licensed under the MIT License.\n *\n * Code generated by Microsoft (R) AutoRest Code Generator.\n * Changes may cause incorrect behavior and will be lost if the code is regenerated.\n */\n\nexport {\n CloudError,\n OperationDisplayInfo,\n OperationEntity,\n OperationEntityListResult\n} from \"../models/mappers\";\n","/*\n * Copyright (c) Microsoft Corporation.\n * Licensed under the MIT License.\n *\n * Code generated by Microsoft (R) AutoRest Code Generator.\n * Changes may cause incorrect behavior and will be lost if the code is\n * regenerated.\n */\n\nimport * as msRest from \"@azure/ms-rest-js\";\n\nexport const acceptLanguage: msRest.OperationParameter = {\n parameterPath: \"acceptLanguage\",\n mapper: {\n serializedName: \"accept-language\",\n defaultValue: 'en-US',\n type: {\n name: \"String\"\n }\n }\n};\nexport const apiVersion: msRest.OperationQueryParameter = {\n parameterPath: \"apiVersion\",\n mapper: {\n required: true,\n serializedName: \"api-version\",\n type: {\n name: \"String\"\n }\n }\n};\nexport const catalogName: msRest.OperationURLParameter = {\n parameterPath: \"catalogName\",\n mapper: {\n required: true,\n serializedName: \"catalogName\",\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 type: {\n name: \"String\"\n }\n }\n};\n","/*\n * Copyright (c) Microsoft Corporation.\n * Licensed under the MIT License.\n *\n * Code generated by Microsoft (R) AutoRest Code Generator.\n * Changes may cause incorrect behavior and will be lost if the code is\n * regenerated.\n */\n\nimport * as msRest from \"@azure/ms-rest-js\";\nimport * as Models from \"../models\";\nimport * as Mappers from \"../models/aDCOperationsMappers\";\nimport * as Parameters from \"../models/parameters\";\nimport { DataCatalogRestClientContext } from \"../dataCatalogRestClientContext\";\n\n/** Class representing a ADCOperations. */\nexport class ADCOperations {\n private readonly client: DataCatalogRestClientContext;\n\n /**\n * Create a ADCOperations.\n * @param {DataCatalogRestClientContext} client Reference to the service client.\n */\n constructor(client: DataCatalogRestClientContext) {\n this.client = client;\n }\n\n /**\n * Lists all the available Azure Data Catalog service operations.\n * @param [options] The optional parameters\n * @returns Promise<Models.ADCOperationsListResponse>\n */\n list(options?: msRest.RequestOptionsBase): Promise<Models.ADCOperationsListResponse>;\n /**\n * @param callback The callback\n */\n list(callback: msRest.ServiceCallback<Models.OperationEntityListResult>): void;\n /**\n * @param options The optional parameters\n * @param callback The callback\n */\n list(options: msRest.RequestOptionsBase, callback: msRest.ServiceCallback<Models.OperationEntityListResult>): void;\n list(options?: msRest.RequestOptionsBase | msRest.ServiceCallback<Models.OperationEntityListResult>, callback?: msRest.ServiceCallback<Models.OperationEntityListResult>): Promise<Models.ADCOperationsListResponse> {\n return this.client.sendOperationRequest(\n {\n options\n },\n listOperationSpec,\n callback) as Promise<Models.ADCOperationsListResponse>;\n }\n}\n\n// Operation Specifications\nconst serializer = new msRest.Serializer(Mappers);\nconst listOperationSpec: msRest.OperationSpec = {\n httpMethod: \"GET\",\n path: \"providers/Microsoft.DataCatalog/operations\",\n queryParameters: [\n Parameters.apiVersion\n ],\n headerParameters: [\n Parameters.acceptLanguage\n ],\n responses: {\n 200: {\n bodyMapper: Mappers.OperationEntityListResult\n },\n default: {\n bodyMapper: Mappers.CloudError\n }\n },\n serializer\n};\n","/*\n * Copyright (c) Microsoft Corporation.\n * Licensed under the MIT License.\n *\n * Code generated by Microsoft (R) AutoRest Code Generator.\n * Changes may cause incorrect behavior and will be lost if the code is regenerated.\n */\n\nexport {\n ADCCatalog,\n ADCCatalogsListResult,\n BaseResource,\n CloudError,\n Principals,\n Resource\n} from \"../models/mappers\";\n","/*\n * Copyright (c) Microsoft Corporation.\n * Licensed under the MIT License.\n *\n * Code generated by Microsoft (R) AutoRest Code Generator.\n * Changes may cause incorrect behavior and will be lost if the code is\n * regenerated.\n */\n\nimport * as msRest from \"@azure/ms-rest-js\";\nimport * as msRestAzure from \"@azure/ms-rest-azure-js\";\nimport * as Models from \"../models\";\nimport * as Mappers from \"../models/aDCCatalogsMappers\";\nimport * as Parameters from \"../models/parameters\";\nimport { DataCatalogRestClientContext } from \"../dataCatalogRestClientContext\";\n\n/** Class representing a ADCCatalogs. */\nexport class ADCCatalogs {\n private readonly client: DataCatalogRestClientContext;\n\n /**\n * Create a ADCCatalogs.\n * @param {DataCatalogRestClientContext} client Reference to the service client.\n */\n constructor(client: DataCatalogRestClientContext) {\n this.client = client;\n }\n\n /**\n * The List catalogs in Resource Group operation lists all the Azure Data Catalogs available under\n * the given resource group.\n * @summary List catalogs in Resource Group (GET Resources)\n * @param resourceGroupName The name of the resource group within the user's subscription. The name\n * is case insensitive.\n * @param [options] The optional parameters\n * @returns Promise<Models.ADCCatalogsListtByResourceGroupResponse>\n */\n listtByResourceGroup(resourceGroupName: string, options?: msRest.RequestOptionsBase): Promise<Models.ADCCatalogsListtByResourceGroupResponse>;\n /**\n * @param resourceGroupName The name of the resource group within the user's subscription. The name\n * is case insensitive.\n * @param callback The callback\n */\n listtByResourceGroup(resourceGroupName: string, callback: msRest.ServiceCallback<Models.ADCCatalogsListResult>): void;\n /**\n * @param resourceGroupName The name of the resource group within the user's subscription. The name\n * is case insensitive.\n * @param options The optional parameters\n * @param callback The callback\n */\n listtByResourceGroup(resourceGroupName: string, options: msRest.RequestOptionsBase, callback: msRest.ServiceCallback<Models.ADCCatalogsListResult>): void;\n listtByResourceGroup(resourceGroupName: string, options?: msRest.RequestOptionsBase | msRest.ServiceCallback<Models.ADCCatalogsListResult>, callback?: msRest.ServiceCallback<Models.ADCCatalogsListResult>): Promise<Models.ADCCatalogsListtByResourceGroupResponse> {\n return this.client.sendOperationRequest(\n {\n resourceGroupName,\n options\n },\n listtByResourceGroupOperationSpec,\n callback) as Promise<Models.ADCCatalogsListtByResourceGroupResponse>;\n }\n\n /**\n * The Create Azure Data Catalog service operation creates a new data catalog service with the\n * specified parameters. If the specific service already exists, then any patchable properties will\n * be updated and any immutable properties will remain unchanged.\n * @summary Create or Update Azure Data Catalog service (PUT Resource)\n * @param resourceGroupName The name of the resource group within the user's subscription. The name\n * is case insensitive.\n * @param properties Properties supplied to the Create or Update a data catalog.\n * @param [options] The optional parameters\n * @returns Promise<Models.ADCCatalogsCreateOrUpdateResponse>\n */\n createOrUpdate(resourceGroupName: string, properties: Models.ADCCatalog, options?: msRest.RequestOptionsBase): Promise<Models.ADCCatalogsCreateOrUpdateResponse>;\n /**\n * @param resourceGroupName The name of the resource group within the user's subscription. The name\n * is case insensitive.\n * @param properties Properties supplied to the Create or Update a data catalog.\n * @param callback The callback\n */\n createOrUpdate(resourceGroupName: string, properties: Models.ADCCatalog, callback: msRest.ServiceCallback<Models.ADCCatalog>): void;\n /**\n * @param resourceGroupName The name of the resource group within the user's subscription. The name\n * is case insensitive.\n * @param properties Properties supplied to the Create or Update a data catalog.\n * @param options The optional parameters\n * @param callback The callback\n */\n createOrUpdate(resourceGroupName: string, properties: Models.ADCCatalog, options: msRest.RequestOptionsBase, callback: msRest.ServiceCallback<Models.ADCCatalog>): void;\n createOrUpdate(resourceGroupName: string, properties: Models.ADCCatalog, options?: msRest.RequestOptionsBase | msRest.ServiceCallback<Models.ADCCatalog>, callback?: msRest.ServiceCallback<Models.ADCCatalog>): Promise<Models.ADCCatalogsCreateOrUpdateResponse> {\n return this.client.sendOperationRequest(\n {\n resourceGroupName,\n properties,\n options\n },\n createOrUpdateOperationSpec,\n callback) as Promise<Models.ADCCatalogsCreateOrUpdateResponse>;\n }\n\n /**\n * The Get Azure Data Catalog Service operation retrieves a json representation of the data\n * catalog.\n * @summary Get Azure Data Catalog service (GET Resources)\n * @param resourceGroupName The name of the resource group within the user's subscription. The name\n * is case insensitive.\n * @param [options] The optional parameters\n * @returns Promise<Models.ADCCatalogsGetResponse>\n */\n get(resourceGroupName: string, options?: msRest.RequestOptionsBase): Promise<Models.ADCCatalogsGetResponse>;\n /**\n * @param resourceGroupName The name of the resource group within the user's subscription. The name\n * is case insensitive.\n * @param callback The callback\n */\n get(resourceGroupName: string, callback: msRest.ServiceCallback<Models.ADCCatalog>): void;\n /**\n * @param resourceGroupName The name of the resource group within the user's subscription. The name\n * is case insensitive.\n * @param options The optional parameters\n * @param callback The callback\n */\n get(resourceGroupName: string, options: msRest.RequestOptionsBase, callback: msRest.ServiceCallback<Models.ADCCatalog>): void;\n get(resourceGroupName: string, options?: msRest.RequestOptionsBase | msRest.ServiceCallback<Models.ADCCatalog>, callback?: msRest.ServiceCallback<Models.ADCCatalog>): Promise<Models.ADCCatalogsGetResponse> {\n return this.client.sendOperationRequest(\n {\n resourceGroupName,\n options\n },\n getOperationSpec,\n callback) as Promise<Models.ADCCatalogsGetResponse>;\n }\n\n /**\n * The Delete Azure Data Catalog Service operation deletes an existing data catalog.\n * @summary Delete Azure Data Catalog Service (DELETE Resource)\n * @param resourceGroupName The name of the resource group within the user's subscription. The name\n * is case insensitive.\n * @param [options] The optional parameters\n * @returns Promise<msRest.RestResponse>\n */\n deleteMethod(resourceGroupName: string, options?: msRest.RequestOptionsBase): Promise<msRest.RestResponse> {\n return this.beginDeleteMethod(resourceGroupName,options)\n .then(lroPoller => lroPoller.pollUntilFinished());\n }\n\n /**\n * The Update Azure Data Catalog Service operation can be used to update the existing deployment.\n * The update call only supports the properties listed in the PATCH body.\n * @summary Update Azure Data Catalog Service (PATCH Resource)\n * @param resourceGroupName The name of the resource group within the user's subscription. The name\n * is case insensitive.\n * @param properties Properties supplied to the Update a data catalog.\n * @param [options] The optional parameters\n * @returns Promise<Models.ADCCatalogsUpdateResponse>\n */\n update(resourceGroupName: string, properties: Models.ADCCatalog, options?: msRest.RequestOptionsBase): Promise<Models.ADCCatalogsUpdateResponse>;\n /**\n * @param resourceGroupName The name of the resource group within the user's subscription. The name\n * is case insensitive.\n * @param properties Properties supplied to the Update a data catalog.\n * @param callback The callback\n */\n update(resourceGroupName: string, properties: Models.ADCCatalog, callback: msRest.ServiceCallback<Models.ADCCatalog>): void;\n /**\n * @param resourceGroupName The name of the resource group within the user's subscription. The name\n * is case insensitive.\n * @param properties Properties supplied to the Update a data catalog.\n * @param options The optional parameters\n * @param callback The callback\n */\n update(resourceGroupName: string, properties: Models.ADCCatalog, options: msRest.RequestOptionsBase, callback: msRest.ServiceCallback<Models.ADCCatalog>): void;\n update(resourceGroupName: string, properties: Models.ADCCatalog, options?: msRest.RequestOptionsBase | msRest.ServiceCallback<Models.ADCCatalog>, callback?: msRest.ServiceCallback<Models.ADCCatalog>): Promise<Models.ADCCatalogsUpdateResponse> {\n return this.client.sendOperationRequest(\n {\n resourceGroupName,\n properties,\n options\n },\n updateOperationSpec,\n callback) as Promise<Models.ADCCatalogsUpdateResponse>;\n }\n\n /**\n * The Delete Azure Data Catalog Service operation deletes an existing data catalog.\n * @summary Delete Azure Data Catalog Service (DELETE Resource)\n * @param resourceGroupName The name of the resource group within the user's subscription. The name\n * is case insensitive.\n * @param [options] The optional parameters\n * @returns Promise<msRestAzure.LROPoller>\n */\n beginDeleteMethod(resourceGroupName: string, options?: msRest.RequestOptionsBase): Promise<msRestAzure.LROPoller> {\n return this.client.sendLRORequest(\n {\n resourceGroupName,\n options\n },\n beginDeleteMethodOperationSpec,\n options);\n }\n}\n\n// Operation Specifications\nconst serializer = new msRest.Serializer(Mappers);\nconst listtByResourceGroupOperationSpec: msRest.OperationSpec = {\n httpMethod: \"GET\",\n path: \"subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DataCatalog/catalogs\",\n urlParameters: [\n Parameters.subscriptionId,\n Parameters.resourceGroupName\n ],\n queryParameters: [\n Parameters.apiVersion\n ],\n headerParameters: [\n Parameters.acceptLanguage\n ],\n responses: {\n 200: {\n bodyMapper: Mappers.ADCCatalogsListResult\n },\n default: {\n bodyMapper: Mappers.CloudError\n }\n },\n serializer\n};\n\nconst createOrUpdateOperationSpec: msRest.OperationSpec = {\n httpMethod: \"PUT\",\n path: \"subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DataCatalog/catalogs/{catalogName}\",\n urlParameters: [\n Parameters.subscriptionId,\n Parameters.resourceGroupName,\n Parameters.catalogName\n ],\n queryParameters: [\n Parameters.apiVersion\n ],\n headerParameters: [\n Parameters.acceptLanguage\n ],\n requestBody: {\n parameterPath: \"properties\",\n mapper: {\n ...Mappers.ADCCatalog,\n required: true\n }\n },\n responses: {\n 200: {\n bodyMapper: Mappers.ADCCatalog\n },\n 201: {\n bodyMapper: Mappers.ADCCatalog\n },\n default: {\n bodyMapper: Mappers.CloudError\n }\n },\n serializer\n};\n\nconst getOperationSpec: msRest.OperationSpec = {\n httpMethod: \"GET\",\n path: \"subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DataCatalog/catalogs/{catalogName}\",\n urlParameters: [\n Parameters.subscriptionId,\n Parameters.resourceGroupName,\n Parameters.catalogName\n ],\n queryParameters: [\n Parameters.apiVersion\n ],\n headerParameters: [\n Parameters.acceptLanguage\n ],\n responses: {\n 200: {\n bodyMapper: Mappers.ADCCatalog\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.DataCatalog/catalogs/{catalogName}\",\n urlParameters: [\n Parameters.subscriptionId,\n Parameters.resourceGroupName,\n Parameters.catalogName\n ],\n queryParameters: [\n Parameters.apiVersion\n ],\n headerParameters: [\n Parameters.acceptLanguage\n ],\n requestBody: {\n parameterPath: \"properties\",\n mapper: {\n ...Mappers.ADCCatalog,\n required: true\n }\n },\n responses: {\n 200: {\n bodyMapper: Mappers.ADCCatalog\n },\n default: {\n bodyMapper: Mappers.CloudError\n }\n },\n serializer\n};\n\nconst beginDeleteMethodOperationSpec: msRest.OperationSpec = {\n httpMethod: \"DELETE\",\n path: \"subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DataCatalog/catalogs/{catalogName}\",\n urlParameters: [\n Parameters.subscriptionId,\n Parameters.resourceGroupName,\n Parameters.catalogName\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","/*\n * Copyright (c) Microsoft Corporation.\n * Licensed under the MIT License.\n *\n * Code generated by Microsoft (R) AutoRest Code Generator.\n * Changes may cause incorrect behavior and will be lost if the code is\n * regenerated.\n */\n\nimport * as Models from \"./models\";\nimport * as msRest from \"@azure/ms-rest-js\";\nimport * as msRestAzure from \"@azure/ms-rest-azure-js\";\nimport { TokenCredential } from \"@azure/core-auth\";\n\nconst packageName = \"@azure/arm-datacatalog\";\nconst packageVersion = \"2.0.0\";\n\nexport class DataCatalogRestClientContext extends msRestAzure.AzureServiceClient {\n credentials: msRest.ServiceClientCredentials | TokenCredential;\n subscriptionId: string;\n apiVersion?: string;\n catalogName: string;\n\n /**\n * Initializes a new instance of the DataCatalogRestClient class.\n * @param credentials Credentials needed for the client to connect to Azure. Credentials\n * implementing the TokenCredential interface from the @azure/identity package are recommended. For\n * more information about these credentials, see\n * {@link https://www.npmjs.com/package/@azure/identity}. Credentials implementing the\n * ServiceClientCredentials interface from the older packages @azure/ms-rest-nodeauth and\n * @azure/ms-rest-browserauth are also supported.\n * @param subscriptionId Gets subscription credentials which uniquely identify the Microsoft Azure\n * subscription. The subscription ID forms part of the URI for every service call.\n * @param catalogName The name of the data catalog in the specified subscription and resource\n * group.\n * @param [options] The parameter options\n */\n constructor(credentials: msRest.ServiceClientCredentials | TokenCredential, subscriptionId: string, catalogName: string, options?: Models.DataCatalogRestClientOptions) {\n if (credentials == undefined) {\n throw new Error('\\'credentials\\' cannot be null.');\n }\n if (subscriptionId == undefined) {\n throw new Error('\\'subscriptionId\\' cannot be null.');\n }\n if (catalogName == undefined) {\n throw new Error('\\'catalogName\\' 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 = '2016-03-30';\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 this.catalogName = catalogName;\n\n if (options.acceptLanguage !== null && options.acceptLanguage !== undefined) {\n this.acceptLanguage = options.acceptLanguage;\n }\n if (options.longRunningOperationRetryTimeout !== null && options.longRunningOperationRetryTimeout !== undefined) {\n this.longRunningOperationRetryTimeout = options.longRunningOperationRetryTimeout;\n }\n }\n}\n","/*\n * Copyright (c) Microsoft Corporation.\n * Licensed under the MIT License.\n *\n * Code generated by Microsoft (R) AutoRest Code Generator.\n * Changes may cause incorrect behavior and will be lost if the code is\n * regenerated.\n */\n\nimport * as msRest from \"@azure/ms-rest-js\";\nimport { TokenCredential } from \"@azure/core-auth\";\nimport * as Models from \"./models\";\nimport * as Mappers from \"./models/mappers\";\nimport * as operations from \"./operations\";\nimport { DataCatalogRestClientContext } from \"./dataCatalogRestClientContext\";\n\n\nclass DataCatalogRestClient extends DataCatalogRestClientContext {\n // Operation groups\n aDCOperations: operations.ADCOperations;\n aDCCatalogs: operations.ADCCatalogs;\n\n /**\n * Initializes a new instance of the DataCatalogRestClient class.\n * @param credentials Credentials needed for the client to connect to Azure. Credentials\n * implementing the TokenCredential interface from the @azure/identity package are recommended. For\n * more information about these credentials, see\n * {@link https://www.npmjs.com/package/@azure/identity}. Credentials implementing the\n * ServiceClientCredentials interface from the older packages @azure/ms-rest-nodeauth and\n * @azure/ms-rest-browserauth are also supported.\n * @param subscriptionId Gets subscription credentials which uniquely identify the Microsoft Azure\n * subscription. The subscription ID forms part of the URI for every service call.\n * @param catalogName The name of the data catalog in the specified subscription and resource\n * group.\n * @param [options] The parameter options\n */\n constructor(credentials: msRest.ServiceClientCredentials | TokenCredential, subscriptionId: string, catalogName: string, options?: Models.DataCatalogRestClientOptions) {\n super(credentials, subscriptionId, catalogName, options);\n this.aDCOperations = new operations.ADCOperations(this);\n this.aDCCatalogs = new operations.ADCCatalogs(this);\n }\n}\n\n// Operation Specifications\n\nexport {\n DataCatalogRestClient,\n DataCatalogRestClientContext,\n Models as DataCatalogRestModels,\n Mappers as DataCatalogRestMappers\n};\nexport * from \"./operations\";\n"],"names":["CloudErrorMapper","BaseResourceMapper","msRest.Serializer","Parameters.apiVersion","Parameters.acceptLanguage","Mappers.OperationEntityListResult","Mappers.CloudError","serializer","Mappers","Parameters.subscriptionId","Parameters.resourceGroupName","Mappers.ADCCatalogsListResult","Parameters.catalogName","Mappers.ADCCatalog","msRestAzure.getDefaultUserAgentValue","msRestAzure.AzureServiceClient","operations.ADCOperations","operations.ADCCatalogs"],"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.ArmDatacatalog={}),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 o=function(){return(o=Object.assign||function(e){for(var t,r=1,a=arguments.length;r<a;r++)for(var o in t=arguments[r])Object.prototype.hasOwnProperty.call(t,o)&&(e[o]=t[o]);return e}).apply(this,arguments)},i=Object.freeze({__proto__:null}),n=s.CloudErrorMapper,p=s.BaseResourceMapper,l={serializedName:"Principals",type:{name:"Composite",className:"Principals",modelProperties:{upn:{serializedName:"upn",type:{name:"String"}},objectId:{serializedName:"objectId",type:{name:"String"}}}}},u={serializedName:"Resource",type:{name:"Composite",className:"Resource",modelProperties:{id:{readOnly:!0,serializedName:"id",type:{name:"String"}},name:{readOnly:!0,serializedName:"name",type:{name:"String"}},type:{readOnly:!0,serializedName:"type",type:{name:"String"}},location:{serializedName:"location",type:{name:"String"}},tags:{serializedName:"tags",type:{name:"Dictionary",value:{type:{name:"String"}}}},etag:{serializedName:"etag",type:{name:"String"}}}}},m={serializedName:"ADCCatalog",type:{name:"Composite",className:"ADCCatalog",modelProperties:o(o({},u.type.modelProperties),{sku:{serializedName:"properties.sku",type:{name:"String"}},units:{serializedName:"properties.units",type:{name:"Number"}},admins:{serializedName:"properties.admins",type:{name:"Sequence",element:{type:{name:"Composite",className:"Principals"}}}},users:{serializedName:"properties.users",type:{name:"Sequence",element:{type:{name:"Composite",className:"Principals"}}}},successfullyProvisioned:{serializedName:"properties.successfullyProvisioned",type:{name:"Boolean"}},enableAutomaticUnitAdjustment:{serializedName:"properties.enableAutomaticUnitAdjustment",type:{name:"Boolean"}}})}},c={serializedName:"ADCCatalogsListResult",type:{name:"Composite",className:"ADCCatalogsListResult",modelProperties:{value:{serializedName:"value",type:{name:"Sequence",element:{type:{name:"Composite",className:"ADCCatalog"}}}}}}},d={serializedName:"OperationDisplayInfo",type:{name:"Composite",className:"OperationDisplayInfo",modelProperties:{description:{serializedName:"description",type:{name:"String"}},operation:{serializedName:"operation",type:{name:"String"}},provider:{serializedName:"provider",type:{name:"String"}},resource:{serializedName:"resource",type:{name:"String"}}}}},y={serializedName:"OperationEntity",type:{name:"Composite",className:"OperationEntity",modelProperties:{name:{serializedName:"name",type:{name:"String"}},display:{serializedName:"display",type:{name:"Composite",className:"OperationDisplayInfo"}}}}},g={serializedName:"OperationEntityListResult",type:{name:"Composite",className:"OperationEntityListResult",modelProperties:{value:{serializedName:"value",type:{name:"Sequence",element:{type:{name:"Composite",className:"OperationEntity"}}}}}}},N=Object.freeze({__proto__:null,CloudError:n,BaseResource:p,Principals:l,Resource:u,ADCCatalog:m,ADCCatalogsListResult:c,OperationDisplayInfo:d,OperationEntity:y,OperationEntityListResult:g}),f=Object.freeze({__proto__:null,CloudError:n,OperationDisplayInfo:d,OperationEntity:y,OperationEntityListResult:g}),h={parameterPath:"acceptLanguage",mapper:{serializedName:"accept-language",defaultValue:"en-US",type:{name:"String"}}},z={parameterPath:"apiVersion",mapper:{required:!0,serializedName:"api-version",type:{name:"String"}}},C={parameterPath:"catalogName",mapper:{required:!0,serializedName:"catalogName",type:{name:"String"}}},d={parameterPath:"resourceGroupName",mapper:{required:!0,serializedName:"resourceGroupName",constraints:{MaxLength:90,MinLength:1,Pattern:/^[-\w\._\(\)]+$/},type:{name:"String"}}},y={parameterPath:"subscriptionId",mapper:{required:!0,serializedName:"subscriptionId",type:{name:"String"}}},b=(P.prototype.list=function(e,t){return this.client.sendOperationRequest({options:e},O,t)},P);function P(e){this.client=e}var O={httpMethod:"GET",path:"providers/Microsoft.DataCatalog/operations",queryParameters:[z],headerParameters:[h],responses:{200:{bodyMapper:g},default:{bodyMapper:n}},serializer:new t.Serializer(f)},u=Object.freeze({__proto__:null,ADCCatalog:m,ADCCatalogsListResult:c,BaseResource:p,CloudError:n,Principals:l,Resource:u}),R=(D.prototype.listtByResourceGroup=function(e,t,r){return this.client.sendOperationRequest({resourceGroupName:e,options:t},v,r)},D.prototype.createOrUpdate=function(e,t,r,a){return this.client.sendOperationRequest({resourceGroupName:e,properties:t,options:r},S,a)},D.prototype.get=function(e,t,r){return this.client.sendOperationRequest({resourceGroupName:e,options:t},q,r)},D.prototype.deleteMethod=function(e,t){return this.beginDeleteMethod(e,t).then(function(e){return e.pollUntilFinished()})},D.prototype.update=function(e,t,r,a){return this.client.sendOperationRequest({resourceGroupName:e,properties:t,options:r},_,a)},D.prototype.beginDeleteMethod=function(e,t){return this.client.sendLRORequest({resourceGroupName:e,options:t},A,t)},D);function D(e){this.client=e}var M,u=new t.Serializer(u),v={httpMethod:"GET",path:"subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DataCatalog/catalogs",urlParameters:[y,d],queryParameters:[z],headerParameters:[h],responses:{200:{bodyMapper:c},default:{bodyMapper:n}},serializer:u},S={httpMethod:"PUT",path:"subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DataCatalog/catalogs/{catalogName}",urlParameters:[y,d,C],queryParameters:[z],headerParameters:[h],requestBody:{parameterPath:"properties",mapper:o(o({},m),{required:!0})},responses:{200:{bodyMapper:m},201:{bodyMapper:m},default:{bodyMapper:n}},serializer:u},q={httpMethod:"GET",path:"subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DataCatalog/catalogs/{catalogName}",urlParameters:[y,d,C],queryParameters:[z],headerParameters:[h],responses:{200:{bodyMapper:m},default:{bodyMapper:n}},serializer:u},_={httpMethod:"PATCH",path:"subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DataCatalog/catalogs/{catalogName}",urlParameters:[y,d,C],queryParameters:[z],headerParameters:[h],requestBody:{parameterPath:"properties",mapper:o(o({},m),{required:!0})},responses:{200:{bodyMapper:m},default:{bodyMapper:n}},serializer:u},A={httpMethod:"DELETE",path:"subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DataCatalog/catalogs/{catalogName}",urlParameters:[y,d,C],queryParameters:[z],headerParameters:[h],responses:{200:{},202:{},204:{},default:{bodyMapper:n}},serializer:u},n=(r(E,M=s.AzureServiceClient),E);function E(e,t,r,a){var o,i=this;if(null==e)throw new Error("'credentials' cannot be null.");if(null==t)throw new Error("'subscriptionId' cannot be null.");if(null==r)throw new Error("'catalogName' cannot be null.");return(a=a||{}).userAgent||(o=s.getDefaultUserAgentValue(),a.userAgent="@azure/arm-datacatalog/2.0.0 "+o),(i=M.call(this,e,a)||this).apiVersion="2016-03-30",i.acceptLanguage="en-US",i.longRunningOperationRetryTimeout=30,i.baseUri=a.baseUri||i.baseUri||"https://management.azure.com",i.requestContentType="application/json; charset=utf-8",i.credentials=e,i.subscriptionId=t,i.catalogName=r,null!==a.acceptLanguage&&void 0!==a.acceptLanguage&&(i.acceptLanguage=a.acceptLanguage),null!==a.longRunningOperationRetryTimeout&&void 0!==a.longRunningOperationRetryTimeout&&(i.longRunningOperationRetryTimeout=a.longRunningOperationRetryTimeout),i}var G,u=(r(j,G=n),j);function j(e,t,r,a){a=G.call(this,e,t,r,a)||this;return a.aDCOperations=new b(a),a.aDCCatalogs=new R(a),a}e.ADCCatalogs=R,e.ADCOperations=b,e.DataCatalogRestClient=u,e.DataCatalogRestClientContext=n,e.DataCatalogRestMappers=N,e.DataCatalogRestModels=i,Object.defineProperty(e,"__esModule",{value:!0})});
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"sources":["../node_modules/tslib/tslib.es6.js","../src/models/mappers.ts","../src/models/parameters.ts","../src/operations/aDCOperations.ts","../src/operations/aDCCatalogs.ts","../src/dataCatalogRestClientContext.ts","../src/dataCatalogRestClient.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","Principals","serializedName","type","name","className","modelProperties","upn","objectId","Resource","id","readOnly","location","tags","value","etag","ADCCatalog","sku","units","admins","element","users","successfullyProvisioned","enableAutomaticUnitAdjustment","ADCCatalogsListResult","OperationDisplayInfo","description","operation","provider","resource","OperationEntity","display","OperationEntityListResult","acceptLanguage","parameterPath","mapper","defaultValue","apiVersion","required","catalogName","resourceGroupName","constraints","MaxLength","MinLength","Pattern","subscriptionId","ADCOperations","list","options","callback","client","sendOperationRequest","listOperationSpec","httpMethod","path","queryParameters","Parameters.apiVersion","headerParameters","Parameters.acceptLanguage","responses","200","bodyMapper","Mappers.OperationEntityListResult","default","Mappers.CloudError","serializer","msRest.Serializer","Mappers","ADCCatalogs","listtByResourceGroup","listtByResourceGroupOperationSpec","createOrUpdate","properties","createOrUpdateOperationSpec","get","getOperationSpec","deleteMethod","beginDeleteMethod","then","lroPoller","pollUntilFinished","update","updateOperationSpec","sendLRORequest","beginDeleteMethodOperationSpec","_super","urlParameters","Parameters.subscriptionId","Parameters.resourceGroupName","Mappers.ADCCatalogsListResult","serializer$1","Parameters.catalogName","requestBody","Mappers.ADCCatalog","201","202","204","DataCatalogRestClientContext","msRestAzure.AzureServiceClient","credentials","defaultUserAgent","_this","undefined","Error","userAgent","msRestAzure.getDefaultUserAgentValue","packageName","longRunningOperationRetryTimeout","baseUri","requestContentType","DataCatalogRestClient","aDCOperations","operations.ADCOperations","aDCCatalogs","operations.ADCCatalogs"],"mappings":"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"}
|
|
@@ -1,28 +0,0 @@
|
|
|
1
|
-
import * as msRest from "@azure/ms-rest-js";
|
|
2
|
-
import { TokenCredential } from "@azure/core-auth";
|
|
3
|
-
import * as Models from "./models";
|
|
4
|
-
import * as Mappers from "./models/mappers";
|
|
5
|
-
import * as operations from "./operations";
|
|
6
|
-
import { DataCatalogRestClientContext } from "./dataCatalogRestClientContext";
|
|
7
|
-
declare class DataCatalogRestClient extends DataCatalogRestClientContext {
|
|
8
|
-
aDCOperations: operations.ADCOperations;
|
|
9
|
-
aDCCatalogs: operations.ADCCatalogs;
|
|
10
|
-
/**
|
|
11
|
-
* Initializes a new instance of the DataCatalogRestClient class.
|
|
12
|
-
* @param credentials Credentials needed for the client to connect to Azure. Credentials
|
|
13
|
-
* implementing the TokenCredential interface from the @azure/identity package are recommended. For
|
|
14
|
-
* more information about these credentials, see
|
|
15
|
-
* {@link https://www.npmjs.com/package/@azure/identity}. Credentials implementing the
|
|
16
|
-
* ServiceClientCredentials interface from the older packages @azure/ms-rest-nodeauth and
|
|
17
|
-
* @azure/ms-rest-browserauth are also supported.
|
|
18
|
-
* @param subscriptionId Gets subscription credentials which uniquely identify the Microsoft Azure
|
|
19
|
-
* subscription. The subscription ID forms part of the URI for every service call.
|
|
20
|
-
* @param catalogName The name of the data catalog in the specified subscription and resource
|
|
21
|
-
* group.
|
|
22
|
-
* @param [options] The parameter options
|
|
23
|
-
*/
|
|
24
|
-
constructor(credentials: msRest.ServiceClientCredentials | TokenCredential, subscriptionId: string, catalogName: string, options?: Models.DataCatalogRestClientOptions);
|
|
25
|
-
}
|
|
26
|
-
export { DataCatalogRestClient, DataCatalogRestClientContext, Models as DataCatalogRestModels, Mappers as DataCatalogRestMappers };
|
|
27
|
-
export * from "./operations";
|
|
28
|
-
//# sourceMappingURL=dataCatalogRestClient.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"dataCatalogRestClient.d.ts","sourceRoot":"","sources":["../src/dataCatalogRestClient.ts"],"names":[],"mappings":"AASA,OAAO,KAAK,MAAM,MAAM,mBAAmB,CAAC;AAC5C,OAAO,EAAE,eAAe,EAAE,MAAM,kBAAkB,CAAC;AACnD,OAAO,KAAK,MAAM,MAAM,UAAU,CAAC;AACnC,OAAO,KAAK,OAAO,MAAM,kBAAkB,CAAC;AAC5C,OAAO,KAAK,UAAU,MAAM,cAAc,CAAC;AAC3C,OAAO,EAAE,4BAA4B,EAAE,MAAM,gCAAgC,CAAC;AAG9E,cAAM,qBAAsB,SAAQ,4BAA4B;IAE9D,aAAa,EAAE,UAAU,CAAC,aAAa,CAAC;IACxC,WAAW,EAAE,UAAU,CAAC,WAAW,CAAC;IAEpC;;;;;;;;;;;;;OAaG;gBACS,WAAW,EAAE,MAAM,CAAC,wBAAwB,GAAG,eAAe,EAAE,cAAc,EAAE,MAAM,EAAE,WAAW,EAAE,MAAM,EAAE,OAAO,CAAC,EAAE,MAAM,CAAC,4BAA4B;CAKvK;AAID,OAAO,EACL,qBAAqB,EACrB,4BAA4B,EAC5B,MAAM,IAAI,qBAAqB,EAC/B,OAAO,IAAI,sBAAsB,EAClC,CAAC;AACF,cAAc,cAAc,CAAC"}
|
|
@@ -1,41 +0,0 @@
|
|
|
1
|
-
/*
|
|
2
|
-
* Copyright (c) Microsoft Corporation.
|
|
3
|
-
* Licensed under the MIT License.
|
|
4
|
-
*
|
|
5
|
-
* Code generated by Microsoft (R) AutoRest Code Generator.
|
|
6
|
-
* Changes may cause incorrect behavior and will be lost if the code is
|
|
7
|
-
* regenerated.
|
|
8
|
-
*/
|
|
9
|
-
import { __extends } from "tslib";
|
|
10
|
-
import * as Models from "./models";
|
|
11
|
-
import * as Mappers from "./models/mappers";
|
|
12
|
-
import * as operations from "./operations";
|
|
13
|
-
import { DataCatalogRestClientContext } from "./dataCatalogRestClientContext";
|
|
14
|
-
var DataCatalogRestClient = /** @class */ (function (_super) {
|
|
15
|
-
__extends(DataCatalogRestClient, _super);
|
|
16
|
-
/**
|
|
17
|
-
* Initializes a new instance of the DataCatalogRestClient class.
|
|
18
|
-
* @param credentials Credentials needed for the client to connect to Azure. Credentials
|
|
19
|
-
* implementing the TokenCredential interface from the @azure/identity package are recommended. For
|
|
20
|
-
* more information about these credentials, see
|
|
21
|
-
* {@link https://www.npmjs.com/package/@azure/identity}. Credentials implementing the
|
|
22
|
-
* ServiceClientCredentials interface from the older packages @azure/ms-rest-nodeauth and
|
|
23
|
-
* @azure/ms-rest-browserauth are also supported.
|
|
24
|
-
* @param subscriptionId Gets subscription credentials which uniquely identify the Microsoft Azure
|
|
25
|
-
* subscription. The subscription ID forms part of the URI for every service call.
|
|
26
|
-
* @param catalogName The name of the data catalog in the specified subscription and resource
|
|
27
|
-
* group.
|
|
28
|
-
* @param [options] The parameter options
|
|
29
|
-
*/
|
|
30
|
-
function DataCatalogRestClient(credentials, subscriptionId, catalogName, options) {
|
|
31
|
-
var _this = _super.call(this, credentials, subscriptionId, catalogName, options) || this;
|
|
32
|
-
_this.aDCOperations = new operations.ADCOperations(_this);
|
|
33
|
-
_this.aDCCatalogs = new operations.ADCCatalogs(_this);
|
|
34
|
-
return _this;
|
|
35
|
-
}
|
|
36
|
-
return DataCatalogRestClient;
|
|
37
|
-
}(DataCatalogRestClientContext));
|
|
38
|
-
// Operation Specifications
|
|
39
|
-
export { DataCatalogRestClient, DataCatalogRestClientContext, Models as DataCatalogRestModels, Mappers as DataCatalogRestMappers };
|
|
40
|
-
export * from "./operations";
|
|
41
|
-
//# sourceMappingURL=dataCatalogRestClient.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"dataCatalogRestClient.js","sourceRoot":"","sources":["../src/dataCatalogRestClient.ts"],"names":[],"mappings":"AAAA;;;;;;;GAOG;;AAIH,OAAO,KAAK,MAAM,MAAM,UAAU,CAAC;AACnC,OAAO,KAAK,OAAO,MAAM,kBAAkB,CAAC;AAC5C,OAAO,KAAK,UAAU,MAAM,cAAc,CAAC;AAC3C,OAAO,EAAE,4BAA4B,EAAE,MAAM,gCAAgC,CAAC;AAG9E;IAAoC,yCAA4B;IAK9D;;;;;;;;;;;;;OAaG;IACH,+BAAY,WAA8D,EAAE,cAAsB,EAAE,WAAmB,EAAE,OAA6C;QAAtK,YACE,kBAAM,WAAW,EAAE,cAAc,EAAE,WAAW,EAAE,OAAO,CAAC,SAGzD;QAFC,KAAI,CAAC,aAAa,GAAG,IAAI,UAAU,CAAC,aAAa,CAAC,KAAI,CAAC,CAAC;QACxD,KAAI,CAAC,WAAW,GAAG,IAAI,UAAU,CAAC,WAAW,CAAC,KAAI,CAAC,CAAC;;IACtD,CAAC;IACH,4BAAC;AAAD,CAAC,AAxBD,CAAoC,4BAA4B,GAwB/D;AAED,2BAA2B;AAE3B,OAAO,EACL,qBAAqB,EACrB,4BAA4B,EAC5B,MAAM,IAAI,qBAAqB,EAC/B,OAAO,IAAI,sBAAsB,EAClC,CAAC;AACF,cAAc,cAAc,CAAC"}
|
|
@@ -1,26 +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
|
-
import { TokenCredential } from "@azure/core-auth";
|
|
5
|
-
export declare class DataCatalogRestClientContext extends msRestAzure.AzureServiceClient {
|
|
6
|
-
credentials: msRest.ServiceClientCredentials | TokenCredential;
|
|
7
|
-
subscriptionId: string;
|
|
8
|
-
apiVersion?: string;
|
|
9
|
-
catalogName: string;
|
|
10
|
-
/**
|
|
11
|
-
* Initializes a new instance of the DataCatalogRestClient class.
|
|
12
|
-
* @param credentials Credentials needed for the client to connect to Azure. Credentials
|
|
13
|
-
* implementing the TokenCredential interface from the @azure/identity package are recommended. For
|
|
14
|
-
* more information about these credentials, see
|
|
15
|
-
* {@link https://www.npmjs.com/package/@azure/identity}. Credentials implementing the
|
|
16
|
-
* ServiceClientCredentials interface from the older packages @azure/ms-rest-nodeauth and
|
|
17
|
-
* @azure/ms-rest-browserauth are also supported.
|
|
18
|
-
* @param subscriptionId Gets subscription credentials which uniquely identify the Microsoft Azure
|
|
19
|
-
* subscription. The subscription ID forms part of the URI for every service call.
|
|
20
|
-
* @param catalogName The name of the data catalog in the specified subscription and resource
|
|
21
|
-
* group.
|
|
22
|
-
* @param [options] The parameter options
|
|
23
|
-
*/
|
|
24
|
-
constructor(credentials: msRest.ServiceClientCredentials | TokenCredential, subscriptionId: string, catalogName: string, options?: Models.DataCatalogRestClientOptions);
|
|
25
|
-
}
|
|
26
|
-
//# sourceMappingURL=dataCatalogRestClientContext.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"dataCatalogRestClientContext.d.ts","sourceRoot":"","sources":["../src/dataCatalogRestClientContext.ts"],"names":[],"mappings":"AASA,OAAO,KAAK,MAAM,MAAM,UAAU,CAAC;AACnC,OAAO,KAAK,MAAM,MAAM,mBAAmB,CAAC;AAC5C,OAAO,KAAK,WAAW,MAAM,yBAAyB,CAAC;AACvD,OAAO,EAAE,eAAe,EAAE,MAAM,kBAAkB,CAAC;AAKnD,qBAAa,4BAA6B,SAAQ,WAAW,CAAC,kBAAkB;IAC9E,WAAW,EAAE,MAAM,CAAC,wBAAwB,GAAG,eAAe,CAAC;IAC/D,cAAc,EAAE,MAAM,CAAC;IACvB,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,WAAW,EAAE,MAAM,CAAC;IAEpB;;;;;;;;;;;;;OAaG;gBACS,WAAW,EAAE,MAAM,CAAC,wBAAwB,GAAG,eAAe,EAAE,cAAc,EAAE,MAAM,EAAE,WAAW,EAAE,MAAM,EAAE,OAAO,CAAC,EAAE,MAAM,CAAC,4BAA4B;CAqCvK"}
|
|
@@ -1,67 +0,0 @@
|
|
|
1
|
-
/*
|
|
2
|
-
* Copyright (c) Microsoft Corporation.
|
|
3
|
-
* Licensed under the MIT License.
|
|
4
|
-
*
|
|
5
|
-
* Code generated by Microsoft (R) AutoRest Code Generator.
|
|
6
|
-
* Changes may cause incorrect behavior and will be lost if the code is
|
|
7
|
-
* regenerated.
|
|
8
|
-
*/
|
|
9
|
-
import { __extends } from "tslib";
|
|
10
|
-
import * as msRestAzure from "@azure/ms-rest-azure-js";
|
|
11
|
-
var packageName = "@azure/arm-datacatalog";
|
|
12
|
-
var packageVersion = "2.0.0";
|
|
13
|
-
var DataCatalogRestClientContext = /** @class */ (function (_super) {
|
|
14
|
-
__extends(DataCatalogRestClientContext, _super);
|
|
15
|
-
/**
|
|
16
|
-
* Initializes a new instance of the DataCatalogRestClient class.
|
|
17
|
-
* @param credentials Credentials needed for the client to connect to Azure. Credentials
|
|
18
|
-
* implementing the TokenCredential interface from the @azure/identity package are recommended. For
|
|
19
|
-
* more information about these credentials, see
|
|
20
|
-
* {@link https://www.npmjs.com/package/@azure/identity}. Credentials implementing the
|
|
21
|
-
* ServiceClientCredentials interface from the older packages @azure/ms-rest-nodeauth and
|
|
22
|
-
* @azure/ms-rest-browserauth are also supported.
|
|
23
|
-
* @param subscriptionId Gets subscription credentials which uniquely identify the Microsoft Azure
|
|
24
|
-
* subscription. The subscription ID forms part of the URI for every service call.
|
|
25
|
-
* @param catalogName The name of the data catalog in the specified subscription and resource
|
|
26
|
-
* group.
|
|
27
|
-
* @param [options] The parameter options
|
|
28
|
-
*/
|
|
29
|
-
function DataCatalogRestClientContext(credentials, subscriptionId, catalogName, options) {
|
|
30
|
-
var _this = this;
|
|
31
|
-
if (credentials == undefined) {
|
|
32
|
-
throw new Error('\'credentials\' cannot be null.');
|
|
33
|
-
}
|
|
34
|
-
if (subscriptionId == undefined) {
|
|
35
|
-
throw new Error('\'subscriptionId\' cannot be null.');
|
|
36
|
-
}
|
|
37
|
-
if (catalogName == undefined) {
|
|
38
|
-
throw new Error('\'catalogName\' cannot be null.');
|
|
39
|
-
}
|
|
40
|
-
if (!options) {
|
|
41
|
-
options = {};
|
|
42
|
-
}
|
|
43
|
-
if (!options.userAgent) {
|
|
44
|
-
var defaultUserAgent = msRestAzure.getDefaultUserAgentValue();
|
|
45
|
-
options.userAgent = packageName + "/" + packageVersion + " " + defaultUserAgent;
|
|
46
|
-
}
|
|
47
|
-
_this = _super.call(this, credentials, options) || this;
|
|
48
|
-
_this.apiVersion = '2016-03-30';
|
|
49
|
-
_this.acceptLanguage = 'en-US';
|
|
50
|
-
_this.longRunningOperationRetryTimeout = 30;
|
|
51
|
-
_this.baseUri = options.baseUri || _this.baseUri || "https://management.azure.com";
|
|
52
|
-
_this.requestContentType = "application/json; charset=utf-8";
|
|
53
|
-
_this.credentials = credentials;
|
|
54
|
-
_this.subscriptionId = subscriptionId;
|
|
55
|
-
_this.catalogName = catalogName;
|
|
56
|
-
if (options.acceptLanguage !== null && options.acceptLanguage !== undefined) {
|
|
57
|
-
_this.acceptLanguage = options.acceptLanguage;
|
|
58
|
-
}
|
|
59
|
-
if (options.longRunningOperationRetryTimeout !== null && options.longRunningOperationRetryTimeout !== undefined) {
|
|
60
|
-
_this.longRunningOperationRetryTimeout = options.longRunningOperationRetryTimeout;
|
|
61
|
-
}
|
|
62
|
-
return _this;
|
|
63
|
-
}
|
|
64
|
-
return DataCatalogRestClientContext;
|
|
65
|
-
}(msRestAzure.AzureServiceClient));
|
|
66
|
-
export { DataCatalogRestClientContext };
|
|
67
|
-
//# sourceMappingURL=dataCatalogRestClientContext.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"dataCatalogRestClientContext.js","sourceRoot":"","sources":["../src/dataCatalogRestClientContext.ts"],"names":[],"mappings":"AAAA;;;;;;;GAOG;;AAIH,OAAO,KAAK,WAAW,MAAM,yBAAyB,CAAC;AAGvD,IAAM,WAAW,GAAG,wBAAwB,CAAC;AAC7C,IAAM,cAAc,GAAG,OAAO,CAAC;AAE/B;IAAkD,gDAA8B;IAM9E;;;;;;;;;;;;;OAaG;IACH,sCAAY,WAA8D,EAAE,cAAsB,EAAE,WAAmB,EAAE,OAA6C;QAAtK,iBAoCC;QAnCC,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;QACD,IAAI,WAAW,IAAI,SAAS,EAAE;YAC5B,MAAM,IAAI,KAAK,CAAC,iCAAiC,CAAC,CAAC;SACpD;QAED,IAAI,CAAC,OAAO,EAAE;YACZ,OAAO,GAAG,EAAE,CAAC;SACd;QACD,IAAI,CAAC,OAAO,CAAC,SAAS,EAAE;YACtB,IAAM,gBAAgB,GAAG,WAAW,CAAC,wBAAwB,EAAE,CAAC;YAChE,OAAO,CAAC,SAAS,GAAM,WAAW,SAAI,cAAc,SAAI,gBAAkB,CAAC;SAC5E;QAED,QAAA,kBAAM,WAAW,EAAE,OAAO,CAAC,SAAC;QAE5B,KAAI,CAAC,UAAU,GAAG,YAAY,CAAC;QAC/B,KAAI,CAAC,cAAc,GAAG,OAAO,CAAC;QAC9B,KAAI,CAAC,gCAAgC,GAAG,EAAE,CAAC;QAC3C,KAAI,CAAC,OAAO,GAAG,OAAO,CAAC,OAAO,IAAI,KAAI,CAAC,OAAO,IAAI,8BAA8B,CAAC;QACjF,KAAI,CAAC,kBAAkB,GAAG,iCAAiC,CAAC;QAC5D,KAAI,CAAC,WAAW,GAAG,WAAW,CAAC;QAC/B,KAAI,CAAC,cAAc,GAAG,cAAc,CAAC;QACrC,KAAI,CAAC,WAAW,GAAG,WAAW,CAAC;QAE/B,IAAI,OAAO,CAAC,cAAc,KAAK,IAAI,IAAI,OAAO,CAAC,cAAc,KAAK,SAAS,EAAE;YAC3E,KAAI,CAAC,cAAc,GAAG,OAAO,CAAC,cAAc,CAAC;SAC9C;QACD,IAAI,OAAO,CAAC,gCAAgC,KAAK,IAAI,IAAI,OAAO,CAAC,gCAAgC,KAAK,SAAS,EAAE;YAC/G,KAAI,CAAC,gCAAgC,GAAG,OAAO,CAAC,gCAAgC,CAAC;SAClF;;IACH,CAAC;IACH,mCAAC;AAAD,CAAC,AAzDD,CAAkD,WAAW,CAAC,kBAAkB,GAyD/E"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"aDCCatalogsMappers.d.ts","sourceRoot":"","sources":["../../src/models/aDCCatalogsMappers.ts"],"names":[],"mappings":"AAQA,OAAO,EACL,UAAU,EACV,qBAAqB,EACrB,YAAY,EACZ,UAAU,EACV,UAAU,EACV,QAAQ,EACT,MAAM,mBAAmB,CAAC"}
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
/*
|
|
2
|
-
* Copyright (c) Microsoft Corporation.
|
|
3
|
-
* Licensed under the MIT License.
|
|
4
|
-
*
|
|
5
|
-
* Code generated by Microsoft (R) AutoRest Code Generator.
|
|
6
|
-
* Changes may cause incorrect behavior and will be lost if the code is regenerated.
|
|
7
|
-
*/
|
|
8
|
-
export { ADCCatalog, ADCCatalogsListResult, BaseResource, CloudError, Principals, Resource } from "../models/mappers";
|
|
9
|
-
//# sourceMappingURL=aDCCatalogsMappers.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"aDCCatalogsMappers.js","sourceRoot":"","sources":["../../src/models/aDCCatalogsMappers.ts"],"names":[],"mappings":"AAAA;;;;;;GAMG;AAEH,OAAO,EACL,UAAU,EACV,qBAAqB,EACrB,YAAY,EACZ,UAAU,EACV,UAAU,EACV,QAAQ,EACT,MAAM,mBAAmB,CAAC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"aDCOperationsMappers.d.ts","sourceRoot":"","sources":["../../src/models/aDCOperationsMappers.ts"],"names":[],"mappings":"AAQA,OAAO,EACL,UAAU,EACV,oBAAoB,EACpB,eAAe,EACf,yBAAyB,EAC1B,MAAM,mBAAmB,CAAC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"aDCOperationsMappers.js","sourceRoot":"","sources":["../../src/models/aDCOperationsMappers.ts"],"names":[],"mappings":"AAAA;;;;;;GAMG;AAEH,OAAO,EACL,UAAU,EACV,oBAAoB,EACpB,eAAe,EACf,yBAAyB,EAC1B,MAAM,mBAAmB,CAAC"}
|