@azure/arm-privatedns 2.1.1 → 3.0.0-alpha.20220124.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (139) hide show
  1. package/CHANGELOG.md +11 -0
  2. package/LICENSE +21 -0
  3. package/README.md +69 -83
  4. package/dist/index.js +2295 -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/index.d.ts +5 -0
  9. package/dist-esm/src/index.d.ts.map +1 -0
  10. package/dist-esm/src/index.js +12 -0
  11. package/dist-esm/src/index.js.map +1 -0
  12. package/dist-esm/src/lroImpl.d.ts +16 -0
  13. package/dist-esm/src/lroImpl.d.ts.map +1 -0
  14. package/dist-esm/src/lroImpl.js +29 -0
  15. package/dist-esm/src/lroImpl.js.map +1 -0
  16. package/dist-esm/src/models/index.d.ts +470 -0
  17. package/dist-esm/src/models/index.d.ts.map +1 -0
  18. package/dist-esm/src/models/index.js +24 -0
  19. package/dist-esm/src/models/index.js.map +1 -0
  20. package/dist-esm/src/models/mappers.d.ts +22 -0
  21. package/dist-esm/src/models/mappers.d.ts.map +1 -0
  22. package/{esm → dist-esm/src}/models/mappers.js +234 -205
  23. package/dist-esm/src/models/mappers.js.map +1 -0
  24. package/dist-esm/src/models/parameters.d.ts +20 -0
  25. package/dist-esm/src/models/parameters.d.ts.map +1 -0
  26. package/{esm → dist-esm/src}/models/parameters.js +91 -77
  27. package/dist-esm/src/models/parameters.js.map +1 -0
  28. package/{esm → dist-esm/src}/operations/index.d.ts +0 -0
  29. package/dist-esm/src/operations/index.d.ts.map +1 -0
  30. package/{esm → dist-esm/src}/operations/index.js +3 -5
  31. package/dist-esm/src/operations/index.js.map +1 -0
  32. package/dist-esm/src/operations/privateZones.d.ts +114 -0
  33. package/dist-esm/src/operations/privateZones.d.ts.map +1 -0
  34. package/dist-esm/src/operations/privateZones.js +516 -0
  35. package/dist-esm/src/operations/privateZones.js.map +1 -0
  36. package/dist-esm/src/operations/recordSets.d.ts +105 -0
  37. package/dist-esm/src/operations/recordSets.d.ts.map +1 -0
  38. package/dist-esm/src/operations/recordSets.js +451 -0
  39. package/dist-esm/src/operations/recordSets.js.map +1 -0
  40. package/dist-esm/src/operations/virtualNetworkLinks.d.ts +103 -0
  41. package/dist-esm/src/operations/virtualNetworkLinks.d.ts.map +1 -0
  42. package/dist-esm/src/operations/virtualNetworkLinks.js +442 -0
  43. package/dist-esm/src/operations/virtualNetworkLinks.js.map +1 -0
  44. package/dist-esm/src/operationsInterfaces/index.d.ts +4 -0
  45. package/dist-esm/src/operationsInterfaces/index.d.ts.map +1 -0
  46. package/dist-esm/src/operationsInterfaces/index.js +11 -0
  47. package/dist-esm/src/operationsInterfaces/index.js.map +1 -0
  48. package/dist-esm/src/operationsInterfaces/privateZones.d.ts +78 -0
  49. package/dist-esm/src/operationsInterfaces/privateZones.d.ts.map +1 -0
  50. package/dist-esm/src/operationsInterfaces/privateZones.js +9 -0
  51. package/dist-esm/src/operationsInterfaces/privateZones.js.map +1 -0
  52. package/dist-esm/src/operationsInterfaces/recordSets.d.ts +61 -0
  53. package/dist-esm/src/operationsInterfaces/recordSets.d.ts.map +1 -0
  54. package/dist-esm/src/operationsInterfaces/recordSets.js +9 -0
  55. package/dist-esm/src/operationsInterfaces/recordSets.js.map +1 -0
  56. package/dist-esm/src/operationsInterfaces/virtualNetworkLinks.d.ts +78 -0
  57. package/dist-esm/src/operationsInterfaces/virtualNetworkLinks.d.ts.map +1 -0
  58. package/dist-esm/src/operationsInterfaces/virtualNetworkLinks.js +9 -0
  59. package/dist-esm/src/operationsInterfaces/virtualNetworkLinks.js.map +1 -0
  60. package/dist-esm/src/privateDnsManagementClient.d.ts +21 -0
  61. package/dist-esm/src/privateDnsManagementClient.d.ts.map +1 -0
  62. package/dist-esm/src/privateDnsManagementClient.js +54 -0
  63. package/dist-esm/src/privateDnsManagementClient.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 +82 -23
  69. package/review/arm-privatedns.api.md +435 -0
  70. package/rollup.config.js +181 -30
  71. package/src/index.ts +12 -0
  72. package/src/lroImpl.ts +34 -0
  73. package/src/models/index.ts +400 -956
  74. package/src/models/mappers.ts +248 -214
  75. package/src/models/parameters.ts +117 -78
  76. package/src/operations/index.ts +3 -5
  77. package/src/operations/privateZones.ts +521 -325
  78. package/src/operations/recordSets.ts +382 -348
  79. package/src/operations/virtualNetworkLinks.ts +475 -261
  80. package/src/operationsInterfaces/index.ts +11 -0
  81. package/src/operationsInterfaces/privateZones.ts +145 -0
  82. package/src/operationsInterfaces/recordSets.ts +117 -0
  83. package/src/operationsInterfaces/virtualNetworkLinks.ts +150 -0
  84. package/src/privateDnsManagementClient.ts +75 -40
  85. package/tsconfig.json +20 -7
  86. package/types/arm-privatedns.d.ts +768 -0
  87. package/types/tsdoc-metadata.json +11 -0
  88. package/dist/arm-privatedns.js +0 -1948
  89. package/dist/arm-privatedns.js.map +0 -1
  90. package/dist/arm-privatedns.min.js +0 -1
  91. package/dist/arm-privatedns.min.js.map +0 -1
  92. package/esm/models/index.d.ts +0 -1031
  93. package/esm/models/index.d.ts.map +0 -1
  94. package/esm/models/index.js +0 -8
  95. package/esm/models/index.js.map +0 -1
  96. package/esm/models/mappers.d.ts +0 -22
  97. package/esm/models/mappers.d.ts.map +0 -1
  98. package/esm/models/mappers.js.map +0 -1
  99. package/esm/models/parameters.d.ts +0 -15
  100. package/esm/models/parameters.d.ts.map +0 -1
  101. package/esm/models/parameters.js.map +0 -1
  102. package/esm/models/privateZonesMappers.d.ts +0 -2
  103. package/esm/models/privateZonesMappers.d.ts.map +0 -1
  104. package/esm/models/privateZonesMappers.js +0 -9
  105. package/esm/models/privateZonesMappers.js.map +0 -1
  106. package/esm/models/recordSetsMappers.d.ts +0 -2
  107. package/esm/models/recordSetsMappers.d.ts.map +0 -1
  108. package/esm/models/recordSetsMappers.js +0 -9
  109. package/esm/models/recordSetsMappers.js.map +0 -1
  110. package/esm/models/virtualNetworkLinksMappers.d.ts +0 -2
  111. package/esm/models/virtualNetworkLinksMappers.d.ts.map +0 -1
  112. package/esm/models/virtualNetworkLinksMappers.js +0 -9
  113. package/esm/models/virtualNetworkLinksMappers.js.map +0 -1
  114. package/esm/operations/index.d.ts.map +0 -1
  115. package/esm/operations/index.js.map +0 -1
  116. package/esm/operations/privateZones.d.ts +0 -165
  117. package/esm/operations/privateZones.d.ts.map +0 -1
  118. package/esm/operations/privateZones.js +0 -347
  119. package/esm/operations/privateZones.js.map +0 -1
  120. package/esm/operations/recordSets.d.ts +0 -229
  121. package/esm/operations/recordSets.d.ts.map +0 -1
  122. package/esm/operations/recordSets.js +0 -304
  123. package/esm/operations/recordSets.js.map +0 -1
  124. package/esm/operations/virtualNetworkLinks.d.ts +0 -139
  125. package/esm/operations/virtualNetworkLinks.d.ts.map +0 -1
  126. package/esm/operations/virtualNetworkLinks.js +0 -305
  127. package/esm/operations/virtualNetworkLinks.js.map +0 -1
  128. package/esm/privateDnsManagementClient.d.ts +0 -27
  129. package/esm/privateDnsManagementClient.d.ts.map +0 -1
  130. package/esm/privateDnsManagementClient.js +0 -41
  131. package/esm/privateDnsManagementClient.js.map +0 -1
  132. package/esm/privateDnsManagementClientContext.d.ts +0 -23
  133. package/esm/privateDnsManagementClientContext.d.ts.map +0 -1
  134. package/esm/privateDnsManagementClientContext.js +0 -62
  135. package/esm/privateDnsManagementClientContext.js.map +0 -1
  136. package/src/models/privateZonesMappers.ts +0 -28
  137. package/src/models/recordSetsMappers.ts +0 -28
  138. package/src/models/virtualNetworkLinksMappers.ts +0 -28
  139. package/src/privateDnsManagementClientContext.ts +0 -69
@@ -1,347 +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 { __assign } from "tslib";
11
- import * as msRest from "@azure/ms-rest-js";
12
- import * as Mappers from "../models/privateZonesMappers";
13
- import * as Parameters from "../models/parameters";
14
- /** Class representing a PrivateZones. */
15
- var PrivateZones = /** @class */ (function () {
16
- /**
17
- * Create a PrivateZones.
18
- * @param {PrivateDnsManagementClientContext} client Reference to the service client.
19
- */
20
- function PrivateZones(client) {
21
- this.client = client;
22
- }
23
- /**
24
- * Creates or updates a Private DNS zone. Does not modify Links to virtual networks or DNS records
25
- * within the zone.
26
- * @param resourceGroupName The name of the resource group.
27
- * @param privateZoneName The name of the Private DNS zone (without a terminating dot).
28
- * @param parameters Parameters supplied to the CreateOrUpdate operation.
29
- * @param [options] The optional parameters
30
- * @returns Promise<Models.PrivateZonesCreateOrUpdateResponse>
31
- */
32
- PrivateZones.prototype.createOrUpdate = function (resourceGroupName, privateZoneName, parameters, options) {
33
- return this.beginCreateOrUpdate(resourceGroupName, privateZoneName, parameters, options)
34
- .then(function (lroPoller) { return lroPoller.pollUntilFinished(); });
35
- };
36
- /**
37
- * Updates a Private DNS zone. Does not modify virtual network links or DNS records within the
38
- * zone.
39
- * @param resourceGroupName The name of the resource group.
40
- * @param privateZoneName The name of the Private DNS zone (without a terminating dot).
41
- * @param parameters Parameters supplied to the Update operation.
42
- * @param [options] The optional parameters
43
- * @returns Promise<Models.PrivateZonesUpdateResponse>
44
- */
45
- PrivateZones.prototype.update = function (resourceGroupName, privateZoneName, parameters, options) {
46
- return this.beginUpdate(resourceGroupName, privateZoneName, parameters, options)
47
- .then(function (lroPoller) { return lroPoller.pollUntilFinished(); });
48
- };
49
- /**
50
- * Deletes a Private DNS zone. WARNING: All DNS records in the zone will also be deleted. This
51
- * operation cannot be undone. Private DNS zone cannot be deleted unless all virtual network links
52
- * to it are removed.
53
- * @param resourceGroupName The name of the resource group.
54
- * @param privateZoneName The name of the Private DNS zone (without a terminating dot).
55
- * @param [options] The optional parameters
56
- * @returns Promise<msRest.RestResponse>
57
- */
58
- PrivateZones.prototype.deleteMethod = function (resourceGroupName, privateZoneName, options) {
59
- return this.beginDeleteMethod(resourceGroupName, privateZoneName, options)
60
- .then(function (lroPoller) { return lroPoller.pollUntilFinished(); });
61
- };
62
- PrivateZones.prototype.get = function (resourceGroupName, privateZoneName, options, callback) {
63
- return this.client.sendOperationRequest({
64
- resourceGroupName: resourceGroupName,
65
- privateZoneName: privateZoneName,
66
- options: options
67
- }, getOperationSpec, callback);
68
- };
69
- PrivateZones.prototype.list = function (options, callback) {
70
- return this.client.sendOperationRequest({
71
- options: options
72
- }, listOperationSpec, callback);
73
- };
74
- PrivateZones.prototype.listByResourceGroup = function (resourceGroupName, options, callback) {
75
- return this.client.sendOperationRequest({
76
- resourceGroupName: resourceGroupName,
77
- options: options
78
- }, listByResourceGroupOperationSpec, callback);
79
- };
80
- /**
81
- * Creates or updates a Private DNS zone. Does not modify Links to virtual networks or DNS records
82
- * within the zone.
83
- * @param resourceGroupName The name of the resource group.
84
- * @param privateZoneName The name of the Private DNS zone (without a terminating dot).
85
- * @param parameters Parameters supplied to the CreateOrUpdate operation.
86
- * @param [options] The optional parameters
87
- * @returns Promise<msRestAzure.LROPoller>
88
- */
89
- PrivateZones.prototype.beginCreateOrUpdate = function (resourceGroupName, privateZoneName, parameters, options) {
90
- return this.client.sendLRORequest({
91
- resourceGroupName: resourceGroupName,
92
- privateZoneName: privateZoneName,
93
- parameters: parameters,
94
- options: options
95
- }, beginCreateOrUpdateOperationSpec, options);
96
- };
97
- /**
98
- * Updates a Private DNS zone. Does not modify virtual network links or DNS records within the
99
- * zone.
100
- * @param resourceGroupName The name of the resource group.
101
- * @param privateZoneName The name of the Private DNS zone (without a terminating dot).
102
- * @param parameters Parameters supplied to the Update operation.
103
- * @param [options] The optional parameters
104
- * @returns Promise<msRestAzure.LROPoller>
105
- */
106
- PrivateZones.prototype.beginUpdate = function (resourceGroupName, privateZoneName, parameters, options) {
107
- return this.client.sendLRORequest({
108
- resourceGroupName: resourceGroupName,
109
- privateZoneName: privateZoneName,
110
- parameters: parameters,
111
- options: options
112
- }, beginUpdateOperationSpec, options);
113
- };
114
- /**
115
- * Deletes a Private DNS zone. WARNING: All DNS records in the zone will also be deleted. This
116
- * operation cannot be undone. Private DNS zone cannot be deleted unless all virtual network links
117
- * to it are removed.
118
- * @param resourceGroupName The name of the resource group.
119
- * @param privateZoneName The name of the Private DNS zone (without a terminating dot).
120
- * @param [options] The optional parameters
121
- * @returns Promise<msRestAzure.LROPoller>
122
- */
123
- PrivateZones.prototype.beginDeleteMethod = function (resourceGroupName, privateZoneName, options) {
124
- return this.client.sendLRORequest({
125
- resourceGroupName: resourceGroupName,
126
- privateZoneName: privateZoneName,
127
- options: options
128
- }, beginDeleteMethodOperationSpec, options);
129
- };
130
- PrivateZones.prototype.listNext = function (nextPageLink, options, callback) {
131
- return this.client.sendOperationRequest({
132
- nextPageLink: nextPageLink,
133
- options: options
134
- }, listNextOperationSpec, callback);
135
- };
136
- PrivateZones.prototype.listByResourceGroupNext = function (nextPageLink, options, callback) {
137
- return this.client.sendOperationRequest({
138
- nextPageLink: nextPageLink,
139
- options: options
140
- }, listByResourceGroupNextOperationSpec, callback);
141
- };
142
- return PrivateZones;
143
- }());
144
- export { PrivateZones };
145
- // Operation Specifications
146
- var serializer = new msRest.Serializer(Mappers);
147
- var getOperationSpec = {
148
- httpMethod: "GET",
149
- path: "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/privateDnsZones/{privateZoneName}",
150
- urlParameters: [
151
- Parameters.resourceGroupName,
152
- Parameters.privateZoneName,
153
- Parameters.subscriptionId
154
- ],
155
- queryParameters: [
156
- Parameters.apiVersion
157
- ],
158
- headerParameters: [
159
- Parameters.acceptLanguage
160
- ],
161
- responses: {
162
- 200: {
163
- bodyMapper: Mappers.PrivateZone
164
- },
165
- default: {
166
- bodyMapper: Mappers.CloudError
167
- }
168
- },
169
- serializer: serializer
170
- };
171
- var listOperationSpec = {
172
- httpMethod: "GET",
173
- path: "subscriptions/{subscriptionId}/providers/Microsoft.Network/privateDnsZones",
174
- urlParameters: [
175
- Parameters.subscriptionId
176
- ],
177
- queryParameters: [
178
- Parameters.top,
179
- Parameters.apiVersion
180
- ],
181
- headerParameters: [
182
- Parameters.acceptLanguage
183
- ],
184
- responses: {
185
- 200: {
186
- bodyMapper: Mappers.PrivateZoneListResult
187
- },
188
- default: {
189
- bodyMapper: Mappers.CloudError
190
- }
191
- },
192
- serializer: serializer
193
- };
194
- var listByResourceGroupOperationSpec = {
195
- httpMethod: "GET",
196
- path: "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/privateDnsZones",
197
- urlParameters: [
198
- Parameters.resourceGroupName,
199
- Parameters.subscriptionId
200
- ],
201
- queryParameters: [
202
- Parameters.top,
203
- Parameters.apiVersion
204
- ],
205
- headerParameters: [
206
- Parameters.acceptLanguage
207
- ],
208
- responses: {
209
- 200: {
210
- bodyMapper: Mappers.PrivateZoneListResult
211
- },
212
- default: {
213
- bodyMapper: Mappers.CloudError
214
- }
215
- },
216
- serializer: serializer
217
- };
218
- var beginCreateOrUpdateOperationSpec = {
219
- httpMethod: "PUT",
220
- path: "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/privateDnsZones/{privateZoneName}",
221
- urlParameters: [
222
- Parameters.resourceGroupName,
223
- Parameters.privateZoneName,
224
- Parameters.subscriptionId
225
- ],
226
- queryParameters: [
227
- Parameters.apiVersion
228
- ],
229
- headerParameters: [
230
- Parameters.ifMatch,
231
- Parameters.ifNoneMatch,
232
- Parameters.acceptLanguage
233
- ],
234
- requestBody: {
235
- parameterPath: "parameters",
236
- mapper: __assign(__assign({}, Mappers.PrivateZone), { required: true })
237
- },
238
- responses: {
239
- 200: {
240
- bodyMapper: Mappers.PrivateZone
241
- },
242
- 201: {
243
- bodyMapper: Mappers.PrivateZone
244
- },
245
- 202: {},
246
- default: {
247
- bodyMapper: Mappers.CloudError
248
- }
249
- },
250
- serializer: serializer
251
- };
252
- var beginUpdateOperationSpec = {
253
- httpMethod: "PATCH",
254
- path: "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/privateDnsZones/{privateZoneName}",
255
- urlParameters: [
256
- Parameters.resourceGroupName,
257
- Parameters.privateZoneName,
258
- Parameters.subscriptionId
259
- ],
260
- queryParameters: [
261
- Parameters.apiVersion
262
- ],
263
- headerParameters: [
264
- Parameters.ifMatch,
265
- Parameters.acceptLanguage
266
- ],
267
- requestBody: {
268
- parameterPath: "parameters",
269
- mapper: __assign(__assign({}, Mappers.PrivateZone), { required: true })
270
- },
271
- responses: {
272
- 200: {
273
- bodyMapper: Mappers.PrivateZone
274
- },
275
- 202: {},
276
- default: {
277
- bodyMapper: Mappers.CloudError
278
- }
279
- },
280
- serializer: serializer
281
- };
282
- var beginDeleteMethodOperationSpec = {
283
- httpMethod: "DELETE",
284
- path: "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/privateDnsZones/{privateZoneName}",
285
- urlParameters: [
286
- Parameters.resourceGroupName,
287
- Parameters.privateZoneName,
288
- Parameters.subscriptionId
289
- ],
290
- queryParameters: [
291
- Parameters.apiVersion
292
- ],
293
- headerParameters: [
294
- Parameters.ifMatch,
295
- Parameters.acceptLanguage
296
- ],
297
- responses: {
298
- 200: {},
299
- 202: {},
300
- 204: {},
301
- default: {
302
- bodyMapper: Mappers.CloudError
303
- }
304
- },
305
- serializer: serializer
306
- };
307
- var listNextOperationSpec = {
308
- httpMethod: "GET",
309
- baseUrl: "https://management.azure.com",
310
- path: "{nextLink}",
311
- urlParameters: [
312
- Parameters.nextPageLink
313
- ],
314
- headerParameters: [
315
- Parameters.acceptLanguage
316
- ],
317
- responses: {
318
- 200: {
319
- bodyMapper: Mappers.PrivateZoneListResult
320
- },
321
- default: {
322
- bodyMapper: Mappers.CloudError
323
- }
324
- },
325
- serializer: serializer
326
- };
327
- var listByResourceGroupNextOperationSpec = {
328
- httpMethod: "GET",
329
- baseUrl: "https://management.azure.com",
330
- path: "{nextLink}",
331
- urlParameters: [
332
- Parameters.nextPageLink
333
- ],
334
- headerParameters: [
335
- Parameters.acceptLanguage
336
- ],
337
- responses: {
338
- 200: {
339
- bodyMapper: Mappers.PrivateZoneListResult
340
- },
341
- default: {
342
- bodyMapper: Mappers.CloudError
343
- }
344
- },
345
- serializer: serializer
346
- };
347
- //# sourceMappingURL=privateZones.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"privateZones.js","sourceRoot":"","sources":["../../src/operations/privateZones.ts"],"names":[],"mappings":"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"}
@@ -1,229 +0,0 @@
1
- import * as msRest from "@azure/ms-rest-js";
2
- import * as Models from "../models";
3
- import { PrivateDnsManagementClientContext } from "../privateDnsManagementClientContext";
4
- /** Class representing a RecordSets. */
5
- export declare class RecordSets {
6
- private readonly client;
7
- /**
8
- * Create a RecordSets.
9
- * @param {PrivateDnsManagementClientContext} client Reference to the service client.
10
- */
11
- constructor(client: PrivateDnsManagementClientContext);
12
- /**
13
- * Creates or updates a record set within a Private DNS zone.
14
- * @param resourceGroupName The name of the resource group.
15
- * @param privateZoneName The name of the Private DNS zone (without a terminating dot).
16
- * @param recordType The type of DNS record in this record set. Record sets of type SOA can be
17
- * updated but not created (they are created when the Private DNS zone is created). Possible values
18
- * include: 'A', 'AAAA', 'CNAME', 'MX', 'PTR', 'SOA', 'SRV', 'TXT'
19
- * @param relativeRecordSetName The name of the record set, relative to the name of the zone.
20
- * @param parameters Parameters supplied to the CreateOrUpdate operation.
21
- * @param [options] The optional parameters
22
- * @returns Promise<Models.RecordSetsCreateOrUpdateResponse>
23
- */
24
- createOrUpdate(resourceGroupName: string, privateZoneName: string, recordType: Models.RecordType, relativeRecordSetName: string, parameters: Models.RecordSet, options?: Models.RecordSetsCreateOrUpdateOptionalParams): Promise<Models.RecordSetsCreateOrUpdateResponse>;
25
- /**
26
- * @param resourceGroupName The name of the resource group.
27
- * @param privateZoneName The name of the Private DNS zone (without a terminating dot).
28
- * @param recordType The type of DNS record in this record set. Record sets of type SOA can be
29
- * updated but not created (they are created when the Private DNS zone is created). Possible values
30
- * include: 'A', 'AAAA', 'CNAME', 'MX', 'PTR', 'SOA', 'SRV', 'TXT'
31
- * @param relativeRecordSetName The name of the record set, relative to the name of the zone.
32
- * @param parameters Parameters supplied to the CreateOrUpdate operation.
33
- * @param callback The callback
34
- */
35
- createOrUpdate(resourceGroupName: string, privateZoneName: string, recordType: Models.RecordType, relativeRecordSetName: string, parameters: Models.RecordSet, callback: msRest.ServiceCallback<Models.RecordSet>): void;
36
- /**
37
- * @param resourceGroupName The name of the resource group.
38
- * @param privateZoneName The name of the Private DNS zone (without a terminating dot).
39
- * @param recordType The type of DNS record in this record set. Record sets of type SOA can be
40
- * updated but not created (they are created when the Private DNS zone is created). Possible values
41
- * include: 'A', 'AAAA', 'CNAME', 'MX', 'PTR', 'SOA', 'SRV', 'TXT'
42
- * @param relativeRecordSetName The name of the record set, relative to the name of the zone.
43
- * @param parameters Parameters supplied to the CreateOrUpdate operation.
44
- * @param options The optional parameters
45
- * @param callback The callback
46
- */
47
- createOrUpdate(resourceGroupName: string, privateZoneName: string, recordType: Models.RecordType, relativeRecordSetName: string, parameters: Models.RecordSet, options: Models.RecordSetsCreateOrUpdateOptionalParams, callback: msRest.ServiceCallback<Models.RecordSet>): void;
48
- /**
49
- * Updates a record set within a Private DNS zone.
50
- * @param resourceGroupName The name of the resource group.
51
- * @param privateZoneName The name of the Private DNS zone (without a terminating dot).
52
- * @param recordType The type of DNS record in this record set. Possible values include: 'A',
53
- * 'AAAA', 'CNAME', 'MX', 'PTR', 'SOA', 'SRV', 'TXT'
54
- * @param relativeRecordSetName The name of the record set, relative to the name of the zone.
55
- * @param parameters Parameters supplied to the Update operation.
56
- * @param [options] The optional parameters
57
- * @returns Promise<Models.RecordSetsUpdateResponse>
58
- */
59
- update(resourceGroupName: string, privateZoneName: string, recordType: Models.RecordType, relativeRecordSetName: string, parameters: Models.RecordSet, options?: Models.RecordSetsUpdateOptionalParams): Promise<Models.RecordSetsUpdateResponse>;
60
- /**
61
- * @param resourceGroupName The name of the resource group.
62
- * @param privateZoneName The name of the Private DNS zone (without a terminating dot).
63
- * @param recordType The type of DNS record in this record set. Possible values include: 'A',
64
- * 'AAAA', 'CNAME', 'MX', 'PTR', 'SOA', 'SRV', 'TXT'
65
- * @param relativeRecordSetName The name of the record set, relative to the name of the zone.
66
- * @param parameters Parameters supplied to the Update operation.
67
- * @param callback The callback
68
- */
69
- update(resourceGroupName: string, privateZoneName: string, recordType: Models.RecordType, relativeRecordSetName: string, parameters: Models.RecordSet, callback: msRest.ServiceCallback<Models.RecordSet>): void;
70
- /**
71
- * @param resourceGroupName The name of the resource group.
72
- * @param privateZoneName The name of the Private DNS zone (without a terminating dot).
73
- * @param recordType The type of DNS record in this record set. Possible values include: 'A',
74
- * 'AAAA', 'CNAME', 'MX', 'PTR', 'SOA', 'SRV', 'TXT'
75
- * @param relativeRecordSetName The name of the record set, relative to the name of the zone.
76
- * @param parameters Parameters supplied to the Update operation.
77
- * @param options The optional parameters
78
- * @param callback The callback
79
- */
80
- update(resourceGroupName: string, privateZoneName: string, recordType: Models.RecordType, relativeRecordSetName: string, parameters: Models.RecordSet, options: Models.RecordSetsUpdateOptionalParams, callback: msRest.ServiceCallback<Models.RecordSet>): void;
81
- /**
82
- * Deletes a record set from a Private DNS zone. This operation cannot be undone.
83
- * @param resourceGroupName The name of the resource group.
84
- * @param privateZoneName The name of the Private DNS zone (without a terminating dot).
85
- * @param recordType The type of DNS record in this record set. Record sets of type SOA cannot be
86
- * deleted (they are deleted when the Private DNS zone is deleted). Possible values include: 'A',
87
- * 'AAAA', 'CNAME', 'MX', 'PTR', 'SOA', 'SRV', 'TXT'
88
- * @param relativeRecordSetName The name of the record set, relative to the name of the zone.
89
- * @param [options] The optional parameters
90
- * @returns Promise<msRest.RestResponse>
91
- */
92
- deleteMethod(resourceGroupName: string, privateZoneName: string, recordType: Models.RecordType, relativeRecordSetName: string, options?: Models.RecordSetsDeleteMethodOptionalParams): Promise<msRest.RestResponse>;
93
- /**
94
- * @param resourceGroupName The name of the resource group.
95
- * @param privateZoneName The name of the Private DNS zone (without a terminating dot).
96
- * @param recordType The type of DNS record in this record set. Record sets of type SOA cannot be
97
- * deleted (they are deleted when the Private DNS zone is deleted). Possible values include: 'A',
98
- * 'AAAA', 'CNAME', 'MX', 'PTR', 'SOA', 'SRV', 'TXT'
99
- * @param relativeRecordSetName The name of the record set, relative to the name of the zone.
100
- * @param callback The callback
101
- */
102
- deleteMethod(resourceGroupName: string, privateZoneName: string, recordType: Models.RecordType, relativeRecordSetName: string, callback: msRest.ServiceCallback<void>): void;
103
- /**
104
- * @param resourceGroupName The name of the resource group.
105
- * @param privateZoneName The name of the Private DNS zone (without a terminating dot).
106
- * @param recordType The type of DNS record in this record set. Record sets of type SOA cannot be
107
- * deleted (they are deleted when the Private DNS zone is deleted). Possible values include: 'A',
108
- * 'AAAA', 'CNAME', 'MX', 'PTR', 'SOA', 'SRV', 'TXT'
109
- * @param relativeRecordSetName The name of the record set, relative to the name of the zone.
110
- * @param options The optional parameters
111
- * @param callback The callback
112
- */
113
- deleteMethod(resourceGroupName: string, privateZoneName: string, recordType: Models.RecordType, relativeRecordSetName: string, options: Models.RecordSetsDeleteMethodOptionalParams, callback: msRest.ServiceCallback<void>): void;
114
- /**
115
- * Gets a record set.
116
- * @param resourceGroupName The name of the resource group.
117
- * @param privateZoneName The name of the Private DNS zone (without a terminating dot).
118
- * @param recordType The type of DNS record in this record set. Possible values include: 'A',
119
- * 'AAAA', 'CNAME', 'MX', 'PTR', 'SOA', 'SRV', 'TXT'
120
- * @param relativeRecordSetName The name of the record set, relative to the name of the zone.
121
- * @param [options] The optional parameters
122
- * @returns Promise<Models.RecordSetsGetResponse>
123
- */
124
- get(resourceGroupName: string, privateZoneName: string, recordType: Models.RecordType, relativeRecordSetName: string, options?: msRest.RequestOptionsBase): Promise<Models.RecordSetsGetResponse>;
125
- /**
126
- * @param resourceGroupName The name of the resource group.
127
- * @param privateZoneName The name of the Private DNS zone (without a terminating dot).
128
- * @param recordType The type of DNS record in this record set. Possible values include: 'A',
129
- * 'AAAA', 'CNAME', 'MX', 'PTR', 'SOA', 'SRV', 'TXT'
130
- * @param relativeRecordSetName The name of the record set, relative to the name of the zone.
131
- * @param callback The callback
132
- */
133
- get(resourceGroupName: string, privateZoneName: string, recordType: Models.RecordType, relativeRecordSetName: string, callback: msRest.ServiceCallback<Models.RecordSet>): void;
134
- /**
135
- * @param resourceGroupName The name of the resource group.
136
- * @param privateZoneName The name of the Private DNS zone (without a terminating dot).
137
- * @param recordType The type of DNS record in this record set. Possible values include: 'A',
138
- * 'AAAA', 'CNAME', 'MX', 'PTR', 'SOA', 'SRV', 'TXT'
139
- * @param relativeRecordSetName The name of the record set, relative to the name of the zone.
140
- * @param options The optional parameters
141
- * @param callback The callback
142
- */
143
- get(resourceGroupName: string, privateZoneName: string, recordType: Models.RecordType, relativeRecordSetName: string, options: msRest.RequestOptionsBase, callback: msRest.ServiceCallback<Models.RecordSet>): void;
144
- /**
145
- * Lists the record sets of a specified type in a Private DNS zone.
146
- * @param resourceGroupName The name of the resource group.
147
- * @param privateZoneName The name of the Private DNS zone (without a terminating dot).
148
- * @param recordType The type of record sets to enumerate. Possible values include: 'A', 'AAAA',
149
- * 'CNAME', 'MX', 'PTR', 'SOA', 'SRV', 'TXT'
150
- * @param [options] The optional parameters
151
- * @returns Promise<Models.RecordSetsListByTypeResponse>
152
- */
153
- listByType(resourceGroupName: string, privateZoneName: string, recordType: Models.RecordType, options?: Models.RecordSetsListByTypeOptionalParams): Promise<Models.RecordSetsListByTypeResponse>;
154
- /**
155
- * @param resourceGroupName The name of the resource group.
156
- * @param privateZoneName The name of the Private DNS zone (without a terminating dot).
157
- * @param recordType The type of record sets to enumerate. Possible values include: 'A', 'AAAA',
158
- * 'CNAME', 'MX', 'PTR', 'SOA', 'SRV', 'TXT'
159
- * @param callback The callback
160
- */
161
- listByType(resourceGroupName: string, privateZoneName: string, recordType: Models.RecordType, callback: msRest.ServiceCallback<Models.RecordSetListResult>): void;
162
- /**
163
- * @param resourceGroupName The name of the resource group.
164
- * @param privateZoneName The name of the Private DNS zone (without a terminating dot).
165
- * @param recordType The type of record sets to enumerate. Possible values include: 'A', 'AAAA',
166
- * 'CNAME', 'MX', 'PTR', 'SOA', 'SRV', 'TXT'
167
- * @param options The optional parameters
168
- * @param callback The callback
169
- */
170
- listByType(resourceGroupName: string, privateZoneName: string, recordType: Models.RecordType, options: Models.RecordSetsListByTypeOptionalParams, callback: msRest.ServiceCallback<Models.RecordSetListResult>): void;
171
- /**
172
- * Lists all record sets in a Private DNS zone.
173
- * @param resourceGroupName The name of the resource group.
174
- * @param privateZoneName The name of the Private DNS zone (without a terminating dot).
175
- * @param [options] The optional parameters
176
- * @returns Promise<Models.RecordSetsListResponse>
177
- */
178
- list(resourceGroupName: string, privateZoneName: string, options?: Models.RecordSetsListOptionalParams): Promise<Models.RecordSetsListResponse>;
179
- /**
180
- * @param resourceGroupName The name of the resource group.
181
- * @param privateZoneName The name of the Private DNS zone (without a terminating dot).
182
- * @param callback The callback
183
- */
184
- list(resourceGroupName: string, privateZoneName: string, callback: msRest.ServiceCallback<Models.RecordSetListResult>): void;
185
- /**
186
- * @param resourceGroupName The name of the resource group.
187
- * @param privateZoneName The name of the Private DNS zone (without a terminating dot).
188
- * @param options The optional parameters
189
- * @param callback The callback
190
- */
191
- list(resourceGroupName: string, privateZoneName: string, options: Models.RecordSetsListOptionalParams, callback: msRest.ServiceCallback<Models.RecordSetListResult>): void;
192
- /**
193
- * Lists the record sets of a specified type in a Private DNS zone.
194
- * @param nextPageLink The NextLink from the previous successful call to List operation.
195
- * @param [options] The optional parameters
196
- * @returns Promise<Models.RecordSetsListByTypeNextResponse>
197
- */
198
- listByTypeNext(nextPageLink: string, options?: msRest.RequestOptionsBase): Promise<Models.RecordSetsListByTypeNextResponse>;
199
- /**
200
- * @param nextPageLink The NextLink from the previous successful call to List operation.
201
- * @param callback The callback
202
- */
203
- listByTypeNext(nextPageLink: string, callback: msRest.ServiceCallback<Models.RecordSetListResult>): void;
204
- /**
205
- * @param nextPageLink The NextLink from the previous successful call to List operation.
206
- * @param options The optional parameters
207
- * @param callback The callback
208
- */
209
- listByTypeNext(nextPageLink: string, options: msRest.RequestOptionsBase, callback: msRest.ServiceCallback<Models.RecordSetListResult>): void;
210
- /**
211
- * Lists all record sets in a Private DNS zone.
212
- * @param nextPageLink The NextLink from the previous successful call to List operation.
213
- * @param [options] The optional parameters
214
- * @returns Promise<Models.RecordSetsListNextResponse>
215
- */
216
- listNext(nextPageLink: string, options?: msRest.RequestOptionsBase): Promise<Models.RecordSetsListNextResponse>;
217
- /**
218
- * @param nextPageLink The NextLink from the previous successful call to List operation.
219
- * @param callback The callback
220
- */
221
- listNext(nextPageLink: string, callback: msRest.ServiceCallback<Models.RecordSetListResult>): void;
222
- /**
223
- * @param nextPageLink The NextLink from the previous successful call to List operation.
224
- * @param options The optional parameters
225
- * @param callback The callback
226
- */
227
- listNext(nextPageLink: string, options: msRest.RequestOptionsBase, callback: msRest.ServiceCallback<Models.RecordSetListResult>): void;
228
- }
229
- //# sourceMappingURL=recordSets.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"recordSets.d.ts","sourceRoot":"","sources":["../../src/operations/recordSets.ts"],"names":[],"mappings":"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"}