@azure/arm-dns 4.1.1 → 5.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.
Files changed (139) hide show
  1. package/CHANGELOG.md +11 -0
  2. package/LICENSE +21 -0
  3. package/README.md +69 -87
  4. package/dist/index.js +2060 -0
  5. package/dist/index.js.map +1 -0
  6. package/dist/index.min.js +1 -0
  7. package/dist/index.min.js.map +1 -0
  8. package/dist-esm/src/dnsManagementClient.d.ts +21 -0
  9. package/dist-esm/src/dnsManagementClient.d.ts.map +1 -0
  10. package/dist-esm/src/dnsManagementClient.js +54 -0
  11. package/dist-esm/src/dnsManagementClient.js.map +1 -0
  12. package/dist-esm/src/index.d.ts +5 -0
  13. package/dist-esm/src/index.d.ts.map +1 -0
  14. package/dist-esm/src/index.js +12 -0
  15. package/dist-esm/src/index.js.map +1 -0
  16. package/dist-esm/src/lroImpl.d.ts +16 -0
  17. package/dist-esm/src/lroImpl.d.ts.map +1 -0
  18. package/dist-esm/src/lroImpl.js +29 -0
  19. package/dist-esm/src/lroImpl.js.map +1 -0
  20. package/dist-esm/src/models/index.d.ts +415 -0
  21. package/dist-esm/src/models/index.d.ts.map +1 -0
  22. package/dist-esm/src/models/index.js +9 -0
  23. package/dist-esm/src/models/index.js.map +1 -0
  24. package/dist-esm/src/models/mappers.d.ts +25 -0
  25. package/dist-esm/src/models/mappers.d.ts.map +1 -0
  26. package/{esm → dist-esm/src}/models/mappers.js +353 -334
  27. package/dist-esm/src/models/mappers.js.map +1 -0
  28. package/dist-esm/src/models/parameters.d.ts +21 -0
  29. package/dist-esm/src/models/parameters.d.ts.map +1 -0
  30. package/{esm → dist-esm/src}/models/parameters.js +92 -68
  31. package/dist-esm/src/models/parameters.js.map +1 -0
  32. package/dist-esm/src/operations/dnsResourceReferenceOperations.d.ts +19 -0
  33. package/dist-esm/src/operations/dnsResourceReferenceOperations.d.ts.map +1 -0
  34. package/dist-esm/src/operations/dnsResourceReferenceOperations.js +49 -0
  35. package/dist-esm/src/operations/dnsResourceReferenceOperations.js.map +1 -0
  36. package/{esm → dist-esm/src}/operations/index.d.ts +0 -0
  37. package/dist-esm/src/operations/index.d.ts.map +1 -0
  38. package/{esm → dist-esm/src}/operations/index.js +3 -5
  39. package/dist-esm/src/operations/index.js.map +1 -0
  40. package/dist-esm/src/operations/recordSets.d.ts +129 -0
  41. package/dist-esm/src/operations/recordSets.d.ts.map +1 -0
  42. package/dist-esm/src/operations/recordSets.js +571 -0
  43. package/dist-esm/src/operations/recordSets.js.map +1 -0
  44. package/dist-esm/src/operations/zones.d.ts +93 -0
  45. package/dist-esm/src/operations/zones.d.ts.map +1 -0
  46. package/dist-esm/src/operations/zones.js +414 -0
  47. package/dist-esm/src/operations/zones.js.map +1 -0
  48. package/dist-esm/src/operationsInterfaces/dnsResourceReferenceOperations.d.ts +11 -0
  49. package/dist-esm/src/operationsInterfaces/dnsResourceReferenceOperations.d.ts.map +1 -0
  50. package/dist-esm/src/operationsInterfaces/dnsResourceReferenceOperations.js +9 -0
  51. package/dist-esm/src/operationsInterfaces/dnsResourceReferenceOperations.js.map +1 -0
  52. package/dist-esm/src/operationsInterfaces/index.d.ts +4 -0
  53. package/dist-esm/src/operationsInterfaces/index.d.ts.map +1 -0
  54. package/dist-esm/src/operationsInterfaces/index.js +11 -0
  55. package/dist-esm/src/operationsInterfaces/index.js.map +1 -0
  56. package/dist-esm/src/operationsInterfaces/recordSets.d.ts +68 -0
  57. package/dist-esm/src/operationsInterfaces/recordSets.d.ts.map +1 -0
  58. package/dist-esm/src/operationsInterfaces/recordSets.js +9 -0
  59. package/dist-esm/src/operationsInterfaces/recordSets.js.map +1 -0
  60. package/dist-esm/src/operationsInterfaces/zones.d.ts +57 -0
  61. package/dist-esm/src/operationsInterfaces/zones.d.ts.map +1 -0
  62. package/dist-esm/src/operationsInterfaces/zones.js +9 -0
  63. package/dist-esm/src/operationsInterfaces/zones.js.map +1 -0
  64. package/dist-esm/test/sampleTest.d.ts +2 -0
  65. package/dist-esm/test/sampleTest.d.ts.map +1 -0
  66. package/dist-esm/test/sampleTest.js +40 -0
  67. package/dist-esm/test/sampleTest.js.map +1 -0
  68. package/package.json +65 -32
  69. package/review/arm-dns.api.md +393 -0
  70. package/rollup.config.js +181 -30
  71. package/src/dnsManagementClient.ts +78 -41
  72. package/src/index.ts +12 -0
  73. package/src/lroImpl.ts +34 -0
  74. package/src/models/index.ts +344 -774
  75. package/src/models/mappers.ts +360 -338
  76. package/src/models/parameters.ts +120 -69
  77. package/src/operations/dnsResourceReferenceOperations.ts +37 -56
  78. package/src/operations/index.ts +3 -5
  79. package/src/operations/recordSets.ts +508 -411
  80. package/src/operations/zones.ts +348 -317
  81. package/src/operationsInterfaces/dnsResourceReferenceOperations.ts +26 -0
  82. package/src/operationsInterfaces/index.ts +11 -0
  83. package/src/operationsInterfaces/recordSets.ts +129 -0
  84. package/src/operationsInterfaces/zones.ts +103 -0
  85. package/tsconfig.json +3 -3
  86. package/types/arm-dns.d.ts +629 -0
  87. package/types/tsdoc-metadata.json +11 -0
  88. package/dist/arm-dns.js +0 -1857
  89. package/dist/arm-dns.js.map +0 -1
  90. package/dist/arm-dns.min.js +0 -1
  91. package/dist/arm-dns.min.js.map +0 -1
  92. package/esm/dnsManagementClient.d.ts +0 -27
  93. package/esm/dnsManagementClient.d.ts.map +0 -1
  94. package/esm/dnsManagementClient.js +0 -41
  95. package/esm/dnsManagementClient.js.map +0 -1
  96. package/esm/dnsManagementClientContext.d.ts +0 -23
  97. package/esm/dnsManagementClientContext.d.ts.map +0 -1
  98. package/esm/dnsManagementClientContext.js +0 -62
  99. package/esm/dnsManagementClientContext.js.map +0 -1
  100. package/esm/models/dnsResourceReferenceOperationsMappers.d.ts +0 -2
  101. package/esm/models/dnsResourceReferenceOperationsMappers.d.ts.map +0 -1
  102. package/esm/models/dnsResourceReferenceOperationsMappers.js +0 -9
  103. package/esm/models/dnsResourceReferenceOperationsMappers.js.map +0 -1
  104. package/esm/models/index.d.ts +0 -857
  105. package/esm/models/index.d.ts.map +0 -1
  106. package/esm/models/index.js +0 -8
  107. package/esm/models/index.js.map +0 -1
  108. package/esm/models/mappers.d.ts +0 -25
  109. package/esm/models/mappers.d.ts.map +0 -1
  110. package/esm/models/mappers.js.map +0 -1
  111. package/esm/models/parameters.d.ts +0 -15
  112. package/esm/models/parameters.d.ts.map +0 -1
  113. package/esm/models/parameters.js.map +0 -1
  114. package/esm/models/recordSetsMappers.d.ts +0 -2
  115. package/esm/models/recordSetsMappers.d.ts.map +0 -1
  116. package/esm/models/recordSetsMappers.js +0 -9
  117. package/esm/models/recordSetsMappers.js.map +0 -1
  118. package/esm/models/zonesMappers.d.ts +0 -2
  119. package/esm/models/zonesMappers.d.ts.map +0 -1
  120. package/esm/models/zonesMappers.js +0 -9
  121. package/esm/models/zonesMappers.js.map +0 -1
  122. package/esm/operations/dnsResourceReferenceOperations.d.ts +0 -31
  123. package/esm/operations/dnsResourceReferenceOperations.d.ts.map +0 -1
  124. package/esm/operations/dnsResourceReferenceOperations.js +0 -60
  125. package/esm/operations/dnsResourceReferenceOperations.js.map +0 -1
  126. package/esm/operations/index.d.ts.map +0 -1
  127. package/esm/operations/index.js.map +0 -1
  128. package/esm/operations/recordSets.d.ts +0 -268
  129. package/esm/operations/recordSets.d.ts.map +0 -1
  130. package/esm/operations/recordSets.js +0 -363
  131. package/esm/operations/recordSets.js.map +0 -1
  132. package/esm/operations/zones.d.ts +0 -170
  133. package/esm/operations/zones.d.ts.map +0 -1
  134. package/esm/operations/zones.js +0 -299
  135. package/esm/operations/zones.js.map +0 -1
  136. package/src/dnsManagementClientContext.ts +0 -69
  137. package/src/models/dnsResourceReferenceOperationsMappers.ts +0 -15
  138. package/src/models/recordSetsMappers.ts +0 -27
  139. package/src/models/zonesMappers.ts +0 -28
@@ -1 +0,0 @@
1
- {"version":3,"file":"arm-dns.js","sources":["../node_modules/tslib/tslib.es6.js","../src/models/index.ts","../src/models/mappers.ts","../src/models/recordSetsMappers.ts","../src/models/parameters.ts","../src/operations/recordSets.ts","../src/models/zonesMappers.ts","../src/operations/zones.ts","../src/models/dnsResourceReferenceOperationsMappers.ts","../src/operations/dnsResourceReferenceOperations.ts","../src/dnsManagementClientContext.ts","../src/dnsManagementClient.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 * An A record.\n */\nexport interface ARecord {\n /**\n * The IPv4 address of this A record.\n */\n ipv4Address?: string;\n}\n\n/**\n * An AAAA record.\n */\nexport interface AaaaRecord {\n /**\n * The IPv6 address of this AAAA record.\n */\n ipv6Address?: string;\n}\n\n/**\n * An MX record.\n */\nexport interface MxRecord {\n /**\n * The preference value for this MX record.\n */\n preference?: number;\n /**\n * The domain name of the mail host for this MX record.\n */\n exchange?: string;\n}\n\n/**\n * An NS record.\n */\nexport interface NsRecord {\n /**\n * The name server name for this NS record.\n */\n nsdname?: string;\n}\n\n/**\n * A PTR record.\n */\nexport interface PtrRecord {\n /**\n * The PTR target domain name for this PTR record.\n */\n ptrdname?: string;\n}\n\n/**\n * An SRV record.\n */\nexport interface SrvRecord {\n /**\n * The priority value for this SRV record.\n */\n priority?: number;\n /**\n * The weight value for this SRV record.\n */\n weight?: number;\n /**\n * The port value for this SRV record.\n */\n port?: number;\n /**\n * The target domain name for this SRV record.\n */\n target?: string;\n}\n\n/**\n * A TXT record.\n */\nexport interface TxtRecord {\n /**\n * The text value of this TXT record.\n */\n value?: string[];\n}\n\n/**\n * A CNAME record.\n */\nexport interface CnameRecord {\n /**\n * The canonical name for this CNAME record.\n */\n cname?: string;\n}\n\n/**\n * An SOA record.\n */\nexport interface SoaRecord {\n /**\n * The domain name of the authoritative name server for this SOA record.\n */\n host?: string;\n /**\n * The email contact for this SOA record.\n */\n email?: string;\n /**\n * The serial number for this SOA record.\n */\n serialNumber?: number;\n /**\n * The refresh value for this SOA record.\n */\n refreshTime?: number;\n /**\n * The retry time for this SOA record.\n */\n retryTime?: number;\n /**\n * The expire time for this SOA record.\n */\n expireTime?: number;\n /**\n * The minimum value for this SOA record. By convention this is used to determine the negative\n * caching duration.\n */\n minimumTtl?: number;\n}\n\n/**\n * A CAA record.\n */\nexport interface CaaRecord {\n /**\n * The flags for this CAA record as an integer between 0 and 255.\n */\n flags?: number;\n /**\n * The tag for this CAA record.\n */\n tag?: string;\n /**\n * The value for this CAA record.\n */\n value?: string;\n}\n\n/**\n * A reference to a another resource\n */\nexport interface SubResource {\n /**\n * Resource Id.\n */\n id?: string;\n}\n\n/**\n * Describes a DNS record set (a collection of DNS records with the same name and type).\n */\nexport interface RecordSet extends BaseResource {\n /**\n * The ID of the record set.\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 record set.\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 record set.\n * **NOTE: This property will not be serialized. It can only be populated by the server.**\n */\n readonly type?: string;\n /**\n * The etag of the record set.\n */\n etag?: string;\n /**\n * The metadata attached to the record set.\n */\n metadata?: { [propertyName: string]: string };\n /**\n * The TTL (time-to-live) of the records in the record set.\n */\n tTL?: number;\n /**\n * Fully qualified domain name of the record set.\n * **NOTE: This property will not be serialized. It can only be populated by the server.**\n */\n readonly fqdn?: string;\n /**\n * provisioning State of the record set.\n * **NOTE: This property will not be serialized. It can only be populated by the server.**\n */\n readonly provisioningState?: string;\n /**\n * A reference to an azure resource from where the dns resource value is taken.\n */\n targetResource?: SubResource;\n /**\n * The list of A records in the record set.\n */\n aRecords?: ARecord[];\n /**\n * The list of AAAA records in the record set.\n */\n aaaaRecords?: AaaaRecord[];\n /**\n * The list of MX records in the record set.\n */\n mxRecords?: MxRecord[];\n /**\n * The list of NS records in the record set.\n */\n nsRecords?: NsRecord[];\n /**\n * The list of PTR records in the record set.\n */\n ptrRecords?: PtrRecord[];\n /**\n * The list of SRV records in the record set.\n */\n srvRecords?: SrvRecord[];\n /**\n * The list of TXT records in the record set.\n */\n txtRecords?: TxtRecord[];\n /**\n * The CNAME record in the record set.\n */\n cnameRecord?: CnameRecord;\n /**\n * The SOA record in the record set.\n */\n soaRecord?: SoaRecord;\n /**\n * The list of CAA records in the record set.\n */\n caaRecords?: CaaRecord[];\n}\n\n/**\n * Parameters supplied to update a record set.\n */\nexport interface RecordSetUpdateParameters {\n /**\n * Specifies information about the record set being updated.\n */\n recordSet?: RecordSet;\n}\n\n/**\n * Common properties of an Azure Resource Manager resource\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\n/**\n * Describes a DNS zone.\n */\nexport interface Zone extends Resource {\n /**\n * The etag of the zone.\n */\n etag?: string;\n /**\n * The maximum number of record sets that can be created in this DNS zone. This is a read-only\n * property and any attempt to set this value will be ignored.\n * **NOTE: This property will not be serialized. It can only be populated by the server.**\n */\n readonly maxNumberOfRecordSets?: number;\n /**\n * The current number of record sets in this DNS zone. This is a read-only property and any\n * attempt to set this value will be ignored.\n * **NOTE: This property will not be serialized. It can only be populated by the server.**\n */\n readonly numberOfRecordSets?: number;\n /**\n * The name servers for this DNS zone. This is a read-only property and any attempt to set this\n * value will be ignored.\n * **NOTE: This property will not be serialized. It can only be populated by the server.**\n */\n readonly nameServers?: string[];\n /**\n * The type of this DNS zone (Public or Private). Possible values include: 'Public', 'Private'.\n * Default value: 'Public'.\n */\n zoneType?: ZoneType;\n /**\n * A list of references to virtual networks that register hostnames in this DNS zone. This is a\n * only when ZoneType is Private.\n */\n registrationVirtualNetworks?: SubResource[];\n /**\n * A list of references to virtual networks that resolve records in this DNS zone. This is a only\n * when ZoneType is Private.\n */\n resolutionVirtualNetworks?: SubResource[];\n}\n\n/**\n * Describes a request to update a DNS zone.\n */\nexport interface ZoneUpdate {\n /**\n * Resource tags.\n */\n tags?: { [propertyName: string]: string };\n}\n\n/**\n * Represents the properties of the Dns Resource Reference Request.\n */\nexport interface DnsResourceReferenceRequest {\n /**\n * A list of references to azure resources for which referencing dns records need to be queried.\n */\n targetResources?: SubResource[];\n}\n\n/**\n * Represents a single Azure resource and its referencing DNS records.\n */\nexport interface DnsResourceReference {\n /**\n * A list of dns Records\n */\n dnsResources?: SubResource[];\n /**\n * A reference to an azure resource from where the dns resource value is taken.\n */\n targetResource?: SubResource;\n}\n\n/**\n * Represents the properties of the Dns Resource Reference Result.\n */\nexport interface DnsResourceReferenceResult {\n /**\n * The result of dns resource reference request. A list of dns resource references for each of\n * the azure resource in the request\n */\n dnsResourceReferences?: DnsResourceReference[];\n}\n\n/**\n * Optional Parameters.\n */\nexport interface RecordSetsUpdateOptionalParams extends msRest.RequestOptionsBase {\n /**\n * The etag of the record set. Omit this value to always overwrite the current record set.\n * Specify the last-seen etag value to prevent accidentally overwriting concurrent changes.\n */\n ifMatch?: string;\n}\n\n/**\n * Optional Parameters.\n */\nexport interface RecordSetsCreateOrUpdateOptionalParams extends msRest.RequestOptionsBase {\n /**\n * The etag of the record set. Omit this value to always overwrite the current record set.\n * Specify the last-seen etag value to prevent accidentally overwriting any concurrent changes.\n */\n ifMatch?: string;\n /**\n * Set to '*' to allow a new record set to be created, but to prevent updating an existing record\n * set. Other values will be ignored.\n */\n ifNoneMatch?: string;\n}\n\n/**\n * Optional Parameters.\n */\nexport interface RecordSetsDeleteMethodOptionalParams extends msRest.RequestOptionsBase {\n /**\n * The etag of the record set. Omit this value to always delete the current record set. Specify\n * the last-seen etag value to prevent accidentally deleting any concurrent changes.\n */\n ifMatch?: string;\n}\n\n/**\n * Optional Parameters.\n */\nexport interface RecordSetsListByTypeOptionalParams extends msRest.RequestOptionsBase {\n /**\n * The maximum number of record sets to return. If not specified, returns up to 100 record sets.\n */\n top?: number;\n /**\n * The suffix label of the record set name that has to be used to filter the record set\n * enumerations. If this parameter is specified, Enumeration will return only records that end\n * with .<recordSetNameSuffix>\n */\n recordsetnamesuffix?: string;\n}\n\n/**\n * Optional Parameters.\n */\nexport interface RecordSetsListByDnsZoneOptionalParams extends msRest.RequestOptionsBase {\n /**\n * The maximum number of record sets to return. If not specified, returns up to 100 record sets.\n */\n top?: number;\n /**\n * The suffix label of the record set name that has to be used to filter the record set\n * enumerations. If this parameter is specified, Enumeration will return only records that end\n * with .<recordSetNameSuffix>\n */\n recordsetnamesuffix?: string;\n}\n\n/**\n * Optional Parameters.\n */\nexport interface RecordSetsListAllByDnsZoneOptionalParams extends msRest.RequestOptionsBase {\n /**\n * The maximum number of record sets to return. If not specified, returns up to 100 record sets.\n */\n top?: number;\n /**\n * The suffix label of the record set name that has to be used to filter the record set\n * enumerations. If this parameter is specified, Enumeration will return only records that end\n * with .<recordSetNameSuffix>\n */\n recordSetNameSuffix?: string;\n}\n\n/**\n * Optional Parameters.\n */\nexport interface ZonesCreateOrUpdateOptionalParams extends msRest.RequestOptionsBase {\n /**\n * The etag of the DNS zone. Omit this value to always overwrite the current zone. Specify the\n * last-seen etag value to prevent accidentally overwriting any concurrent changes.\n */\n ifMatch?: string;\n /**\n * Set to '*' to allow a new DNS zone to be created, but to prevent updating an existing zone.\n * Other values will be ignored.\n */\n ifNoneMatch?: string;\n}\n\n/**\n * Optional Parameters.\n */\nexport interface ZonesDeleteMethodOptionalParams extends msRest.RequestOptionsBase {\n /**\n * The etag of the DNS zone. Omit this value to always delete the current zone. Specify the\n * last-seen etag value to prevent accidentally deleting any concurrent changes.\n */\n ifMatch?: string;\n}\n\n/**\n * Optional Parameters.\n */\nexport interface ZonesUpdateOptionalParams extends msRest.RequestOptionsBase {\n /**\n * The etag of the DNS zone. Omit this value to always overwrite the current zone. Specify the\n * last-seen etag value to prevent accidentally overwriting any concurrent changes.\n */\n ifMatch?: string;\n}\n\n/**\n * Optional Parameters.\n */\nexport interface ZonesListByResourceGroupOptionalParams extends msRest.RequestOptionsBase {\n /**\n * The maximum number of record sets to return. If not specified, returns up to 100 record sets.\n */\n top?: number;\n}\n\n/**\n * Optional Parameters.\n */\nexport interface ZonesListOptionalParams extends msRest.RequestOptionsBase {\n /**\n * The maximum number of DNS zones to return. If not specified, returns up to 100 zones.\n */\n top?: number;\n}\n\n/**\n * Optional Parameters.\n */\nexport interface ZonesBeginDeleteMethodOptionalParams extends msRest.RequestOptionsBase {\n /**\n * The etag of the DNS zone. Omit this value to always delete the current zone. Specify the\n * last-seen etag value to prevent accidentally deleting any concurrent changes.\n */\n ifMatch?: string;\n}\n\n/**\n * An interface representing DnsManagementClientOptions.\n */\nexport interface DnsManagementClientOptions extends AzureServiceClientOptions {\n baseUri?: string;\n}\n\n/**\n * @interface\n * The response to a record set List operation.\n * @extends Array<RecordSet>\n */\nexport interface RecordSetListResult extends Array<RecordSet> {\n /**\n * The continuation token for the next page of results.\n * **NOTE: This property will not be serialized. It can only be populated by the server.**\n */\n readonly nextLink?: string;\n}\n\n/**\n * @interface\n * The response to a Zone List or ListAll operation.\n * @extends Array<Zone>\n */\nexport interface ZoneListResult extends Array<Zone> {\n /**\n * The continuation token for the next page of results.\n * **NOTE: This property will not be serialized. It can only be populated by the server.**\n */\n readonly nextLink?: string;\n}\n\n/**\n * Defines values for ZoneType.\n * Possible values include: 'Public', 'Private'\n * @readonly\n * @enum {string}\n */\nexport type ZoneType = 'Public' | 'Private';\n\n/**\n * Defines values for RecordType.\n * Possible values include: 'A', 'AAAA', 'CAA', 'CNAME', 'MX', 'NS', 'PTR', 'SOA', 'SRV', 'TXT'\n * @readonly\n * @enum {string}\n */\nexport type RecordType = 'A' | 'AAAA' | 'CAA' | 'CNAME' | 'MX' | 'NS' | 'PTR' | 'SOA' | 'SRV' | 'TXT';\n\n/**\n * Contains response data for the update operation.\n */\nexport type RecordSetsUpdateResponse = RecordSet & {\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: RecordSet;\n };\n};\n\n/**\n * Contains response data for the createOrUpdate operation.\n */\nexport type RecordSetsCreateOrUpdateResponse = RecordSet & {\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: RecordSet;\n };\n};\n\n/**\n * Contains response data for the get operation.\n */\nexport type RecordSetsGetResponse = RecordSet & {\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: RecordSet;\n };\n};\n\n/**\n * Contains response data for the listByType operation.\n */\nexport type RecordSetsListByTypeResponse = RecordSetListResult & {\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: RecordSetListResult;\n };\n};\n\n/**\n * Contains response data for the listByDnsZone operation.\n */\nexport type RecordSetsListByDnsZoneResponse = RecordSetListResult & {\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: RecordSetListResult;\n };\n};\n\n/**\n * Contains response data for the listAllByDnsZone operation.\n */\nexport type RecordSetsListAllByDnsZoneResponse = RecordSetListResult & {\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: RecordSetListResult;\n };\n};\n\n/**\n * Contains response data for the listByTypeNext operation.\n */\nexport type RecordSetsListByTypeNextResponse = RecordSetListResult & {\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: RecordSetListResult;\n };\n};\n\n/**\n * Contains response data for the listByDnsZoneNext operation.\n */\nexport type RecordSetsListByDnsZoneNextResponse = RecordSetListResult & {\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: RecordSetListResult;\n };\n};\n\n/**\n * Contains response data for the listAllByDnsZoneNext operation.\n */\nexport type RecordSetsListAllByDnsZoneNextResponse = RecordSetListResult & {\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: RecordSetListResult;\n };\n};\n\n/**\n * Contains response data for the createOrUpdate operation.\n */\nexport type ZonesCreateOrUpdateResponse = Zone & {\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: Zone;\n };\n};\n\n/**\n * Contains response data for the get operation.\n */\nexport type ZonesGetResponse = Zone & {\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: Zone;\n };\n};\n\n/**\n * Contains response data for the update operation.\n */\nexport type ZonesUpdateResponse = Zone & {\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: Zone;\n };\n};\n\n/**\n * Contains response data for the listByResourceGroup operation.\n */\nexport type ZonesListByResourceGroupResponse = ZoneListResult & {\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: ZoneListResult;\n };\n};\n\n/**\n * Contains response data for the list operation.\n */\nexport type ZonesListResponse = ZoneListResult & {\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: ZoneListResult;\n };\n};\n\n/**\n * Contains response data for the listByResourceGroupNext operation.\n */\nexport type ZonesListByResourceGroupNextResponse = ZoneListResult & {\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: ZoneListResult;\n };\n};\n\n/**\n * Contains response data for the listNext operation.\n */\nexport type ZonesListNextResponse = ZoneListResult & {\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: ZoneListResult;\n };\n};\n\n/**\n * Contains response data for the getByTargetResources operation.\n */\nexport type DnsResourceReferenceGetByTargetResourcesResponse = DnsResourceReferenceResult & {\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: DnsResourceReferenceResult;\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 ARecord: msRest.CompositeMapper = {\n serializedName: \"ARecord\",\n type: {\n name: \"Composite\",\n className: \"ARecord\",\n modelProperties: {\n ipv4Address: {\n serializedName: \"ipv4Address\",\n type: {\n name: \"String\"\n }\n }\n }\n }\n};\n\nexport const AaaaRecord: msRest.CompositeMapper = {\n serializedName: \"AaaaRecord\",\n type: {\n name: \"Composite\",\n className: \"AaaaRecord\",\n modelProperties: {\n ipv6Address: {\n serializedName: \"ipv6Address\",\n type: {\n name: \"String\"\n }\n }\n }\n }\n};\n\nexport const MxRecord: msRest.CompositeMapper = {\n serializedName: \"MxRecord\",\n type: {\n name: \"Composite\",\n className: \"MxRecord\",\n modelProperties: {\n preference: {\n serializedName: \"preference\",\n type: {\n name: \"Number\"\n }\n },\n exchange: {\n serializedName: \"exchange\",\n type: {\n name: \"String\"\n }\n }\n }\n }\n};\n\nexport const NsRecord: msRest.CompositeMapper = {\n serializedName: \"NsRecord\",\n type: {\n name: \"Composite\",\n className: \"NsRecord\",\n modelProperties: {\n nsdname: {\n serializedName: \"nsdname\",\n type: {\n name: \"String\"\n }\n }\n }\n }\n};\n\nexport const PtrRecord: msRest.CompositeMapper = {\n serializedName: \"PtrRecord\",\n type: {\n name: \"Composite\",\n className: \"PtrRecord\",\n modelProperties: {\n ptrdname: {\n serializedName: \"ptrdname\",\n type: {\n name: \"String\"\n }\n }\n }\n }\n};\n\nexport const SrvRecord: msRest.CompositeMapper = {\n serializedName: \"SrvRecord\",\n type: {\n name: \"Composite\",\n className: \"SrvRecord\",\n modelProperties: {\n priority: {\n serializedName: \"priority\",\n type: {\n name: \"Number\"\n }\n },\n weight: {\n serializedName: \"weight\",\n type: {\n name: \"Number\"\n }\n },\n port: {\n serializedName: \"port\",\n type: {\n name: \"Number\"\n }\n },\n target: {\n serializedName: \"target\",\n type: {\n name: \"String\"\n }\n }\n }\n }\n};\n\nexport const TxtRecord: msRest.CompositeMapper = {\n serializedName: \"TxtRecord\",\n type: {\n name: \"Composite\",\n className: \"TxtRecord\",\n modelProperties: {\n value: {\n serializedName: \"value\",\n type: {\n name: \"Sequence\",\n element: {\n type: {\n name: \"String\"\n }\n }\n }\n }\n }\n }\n};\n\nexport const CnameRecord: msRest.CompositeMapper = {\n serializedName: \"CnameRecord\",\n type: {\n name: \"Composite\",\n className: \"CnameRecord\",\n modelProperties: {\n cname: {\n serializedName: \"cname\",\n type: {\n name: \"String\"\n }\n }\n }\n }\n};\n\nexport const SoaRecord: msRest.CompositeMapper = {\n serializedName: \"SoaRecord\",\n type: {\n name: \"Composite\",\n className: \"SoaRecord\",\n modelProperties: {\n host: {\n serializedName: \"host\",\n type: {\n name: \"String\"\n }\n },\n email: {\n serializedName: \"email\",\n type: {\n name: \"String\"\n }\n },\n serialNumber: {\n serializedName: \"serialNumber\",\n type: {\n name: \"Number\"\n }\n },\n refreshTime: {\n serializedName: \"refreshTime\",\n type: {\n name: \"Number\"\n }\n },\n retryTime: {\n serializedName: \"retryTime\",\n type: {\n name: \"Number\"\n }\n },\n expireTime: {\n serializedName: \"expireTime\",\n type: {\n name: \"Number\"\n }\n },\n minimumTtl: {\n serializedName: \"minimumTTL\",\n type: {\n name: \"Number\"\n }\n }\n }\n }\n};\n\nexport const CaaRecord: msRest.CompositeMapper = {\n serializedName: \"CaaRecord\",\n type: {\n name: \"Composite\",\n className: \"CaaRecord\",\n modelProperties: {\n flags: {\n serializedName: \"flags\",\n type: {\n name: \"Number\"\n }\n },\n tag: {\n serializedName: \"tag\",\n type: {\n name: \"String\"\n }\n },\n value: {\n serializedName: \"value\",\n type: {\n name: \"String\"\n }\n }\n }\n }\n};\n\nexport const SubResource: msRest.CompositeMapper = {\n serializedName: \"SubResource\",\n type: {\n name: \"Composite\",\n className: \"SubResource\",\n modelProperties: {\n id: {\n serializedName: \"id\",\n type: {\n name: \"String\"\n }\n }\n }\n }\n};\n\nexport const RecordSet: msRest.CompositeMapper = {\n serializedName: \"RecordSet\",\n type: {\n name: \"Composite\",\n className: \"RecordSet\",\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 etag: {\n serializedName: \"etag\",\n type: {\n name: \"String\"\n }\n },\n metadata: {\n serializedName: \"properties.metadata\",\n type: {\n name: \"Dictionary\",\n value: {\n type: {\n name: \"String\"\n }\n }\n }\n },\n tTL: {\n serializedName: \"properties.TTL\",\n type: {\n name: \"Number\"\n }\n },\n fqdn: {\n readOnly: true,\n serializedName: \"properties.fqdn\",\n type: {\n name: \"String\"\n }\n },\n provisioningState: {\n readOnly: true,\n serializedName: \"properties.provisioningState\",\n type: {\n name: \"String\"\n }\n },\n targetResource: {\n serializedName: \"properties.targetResource\",\n type: {\n name: \"Composite\",\n className: \"SubResource\"\n }\n },\n aRecords: {\n serializedName: \"properties.ARecords\",\n type: {\n name: \"Sequence\",\n element: {\n type: {\n name: \"Composite\",\n className: \"ARecord\"\n }\n }\n }\n },\n aaaaRecords: {\n serializedName: \"properties.AAAARecords\",\n type: {\n name: \"Sequence\",\n element: {\n type: {\n name: \"Composite\",\n className: \"AaaaRecord\"\n }\n }\n }\n },\n mxRecords: {\n serializedName: \"properties.MXRecords\",\n type: {\n name: \"Sequence\",\n element: {\n type: {\n name: \"Composite\",\n className: \"MxRecord\"\n }\n }\n }\n },\n nsRecords: {\n serializedName: \"properties.NSRecords\",\n type: {\n name: \"Sequence\",\n element: {\n type: {\n name: \"Composite\",\n className: \"NsRecord\"\n }\n }\n }\n },\n ptrRecords: {\n serializedName: \"properties.PTRRecords\",\n type: {\n name: \"Sequence\",\n element: {\n type: {\n name: \"Composite\",\n className: \"PtrRecord\"\n }\n }\n }\n },\n srvRecords: {\n serializedName: \"properties.SRVRecords\",\n type: {\n name: \"Sequence\",\n element: {\n type: {\n name: \"Composite\",\n className: \"SrvRecord\"\n }\n }\n }\n },\n txtRecords: {\n serializedName: \"properties.TXTRecords\",\n type: {\n name: \"Sequence\",\n element: {\n type: {\n name: \"Composite\",\n className: \"TxtRecord\"\n }\n }\n }\n },\n cnameRecord: {\n serializedName: \"properties.CNAMERecord\",\n type: {\n name: \"Composite\",\n className: \"CnameRecord\"\n }\n },\n soaRecord: {\n serializedName: \"properties.SOARecord\",\n type: {\n name: \"Composite\",\n className: \"SoaRecord\"\n }\n },\n caaRecords: {\n serializedName: \"properties.caaRecords\",\n type: {\n name: \"Sequence\",\n element: {\n type: {\n name: \"Composite\",\n className: \"CaaRecord\"\n }\n }\n }\n }\n }\n }\n};\n\nexport const RecordSetUpdateParameters: msRest.CompositeMapper = {\n serializedName: \"RecordSetUpdateParameters\",\n type: {\n name: \"Composite\",\n className: \"RecordSetUpdateParameters\",\n modelProperties: {\n recordSet: {\n serializedName: \"RecordSet\",\n type: {\n name: \"Composite\",\n className: \"RecordSet\"\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 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 }\n }\n};\n\nexport const Zone: msRest.CompositeMapper = {\n serializedName: \"Zone\",\n type: {\n name: \"Composite\",\n className: \"Zone\",\n modelProperties: {\n ...Resource.type.modelProperties,\n etag: {\n serializedName: \"etag\",\n type: {\n name: \"String\"\n }\n },\n maxNumberOfRecordSets: {\n readOnly: true,\n serializedName: \"properties.maxNumberOfRecordSets\",\n type: {\n name: \"Number\"\n }\n },\n numberOfRecordSets: {\n readOnly: true,\n serializedName: \"properties.numberOfRecordSets\",\n type: {\n name: \"Number\"\n }\n },\n nameServers: {\n readOnly: true,\n serializedName: \"properties.nameServers\",\n type: {\n name: \"Sequence\",\n element: {\n type: {\n name: \"String\"\n }\n }\n }\n },\n zoneType: {\n serializedName: \"properties.zoneType\",\n defaultValue: 'Public',\n type: {\n name: \"Enum\",\n allowedValues: [\n \"Public\",\n \"Private\"\n ]\n }\n },\n registrationVirtualNetworks: {\n serializedName: \"properties.registrationVirtualNetworks\",\n type: {\n name: \"Sequence\",\n element: {\n type: {\n name: \"Composite\",\n className: \"SubResource\"\n }\n }\n }\n },\n resolutionVirtualNetworks: {\n serializedName: \"properties.resolutionVirtualNetworks\",\n type: {\n name: \"Sequence\",\n element: {\n type: {\n name: \"Composite\",\n className: \"SubResource\"\n }\n }\n }\n }\n }\n }\n};\n\nexport const ZoneUpdate: msRest.CompositeMapper = {\n serializedName: \"ZoneUpdate\",\n type: {\n name: \"Composite\",\n className: \"ZoneUpdate\",\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 DnsResourceReferenceRequest: msRest.CompositeMapper = {\n serializedName: \"DnsResourceReferenceRequest\",\n type: {\n name: \"Composite\",\n className: \"DnsResourceReferenceRequest\",\n modelProperties: {\n targetResources: {\n serializedName: \"properties.targetResources\",\n type: {\n name: \"Sequence\",\n element: {\n type: {\n name: \"Composite\",\n className: \"SubResource\"\n }\n }\n }\n }\n }\n }\n};\n\nexport const DnsResourceReference: msRest.CompositeMapper = {\n serializedName: \"DnsResourceReference\",\n type: {\n name: \"Composite\",\n className: \"DnsResourceReference\",\n modelProperties: {\n dnsResources: {\n serializedName: \"dnsResources\",\n type: {\n name: \"Sequence\",\n element: {\n type: {\n name: \"Composite\",\n className: \"SubResource\"\n }\n }\n }\n },\n targetResource: {\n serializedName: \"targetResource\",\n type: {\n name: \"Composite\",\n className: \"SubResource\"\n }\n }\n }\n }\n};\n\nexport const DnsResourceReferenceResult: msRest.CompositeMapper = {\n serializedName: \"DnsResourceReferenceResult\",\n type: {\n name: \"Composite\",\n className: \"DnsResourceReferenceResult\",\n modelProperties: {\n dnsResourceReferences: {\n serializedName: \"properties.dnsResourceReferences\",\n type: {\n name: \"Sequence\",\n element: {\n type: {\n name: \"Composite\",\n className: \"DnsResourceReference\"\n }\n }\n }\n }\n }\n }\n};\n\nexport const RecordSetListResult: msRest.CompositeMapper = {\n serializedName: \"RecordSetListResult\",\n type: {\n name: \"Composite\",\n className: \"RecordSetListResult\",\n modelProperties: {\n value: {\n serializedName: \"\",\n type: {\n name: \"Sequence\",\n element: {\n type: {\n name: \"Composite\",\n className: \"RecordSet\"\n }\n }\n }\n },\n nextLink: {\n readOnly: true,\n serializedName: \"nextLink\",\n type: {\n name: \"String\"\n }\n }\n }\n }\n};\n\nexport const ZoneListResult: msRest.CompositeMapper = {\n serializedName: \"ZoneListResult\",\n type: {\n name: \"Composite\",\n className: \"ZoneListResult\",\n modelProperties: {\n value: {\n serializedName: \"\",\n type: {\n name: \"Sequence\",\n element: {\n type: {\n name: \"Composite\",\n className: \"Zone\"\n }\n }\n }\n },\n nextLink: {\n readOnly: true,\n serializedName: \"nextLink\",\n type: {\n name: \"String\"\n }\n }\n }\n }\n};\n","/*\n * Copyright (c) Microsoft Corporation. All rights reserved.\n * Licensed under the MIT License. See License.txt in the project root for license information.\n *\n * Code generated by Microsoft (R) AutoRest Code Generator.\n * Changes may cause incorrect behavior and will be lost if the code is regenerated.\n */\n\nexport {\n AaaaRecord,\n ARecord,\n BaseResource,\n CaaRecord,\n CloudError,\n CnameRecord,\n MxRecord,\n NsRecord,\n PtrRecord,\n RecordSet,\n RecordSetListResult,\n Resource,\n SoaRecord,\n SrvRecord,\n SubResource,\n TxtRecord,\n Zone\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 ifMatch: msRest.OperationParameter = {\n parameterPath: [\n \"options\",\n \"ifMatch\"\n ],\n mapper: {\n serializedName: \"If-Match\",\n type: {\n name: \"String\"\n }\n }\n};\nexport const ifNoneMatch: msRest.OperationParameter = {\n parameterPath: [\n \"options\",\n \"ifNoneMatch\"\n ],\n mapper: {\n serializedName: \"If-None-Match\",\n type: {\n name: \"String\"\n }\n }\n};\nexport const nextPageLink: msRest.OperationURLParameter = {\n parameterPath: \"nextPageLink\",\n mapper: {\n required: true,\n serializedName: \"nextLink\",\n type: {\n name: \"String\"\n }\n },\n skipEncoding: true\n};\nexport const recordSetNameSuffix: msRest.OperationQueryParameter = {\n parameterPath: [\n \"options\",\n \"recordSetNameSuffix\"\n ],\n mapper: {\n serializedName: \"$recordsetnamesuffix\",\n type: {\n name: \"String\"\n }\n }\n};\nexport const recordType: msRest.OperationURLParameter = {\n parameterPath: \"recordType\",\n mapper: {\n required: true,\n serializedName: \"recordType\",\n type: {\n name: \"Enum\",\n allowedValues: [\n \"A\",\n \"AAAA\",\n \"CAA\",\n \"CNAME\",\n \"MX\",\n \"NS\",\n \"PTR\",\n \"SOA\",\n \"SRV\",\n \"TXT\"\n ]\n }\n }\n};\nexport const recordsetnamesuffix: msRest.OperationQueryParameter = {\n parameterPath: [\n \"options\",\n \"recordsetnamesuffix\"\n ],\n mapper: {\n serializedName: \"$recordsetnamesuffix\",\n type: {\n name: \"String\"\n }\n }\n};\nexport const relativeRecordSetName: msRest.OperationURLParameter = {\n parameterPath: \"relativeRecordSetName\",\n mapper: {\n required: true,\n serializedName: \"relativeRecordSetName\",\n type: {\n name: \"String\"\n }\n },\n skipEncoding: true\n};\nexport const resourceGroupName: msRest.OperationURLParameter = {\n parameterPath: \"resourceGroupName\",\n mapper: {\n required: true,\n serializedName: \"resourceGroupName\",\n 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};\nexport const top: msRest.OperationQueryParameter = {\n parameterPath: [\n \"options\",\n \"top\"\n ],\n mapper: {\n serializedName: \"$top\",\n type: {\n name: \"Number\"\n }\n }\n};\nexport const zoneName: msRest.OperationURLParameter = {\n parameterPath: \"zoneName\",\n mapper: {\n required: true,\n serializedName: \"zoneName\",\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/recordSetsMappers\";\nimport * as Parameters from \"../models/parameters\";\nimport { DnsManagementClientContext } from \"../dnsManagementClientContext\";\n\n/** Class representing a RecordSets. */\nexport class RecordSets {\n private readonly client: DnsManagementClientContext;\n\n /**\n * Create a RecordSets.\n * @param {DnsManagementClientContext} client Reference to the service client.\n */\n constructor(client: DnsManagementClientContext) {\n this.client = client;\n }\n\n /**\n * Updates a record set within a DNS zone.\n * @param resourceGroupName The name of the resource group.\n * @param zoneName The name of the DNS zone (without a terminating dot).\n * @param relativeRecordSetName The name of the record set, relative to the name of the zone.\n * @param recordType The type of DNS record in this record set. Possible values include: 'A',\n * 'AAAA', 'CAA', 'CNAME', 'MX', 'NS', 'PTR', 'SOA', 'SRV', 'TXT'\n * @param parameters Parameters supplied to the Update operation.\n * @param [options] The optional parameters\n * @returns Promise<Models.RecordSetsUpdateResponse>\n */\n update(resourceGroupName: string, zoneName: string, relativeRecordSetName: string, recordType: Models.RecordType, parameters: Models.RecordSet, options?: Models.RecordSetsUpdateOptionalParams): Promise<Models.RecordSetsUpdateResponse>;\n /**\n * @param resourceGroupName The name of the resource group.\n * @param zoneName The name of the DNS zone (without a terminating dot).\n * @param relativeRecordSetName The name of the record set, relative to the name of the zone.\n * @param recordType The type of DNS record in this record set. Possible values include: 'A',\n * 'AAAA', 'CAA', 'CNAME', 'MX', 'NS', 'PTR', 'SOA', 'SRV', 'TXT'\n * @param parameters Parameters supplied to the Update operation.\n * @param callback The callback\n */\n update(resourceGroupName: string, zoneName: string, relativeRecordSetName: string, recordType: Models.RecordType, parameters: Models.RecordSet, callback: msRest.ServiceCallback<Models.RecordSet>): void;\n /**\n * @param resourceGroupName The name of the resource group.\n * @param zoneName The name of the DNS zone (without a terminating dot).\n * @param relativeRecordSetName The name of the record set, relative to the name of the zone.\n * @param recordType The type of DNS record in this record set. Possible values include: 'A',\n * 'AAAA', 'CAA', 'CNAME', 'MX', 'NS', 'PTR', 'SOA', 'SRV', 'TXT'\n * @param parameters Parameters supplied to the Update operation.\n * @param options The optional parameters\n * @param callback The callback\n */\n update(resourceGroupName: string, zoneName: string, relativeRecordSetName: string, recordType: Models.RecordType, parameters: Models.RecordSet, options: Models.RecordSetsUpdateOptionalParams, callback: msRest.ServiceCallback<Models.RecordSet>): void;\n update(resourceGroupName: string, zoneName: string, relativeRecordSetName: string, recordType: Models.RecordType, parameters: Models.RecordSet, options?: Models.RecordSetsUpdateOptionalParams | msRest.ServiceCallback<Models.RecordSet>, callback?: msRest.ServiceCallback<Models.RecordSet>): Promise<Models.RecordSetsUpdateResponse> {\n return this.client.sendOperationRequest(\n {\n resourceGroupName,\n zoneName,\n relativeRecordSetName,\n recordType,\n parameters,\n options\n },\n updateOperationSpec,\n callback) as Promise<Models.RecordSetsUpdateResponse>;\n }\n\n /**\n * Creates or updates a record set within a DNS zone.\n * @param resourceGroupName The name of the resource group.\n * @param zoneName The name of the DNS zone (without a terminating dot).\n * @param relativeRecordSetName The name of the record set, relative to the name of the zone.\n * @param recordType The type of DNS record in this record set. Record sets of type SOA can be\n * updated but not created (they are created when the DNS zone is created). Possible values\n * include: 'A', 'AAAA', 'CAA', 'CNAME', 'MX', 'NS', 'PTR', 'SOA', 'SRV', 'TXT'\n * @param parameters Parameters supplied to the CreateOrUpdate operation.\n * @param [options] The optional parameters\n * @returns Promise<Models.RecordSetsCreateOrUpdateResponse>\n */\n createOrUpdate(resourceGroupName: string, zoneName: string, relativeRecordSetName: string, recordType: Models.RecordType, parameters: Models.RecordSet, options?: Models.RecordSetsCreateOrUpdateOptionalParams): Promise<Models.RecordSetsCreateOrUpdateResponse>;\n /**\n * @param resourceGroupName The name of the resource group.\n * @param zoneName The name of the DNS zone (without a terminating dot).\n * @param relativeRecordSetName The name of the record set, relative to the name of the zone.\n * @param recordType The type of DNS record in this record set. Record sets of type SOA can be\n * updated but not created (they are created when the DNS zone is created). Possible values\n * include: 'A', 'AAAA', 'CAA', 'CNAME', 'MX', 'NS', 'PTR', 'SOA', 'SRV', 'TXT'\n * @param parameters Parameters supplied to the CreateOrUpdate operation.\n * @param callback The callback\n */\n createOrUpdate(resourceGroupName: string, zoneName: string, relativeRecordSetName: string, recordType: Models.RecordType, parameters: Models.RecordSet, callback: msRest.ServiceCallback<Models.RecordSet>): void;\n /**\n * @param resourceGroupName The name of the resource group.\n * @param zoneName The name of the DNS zone (without a terminating dot).\n * @param relativeRecordSetName The name of the record set, relative to the name of the zone.\n * @param recordType The type of DNS record in this record set. Record sets of type SOA can be\n * updated but not created (they are created when the DNS zone is created). Possible values\n * include: 'A', 'AAAA', 'CAA', 'CNAME', 'MX', 'NS', 'PTR', 'SOA', 'SRV', 'TXT'\n * @param parameters Parameters supplied to the CreateOrUpdate operation.\n * @param options The optional parameters\n * @param callback The callback\n */\n createOrUpdate(resourceGroupName: string, zoneName: string, relativeRecordSetName: string, recordType: Models.RecordType, parameters: Models.RecordSet, options: Models.RecordSetsCreateOrUpdateOptionalParams, callback: msRest.ServiceCallback<Models.RecordSet>): void;\n createOrUpdate(resourceGroupName: string, zoneName: string, relativeRecordSetName: string, recordType: Models.RecordType, parameters: Models.RecordSet, options?: Models.RecordSetsCreateOrUpdateOptionalParams | msRest.ServiceCallback<Models.RecordSet>, callback?: msRest.ServiceCallback<Models.RecordSet>): Promise<Models.RecordSetsCreateOrUpdateResponse> {\n return this.client.sendOperationRequest(\n {\n resourceGroupName,\n zoneName,\n relativeRecordSetName,\n recordType,\n parameters,\n options\n },\n createOrUpdateOperationSpec,\n callback) as Promise<Models.RecordSetsCreateOrUpdateResponse>;\n }\n\n /**\n * Deletes a record set from a DNS zone. This operation cannot be undone.\n * @param resourceGroupName The name of the resource group.\n * @param zoneName The name of the DNS zone (without a terminating dot).\n * @param relativeRecordSetName The name of the record set, relative to the name of the zone.\n * @param recordType The type of DNS record in this record set. Record sets of type SOA cannot be\n * deleted (they are deleted when the DNS zone is deleted). Possible values include: 'A', 'AAAA',\n * 'CAA', 'CNAME', 'MX', 'NS', 'PTR', 'SOA', 'SRV', 'TXT'\n * @param [options] The optional parameters\n * @returns Promise<msRest.RestResponse>\n */\n deleteMethod(resourceGroupName: string, zoneName: string, relativeRecordSetName: string, recordType: Models.RecordType, options?: Models.RecordSetsDeleteMethodOptionalParams): Promise<msRest.RestResponse>;\n /**\n * @param resourceGroupName The name of the resource group.\n * @param zoneName The name of the DNS zone (without a terminating dot).\n * @param relativeRecordSetName The name of the record set, relative to the name of the zone.\n * @param recordType The type of DNS record in this record set. Record sets of type SOA cannot be\n * deleted (they are deleted when the DNS zone is deleted). Possible values include: 'A', 'AAAA',\n * 'CAA', 'CNAME', 'MX', 'NS', 'PTR', 'SOA', 'SRV', 'TXT'\n * @param callback The callback\n */\n deleteMethod(resourceGroupName: string, zoneName: string, relativeRecordSetName: string, recordType: Models.RecordType, callback: msRest.ServiceCallback<void>): void;\n /**\n * @param resourceGroupName The name of the resource group.\n * @param zoneName The name of the DNS zone (without a terminating dot).\n * @param relativeRecordSetName The name of the record set, relative to the name of the zone.\n * @param recordType The type of DNS record in this record set. Record sets of type SOA cannot be\n * deleted (they are deleted when the DNS zone is deleted). Possible values include: 'A', 'AAAA',\n * 'CAA', 'CNAME', 'MX', 'NS', 'PTR', 'SOA', 'SRV', 'TXT'\n * @param options The optional parameters\n * @param callback The callback\n */\n deleteMethod(resourceGroupName: string, zoneName: string, relativeRecordSetName: string, recordType: Models.RecordType, options: Models.RecordSetsDeleteMethodOptionalParams, callback: msRest.ServiceCallback<void>): void;\n deleteMethod(resourceGroupName: string, zoneName: string, relativeRecordSetName: string, recordType: Models.RecordType, options?: Models.RecordSetsDeleteMethodOptionalParams | msRest.ServiceCallback<void>, callback?: msRest.ServiceCallback<void>): Promise<msRest.RestResponse> {\n return this.client.sendOperationRequest(\n {\n resourceGroupName,\n zoneName,\n relativeRecordSetName,\n recordType,\n options\n },\n deleteMethodOperationSpec,\n callback);\n }\n\n /**\n * Gets a record set.\n * @param resourceGroupName The name of the resource group.\n * @param zoneName The name of the DNS zone (without a terminating dot).\n * @param relativeRecordSetName The name of the record set, relative to the name of the zone.\n * @param recordType The type of DNS record in this record set. Possible values include: 'A',\n * 'AAAA', 'CAA', 'CNAME', 'MX', 'NS', 'PTR', 'SOA', 'SRV', 'TXT'\n * @param [options] The optional parameters\n * @returns Promise<Models.RecordSetsGetResponse>\n */\n get(resourceGroupName: string, zoneName: string, relativeRecordSetName: string, recordType: Models.RecordType, options?: msRest.RequestOptionsBase): Promise<Models.RecordSetsGetResponse>;\n /**\n * @param resourceGroupName The name of the resource group.\n * @param zoneName The name of the DNS zone (without a terminating dot).\n * @param relativeRecordSetName The name of the record set, relative to the name of the zone.\n * @param recordType The type of DNS record in this record set. Possible values include: 'A',\n * 'AAAA', 'CAA', 'CNAME', 'MX', 'NS', 'PTR', 'SOA', 'SRV', 'TXT'\n * @param callback The callback\n */\n get(resourceGroupName: string, zoneName: string, relativeRecordSetName: string, recordType: Models.RecordType, callback: msRest.ServiceCallback<Models.RecordSet>): void;\n /**\n * @param resourceGroupName The name of the resource group.\n * @param zoneName The name of the DNS zone (without a terminating dot).\n * @param relativeRecordSetName The name of the record set, relative to the name of the zone.\n * @param recordType The type of DNS record in this record set. Possible values include: 'A',\n * 'AAAA', 'CAA', 'CNAME', 'MX', 'NS', 'PTR', 'SOA', 'SRV', 'TXT'\n * @param options The optional parameters\n * @param callback The callback\n */\n get(resourceGroupName: string, zoneName: string, relativeRecordSetName: string, recordType: Models.RecordType, options: msRest.RequestOptionsBase, callback: msRest.ServiceCallback<Models.RecordSet>): void;\n get(resourceGroupName: string, zoneName: string, relativeRecordSetName: string, recordType: Models.RecordType, options?: msRest.RequestOptionsBase | msRest.ServiceCallback<Models.RecordSet>, callback?: msRest.ServiceCallback<Models.RecordSet>): Promise<Models.RecordSetsGetResponse> {\n return this.client.sendOperationRequest(\n {\n resourceGroupName,\n zoneName,\n relativeRecordSetName,\n recordType,\n options\n },\n getOperationSpec,\n callback) as Promise<Models.RecordSetsGetResponse>;\n }\n\n /**\n * Lists the record sets of a specified type in a DNS zone.\n * @param resourceGroupName The name of the resource group.\n * @param zoneName The name of the DNS zone (without a terminating dot).\n * @param recordType The type of record sets to enumerate. Possible values include: 'A', 'AAAA',\n * 'CAA', 'CNAME', 'MX', 'NS', 'PTR', 'SOA', 'SRV', 'TXT'\n * @param [options] The optional parameters\n * @returns Promise<Models.RecordSetsListByTypeResponse>\n */\n listByType(resourceGroupName: string, zoneName: string, recordType: Models.RecordType, options?: Models.RecordSetsListByTypeOptionalParams): Promise<Models.RecordSetsListByTypeResponse>;\n /**\n * @param resourceGroupName The name of the resource group.\n * @param zoneName The name of the DNS zone (without a terminating dot).\n * @param recordType The type of record sets to enumerate. Possible values include: 'A', 'AAAA',\n * 'CAA', 'CNAME', 'MX', 'NS', 'PTR', 'SOA', 'SRV', 'TXT'\n * @param callback The callback\n */\n listByType(resourceGroupName: string, zoneName: string, recordType: Models.RecordType, callback: msRest.ServiceCallback<Models.RecordSetListResult>): void;\n /**\n * @param resourceGroupName The name of the resource group.\n * @param zoneName The name of the DNS zone (without a terminating dot).\n * @param recordType The type of record sets to enumerate. Possible values include: 'A', 'AAAA',\n * 'CAA', 'CNAME', 'MX', 'NS', 'PTR', 'SOA', 'SRV', 'TXT'\n * @param options The optional parameters\n * @param callback The callback\n */\n listByType(resourceGroupName: string, zoneName: string, recordType: Models.RecordType, options: Models.RecordSetsListByTypeOptionalParams, callback: msRest.ServiceCallback<Models.RecordSetListResult>): void;\n listByType(resourceGroupName: string, zoneName: string, recordType: Models.RecordType, options?: Models.RecordSetsListByTypeOptionalParams | msRest.ServiceCallback<Models.RecordSetListResult>, callback?: msRest.ServiceCallback<Models.RecordSetListResult>): Promise<Models.RecordSetsListByTypeResponse> {\n return this.client.sendOperationRequest(\n {\n resourceGroupName,\n zoneName,\n recordType,\n options\n },\n listByTypeOperationSpec,\n callback) as Promise<Models.RecordSetsListByTypeResponse>;\n }\n\n /**\n * Lists all record sets in a DNS zone.\n * @param resourceGroupName The name of the resource group.\n * @param zoneName The name of the DNS zone (without a terminating dot).\n * @param [options] The optional parameters\n * @returns Promise<Models.RecordSetsListByDnsZoneResponse>\n */\n listByDnsZone(resourceGroupName: string, zoneName: string, options?: Models.RecordSetsListByDnsZoneOptionalParams): Promise<Models.RecordSetsListByDnsZoneResponse>;\n /**\n * @param resourceGroupName The name of the resource group.\n * @param zoneName The name of the DNS zone (without a terminating dot).\n * @param callback The callback\n */\n listByDnsZone(resourceGroupName: string, zoneName: string, callback: msRest.ServiceCallback<Models.RecordSetListResult>): void;\n /**\n * @param resourceGroupName The name of the resource group.\n * @param zoneName The name of the DNS zone (without a terminating dot).\n * @param options The optional parameters\n * @param callback The callback\n */\n listByDnsZone(resourceGroupName: string, zoneName: string, options: Models.RecordSetsListByDnsZoneOptionalParams, callback: msRest.ServiceCallback<Models.RecordSetListResult>): void;\n listByDnsZone(resourceGroupName: string, zoneName: string, options?: Models.RecordSetsListByDnsZoneOptionalParams | msRest.ServiceCallback<Models.RecordSetListResult>, callback?: msRest.ServiceCallback<Models.RecordSetListResult>): Promise<Models.RecordSetsListByDnsZoneResponse> {\n return this.client.sendOperationRequest(\n {\n resourceGroupName,\n zoneName,\n options\n },\n listByDnsZoneOperationSpec,\n callback) as Promise<Models.RecordSetsListByDnsZoneResponse>;\n }\n\n /**\n * Lists all record sets in a DNS zone.\n * @param resourceGroupName The name of the resource group.\n * @param zoneName The name of the DNS zone (without a terminating dot).\n * @param [options] The optional parameters\n * @returns Promise<Models.RecordSetsListAllByDnsZoneResponse>\n */\n listAllByDnsZone(resourceGroupName: string, zoneName: string, options?: Models.RecordSetsListAllByDnsZoneOptionalParams): Promise<Models.RecordSetsListAllByDnsZoneResponse>;\n /**\n * @param resourceGroupName The name of the resource group.\n * @param zoneName The name of the DNS zone (without a terminating dot).\n * @param callback The callback\n */\n listAllByDnsZone(resourceGroupName: string, zoneName: string, callback: msRest.ServiceCallback<Models.RecordSetListResult>): void;\n /**\n * @param resourceGroupName The name of the resource group.\n * @param zoneName The name of the DNS zone (without a terminating dot).\n * @param options The optional parameters\n * @param callback The callback\n */\n listAllByDnsZone(resourceGroupName: string, zoneName: string, options: Models.RecordSetsListAllByDnsZoneOptionalParams, callback: msRest.ServiceCallback<Models.RecordSetListResult>): void;\n listAllByDnsZone(resourceGroupName: string, zoneName: string, options?: Models.RecordSetsListAllByDnsZoneOptionalParams | msRest.ServiceCallback<Models.RecordSetListResult>, callback?: msRest.ServiceCallback<Models.RecordSetListResult>): Promise<Models.RecordSetsListAllByDnsZoneResponse> {\n return this.client.sendOperationRequest(\n {\n resourceGroupName,\n zoneName,\n options\n },\n listAllByDnsZoneOperationSpec,\n callback) as Promise<Models.RecordSetsListAllByDnsZoneResponse>;\n }\n\n /**\n * Lists the record sets of a specified type in a DNS zone.\n * @param nextPageLink The NextLink from the previous successful call to List operation.\n * @param [options] The optional parameters\n * @returns Promise<Models.RecordSetsListByTypeNextResponse>\n */\n listByTypeNext(nextPageLink: string, options?: msRest.RequestOptionsBase): Promise<Models.RecordSetsListByTypeNextResponse>;\n /**\n * @param nextPageLink The NextLink from the previous successful call to List operation.\n * @param callback The callback\n */\n listByTypeNext(nextPageLink: string, callback: msRest.ServiceCallback<Models.RecordSetListResult>): void;\n /**\n * @param nextPageLink The NextLink from the previous successful call to List operation.\n * @param options The optional parameters\n * @param callback The callback\n */\n listByTypeNext(nextPageLink: string, options: msRest.RequestOptionsBase, callback: msRest.ServiceCallback<Models.RecordSetListResult>): void;\n listByTypeNext(nextPageLink: string, options?: msRest.RequestOptionsBase | msRest.ServiceCallback<Models.RecordSetListResult>, callback?: msRest.ServiceCallback<Models.RecordSetListResult>): Promise<Models.RecordSetsListByTypeNextResponse> {\n return this.client.sendOperationRequest(\n {\n nextPageLink,\n options\n },\n listByTypeNextOperationSpec,\n callback) as Promise<Models.RecordSetsListByTypeNextResponse>;\n }\n\n /**\n * Lists all record sets in a DNS zone.\n * @param nextPageLink The NextLink from the previous successful call to List operation.\n * @param [options] The optional parameters\n * @returns Promise<Models.RecordSetsListByDnsZoneNextResponse>\n */\n listByDnsZoneNext(nextPageLink: string, options?: msRest.RequestOptionsBase): Promise<Models.RecordSetsListByDnsZoneNextResponse>;\n /**\n * @param nextPageLink The NextLink from the previous successful call to List operation.\n * @param callback The callback\n */\n listByDnsZoneNext(nextPageLink: string, callback: msRest.ServiceCallback<Models.RecordSetListResult>): void;\n /**\n * @param nextPageLink The NextLink from the previous successful call to List operation.\n * @param options The optional parameters\n * @param callback The callback\n */\n listByDnsZoneNext(nextPageLink: string, options: msRest.RequestOptionsBase, callback: msRest.ServiceCallback<Models.RecordSetListResult>): void;\n listByDnsZoneNext(nextPageLink: string, options?: msRest.RequestOptionsBase | msRest.ServiceCallback<Models.RecordSetListResult>, callback?: msRest.ServiceCallback<Models.RecordSetListResult>): Promise<Models.RecordSetsListByDnsZoneNextResponse> {\n return this.client.sendOperationRequest(\n {\n nextPageLink,\n options\n },\n listByDnsZoneNextOperationSpec,\n callback) as Promise<Models.RecordSetsListByDnsZoneNextResponse>;\n }\n\n /**\n * Lists all record sets in a DNS zone.\n * @param nextPageLink The NextLink from the previous successful call to List operation.\n * @param [options] The optional parameters\n * @returns Promise<Models.RecordSetsListAllByDnsZoneNextResponse>\n */\n listAllByDnsZoneNext(nextPageLink: string, options?: msRest.RequestOptionsBase): Promise<Models.RecordSetsListAllByDnsZoneNextResponse>;\n /**\n * @param nextPageLink The NextLink from the previous successful call to List operation.\n * @param callback The callback\n */\n listAllByDnsZoneNext(nextPageLink: string, callback: msRest.ServiceCallback<Models.RecordSetListResult>): void;\n /**\n * @param nextPageLink The NextLink from the previous successful call to List operation.\n * @param options The optional parameters\n * @param callback The callback\n */\n listAllByDnsZoneNext(nextPageLink: string, options: msRest.RequestOptionsBase, callback: msRest.ServiceCallback<Models.RecordSetListResult>): void;\n listAllByDnsZoneNext(nextPageLink: string, options?: msRest.RequestOptionsBase | msRest.ServiceCallback<Models.RecordSetListResult>, callback?: msRest.ServiceCallback<Models.RecordSetListResult>): Promise<Models.RecordSetsListAllByDnsZoneNextResponse> {\n return this.client.sendOperationRequest(\n {\n nextPageLink,\n options\n },\n listAllByDnsZoneNextOperationSpec,\n callback) as Promise<Models.RecordSetsListAllByDnsZoneNextResponse>;\n }\n}\n\n// Operation Specifications\nconst serializer = new msRest.Serializer(Mappers);\nconst updateOperationSpec: msRest.OperationSpec = {\n httpMethod: \"PATCH\",\n path: \"subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/dnsZones/{zoneName}/{recordType}/{relativeRecordSetName}\",\n urlParameters: [\n Parameters.resourceGroupName,\n Parameters.zoneName,\n Parameters.relativeRecordSetName,\n Parameters.recordType,\n Parameters.subscriptionId\n ],\n queryParameters: [\n Parameters.apiVersion\n ],\n headerParameters: [\n Parameters.ifMatch,\n Parameters.acceptLanguage\n ],\n requestBody: {\n parameterPath: \"parameters\",\n mapper: {\n ...Mappers.RecordSet,\n required: true\n }\n },\n responses: {\n 200: {\n bodyMapper: Mappers.RecordSet\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.Network/dnsZones/{zoneName}/{recordType}/{relativeRecordSetName}\",\n urlParameters: [\n Parameters.resourceGroupName,\n Parameters.zoneName,\n Parameters.relativeRecordSetName,\n Parameters.recordType,\n Parameters.subscriptionId\n ],\n queryParameters: [\n Parameters.apiVersion\n ],\n headerParameters: [\n Parameters.ifMatch,\n Parameters.ifNoneMatch,\n Parameters.acceptLanguage\n ],\n requestBody: {\n parameterPath: \"parameters\",\n mapper: {\n ...Mappers.RecordSet,\n required: true\n }\n },\n responses: {\n 200: {\n bodyMapper: Mappers.RecordSet\n },\n 201: {\n bodyMapper: Mappers.RecordSet\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.Network/dnsZones/{zoneName}/{recordType}/{relativeRecordSetName}\",\n urlParameters: [\n Parameters.resourceGroupName,\n Parameters.zoneName,\n Parameters.relativeRecordSetName,\n Parameters.recordType,\n Parameters.subscriptionId\n ],\n queryParameters: [\n Parameters.apiVersion\n ],\n headerParameters: [\n Parameters.ifMatch,\n Parameters.acceptLanguage\n ],\n responses: {\n 200: {},\n 204: {},\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.Network/dnsZones/{zoneName}/{recordType}/{relativeRecordSetName}\",\n urlParameters: [\n Parameters.resourceGroupName,\n Parameters.zoneName,\n Parameters.relativeRecordSetName,\n Parameters.recordType,\n Parameters.subscriptionId\n ],\n queryParameters: [\n Parameters.apiVersion\n ],\n headerParameters: [\n Parameters.acceptLanguage\n ],\n responses: {\n 200: {\n bodyMapper: Mappers.RecordSet\n },\n default: {\n bodyMapper: Mappers.CloudError\n }\n },\n serializer\n};\n\nconst listByTypeOperationSpec: msRest.OperationSpec = {\n httpMethod: \"GET\",\n path: \"subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/dnsZones/{zoneName}/{recordType}\",\n urlParameters: [\n Parameters.resourceGroupName,\n Parameters.zoneName,\n Parameters.recordType,\n Parameters.subscriptionId\n ],\n queryParameters: [\n Parameters.top,\n Parameters.recordsetnamesuffix,\n Parameters.apiVersion\n ],\n headerParameters: [\n Parameters.acceptLanguage\n ],\n responses: {\n 200: {\n bodyMapper: Mappers.RecordSetListResult\n },\n default: {\n bodyMapper: Mappers.CloudError\n }\n },\n serializer\n};\n\nconst listByDnsZoneOperationSpec: msRest.OperationSpec = {\n httpMethod: \"GET\",\n path: \"subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/dnsZones/{zoneName}/recordsets\",\n urlParameters: [\n Parameters.resourceGroupName,\n Parameters.zoneName,\n Parameters.subscriptionId\n ],\n queryParameters: [\n Parameters.top,\n Parameters.recordsetnamesuffix,\n Parameters.apiVersion\n ],\n headerParameters: [\n Parameters.acceptLanguage\n ],\n responses: {\n 200: {\n bodyMapper: Mappers.RecordSetListResult\n },\n default: {\n bodyMapper: Mappers.CloudError\n }\n },\n serializer\n};\n\nconst listAllByDnsZoneOperationSpec: msRest.OperationSpec = {\n httpMethod: \"GET\",\n path: \"subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/dnsZones/{zoneName}/all\",\n urlParameters: [\n Parameters.resourceGroupName,\n Parameters.zoneName,\n Parameters.subscriptionId\n ],\n queryParameters: [\n Parameters.top,\n Parameters.recordSetNameSuffix,\n Parameters.apiVersion\n ],\n headerParameters: [\n Parameters.acceptLanguage\n ],\n responses: {\n 200: {\n bodyMapper: Mappers.RecordSetListResult\n },\n default: {\n bodyMapper: Mappers.CloudError\n }\n },\n serializer\n};\n\nconst listByTypeNextOperationSpec: msRest.OperationSpec = {\n httpMethod: \"GET\",\n baseUrl: \"https://management.azure.com\",\n path: \"{nextLink}\",\n urlParameters: [\n Parameters.nextPageLink\n ],\n headerParameters: [\n Parameters.acceptLanguage\n ],\n responses: {\n 200: {\n bodyMapper: Mappers.RecordSetListResult\n },\n default: {\n bodyMapper: Mappers.CloudError\n }\n },\n serializer\n};\n\nconst listByDnsZoneNextOperationSpec: msRest.OperationSpec = {\n httpMethod: \"GET\",\n baseUrl: \"https://management.azure.com\",\n path: \"{nextLink}\",\n urlParameters: [\n Parameters.nextPageLink\n ],\n headerParameters: [\n Parameters.acceptLanguage\n ],\n responses: {\n 200: {\n bodyMapper: Mappers.RecordSetListResult\n },\n default: {\n bodyMapper: Mappers.CloudError\n }\n },\n serializer\n};\n\nconst listAllByDnsZoneNextOperationSpec: msRest.OperationSpec = {\n httpMethod: \"GET\",\n baseUrl: \"https://management.azure.com\",\n path: \"{nextLink}\",\n urlParameters: [\n Parameters.nextPageLink\n ],\n headerParameters: [\n Parameters.acceptLanguage\n ],\n responses: {\n 200: {\n bodyMapper: Mappers.RecordSetListResult\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 AaaaRecord,\n ARecord,\n BaseResource,\n CaaRecord,\n CloudError,\n CnameRecord,\n MxRecord,\n NsRecord,\n PtrRecord,\n RecordSet,\n Resource,\n SoaRecord,\n SrvRecord,\n SubResource,\n TxtRecord,\n Zone,\n ZoneListResult,\n ZoneUpdate\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 msRestAzure from \"@azure/ms-rest-azure-js\";\nimport * as Models from \"../models\";\nimport * as Mappers from \"../models/zonesMappers\";\nimport * as Parameters from \"../models/parameters\";\nimport { DnsManagementClientContext } from \"../dnsManagementClientContext\";\n\n/** Class representing a Zones. */\nexport class Zones {\n private readonly client: DnsManagementClientContext;\n\n /**\n * Create a Zones.\n * @param {DnsManagementClientContext} client Reference to the service client.\n */\n constructor(client: DnsManagementClientContext) {\n this.client = client;\n }\n\n /**\n * Creates or updates a DNS zone. Does not modify DNS records within the zone.\n * @param resourceGroupName The name of the resource group.\n * @param zoneName The name of the DNS zone (without a terminating dot).\n * @param parameters Parameters supplied to the CreateOrUpdate operation.\n * @param [options] The optional parameters\n * @returns Promise<Models.ZonesCreateOrUpdateResponse>\n */\n createOrUpdate(resourceGroupName: string, zoneName: string, parameters: Models.Zone, options?: Models.ZonesCreateOrUpdateOptionalParams): Promise<Models.ZonesCreateOrUpdateResponse>;\n /**\n * @param resourceGroupName The name of the resource group.\n * @param zoneName The name of the DNS zone (without a terminating dot).\n * @param parameters Parameters supplied to the CreateOrUpdate operation.\n * @param callback The callback\n */\n createOrUpdate(resourceGroupName: string, zoneName: string, parameters: Models.Zone, callback: msRest.ServiceCallback<Models.Zone>): void;\n /**\n * @param resourceGroupName The name of the resource group.\n * @param zoneName The name of the DNS zone (without a terminating dot).\n * @param parameters Parameters supplied to the CreateOrUpdate operation.\n * @param options The optional parameters\n * @param callback The callback\n */\n createOrUpdate(resourceGroupName: string, zoneName: string, parameters: Models.Zone, options: Models.ZonesCreateOrUpdateOptionalParams, callback: msRest.ServiceCallback<Models.Zone>): void;\n createOrUpdate(resourceGroupName: string, zoneName: string, parameters: Models.Zone, options?: Models.ZonesCreateOrUpdateOptionalParams | msRest.ServiceCallback<Models.Zone>, callback?: msRest.ServiceCallback<Models.Zone>): Promise<Models.ZonesCreateOrUpdateResponse> {\n return this.client.sendOperationRequest(\n {\n resourceGroupName,\n zoneName,\n parameters,\n options\n },\n createOrUpdateOperationSpec,\n callback) as Promise<Models.ZonesCreateOrUpdateResponse>;\n }\n\n /**\n * Deletes a DNS zone. WARNING: All DNS records in the zone will also be deleted. This operation\n * cannot be undone.\n * @param resourceGroupName The name of the resource group.\n * @param zoneName The name of the DNS zone (without a terminating dot).\n * @param [options] The optional parameters\n * @returns Promise<msRest.RestResponse>\n */\n deleteMethod(resourceGroupName: string, zoneName: string, options?: Models.ZonesDeleteMethodOptionalParams): Promise<msRest.RestResponse> {\n return this.beginDeleteMethod(resourceGroupName,zoneName,options)\n .then(lroPoller => lroPoller.pollUntilFinished());\n }\n\n /**\n * Gets a DNS zone. Retrieves the zone properties, but not the record sets within the zone.\n * @param resourceGroupName The name of the resource group.\n * @param zoneName The name of the DNS zone (without a terminating dot).\n * @param [options] The optional parameters\n * @returns Promise<Models.ZonesGetResponse>\n */\n get(resourceGroupName: string, zoneName: string, options?: msRest.RequestOptionsBase): Promise<Models.ZonesGetResponse>;\n /**\n * @param resourceGroupName The name of the resource group.\n * @param zoneName The name of the DNS zone (without a terminating dot).\n * @param callback The callback\n */\n get(resourceGroupName: string, zoneName: string, callback: msRest.ServiceCallback<Models.Zone>): void;\n /**\n * @param resourceGroupName The name of the resource group.\n * @param zoneName The name of the DNS zone (without a terminating dot).\n * @param options The optional parameters\n * @param callback The callback\n */\n get(resourceGroupName: string, zoneName: string, options: msRest.RequestOptionsBase, callback: msRest.ServiceCallback<Models.Zone>): void;\n get(resourceGroupName: string, zoneName: string, options?: msRest.RequestOptionsBase | msRest.ServiceCallback<Models.Zone>, callback?: msRest.ServiceCallback<Models.Zone>): Promise<Models.ZonesGetResponse> {\n return this.client.sendOperationRequest(\n {\n resourceGroupName,\n zoneName,\n options\n },\n getOperationSpec,\n callback) as Promise<Models.ZonesGetResponse>;\n }\n\n /**\n * Updates a DNS zone. Does not modify DNS records within the zone.\n * @param resourceGroupName The name of the resource group.\n * @param zoneName The name of the DNS zone (without a terminating dot).\n * @param parameters Parameters supplied to the Update operation.\n * @param [options] The optional parameters\n * @returns Promise<Models.ZonesUpdateResponse>\n */\n update(resourceGroupName: string, zoneName: string, parameters: Models.ZoneUpdate, options?: Models.ZonesUpdateOptionalParams): Promise<Models.ZonesUpdateResponse>;\n /**\n * @param resourceGroupName The name of the resource group.\n * @param zoneName The name of the DNS zone (without a terminating dot).\n * @param parameters Parameters supplied to the Update operation.\n * @param callback The callback\n */\n update(resourceGroupName: string, zoneName: string, parameters: Models.ZoneUpdate, callback: msRest.ServiceCallback<Models.Zone>): void;\n /**\n * @param resourceGroupName The name of the resource group.\n * @param zoneName The name of the DNS zone (without a terminating dot).\n * @param parameters Parameters supplied to the Update operation.\n * @param options The optional parameters\n * @param callback The callback\n */\n update(resourceGroupName: string, zoneName: string, parameters: Models.ZoneUpdate, options: Models.ZonesUpdateOptionalParams, callback: msRest.ServiceCallback<Models.Zone>): void;\n update(resourceGroupName: string, zoneName: string, parameters: Models.ZoneUpdate, options?: Models.ZonesUpdateOptionalParams | msRest.ServiceCallback<Models.Zone>, callback?: msRest.ServiceCallback<Models.Zone>): Promise<Models.ZonesUpdateResponse> {\n return this.client.sendOperationRequest(\n {\n resourceGroupName,\n zoneName,\n parameters,\n options\n },\n updateOperationSpec,\n callback) as Promise<Models.ZonesUpdateResponse>;\n }\n\n /**\n * Lists the DNS zones within a resource group.\n * @param resourceGroupName The name of the resource group.\n * @param [options] The optional parameters\n * @returns Promise<Models.ZonesListByResourceGroupResponse>\n */\n listByResourceGroup(resourceGroupName: string, options?: Models.ZonesListByResourceGroupOptionalParams): Promise<Models.ZonesListByResourceGroupResponse>;\n /**\n * @param resourceGroupName The name of the resource group.\n * @param callback The callback\n */\n listByResourceGroup(resourceGroupName: string, callback: msRest.ServiceCallback<Models.ZoneListResult>): void;\n /**\n * @param resourceGroupName The name of the resource group.\n * @param options The optional parameters\n * @param callback The callback\n */\n listByResourceGroup(resourceGroupName: string, options: Models.ZonesListByResourceGroupOptionalParams, callback: msRest.ServiceCallback<Models.ZoneListResult>): void;\n listByResourceGroup(resourceGroupName: string, options?: Models.ZonesListByResourceGroupOptionalParams | msRest.ServiceCallback<Models.ZoneListResult>, callback?: msRest.ServiceCallback<Models.ZoneListResult>): Promise<Models.ZonesListByResourceGroupResponse> {\n return this.client.sendOperationRequest(\n {\n resourceGroupName,\n options\n },\n listByResourceGroupOperationSpec,\n callback) as Promise<Models.ZonesListByResourceGroupResponse>;\n }\n\n /**\n * Lists the DNS zones in all resource groups in a subscription.\n * @param [options] The optional parameters\n * @returns Promise<Models.ZonesListResponse>\n */\n list(options?: Models.ZonesListOptionalParams): Promise<Models.ZonesListResponse>;\n /**\n * @param callback The callback\n */\n list(callback: msRest.ServiceCallback<Models.ZoneListResult>): void;\n /**\n * @param options The optional parameters\n * @param callback The callback\n */\n list(options: Models.ZonesListOptionalParams, callback: msRest.ServiceCallback<Models.ZoneListResult>): void;\n list(options?: Models.ZonesListOptionalParams | msRest.ServiceCallback<Models.ZoneListResult>, callback?: msRest.ServiceCallback<Models.ZoneListResult>): Promise<Models.ZonesListResponse> {\n return this.client.sendOperationRequest(\n {\n options\n },\n listOperationSpec,\n callback) as Promise<Models.ZonesListResponse>;\n }\n\n /**\n * Deletes a DNS zone. WARNING: All DNS records in the zone will also be deleted. This operation\n * cannot be undone.\n * @param resourceGroupName The name of the resource group.\n * @param zoneName The name of the DNS zone (without a terminating dot).\n * @param [options] The optional parameters\n * @returns Promise<msRestAzure.LROPoller>\n */\n beginDeleteMethod(resourceGroupName: string, zoneName: string, options?: Models.ZonesBeginDeleteMethodOptionalParams): Promise<msRestAzure.LROPoller> {\n return this.client.sendLRORequest(\n {\n resourceGroupName,\n zoneName,\n options\n },\n beginDeleteMethodOperationSpec,\n options);\n }\n\n /**\n * Lists the DNS zones within a resource group.\n * @param nextPageLink The NextLink from the previous successful call to List operation.\n * @param [options] The optional parameters\n * @returns Promise<Models.ZonesListByResourceGroupNextResponse>\n */\n listByResourceGroupNext(nextPageLink: string, options?: msRest.RequestOptionsBase): Promise<Models.ZonesListByResourceGroupNextResponse>;\n /**\n * @param nextPageLink The NextLink from the previous successful call to List operation.\n * @param callback The callback\n */\n listByResourceGroupNext(nextPageLink: string, callback: msRest.ServiceCallback<Models.ZoneListResult>): void;\n /**\n * @param nextPageLink The NextLink from the previous successful call to List operation.\n * @param options The optional parameters\n * @param callback The callback\n */\n listByResourceGroupNext(nextPageLink: string, options: msRest.RequestOptionsBase, callback: msRest.ServiceCallback<Models.ZoneListResult>): void;\n listByResourceGroupNext(nextPageLink: string, options?: msRest.RequestOptionsBase | msRest.ServiceCallback<Models.ZoneListResult>, callback?: msRest.ServiceCallback<Models.ZoneListResult>): Promise<Models.ZonesListByResourceGroupNextResponse> {\n return this.client.sendOperationRequest(\n {\n nextPageLink,\n options\n },\n listByResourceGroupNextOperationSpec,\n callback) as Promise<Models.ZonesListByResourceGroupNextResponse>;\n }\n\n /**\n * Lists the DNS zones in all resource groups in a subscription.\n * @param nextPageLink The NextLink from the previous successful call to List operation.\n * @param [options] The optional parameters\n * @returns Promise<Models.ZonesListNextResponse>\n */\n listNext(nextPageLink: string, options?: msRest.RequestOptionsBase): Promise<Models.ZonesListNextResponse>;\n /**\n * @param nextPageLink The NextLink from the previous successful call to List operation.\n * @param callback The callback\n */\n listNext(nextPageLink: string, callback: msRest.ServiceCallback<Models.ZoneListResult>): void;\n /**\n * @param nextPageLink The NextLink from the previous successful call to List operation.\n * @param options The optional parameters\n * @param callback The callback\n */\n listNext(nextPageLink: string, options: msRest.RequestOptionsBase, callback: msRest.ServiceCallback<Models.ZoneListResult>): void;\n listNext(nextPageLink: string, options?: msRest.RequestOptionsBase | msRest.ServiceCallback<Models.ZoneListResult>, callback?: msRest.ServiceCallback<Models.ZoneListResult>): Promise<Models.ZonesListNextResponse> {\n return this.client.sendOperationRequest(\n {\n nextPageLink,\n options\n },\n listNextOperationSpec,\n callback) as Promise<Models.ZonesListNextResponse>;\n }\n}\n\n// Operation Specifications\nconst serializer = new msRest.Serializer(Mappers);\nconst createOrUpdateOperationSpec: msRest.OperationSpec = {\n httpMethod: \"PUT\",\n path: \"subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/dnsZones/{zoneName}\",\n urlParameters: [\n Parameters.resourceGroupName,\n Parameters.zoneName,\n Parameters.subscriptionId\n ],\n queryParameters: [\n Parameters.apiVersion\n ],\n headerParameters: [\n Parameters.ifMatch,\n Parameters.ifNoneMatch,\n Parameters.acceptLanguage\n ],\n requestBody: {\n parameterPath: \"parameters\",\n mapper: {\n ...Mappers.Zone,\n required: true\n }\n },\n responses: {\n 200: {\n bodyMapper: Mappers.Zone\n },\n 201: {\n bodyMapper: Mappers.Zone\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.Network/dnsZones/{zoneName}\",\n urlParameters: [\n Parameters.resourceGroupName,\n Parameters.zoneName,\n Parameters.subscriptionId\n ],\n queryParameters: [\n Parameters.apiVersion\n ],\n headerParameters: [\n Parameters.acceptLanguage\n ],\n responses: {\n 200: {\n bodyMapper: Mappers.Zone\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.Network/dnsZones/{zoneName}\",\n urlParameters: [\n Parameters.resourceGroupName,\n Parameters.zoneName,\n Parameters.subscriptionId\n ],\n queryParameters: [\n Parameters.apiVersion\n ],\n headerParameters: [\n Parameters.ifMatch,\n Parameters.acceptLanguage\n ],\n requestBody: {\n parameterPath: \"parameters\",\n mapper: {\n ...Mappers.ZoneUpdate,\n required: true\n }\n },\n responses: {\n 200: {\n bodyMapper: Mappers.Zone\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.Network/dnsZones\",\n urlParameters: [\n Parameters.resourceGroupName,\n Parameters.subscriptionId\n ],\n queryParameters: [\n Parameters.top,\n Parameters.apiVersion\n ],\n headerParameters: [\n Parameters.acceptLanguage\n ],\n responses: {\n 200: {\n bodyMapper: Mappers.ZoneListResult\n },\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.Network/dnszones\",\n urlParameters: [\n Parameters.subscriptionId\n ],\n queryParameters: [\n Parameters.top,\n Parameters.apiVersion\n ],\n headerParameters: [\n Parameters.acceptLanguage\n ],\n responses: {\n 200: {\n bodyMapper: Mappers.ZoneListResult\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.Network/dnsZones/{zoneName}\",\n urlParameters: [\n Parameters.resourceGroupName,\n Parameters.zoneName,\n Parameters.subscriptionId\n ],\n queryParameters: [\n Parameters.apiVersion\n ],\n headerParameters: [\n Parameters.ifMatch,\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 listByResourceGroupNextOperationSpec: msRest.OperationSpec = {\n httpMethod: \"GET\",\n baseUrl: \"https://management.azure.com\",\n path: \"{nextLink}\",\n urlParameters: [\n Parameters.nextPageLink\n ],\n headerParameters: [\n Parameters.acceptLanguage\n ],\n responses: {\n 200: {\n bodyMapper: Mappers.ZoneListResult\n },\n default: {\n bodyMapper: Mappers.CloudError\n }\n },\n serializer\n};\n\nconst listNextOperationSpec: msRest.OperationSpec = {\n httpMethod: \"GET\",\n baseUrl: \"https://management.azure.com\",\n path: \"{nextLink}\",\n urlParameters: [\n Parameters.nextPageLink\n ],\n headerParameters: [\n Parameters.acceptLanguage\n ],\n responses: {\n 200: {\n bodyMapper: Mappers.ZoneListResult\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 CloudError,\n DnsResourceReference,\n DnsResourceReferenceRequest,\n DnsResourceReferenceResult,\n SubResource\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/dnsResourceReferenceOperationsMappers\";\nimport * as Parameters from \"../models/parameters\";\nimport { DnsManagementClientContext } from \"../dnsManagementClientContext\";\n\n/** Class representing a DnsResourceReferenceOperations. */\nexport class DnsResourceReferenceOperations {\n private readonly client: DnsManagementClientContext;\n\n /**\n * Create a DnsResourceReferenceOperations.\n * @param {DnsManagementClientContext} client Reference to the service client.\n */\n constructor(client: DnsManagementClientContext) {\n this.client = client;\n }\n\n /**\n * Returns the DNS records specified by the referencing targetResourceIds.\n * @param parameters Properties for dns resource reference request.\n * @param [options] The optional parameters\n * @returns Promise<Models.DnsResourceReferenceGetByTargetResourcesResponse>\n */\n getByTargetResources(parameters: Models.DnsResourceReferenceRequest, options?: msRest.RequestOptionsBase): Promise<Models.DnsResourceReferenceGetByTargetResourcesResponse>;\n /**\n * @param parameters Properties for dns resource reference request.\n * @param callback The callback\n */\n getByTargetResources(parameters: Models.DnsResourceReferenceRequest, callback: msRest.ServiceCallback<Models.DnsResourceReferenceResult>): void;\n /**\n * @param parameters Properties for dns resource reference request.\n * @param options The optional parameters\n * @param callback The callback\n */\n getByTargetResources(parameters: Models.DnsResourceReferenceRequest, options: msRest.RequestOptionsBase, callback: msRest.ServiceCallback<Models.DnsResourceReferenceResult>): void;\n getByTargetResources(parameters: Models.DnsResourceReferenceRequest, options?: msRest.RequestOptionsBase | msRest.ServiceCallback<Models.DnsResourceReferenceResult>, callback?: msRest.ServiceCallback<Models.DnsResourceReferenceResult>): Promise<Models.DnsResourceReferenceGetByTargetResourcesResponse> {\n return this.client.sendOperationRequest(\n {\n parameters,\n options\n },\n getByTargetResourcesOperationSpec,\n callback) as Promise<Models.DnsResourceReferenceGetByTargetResourcesResponse>;\n }\n}\n\n// Operation Specifications\nconst serializer = new msRest.Serializer(Mappers);\nconst getByTargetResourcesOperationSpec: msRest.OperationSpec = {\n httpMethod: \"POST\",\n path: \"subscriptions/{subscriptionId}/providers/Microsoft.Network/getDnsResourceReference\",\n urlParameters: [\n Parameters.subscriptionId\n ],\n queryParameters: [\n Parameters.apiVersion\n ],\n headerParameters: [\n Parameters.acceptLanguage\n ],\n requestBody: {\n parameterPath: \"parameters\",\n mapper: {\n ...Mappers.DnsResourceReferenceRequest,\n required: true\n }\n },\n responses: {\n 200: {\n bodyMapper: Mappers.DnsResourceReferenceResult\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 { TokenCredential } from \"@azure/core-auth\";\nimport * as msRestAzure from \"@azure/ms-rest-azure-js\";\n\nconst packageName = \"@azure/arm-dns\";\nconst packageVersion = \"4.1.1\";\n\nexport class DnsManagementClientContext extends msRestAzure.AzureServiceClient {\n credentials: msRest.ServiceClientCredentials | TokenCredential;\n subscriptionId: string;\n apiVersion?: string;\n\n /**\n * Initializes a new instance of the DnsManagementClient 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 Specifies the Azure subscription ID, which uniquely identifies the\n * Microsoft Azure subscription.\n * @param [options] The parameter options\n */\n constructor(credentials: msRest.ServiceClientCredentials | TokenCredential, subscriptionId: string, options?: Models.DnsManagementClientOptions) {\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 = '2018-05-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 { TokenCredential } from \"@azure/core-auth\";\nimport * as Models from \"./models\";\nimport * as Mappers from \"./models/mappers\";\nimport * as operations from \"./operations\";\nimport { DnsManagementClientContext } from \"./dnsManagementClientContext\";\n\n\nclass DnsManagementClient extends DnsManagementClientContext {\n // Operation groups\n recordSets: operations.RecordSets;\n zones: operations.Zones;\n dnsResourceReference: operations.DnsResourceReferenceOperations;\n\n /**\n * Initializes a new instance of the DnsManagementClient 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 Specifies the Azure subscription ID, which uniquely identifies the\n * Microsoft Azure subscription.\n * @param [options] The parameter options\n */\n constructor(credentials: msRest.ServiceClientCredentials | TokenCredential, subscriptionId: string, options?: Models.DnsManagementClientOptions) {\n super(credentials, subscriptionId, options);\n this.recordSets = new operations.RecordSets(this);\n this.zones = new operations.Zones(this);\n this.dnsResourceReference = new operations.DnsResourceReferenceOperations(this);\n }\n}\n\n// Operation Specifications\n\nexport {\n DnsManagementClient,\n DnsManagementClientContext,\n Models as DnsManagementModels,\n Mappers as DnsManagementMappers\n};\nexport * from \"./operations\";\n"],"names":["CloudErrorMapper","BaseResourceMapper","msRest.Serializer","Parameters.resourceGroupName","Parameters.zoneName","Parameters.relativeRecordSetName","Parameters.recordType","Parameters.subscriptionId","Parameters.apiVersion","Parameters.ifMatch","Parameters.acceptLanguage","Mappers.RecordSet","Mappers.CloudError","Parameters.ifNoneMatch","Parameters.top","Parameters.recordsetnamesuffix","Mappers.RecordSetListResult","Parameters.recordSetNameSuffix","Parameters.nextPageLink","createOrUpdateOperationSpec","getOperationSpec","updateOperationSpec","serializer","Mappers","Mappers.Zone","Mappers.ZoneUpdate","Mappers.ZoneListResult","Mappers.DnsResourceReferenceRequest","Mappers.DnsResourceReferenceResult","msRestAzure.getDefaultUserAgentValue","msRestAzure.AzureServiceClient","operations.RecordSets","operations.Zones","operations.DnsResourceReferenceOperations"],"mappings":"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"}
@@ -1 +0,0 @@
1
- !function(e,r){"object"==typeof exports&&"undefined"!=typeof module?r(exports,require("@azure/ms-rest-azure-js"),require("@azure/ms-rest-js")):"function"==typeof define&&define.amd?define(["exports","@azure/ms-rest-azure-js","@azure/ms-rest-js"],r):r(((e=e||self).Azure=e.Azure||{},e.Azure.ArmDns={}),e.msRestAzure,e.msRest)}(this,function(e,o,r){"use strict";var t=function(e,r){return(t=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,r){e.__proto__=r}||function(e,r){for(var a in r)r.hasOwnProperty(a)&&(e[a]=r[a])})(e,r)};function a(e,r){function a(){this.constructor=e}t(e,r),e.prototype=null===r?Object.create(r):(a.prototype=r.prototype,new a)}var s=function(){return(s=Object.assign||function(e){for(var r,a=1,t=arguments.length;a<t;a++)for(var s in r=arguments[a])Object.prototype.hasOwnProperty.call(r,s)&&(e[s]=r[s]);return e}).apply(this,arguments)},i=Object.freeze({__proto__:null}),n=o.CloudErrorMapper,p=o.BaseResourceMapper,m={serializedName:"ARecord",type:{name:"Composite",className:"ARecord",modelProperties:{ipv4Address:{serializedName:"ipv4Address",type:{name:"String"}}}}},d={serializedName:"AaaaRecord",type:{name:"Composite",className:"AaaaRecord",modelProperties:{ipv6Address:{serializedName:"ipv6Address",type:{name:"String"}}}}},u={serializedName:"MxRecord",type:{name:"Composite",className:"MxRecord",modelProperties:{preference:{serializedName:"preference",type:{name:"Number"}},exchange:{serializedName:"exchange",type:{name:"String"}}}}},c={serializedName:"NsRecord",type:{name:"Composite",className:"NsRecord",modelProperties:{nsdname:{serializedName:"nsdname",type:{name:"String"}}}}},l={serializedName:"PtrRecord",type:{name:"Composite",className:"PtrRecord",modelProperties:{ptrdname:{serializedName:"ptrdname",type:{name:"String"}}}}},y={serializedName:"SrvRecord",type:{name:"Composite",className:"SrvRecord",modelProperties:{priority:{serializedName:"priority",type:{name:"Number"}},weight:{serializedName:"weight",type:{name:"Number"}},port:{serializedName:"port",type:{name:"Number"}},target:{serializedName:"target",type:{name:"String"}}}}},N={serializedName:"TxtRecord",type:{name:"Composite",className:"TxtRecord",modelProperties:{value:{serializedName:"value",type:{name:"Sequence",element:{type:{name:"String"}}}}}}},R={serializedName:"CnameRecord",type:{name:"Composite",className:"CnameRecord",modelProperties:{cname:{serializedName:"cname",type:{name:"String"}}}}},z={serializedName:"SoaRecord",type:{name:"Composite",className:"SoaRecord",modelProperties:{host:{serializedName:"host",type:{name:"String"}},email:{serializedName:"email",type:{name:"String"}},serialNumber:{serializedName:"serialNumber",type:{name:"Number"}},refreshTime:{serializedName:"refreshTime",type:{name:"Number"}},retryTime:{serializedName:"retryTime",type:{name:"Number"}},expireTime:{serializedName:"expireTime",type:{name:"Number"}},minimumTtl:{serializedName:"minimumTTL",type:{name:"Number"}}}}},h={serializedName:"CaaRecord",type:{name:"Composite",className:"CaaRecord",modelProperties:{flags:{serializedName:"flags",type:{name:"Number"}},tag:{serializedName:"tag",type:{name:"String"}},value:{serializedName:"value",type:{name:"String"}}}}},f={serializedName:"SubResource",type:{name:"Composite",className:"SubResource",modelProperties:{id:{serializedName:"id",type:{name:"String"}}}}},S={serializedName:"RecordSet",type:{name:"Composite",className:"RecordSet",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"}},etag:{serializedName:"etag",type:{name:"String"}},metadata:{serializedName:"properties.metadata",type:{name:"Dictionary",value:{type:{name:"String"}}}},tTL:{serializedName:"properties.TTL",type:{name:"Number"}},fqdn:{readOnly:!0,serializedName:"properties.fqdn",type:{name:"String"}},provisioningState:{readOnly:!0,serializedName:"properties.provisioningState",type:{name:"String"}},targetResource:{serializedName:"properties.targetResource",type:{name:"Composite",className:"SubResource"}},aRecords:{serializedName:"properties.ARecords",type:{name:"Sequence",element:{type:{name:"Composite",className:"ARecord"}}}},aaaaRecords:{serializedName:"properties.AAAARecords",type:{name:"Sequence",element:{type:{name:"Composite",className:"AaaaRecord"}}}},mxRecords:{serializedName:"properties.MXRecords",type:{name:"Sequence",element:{type:{name:"Composite",className:"MxRecord"}}}},nsRecords:{serializedName:"properties.NSRecords",type:{name:"Sequence",element:{type:{name:"Composite",className:"NsRecord"}}}},ptrRecords:{serializedName:"properties.PTRRecords",type:{name:"Sequence",element:{type:{name:"Composite",className:"PtrRecord"}}}},srvRecords:{serializedName:"properties.SRVRecords",type:{name:"Sequence",element:{type:{name:"Composite",className:"SrvRecord"}}}},txtRecords:{serializedName:"properties.TXTRecords",type:{name:"Sequence",element:{type:{name:"Composite",className:"TxtRecord"}}}},cnameRecord:{serializedName:"properties.CNAMERecord",type:{name:"Composite",className:"CnameRecord"}},soaRecord:{serializedName:"properties.SOARecord",type:{name:"Composite",className:"SoaRecord"}},caaRecords:{serializedName:"properties.caaRecords",type:{name:"Sequence",element:{type:{name:"Composite",className:"CaaRecord"}}}}}}},b={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:{required:!0,serializedName:"location",type:{name:"String"}},tags:{serializedName:"tags",type:{name:"Dictionary",value:{type:{name:"String"}}}}}}},g={serializedName:"Zone",type:{name:"Composite",className:"Zone",modelProperties:s(s({},b.type.modelProperties),{etag:{serializedName:"etag",type:{name:"String"}},maxNumberOfRecordSets:{readOnly:!0,serializedName:"properties.maxNumberOfRecordSets",type:{name:"Number"}},numberOfRecordSets:{readOnly:!0,serializedName:"properties.numberOfRecordSets",type:{name:"Number"}},nameServers:{readOnly:!0,serializedName:"properties.nameServers",type:{name:"Sequence",element:{type:{name:"String"}}}},zoneType:{serializedName:"properties.zoneType",defaultValue:"Public",type:{name:"Enum",allowedValues:["Public","Private"]}},registrationVirtualNetworks:{serializedName:"properties.registrationVirtualNetworks",type:{name:"Sequence",element:{type:{name:"Composite",className:"SubResource"}}}},resolutionVirtualNetworks:{serializedName:"properties.resolutionVirtualNetworks",type:{name:"Sequence",element:{type:{name:"Composite",className:"SubResource"}}}}})}},P={serializedName:"ZoneUpdate",type:{name:"Composite",className:"ZoneUpdate",modelProperties:{tags:{serializedName:"tags",type:{name:"Dictionary",value:{type:{name:"String"}}}}}}},M={serializedName:"DnsResourceReferenceRequest",type:{name:"Composite",className:"DnsResourceReferenceRequest",modelProperties:{targetResources:{serializedName:"properties.targetResources",type:{name:"Sequence",element:{type:{name:"Composite",className:"SubResource"}}}}}}},q={serializedName:"DnsResourceReference",type:{name:"Composite",className:"DnsResourceReference",modelProperties:{dnsResources:{serializedName:"dnsResources",type:{name:"Sequence",element:{type:{name:"Composite",className:"SubResource"}}}},targetResource:{serializedName:"targetResource",type:{name:"Composite",className:"SubResource"}}}}},C={serializedName:"DnsResourceReferenceResult",type:{name:"Composite",className:"DnsResourceReferenceResult",modelProperties:{dnsResourceReferences:{serializedName:"properties.dnsResourceReferences",type:{name:"Sequence",element:{type:{name:"Composite",className:"DnsResourceReference"}}}}}}},T={serializedName:"RecordSetListResult",type:{name:"Composite",className:"RecordSetListResult",modelProperties:{value:{serializedName:"",type:{name:"Sequence",element:{type:{name:"Composite",className:"RecordSet"}}}},nextLink:{readOnly:!0,serializedName:"nextLink",type:{name:"String"}}}}},v={serializedName:"ZoneListResult",type:{name:"Composite",className:"ZoneListResult",modelProperties:{value:{serializedName:"",type:{name:"Sequence",element:{type:{name:"Composite",className:"Zone"}}}},nextLink:{readOnly:!0,serializedName:"nextLink",type:{name:"String"}}}}},O=Object.freeze({__proto__:null,CloudError:n,BaseResource:p,ARecord:m,AaaaRecord:d,MxRecord:u,NsRecord:c,PtrRecord:l,SrvRecord:y,TxtRecord:N,CnameRecord:R,SoaRecord:z,CaaRecord:h,SubResource:f,RecordSet:S,RecordSetUpdateParameters:{serializedName:"RecordSetUpdateParameters",type:{name:"Composite",className:"RecordSetUpdateParameters",modelProperties:{recordSet:{serializedName:"RecordSet",type:{name:"Composite",className:"RecordSet"}}}}},Resource:b,Zone:g,ZoneUpdate:P,DnsResourceReferenceRequest:M,DnsResourceReference:q,DnsResourceReferenceResult:C,RecordSetListResult:T,ZoneListResult:v}),G=Object.freeze({__proto__:null,AaaaRecord:d,ARecord:m,BaseResource:p,CaaRecord:h,CloudError:n,CnameRecord:R,MxRecord:u,NsRecord:c,PtrRecord:l,RecordSet:S,RecordSetListResult:T,Resource:b,SoaRecord:z,SrvRecord:y,SubResource:f,TxtRecord:N,Zone:g}),x={parameterPath:"acceptLanguage",mapper:{serializedName:"accept-language",defaultValue:"en-US",type:{name:"String"}}},A={parameterPath:"apiVersion",mapper:{required:!0,serializedName:"api-version",type:{name:"String"}}},k={parameterPath:["options","ifMatch"],mapper:{serializedName:"If-Match",type:{name:"String"}}},L={parameterPath:["options","ifNoneMatch"],mapper:{serializedName:"If-None-Match",type:{name:"String"}}},w={parameterPath:"nextPageLink",mapper:{required:!0,serializedName:"nextLink",type:{name:"String"}},skipEncoding:!0},D={parameterPath:"recordType",mapper:{required:!0,serializedName:"recordType",type:{name:"Enum",allowedValues:["A","AAAA","CAA","CNAME","MX","NS","PTR","SOA","SRV","TXT"]}}},E={parameterPath:["options","recordsetnamesuffix"],mapper:{serializedName:"$recordsetnamesuffix",type:{name:"String"}}},Z={parameterPath:"relativeRecordSetName",mapper:{required:!0,serializedName:"relativeRecordSetName",type:{name:"String"}},skipEncoding:!0},_={parameterPath:"resourceGroupName",mapper:{required:!0,serializedName:"resourceGroupName",type:{name:"String"}}},U={parameterPath:"subscriptionId",mapper:{required:!0,serializedName:"subscriptionId",type:{name:"String"}}},I={parameterPath:["options","top"],mapper:{serializedName:"$top",type:{name:"Number"}}},B={parameterPath:"zoneName",mapper:{required:!0,serializedName:"zoneName",type:{name:"String"}}},j=(V.prototype.update=function(e,r,a,t,s,o,i){return this.client.sendOperationRequest({resourceGroupName:e,zoneName:r,relativeRecordSetName:a,recordType:t,parameters:s,options:o},X,i)},V.prototype.createOrUpdate=function(e,r,a,t,s,o,i){return this.client.sendOperationRequest({resourceGroupName:e,zoneName:r,relativeRecordSetName:a,recordType:t,parameters:s,options:o},$,i)},V.prototype.deleteMethod=function(e,r,a,t,s,o){return this.client.sendOperationRequest({resourceGroupName:e,zoneName:r,relativeRecordSetName:a,recordType:t,options:s},H,o)},V.prototype.get=function(e,r,a,t,s,o){return this.client.sendOperationRequest({resourceGroupName:e,zoneName:r,relativeRecordSetName:a,recordType:t,options:s},F,o)},V.prototype.listByType=function(e,r,a,t,s){return this.client.sendOperationRequest({resourceGroupName:e,zoneName:r,recordType:a,options:t},J,s)},V.prototype.listByDnsZone=function(e,r,a,t){return this.client.sendOperationRequest({resourceGroupName:e,zoneName:r,options:a},K,t)},V.prototype.listAllByDnsZone=function(e,r,a,t){return this.client.sendOperationRequest({resourceGroupName:e,zoneName:r,options:a},Q,t)},V.prototype.listByTypeNext=function(e,r,a){return this.client.sendOperationRequest({nextPageLink:e,options:r},W,a)},V.prototype.listByDnsZoneNext=function(e,r,a){return this.client.sendOperationRequest({nextPageLink:e,options:r},Y,a)},V.prototype.listAllByDnsZoneNext=function(e,r,a){return this.client.sendOperationRequest({nextPageLink:e,options:r},ee,a)},V);function V(e){this.client=e}var G=new r.Serializer(G),X={httpMethod:"PATCH",path:"subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/dnsZones/{zoneName}/{recordType}/{relativeRecordSetName}",urlParameters:[_,B,Z,D,U],queryParameters:[A],headerParameters:[k,x],requestBody:{parameterPath:"parameters",mapper:s(s({},S),{required:!0})},responses:{200:{bodyMapper:S},default:{bodyMapper:n}},serializer:G},$={httpMethod:"PUT",path:"subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/dnsZones/{zoneName}/{recordType}/{relativeRecordSetName}",urlParameters:[_,B,Z,D,U],queryParameters:[A],headerParameters:[k,L,x],requestBody:{parameterPath:"parameters",mapper:s(s({},S),{required:!0})},responses:{200:{bodyMapper:S},201:{bodyMapper:S},default:{bodyMapper:n}},serializer:G},H={httpMethod:"DELETE",path:"subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/dnsZones/{zoneName}/{recordType}/{relativeRecordSetName}",urlParameters:[_,B,Z,D,U],queryParameters:[A],headerParameters:[k,x],responses:{200:{},204:{},default:{bodyMapper:n}},serializer:G},F={httpMethod:"GET",path:"subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/dnsZones/{zoneName}/{recordType}/{relativeRecordSetName}",urlParameters:[_,B,Z,D,U],queryParameters:[A],headerParameters:[x],responses:{200:{bodyMapper:S},default:{bodyMapper:n}},serializer:G},J={httpMethod:"GET",path:"subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/dnsZones/{zoneName}/{recordType}",urlParameters:[_,B,D,U],queryParameters:[I,E,A],headerParameters:[x],responses:{200:{bodyMapper:T},default:{bodyMapper:n}},serializer:G},K={httpMethod:"GET",path:"subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/dnsZones/{zoneName}/recordsets",urlParameters:[_,B,U],queryParameters:[I,E,A],headerParameters:[x],responses:{200:{bodyMapper:T},default:{bodyMapper:n}},serializer:G},Q={httpMethod:"GET",path:"subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/dnsZones/{zoneName}/all",urlParameters:[_,B,U],queryParameters:[I,{parameterPath:["options","recordSetNameSuffix"],mapper:{serializedName:"$recordsetnamesuffix",type:{name:"String"}}},A],headerParameters:[x],responses:{200:{bodyMapper:T},default:{bodyMapper:n}},serializer:G},W={httpMethod:"GET",baseUrl:"https://management.azure.com",path:"{nextLink}",urlParameters:[w],headerParameters:[x],responses:{200:{bodyMapper:T},default:{bodyMapper:n}},serializer:G},Y={httpMethod:"GET",baseUrl:"https://management.azure.com",path:"{nextLink}",urlParameters:[w],headerParameters:[x],responses:{200:{bodyMapper:T},default:{bodyMapper:n}},serializer:G},ee={httpMethod:"GET",baseUrl:"https://management.azure.com",path:"{nextLink}",urlParameters:[w],headerParameters:[x],responses:{200:{bodyMapper:T},default:{bodyMapper:n}},serializer:G},N=Object.freeze({__proto__:null,AaaaRecord:d,ARecord:m,BaseResource:p,CaaRecord:h,CloudError:n,CnameRecord:R,MxRecord:u,NsRecord:c,PtrRecord:l,RecordSet:S,Resource:b,SoaRecord:z,SrvRecord:y,SubResource:f,TxtRecord:N,Zone:g,ZoneListResult:v,ZoneUpdate:P}),re=(ae.prototype.createOrUpdate=function(e,r,a,t,s){return this.client.sendOperationRequest({resourceGroupName:e,zoneName:r,parameters:a,options:t},te,s)},ae.prototype.deleteMethod=function(e,r,a){return this.beginDeleteMethod(e,r,a).then(function(e){return e.pollUntilFinished()})},ae.prototype.get=function(e,r,a,t){return this.client.sendOperationRequest({resourceGroupName:e,zoneName:r,options:a},se,t)},ae.prototype.update=function(e,r,a,t,s){return this.client.sendOperationRequest({resourceGroupName:e,zoneName:r,parameters:a,options:t},oe,s)},ae.prototype.listByResourceGroup=function(e,r,a){return this.client.sendOperationRequest({resourceGroupName:e,options:r},ie,a)},ae.prototype.list=function(e,r){return this.client.sendOperationRequest({options:e},ne,r)},ae.prototype.beginDeleteMethod=function(e,r,a){return this.client.sendLRORequest({resourceGroupName:e,zoneName:r,options:a},pe,a)},ae.prototype.listByResourceGroupNext=function(e,r,a){return this.client.sendOperationRequest({nextPageLink:e,options:r},me,a)},ae.prototype.listNext=function(e,r,a){return this.client.sendOperationRequest({nextPageLink:e,options:r},de,a)},ae);function ae(e){this.client=e}var N=new r.Serializer(N),te={httpMethod:"PUT",path:"subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/dnsZones/{zoneName}",urlParameters:[_,B,U],queryParameters:[A],headerParameters:[k,L,x],requestBody:{parameterPath:"parameters",mapper:s(s({},g),{required:!0})},responses:{200:{bodyMapper:g},201:{bodyMapper:g},default:{bodyMapper:n}},serializer:N},se={httpMethod:"GET",path:"subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/dnsZones/{zoneName}",urlParameters:[_,B,U],queryParameters:[A],headerParameters:[x],responses:{200:{bodyMapper:g},default:{bodyMapper:n}},serializer:N},oe={httpMethod:"PATCH",path:"subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/dnsZones/{zoneName}",urlParameters:[_,B,U],queryParameters:[A],headerParameters:[k,x],requestBody:{parameterPath:"parameters",mapper:s(s({},P),{required:!0})},responses:{200:{bodyMapper:g},default:{bodyMapper:n}},serializer:N},ie={httpMethod:"GET",path:"subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/dnsZones",urlParameters:[_,U],queryParameters:[I,A],headerParameters:[x],responses:{200:{bodyMapper:v},default:{bodyMapper:n}},serializer:N},ne={httpMethod:"GET",path:"subscriptions/{subscriptionId}/providers/Microsoft.Network/dnszones",urlParameters:[U],queryParameters:[I,A],headerParameters:[x],responses:{200:{bodyMapper:v},default:{bodyMapper:n}},serializer:N},pe={httpMethod:"DELETE",path:"subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/dnsZones/{zoneName}",urlParameters:[_,B,U],queryParameters:[A],headerParameters:[k,x],responses:{200:{},202:{},204:{},default:{bodyMapper:n}},serializer:N},me={httpMethod:"GET",baseUrl:"https://management.azure.com",path:"{nextLink}",urlParameters:[w],headerParameters:[x],responses:{200:{bodyMapper:v},default:{bodyMapper:n}},serializer:N},de={httpMethod:"GET",baseUrl:"https://management.azure.com",path:"{nextLink}",urlParameters:[w],headerParameters:[x],responses:{200:{bodyMapper:v},default:{bodyMapper:n}},serializer:N},f=Object.freeze({__proto__:null,CloudError:n,DnsResourceReference:q,DnsResourceReferenceRequest:M,DnsResourceReferenceResult:C,SubResource:f}),ue=(ce.prototype.getByTargetResources=function(e,r,a){return this.client.sendOperationRequest({parameters:e,options:r},ye,a)},ce);function ce(e){this.client=e}var le,f=new r.Serializer(f),ye={httpMethod:"POST",path:"subscriptions/{subscriptionId}/providers/Microsoft.Network/getDnsResourceReference",urlParameters:[U],queryParameters:[A],headerParameters:[x],requestBody:{parameterPath:"parameters",mapper:s(s({},M),{required:!0})},responses:{200:{bodyMapper:C},default:{bodyMapper:n}},serializer:f},n=(a(Ne,le=o.AzureServiceClient),Ne);function Ne(e,r,a){var t,s=this;if(null==e)throw new Error("'credentials' cannot be null.");if(null==r)throw new Error("'subscriptionId' cannot be null.");return(a=a||{}).userAgent||(t=o.getDefaultUserAgentValue(),a.userAgent="@azure/arm-dns/4.1.1 "+t),(s=le.call(this,e,a)||this).apiVersion="2018-05-01",s.acceptLanguage="en-US",s.longRunningOperationRetryTimeout=30,s.baseUri=a.baseUri||s.baseUri||"https://management.azure.com",s.requestContentType="application/json; charset=utf-8",s.credentials=e,s.subscriptionId=r,null!==a.acceptLanguage&&void 0!==a.acceptLanguage&&(s.acceptLanguage=a.acceptLanguage),null!==a.longRunningOperationRetryTimeout&&void 0!==a.longRunningOperationRetryTimeout&&(s.longRunningOperationRetryTimeout=a.longRunningOperationRetryTimeout),s}var Re,f=(a(ze,Re=n),ze);function ze(e,r,a){a=Re.call(this,e,r,a)||this;return a.recordSets=new j(a),a.zones=new re(a),a.dnsResourceReference=new ue(a),a}e.DnsManagementClient=f,e.DnsManagementClientContext=n,e.DnsManagementMappers=O,e.DnsManagementModels=i,e.DnsResourceReferenceOperations=ue,e.RecordSets=j,e.Zones=re,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/recordSets.ts","../src/operations/zones.ts","../src/operations/dnsResourceReferenceOperations.ts","../src/dnsManagementClientContext.ts","../src/dnsManagementClient.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","ARecord","serializedName","type","name","className","modelProperties","ipv4Address","AaaaRecord","ipv6Address","MxRecord","preference","exchange","NsRecord","nsdname","PtrRecord","ptrdname","SrvRecord","priority","weight","port","target","TxtRecord","value","element","CnameRecord","cname","SoaRecord","host","email","serialNumber","refreshTime","retryTime","expireTime","minimumTtl","CaaRecord","flags","tag","SubResource","id","RecordSet","readOnly","etag","metadata","tTL","fqdn","provisioningState","targetResource","aRecords","aaaaRecords","mxRecords","nsRecords","ptrRecords","srvRecords","txtRecords","cnameRecord","soaRecord","caaRecords","Resource","location","required","tags","Zone","maxNumberOfRecordSets","numberOfRecordSets","nameServers","zoneType","defaultValue","allowedValues","registrationVirtualNetworks","resolutionVirtualNetworks","ZoneUpdate","DnsResourceReferenceRequest","targetResources","DnsResourceReference","dnsResources","DnsResourceReferenceResult","dnsResourceReferences","RecordSetListResult","nextLink","ZoneListResult","recordSet","acceptLanguage","parameterPath","mapper","apiVersion","ifMatch","ifNoneMatch","nextPageLink","skipEncoding","recordType","recordsetnamesuffix","relativeRecordSetName","resourceGroupName","subscriptionId","top","zoneName","RecordSets","update","parameters","options","callback","client","sendOperationRequest","updateOperationSpec","createOrUpdate","createOrUpdateOperationSpec","deleteMethod","deleteMethodOperationSpec","get","getOperationSpec","listByType","listByTypeOperationSpec","listByDnsZone","listByDnsZoneOperationSpec","listAllByDnsZone","listAllByDnsZoneOperationSpec","listByTypeNext","listByTypeNextOperationSpec","listByDnsZoneNext","listByDnsZoneNextOperationSpec","listAllByDnsZoneNext","listAllByDnsZoneNextOperationSpec","serializer","msRest.Serializer","Mappers","httpMethod","path","urlParameters","Parameters.resourceGroupName","Parameters.zoneName","Parameters.relativeRecordSetName","Parameters.recordType","Parameters.subscriptionId","queryParameters","Parameters.apiVersion","headerParameters","Parameters.ifMatch","Parameters.acceptLanguage","requestBody","Mappers.RecordSet","responses","200","bodyMapper","default","Mappers.CloudError","Parameters.ifNoneMatch","201","204","Parameters.top","Parameters.recordsetnamesuffix","Mappers.RecordSetListResult","baseUrl","Parameters.nextPageLink","Zones","beginDeleteMethod","then","lroPoller","pollUntilFinished","listByResourceGroup","listByResourceGroupOperationSpec","list","listOperationSpec","sendLRORequest","beginDeleteMethodOperationSpec","listByResourceGroupNext","listByResourceGroupNextOperationSpec","listNext","listNextOperationSpec","Mappers.Zone","serializer$1","Mappers.ZoneUpdate","Mappers.ZoneListResult","202","DnsResourceReferenceOperations","getByTargetResources","getByTargetResourcesOperationSpec","_super","Mappers.DnsResourceReferenceRequest","Mappers.DnsResourceReferenceResult","serializer$2","DnsManagementClientContext","msRestAzure.AzureServiceClient","credentials","defaultUserAgent","_this","undefined","Error","userAgent","msRestAzure.getDefaultUserAgentValue","packageName","longRunningOperationRetryTimeout","baseUri","requestContentType","DnsManagementClient","recordSets","operations.RecordSets","zones","operations.Zones","dnsResourceReference","operations.DnsResourceReferenceOperations"],"mappings":"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"}
@@ -1,27 +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 { DnsManagementClientContext } from "./dnsManagementClientContext";
7
- declare class DnsManagementClient extends DnsManagementClientContext {
8
- recordSets: operations.RecordSets;
9
- zones: operations.Zones;
10
- dnsResourceReference: operations.DnsResourceReferenceOperations;
11
- /**
12
- * Initializes a new instance of the DnsManagementClient class.
13
- * @param credentials Credentials needed for the client to connect to Azure. Credentials
14
- * implementing the TokenCredential interface from the @azure/identity package are recommended. For
15
- * more information about these credentials, see
16
- * {@link https://www.npmjs.com/package/@azure/identity}. Credentials implementing the
17
- * ServiceClientCredentials interface from the older packages @azure/ms-rest-nodeauth and
18
- * @azure/ms-rest-browserauth are also supported.
19
- * @param subscriptionId Specifies the Azure subscription ID, which uniquely identifies the
20
- * Microsoft Azure subscription.
21
- * @param [options] The parameter options
22
- */
23
- constructor(credentials: msRest.ServiceClientCredentials | TokenCredential, subscriptionId: string, options?: Models.DnsManagementClientOptions);
24
- }
25
- export { DnsManagementClient, DnsManagementClientContext, Models as DnsManagementModels, Mappers as DnsManagementMappers };
26
- export * from "./operations";
27
- //# sourceMappingURL=dnsManagementClient.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"dnsManagementClient.d.ts","sourceRoot":"","sources":["../src/dnsManagementClient.ts"],"names":[],"mappings":"AAUA,OAAO,KAAK,MAAM,MAAM,mBAAmB,CAAC;AAC5C,OAAO,EAAE,eAAe,EAAE,MAAM,kBAAkB,CAAC;AACnD,OAAO,KAAK,MAAM,MAAM,UAAU,CAAC;AACnC,OAAO,KAAK,OAAO,MAAM,kBAAkB,CAAC;AAC5C,OAAO,KAAK,UAAU,MAAM,cAAc,CAAC;AAC3C,OAAO,EAAE,0BAA0B,EAAE,MAAM,8BAA8B,CAAC;AAG1E,cAAM,mBAAoB,SAAQ,0BAA0B;IAE1D,UAAU,EAAE,UAAU,CAAC,UAAU,CAAC;IAClC,KAAK,EAAE,UAAU,CAAC,KAAK,CAAC;IACxB,oBAAoB,EAAE,UAAU,CAAC,8BAA8B,CAAC;IAEhE;;;;;;;;;;;OAWG;gBACS,WAAW,EAAE,MAAM,CAAC,wBAAwB,GAAG,eAAe,EAAE,cAAc,EAAE,MAAM,EAAE,OAAO,CAAC,EAAE,MAAM,CAAC,0BAA0B;CAMhJ;AAID,OAAO,EACL,mBAAmB,EACnB,0BAA0B,EAC1B,MAAM,IAAI,mBAAmB,EAC7B,OAAO,IAAI,oBAAoB,EAChC,CAAC;AACF,cAAc,cAAc,CAAC"}
@@ -1,41 +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 { DnsManagementClientContext } from "./dnsManagementClientContext";
15
- var DnsManagementClient = /** @class */ (function (_super) {
16
- __extends(DnsManagementClient, _super);
17
- /**
18
- * Initializes a new instance of the DnsManagementClient class.
19
- * @param credentials Credentials needed for the client to connect to Azure. Credentials
20
- * implementing the TokenCredential interface from the @azure/identity package are recommended. For
21
- * more information about these credentials, see
22
- * {@link https://www.npmjs.com/package/@azure/identity}. Credentials implementing the
23
- * ServiceClientCredentials interface from the older packages @azure/ms-rest-nodeauth and
24
- * @azure/ms-rest-browserauth are also supported.
25
- * @param subscriptionId Specifies the Azure subscription ID, which uniquely identifies the
26
- * Microsoft Azure subscription.
27
- * @param [options] The parameter options
28
- */
29
- function DnsManagementClient(credentials, subscriptionId, options) {
30
- var _this = _super.call(this, credentials, subscriptionId, options) || this;
31
- _this.recordSets = new operations.RecordSets(_this);
32
- _this.zones = new operations.Zones(_this);
33
- _this.dnsResourceReference = new operations.DnsResourceReferenceOperations(_this);
34
- return _this;
35
- }
36
- return DnsManagementClient;
37
- }(DnsManagementClientContext));
38
- // Operation Specifications
39
- export { DnsManagementClient, DnsManagementClientContext, Models as DnsManagementModels, Mappers as DnsManagementMappers };
40
- export * from "./operations";
41
- //# sourceMappingURL=dnsManagementClient.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"dnsManagementClient.js","sourceRoot":"","sources":["../src/dnsManagementClient.ts"],"names":[],"mappings":"AAAA;;;;;;;;GAQG;;AAIH,OAAO,KAAK,MAAM,MAAM,UAAU,CAAC;AACnC,OAAO,KAAK,OAAO,MAAM,kBAAkB,CAAC;AAC5C,OAAO,KAAK,UAAU,MAAM,cAAc,CAAC;AAC3C,OAAO,EAAE,0BAA0B,EAAE,MAAM,8BAA8B,CAAC;AAG1E;IAAkC,uCAA0B;IAM1D;;;;;;;;;;;OAWG;IACH,6BAAY,WAA8D,EAAE,cAAsB,EAAE,OAA2C;QAA/I,YACE,kBAAM,WAAW,EAAE,cAAc,EAAE,OAAO,CAAC,SAI5C;QAHC,KAAI,CAAC,UAAU,GAAG,IAAI,UAAU,CAAC,UAAU,CAAC,KAAI,CAAC,CAAC;QAClD,KAAI,CAAC,KAAK,GAAG,IAAI,UAAU,CAAC,KAAK,CAAC,KAAI,CAAC,CAAC;QACxC,KAAI,CAAC,oBAAoB,GAAG,IAAI,UAAU,CAAC,8BAA8B,CAAC,KAAI,CAAC,CAAC;;IAClF,CAAC;IACH,0BAAC;AAAD,CAAC,AAxBD,CAAkC,0BAA0B,GAwB3D;AAED,2BAA2B;AAE3B,OAAO,EACL,mBAAmB,EACnB,0BAA0B,EAC1B,MAAM,IAAI,mBAAmB,EAC7B,OAAO,IAAI,oBAAoB,EAChC,CAAC;AACF,cAAc,cAAc,CAAC"}
@@ -1,23 +0,0 @@
1
- import * as Models from "./models";
2
- import * as msRest from "@azure/ms-rest-js";
3
- import { TokenCredential } from "@azure/core-auth";
4
- import * as msRestAzure from "@azure/ms-rest-azure-js";
5
- export declare class DnsManagementClientContext extends msRestAzure.AzureServiceClient {
6
- credentials: msRest.ServiceClientCredentials | TokenCredential;
7
- subscriptionId: string;
8
- apiVersion?: string;
9
- /**
10
- * Initializes a new instance of the DnsManagementClient class.
11
- * @param credentials Credentials needed for the client to connect to Azure. Credentials
12
- * implementing the TokenCredential interface from the @azure/identity package are recommended. For
13
- * more information about these credentials, see
14
- * {@link https://www.npmjs.com/package/@azure/identity}. Credentials implementing the
15
- * ServiceClientCredentials interface from the older packages @azure/ms-rest-nodeauth and
16
- * @azure/ms-rest-browserauth are also supported.
17
- * @param subscriptionId Specifies the Azure subscription ID, which uniquely identifies the
18
- * Microsoft Azure subscription.
19
- * @param [options] The parameter options
20
- */
21
- constructor(credentials: msRest.ServiceClientCredentials | TokenCredential, subscriptionId: string, options?: Models.DnsManagementClientOptions);
22
- }
23
- //# sourceMappingURL=dnsManagementClientContext.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"dnsManagementClientContext.d.ts","sourceRoot":"","sources":["../src/dnsManagementClientContext.ts"],"names":[],"mappings":"AAUA,OAAO,KAAK,MAAM,MAAM,UAAU,CAAC;AACnC,OAAO,KAAK,MAAM,MAAM,mBAAmB,CAAC;AAC5C,OAAO,EAAE,eAAe,EAAE,MAAM,kBAAkB,CAAC;AACnD,OAAO,KAAK,WAAW,MAAM,yBAAyB,CAAC;AAKvD,qBAAa,0BAA2B,SAAQ,WAAW,CAAC,kBAAkB;IAC5E,WAAW,EAAE,MAAM,CAAC,wBAAwB,GAAG,eAAe,CAAC;IAC/D,cAAc,EAAE,MAAM,CAAC;IACvB,UAAU,CAAC,EAAE,MAAM,CAAC;IAEpB;;;;;;;;;;;OAWG;gBACS,WAAW,EAAE,MAAM,CAAC,wBAAwB,GAAG,eAAe,EAAE,cAAc,EAAE,MAAM,EAAE,OAAO,CAAC,EAAE,MAAM,CAAC,0BAA0B;CAiChJ"}