@azure/arm-dns 5.2.0-alpha.20250619.1 → 5.2.0-alpha.20250718.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "sdk-type": "mgmt",
4
4
  "author": "Microsoft Corporation",
5
5
  "description": "A generated SDK for DnsManagementClient.",
6
- "version": "5.2.0-alpha.20250619.1",
6
+ "version": "5.2.0-alpha.20250718.1",
7
7
  "engines": {
8
8
  "node": ">=20.0.0"
9
9
  },
@@ -1,541 +1,541 @@
1
- ## API Report File for "@azure/arm-dns"
2
-
3
- > Do not edit this file. It is a report generated by [API Extractor](https://api-extractor.com/).
4
-
5
- ```ts
6
-
7
- import * as coreAuth from '@azure/core-auth';
8
- import * as coreClient from '@azure/core-client';
9
- import { OperationState } from '@azure/core-lro';
10
- import { PagedAsyncIterableIterator } from '@azure/core-paging';
11
- import { SimplePollerLike } from '@azure/core-lro';
12
-
13
- // @public
14
- export interface AaaaRecord {
15
- ipv6Address?: string;
16
- }
17
-
18
- // @public
19
- export interface ARecord {
20
- ipv4Address?: string;
21
- }
22
-
23
- // @public
24
- export interface CaaRecord {
25
- flags?: number;
26
- tag?: string;
27
- value?: string;
28
- }
29
-
30
- // @public
31
- export interface CloudError {
32
- error?: CloudErrorBody;
33
- }
34
-
35
- // @public
36
- export interface CloudErrorBody {
37
- code?: string;
38
- details?: CloudErrorBody[];
39
- message?: string;
40
- target?: string;
41
- }
42
-
43
- // @public
44
- export interface CnameRecord {
45
- cname?: string;
46
- }
47
-
48
- // @public
49
- export type CreatedByType = string;
50
-
51
- // @public
52
- export interface DelegationSignerInfo {
53
- readonly digestAlgorithmType?: number;
54
- readonly digestValue?: string;
55
- readonly record?: string;
56
- }
57
-
58
- // @public
59
- export interface Digest {
60
- algorithmType?: number;
61
- value?: string;
62
- }
63
-
64
- // @public (undocumented)
65
- export class DnsManagementClient extends coreClient.ServiceClient {
66
- // (undocumented)
67
- $host: string;
68
- constructor(credentials: coreAuth.TokenCredential, subscriptionId: string, options?: DnsManagementClientOptionalParams);
69
- // (undocumented)
70
- apiVersion: string;
71
- // (undocumented)
72
- dnsResourceReferenceOperations: DnsResourceReferenceOperations;
73
- // (undocumented)
74
- dnssecConfigs: DnssecConfigs;
75
- // (undocumented)
76
- recordSets: RecordSets;
77
- // (undocumented)
78
- subscriptionId: string;
79
- // (undocumented)
80
- zones: Zones;
81
- }
82
-
83
- // @public
84
- export interface DnsManagementClientOptionalParams extends coreClient.ServiceClientOptions {
85
- $host?: string;
86
- apiVersion?: string;
87
- endpoint?: string;
88
- }
89
-
90
- // @public
91
- export interface DnsResourceReference {
92
- dnsResources?: SubResource[];
93
- targetResource?: SubResource;
94
- }
95
-
96
- // @public
97
- export interface DnsResourceReferenceGetByTargetResourcesOptionalParams extends coreClient.OperationOptions {
98
- }
99
-
100
- // @public
101
- export type DnsResourceReferenceGetByTargetResourcesResponse = DnsResourceReferenceResult;
102
-
103
- // @public
104
- export interface DnsResourceReferenceOperations {
105
- getByTargetResources(parameters: DnsResourceReferenceRequest, options?: DnsResourceReferenceGetByTargetResourcesOptionalParams): Promise<DnsResourceReferenceGetByTargetResourcesResponse>;
106
- }
107
-
108
- // @public
109
- export interface DnsResourceReferenceRequest {
110
- targetResources?: SubResource[];
111
- }
112
-
113
- // @public
114
- export interface DnsResourceReferenceResult {
115
- dnsResourceReferences?: DnsResourceReference[];
116
- }
117
-
118
- // @public
119
- export interface DnssecConfig {
120
- etag?: string;
121
- readonly id?: string;
122
- readonly name?: string;
123
- readonly provisioningState?: string;
124
- readonly signingKeys?: SigningKey[];
125
- readonly systemData?: SystemData;
126
- readonly type?: string;
127
- }
128
-
129
- // @public
130
- export interface DnssecConfigListResult {
131
- readonly nextLink?: string;
132
- value?: DnssecConfig[];
133
- }
134
-
135
- // @public
136
- export interface DnssecConfigs {
137
- beginCreateOrUpdate(resourceGroupName: string, zoneName: string, options?: DnssecConfigsCreateOrUpdateOptionalParams): Promise<SimplePollerLike<OperationState<DnssecConfigsCreateOrUpdateResponse>, DnssecConfigsCreateOrUpdateResponse>>;
138
- beginCreateOrUpdateAndWait(resourceGroupName: string, zoneName: string, options?: DnssecConfigsCreateOrUpdateOptionalParams): Promise<DnssecConfigsCreateOrUpdateResponse>;
139
- beginDelete(resourceGroupName: string, zoneName: string, options?: DnssecConfigsDeleteOptionalParams): Promise<SimplePollerLike<OperationState<void>, void>>;
140
- beginDeleteAndWait(resourceGroupName: string, zoneName: string, options?: DnssecConfigsDeleteOptionalParams): Promise<void>;
141
- get(resourceGroupName: string, zoneName: string, options?: DnssecConfigsGetOptionalParams): Promise<DnssecConfigsGetResponse>;
142
- listByDnsZone(resourceGroupName: string, zoneName: string, options?: DnssecConfigsListByDnsZoneOptionalParams): PagedAsyncIterableIterator<DnssecConfig>;
143
- }
144
-
145
- // @public
146
- export interface DnssecConfigsCreateOrUpdateOptionalParams extends coreClient.OperationOptions {
147
- ifMatch?: string;
148
- ifNoneMatch?: string;
149
- resumeFrom?: string;
150
- updateIntervalInMs?: number;
151
- }
152
-
153
- // @public
154
- export type DnssecConfigsCreateOrUpdateResponse = DnssecConfig;
155
-
156
- // @public
157
- export interface DnssecConfigsDeleteHeaders {
158
- location?: string;
159
- }
160
-
161
- // @public
162
- export interface DnssecConfigsDeleteOptionalParams extends coreClient.OperationOptions {
163
- ifMatch?: string;
164
- resumeFrom?: string;
165
- updateIntervalInMs?: number;
166
- }
167
-
168
- // @public
169
- export interface DnssecConfigsGetOptionalParams extends coreClient.OperationOptions {
170
- }
171
-
172
- // @public
173
- export type DnssecConfigsGetResponse = DnssecConfig;
174
-
175
- // @public
176
- export interface DnssecConfigsListByDnsZoneNextOptionalParams extends coreClient.OperationOptions {
177
- }
178
-
179
- // @public
180
- export type DnssecConfigsListByDnsZoneNextResponse = DnssecConfigListResult;
181
-
182
- // @public
183
- export interface DnssecConfigsListByDnsZoneOptionalParams extends coreClient.OperationOptions {
184
- }
185
-
186
- // @public
187
- export type DnssecConfigsListByDnsZoneResponse = DnssecConfigListResult;
188
-
189
- // @public
190
- export interface DsRecord {
191
- algorithm?: number;
192
- digest?: Digest;
193
- keyTag?: number;
194
- }
195
-
196
- // @public
197
- export function getContinuationToken(page: unknown): string | undefined;
198
-
199
- // @public
200
- export enum KnownCreatedByType {
201
- Application = "Application",
202
- Key = "Key",
203
- ManagedIdentity = "ManagedIdentity",
204
- User = "User"
205
- }
206
-
207
- // @public
208
- export interface MxRecord {
209
- exchange?: string;
210
- preference?: number;
211
- }
212
-
213
- // @public
214
- export interface NaptrRecord {
215
- flags?: string;
216
- order?: number;
217
- preference?: number;
218
- regexp?: string;
219
- replacement?: string;
220
- services?: string;
221
- }
222
-
223
- // @public
224
- export interface NsRecord {
225
- nsdname?: string;
226
- }
227
-
228
- // @public
229
- export interface PtrRecord {
230
- ptrdname?: string;
231
- }
232
-
233
- // @public
234
- export interface RecordSet {
235
- aaaaRecords?: AaaaRecord[];
236
- aRecords?: ARecord[];
237
- caaRecords?: CaaRecord[];
238
- cnameRecord?: CnameRecord;
239
- dsRecords?: DsRecord[];
240
- etag?: string;
241
- readonly fqdn?: string;
242
- readonly id?: string;
243
- metadata?: {
244
- [propertyName: string]: string;
245
- };
246
- mxRecords?: MxRecord[];
247
- readonly name?: string;
248
- naptrRecords?: NaptrRecord[];
249
- nsRecords?: NsRecord[];
250
- readonly provisioningState?: string;
251
- ptrRecords?: PtrRecord[];
252
- soaRecord?: SoaRecord;
253
- srvRecords?: SrvRecord[];
254
- targetResource?: SubResource;
255
- tlsaRecords?: TlsaRecord[];
256
- trafficManagementProfile?: SubResource;
257
- ttl?: number;
258
- txtRecords?: TxtRecord[];
259
- readonly type?: string;
260
- }
261
-
262
- // @public
263
- export interface RecordSetListResult {
264
- readonly nextLink?: string;
265
- value?: RecordSet[];
266
- }
267
-
268
- // @public
269
- export interface RecordSets {
270
- createOrUpdate(resourceGroupName: string, zoneName: string, relativeRecordSetName: string, recordType: RecordType, parameters: RecordSet, options?: RecordSetsCreateOrUpdateOptionalParams): Promise<RecordSetsCreateOrUpdateResponse>;
271
- delete(resourceGroupName: string, zoneName: string, relativeRecordSetName: string, recordType: RecordType, options?: RecordSetsDeleteOptionalParams): Promise<void>;
272
- get(resourceGroupName: string, zoneName: string, relativeRecordSetName: string, recordType: RecordType, options?: RecordSetsGetOptionalParams): Promise<RecordSetsGetResponse>;
273
- listAllByDnsZone(resourceGroupName: string, zoneName: string, options?: RecordSetsListAllByDnsZoneOptionalParams): PagedAsyncIterableIterator<RecordSet>;
274
- listByDnsZone(resourceGroupName: string, zoneName: string, options?: RecordSetsListByDnsZoneOptionalParams): PagedAsyncIterableIterator<RecordSet>;
275
- listByType(resourceGroupName: string, zoneName: string, recordType: RecordType, options?: RecordSetsListByTypeOptionalParams): PagedAsyncIterableIterator<RecordSet>;
276
- update(resourceGroupName: string, zoneName: string, relativeRecordSetName: string, recordType: RecordType, parameters: RecordSet, options?: RecordSetsUpdateOptionalParams): Promise<RecordSetsUpdateResponse>;
277
- }
278
-
279
- // @public
280
- export interface RecordSetsCreateOrUpdateOptionalParams extends coreClient.OperationOptions {
281
- ifMatch?: string;
282
- ifNoneMatch?: string;
283
- }
284
-
285
- // @public
286
- export type RecordSetsCreateOrUpdateResponse = RecordSet;
287
-
288
- // @public
289
- export interface RecordSetsDeleteOptionalParams extends coreClient.OperationOptions {
290
- ifMatch?: string;
291
- }
292
-
293
- // @public
294
- export interface RecordSetsGetOptionalParams extends coreClient.OperationOptions {
295
- }
296
-
297
- // @public
298
- export type RecordSetsGetResponse = RecordSet;
299
-
300
- // @public
301
- export interface RecordSetsListAllByDnsZoneNextOptionalParams extends coreClient.OperationOptions {
302
- }
303
-
304
- // @public
305
- export type RecordSetsListAllByDnsZoneNextResponse = RecordSetListResult;
306
-
307
- // @public
308
- export interface RecordSetsListAllByDnsZoneOptionalParams extends coreClient.OperationOptions {
309
- recordSetNameSuffix?: string;
310
- top?: number;
311
- }
312
-
313
- // @public
314
- export type RecordSetsListAllByDnsZoneResponse = RecordSetListResult;
315
-
316
- // @public
317
- export interface RecordSetsListByDnsZoneNextOptionalParams extends coreClient.OperationOptions {
318
- }
319
-
320
- // @public
321
- export type RecordSetsListByDnsZoneNextResponse = RecordSetListResult;
322
-
323
- // @public
324
- export interface RecordSetsListByDnsZoneOptionalParams extends coreClient.OperationOptions {
325
- recordsetnamesuffix?: string;
326
- top?: number;
327
- }
328
-
329
- // @public
330
- export type RecordSetsListByDnsZoneResponse = RecordSetListResult;
331
-
332
- // @public
333
- export interface RecordSetsListByTypeNextOptionalParams extends coreClient.OperationOptions {
334
- }
335
-
336
- // @public
337
- export type RecordSetsListByTypeNextResponse = RecordSetListResult;
338
-
339
- // @public
340
- export interface RecordSetsListByTypeOptionalParams extends coreClient.OperationOptions {
341
- recordsetnamesuffix?: string;
342
- top?: number;
343
- }
344
-
345
- // @public
346
- export type RecordSetsListByTypeResponse = RecordSetListResult;
347
-
348
- // @public
349
- export interface RecordSetsUpdateOptionalParams extends coreClient.OperationOptions {
350
- ifMatch?: string;
351
- }
352
-
353
- // @public
354
- export type RecordSetsUpdateResponse = RecordSet;
355
-
356
- // @public
357
- export interface RecordSetUpdateParameters {
358
- recordSet?: RecordSet;
359
- }
360
-
361
- // @public
362
- export type RecordType = "A" | "AAAA" | "CAA" | "CNAME" | "MX" | "NS" | "PTR" | "SOA" | "SRV" | "TXT" | "TLSA" | "DS" | "NAPTR";
363
-
364
- // @public
365
- export interface Resource {
366
- readonly id?: string;
367
- location: string;
368
- readonly name?: string;
369
- tags?: {
370
- [propertyName: string]: string;
371
- };
372
- readonly type?: string;
373
- }
374
-
375
- // @public
376
- export interface SigningKey {
377
- readonly delegationSignerInfo?: DelegationSignerInfo[];
378
- readonly flags?: number;
379
- readonly keyTag?: number;
380
- readonly protocol?: number;
381
- readonly publicKey?: string;
382
- readonly securityAlgorithmType?: number;
383
- }
384
-
385
- // @public
386
- export interface SoaRecord {
387
- email?: string;
388
- expireTime?: number;
389
- host?: string;
390
- minimumTtl?: number;
391
- refreshTime?: number;
392
- retryTime?: number;
393
- serialNumber?: number;
394
- }
395
-
396
- // @public
397
- export interface SrvRecord {
398
- port?: number;
399
- priority?: number;
400
- target?: string;
401
- weight?: number;
402
- }
403
-
404
- // @public
405
- export interface SubResource {
406
- id?: string;
407
- }
408
-
409
- // @public
410
- export interface SystemData {
411
- createdAt?: Date;
412
- createdBy?: string;
413
- createdByType?: CreatedByType;
414
- lastModifiedAt?: Date;
415
- lastModifiedBy?: string;
416
- lastModifiedByType?: CreatedByType;
417
- }
418
-
419
- // @public
420
- export interface TlsaRecord {
421
- certAssociationData?: string;
422
- matchingType?: number;
423
- selector?: number;
424
- usage?: number;
425
- }
426
-
427
- // @public
428
- export interface TxtRecord {
429
- value?: string[];
430
- }
431
-
432
- // @public
433
- export interface Zone extends Resource {
434
- etag?: string;
435
- readonly maxNumberOfRecordSets?: number;
436
- readonly maxNumberOfRecordsPerRecordSet?: number;
437
- readonly nameServers?: string[];
438
- readonly numberOfRecordSets?: number;
439
- registrationVirtualNetworks?: SubResource[];
440
- resolutionVirtualNetworks?: SubResource[];
441
- readonly signingKeys?: SigningKey[];
442
- readonly systemData?: SystemData;
443
- zoneType?: ZoneType;
444
- }
445
-
446
- // @public
447
- export interface ZoneListResult {
448
- readonly nextLink?: string;
449
- value?: Zone[];
450
- }
451
-
452
- // @public
453
- export interface Zones {
454
- beginDelete(resourceGroupName: string, zoneName: string, options?: ZonesDeleteOptionalParams): Promise<SimplePollerLike<OperationState<void>, void>>;
455
- beginDeleteAndWait(resourceGroupName: string, zoneName: string, options?: ZonesDeleteOptionalParams): Promise<void>;
456
- createOrUpdate(resourceGroupName: string, zoneName: string, parameters: Zone, options?: ZonesCreateOrUpdateOptionalParams): Promise<ZonesCreateOrUpdateResponse>;
457
- get(resourceGroupName: string, zoneName: string, options?: ZonesGetOptionalParams): Promise<ZonesGetResponse>;
458
- list(options?: ZonesListOptionalParams): PagedAsyncIterableIterator<Zone>;
459
- listByResourceGroup(resourceGroupName: string, options?: ZonesListByResourceGroupOptionalParams): PagedAsyncIterableIterator<Zone>;
460
- update(resourceGroupName: string, zoneName: string, parameters: ZoneUpdate, options?: ZonesUpdateOptionalParams): Promise<ZonesUpdateResponse>;
461
- }
462
-
463
- // @public
464
- export interface ZonesCreateOrUpdateOptionalParams extends coreClient.OperationOptions {
465
- ifMatch?: string;
466
- ifNoneMatch?: string;
467
- }
468
-
469
- // @public
470
- export type ZonesCreateOrUpdateResponse = Zone;
471
-
472
- // @public
473
- export interface ZonesDeleteHeaders {
474
- location?: string;
475
- }
476
-
477
- // @public
478
- export interface ZonesDeleteOptionalParams extends coreClient.OperationOptions {
479
- ifMatch?: string;
480
- resumeFrom?: string;
481
- updateIntervalInMs?: number;
482
- }
483
-
484
- // @public
485
- export interface ZonesGetOptionalParams extends coreClient.OperationOptions {
486
- }
487
-
488
- // @public
489
- export type ZonesGetResponse = Zone;
490
-
491
- // @public
492
- export interface ZonesListByResourceGroupNextOptionalParams extends coreClient.OperationOptions {
493
- }
494
-
495
- // @public
496
- export type ZonesListByResourceGroupNextResponse = ZoneListResult;
497
-
498
- // @public
499
- export interface ZonesListByResourceGroupOptionalParams extends coreClient.OperationOptions {
500
- top?: number;
501
- }
502
-
503
- // @public
504
- export type ZonesListByResourceGroupResponse = ZoneListResult;
505
-
506
- // @public
507
- export interface ZonesListNextOptionalParams extends coreClient.OperationOptions {
508
- }
509
-
510
- // @public
511
- export type ZonesListNextResponse = ZoneListResult;
512
-
513
- // @public
514
- export interface ZonesListOptionalParams extends coreClient.OperationOptions {
515
- top?: number;
516
- }
517
-
518
- // @public
519
- export type ZonesListResponse = ZoneListResult;
520
-
521
- // @public
522
- export interface ZonesUpdateOptionalParams extends coreClient.OperationOptions {
523
- ifMatch?: string;
524
- }
525
-
526
- // @public
527
- export type ZonesUpdateResponse = Zone;
528
-
529
- // @public
530
- export type ZoneType = "Public" | "Private";
531
-
532
- // @public
533
- export interface ZoneUpdate {
534
- tags?: {
535
- [propertyName: string]: string;
536
- };
537
- }
538
-
539
- // (No @packageDocumentation comment for this package)
540
-
541
- ```
1
+ ## API Report File for "@azure/arm-dns"
2
+
3
+ > Do not edit this file. It is a report generated by [API Extractor](https://api-extractor.com/).
4
+
5
+ ```ts
6
+
7
+ import * as coreAuth from '@azure/core-auth';
8
+ import * as coreClient from '@azure/core-client';
9
+ import { OperationState } from '@azure/core-lro';
10
+ import { PagedAsyncIterableIterator } from '@azure/core-paging';
11
+ import { SimplePollerLike } from '@azure/core-lro';
12
+
13
+ // @public
14
+ export interface AaaaRecord {
15
+ ipv6Address?: string;
16
+ }
17
+
18
+ // @public
19
+ export interface ARecord {
20
+ ipv4Address?: string;
21
+ }
22
+
23
+ // @public
24
+ export interface CaaRecord {
25
+ flags?: number;
26
+ tag?: string;
27
+ value?: string;
28
+ }
29
+
30
+ // @public
31
+ export interface CloudError {
32
+ error?: CloudErrorBody;
33
+ }
34
+
35
+ // @public
36
+ export interface CloudErrorBody {
37
+ code?: string;
38
+ details?: CloudErrorBody[];
39
+ message?: string;
40
+ target?: string;
41
+ }
42
+
43
+ // @public
44
+ export interface CnameRecord {
45
+ cname?: string;
46
+ }
47
+
48
+ // @public
49
+ export type CreatedByType = string;
50
+
51
+ // @public
52
+ export interface DelegationSignerInfo {
53
+ readonly digestAlgorithmType?: number;
54
+ readonly digestValue?: string;
55
+ readonly record?: string;
56
+ }
57
+
58
+ // @public
59
+ export interface Digest {
60
+ algorithmType?: number;
61
+ value?: string;
62
+ }
63
+
64
+ // @public (undocumented)
65
+ export class DnsManagementClient extends coreClient.ServiceClient {
66
+ // (undocumented)
67
+ $host: string;
68
+ constructor(credentials: coreAuth.TokenCredential, subscriptionId: string, options?: DnsManagementClientOptionalParams);
69
+ // (undocumented)
70
+ apiVersion: string;
71
+ // (undocumented)
72
+ dnsResourceReferenceOperations: DnsResourceReferenceOperations;
73
+ // (undocumented)
74
+ dnssecConfigs: DnssecConfigs;
75
+ // (undocumented)
76
+ recordSets: RecordSets;
77
+ // (undocumented)
78
+ subscriptionId: string;
79
+ // (undocumented)
80
+ zones: Zones;
81
+ }
82
+
83
+ // @public
84
+ export interface DnsManagementClientOptionalParams extends coreClient.ServiceClientOptions {
85
+ $host?: string;
86
+ apiVersion?: string;
87
+ endpoint?: string;
88
+ }
89
+
90
+ // @public
91
+ export interface DnsResourceReference {
92
+ dnsResources?: SubResource[];
93
+ targetResource?: SubResource;
94
+ }
95
+
96
+ // @public
97
+ export interface DnsResourceReferenceGetByTargetResourcesOptionalParams extends coreClient.OperationOptions {
98
+ }
99
+
100
+ // @public
101
+ export type DnsResourceReferenceGetByTargetResourcesResponse = DnsResourceReferenceResult;
102
+
103
+ // @public
104
+ export interface DnsResourceReferenceOperations {
105
+ getByTargetResources(parameters: DnsResourceReferenceRequest, options?: DnsResourceReferenceGetByTargetResourcesOptionalParams): Promise<DnsResourceReferenceGetByTargetResourcesResponse>;
106
+ }
107
+
108
+ // @public
109
+ export interface DnsResourceReferenceRequest {
110
+ targetResources?: SubResource[];
111
+ }
112
+
113
+ // @public
114
+ export interface DnsResourceReferenceResult {
115
+ dnsResourceReferences?: DnsResourceReference[];
116
+ }
117
+
118
+ // @public
119
+ export interface DnssecConfig {
120
+ etag?: string;
121
+ readonly id?: string;
122
+ readonly name?: string;
123
+ readonly provisioningState?: string;
124
+ readonly signingKeys?: SigningKey[];
125
+ readonly systemData?: SystemData;
126
+ readonly type?: string;
127
+ }
128
+
129
+ // @public
130
+ export interface DnssecConfigListResult {
131
+ readonly nextLink?: string;
132
+ value?: DnssecConfig[];
133
+ }
134
+
135
+ // @public
136
+ export interface DnssecConfigs {
137
+ beginCreateOrUpdate(resourceGroupName: string, zoneName: string, options?: DnssecConfigsCreateOrUpdateOptionalParams): Promise<SimplePollerLike<OperationState<DnssecConfigsCreateOrUpdateResponse>, DnssecConfigsCreateOrUpdateResponse>>;
138
+ beginCreateOrUpdateAndWait(resourceGroupName: string, zoneName: string, options?: DnssecConfigsCreateOrUpdateOptionalParams): Promise<DnssecConfigsCreateOrUpdateResponse>;
139
+ beginDelete(resourceGroupName: string, zoneName: string, options?: DnssecConfigsDeleteOptionalParams): Promise<SimplePollerLike<OperationState<void>, void>>;
140
+ beginDeleteAndWait(resourceGroupName: string, zoneName: string, options?: DnssecConfigsDeleteOptionalParams): Promise<void>;
141
+ get(resourceGroupName: string, zoneName: string, options?: DnssecConfigsGetOptionalParams): Promise<DnssecConfigsGetResponse>;
142
+ listByDnsZone(resourceGroupName: string, zoneName: string, options?: DnssecConfigsListByDnsZoneOptionalParams): PagedAsyncIterableIterator<DnssecConfig>;
143
+ }
144
+
145
+ // @public
146
+ export interface DnssecConfigsCreateOrUpdateOptionalParams extends coreClient.OperationOptions {
147
+ ifMatch?: string;
148
+ ifNoneMatch?: string;
149
+ resumeFrom?: string;
150
+ updateIntervalInMs?: number;
151
+ }
152
+
153
+ // @public
154
+ export type DnssecConfigsCreateOrUpdateResponse = DnssecConfig;
155
+
156
+ // @public
157
+ export interface DnssecConfigsDeleteHeaders {
158
+ location?: string;
159
+ }
160
+
161
+ // @public
162
+ export interface DnssecConfigsDeleteOptionalParams extends coreClient.OperationOptions {
163
+ ifMatch?: string;
164
+ resumeFrom?: string;
165
+ updateIntervalInMs?: number;
166
+ }
167
+
168
+ // @public
169
+ export interface DnssecConfigsGetOptionalParams extends coreClient.OperationOptions {
170
+ }
171
+
172
+ // @public
173
+ export type DnssecConfigsGetResponse = DnssecConfig;
174
+
175
+ // @public
176
+ export interface DnssecConfigsListByDnsZoneNextOptionalParams extends coreClient.OperationOptions {
177
+ }
178
+
179
+ // @public
180
+ export type DnssecConfigsListByDnsZoneNextResponse = DnssecConfigListResult;
181
+
182
+ // @public
183
+ export interface DnssecConfigsListByDnsZoneOptionalParams extends coreClient.OperationOptions {
184
+ }
185
+
186
+ // @public
187
+ export type DnssecConfigsListByDnsZoneResponse = DnssecConfigListResult;
188
+
189
+ // @public
190
+ export interface DsRecord {
191
+ algorithm?: number;
192
+ digest?: Digest;
193
+ keyTag?: number;
194
+ }
195
+
196
+ // @public
197
+ export function getContinuationToken(page: unknown): string | undefined;
198
+
199
+ // @public
200
+ export enum KnownCreatedByType {
201
+ Application = "Application",
202
+ Key = "Key",
203
+ ManagedIdentity = "ManagedIdentity",
204
+ User = "User"
205
+ }
206
+
207
+ // @public
208
+ export interface MxRecord {
209
+ exchange?: string;
210
+ preference?: number;
211
+ }
212
+
213
+ // @public
214
+ export interface NaptrRecord {
215
+ flags?: string;
216
+ order?: number;
217
+ preference?: number;
218
+ regexp?: string;
219
+ replacement?: string;
220
+ services?: string;
221
+ }
222
+
223
+ // @public
224
+ export interface NsRecord {
225
+ nsdname?: string;
226
+ }
227
+
228
+ // @public
229
+ export interface PtrRecord {
230
+ ptrdname?: string;
231
+ }
232
+
233
+ // @public
234
+ export interface RecordSet {
235
+ aaaaRecords?: AaaaRecord[];
236
+ aRecords?: ARecord[];
237
+ caaRecords?: CaaRecord[];
238
+ cnameRecord?: CnameRecord;
239
+ dsRecords?: DsRecord[];
240
+ etag?: string;
241
+ readonly fqdn?: string;
242
+ readonly id?: string;
243
+ metadata?: {
244
+ [propertyName: string]: string;
245
+ };
246
+ mxRecords?: MxRecord[];
247
+ readonly name?: string;
248
+ naptrRecords?: NaptrRecord[];
249
+ nsRecords?: NsRecord[];
250
+ readonly provisioningState?: string;
251
+ ptrRecords?: PtrRecord[];
252
+ soaRecord?: SoaRecord;
253
+ srvRecords?: SrvRecord[];
254
+ targetResource?: SubResource;
255
+ tlsaRecords?: TlsaRecord[];
256
+ trafficManagementProfile?: SubResource;
257
+ ttl?: number;
258
+ txtRecords?: TxtRecord[];
259
+ readonly type?: string;
260
+ }
261
+
262
+ // @public
263
+ export interface RecordSetListResult {
264
+ readonly nextLink?: string;
265
+ value?: RecordSet[];
266
+ }
267
+
268
+ // @public
269
+ export interface RecordSets {
270
+ createOrUpdate(resourceGroupName: string, zoneName: string, relativeRecordSetName: string, recordType: RecordType, parameters: RecordSet, options?: RecordSetsCreateOrUpdateOptionalParams): Promise<RecordSetsCreateOrUpdateResponse>;
271
+ delete(resourceGroupName: string, zoneName: string, relativeRecordSetName: string, recordType: RecordType, options?: RecordSetsDeleteOptionalParams): Promise<void>;
272
+ get(resourceGroupName: string, zoneName: string, relativeRecordSetName: string, recordType: RecordType, options?: RecordSetsGetOptionalParams): Promise<RecordSetsGetResponse>;
273
+ listAllByDnsZone(resourceGroupName: string, zoneName: string, options?: RecordSetsListAllByDnsZoneOptionalParams): PagedAsyncIterableIterator<RecordSet>;
274
+ listByDnsZone(resourceGroupName: string, zoneName: string, options?: RecordSetsListByDnsZoneOptionalParams): PagedAsyncIterableIterator<RecordSet>;
275
+ listByType(resourceGroupName: string, zoneName: string, recordType: RecordType, options?: RecordSetsListByTypeOptionalParams): PagedAsyncIterableIterator<RecordSet>;
276
+ update(resourceGroupName: string, zoneName: string, relativeRecordSetName: string, recordType: RecordType, parameters: RecordSet, options?: RecordSetsUpdateOptionalParams): Promise<RecordSetsUpdateResponse>;
277
+ }
278
+
279
+ // @public
280
+ export interface RecordSetsCreateOrUpdateOptionalParams extends coreClient.OperationOptions {
281
+ ifMatch?: string;
282
+ ifNoneMatch?: string;
283
+ }
284
+
285
+ // @public
286
+ export type RecordSetsCreateOrUpdateResponse = RecordSet;
287
+
288
+ // @public
289
+ export interface RecordSetsDeleteOptionalParams extends coreClient.OperationOptions {
290
+ ifMatch?: string;
291
+ }
292
+
293
+ // @public
294
+ export interface RecordSetsGetOptionalParams extends coreClient.OperationOptions {
295
+ }
296
+
297
+ // @public
298
+ export type RecordSetsGetResponse = RecordSet;
299
+
300
+ // @public
301
+ export interface RecordSetsListAllByDnsZoneNextOptionalParams extends coreClient.OperationOptions {
302
+ }
303
+
304
+ // @public
305
+ export type RecordSetsListAllByDnsZoneNextResponse = RecordSetListResult;
306
+
307
+ // @public
308
+ export interface RecordSetsListAllByDnsZoneOptionalParams extends coreClient.OperationOptions {
309
+ recordSetNameSuffix?: string;
310
+ top?: number;
311
+ }
312
+
313
+ // @public
314
+ export type RecordSetsListAllByDnsZoneResponse = RecordSetListResult;
315
+
316
+ // @public
317
+ export interface RecordSetsListByDnsZoneNextOptionalParams extends coreClient.OperationOptions {
318
+ }
319
+
320
+ // @public
321
+ export type RecordSetsListByDnsZoneNextResponse = RecordSetListResult;
322
+
323
+ // @public
324
+ export interface RecordSetsListByDnsZoneOptionalParams extends coreClient.OperationOptions {
325
+ recordsetnamesuffix?: string;
326
+ top?: number;
327
+ }
328
+
329
+ // @public
330
+ export type RecordSetsListByDnsZoneResponse = RecordSetListResult;
331
+
332
+ // @public
333
+ export interface RecordSetsListByTypeNextOptionalParams extends coreClient.OperationOptions {
334
+ }
335
+
336
+ // @public
337
+ export type RecordSetsListByTypeNextResponse = RecordSetListResult;
338
+
339
+ // @public
340
+ export interface RecordSetsListByTypeOptionalParams extends coreClient.OperationOptions {
341
+ recordsetnamesuffix?: string;
342
+ top?: number;
343
+ }
344
+
345
+ // @public
346
+ export type RecordSetsListByTypeResponse = RecordSetListResult;
347
+
348
+ // @public
349
+ export interface RecordSetsUpdateOptionalParams extends coreClient.OperationOptions {
350
+ ifMatch?: string;
351
+ }
352
+
353
+ // @public
354
+ export type RecordSetsUpdateResponse = RecordSet;
355
+
356
+ // @public
357
+ export interface RecordSetUpdateParameters {
358
+ recordSet?: RecordSet;
359
+ }
360
+
361
+ // @public
362
+ export type RecordType = "A" | "AAAA" | "CAA" | "CNAME" | "MX" | "NS" | "PTR" | "SOA" | "SRV" | "TXT" | "TLSA" | "DS" | "NAPTR";
363
+
364
+ // @public
365
+ export interface Resource {
366
+ readonly id?: string;
367
+ location: string;
368
+ readonly name?: string;
369
+ tags?: {
370
+ [propertyName: string]: string;
371
+ };
372
+ readonly type?: string;
373
+ }
374
+
375
+ // @public
376
+ export interface SigningKey {
377
+ readonly delegationSignerInfo?: DelegationSignerInfo[];
378
+ readonly flags?: number;
379
+ readonly keyTag?: number;
380
+ readonly protocol?: number;
381
+ readonly publicKey?: string;
382
+ readonly securityAlgorithmType?: number;
383
+ }
384
+
385
+ // @public
386
+ export interface SoaRecord {
387
+ email?: string;
388
+ expireTime?: number;
389
+ host?: string;
390
+ minimumTtl?: number;
391
+ refreshTime?: number;
392
+ retryTime?: number;
393
+ serialNumber?: number;
394
+ }
395
+
396
+ // @public
397
+ export interface SrvRecord {
398
+ port?: number;
399
+ priority?: number;
400
+ target?: string;
401
+ weight?: number;
402
+ }
403
+
404
+ // @public
405
+ export interface SubResource {
406
+ id?: string;
407
+ }
408
+
409
+ // @public
410
+ export interface SystemData {
411
+ createdAt?: Date;
412
+ createdBy?: string;
413
+ createdByType?: CreatedByType;
414
+ lastModifiedAt?: Date;
415
+ lastModifiedBy?: string;
416
+ lastModifiedByType?: CreatedByType;
417
+ }
418
+
419
+ // @public
420
+ export interface TlsaRecord {
421
+ certAssociationData?: string;
422
+ matchingType?: number;
423
+ selector?: number;
424
+ usage?: number;
425
+ }
426
+
427
+ // @public
428
+ export interface TxtRecord {
429
+ value?: string[];
430
+ }
431
+
432
+ // @public
433
+ export interface Zone extends Resource {
434
+ etag?: string;
435
+ readonly maxNumberOfRecordSets?: number;
436
+ readonly maxNumberOfRecordsPerRecordSet?: number;
437
+ readonly nameServers?: string[];
438
+ readonly numberOfRecordSets?: number;
439
+ registrationVirtualNetworks?: SubResource[];
440
+ resolutionVirtualNetworks?: SubResource[];
441
+ readonly signingKeys?: SigningKey[];
442
+ readonly systemData?: SystemData;
443
+ zoneType?: ZoneType;
444
+ }
445
+
446
+ // @public
447
+ export interface ZoneListResult {
448
+ readonly nextLink?: string;
449
+ value?: Zone[];
450
+ }
451
+
452
+ // @public
453
+ export interface Zones {
454
+ beginDelete(resourceGroupName: string, zoneName: string, options?: ZonesDeleteOptionalParams): Promise<SimplePollerLike<OperationState<void>, void>>;
455
+ beginDeleteAndWait(resourceGroupName: string, zoneName: string, options?: ZonesDeleteOptionalParams): Promise<void>;
456
+ createOrUpdate(resourceGroupName: string, zoneName: string, parameters: Zone, options?: ZonesCreateOrUpdateOptionalParams): Promise<ZonesCreateOrUpdateResponse>;
457
+ get(resourceGroupName: string, zoneName: string, options?: ZonesGetOptionalParams): Promise<ZonesGetResponse>;
458
+ list(options?: ZonesListOptionalParams): PagedAsyncIterableIterator<Zone>;
459
+ listByResourceGroup(resourceGroupName: string, options?: ZonesListByResourceGroupOptionalParams): PagedAsyncIterableIterator<Zone>;
460
+ update(resourceGroupName: string, zoneName: string, parameters: ZoneUpdate, options?: ZonesUpdateOptionalParams): Promise<ZonesUpdateResponse>;
461
+ }
462
+
463
+ // @public
464
+ export interface ZonesCreateOrUpdateOptionalParams extends coreClient.OperationOptions {
465
+ ifMatch?: string;
466
+ ifNoneMatch?: string;
467
+ }
468
+
469
+ // @public
470
+ export type ZonesCreateOrUpdateResponse = Zone;
471
+
472
+ // @public
473
+ export interface ZonesDeleteHeaders {
474
+ location?: string;
475
+ }
476
+
477
+ // @public
478
+ export interface ZonesDeleteOptionalParams extends coreClient.OperationOptions {
479
+ ifMatch?: string;
480
+ resumeFrom?: string;
481
+ updateIntervalInMs?: number;
482
+ }
483
+
484
+ // @public
485
+ export interface ZonesGetOptionalParams extends coreClient.OperationOptions {
486
+ }
487
+
488
+ // @public
489
+ export type ZonesGetResponse = Zone;
490
+
491
+ // @public
492
+ export interface ZonesListByResourceGroupNextOptionalParams extends coreClient.OperationOptions {
493
+ }
494
+
495
+ // @public
496
+ export type ZonesListByResourceGroupNextResponse = ZoneListResult;
497
+
498
+ // @public
499
+ export interface ZonesListByResourceGroupOptionalParams extends coreClient.OperationOptions {
500
+ top?: number;
501
+ }
502
+
503
+ // @public
504
+ export type ZonesListByResourceGroupResponse = ZoneListResult;
505
+
506
+ // @public
507
+ export interface ZonesListNextOptionalParams extends coreClient.OperationOptions {
508
+ }
509
+
510
+ // @public
511
+ export type ZonesListNextResponse = ZoneListResult;
512
+
513
+ // @public
514
+ export interface ZonesListOptionalParams extends coreClient.OperationOptions {
515
+ top?: number;
516
+ }
517
+
518
+ // @public
519
+ export type ZonesListResponse = ZoneListResult;
520
+
521
+ // @public
522
+ export interface ZonesUpdateOptionalParams extends coreClient.OperationOptions {
523
+ ifMatch?: string;
524
+ }
525
+
526
+ // @public
527
+ export type ZonesUpdateResponse = Zone;
528
+
529
+ // @public
530
+ export type ZoneType = "Public" | "Private";
531
+
532
+ // @public
533
+ export interface ZoneUpdate {
534
+ tags?: {
535
+ [propertyName: string]: string;
536
+ };
537
+ }
538
+
539
+ // (No @packageDocumentation comment for this package)
540
+
541
+ ```