@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.
- package/CHANGELOG.md +11 -0
- package/LICENSE +21 -0
- package/README.md +69 -87
- package/dist/index.js +2060 -0
- package/dist/index.js.map +1 -0
- package/dist/index.min.js +1 -0
- package/dist/index.min.js.map +1 -0
- package/dist-esm/src/dnsManagementClient.d.ts +21 -0
- package/dist-esm/src/dnsManagementClient.d.ts.map +1 -0
- package/dist-esm/src/dnsManagementClient.js +54 -0
- package/dist-esm/src/dnsManagementClient.js.map +1 -0
- package/dist-esm/src/index.d.ts +5 -0
- package/dist-esm/src/index.d.ts.map +1 -0
- package/dist-esm/src/index.js +12 -0
- package/dist-esm/src/index.js.map +1 -0
- package/dist-esm/src/lroImpl.d.ts +16 -0
- package/dist-esm/src/lroImpl.d.ts.map +1 -0
- package/dist-esm/src/lroImpl.js +29 -0
- package/dist-esm/src/lroImpl.js.map +1 -0
- package/dist-esm/src/models/index.d.ts +415 -0
- package/dist-esm/src/models/index.d.ts.map +1 -0
- package/dist-esm/src/models/index.js +9 -0
- package/dist-esm/src/models/index.js.map +1 -0
- package/dist-esm/src/models/mappers.d.ts +25 -0
- package/dist-esm/src/models/mappers.d.ts.map +1 -0
- package/{esm → dist-esm/src}/models/mappers.js +353 -334
- package/dist-esm/src/models/mappers.js.map +1 -0
- package/dist-esm/src/models/parameters.d.ts +21 -0
- package/dist-esm/src/models/parameters.d.ts.map +1 -0
- package/{esm → dist-esm/src}/models/parameters.js +92 -68
- package/dist-esm/src/models/parameters.js.map +1 -0
- package/dist-esm/src/operations/dnsResourceReferenceOperations.d.ts +19 -0
- package/dist-esm/src/operations/dnsResourceReferenceOperations.d.ts.map +1 -0
- package/dist-esm/src/operations/dnsResourceReferenceOperations.js +49 -0
- package/dist-esm/src/operations/dnsResourceReferenceOperations.js.map +1 -0
- package/{esm → dist-esm/src}/operations/index.d.ts +0 -0
- package/dist-esm/src/operations/index.d.ts.map +1 -0
- package/{esm → dist-esm/src}/operations/index.js +3 -5
- package/dist-esm/src/operations/index.js.map +1 -0
- package/dist-esm/src/operations/recordSets.d.ts +129 -0
- package/dist-esm/src/operations/recordSets.d.ts.map +1 -0
- package/dist-esm/src/operations/recordSets.js +571 -0
- package/dist-esm/src/operations/recordSets.js.map +1 -0
- package/dist-esm/src/operations/zones.d.ts +93 -0
- package/dist-esm/src/operations/zones.d.ts.map +1 -0
- package/dist-esm/src/operations/zones.js +414 -0
- package/dist-esm/src/operations/zones.js.map +1 -0
- package/dist-esm/src/operationsInterfaces/dnsResourceReferenceOperations.d.ts +11 -0
- package/dist-esm/src/operationsInterfaces/dnsResourceReferenceOperations.d.ts.map +1 -0
- package/dist-esm/src/operationsInterfaces/dnsResourceReferenceOperations.js +9 -0
- package/dist-esm/src/operationsInterfaces/dnsResourceReferenceOperations.js.map +1 -0
- package/dist-esm/src/operationsInterfaces/index.d.ts +4 -0
- package/dist-esm/src/operationsInterfaces/index.d.ts.map +1 -0
- package/dist-esm/src/operationsInterfaces/index.js +11 -0
- package/dist-esm/src/operationsInterfaces/index.js.map +1 -0
- package/dist-esm/src/operationsInterfaces/recordSets.d.ts +68 -0
- package/dist-esm/src/operationsInterfaces/recordSets.d.ts.map +1 -0
- package/dist-esm/src/operationsInterfaces/recordSets.js +9 -0
- package/dist-esm/src/operationsInterfaces/recordSets.js.map +1 -0
- package/dist-esm/src/operationsInterfaces/zones.d.ts +57 -0
- package/dist-esm/src/operationsInterfaces/zones.d.ts.map +1 -0
- package/dist-esm/src/operationsInterfaces/zones.js +9 -0
- package/dist-esm/src/operationsInterfaces/zones.js.map +1 -0
- package/dist-esm/test/sampleTest.d.ts +2 -0
- package/dist-esm/test/sampleTest.d.ts.map +1 -0
- package/dist-esm/test/sampleTest.js +40 -0
- package/dist-esm/test/sampleTest.js.map +1 -0
- package/package.json +65 -32
- package/review/arm-dns.api.md +393 -0
- package/rollup.config.js +181 -30
- package/src/dnsManagementClient.ts +78 -41
- package/src/index.ts +12 -0
- package/src/lroImpl.ts +34 -0
- package/src/models/index.ts +344 -774
- package/src/models/mappers.ts +360 -338
- package/src/models/parameters.ts +120 -69
- package/src/operations/dnsResourceReferenceOperations.ts +37 -56
- package/src/operations/index.ts +3 -5
- package/src/operations/recordSets.ts +508 -411
- package/src/operations/zones.ts +348 -317
- package/src/operationsInterfaces/dnsResourceReferenceOperations.ts +26 -0
- package/src/operationsInterfaces/index.ts +11 -0
- package/src/operationsInterfaces/recordSets.ts +129 -0
- package/src/operationsInterfaces/zones.ts +103 -0
- package/tsconfig.json +3 -3
- package/types/arm-dns.d.ts +629 -0
- package/types/tsdoc-metadata.json +11 -0
- package/dist/arm-dns.js +0 -1857
- package/dist/arm-dns.js.map +0 -1
- package/dist/arm-dns.min.js +0 -1
- package/dist/arm-dns.min.js.map +0 -1
- package/esm/dnsManagementClient.d.ts +0 -27
- package/esm/dnsManagementClient.d.ts.map +0 -1
- package/esm/dnsManagementClient.js +0 -41
- package/esm/dnsManagementClient.js.map +0 -1
- package/esm/dnsManagementClientContext.d.ts +0 -23
- package/esm/dnsManagementClientContext.d.ts.map +0 -1
- package/esm/dnsManagementClientContext.js +0 -62
- package/esm/dnsManagementClientContext.js.map +0 -1
- package/esm/models/dnsResourceReferenceOperationsMappers.d.ts +0 -2
- package/esm/models/dnsResourceReferenceOperationsMappers.d.ts.map +0 -1
- package/esm/models/dnsResourceReferenceOperationsMappers.js +0 -9
- package/esm/models/dnsResourceReferenceOperationsMappers.js.map +0 -1
- package/esm/models/index.d.ts +0 -857
- package/esm/models/index.d.ts.map +0 -1
- package/esm/models/index.js +0 -8
- package/esm/models/index.js.map +0 -1
- package/esm/models/mappers.d.ts +0 -25
- package/esm/models/mappers.d.ts.map +0 -1
- package/esm/models/mappers.js.map +0 -1
- package/esm/models/parameters.d.ts +0 -15
- package/esm/models/parameters.d.ts.map +0 -1
- package/esm/models/parameters.js.map +0 -1
- package/esm/models/recordSetsMappers.d.ts +0 -2
- package/esm/models/recordSetsMappers.d.ts.map +0 -1
- package/esm/models/recordSetsMappers.js +0 -9
- package/esm/models/recordSetsMappers.js.map +0 -1
- package/esm/models/zonesMappers.d.ts +0 -2
- package/esm/models/zonesMappers.d.ts.map +0 -1
- package/esm/models/zonesMappers.js +0 -9
- package/esm/models/zonesMappers.js.map +0 -1
- package/esm/operations/dnsResourceReferenceOperations.d.ts +0 -31
- package/esm/operations/dnsResourceReferenceOperations.d.ts.map +0 -1
- package/esm/operations/dnsResourceReferenceOperations.js +0 -60
- package/esm/operations/dnsResourceReferenceOperations.js.map +0 -1
- package/esm/operations/index.d.ts.map +0 -1
- package/esm/operations/index.js.map +0 -1
- package/esm/operations/recordSets.d.ts +0 -268
- package/esm/operations/recordSets.d.ts.map +0 -1
- package/esm/operations/recordSets.js +0 -363
- package/esm/operations/recordSets.js.map +0 -1
- package/esm/operations/zones.d.ts +0 -170
- package/esm/operations/zones.d.ts.map +0 -1
- package/esm/operations/zones.js +0 -299
- package/esm/operations/zones.js.map +0 -1
- package/src/dnsManagementClientContext.ts +0 -69
- package/src/models/dnsResourceReferenceOperationsMappers.ts +0 -15
- package/src/models/recordSetsMappers.ts +0 -27
- package/src/models/zonesMappers.ts +0 -28
|
@@ -0,0 +1,415 @@
|
|
|
1
|
+
import * as coreClient from "@azure/core-client";
|
|
2
|
+
/** Describes a DNS record set (a collection of DNS records with the same name and type). */
|
|
3
|
+
export interface RecordSet {
|
|
4
|
+
/**
|
|
5
|
+
* The ID of the record set.
|
|
6
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
7
|
+
*/
|
|
8
|
+
readonly id?: string;
|
|
9
|
+
/**
|
|
10
|
+
* The name of the record set.
|
|
11
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
12
|
+
*/
|
|
13
|
+
readonly name?: string;
|
|
14
|
+
/**
|
|
15
|
+
* The type of the record set.
|
|
16
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
17
|
+
*/
|
|
18
|
+
readonly type?: string;
|
|
19
|
+
/** The etag of the record set. */
|
|
20
|
+
etag?: string;
|
|
21
|
+
/** The metadata attached to the record set. */
|
|
22
|
+
metadata?: {
|
|
23
|
+
[propertyName: string]: string;
|
|
24
|
+
};
|
|
25
|
+
/** The TTL (time-to-live) of the records in the record set. */
|
|
26
|
+
ttl?: number;
|
|
27
|
+
/**
|
|
28
|
+
* Fully qualified domain name of the record set.
|
|
29
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
30
|
+
*/
|
|
31
|
+
readonly fqdn?: string;
|
|
32
|
+
/**
|
|
33
|
+
* provisioning State of the record set.
|
|
34
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
35
|
+
*/
|
|
36
|
+
readonly provisioningState?: string;
|
|
37
|
+
/** A reference to an azure resource from where the dns resource value is taken. */
|
|
38
|
+
targetResource?: SubResource;
|
|
39
|
+
/** The list of A records in the record set. */
|
|
40
|
+
aRecords?: ARecord[];
|
|
41
|
+
/** The list of AAAA records in the record set. */
|
|
42
|
+
aaaaRecords?: AaaaRecord[];
|
|
43
|
+
/** The list of MX records in the record set. */
|
|
44
|
+
mxRecords?: MxRecord[];
|
|
45
|
+
/** The list of NS records in the record set. */
|
|
46
|
+
nsRecords?: NsRecord[];
|
|
47
|
+
/** The list of PTR records in the record set. */
|
|
48
|
+
ptrRecords?: PtrRecord[];
|
|
49
|
+
/** The list of SRV records in the record set. */
|
|
50
|
+
srvRecords?: SrvRecord[];
|
|
51
|
+
/** The list of TXT records in the record set. */
|
|
52
|
+
txtRecords?: TxtRecord[];
|
|
53
|
+
/** The CNAME record in the record set. */
|
|
54
|
+
cnameRecord?: CnameRecord;
|
|
55
|
+
/** The SOA record in the record set. */
|
|
56
|
+
soaRecord?: SoaRecord;
|
|
57
|
+
/** The list of CAA records in the record set. */
|
|
58
|
+
caaRecords?: CaaRecord[];
|
|
59
|
+
}
|
|
60
|
+
/** A reference to a another resource */
|
|
61
|
+
export interface SubResource {
|
|
62
|
+
/** Resource Id. */
|
|
63
|
+
id?: string;
|
|
64
|
+
}
|
|
65
|
+
/** An A record. */
|
|
66
|
+
export interface ARecord {
|
|
67
|
+
/** The IPv4 address of this A record. */
|
|
68
|
+
ipv4Address?: string;
|
|
69
|
+
}
|
|
70
|
+
/** An AAAA record. */
|
|
71
|
+
export interface AaaaRecord {
|
|
72
|
+
/** The IPv6 address of this AAAA record. */
|
|
73
|
+
ipv6Address?: string;
|
|
74
|
+
}
|
|
75
|
+
/** An MX record. */
|
|
76
|
+
export interface MxRecord {
|
|
77
|
+
/** The preference value for this MX record. */
|
|
78
|
+
preference?: number;
|
|
79
|
+
/** The domain name of the mail host for this MX record. */
|
|
80
|
+
exchange?: string;
|
|
81
|
+
}
|
|
82
|
+
/** An NS record. */
|
|
83
|
+
export interface NsRecord {
|
|
84
|
+
/** The name server name for this NS record. */
|
|
85
|
+
nsdname?: string;
|
|
86
|
+
}
|
|
87
|
+
/** A PTR record. */
|
|
88
|
+
export interface PtrRecord {
|
|
89
|
+
/** The PTR target domain name for this PTR record. */
|
|
90
|
+
ptrdname?: string;
|
|
91
|
+
}
|
|
92
|
+
/** An SRV record. */
|
|
93
|
+
export interface SrvRecord {
|
|
94
|
+
/** The priority value for this SRV record. */
|
|
95
|
+
priority?: number;
|
|
96
|
+
/** The weight value for this SRV record. */
|
|
97
|
+
weight?: number;
|
|
98
|
+
/** The port value for this SRV record. */
|
|
99
|
+
port?: number;
|
|
100
|
+
/** The target domain name for this SRV record. */
|
|
101
|
+
target?: string;
|
|
102
|
+
}
|
|
103
|
+
/** A TXT record. */
|
|
104
|
+
export interface TxtRecord {
|
|
105
|
+
/** The text value of this TXT record. */
|
|
106
|
+
value?: string[];
|
|
107
|
+
}
|
|
108
|
+
/** A CNAME record. */
|
|
109
|
+
export interface CnameRecord {
|
|
110
|
+
/** The canonical name for this CNAME record. */
|
|
111
|
+
cname?: string;
|
|
112
|
+
}
|
|
113
|
+
/** An SOA record. */
|
|
114
|
+
export interface SoaRecord {
|
|
115
|
+
/** The domain name of the authoritative name server for this SOA record. */
|
|
116
|
+
host?: string;
|
|
117
|
+
/** The email contact for this SOA record. */
|
|
118
|
+
email?: string;
|
|
119
|
+
/** The serial number for this SOA record. */
|
|
120
|
+
serialNumber?: number;
|
|
121
|
+
/** The refresh value for this SOA record. */
|
|
122
|
+
refreshTime?: number;
|
|
123
|
+
/** The retry time for this SOA record. */
|
|
124
|
+
retryTime?: number;
|
|
125
|
+
/** The expire time for this SOA record. */
|
|
126
|
+
expireTime?: number;
|
|
127
|
+
/** The minimum value for this SOA record. By convention this is used to determine the negative caching duration. */
|
|
128
|
+
minimumTtl?: number;
|
|
129
|
+
}
|
|
130
|
+
/** A CAA record. */
|
|
131
|
+
export interface CaaRecord {
|
|
132
|
+
/** The flags for this CAA record as an integer between 0 and 255. */
|
|
133
|
+
flags?: number;
|
|
134
|
+
/** The tag for this CAA record. */
|
|
135
|
+
tag?: string;
|
|
136
|
+
/** The value for this CAA record. */
|
|
137
|
+
value?: string;
|
|
138
|
+
}
|
|
139
|
+
/** An error response from the service. */
|
|
140
|
+
export interface CloudError {
|
|
141
|
+
/** Cloud error body. */
|
|
142
|
+
error?: CloudErrorBody;
|
|
143
|
+
}
|
|
144
|
+
/** An error response from the service. */
|
|
145
|
+
export interface CloudErrorBody {
|
|
146
|
+
/** An identifier for the error. Codes are invariant and are intended to be consumed programmatically. */
|
|
147
|
+
code?: string;
|
|
148
|
+
/** A message describing the error, intended to be suitable for display in a user interface. */
|
|
149
|
+
message?: string;
|
|
150
|
+
/** The target of the particular error. For example, the name of the property in error. */
|
|
151
|
+
target?: string;
|
|
152
|
+
/** A list of additional details about the error. */
|
|
153
|
+
details?: CloudErrorBody[];
|
|
154
|
+
}
|
|
155
|
+
/** The response to a record set List operation. */
|
|
156
|
+
export interface RecordSetListResult {
|
|
157
|
+
/** Information about the record sets in the response. */
|
|
158
|
+
value?: RecordSet[];
|
|
159
|
+
/**
|
|
160
|
+
* The continuation token for the next page of results.
|
|
161
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
162
|
+
*/
|
|
163
|
+
readonly nextLink?: string;
|
|
164
|
+
}
|
|
165
|
+
/** Common properties of an Azure Resource Manager resource */
|
|
166
|
+
export interface Resource {
|
|
167
|
+
/**
|
|
168
|
+
* Resource ID.
|
|
169
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
170
|
+
*/
|
|
171
|
+
readonly id?: string;
|
|
172
|
+
/**
|
|
173
|
+
* Resource name.
|
|
174
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
175
|
+
*/
|
|
176
|
+
readonly name?: string;
|
|
177
|
+
/**
|
|
178
|
+
* Resource type.
|
|
179
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
180
|
+
*/
|
|
181
|
+
readonly type?: string;
|
|
182
|
+
/** Resource location. */
|
|
183
|
+
location: string;
|
|
184
|
+
/** Resource tags. */
|
|
185
|
+
tags?: {
|
|
186
|
+
[propertyName: string]: string;
|
|
187
|
+
};
|
|
188
|
+
}
|
|
189
|
+
/** Describes a request to update a DNS zone. */
|
|
190
|
+
export interface ZoneUpdate {
|
|
191
|
+
/** Resource tags. */
|
|
192
|
+
tags?: {
|
|
193
|
+
[propertyName: string]: string;
|
|
194
|
+
};
|
|
195
|
+
}
|
|
196
|
+
/** The response to a Zone List or ListAll operation. */
|
|
197
|
+
export interface ZoneListResult {
|
|
198
|
+
/** Information about the DNS zones. */
|
|
199
|
+
value?: Zone[];
|
|
200
|
+
/**
|
|
201
|
+
* The continuation token for the next page of results.
|
|
202
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
203
|
+
*/
|
|
204
|
+
readonly nextLink?: string;
|
|
205
|
+
}
|
|
206
|
+
/** Represents the properties of the Dns Resource Reference Request. */
|
|
207
|
+
export interface DnsResourceReferenceRequest {
|
|
208
|
+
/** A list of references to azure resources for which referencing dns records need to be queried. */
|
|
209
|
+
targetResources?: SubResource[];
|
|
210
|
+
}
|
|
211
|
+
/** Represents the properties of the Dns Resource Reference Result. */
|
|
212
|
+
export interface DnsResourceReferenceResult {
|
|
213
|
+
/** The result of dns resource reference request. A list of dns resource references for each of the azure resource in the request */
|
|
214
|
+
dnsResourceReferences?: DnsResourceReference[];
|
|
215
|
+
}
|
|
216
|
+
/** Represents a single Azure resource and its referencing DNS records. */
|
|
217
|
+
export interface DnsResourceReference {
|
|
218
|
+
/** A list of dns Records */
|
|
219
|
+
dnsResources?: SubResource[];
|
|
220
|
+
/** A reference to an azure resource from where the dns resource value is taken. */
|
|
221
|
+
targetResource?: SubResource;
|
|
222
|
+
}
|
|
223
|
+
/** Parameters supplied to update a record set. */
|
|
224
|
+
export interface RecordSetUpdateParameters {
|
|
225
|
+
/** Specifies information about the record set being updated. */
|
|
226
|
+
recordSet?: RecordSet;
|
|
227
|
+
}
|
|
228
|
+
/** Describes a DNS zone. */
|
|
229
|
+
export declare type Zone = Resource & {
|
|
230
|
+
/** The etag of the zone. */
|
|
231
|
+
etag?: string;
|
|
232
|
+
/**
|
|
233
|
+
* The maximum number of record sets that can be created in this DNS zone. This is a read-only property and any attempt to set this value will be ignored.
|
|
234
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
235
|
+
*/
|
|
236
|
+
readonly maxNumberOfRecordSets?: number;
|
|
237
|
+
/**
|
|
238
|
+
* The maximum number of records per record set that can be created in this DNS zone. This is a read-only property and any attempt to set this value will be ignored.
|
|
239
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
240
|
+
*/
|
|
241
|
+
readonly maxNumberOfRecordsPerRecordSet?: number;
|
|
242
|
+
/**
|
|
243
|
+
* The current number of record sets in this DNS zone. This is a read-only property and any attempt to set this value will be ignored.
|
|
244
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
245
|
+
*/
|
|
246
|
+
readonly numberOfRecordSets?: number;
|
|
247
|
+
/**
|
|
248
|
+
* The name servers for this DNS zone. This is a read-only property and any attempt to set this value will be ignored.
|
|
249
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
250
|
+
*/
|
|
251
|
+
readonly nameServers?: string[];
|
|
252
|
+
/** The type of this DNS zone (Public or Private). */
|
|
253
|
+
zoneType?: ZoneType;
|
|
254
|
+
/** A list of references to virtual networks that register hostnames in this DNS zone. This is a only when ZoneType is Private. */
|
|
255
|
+
registrationVirtualNetworks?: SubResource[];
|
|
256
|
+
/** A list of references to virtual networks that resolve records in this DNS zone. This is a only when ZoneType is Private. */
|
|
257
|
+
resolutionVirtualNetworks?: SubResource[];
|
|
258
|
+
};
|
|
259
|
+
/** Defines values for RecordType. */
|
|
260
|
+
export declare type RecordType = "A" | "AAAA" | "CAA" | "CNAME" | "MX" | "NS" | "PTR" | "SOA" | "SRV" | "TXT";
|
|
261
|
+
/** Defines values for ZoneType. */
|
|
262
|
+
export declare type ZoneType = "Public" | "Private";
|
|
263
|
+
/** Optional parameters. */
|
|
264
|
+
export interface RecordSetsUpdateOptionalParams extends coreClient.OperationOptions {
|
|
265
|
+
/** The etag of the record set. Omit this value to always overwrite the current record set. Specify the last-seen etag value to prevent accidentally overwriting concurrent changes. */
|
|
266
|
+
ifMatch?: string;
|
|
267
|
+
}
|
|
268
|
+
/** Contains response data for the update operation. */
|
|
269
|
+
export declare type RecordSetsUpdateResponse = RecordSet;
|
|
270
|
+
/** Optional parameters. */
|
|
271
|
+
export interface RecordSetsCreateOrUpdateOptionalParams extends coreClient.OperationOptions {
|
|
272
|
+
/** The etag of the record set. Omit this value to always overwrite the current record set. Specify the last-seen etag value to prevent accidentally overwriting any concurrent changes. */
|
|
273
|
+
ifMatch?: string;
|
|
274
|
+
/** Set to '*' to allow a new record set to be created, but to prevent updating an existing record set. Other values will be ignored. */
|
|
275
|
+
ifNoneMatch?: string;
|
|
276
|
+
}
|
|
277
|
+
/** Contains response data for the createOrUpdate operation. */
|
|
278
|
+
export declare type RecordSetsCreateOrUpdateResponse = RecordSet;
|
|
279
|
+
/** Optional parameters. */
|
|
280
|
+
export interface RecordSetsDeleteOptionalParams extends coreClient.OperationOptions {
|
|
281
|
+
/** The etag of the record set. Omit this value to always delete the current record set. Specify the last-seen etag value to prevent accidentally deleting any concurrent changes. */
|
|
282
|
+
ifMatch?: string;
|
|
283
|
+
}
|
|
284
|
+
/** Optional parameters. */
|
|
285
|
+
export interface RecordSetsGetOptionalParams extends coreClient.OperationOptions {
|
|
286
|
+
}
|
|
287
|
+
/** Contains response data for the get operation. */
|
|
288
|
+
export declare type RecordSetsGetResponse = RecordSet;
|
|
289
|
+
/** Optional parameters. */
|
|
290
|
+
export interface RecordSetsListByTypeOptionalParams extends coreClient.OperationOptions {
|
|
291
|
+
/** The maximum number of record sets to return. If not specified, returns up to 100 record sets. */
|
|
292
|
+
top?: number;
|
|
293
|
+
/** The suffix label of the record set name that has to be used to filter the record set enumerations. If this parameter is specified, Enumeration will return only records that end with .<recordSetNameSuffix> */
|
|
294
|
+
recordsetnamesuffix?: string;
|
|
295
|
+
}
|
|
296
|
+
/** Contains response data for the listByType operation. */
|
|
297
|
+
export declare type RecordSetsListByTypeResponse = RecordSetListResult;
|
|
298
|
+
/** Optional parameters. */
|
|
299
|
+
export interface RecordSetsListByDnsZoneOptionalParams extends coreClient.OperationOptions {
|
|
300
|
+
/** The maximum number of record sets to return. If not specified, returns up to 100 record sets. */
|
|
301
|
+
top?: number;
|
|
302
|
+
/** The suffix label of the record set name that has to be used to filter the record set enumerations. If this parameter is specified, Enumeration will return only records that end with .<recordSetNameSuffix> */
|
|
303
|
+
recordsetnamesuffix?: string;
|
|
304
|
+
}
|
|
305
|
+
/** Contains response data for the listByDnsZone operation. */
|
|
306
|
+
export declare type RecordSetsListByDnsZoneResponse = RecordSetListResult;
|
|
307
|
+
/** Optional parameters. */
|
|
308
|
+
export interface RecordSetsListAllByDnsZoneOptionalParams extends coreClient.OperationOptions {
|
|
309
|
+
/** The maximum number of record sets to return. If not specified, returns up to 100 record sets. */
|
|
310
|
+
top?: number;
|
|
311
|
+
/** The suffix label of the record set name that has to be used to filter the record set enumerations. If this parameter is specified, Enumeration will return only records that end with .<recordSetNameSuffix> */
|
|
312
|
+
recordSetNameSuffix?: string;
|
|
313
|
+
}
|
|
314
|
+
/** Contains response data for the listAllByDnsZone operation. */
|
|
315
|
+
export declare type RecordSetsListAllByDnsZoneResponse = RecordSetListResult;
|
|
316
|
+
/** Optional parameters. */
|
|
317
|
+
export interface RecordSetsListByTypeNextOptionalParams extends coreClient.OperationOptions {
|
|
318
|
+
/** The maximum number of record sets to return. If not specified, returns up to 100 record sets. */
|
|
319
|
+
top?: number;
|
|
320
|
+
/** The suffix label of the record set name that has to be used to filter the record set enumerations. If this parameter is specified, Enumeration will return only records that end with .<recordSetNameSuffix> */
|
|
321
|
+
recordsetnamesuffix?: string;
|
|
322
|
+
}
|
|
323
|
+
/** Contains response data for the listByTypeNext operation. */
|
|
324
|
+
export declare type RecordSetsListByTypeNextResponse = RecordSetListResult;
|
|
325
|
+
/** Optional parameters. */
|
|
326
|
+
export interface RecordSetsListByDnsZoneNextOptionalParams extends coreClient.OperationOptions {
|
|
327
|
+
/** The maximum number of record sets to return. If not specified, returns up to 100 record sets. */
|
|
328
|
+
top?: number;
|
|
329
|
+
/** The suffix label of the record set name that has to be used to filter the record set enumerations. If this parameter is specified, Enumeration will return only records that end with .<recordSetNameSuffix> */
|
|
330
|
+
recordsetnamesuffix?: string;
|
|
331
|
+
}
|
|
332
|
+
/** Contains response data for the listByDnsZoneNext operation. */
|
|
333
|
+
export declare type RecordSetsListByDnsZoneNextResponse = RecordSetListResult;
|
|
334
|
+
/** Optional parameters. */
|
|
335
|
+
export interface RecordSetsListAllByDnsZoneNextOptionalParams extends coreClient.OperationOptions {
|
|
336
|
+
/** The maximum number of record sets to return. If not specified, returns up to 100 record sets. */
|
|
337
|
+
top?: number;
|
|
338
|
+
/** The suffix label of the record set name that has to be used to filter the record set enumerations. If this parameter is specified, Enumeration will return only records that end with .<recordSetNameSuffix> */
|
|
339
|
+
recordSetNameSuffix?: string;
|
|
340
|
+
}
|
|
341
|
+
/** Contains response data for the listAllByDnsZoneNext operation. */
|
|
342
|
+
export declare type RecordSetsListAllByDnsZoneNextResponse = RecordSetListResult;
|
|
343
|
+
/** Optional parameters. */
|
|
344
|
+
export interface ZonesCreateOrUpdateOptionalParams extends coreClient.OperationOptions {
|
|
345
|
+
/** The etag of the DNS zone. Omit this value to always overwrite the current zone. Specify the last-seen etag value to prevent accidentally overwriting any concurrent changes. */
|
|
346
|
+
ifMatch?: string;
|
|
347
|
+
/** Set to '*' to allow a new DNS zone to be created, but to prevent updating an existing zone. Other values will be ignored. */
|
|
348
|
+
ifNoneMatch?: string;
|
|
349
|
+
}
|
|
350
|
+
/** Contains response data for the createOrUpdate operation. */
|
|
351
|
+
export declare type ZonesCreateOrUpdateResponse = Zone;
|
|
352
|
+
/** Optional parameters. */
|
|
353
|
+
export interface ZonesDeleteOptionalParams extends coreClient.OperationOptions {
|
|
354
|
+
/** The etag of the DNS zone. Omit this value to always delete the current zone. Specify the last-seen etag value to prevent accidentally deleting any concurrent changes. */
|
|
355
|
+
ifMatch?: string;
|
|
356
|
+
/** Delay to wait until next poll, in milliseconds. */
|
|
357
|
+
updateIntervalInMs?: number;
|
|
358
|
+
/** A serialized poller which can be used to resume an existing paused Long-Running-Operation. */
|
|
359
|
+
resumeFrom?: string;
|
|
360
|
+
}
|
|
361
|
+
/** Optional parameters. */
|
|
362
|
+
export interface ZonesGetOptionalParams extends coreClient.OperationOptions {
|
|
363
|
+
}
|
|
364
|
+
/** Contains response data for the get operation. */
|
|
365
|
+
export declare type ZonesGetResponse = Zone;
|
|
366
|
+
/** Optional parameters. */
|
|
367
|
+
export interface ZonesUpdateOptionalParams extends coreClient.OperationOptions {
|
|
368
|
+
/** The etag of the DNS zone. Omit this value to always overwrite the current zone. Specify the last-seen etag value to prevent accidentally overwriting any concurrent changes. */
|
|
369
|
+
ifMatch?: string;
|
|
370
|
+
}
|
|
371
|
+
/** Contains response data for the update operation. */
|
|
372
|
+
export declare type ZonesUpdateResponse = Zone;
|
|
373
|
+
/** Optional parameters. */
|
|
374
|
+
export interface ZonesListByResourceGroupOptionalParams extends coreClient.OperationOptions {
|
|
375
|
+
/** The maximum number of record sets to return. If not specified, returns up to 100 record sets. */
|
|
376
|
+
top?: number;
|
|
377
|
+
}
|
|
378
|
+
/** Contains response data for the listByResourceGroup operation. */
|
|
379
|
+
export declare type ZonesListByResourceGroupResponse = ZoneListResult;
|
|
380
|
+
/** Optional parameters. */
|
|
381
|
+
export interface ZonesListOptionalParams extends coreClient.OperationOptions {
|
|
382
|
+
/** The maximum number of DNS zones to return. If not specified, returns up to 100 zones. */
|
|
383
|
+
top?: number;
|
|
384
|
+
}
|
|
385
|
+
/** Contains response data for the list operation. */
|
|
386
|
+
export declare type ZonesListResponse = ZoneListResult;
|
|
387
|
+
/** Optional parameters. */
|
|
388
|
+
export interface ZonesListByResourceGroupNextOptionalParams extends coreClient.OperationOptions {
|
|
389
|
+
/** The maximum number of record sets to return. If not specified, returns up to 100 record sets. */
|
|
390
|
+
top?: number;
|
|
391
|
+
}
|
|
392
|
+
/** Contains response data for the listByResourceGroupNext operation. */
|
|
393
|
+
export declare type ZonesListByResourceGroupNextResponse = ZoneListResult;
|
|
394
|
+
/** Optional parameters. */
|
|
395
|
+
export interface ZonesListNextOptionalParams extends coreClient.OperationOptions {
|
|
396
|
+
/** The maximum number of DNS zones to return. If not specified, returns up to 100 zones. */
|
|
397
|
+
top?: number;
|
|
398
|
+
}
|
|
399
|
+
/** Contains response data for the listNext operation. */
|
|
400
|
+
export declare type ZonesListNextResponse = ZoneListResult;
|
|
401
|
+
/** Optional parameters. */
|
|
402
|
+
export interface DnsResourceReferenceGetByTargetResourcesOptionalParams extends coreClient.OperationOptions {
|
|
403
|
+
}
|
|
404
|
+
/** Contains response data for the getByTargetResources operation. */
|
|
405
|
+
export declare type DnsResourceReferenceGetByTargetResourcesResponse = DnsResourceReferenceResult;
|
|
406
|
+
/** Optional parameters. */
|
|
407
|
+
export interface DnsManagementClientOptionalParams extends coreClient.ServiceClientOptions {
|
|
408
|
+
/** server parameter */
|
|
409
|
+
$host?: string;
|
|
410
|
+
/** Api Version */
|
|
411
|
+
apiVersion?: string;
|
|
412
|
+
/** Overrides client endpoint. */
|
|
413
|
+
endpoint?: string;
|
|
414
|
+
}
|
|
415
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/models/index.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* Copyright (c) Microsoft Corporation.
|
|
3
|
+
* Licensed under the MIT License.
|
|
4
|
+
*
|
|
5
|
+
* Code generated by Microsoft (R) AutoRest Code Generator.
|
|
6
|
+
* Changes may cause incorrect behavior and will be lost if the code is regenerated.
|
|
7
|
+
*/
|
|
8
|
+
export {};
|
|
9
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/models/index.ts"],"names":[],"mappings":"AAAA;;;;;;GAMG"}
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import * as coreClient from "@azure/core-client";
|
|
2
|
+
export declare const RecordSet: coreClient.CompositeMapper;
|
|
3
|
+
export declare const SubResource: coreClient.CompositeMapper;
|
|
4
|
+
export declare const ARecord: coreClient.CompositeMapper;
|
|
5
|
+
export declare const AaaaRecord: coreClient.CompositeMapper;
|
|
6
|
+
export declare const MxRecord: coreClient.CompositeMapper;
|
|
7
|
+
export declare const NsRecord: coreClient.CompositeMapper;
|
|
8
|
+
export declare const PtrRecord: coreClient.CompositeMapper;
|
|
9
|
+
export declare const SrvRecord: coreClient.CompositeMapper;
|
|
10
|
+
export declare const TxtRecord: coreClient.CompositeMapper;
|
|
11
|
+
export declare const CnameRecord: coreClient.CompositeMapper;
|
|
12
|
+
export declare const SoaRecord: coreClient.CompositeMapper;
|
|
13
|
+
export declare const CaaRecord: coreClient.CompositeMapper;
|
|
14
|
+
export declare const CloudError: coreClient.CompositeMapper;
|
|
15
|
+
export declare const CloudErrorBody: coreClient.CompositeMapper;
|
|
16
|
+
export declare const RecordSetListResult: coreClient.CompositeMapper;
|
|
17
|
+
export declare const Resource: coreClient.CompositeMapper;
|
|
18
|
+
export declare const ZoneUpdate: coreClient.CompositeMapper;
|
|
19
|
+
export declare const ZoneListResult: coreClient.CompositeMapper;
|
|
20
|
+
export declare const DnsResourceReferenceRequest: coreClient.CompositeMapper;
|
|
21
|
+
export declare const DnsResourceReferenceResult: coreClient.CompositeMapper;
|
|
22
|
+
export declare const DnsResourceReference: coreClient.CompositeMapper;
|
|
23
|
+
export declare const RecordSetUpdateParameters: coreClient.CompositeMapper;
|
|
24
|
+
export declare const Zone: coreClient.CompositeMapper;
|
|
25
|
+
//# sourceMappingURL=mappers.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"mappers.d.ts","sourceRoot":"","sources":["../../../src/models/mappers.ts"],"names":[],"mappings":"AAQA,OAAO,KAAK,UAAU,MAAM,oBAAoB,CAAC;AAEjD,eAAO,MAAM,SAAS,EAAE,UAAU,CAAC,eAkLlC,CAAC;AAEF,eAAO,MAAM,WAAW,EAAE,UAAU,CAAC,eAapC,CAAC;AAEF,eAAO,MAAM,OAAO,EAAE,UAAU,CAAC,eAahC,CAAC;AAEF,eAAO,MAAM,UAAU,EAAE,UAAU,CAAC,eAanC,CAAC;AAEF,eAAO,MAAM,QAAQ,EAAE,UAAU,CAAC,eAmBjC,CAAC;AAEF,eAAO,MAAM,QAAQ,EAAE,UAAU,CAAC,eAajC,CAAC;AAEF,eAAO,MAAM,SAAS,EAAE,UAAU,CAAC,eAalC,CAAC;AAEF,eAAO,MAAM,SAAS,EAAE,UAAU,CAAC,eA+BlC,CAAC;AAEF,eAAO,MAAM,SAAS,EAAE,UAAU,CAAC,eAkBlC,CAAC;AAEF,eAAO,MAAM,WAAW,EAAE,UAAU,CAAC,eAapC,CAAC;AAEF,eAAO,MAAM,SAAS,EAAE,UAAU,CAAC,eAiDlC,CAAC;AAEF,eAAO,MAAM,SAAS,EAAE,UAAU,CAAC,eAyBlC,CAAC;AAEF,eAAO,MAAM,UAAU,EAAE,UAAU,CAAC,eAcnC,CAAC;AAEF,eAAO,MAAM,cAAc,EAAE,UAAU,CAAC,eAqCvC,CAAC;AAEF,eAAO,MAAM,mBAAmB,EAAE,UAAU,CAAC,eA0B5C,CAAC;AAEF,eAAO,MAAM,QAAQ,EAAE,UAAU,CAAC,eA0CjC,CAAC;AAEF,eAAO,MAAM,UAAU,EAAE,UAAU,CAAC,eAcnC,CAAC;AAEF,eAAO,MAAM,cAAc,EAAE,UAAU,CAAC,eA0BvC,CAAC;AAEF,eAAO,MAAM,2BAA2B,EAAE,UAAU,CAAC,eAmBpD,CAAC;AAEF,eAAO,MAAM,0BAA0B,EAAE,UAAU,CAAC,eAmBnD,CAAC;AAEF,eAAO,MAAM,oBAAoB,EAAE,UAAU,CAAC,eA0B7C,CAAC;AAEF,eAAO,MAAM,yBAAyB,EAAE,UAAU,CAAC,eAclD,CAAC;AAEF,eAAO,MAAM,IAAI,EAAE,UAAU,CAAC,eA+E7B,CAAC"}
|