@azure/arm-privatedns 3.3.1-alpha.20250718.1 → 3.3.1-alpha.20250730.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/dist/browser/lroImpl.js +7 -3
- package/dist/browser/lroImpl.js.map +1 -1
- package/dist/browser/models/mappers.js +75 -35
- package/dist/browser/models/mappers.js.map +1 -1
- package/dist/browser/operations/privateZones.js +78 -97
- package/dist/browser/operations/privateZones.js.map +1 -1
- package/dist/browser/operations/recordSets.js +45 -79
- package/dist/browser/operations/recordSets.js.map +1 -1
- package/dist/browser/operations/virtualNetworkLinks.js +56 -58
- package/dist/browser/operations/virtualNetworkLinks.js.map +1 -1
- package/dist/browser/pagingHelper.js +2 -4
- package/dist/browser/pagingHelper.js.map +1 -1
- package/dist/browser/privateDnsManagementClient.js +16 -5
- package/dist/browser/privateDnsManagementClient.js.map +1 -1
- package/dist/commonjs/lroImpl.js +7 -3
- package/dist/commonjs/lroImpl.js.map +1 -1
- package/dist/commonjs/models/mappers.js +75 -35
- package/dist/commonjs/models/mappers.js.map +1 -1
- package/dist/commonjs/operations/privateZones.js +78 -96
- package/dist/commonjs/operations/privateZones.js.map +1 -1
- package/dist/commonjs/operations/recordSets.js +45 -78
- package/dist/commonjs/operations/recordSets.js.map +1 -1
- package/dist/commonjs/operations/virtualNetworkLinks.js +56 -57
- package/dist/commonjs/operations/virtualNetworkLinks.js.map +1 -1
- package/dist/commonjs/pagingHelper.js +2 -4
- package/dist/commonjs/pagingHelper.js.map +1 -1
- package/dist/commonjs/privateDnsManagementClient.js +16 -5
- package/dist/commonjs/privateDnsManagementClient.js.map +1 -1
- package/dist/commonjs/tsdoc-metadata.json +11 -11
- package/dist/esm/lroImpl.js +7 -3
- package/dist/esm/lroImpl.js.map +1 -1
- package/dist/esm/models/mappers.js +75 -35
- package/dist/esm/models/mappers.js.map +1 -1
- package/dist/esm/operations/privateZones.js +78 -97
- package/dist/esm/operations/privateZones.js.map +1 -1
- package/dist/esm/operations/recordSets.js +45 -79
- package/dist/esm/operations/recordSets.js.map +1 -1
- package/dist/esm/operations/virtualNetworkLinks.js +56 -58
- package/dist/esm/operations/virtualNetworkLinks.js.map +1 -1
- package/dist/esm/pagingHelper.js +2 -4
- package/dist/esm/pagingHelper.js.map +1 -1
- package/dist/esm/privateDnsManagementClient.js +16 -5
- package/dist/esm/privateDnsManagementClient.js.map +1 -1
- package/dist/react-native/lroImpl.js +7 -3
- package/dist/react-native/lroImpl.js.map +1 -1
- package/dist/react-native/models/mappers.js +75 -35
- package/dist/react-native/models/mappers.js.map +1 -1
- package/dist/react-native/operations/privateZones.js +78 -97
- package/dist/react-native/operations/privateZones.js.map +1 -1
- package/dist/react-native/operations/recordSets.js +45 -79
- package/dist/react-native/operations/recordSets.js.map +1 -1
- package/dist/react-native/operations/virtualNetworkLinks.js +56 -58
- package/dist/react-native/operations/virtualNetworkLinks.js.map +1 -1
- package/dist/react-native/pagingHelper.js +2 -4
- package/dist/react-native/pagingHelper.js.map +1 -1
- package/dist/react-native/privateDnsManagementClient.js +16 -5
- package/dist/react-native/privateDnsManagementClient.js.map +1 -1
- package/package.json +2 -2
- package/review/arm-privatedns-node.api.md +434 -434
|
@@ -1,434 +1,434 @@
|
|
|
1
|
-
## API Report File for "@azure/arm-privatedns"
|
|
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 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
|
|
42
|
-
export function getContinuationToken(page: unknown): string | undefined;
|
|
43
|
-
|
|
44
|
-
// @public
|
|
45
|
-
export enum KnownProvisioningState {
|
|
46
|
-
Canceled = "Canceled",
|
|
47
|
-
Creating = "Creating",
|
|
48
|
-
Deleting = "Deleting",
|
|
49
|
-
Failed = "Failed",
|
|
50
|
-
Succeeded = "Succeeded",
|
|
51
|
-
Updating = "Updating"
|
|
52
|
-
}
|
|
53
|
-
|
|
54
|
-
// @public
|
|
55
|
-
export enum KnownResolutionPolicy {
|
|
56
|
-
Default = "Default",
|
|
57
|
-
NxDomainRedirect = "NxDomainRedirect"
|
|
58
|
-
}
|
|
59
|
-
|
|
60
|
-
// @public
|
|
61
|
-
export enum KnownVirtualNetworkLinkState {
|
|
62
|
-
Completed = "Completed",
|
|
63
|
-
InProgress = "InProgress"
|
|
64
|
-
}
|
|
65
|
-
|
|
66
|
-
// @public
|
|
67
|
-
export interface MxRecord {
|
|
68
|
-
exchange?: string;
|
|
69
|
-
preference?: number;
|
|
70
|
-
}
|
|
71
|
-
|
|
72
|
-
// @public (undocumented)
|
|
73
|
-
export class PrivateDnsManagementClient extends coreClient.ServiceClient {
|
|
74
|
-
// (undocumented)
|
|
75
|
-
$host: string;
|
|
76
|
-
constructor(credentials: coreAuth.TokenCredential, subscriptionId: string, options?: PrivateDnsManagementClientOptionalParams);
|
|
77
|
-
// (undocumented)
|
|
78
|
-
apiVersion: string;
|
|
79
|
-
// (undocumented)
|
|
80
|
-
privateZones: PrivateZones;
|
|
81
|
-
// (undocumented)
|
|
82
|
-
recordSets: RecordSets;
|
|
83
|
-
// (undocumented)
|
|
84
|
-
subscriptionId: string;
|
|
85
|
-
// (undocumented)
|
|
86
|
-
virtualNetworkLinks: VirtualNetworkLinks;
|
|
87
|
-
}
|
|
88
|
-
|
|
89
|
-
// @public
|
|
90
|
-
export interface PrivateDnsManagementClientOptionalParams extends coreClient.ServiceClientOptions {
|
|
91
|
-
$host?: string;
|
|
92
|
-
apiVersion?: string;
|
|
93
|
-
endpoint?: string;
|
|
94
|
-
}
|
|
95
|
-
|
|
96
|
-
// @public
|
|
97
|
-
export interface PrivateZone extends TrackedResource {
|
|
98
|
-
etag?: string;
|
|
99
|
-
readonly internalId?: string;
|
|
100
|
-
readonly maxNumberOfRecordSets?: number;
|
|
101
|
-
readonly maxNumberOfVirtualNetworkLinks?: number;
|
|
102
|
-
readonly maxNumberOfVirtualNetworkLinksWithRegistration?: number;
|
|
103
|
-
readonly numberOfRecordSets?: number;
|
|
104
|
-
readonly numberOfVirtualNetworkLinks?: number;
|
|
105
|
-
readonly numberOfVirtualNetworkLinksWithRegistration?: number;
|
|
106
|
-
readonly provisioningState?: ProvisioningState;
|
|
107
|
-
}
|
|
108
|
-
|
|
109
|
-
// @public
|
|
110
|
-
export interface PrivateZoneListResult {
|
|
111
|
-
readonly nextLink?: string;
|
|
112
|
-
value?: PrivateZone[];
|
|
113
|
-
}
|
|
114
|
-
|
|
115
|
-
// @public
|
|
116
|
-
export interface PrivateZones {
|
|
117
|
-
beginCreateOrUpdate(resourceGroupName: string, privateZoneName: string, parameters: PrivateZone, options?: PrivateZonesCreateOrUpdateOptionalParams): Promise<SimplePollerLike<OperationState<PrivateZonesCreateOrUpdateResponse>, PrivateZonesCreateOrUpdateResponse>>;
|
|
118
|
-
beginCreateOrUpdateAndWait(resourceGroupName: string, privateZoneName: string, parameters: PrivateZone, options?: PrivateZonesCreateOrUpdateOptionalParams): Promise<PrivateZonesCreateOrUpdateResponse>;
|
|
119
|
-
beginDelete(resourceGroupName: string, privateZoneName: string, options?: PrivateZonesDeleteOptionalParams): Promise<SimplePollerLike<OperationState<void>, void>>;
|
|
120
|
-
beginDeleteAndWait(resourceGroupName: string, privateZoneName: string, options?: PrivateZonesDeleteOptionalParams): Promise<void>;
|
|
121
|
-
beginUpdate(resourceGroupName: string, privateZoneName: string, parameters: PrivateZone, options?: PrivateZonesUpdateOptionalParams): Promise<SimplePollerLike<OperationState<PrivateZonesUpdateResponse>, PrivateZonesUpdateResponse>>;
|
|
122
|
-
beginUpdateAndWait(resourceGroupName: string, privateZoneName: string, parameters: PrivateZone, options?: PrivateZonesUpdateOptionalParams): Promise<PrivateZonesUpdateResponse>;
|
|
123
|
-
get(resourceGroupName: string, privateZoneName: string, options?: PrivateZonesGetOptionalParams): Promise<PrivateZonesGetResponse>;
|
|
124
|
-
list(options?: PrivateZonesListOptionalParams): PagedAsyncIterableIterator<PrivateZone>;
|
|
125
|
-
listByResourceGroup(resourceGroupName: string, options?: PrivateZonesListByResourceGroupOptionalParams): PagedAsyncIterableIterator<PrivateZone>;
|
|
126
|
-
}
|
|
127
|
-
|
|
128
|
-
// @public
|
|
129
|
-
export interface PrivateZonesCreateOrUpdateOptionalParams extends coreClient.OperationOptions {
|
|
130
|
-
ifMatch?: string;
|
|
131
|
-
ifNoneMatch?: string;
|
|
132
|
-
resumeFrom?: string;
|
|
133
|
-
updateIntervalInMs?: number;
|
|
134
|
-
}
|
|
135
|
-
|
|
136
|
-
// @public
|
|
137
|
-
export type PrivateZonesCreateOrUpdateResponse = PrivateZone;
|
|
138
|
-
|
|
139
|
-
// @public
|
|
140
|
-
export interface PrivateZonesDeleteOptionalParams extends coreClient.OperationOptions {
|
|
141
|
-
ifMatch?: string;
|
|
142
|
-
resumeFrom?: string;
|
|
143
|
-
updateIntervalInMs?: number;
|
|
144
|
-
}
|
|
145
|
-
|
|
146
|
-
// @public
|
|
147
|
-
export interface PrivateZonesGetOptionalParams extends coreClient.OperationOptions {
|
|
148
|
-
}
|
|
149
|
-
|
|
150
|
-
// @public
|
|
151
|
-
export type PrivateZonesGetResponse = PrivateZone;
|
|
152
|
-
|
|
153
|
-
// @public
|
|
154
|
-
export interface PrivateZonesListByResourceGroupNextOptionalParams extends coreClient.OperationOptions {
|
|
155
|
-
}
|
|
156
|
-
|
|
157
|
-
// @public
|
|
158
|
-
export type PrivateZonesListByResourceGroupNextResponse = PrivateZoneListResult;
|
|
159
|
-
|
|
160
|
-
// @public
|
|
161
|
-
export interface PrivateZonesListByResourceGroupOptionalParams extends coreClient.OperationOptions {
|
|
162
|
-
top?: number;
|
|
163
|
-
}
|
|
164
|
-
|
|
165
|
-
// @public
|
|
166
|
-
export type PrivateZonesListByResourceGroupResponse = PrivateZoneListResult;
|
|
167
|
-
|
|
168
|
-
// @public
|
|
169
|
-
export interface PrivateZonesListNextOptionalParams extends coreClient.OperationOptions {
|
|
170
|
-
}
|
|
171
|
-
|
|
172
|
-
// @public
|
|
173
|
-
export type PrivateZonesListNextResponse = PrivateZoneListResult;
|
|
174
|
-
|
|
175
|
-
// @public
|
|
176
|
-
export interface PrivateZonesListOptionalParams extends coreClient.OperationOptions {
|
|
177
|
-
top?: number;
|
|
178
|
-
}
|
|
179
|
-
|
|
180
|
-
// @public
|
|
181
|
-
export type PrivateZonesListResponse = PrivateZoneListResult;
|
|
182
|
-
|
|
183
|
-
// @public
|
|
184
|
-
export interface PrivateZonesUpdateOptionalParams extends coreClient.OperationOptions {
|
|
185
|
-
ifMatch?: string;
|
|
186
|
-
resumeFrom?: string;
|
|
187
|
-
updateIntervalInMs?: number;
|
|
188
|
-
}
|
|
189
|
-
|
|
190
|
-
// @public
|
|
191
|
-
export type PrivateZonesUpdateResponse = PrivateZone;
|
|
192
|
-
|
|
193
|
-
// @public
|
|
194
|
-
export type ProvisioningState = string;
|
|
195
|
-
|
|
196
|
-
// @public
|
|
197
|
-
export interface ProxyResource extends Resource {
|
|
198
|
-
}
|
|
199
|
-
|
|
200
|
-
// @public
|
|
201
|
-
export interface PtrRecord {
|
|
202
|
-
ptrdname?: string;
|
|
203
|
-
}
|
|
204
|
-
|
|
205
|
-
// @public
|
|
206
|
-
export interface RecordSet extends ProxyResource {
|
|
207
|
-
aaaaRecords?: AaaaRecord[];
|
|
208
|
-
aRecords?: ARecord[];
|
|
209
|
-
cnameRecord?: CnameRecord;
|
|
210
|
-
etag?: string;
|
|
211
|
-
readonly fqdn?: string;
|
|
212
|
-
readonly isAutoRegistered?: boolean;
|
|
213
|
-
metadata?: {
|
|
214
|
-
[propertyName: string]: string;
|
|
215
|
-
};
|
|
216
|
-
mxRecords?: MxRecord[];
|
|
217
|
-
ptrRecords?: PtrRecord[];
|
|
218
|
-
soaRecord?: SoaRecord;
|
|
219
|
-
srvRecords?: SrvRecord[];
|
|
220
|
-
ttl?: number;
|
|
221
|
-
txtRecords?: TxtRecord[];
|
|
222
|
-
}
|
|
223
|
-
|
|
224
|
-
// @public
|
|
225
|
-
export interface RecordSetListResult {
|
|
226
|
-
readonly nextLink?: string;
|
|
227
|
-
value?: RecordSet[];
|
|
228
|
-
}
|
|
229
|
-
|
|
230
|
-
// @public
|
|
231
|
-
export interface RecordSets {
|
|
232
|
-
createOrUpdate(resourceGroupName: string, privateZoneName: string, recordType: RecordType, relativeRecordSetName: string, parameters: RecordSet, options?: RecordSetsCreateOrUpdateOptionalParams): Promise<RecordSetsCreateOrUpdateResponse>;
|
|
233
|
-
delete(resourceGroupName: string, privateZoneName: string, recordType: RecordType, relativeRecordSetName: string, options?: RecordSetsDeleteOptionalParams): Promise<void>;
|
|
234
|
-
get(resourceGroupName: string, privateZoneName: string, recordType: RecordType, relativeRecordSetName: string, options?: RecordSetsGetOptionalParams): Promise<RecordSetsGetResponse>;
|
|
235
|
-
list(resourceGroupName: string, privateZoneName: string, options?: RecordSetsListOptionalParams): PagedAsyncIterableIterator<RecordSet>;
|
|
236
|
-
listByType(resourceGroupName: string, privateZoneName: string, recordType: RecordType, options?: RecordSetsListByTypeOptionalParams): PagedAsyncIterableIterator<RecordSet>;
|
|
237
|
-
update(resourceGroupName: string, privateZoneName: string, recordType: RecordType, relativeRecordSetName: string, parameters: RecordSet, options?: RecordSetsUpdateOptionalParams): Promise<RecordSetsUpdateResponse>;
|
|
238
|
-
}
|
|
239
|
-
|
|
240
|
-
// @public
|
|
241
|
-
export interface RecordSetsCreateOrUpdateOptionalParams extends coreClient.OperationOptions {
|
|
242
|
-
ifMatch?: string;
|
|
243
|
-
ifNoneMatch?: string;
|
|
244
|
-
}
|
|
245
|
-
|
|
246
|
-
// @public
|
|
247
|
-
export type RecordSetsCreateOrUpdateResponse = RecordSet;
|
|
248
|
-
|
|
249
|
-
// @public
|
|
250
|
-
export interface RecordSetsDeleteOptionalParams extends coreClient.OperationOptions {
|
|
251
|
-
ifMatch?: string;
|
|
252
|
-
}
|
|
253
|
-
|
|
254
|
-
// @public
|
|
255
|
-
export interface RecordSetsGetOptionalParams extends coreClient.OperationOptions {
|
|
256
|
-
}
|
|
257
|
-
|
|
258
|
-
// @public
|
|
259
|
-
export type RecordSetsGetResponse = RecordSet;
|
|
260
|
-
|
|
261
|
-
// @public
|
|
262
|
-
export interface RecordSetsListByTypeNextOptionalParams extends coreClient.OperationOptions {
|
|
263
|
-
}
|
|
264
|
-
|
|
265
|
-
// @public
|
|
266
|
-
export type RecordSetsListByTypeNextResponse = RecordSetListResult;
|
|
267
|
-
|
|
268
|
-
// @public
|
|
269
|
-
export interface RecordSetsListByTypeOptionalParams extends coreClient.OperationOptions {
|
|
270
|
-
recordsetnamesuffix?: string;
|
|
271
|
-
top?: number;
|
|
272
|
-
}
|
|
273
|
-
|
|
274
|
-
// @public
|
|
275
|
-
export type RecordSetsListByTypeResponse = RecordSetListResult;
|
|
276
|
-
|
|
277
|
-
// @public
|
|
278
|
-
export interface RecordSetsListNextOptionalParams extends coreClient.OperationOptions {
|
|
279
|
-
}
|
|
280
|
-
|
|
281
|
-
// @public
|
|
282
|
-
export type RecordSetsListNextResponse = RecordSetListResult;
|
|
283
|
-
|
|
284
|
-
// @public
|
|
285
|
-
export interface RecordSetsListOptionalParams extends coreClient.OperationOptions {
|
|
286
|
-
recordsetnamesuffix?: string;
|
|
287
|
-
top?: number;
|
|
288
|
-
}
|
|
289
|
-
|
|
290
|
-
// @public
|
|
291
|
-
export type RecordSetsListResponse = RecordSetListResult;
|
|
292
|
-
|
|
293
|
-
// @public
|
|
294
|
-
export interface RecordSetsUpdateOptionalParams extends coreClient.OperationOptions {
|
|
295
|
-
ifMatch?: string;
|
|
296
|
-
}
|
|
297
|
-
|
|
298
|
-
// @public
|
|
299
|
-
export type RecordSetsUpdateResponse = RecordSet;
|
|
300
|
-
|
|
301
|
-
// @public
|
|
302
|
-
export type RecordType = "A" | "AAAA" | "CNAME" | "MX" | "PTR" | "SOA" | "SRV" | "TXT";
|
|
303
|
-
|
|
304
|
-
// @public
|
|
305
|
-
export type ResolutionPolicy = string;
|
|
306
|
-
|
|
307
|
-
// @public
|
|
308
|
-
export interface Resource {
|
|
309
|
-
readonly id?: string;
|
|
310
|
-
readonly name?: string;
|
|
311
|
-
readonly type?: string;
|
|
312
|
-
}
|
|
313
|
-
|
|
314
|
-
// @public
|
|
315
|
-
export interface SoaRecord {
|
|
316
|
-
email?: string;
|
|
317
|
-
expireTime?: number;
|
|
318
|
-
host?: string;
|
|
319
|
-
minimumTtl?: number;
|
|
320
|
-
refreshTime?: number;
|
|
321
|
-
retryTime?: number;
|
|
322
|
-
serialNumber?: number;
|
|
323
|
-
}
|
|
324
|
-
|
|
325
|
-
// @public
|
|
326
|
-
export interface SrvRecord {
|
|
327
|
-
port?: number;
|
|
328
|
-
priority?: number;
|
|
329
|
-
target?: string;
|
|
330
|
-
weight?: number;
|
|
331
|
-
}
|
|
332
|
-
|
|
333
|
-
// @public
|
|
334
|
-
export interface SubResource {
|
|
335
|
-
id?: string;
|
|
336
|
-
}
|
|
337
|
-
|
|
338
|
-
// @public
|
|
339
|
-
export interface TrackedResource extends Resource {
|
|
340
|
-
location?: string;
|
|
341
|
-
tags?: {
|
|
342
|
-
[propertyName: string]: string;
|
|
343
|
-
};
|
|
344
|
-
}
|
|
345
|
-
|
|
346
|
-
// @public
|
|
347
|
-
export interface TxtRecord {
|
|
348
|
-
value?: string[];
|
|
349
|
-
}
|
|
350
|
-
|
|
351
|
-
// @public
|
|
352
|
-
export interface VirtualNetworkLink extends TrackedResource {
|
|
353
|
-
etag?: string;
|
|
354
|
-
readonly provisioningState?: ProvisioningState;
|
|
355
|
-
registrationEnabled?: boolean;
|
|
356
|
-
resolutionPolicy?: ResolutionPolicy;
|
|
357
|
-
virtualNetwork?: SubResource;
|
|
358
|
-
readonly virtualNetworkLinkState?: VirtualNetworkLinkState;
|
|
359
|
-
}
|
|
360
|
-
|
|
361
|
-
// @public
|
|
362
|
-
export interface VirtualNetworkLinkListResult {
|
|
363
|
-
readonly nextLink?: string;
|
|
364
|
-
value?: VirtualNetworkLink[];
|
|
365
|
-
}
|
|
366
|
-
|
|
367
|
-
// @public
|
|
368
|
-
export interface VirtualNetworkLinks {
|
|
369
|
-
beginCreateOrUpdate(resourceGroupName: string, privateZoneName: string, virtualNetworkLinkName: string, parameters: VirtualNetworkLink, options?: VirtualNetworkLinksCreateOrUpdateOptionalParams): Promise<SimplePollerLike<OperationState<VirtualNetworkLinksCreateOrUpdateResponse>, VirtualNetworkLinksCreateOrUpdateResponse>>;
|
|
370
|
-
beginCreateOrUpdateAndWait(resourceGroupName: string, privateZoneName: string, virtualNetworkLinkName: string, parameters: VirtualNetworkLink, options?: VirtualNetworkLinksCreateOrUpdateOptionalParams): Promise<VirtualNetworkLinksCreateOrUpdateResponse>;
|
|
371
|
-
beginDelete(resourceGroupName: string, privateZoneName: string, virtualNetworkLinkName: string, options?: VirtualNetworkLinksDeleteOptionalParams): Promise<SimplePollerLike<OperationState<void>, void>>;
|
|
372
|
-
beginDeleteAndWait(resourceGroupName: string, privateZoneName: string, virtualNetworkLinkName: string, options?: VirtualNetworkLinksDeleteOptionalParams): Promise<void>;
|
|
373
|
-
beginUpdate(resourceGroupName: string, privateZoneName: string, virtualNetworkLinkName: string, parameters: VirtualNetworkLink, options?: VirtualNetworkLinksUpdateOptionalParams): Promise<SimplePollerLike<OperationState<VirtualNetworkLinksUpdateResponse>, VirtualNetworkLinksUpdateResponse>>;
|
|
374
|
-
beginUpdateAndWait(resourceGroupName: string, privateZoneName: string, virtualNetworkLinkName: string, parameters: VirtualNetworkLink, options?: VirtualNetworkLinksUpdateOptionalParams): Promise<VirtualNetworkLinksUpdateResponse>;
|
|
375
|
-
get(resourceGroupName: string, privateZoneName: string, virtualNetworkLinkName: string, options?: VirtualNetworkLinksGetOptionalParams): Promise<VirtualNetworkLinksGetResponse>;
|
|
376
|
-
list(resourceGroupName: string, privateZoneName: string, options?: VirtualNetworkLinksListOptionalParams): PagedAsyncIterableIterator<VirtualNetworkLink>;
|
|
377
|
-
}
|
|
378
|
-
|
|
379
|
-
// @public
|
|
380
|
-
export interface VirtualNetworkLinksCreateOrUpdateOptionalParams extends coreClient.OperationOptions {
|
|
381
|
-
ifMatch?: string;
|
|
382
|
-
ifNoneMatch?: string;
|
|
383
|
-
resumeFrom?: string;
|
|
384
|
-
updateIntervalInMs?: number;
|
|
385
|
-
}
|
|
386
|
-
|
|
387
|
-
// @public
|
|
388
|
-
export type VirtualNetworkLinksCreateOrUpdateResponse = VirtualNetworkLink;
|
|
389
|
-
|
|
390
|
-
// @public
|
|
391
|
-
export interface VirtualNetworkLinksDeleteOptionalParams extends coreClient.OperationOptions {
|
|
392
|
-
ifMatch?: string;
|
|
393
|
-
resumeFrom?: string;
|
|
394
|
-
updateIntervalInMs?: number;
|
|
395
|
-
}
|
|
396
|
-
|
|
397
|
-
// @public
|
|
398
|
-
export interface VirtualNetworkLinksGetOptionalParams extends coreClient.OperationOptions {
|
|
399
|
-
}
|
|
400
|
-
|
|
401
|
-
// @public
|
|
402
|
-
export type VirtualNetworkLinksGetResponse = VirtualNetworkLink;
|
|
403
|
-
|
|
404
|
-
// @public
|
|
405
|
-
export interface VirtualNetworkLinksListNextOptionalParams extends coreClient.OperationOptions {
|
|
406
|
-
}
|
|
407
|
-
|
|
408
|
-
// @public
|
|
409
|
-
export type VirtualNetworkLinksListNextResponse = VirtualNetworkLinkListResult;
|
|
410
|
-
|
|
411
|
-
// @public
|
|
412
|
-
export interface VirtualNetworkLinksListOptionalParams extends coreClient.OperationOptions {
|
|
413
|
-
top?: number;
|
|
414
|
-
}
|
|
415
|
-
|
|
416
|
-
// @public
|
|
417
|
-
export type VirtualNetworkLinksListResponse = VirtualNetworkLinkListResult;
|
|
418
|
-
|
|
419
|
-
// @public
|
|
420
|
-
export type VirtualNetworkLinkState = string;
|
|
421
|
-
|
|
422
|
-
// @public
|
|
423
|
-
export interface VirtualNetworkLinksUpdateOptionalParams extends coreClient.OperationOptions {
|
|
424
|
-
ifMatch?: string;
|
|
425
|
-
resumeFrom?: string;
|
|
426
|
-
updateIntervalInMs?: number;
|
|
427
|
-
}
|
|
428
|
-
|
|
429
|
-
// @public
|
|
430
|
-
export type VirtualNetworkLinksUpdateResponse = VirtualNetworkLink;
|
|
431
|
-
|
|
432
|
-
// (No @packageDocumentation comment for this package)
|
|
433
|
-
|
|
434
|
-
```
|
|
1
|
+
## API Report File for "@azure/arm-privatedns"
|
|
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 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
|
|
42
|
+
export function getContinuationToken(page: unknown): string | undefined;
|
|
43
|
+
|
|
44
|
+
// @public
|
|
45
|
+
export enum KnownProvisioningState {
|
|
46
|
+
Canceled = "Canceled",
|
|
47
|
+
Creating = "Creating",
|
|
48
|
+
Deleting = "Deleting",
|
|
49
|
+
Failed = "Failed",
|
|
50
|
+
Succeeded = "Succeeded",
|
|
51
|
+
Updating = "Updating"
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
// @public
|
|
55
|
+
export enum KnownResolutionPolicy {
|
|
56
|
+
Default = "Default",
|
|
57
|
+
NxDomainRedirect = "NxDomainRedirect"
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
// @public
|
|
61
|
+
export enum KnownVirtualNetworkLinkState {
|
|
62
|
+
Completed = "Completed",
|
|
63
|
+
InProgress = "InProgress"
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
// @public
|
|
67
|
+
export interface MxRecord {
|
|
68
|
+
exchange?: string;
|
|
69
|
+
preference?: number;
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
// @public (undocumented)
|
|
73
|
+
export class PrivateDnsManagementClient extends coreClient.ServiceClient {
|
|
74
|
+
// (undocumented)
|
|
75
|
+
$host: string;
|
|
76
|
+
constructor(credentials: coreAuth.TokenCredential, subscriptionId: string, options?: PrivateDnsManagementClientOptionalParams);
|
|
77
|
+
// (undocumented)
|
|
78
|
+
apiVersion: string;
|
|
79
|
+
// (undocumented)
|
|
80
|
+
privateZones: PrivateZones;
|
|
81
|
+
// (undocumented)
|
|
82
|
+
recordSets: RecordSets;
|
|
83
|
+
// (undocumented)
|
|
84
|
+
subscriptionId: string;
|
|
85
|
+
// (undocumented)
|
|
86
|
+
virtualNetworkLinks: VirtualNetworkLinks;
|
|
87
|
+
}
|
|
88
|
+
|
|
89
|
+
// @public
|
|
90
|
+
export interface PrivateDnsManagementClientOptionalParams extends coreClient.ServiceClientOptions {
|
|
91
|
+
$host?: string;
|
|
92
|
+
apiVersion?: string;
|
|
93
|
+
endpoint?: string;
|
|
94
|
+
}
|
|
95
|
+
|
|
96
|
+
// @public
|
|
97
|
+
export interface PrivateZone extends TrackedResource {
|
|
98
|
+
etag?: string;
|
|
99
|
+
readonly internalId?: string;
|
|
100
|
+
readonly maxNumberOfRecordSets?: number;
|
|
101
|
+
readonly maxNumberOfVirtualNetworkLinks?: number;
|
|
102
|
+
readonly maxNumberOfVirtualNetworkLinksWithRegistration?: number;
|
|
103
|
+
readonly numberOfRecordSets?: number;
|
|
104
|
+
readonly numberOfVirtualNetworkLinks?: number;
|
|
105
|
+
readonly numberOfVirtualNetworkLinksWithRegistration?: number;
|
|
106
|
+
readonly provisioningState?: ProvisioningState;
|
|
107
|
+
}
|
|
108
|
+
|
|
109
|
+
// @public
|
|
110
|
+
export interface PrivateZoneListResult {
|
|
111
|
+
readonly nextLink?: string;
|
|
112
|
+
value?: PrivateZone[];
|
|
113
|
+
}
|
|
114
|
+
|
|
115
|
+
// @public
|
|
116
|
+
export interface PrivateZones {
|
|
117
|
+
beginCreateOrUpdate(resourceGroupName: string, privateZoneName: string, parameters: PrivateZone, options?: PrivateZonesCreateOrUpdateOptionalParams): Promise<SimplePollerLike<OperationState<PrivateZonesCreateOrUpdateResponse>, PrivateZonesCreateOrUpdateResponse>>;
|
|
118
|
+
beginCreateOrUpdateAndWait(resourceGroupName: string, privateZoneName: string, parameters: PrivateZone, options?: PrivateZonesCreateOrUpdateOptionalParams): Promise<PrivateZonesCreateOrUpdateResponse>;
|
|
119
|
+
beginDelete(resourceGroupName: string, privateZoneName: string, options?: PrivateZonesDeleteOptionalParams): Promise<SimplePollerLike<OperationState<void>, void>>;
|
|
120
|
+
beginDeleteAndWait(resourceGroupName: string, privateZoneName: string, options?: PrivateZonesDeleteOptionalParams): Promise<void>;
|
|
121
|
+
beginUpdate(resourceGroupName: string, privateZoneName: string, parameters: PrivateZone, options?: PrivateZonesUpdateOptionalParams): Promise<SimplePollerLike<OperationState<PrivateZonesUpdateResponse>, PrivateZonesUpdateResponse>>;
|
|
122
|
+
beginUpdateAndWait(resourceGroupName: string, privateZoneName: string, parameters: PrivateZone, options?: PrivateZonesUpdateOptionalParams): Promise<PrivateZonesUpdateResponse>;
|
|
123
|
+
get(resourceGroupName: string, privateZoneName: string, options?: PrivateZonesGetOptionalParams): Promise<PrivateZonesGetResponse>;
|
|
124
|
+
list(options?: PrivateZonesListOptionalParams): PagedAsyncIterableIterator<PrivateZone>;
|
|
125
|
+
listByResourceGroup(resourceGroupName: string, options?: PrivateZonesListByResourceGroupOptionalParams): PagedAsyncIterableIterator<PrivateZone>;
|
|
126
|
+
}
|
|
127
|
+
|
|
128
|
+
// @public
|
|
129
|
+
export interface PrivateZonesCreateOrUpdateOptionalParams extends coreClient.OperationOptions {
|
|
130
|
+
ifMatch?: string;
|
|
131
|
+
ifNoneMatch?: string;
|
|
132
|
+
resumeFrom?: string;
|
|
133
|
+
updateIntervalInMs?: number;
|
|
134
|
+
}
|
|
135
|
+
|
|
136
|
+
// @public
|
|
137
|
+
export type PrivateZonesCreateOrUpdateResponse = PrivateZone;
|
|
138
|
+
|
|
139
|
+
// @public
|
|
140
|
+
export interface PrivateZonesDeleteOptionalParams extends coreClient.OperationOptions {
|
|
141
|
+
ifMatch?: string;
|
|
142
|
+
resumeFrom?: string;
|
|
143
|
+
updateIntervalInMs?: number;
|
|
144
|
+
}
|
|
145
|
+
|
|
146
|
+
// @public
|
|
147
|
+
export interface PrivateZonesGetOptionalParams extends coreClient.OperationOptions {
|
|
148
|
+
}
|
|
149
|
+
|
|
150
|
+
// @public
|
|
151
|
+
export type PrivateZonesGetResponse = PrivateZone;
|
|
152
|
+
|
|
153
|
+
// @public
|
|
154
|
+
export interface PrivateZonesListByResourceGroupNextOptionalParams extends coreClient.OperationOptions {
|
|
155
|
+
}
|
|
156
|
+
|
|
157
|
+
// @public
|
|
158
|
+
export type PrivateZonesListByResourceGroupNextResponse = PrivateZoneListResult;
|
|
159
|
+
|
|
160
|
+
// @public
|
|
161
|
+
export interface PrivateZonesListByResourceGroupOptionalParams extends coreClient.OperationOptions {
|
|
162
|
+
top?: number;
|
|
163
|
+
}
|
|
164
|
+
|
|
165
|
+
// @public
|
|
166
|
+
export type PrivateZonesListByResourceGroupResponse = PrivateZoneListResult;
|
|
167
|
+
|
|
168
|
+
// @public
|
|
169
|
+
export interface PrivateZonesListNextOptionalParams extends coreClient.OperationOptions {
|
|
170
|
+
}
|
|
171
|
+
|
|
172
|
+
// @public
|
|
173
|
+
export type PrivateZonesListNextResponse = PrivateZoneListResult;
|
|
174
|
+
|
|
175
|
+
// @public
|
|
176
|
+
export interface PrivateZonesListOptionalParams extends coreClient.OperationOptions {
|
|
177
|
+
top?: number;
|
|
178
|
+
}
|
|
179
|
+
|
|
180
|
+
// @public
|
|
181
|
+
export type PrivateZonesListResponse = PrivateZoneListResult;
|
|
182
|
+
|
|
183
|
+
// @public
|
|
184
|
+
export interface PrivateZonesUpdateOptionalParams extends coreClient.OperationOptions {
|
|
185
|
+
ifMatch?: string;
|
|
186
|
+
resumeFrom?: string;
|
|
187
|
+
updateIntervalInMs?: number;
|
|
188
|
+
}
|
|
189
|
+
|
|
190
|
+
// @public
|
|
191
|
+
export type PrivateZonesUpdateResponse = PrivateZone;
|
|
192
|
+
|
|
193
|
+
// @public
|
|
194
|
+
export type ProvisioningState = string;
|
|
195
|
+
|
|
196
|
+
// @public
|
|
197
|
+
export interface ProxyResource extends Resource {
|
|
198
|
+
}
|
|
199
|
+
|
|
200
|
+
// @public
|
|
201
|
+
export interface PtrRecord {
|
|
202
|
+
ptrdname?: string;
|
|
203
|
+
}
|
|
204
|
+
|
|
205
|
+
// @public
|
|
206
|
+
export interface RecordSet extends ProxyResource {
|
|
207
|
+
aaaaRecords?: AaaaRecord[];
|
|
208
|
+
aRecords?: ARecord[];
|
|
209
|
+
cnameRecord?: CnameRecord;
|
|
210
|
+
etag?: string;
|
|
211
|
+
readonly fqdn?: string;
|
|
212
|
+
readonly isAutoRegistered?: boolean;
|
|
213
|
+
metadata?: {
|
|
214
|
+
[propertyName: string]: string;
|
|
215
|
+
};
|
|
216
|
+
mxRecords?: MxRecord[];
|
|
217
|
+
ptrRecords?: PtrRecord[];
|
|
218
|
+
soaRecord?: SoaRecord;
|
|
219
|
+
srvRecords?: SrvRecord[];
|
|
220
|
+
ttl?: number;
|
|
221
|
+
txtRecords?: TxtRecord[];
|
|
222
|
+
}
|
|
223
|
+
|
|
224
|
+
// @public
|
|
225
|
+
export interface RecordSetListResult {
|
|
226
|
+
readonly nextLink?: string;
|
|
227
|
+
value?: RecordSet[];
|
|
228
|
+
}
|
|
229
|
+
|
|
230
|
+
// @public
|
|
231
|
+
export interface RecordSets {
|
|
232
|
+
createOrUpdate(resourceGroupName: string, privateZoneName: string, recordType: RecordType, relativeRecordSetName: string, parameters: RecordSet, options?: RecordSetsCreateOrUpdateOptionalParams): Promise<RecordSetsCreateOrUpdateResponse>;
|
|
233
|
+
delete(resourceGroupName: string, privateZoneName: string, recordType: RecordType, relativeRecordSetName: string, options?: RecordSetsDeleteOptionalParams): Promise<void>;
|
|
234
|
+
get(resourceGroupName: string, privateZoneName: string, recordType: RecordType, relativeRecordSetName: string, options?: RecordSetsGetOptionalParams): Promise<RecordSetsGetResponse>;
|
|
235
|
+
list(resourceGroupName: string, privateZoneName: string, options?: RecordSetsListOptionalParams): PagedAsyncIterableIterator<RecordSet>;
|
|
236
|
+
listByType(resourceGroupName: string, privateZoneName: string, recordType: RecordType, options?: RecordSetsListByTypeOptionalParams): PagedAsyncIterableIterator<RecordSet>;
|
|
237
|
+
update(resourceGroupName: string, privateZoneName: string, recordType: RecordType, relativeRecordSetName: string, parameters: RecordSet, options?: RecordSetsUpdateOptionalParams): Promise<RecordSetsUpdateResponse>;
|
|
238
|
+
}
|
|
239
|
+
|
|
240
|
+
// @public
|
|
241
|
+
export interface RecordSetsCreateOrUpdateOptionalParams extends coreClient.OperationOptions {
|
|
242
|
+
ifMatch?: string;
|
|
243
|
+
ifNoneMatch?: string;
|
|
244
|
+
}
|
|
245
|
+
|
|
246
|
+
// @public
|
|
247
|
+
export type RecordSetsCreateOrUpdateResponse = RecordSet;
|
|
248
|
+
|
|
249
|
+
// @public
|
|
250
|
+
export interface RecordSetsDeleteOptionalParams extends coreClient.OperationOptions {
|
|
251
|
+
ifMatch?: string;
|
|
252
|
+
}
|
|
253
|
+
|
|
254
|
+
// @public
|
|
255
|
+
export interface RecordSetsGetOptionalParams extends coreClient.OperationOptions {
|
|
256
|
+
}
|
|
257
|
+
|
|
258
|
+
// @public
|
|
259
|
+
export type RecordSetsGetResponse = RecordSet;
|
|
260
|
+
|
|
261
|
+
// @public
|
|
262
|
+
export interface RecordSetsListByTypeNextOptionalParams extends coreClient.OperationOptions {
|
|
263
|
+
}
|
|
264
|
+
|
|
265
|
+
// @public
|
|
266
|
+
export type RecordSetsListByTypeNextResponse = RecordSetListResult;
|
|
267
|
+
|
|
268
|
+
// @public
|
|
269
|
+
export interface RecordSetsListByTypeOptionalParams extends coreClient.OperationOptions {
|
|
270
|
+
recordsetnamesuffix?: string;
|
|
271
|
+
top?: number;
|
|
272
|
+
}
|
|
273
|
+
|
|
274
|
+
// @public
|
|
275
|
+
export type RecordSetsListByTypeResponse = RecordSetListResult;
|
|
276
|
+
|
|
277
|
+
// @public
|
|
278
|
+
export interface RecordSetsListNextOptionalParams extends coreClient.OperationOptions {
|
|
279
|
+
}
|
|
280
|
+
|
|
281
|
+
// @public
|
|
282
|
+
export type RecordSetsListNextResponse = RecordSetListResult;
|
|
283
|
+
|
|
284
|
+
// @public
|
|
285
|
+
export interface RecordSetsListOptionalParams extends coreClient.OperationOptions {
|
|
286
|
+
recordsetnamesuffix?: string;
|
|
287
|
+
top?: number;
|
|
288
|
+
}
|
|
289
|
+
|
|
290
|
+
// @public
|
|
291
|
+
export type RecordSetsListResponse = RecordSetListResult;
|
|
292
|
+
|
|
293
|
+
// @public
|
|
294
|
+
export interface RecordSetsUpdateOptionalParams extends coreClient.OperationOptions {
|
|
295
|
+
ifMatch?: string;
|
|
296
|
+
}
|
|
297
|
+
|
|
298
|
+
// @public
|
|
299
|
+
export type RecordSetsUpdateResponse = RecordSet;
|
|
300
|
+
|
|
301
|
+
// @public
|
|
302
|
+
export type RecordType = "A" | "AAAA" | "CNAME" | "MX" | "PTR" | "SOA" | "SRV" | "TXT";
|
|
303
|
+
|
|
304
|
+
// @public
|
|
305
|
+
export type ResolutionPolicy = string;
|
|
306
|
+
|
|
307
|
+
// @public
|
|
308
|
+
export interface Resource {
|
|
309
|
+
readonly id?: string;
|
|
310
|
+
readonly name?: string;
|
|
311
|
+
readonly type?: string;
|
|
312
|
+
}
|
|
313
|
+
|
|
314
|
+
// @public
|
|
315
|
+
export interface SoaRecord {
|
|
316
|
+
email?: string;
|
|
317
|
+
expireTime?: number;
|
|
318
|
+
host?: string;
|
|
319
|
+
minimumTtl?: number;
|
|
320
|
+
refreshTime?: number;
|
|
321
|
+
retryTime?: number;
|
|
322
|
+
serialNumber?: number;
|
|
323
|
+
}
|
|
324
|
+
|
|
325
|
+
// @public
|
|
326
|
+
export interface SrvRecord {
|
|
327
|
+
port?: number;
|
|
328
|
+
priority?: number;
|
|
329
|
+
target?: string;
|
|
330
|
+
weight?: number;
|
|
331
|
+
}
|
|
332
|
+
|
|
333
|
+
// @public
|
|
334
|
+
export interface SubResource {
|
|
335
|
+
id?: string;
|
|
336
|
+
}
|
|
337
|
+
|
|
338
|
+
// @public
|
|
339
|
+
export interface TrackedResource extends Resource {
|
|
340
|
+
location?: string;
|
|
341
|
+
tags?: {
|
|
342
|
+
[propertyName: string]: string;
|
|
343
|
+
};
|
|
344
|
+
}
|
|
345
|
+
|
|
346
|
+
// @public
|
|
347
|
+
export interface TxtRecord {
|
|
348
|
+
value?: string[];
|
|
349
|
+
}
|
|
350
|
+
|
|
351
|
+
// @public
|
|
352
|
+
export interface VirtualNetworkLink extends TrackedResource {
|
|
353
|
+
etag?: string;
|
|
354
|
+
readonly provisioningState?: ProvisioningState;
|
|
355
|
+
registrationEnabled?: boolean;
|
|
356
|
+
resolutionPolicy?: ResolutionPolicy;
|
|
357
|
+
virtualNetwork?: SubResource;
|
|
358
|
+
readonly virtualNetworkLinkState?: VirtualNetworkLinkState;
|
|
359
|
+
}
|
|
360
|
+
|
|
361
|
+
// @public
|
|
362
|
+
export interface VirtualNetworkLinkListResult {
|
|
363
|
+
readonly nextLink?: string;
|
|
364
|
+
value?: VirtualNetworkLink[];
|
|
365
|
+
}
|
|
366
|
+
|
|
367
|
+
// @public
|
|
368
|
+
export interface VirtualNetworkLinks {
|
|
369
|
+
beginCreateOrUpdate(resourceGroupName: string, privateZoneName: string, virtualNetworkLinkName: string, parameters: VirtualNetworkLink, options?: VirtualNetworkLinksCreateOrUpdateOptionalParams): Promise<SimplePollerLike<OperationState<VirtualNetworkLinksCreateOrUpdateResponse>, VirtualNetworkLinksCreateOrUpdateResponse>>;
|
|
370
|
+
beginCreateOrUpdateAndWait(resourceGroupName: string, privateZoneName: string, virtualNetworkLinkName: string, parameters: VirtualNetworkLink, options?: VirtualNetworkLinksCreateOrUpdateOptionalParams): Promise<VirtualNetworkLinksCreateOrUpdateResponse>;
|
|
371
|
+
beginDelete(resourceGroupName: string, privateZoneName: string, virtualNetworkLinkName: string, options?: VirtualNetworkLinksDeleteOptionalParams): Promise<SimplePollerLike<OperationState<void>, void>>;
|
|
372
|
+
beginDeleteAndWait(resourceGroupName: string, privateZoneName: string, virtualNetworkLinkName: string, options?: VirtualNetworkLinksDeleteOptionalParams): Promise<void>;
|
|
373
|
+
beginUpdate(resourceGroupName: string, privateZoneName: string, virtualNetworkLinkName: string, parameters: VirtualNetworkLink, options?: VirtualNetworkLinksUpdateOptionalParams): Promise<SimplePollerLike<OperationState<VirtualNetworkLinksUpdateResponse>, VirtualNetworkLinksUpdateResponse>>;
|
|
374
|
+
beginUpdateAndWait(resourceGroupName: string, privateZoneName: string, virtualNetworkLinkName: string, parameters: VirtualNetworkLink, options?: VirtualNetworkLinksUpdateOptionalParams): Promise<VirtualNetworkLinksUpdateResponse>;
|
|
375
|
+
get(resourceGroupName: string, privateZoneName: string, virtualNetworkLinkName: string, options?: VirtualNetworkLinksGetOptionalParams): Promise<VirtualNetworkLinksGetResponse>;
|
|
376
|
+
list(resourceGroupName: string, privateZoneName: string, options?: VirtualNetworkLinksListOptionalParams): PagedAsyncIterableIterator<VirtualNetworkLink>;
|
|
377
|
+
}
|
|
378
|
+
|
|
379
|
+
// @public
|
|
380
|
+
export interface VirtualNetworkLinksCreateOrUpdateOptionalParams extends coreClient.OperationOptions {
|
|
381
|
+
ifMatch?: string;
|
|
382
|
+
ifNoneMatch?: string;
|
|
383
|
+
resumeFrom?: string;
|
|
384
|
+
updateIntervalInMs?: number;
|
|
385
|
+
}
|
|
386
|
+
|
|
387
|
+
// @public
|
|
388
|
+
export type VirtualNetworkLinksCreateOrUpdateResponse = VirtualNetworkLink;
|
|
389
|
+
|
|
390
|
+
// @public
|
|
391
|
+
export interface VirtualNetworkLinksDeleteOptionalParams extends coreClient.OperationOptions {
|
|
392
|
+
ifMatch?: string;
|
|
393
|
+
resumeFrom?: string;
|
|
394
|
+
updateIntervalInMs?: number;
|
|
395
|
+
}
|
|
396
|
+
|
|
397
|
+
// @public
|
|
398
|
+
export interface VirtualNetworkLinksGetOptionalParams extends coreClient.OperationOptions {
|
|
399
|
+
}
|
|
400
|
+
|
|
401
|
+
// @public
|
|
402
|
+
export type VirtualNetworkLinksGetResponse = VirtualNetworkLink;
|
|
403
|
+
|
|
404
|
+
// @public
|
|
405
|
+
export interface VirtualNetworkLinksListNextOptionalParams extends coreClient.OperationOptions {
|
|
406
|
+
}
|
|
407
|
+
|
|
408
|
+
// @public
|
|
409
|
+
export type VirtualNetworkLinksListNextResponse = VirtualNetworkLinkListResult;
|
|
410
|
+
|
|
411
|
+
// @public
|
|
412
|
+
export interface VirtualNetworkLinksListOptionalParams extends coreClient.OperationOptions {
|
|
413
|
+
top?: number;
|
|
414
|
+
}
|
|
415
|
+
|
|
416
|
+
// @public
|
|
417
|
+
export type VirtualNetworkLinksListResponse = VirtualNetworkLinkListResult;
|
|
418
|
+
|
|
419
|
+
// @public
|
|
420
|
+
export type VirtualNetworkLinkState = string;
|
|
421
|
+
|
|
422
|
+
// @public
|
|
423
|
+
export interface VirtualNetworkLinksUpdateOptionalParams extends coreClient.OperationOptions {
|
|
424
|
+
ifMatch?: string;
|
|
425
|
+
resumeFrom?: string;
|
|
426
|
+
updateIntervalInMs?: number;
|
|
427
|
+
}
|
|
428
|
+
|
|
429
|
+
// @public
|
|
430
|
+
export type VirtualNetworkLinksUpdateResponse = VirtualNetworkLink;
|
|
431
|
+
|
|
432
|
+
// (No @packageDocumentation comment for this package)
|
|
433
|
+
|
|
434
|
+
```
|