@azure/arm-dns-profile-2020-09-01-hybrid 2.1.1-alpha.20250619.1 → 2.1.1-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": "2.1.1-alpha.20250619.1",
6
+ "version": "2.1.1-alpha.20250718.1",
7
7
  "engines": {
8
8
  "node": ">=20.0.0"
9
9
  },
@@ -1,337 +1,337 @@
1
- ## API Report File for "@azure/arm-dns-profile-2020-09-01-hybrid"
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 { PagedAsyncIterableIterator } from '@azure/core-paging';
10
- import { PollerLike } from '@azure/core-lro';
11
- import { PollOperationState } 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 CloudError {
25
- error?: CloudErrorBody;
26
- }
27
-
28
- // @public
29
- export interface CloudErrorBody {
30
- code?: string;
31
- details?: CloudErrorBody[];
32
- message?: string;
33
- target?: string;
34
- }
35
-
36
- // @public
37
- export interface CnameRecord {
38
- cname?: string;
39
- }
40
-
41
- // @public (undocumented)
42
- export class DnsManagementClient extends coreClient.ServiceClient {
43
- // (undocumented)
44
- $host: string;
45
- constructor(credentials: coreAuth.TokenCredential, subscriptionId: string, options?: DnsManagementClientOptionalParams);
46
- // (undocumented)
47
- apiVersion: string;
48
- // (undocumented)
49
- recordSets: RecordSets;
50
- // (undocumented)
51
- subscriptionId: string;
52
- // (undocumented)
53
- zones: Zones;
54
- }
55
-
56
- // @public
57
- export interface DnsManagementClientOptionalParams extends coreClient.ServiceClientOptions {
58
- $host?: string;
59
- apiVersion?: string;
60
- endpoint?: string;
61
- }
62
-
63
- // @public
64
- export function getContinuationToken(page: unknown): string | undefined;
65
-
66
- // @public
67
- export type HttpStatusCode = "Continue" | "SwitchingProtocols" | "OK" | "Created" | "Accepted" | "NonAuthoritativeInformation" | "NoContent" | "ResetContent" | "PartialContent" | "MultipleChoices" | "Ambiguous" | "MovedPermanently" | "Moved" | "Found" | "Redirect" | "SeeOther" | "RedirectMethod" | "NotModified" | "UseProxy" | "Unused" | "TemporaryRedirect" | "RedirectKeepVerb" | "BadRequest" | "Unauthorized" | "PaymentRequired" | "Forbidden" | "NotFound" | "MethodNotAllowed" | "NotAcceptable" | "ProxyAuthenticationRequired" | "RequestTimeout" | "Conflict" | "Gone" | "LengthRequired" | "PreconditionFailed" | "RequestEntityTooLarge" | "RequestUriTooLong" | "UnsupportedMediaType" | "RequestedRangeNotSatisfiable" | "ExpectationFailed" | "UpgradeRequired" | "InternalServerError" | "NotImplemented" | "BadGateway" | "ServiceUnavailable" | "GatewayTimeout" | "HttpVersionNotSupported";
68
-
69
- // @public
70
- export interface MxRecord {
71
- exchange?: string;
72
- preference?: number;
73
- }
74
-
75
- // @public
76
- export interface NsRecord {
77
- nsdname?: string;
78
- }
79
-
80
- // @public
81
- export type OperationStatus = "InProgress" | "Succeeded" | "Failed";
82
-
83
- // @public
84
- export interface PtrRecord {
85
- ptrdname?: string;
86
- }
87
-
88
- // @public
89
- export interface RecordSet {
90
- aaaaRecords?: AaaaRecord[];
91
- aRecords?: ARecord[];
92
- cnameRecord?: CnameRecord;
93
- etag?: string;
94
- readonly fqdn?: string;
95
- id?: string;
96
- metadata?: {
97
- [propertyName: string]: string;
98
- };
99
- mxRecords?: MxRecord[];
100
- name?: string;
101
- nsRecords?: NsRecord[];
102
- ptrRecords?: PtrRecord[];
103
- soaRecord?: SoaRecord;
104
- srvRecords?: SrvRecord[];
105
- ttl?: number;
106
- txtRecords?: TxtRecord[];
107
- type?: string;
108
- }
109
-
110
- // @public
111
- export interface RecordSetListResult {
112
- nextLink?: string;
113
- value?: RecordSet[];
114
- }
115
-
116
- // @public
117
- export interface RecordSets {
118
- createOrUpdate(resourceGroupName: string, zoneName: string, relativeRecordSetName: string, recordType: RecordType, parameters: RecordSet, options?: RecordSetsCreateOrUpdateOptionalParams): Promise<RecordSetsCreateOrUpdateResponse>;
119
- delete(resourceGroupName: string, zoneName: string, relativeRecordSetName: string, recordType: RecordType, options?: RecordSetsDeleteOptionalParams): Promise<void>;
120
- get(resourceGroupName: string, zoneName: string, relativeRecordSetName: string, recordType: RecordType, options?: RecordSetsGetOptionalParams): Promise<RecordSetsGetResponse>;
121
- listByDnsZone(resourceGroupName: string, zoneName: string, options?: RecordSetsListByDnsZoneOptionalParams): PagedAsyncIterableIterator<RecordSet>;
122
- listByType(resourceGroupName: string, zoneName: string, recordType: RecordType, options?: RecordSetsListByTypeOptionalParams): PagedAsyncIterableIterator<RecordSet>;
123
- update(resourceGroupName: string, zoneName: string, relativeRecordSetName: string, recordType: RecordType, parameters: RecordSet, options?: RecordSetsUpdateOptionalParams): Promise<RecordSetsUpdateResponse>;
124
- }
125
-
126
- // @public
127
- export interface RecordSetsCreateOrUpdateOptionalParams extends coreClient.OperationOptions {
128
- ifMatch?: string;
129
- ifNoneMatch?: string;
130
- }
131
-
132
- // @public
133
- export type RecordSetsCreateOrUpdateResponse = RecordSet;
134
-
135
- // @public
136
- export interface RecordSetsDeleteOptionalParams extends coreClient.OperationOptions {
137
- ifMatch?: string;
138
- }
139
-
140
- // @public
141
- export interface RecordSetsGetOptionalParams extends coreClient.OperationOptions {
142
- }
143
-
144
- // @public
145
- export type RecordSetsGetResponse = RecordSet;
146
-
147
- // @public
148
- export interface RecordSetsListByDnsZoneNextOptionalParams extends coreClient.OperationOptions {
149
- }
150
-
151
- // @public
152
- export type RecordSetsListByDnsZoneNextResponse = RecordSetListResult;
153
-
154
- // @public
155
- export interface RecordSetsListByDnsZoneOptionalParams extends coreClient.OperationOptions {
156
- recordsetnamesuffix?: string;
157
- top?: number;
158
- }
159
-
160
- // @public
161
- export type RecordSetsListByDnsZoneResponse = RecordSetListResult;
162
-
163
- // @public
164
- export interface RecordSetsListByTypeNextOptionalParams extends coreClient.OperationOptions {
165
- }
166
-
167
- // @public
168
- export type RecordSetsListByTypeNextResponse = RecordSetListResult;
169
-
170
- // @public
171
- export interface RecordSetsListByTypeOptionalParams extends coreClient.OperationOptions {
172
- recordsetnamesuffix?: string;
173
- top?: number;
174
- }
175
-
176
- // @public
177
- export type RecordSetsListByTypeResponse = RecordSetListResult;
178
-
179
- // @public
180
- export interface RecordSetsUpdateOptionalParams extends coreClient.OperationOptions {
181
- ifMatch?: string;
182
- }
183
-
184
- // @public
185
- export type RecordSetsUpdateResponse = RecordSet;
186
-
187
- // @public
188
- export interface RecordSetUpdateParameters {
189
- recordSet?: RecordSet;
190
- }
191
-
192
- // @public
193
- export type RecordType = "A" | "AAAA" | "CNAME" | "MX" | "NS" | "PTR" | "SOA" | "SRV" | "TXT";
194
-
195
- // @public
196
- export interface Resource {
197
- readonly id?: string;
198
- readonly name?: string;
199
- readonly type?: string;
200
- }
201
-
202
- // @public
203
- export interface SoaRecord {
204
- email?: string;
205
- expireTime?: number;
206
- host?: string;
207
- minimumTtl?: number;
208
- refreshTime?: number;
209
- retryTime?: number;
210
- serialNumber?: number;
211
- }
212
-
213
- // @public
214
- export interface SrvRecord {
215
- port?: number;
216
- priority?: number;
217
- target?: string;
218
- weight?: number;
219
- }
220
-
221
- // @public (undocumented)
222
- export interface SubResource {
223
- id?: string;
224
- }
225
-
226
- // @public
227
- export interface TrackedResource extends Resource {
228
- location: string;
229
- tags?: {
230
- [propertyName: string]: string;
231
- };
232
- }
233
-
234
- // @public
235
- export interface TxtRecord {
236
- value?: string[];
237
- }
238
-
239
- // @public
240
- export interface Zone extends TrackedResource {
241
- etag?: string;
242
- maxNumberOfRecordSets?: number;
243
- readonly maxNumberOfRecordsPerRecordSet?: number;
244
- readonly nameServers?: string[];
245
- numberOfRecordSets?: number;
246
- zoneType?: ZoneType;
247
- }
248
-
249
- // @public
250
- export interface ZoneDeleteResult {
251
- azureAsyncOperation?: string;
252
- // (undocumented)
253
- requestId?: string;
254
- // (undocumented)
255
- status?: OperationStatus;
256
- // (undocumented)
257
- statusCode?: HttpStatusCode;
258
- }
259
-
260
- // @public
261
- export interface ZoneListResult {
262
- nextLink?: string;
263
- value?: Zone[];
264
- }
265
-
266
- // @public
267
- export interface Zones {
268
- beginDelete(resourceGroupName: string, zoneName: string, options?: ZonesDeleteOptionalParams): Promise<PollerLike<PollOperationState<ZonesDeleteResponse>, ZonesDeleteResponse>>;
269
- beginDeleteAndWait(resourceGroupName: string, zoneName: string, options?: ZonesDeleteOptionalParams): Promise<ZonesDeleteResponse>;
270
- createOrUpdate(resourceGroupName: string, zoneName: string, parameters: Zone, options?: ZonesCreateOrUpdateOptionalParams): Promise<ZonesCreateOrUpdateResponse>;
271
- get(resourceGroupName: string, zoneName: string, options?: ZonesGetOptionalParams): Promise<ZonesGetResponse>;
272
- list(options?: ZonesListOptionalParams): PagedAsyncIterableIterator<Zone>;
273
- listByResourceGroup(resourceGroupName: string, options?: ZonesListByResourceGroupOptionalParams): PagedAsyncIterableIterator<Zone>;
274
- }
275
-
276
- // @public
277
- export interface ZonesCreateOrUpdateOptionalParams extends coreClient.OperationOptions {
278
- ifMatch?: string;
279
- ifNoneMatch?: string;
280
- }
281
-
282
- // @public
283
- export type ZonesCreateOrUpdateResponse = Zone;
284
-
285
- // @public
286
- export interface ZonesDeleteOptionalParams extends coreClient.OperationOptions {
287
- ifMatch?: string;
288
- resumeFrom?: string;
289
- updateIntervalInMs?: number;
290
- }
291
-
292
- // @public
293
- export type ZonesDeleteResponse = ZoneDeleteResult;
294
-
295
- // @public
296
- export interface ZonesGetOptionalParams extends coreClient.OperationOptions {
297
- }
298
-
299
- // @public
300
- export type ZonesGetResponse = Zone;
301
-
302
- // @public
303
- export interface ZonesListByResourceGroupNextOptionalParams extends coreClient.OperationOptions {
304
- }
305
-
306
- // @public
307
- export type ZonesListByResourceGroupNextResponse = ZoneListResult;
308
-
309
- // @public
310
- export interface ZonesListByResourceGroupOptionalParams extends coreClient.OperationOptions {
311
- top?: number;
312
- }
313
-
314
- // @public
315
- export type ZonesListByResourceGroupResponse = ZoneListResult;
316
-
317
- // @public
318
- export interface ZonesListNextOptionalParams extends coreClient.OperationOptions {
319
- }
320
-
321
- // @public
322
- export type ZonesListNextResponse = ZoneListResult;
323
-
324
- // @public
325
- export interface ZonesListOptionalParams extends coreClient.OperationOptions {
326
- top?: number;
327
- }
328
-
329
- // @public
330
- export type ZonesListResponse = ZoneListResult;
331
-
332
- // @public
333
- export type ZoneType = "Public" | "Private";
334
-
335
- // (No @packageDocumentation comment for this package)
336
-
337
- ```
1
+ ## API Report File for "@azure/arm-dns-profile-2020-09-01-hybrid"
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 { PagedAsyncIterableIterator } from '@azure/core-paging';
10
+ import { PollerLike } from '@azure/core-lro';
11
+ import { PollOperationState } 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 CloudError {
25
+ error?: CloudErrorBody;
26
+ }
27
+
28
+ // @public
29
+ export interface CloudErrorBody {
30
+ code?: string;
31
+ details?: CloudErrorBody[];
32
+ message?: string;
33
+ target?: string;
34
+ }
35
+
36
+ // @public
37
+ export interface CnameRecord {
38
+ cname?: string;
39
+ }
40
+
41
+ // @public (undocumented)
42
+ export class DnsManagementClient extends coreClient.ServiceClient {
43
+ // (undocumented)
44
+ $host: string;
45
+ constructor(credentials: coreAuth.TokenCredential, subscriptionId: string, options?: DnsManagementClientOptionalParams);
46
+ // (undocumented)
47
+ apiVersion: string;
48
+ // (undocumented)
49
+ recordSets: RecordSets;
50
+ // (undocumented)
51
+ subscriptionId: string;
52
+ // (undocumented)
53
+ zones: Zones;
54
+ }
55
+
56
+ // @public
57
+ export interface DnsManagementClientOptionalParams extends coreClient.ServiceClientOptions {
58
+ $host?: string;
59
+ apiVersion?: string;
60
+ endpoint?: string;
61
+ }
62
+
63
+ // @public
64
+ export function getContinuationToken(page: unknown): string | undefined;
65
+
66
+ // @public
67
+ export type HttpStatusCode = "Continue" | "SwitchingProtocols" | "OK" | "Created" | "Accepted" | "NonAuthoritativeInformation" | "NoContent" | "ResetContent" | "PartialContent" | "MultipleChoices" | "Ambiguous" | "MovedPermanently" | "Moved" | "Found" | "Redirect" | "SeeOther" | "RedirectMethod" | "NotModified" | "UseProxy" | "Unused" | "TemporaryRedirect" | "RedirectKeepVerb" | "BadRequest" | "Unauthorized" | "PaymentRequired" | "Forbidden" | "NotFound" | "MethodNotAllowed" | "NotAcceptable" | "ProxyAuthenticationRequired" | "RequestTimeout" | "Conflict" | "Gone" | "LengthRequired" | "PreconditionFailed" | "RequestEntityTooLarge" | "RequestUriTooLong" | "UnsupportedMediaType" | "RequestedRangeNotSatisfiable" | "ExpectationFailed" | "UpgradeRequired" | "InternalServerError" | "NotImplemented" | "BadGateway" | "ServiceUnavailable" | "GatewayTimeout" | "HttpVersionNotSupported";
68
+
69
+ // @public
70
+ export interface MxRecord {
71
+ exchange?: string;
72
+ preference?: number;
73
+ }
74
+
75
+ // @public
76
+ export interface NsRecord {
77
+ nsdname?: string;
78
+ }
79
+
80
+ // @public
81
+ export type OperationStatus = "InProgress" | "Succeeded" | "Failed";
82
+
83
+ // @public
84
+ export interface PtrRecord {
85
+ ptrdname?: string;
86
+ }
87
+
88
+ // @public
89
+ export interface RecordSet {
90
+ aaaaRecords?: AaaaRecord[];
91
+ aRecords?: ARecord[];
92
+ cnameRecord?: CnameRecord;
93
+ etag?: string;
94
+ readonly fqdn?: string;
95
+ id?: string;
96
+ metadata?: {
97
+ [propertyName: string]: string;
98
+ };
99
+ mxRecords?: MxRecord[];
100
+ name?: string;
101
+ nsRecords?: NsRecord[];
102
+ ptrRecords?: PtrRecord[];
103
+ soaRecord?: SoaRecord;
104
+ srvRecords?: SrvRecord[];
105
+ ttl?: number;
106
+ txtRecords?: TxtRecord[];
107
+ type?: string;
108
+ }
109
+
110
+ // @public
111
+ export interface RecordSetListResult {
112
+ nextLink?: string;
113
+ value?: RecordSet[];
114
+ }
115
+
116
+ // @public
117
+ export interface RecordSets {
118
+ createOrUpdate(resourceGroupName: string, zoneName: string, relativeRecordSetName: string, recordType: RecordType, parameters: RecordSet, options?: RecordSetsCreateOrUpdateOptionalParams): Promise<RecordSetsCreateOrUpdateResponse>;
119
+ delete(resourceGroupName: string, zoneName: string, relativeRecordSetName: string, recordType: RecordType, options?: RecordSetsDeleteOptionalParams): Promise<void>;
120
+ get(resourceGroupName: string, zoneName: string, relativeRecordSetName: string, recordType: RecordType, options?: RecordSetsGetOptionalParams): Promise<RecordSetsGetResponse>;
121
+ listByDnsZone(resourceGroupName: string, zoneName: string, options?: RecordSetsListByDnsZoneOptionalParams): PagedAsyncIterableIterator<RecordSet>;
122
+ listByType(resourceGroupName: string, zoneName: string, recordType: RecordType, options?: RecordSetsListByTypeOptionalParams): PagedAsyncIterableIterator<RecordSet>;
123
+ update(resourceGroupName: string, zoneName: string, relativeRecordSetName: string, recordType: RecordType, parameters: RecordSet, options?: RecordSetsUpdateOptionalParams): Promise<RecordSetsUpdateResponse>;
124
+ }
125
+
126
+ // @public
127
+ export interface RecordSetsCreateOrUpdateOptionalParams extends coreClient.OperationOptions {
128
+ ifMatch?: string;
129
+ ifNoneMatch?: string;
130
+ }
131
+
132
+ // @public
133
+ export type RecordSetsCreateOrUpdateResponse = RecordSet;
134
+
135
+ // @public
136
+ export interface RecordSetsDeleteOptionalParams extends coreClient.OperationOptions {
137
+ ifMatch?: string;
138
+ }
139
+
140
+ // @public
141
+ export interface RecordSetsGetOptionalParams extends coreClient.OperationOptions {
142
+ }
143
+
144
+ // @public
145
+ export type RecordSetsGetResponse = RecordSet;
146
+
147
+ // @public
148
+ export interface RecordSetsListByDnsZoneNextOptionalParams extends coreClient.OperationOptions {
149
+ }
150
+
151
+ // @public
152
+ export type RecordSetsListByDnsZoneNextResponse = RecordSetListResult;
153
+
154
+ // @public
155
+ export interface RecordSetsListByDnsZoneOptionalParams extends coreClient.OperationOptions {
156
+ recordsetnamesuffix?: string;
157
+ top?: number;
158
+ }
159
+
160
+ // @public
161
+ export type RecordSetsListByDnsZoneResponse = RecordSetListResult;
162
+
163
+ // @public
164
+ export interface RecordSetsListByTypeNextOptionalParams extends coreClient.OperationOptions {
165
+ }
166
+
167
+ // @public
168
+ export type RecordSetsListByTypeNextResponse = RecordSetListResult;
169
+
170
+ // @public
171
+ export interface RecordSetsListByTypeOptionalParams extends coreClient.OperationOptions {
172
+ recordsetnamesuffix?: string;
173
+ top?: number;
174
+ }
175
+
176
+ // @public
177
+ export type RecordSetsListByTypeResponse = RecordSetListResult;
178
+
179
+ // @public
180
+ export interface RecordSetsUpdateOptionalParams extends coreClient.OperationOptions {
181
+ ifMatch?: string;
182
+ }
183
+
184
+ // @public
185
+ export type RecordSetsUpdateResponse = RecordSet;
186
+
187
+ // @public
188
+ export interface RecordSetUpdateParameters {
189
+ recordSet?: RecordSet;
190
+ }
191
+
192
+ // @public
193
+ export type RecordType = "A" | "AAAA" | "CNAME" | "MX" | "NS" | "PTR" | "SOA" | "SRV" | "TXT";
194
+
195
+ // @public
196
+ export interface Resource {
197
+ readonly id?: string;
198
+ readonly name?: string;
199
+ readonly type?: string;
200
+ }
201
+
202
+ // @public
203
+ export interface SoaRecord {
204
+ email?: string;
205
+ expireTime?: number;
206
+ host?: string;
207
+ minimumTtl?: number;
208
+ refreshTime?: number;
209
+ retryTime?: number;
210
+ serialNumber?: number;
211
+ }
212
+
213
+ // @public
214
+ export interface SrvRecord {
215
+ port?: number;
216
+ priority?: number;
217
+ target?: string;
218
+ weight?: number;
219
+ }
220
+
221
+ // @public (undocumented)
222
+ export interface SubResource {
223
+ id?: string;
224
+ }
225
+
226
+ // @public
227
+ export interface TrackedResource extends Resource {
228
+ location: string;
229
+ tags?: {
230
+ [propertyName: string]: string;
231
+ };
232
+ }
233
+
234
+ // @public
235
+ export interface TxtRecord {
236
+ value?: string[];
237
+ }
238
+
239
+ // @public
240
+ export interface Zone extends TrackedResource {
241
+ etag?: string;
242
+ maxNumberOfRecordSets?: number;
243
+ readonly maxNumberOfRecordsPerRecordSet?: number;
244
+ readonly nameServers?: string[];
245
+ numberOfRecordSets?: number;
246
+ zoneType?: ZoneType;
247
+ }
248
+
249
+ // @public
250
+ export interface ZoneDeleteResult {
251
+ azureAsyncOperation?: string;
252
+ // (undocumented)
253
+ requestId?: string;
254
+ // (undocumented)
255
+ status?: OperationStatus;
256
+ // (undocumented)
257
+ statusCode?: HttpStatusCode;
258
+ }
259
+
260
+ // @public
261
+ export interface ZoneListResult {
262
+ nextLink?: string;
263
+ value?: Zone[];
264
+ }
265
+
266
+ // @public
267
+ export interface Zones {
268
+ beginDelete(resourceGroupName: string, zoneName: string, options?: ZonesDeleteOptionalParams): Promise<PollerLike<PollOperationState<ZonesDeleteResponse>, ZonesDeleteResponse>>;
269
+ beginDeleteAndWait(resourceGroupName: string, zoneName: string, options?: ZonesDeleteOptionalParams): Promise<ZonesDeleteResponse>;
270
+ createOrUpdate(resourceGroupName: string, zoneName: string, parameters: Zone, options?: ZonesCreateOrUpdateOptionalParams): Promise<ZonesCreateOrUpdateResponse>;
271
+ get(resourceGroupName: string, zoneName: string, options?: ZonesGetOptionalParams): Promise<ZonesGetResponse>;
272
+ list(options?: ZonesListOptionalParams): PagedAsyncIterableIterator<Zone>;
273
+ listByResourceGroup(resourceGroupName: string, options?: ZonesListByResourceGroupOptionalParams): PagedAsyncIterableIterator<Zone>;
274
+ }
275
+
276
+ // @public
277
+ export interface ZonesCreateOrUpdateOptionalParams extends coreClient.OperationOptions {
278
+ ifMatch?: string;
279
+ ifNoneMatch?: string;
280
+ }
281
+
282
+ // @public
283
+ export type ZonesCreateOrUpdateResponse = Zone;
284
+
285
+ // @public
286
+ export interface ZonesDeleteOptionalParams extends coreClient.OperationOptions {
287
+ ifMatch?: string;
288
+ resumeFrom?: string;
289
+ updateIntervalInMs?: number;
290
+ }
291
+
292
+ // @public
293
+ export type ZonesDeleteResponse = ZoneDeleteResult;
294
+
295
+ // @public
296
+ export interface ZonesGetOptionalParams extends coreClient.OperationOptions {
297
+ }
298
+
299
+ // @public
300
+ export type ZonesGetResponse = Zone;
301
+
302
+ // @public
303
+ export interface ZonesListByResourceGroupNextOptionalParams extends coreClient.OperationOptions {
304
+ }
305
+
306
+ // @public
307
+ export type ZonesListByResourceGroupNextResponse = ZoneListResult;
308
+
309
+ // @public
310
+ export interface ZonesListByResourceGroupOptionalParams extends coreClient.OperationOptions {
311
+ top?: number;
312
+ }
313
+
314
+ // @public
315
+ export type ZonesListByResourceGroupResponse = ZoneListResult;
316
+
317
+ // @public
318
+ export interface ZonesListNextOptionalParams extends coreClient.OperationOptions {
319
+ }
320
+
321
+ // @public
322
+ export type ZonesListNextResponse = ZoneListResult;
323
+
324
+ // @public
325
+ export interface ZonesListOptionalParams extends coreClient.OperationOptions {
326
+ top?: number;
327
+ }
328
+
329
+ // @public
330
+ export type ZonesListResponse = ZoneListResult;
331
+
332
+ // @public
333
+ export type ZoneType = "Public" | "Private";
334
+
335
+ // (No @packageDocumentation comment for this package)
336
+
337
+ ```