@azure/arm-deviceupdate 1.2.1-alpha.20250619.1 → 1.2.1-alpha.20250717.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.
|
@@ -1,795 +1,795 @@
|
|
|
1
|
-
## API Report File for "@azure/arm-deviceupdate"
|
|
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 Account extends TrackedResource {
|
|
15
|
-
encryption?: Encryption;
|
|
16
|
-
readonly hostName?: string;
|
|
17
|
-
identity?: ManagedServiceIdentity;
|
|
18
|
-
readonly locations?: Location[];
|
|
19
|
-
privateEndpointConnections?: PrivateEndpointConnection[];
|
|
20
|
-
readonly provisioningState?: ProvisioningState;
|
|
21
|
-
publicNetworkAccess?: PublicNetworkAccess;
|
|
22
|
-
sku?: Sku;
|
|
23
|
-
}
|
|
24
|
-
|
|
25
|
-
// @public
|
|
26
|
-
export interface AccountList {
|
|
27
|
-
nextLink?: string;
|
|
28
|
-
value?: Account[];
|
|
29
|
-
}
|
|
30
|
-
|
|
31
|
-
// @public
|
|
32
|
-
export interface Accounts {
|
|
33
|
-
beginCreate(resourceGroupName: string, accountName: string, account: Account, options?: AccountsCreateOptionalParams): Promise<SimplePollerLike<OperationState<AccountsCreateResponse>, AccountsCreateResponse>>;
|
|
34
|
-
beginCreateAndWait(resourceGroupName: string, accountName: string, account: Account, options?: AccountsCreateOptionalParams): Promise<AccountsCreateResponse>;
|
|
35
|
-
beginDelete(resourceGroupName: string, accountName: string, options?: AccountsDeleteOptionalParams): Promise<SimplePollerLike<OperationState<void>, void>>;
|
|
36
|
-
beginDeleteAndWait(resourceGroupName: string, accountName: string, options?: AccountsDeleteOptionalParams): Promise<void>;
|
|
37
|
-
beginUpdate(resourceGroupName: string, accountName: string, accountUpdatePayload: AccountUpdate, options?: AccountsUpdateOptionalParams): Promise<SimplePollerLike<OperationState<AccountsUpdateResponse>, AccountsUpdateResponse>>;
|
|
38
|
-
beginUpdateAndWait(resourceGroupName: string, accountName: string, accountUpdatePayload: AccountUpdate, options?: AccountsUpdateOptionalParams): Promise<AccountsUpdateResponse>;
|
|
39
|
-
get(resourceGroupName: string, accountName: string, options?: AccountsGetOptionalParams): Promise<AccountsGetResponse>;
|
|
40
|
-
head(resourceGroupName: string, accountName: string, options?: AccountsHeadOptionalParams): Promise<AccountsHeadResponse>;
|
|
41
|
-
listByResourceGroup(resourceGroupName: string, options?: AccountsListByResourceGroupOptionalParams): PagedAsyncIterableIterator<Account>;
|
|
42
|
-
listBySubscription(options?: AccountsListBySubscriptionOptionalParams): PagedAsyncIterableIterator<Account>;
|
|
43
|
-
}
|
|
44
|
-
|
|
45
|
-
// @public
|
|
46
|
-
export interface AccountsCreateOptionalParams extends coreClient.OperationOptions {
|
|
47
|
-
resumeFrom?: string;
|
|
48
|
-
updateIntervalInMs?: number;
|
|
49
|
-
}
|
|
50
|
-
|
|
51
|
-
// @public
|
|
52
|
-
export type AccountsCreateResponse = Account;
|
|
53
|
-
|
|
54
|
-
// @public
|
|
55
|
-
export interface AccountsDeleteHeaders {
|
|
56
|
-
location?: string;
|
|
57
|
-
}
|
|
58
|
-
|
|
59
|
-
// @public
|
|
60
|
-
export interface AccountsDeleteOptionalParams extends coreClient.OperationOptions {
|
|
61
|
-
resumeFrom?: string;
|
|
62
|
-
updateIntervalInMs?: number;
|
|
63
|
-
}
|
|
64
|
-
|
|
65
|
-
// @public
|
|
66
|
-
export interface AccountsGetOptionalParams extends coreClient.OperationOptions {
|
|
67
|
-
}
|
|
68
|
-
|
|
69
|
-
// @public
|
|
70
|
-
export type AccountsGetResponse = Account;
|
|
71
|
-
|
|
72
|
-
// @public
|
|
73
|
-
export interface AccountsHeadOptionalParams extends coreClient.OperationOptions {
|
|
74
|
-
}
|
|
75
|
-
|
|
76
|
-
// @public
|
|
77
|
-
export type AccountsHeadResponse = {
|
|
78
|
-
body: boolean;
|
|
79
|
-
};
|
|
80
|
-
|
|
81
|
-
// @public
|
|
82
|
-
export interface AccountsListByResourceGroupNextOptionalParams extends coreClient.OperationOptions {
|
|
83
|
-
}
|
|
84
|
-
|
|
85
|
-
// @public
|
|
86
|
-
export type AccountsListByResourceGroupNextResponse = AccountList;
|
|
87
|
-
|
|
88
|
-
// @public
|
|
89
|
-
export interface AccountsListByResourceGroupOptionalParams extends coreClient.OperationOptions {
|
|
90
|
-
}
|
|
91
|
-
|
|
92
|
-
// @public
|
|
93
|
-
export type AccountsListByResourceGroupResponse = AccountList;
|
|
94
|
-
|
|
95
|
-
// @public
|
|
96
|
-
export interface AccountsListBySubscriptionNextOptionalParams extends coreClient.OperationOptions {
|
|
97
|
-
}
|
|
98
|
-
|
|
99
|
-
// @public
|
|
100
|
-
export type AccountsListBySubscriptionNextResponse = AccountList;
|
|
101
|
-
|
|
102
|
-
// @public
|
|
103
|
-
export interface AccountsListBySubscriptionOptionalParams extends coreClient.OperationOptions {
|
|
104
|
-
}
|
|
105
|
-
|
|
106
|
-
// @public
|
|
107
|
-
export type AccountsListBySubscriptionResponse = AccountList;
|
|
108
|
-
|
|
109
|
-
// @public
|
|
110
|
-
export interface AccountsUpdateOptionalParams extends coreClient.OperationOptions {
|
|
111
|
-
resumeFrom?: string;
|
|
112
|
-
updateIntervalInMs?: number;
|
|
113
|
-
}
|
|
114
|
-
|
|
115
|
-
// @public
|
|
116
|
-
export type AccountsUpdateResponse = Account;
|
|
117
|
-
|
|
118
|
-
// @public
|
|
119
|
-
export interface AccountUpdate extends TagUpdate {
|
|
120
|
-
identity?: ManagedServiceIdentity;
|
|
121
|
-
location?: string;
|
|
122
|
-
}
|
|
123
|
-
|
|
124
|
-
// @public
|
|
125
|
-
export type ActionType = string;
|
|
126
|
-
|
|
127
|
-
// @public
|
|
128
|
-
export type AuthenticationType = string;
|
|
129
|
-
|
|
130
|
-
// @public
|
|
131
|
-
export type CheckNameAvailabilityOperationResponse = CheckNameAvailabilityResponse;
|
|
132
|
-
|
|
133
|
-
// @public
|
|
134
|
-
export interface CheckNameAvailabilityOptionalParams extends coreClient.OperationOptions {
|
|
135
|
-
}
|
|
136
|
-
|
|
137
|
-
// @public
|
|
138
|
-
export type CheckNameAvailabilityReason = string;
|
|
139
|
-
|
|
140
|
-
// @public
|
|
141
|
-
export interface CheckNameAvailabilityRequest {
|
|
142
|
-
name?: string;
|
|
143
|
-
type?: string;
|
|
144
|
-
}
|
|
145
|
-
|
|
146
|
-
// @public
|
|
147
|
-
export interface CheckNameAvailabilityResponse {
|
|
148
|
-
message?: string;
|
|
149
|
-
nameAvailable?: boolean;
|
|
150
|
-
reason?: CheckNameAvailabilityReason;
|
|
151
|
-
}
|
|
152
|
-
|
|
153
|
-
// @public
|
|
154
|
-
export interface ConnectionDetails {
|
|
155
|
-
readonly groupId?: string;
|
|
156
|
-
readonly id?: string;
|
|
157
|
-
readonly linkIdentifier?: string;
|
|
158
|
-
readonly memberName?: string;
|
|
159
|
-
readonly privateIpAddress?: string;
|
|
160
|
-
}
|
|
161
|
-
|
|
162
|
-
// @public
|
|
163
|
-
export type CreatedByType = string;
|
|
164
|
-
|
|
165
|
-
// @public (undocumented)
|
|
166
|
-
export class DeviceUpdate extends coreClient.ServiceClient {
|
|
167
|
-
// (undocumented)
|
|
168
|
-
$host: string;
|
|
169
|
-
constructor(credentials: coreAuth.TokenCredential, subscriptionId: string, options?: DeviceUpdateOptionalParams);
|
|
170
|
-
// (undocumented)
|
|
171
|
-
accounts: Accounts;
|
|
172
|
-
// (undocumented)
|
|
173
|
-
apiVersion: string;
|
|
174
|
-
checkNameAvailability(request: CheckNameAvailabilityRequest, options?: CheckNameAvailabilityOptionalParams): Promise<CheckNameAvailabilityOperationResponse>;
|
|
175
|
-
// (undocumented)
|
|
176
|
-
instances: Instances;
|
|
177
|
-
// (undocumented)
|
|
178
|
-
operations: Operations;
|
|
179
|
-
// (undocumented)
|
|
180
|
-
privateEndpointConnectionProxies: PrivateEndpointConnectionProxies;
|
|
181
|
-
// (undocumented)
|
|
182
|
-
privateEndpointConnections: PrivateEndpointConnections;
|
|
183
|
-
// (undocumented)
|
|
184
|
-
privateLinkResources: PrivateLinkResources;
|
|
185
|
-
// (undocumented)
|
|
186
|
-
subscriptionId: string;
|
|
187
|
-
}
|
|
188
|
-
|
|
189
|
-
// @public
|
|
190
|
-
export interface DeviceUpdateOptionalParams extends coreClient.ServiceClientOptions {
|
|
191
|
-
$host?: string;
|
|
192
|
-
apiVersion?: string;
|
|
193
|
-
endpoint?: string;
|
|
194
|
-
}
|
|
195
|
-
|
|
196
|
-
// @public
|
|
197
|
-
export interface DiagnosticStorageProperties {
|
|
198
|
-
authenticationType: AuthenticationType;
|
|
199
|
-
connectionString?: string;
|
|
200
|
-
resourceId: string;
|
|
201
|
-
}
|
|
202
|
-
|
|
203
|
-
// @public
|
|
204
|
-
export interface Encryption {
|
|
205
|
-
keyVaultKeyUri?: string;
|
|
206
|
-
userAssignedIdentity?: string;
|
|
207
|
-
}
|
|
208
|
-
|
|
209
|
-
// @public
|
|
210
|
-
export interface ErrorAdditionalInfo {
|
|
211
|
-
readonly info?: Record<string, unknown>;
|
|
212
|
-
readonly type?: string;
|
|
213
|
-
}
|
|
214
|
-
|
|
215
|
-
// @public
|
|
216
|
-
export interface ErrorDetail {
|
|
217
|
-
readonly additionalInfo?: ErrorAdditionalInfo[];
|
|
218
|
-
readonly code?: string;
|
|
219
|
-
readonly details?: ErrorDetail[];
|
|
220
|
-
readonly message?: string;
|
|
221
|
-
readonly target?: string;
|
|
222
|
-
}
|
|
223
|
-
|
|
224
|
-
// @public
|
|
225
|
-
export interface ErrorResponse {
|
|
226
|
-
error?: ErrorDetail;
|
|
227
|
-
}
|
|
228
|
-
|
|
229
|
-
// @public
|
|
230
|
-
export function getContinuationToken(page: unknown): string | undefined;
|
|
231
|
-
|
|
232
|
-
// @public
|
|
233
|
-
export interface GroupConnectivityInformation {
|
|
234
|
-
customerVisibleFqdns?: string[];
|
|
235
|
-
readonly groupId?: string;
|
|
236
|
-
readonly internalFqdn?: string;
|
|
237
|
-
readonly memberName?: string;
|
|
238
|
-
privateLinkServiceArmRegion?: string;
|
|
239
|
-
redirectMapId?: string;
|
|
240
|
-
}
|
|
241
|
-
|
|
242
|
-
// @public
|
|
243
|
-
export type GroupIdProvisioningState = string;
|
|
244
|
-
|
|
245
|
-
// @public
|
|
246
|
-
export interface GroupInformation extends ProxyResource {
|
|
247
|
-
readonly groupId?: string;
|
|
248
|
-
readonly provisioningState?: GroupIdProvisioningState;
|
|
249
|
-
readonly requiredMembers?: string[];
|
|
250
|
-
requiredZoneNames?: string[];
|
|
251
|
-
}
|
|
252
|
-
|
|
253
|
-
// @public
|
|
254
|
-
export interface GroupInformationProperties extends PrivateLinkResourceProperties {
|
|
255
|
-
readonly provisioningState?: GroupIdProvisioningState;
|
|
256
|
-
}
|
|
257
|
-
|
|
258
|
-
// @public
|
|
259
|
-
export interface Instance extends TrackedResource {
|
|
260
|
-
readonly accountName?: string;
|
|
261
|
-
diagnosticStorageProperties?: DiagnosticStorageProperties;
|
|
262
|
-
enableDiagnostics?: boolean;
|
|
263
|
-
iotHubs?: IotHubSettings[];
|
|
264
|
-
readonly provisioningState?: ProvisioningState;
|
|
265
|
-
}
|
|
266
|
-
|
|
267
|
-
// @public
|
|
268
|
-
export interface InstanceList {
|
|
269
|
-
nextLink?: string;
|
|
270
|
-
value?: Instance[];
|
|
271
|
-
}
|
|
272
|
-
|
|
273
|
-
// @public
|
|
274
|
-
export interface Instances {
|
|
275
|
-
beginCreate(resourceGroupName: string, accountName: string, instanceName: string, instance: Instance, options?: InstancesCreateOptionalParams): Promise<SimplePollerLike<OperationState<InstancesCreateResponse>, InstancesCreateResponse>>;
|
|
276
|
-
beginCreateAndWait(resourceGroupName: string, accountName: string, instanceName: string, instance: Instance, options?: InstancesCreateOptionalParams): Promise<InstancesCreateResponse>;
|
|
277
|
-
beginDelete(resourceGroupName: string, accountName: string, instanceName: string, options?: InstancesDeleteOptionalParams): Promise<SimplePollerLike<OperationState<void>, void>>;
|
|
278
|
-
beginDeleteAndWait(resourceGroupName: string, accountName: string, instanceName: string, options?: InstancesDeleteOptionalParams): Promise<void>;
|
|
279
|
-
get(resourceGroupName: string, accountName: string, instanceName: string, options?: InstancesGetOptionalParams): Promise<InstancesGetResponse>;
|
|
280
|
-
head(resourceGroupName: string, accountName: string, instanceName: string, options?: InstancesHeadOptionalParams): Promise<InstancesHeadResponse>;
|
|
281
|
-
listByAccount(resourceGroupName: string, accountName: string, options?: InstancesListByAccountOptionalParams): PagedAsyncIterableIterator<Instance>;
|
|
282
|
-
update(resourceGroupName: string, accountName: string, instanceName: string, tagUpdatePayload: TagUpdate, options?: InstancesUpdateOptionalParams): Promise<InstancesUpdateResponse>;
|
|
283
|
-
}
|
|
284
|
-
|
|
285
|
-
// @public
|
|
286
|
-
export interface InstancesCreateOptionalParams extends coreClient.OperationOptions {
|
|
287
|
-
resumeFrom?: string;
|
|
288
|
-
updateIntervalInMs?: number;
|
|
289
|
-
}
|
|
290
|
-
|
|
291
|
-
// @public
|
|
292
|
-
export type InstancesCreateResponse = Instance;
|
|
293
|
-
|
|
294
|
-
// @public
|
|
295
|
-
export interface InstancesDeleteHeaders {
|
|
296
|
-
location?: string;
|
|
297
|
-
}
|
|
298
|
-
|
|
299
|
-
// @public
|
|
300
|
-
export interface InstancesDeleteOptionalParams extends coreClient.OperationOptions {
|
|
301
|
-
resumeFrom?: string;
|
|
302
|
-
updateIntervalInMs?: number;
|
|
303
|
-
}
|
|
304
|
-
|
|
305
|
-
// @public
|
|
306
|
-
export interface InstancesGetOptionalParams extends coreClient.OperationOptions {
|
|
307
|
-
}
|
|
308
|
-
|
|
309
|
-
// @public
|
|
310
|
-
export type InstancesGetResponse = Instance;
|
|
311
|
-
|
|
312
|
-
// @public
|
|
313
|
-
export interface InstancesHeadOptionalParams extends coreClient.OperationOptions {
|
|
314
|
-
}
|
|
315
|
-
|
|
316
|
-
// @public
|
|
317
|
-
export type InstancesHeadResponse = {
|
|
318
|
-
body: boolean;
|
|
319
|
-
};
|
|
320
|
-
|
|
321
|
-
// @public
|
|
322
|
-
export interface InstancesListByAccountNextOptionalParams extends coreClient.OperationOptions {
|
|
323
|
-
}
|
|
324
|
-
|
|
325
|
-
// @public
|
|
326
|
-
export type InstancesListByAccountNextResponse = InstanceList;
|
|
327
|
-
|
|
328
|
-
// @public
|
|
329
|
-
export interface InstancesListByAccountOptionalParams extends coreClient.OperationOptions {
|
|
330
|
-
}
|
|
331
|
-
|
|
332
|
-
// @public
|
|
333
|
-
export type InstancesListByAccountResponse = InstanceList;
|
|
334
|
-
|
|
335
|
-
// @public
|
|
336
|
-
export interface InstancesUpdateOptionalParams extends coreClient.OperationOptions {
|
|
337
|
-
}
|
|
338
|
-
|
|
339
|
-
// @public
|
|
340
|
-
export type InstancesUpdateResponse = Instance;
|
|
341
|
-
|
|
342
|
-
// @public
|
|
343
|
-
export interface IotHubSettings {
|
|
344
|
-
resourceId: string;
|
|
345
|
-
}
|
|
346
|
-
|
|
347
|
-
// @public
|
|
348
|
-
export enum KnownActionType {
|
|
349
|
-
Internal = "Internal"
|
|
350
|
-
}
|
|
351
|
-
|
|
352
|
-
// @public
|
|
353
|
-
export enum KnownAuthenticationType {
|
|
354
|
-
KeyBased = "KeyBased"
|
|
355
|
-
}
|
|
356
|
-
|
|
357
|
-
// @public
|
|
358
|
-
export enum KnownCheckNameAvailabilityReason {
|
|
359
|
-
AlreadyExists = "AlreadyExists",
|
|
360
|
-
Invalid = "Invalid"
|
|
361
|
-
}
|
|
362
|
-
|
|
363
|
-
// @public
|
|
364
|
-
export enum KnownCreatedByType {
|
|
365
|
-
Application = "Application",
|
|
366
|
-
Key = "Key",
|
|
367
|
-
ManagedIdentity = "ManagedIdentity",
|
|
368
|
-
User = "User"
|
|
369
|
-
}
|
|
370
|
-
|
|
371
|
-
// @public
|
|
372
|
-
export enum KnownGroupIdProvisioningState {
|
|
373
|
-
Canceled = "Canceled",
|
|
374
|
-
Failed = "Failed",
|
|
375
|
-
Succeeded = "Succeeded"
|
|
376
|
-
}
|
|
377
|
-
|
|
378
|
-
// @public
|
|
379
|
-
export enum KnownManagedServiceIdentityType {
|
|
380
|
-
None = "None",
|
|
381
|
-
SystemAssigned = "SystemAssigned",
|
|
382
|
-
SystemAssignedUserAssigned = "SystemAssigned,UserAssigned",
|
|
383
|
-
UserAssigned = "UserAssigned"
|
|
384
|
-
}
|
|
385
|
-
|
|
386
|
-
// @public
|
|
387
|
-
export enum KnownOrigin {
|
|
388
|
-
System = "system",
|
|
389
|
-
User = "user",
|
|
390
|
-
UserSystem = "user,system"
|
|
391
|
-
}
|
|
392
|
-
|
|
393
|
-
// @public
|
|
394
|
-
export enum KnownPrivateEndpointConnectionProvisioningState {
|
|
395
|
-
Creating = "Creating",
|
|
396
|
-
Deleting = "Deleting",
|
|
397
|
-
Failed = "Failed",
|
|
398
|
-
Succeeded = "Succeeded"
|
|
399
|
-
}
|
|
400
|
-
|
|
401
|
-
// @public
|
|
402
|
-
export enum KnownPrivateEndpointConnectionProxyProvisioningState {
|
|
403
|
-
Creating = "Creating",
|
|
404
|
-
Deleting = "Deleting",
|
|
405
|
-
Failed = "Failed",
|
|
406
|
-
Succeeded = "Succeeded"
|
|
407
|
-
}
|
|
408
|
-
|
|
409
|
-
// @public
|
|
410
|
-
export enum KnownPrivateEndpointServiceConnectionStatus {
|
|
411
|
-
Approved = "Approved",
|
|
412
|
-
Pending = "Pending",
|
|
413
|
-
Rejected = "Rejected"
|
|
414
|
-
}
|
|
415
|
-
|
|
416
|
-
// @public
|
|
417
|
-
export enum KnownProvisioningState {
|
|
418
|
-
Accepted = "Accepted",
|
|
419
|
-
Canceled = "Canceled",
|
|
420
|
-
Creating = "Creating",
|
|
421
|
-
Deleted = "Deleted",
|
|
422
|
-
Failed = "Failed",
|
|
423
|
-
Succeeded = "Succeeded"
|
|
424
|
-
}
|
|
425
|
-
|
|
426
|
-
// @public
|
|
427
|
-
export enum KnownPublicNetworkAccess {
|
|
428
|
-
Disabled = "Disabled",
|
|
429
|
-
Enabled = "Enabled"
|
|
430
|
-
}
|
|
431
|
-
|
|
432
|
-
// @public
|
|
433
|
-
export enum KnownRole {
|
|
434
|
-
Failover = "Failover",
|
|
435
|
-
Primary = "Primary"
|
|
436
|
-
}
|
|
437
|
-
|
|
438
|
-
// @public
|
|
439
|
-
export enum KnownSku {
|
|
440
|
-
Free = "Free",
|
|
441
|
-
Standard = "Standard"
|
|
442
|
-
}
|
|
443
|
-
|
|
444
|
-
// @public (undocumented)
|
|
445
|
-
export interface Location {
|
|
446
|
-
// (undocumented)
|
|
447
|
-
name?: string;
|
|
448
|
-
role?: Role;
|
|
449
|
-
}
|
|
450
|
-
|
|
451
|
-
// @public
|
|
452
|
-
export interface ManagedServiceIdentity {
|
|
453
|
-
readonly principalId?: string;
|
|
454
|
-
readonly tenantId?: string;
|
|
455
|
-
type: ManagedServiceIdentityType;
|
|
456
|
-
userAssignedIdentities?: {
|
|
457
|
-
[propertyName: string]: UserAssignedIdentity;
|
|
458
|
-
};
|
|
459
|
-
}
|
|
460
|
-
|
|
461
|
-
// @public
|
|
462
|
-
export type ManagedServiceIdentityType = string;
|
|
463
|
-
|
|
464
|
-
// @public
|
|
465
|
-
export interface Operation {
|
|
466
|
-
readonly actionType?: ActionType;
|
|
467
|
-
display?: OperationDisplay;
|
|
468
|
-
readonly isDataAction?: boolean;
|
|
469
|
-
readonly name?: string;
|
|
470
|
-
readonly origin?: Origin;
|
|
471
|
-
}
|
|
472
|
-
|
|
473
|
-
// @public
|
|
474
|
-
export interface OperationDisplay {
|
|
475
|
-
readonly description?: string;
|
|
476
|
-
readonly operation?: string;
|
|
477
|
-
readonly provider?: string;
|
|
478
|
-
readonly resource?: string;
|
|
479
|
-
}
|
|
480
|
-
|
|
481
|
-
// @public
|
|
482
|
-
export interface OperationListResult {
|
|
483
|
-
readonly nextLink?: string;
|
|
484
|
-
readonly value?: Operation[];
|
|
485
|
-
}
|
|
486
|
-
|
|
487
|
-
// @public
|
|
488
|
-
export interface Operations {
|
|
489
|
-
list(options?: OperationsListOptionalParams): PagedAsyncIterableIterator<Operation>;
|
|
490
|
-
}
|
|
491
|
-
|
|
492
|
-
// @public
|
|
493
|
-
export interface OperationsListNextOptionalParams extends coreClient.OperationOptions {
|
|
494
|
-
}
|
|
495
|
-
|
|
496
|
-
// @public
|
|
497
|
-
export type OperationsListNextResponse = OperationListResult;
|
|
498
|
-
|
|
499
|
-
// @public
|
|
500
|
-
export interface OperationsListOptionalParams extends coreClient.OperationOptions {
|
|
501
|
-
}
|
|
502
|
-
|
|
503
|
-
// @public
|
|
504
|
-
export type OperationsListResponse = OperationListResult;
|
|
505
|
-
|
|
506
|
-
// @public
|
|
507
|
-
export type Origin = string;
|
|
508
|
-
|
|
509
|
-
// @public
|
|
510
|
-
export interface PrivateEndpoint {
|
|
511
|
-
readonly id?: string;
|
|
512
|
-
}
|
|
513
|
-
|
|
514
|
-
// @public
|
|
515
|
-
export interface PrivateEndpointConnection extends Resource {
|
|
516
|
-
groupIds?: string[];
|
|
517
|
-
privateEndpoint?: PrivateEndpoint;
|
|
518
|
-
privateLinkServiceConnectionState: PrivateLinkServiceConnectionState;
|
|
519
|
-
readonly provisioningState?: PrivateEndpointConnectionProvisioningState;
|
|
520
|
-
}
|
|
521
|
-
|
|
522
|
-
// @public
|
|
523
|
-
export interface PrivateEndpointConnectionListResult {
|
|
524
|
-
value?: PrivateEndpointConnection[];
|
|
525
|
-
}
|
|
526
|
-
|
|
527
|
-
// @public
|
|
528
|
-
export type PrivateEndpointConnectionProvisioningState = string;
|
|
529
|
-
|
|
530
|
-
// @public
|
|
531
|
-
export interface PrivateEndpointConnectionProxies {
|
|
532
|
-
beginCreateOrUpdate(resourceGroupName: string, accountName: string, privateEndpointConnectionProxyId: string, privateEndpointConnectionProxy: PrivateEndpointConnectionProxy, options?: PrivateEndpointConnectionProxiesCreateOrUpdateOptionalParams): Promise<SimplePollerLike<OperationState<PrivateEndpointConnectionProxiesCreateOrUpdateResponse>, PrivateEndpointConnectionProxiesCreateOrUpdateResponse>>;
|
|
533
|
-
beginCreateOrUpdateAndWait(resourceGroupName: string, accountName: string, privateEndpointConnectionProxyId: string, privateEndpointConnectionProxy: PrivateEndpointConnectionProxy, options?: PrivateEndpointConnectionProxiesCreateOrUpdateOptionalParams): Promise<PrivateEndpointConnectionProxiesCreateOrUpdateResponse>;
|
|
534
|
-
beginDelete(resourceGroupName: string, accountName: string, privateEndpointConnectionProxyId: string, options?: PrivateEndpointConnectionProxiesDeleteOptionalParams): Promise<SimplePollerLike<OperationState<void>, void>>;
|
|
535
|
-
beginDeleteAndWait(resourceGroupName: string, accountName: string, privateEndpointConnectionProxyId: string, options?: PrivateEndpointConnectionProxiesDeleteOptionalParams): Promise<void>;
|
|
536
|
-
get(resourceGroupName: string, accountName: string, privateEndpointConnectionProxyId: string, options?: PrivateEndpointConnectionProxiesGetOptionalParams): Promise<PrivateEndpointConnectionProxiesGetResponse>;
|
|
537
|
-
listByAccount(resourceGroupName: string, accountName: string, options?: PrivateEndpointConnectionProxiesListByAccountOptionalParams): PagedAsyncIterableIterator<PrivateEndpointConnectionProxy>;
|
|
538
|
-
updatePrivateEndpointProperties(resourceGroupName: string, accountName: string, privateEndpointConnectionProxyId: string, privateEndpointUpdate: PrivateEndpointUpdate, options?: PrivateEndpointConnectionProxiesUpdatePrivateEndpointPropertiesOptionalParams): Promise<void>;
|
|
539
|
-
validate(resourceGroupName: string, accountName: string, privateEndpointConnectionProxyId: string, privateEndpointConnectionProxy: PrivateEndpointConnectionProxy, options?: PrivateEndpointConnectionProxiesValidateOptionalParams): Promise<void>;
|
|
540
|
-
}
|
|
541
|
-
|
|
542
|
-
// @public
|
|
543
|
-
export interface PrivateEndpointConnectionProxiesCreateOrUpdateOptionalParams extends coreClient.OperationOptions {
|
|
544
|
-
resumeFrom?: string;
|
|
545
|
-
updateIntervalInMs?: number;
|
|
546
|
-
}
|
|
547
|
-
|
|
548
|
-
// @public
|
|
549
|
-
export type PrivateEndpointConnectionProxiesCreateOrUpdateResponse = PrivateEndpointConnectionProxy;
|
|
550
|
-
|
|
551
|
-
// @public
|
|
552
|
-
export interface PrivateEndpointConnectionProxiesDeleteHeaders {
|
|
553
|
-
location?: string;
|
|
554
|
-
}
|
|
555
|
-
|
|
556
|
-
// @public
|
|
557
|
-
export interface PrivateEndpointConnectionProxiesDeleteOptionalParams extends coreClient.OperationOptions {
|
|
558
|
-
resumeFrom?: string;
|
|
559
|
-
updateIntervalInMs?: number;
|
|
560
|
-
}
|
|
561
|
-
|
|
562
|
-
// @public
|
|
563
|
-
export interface PrivateEndpointConnectionProxiesGetOptionalParams extends coreClient.OperationOptions {
|
|
564
|
-
}
|
|
565
|
-
|
|
566
|
-
// @public
|
|
567
|
-
export type PrivateEndpointConnectionProxiesGetResponse = PrivateEndpointConnectionProxy;
|
|
568
|
-
|
|
569
|
-
// @public
|
|
570
|
-
export interface PrivateEndpointConnectionProxiesListByAccountOptionalParams extends coreClient.OperationOptions {
|
|
571
|
-
}
|
|
572
|
-
|
|
573
|
-
// @public
|
|
574
|
-
export type PrivateEndpointConnectionProxiesListByAccountResponse = PrivateEndpointConnectionProxyListResult;
|
|
575
|
-
|
|
576
|
-
// @public
|
|
577
|
-
export interface PrivateEndpointConnectionProxiesUpdatePrivateEndpointPropertiesOptionalParams extends coreClient.OperationOptions {
|
|
578
|
-
}
|
|
579
|
-
|
|
580
|
-
// @public
|
|
581
|
-
export interface PrivateEndpointConnectionProxiesValidateOptionalParams extends coreClient.OperationOptions {
|
|
582
|
-
}
|
|
583
|
-
|
|
584
|
-
// @public
|
|
585
|
-
export interface PrivateEndpointConnectionProxy extends ProxyResource, PrivateEndpointConnectionProxyProperties {
|
|
586
|
-
readonly provisioningState?: PrivateEndpointConnectionProxyProvisioningState;
|
|
587
|
-
}
|
|
588
|
-
|
|
589
|
-
// @public
|
|
590
|
-
export interface PrivateEndpointConnectionProxyListResult {
|
|
591
|
-
nextLink?: string;
|
|
592
|
-
value?: PrivateEndpointConnectionProxy[];
|
|
593
|
-
}
|
|
594
|
-
|
|
595
|
-
// @public
|
|
596
|
-
export interface PrivateEndpointConnectionProxyProperties {
|
|
597
|
-
readonly eTag?: string;
|
|
598
|
-
remotePrivateEndpoint?: RemotePrivateEndpoint;
|
|
599
|
-
status?: string;
|
|
600
|
-
}
|
|
601
|
-
|
|
602
|
-
// @public
|
|
603
|
-
export type PrivateEndpointConnectionProxyProvisioningState = string;
|
|
604
|
-
|
|
605
|
-
// @public
|
|
606
|
-
export interface PrivateEndpointConnections {
|
|
607
|
-
beginCreateOrUpdate(resourceGroupName: string, accountName: string, privateEndpointConnectionName: string, privateEndpointConnection: PrivateEndpointConnection, options?: PrivateEndpointConnectionsCreateOrUpdateOptionalParams): Promise<SimplePollerLike<OperationState<PrivateEndpointConnectionsCreateOrUpdateResponse>, PrivateEndpointConnectionsCreateOrUpdateResponse>>;
|
|
608
|
-
beginCreateOrUpdateAndWait(resourceGroupName: string, accountName: string, privateEndpointConnectionName: string, privateEndpointConnection: PrivateEndpointConnection, options?: PrivateEndpointConnectionsCreateOrUpdateOptionalParams): Promise<PrivateEndpointConnectionsCreateOrUpdateResponse>;
|
|
609
|
-
beginDelete(resourceGroupName: string, accountName: string, privateEndpointConnectionName: string, options?: PrivateEndpointConnectionsDeleteOptionalParams): Promise<SimplePollerLike<OperationState<void>, void>>;
|
|
610
|
-
beginDeleteAndWait(resourceGroupName: string, accountName: string, privateEndpointConnectionName: string, options?: PrivateEndpointConnectionsDeleteOptionalParams): Promise<void>;
|
|
611
|
-
get(resourceGroupName: string, accountName: string, privateEndpointConnectionName: string, options?: PrivateEndpointConnectionsGetOptionalParams): Promise<PrivateEndpointConnectionsGetResponse>;
|
|
612
|
-
listByAccount(resourceGroupName: string, accountName: string, options?: PrivateEndpointConnectionsListByAccountOptionalParams): PagedAsyncIterableIterator<PrivateEndpointConnection>;
|
|
613
|
-
}
|
|
614
|
-
|
|
615
|
-
// @public
|
|
616
|
-
export interface PrivateEndpointConnectionsCreateOrUpdateOptionalParams extends coreClient.OperationOptions {
|
|
617
|
-
resumeFrom?: string;
|
|
618
|
-
updateIntervalInMs?: number;
|
|
619
|
-
}
|
|
620
|
-
|
|
621
|
-
// @public
|
|
622
|
-
export type PrivateEndpointConnectionsCreateOrUpdateResponse = PrivateEndpointConnection;
|
|
623
|
-
|
|
624
|
-
// @public
|
|
625
|
-
export interface PrivateEndpointConnectionsDeleteHeaders {
|
|
626
|
-
location?: string;
|
|
627
|
-
}
|
|
628
|
-
|
|
629
|
-
// @public
|
|
630
|
-
export interface PrivateEndpointConnectionsDeleteOptionalParams extends coreClient.OperationOptions {
|
|
631
|
-
resumeFrom?: string;
|
|
632
|
-
updateIntervalInMs?: number;
|
|
633
|
-
}
|
|
634
|
-
|
|
635
|
-
// @public
|
|
636
|
-
export interface PrivateEndpointConnectionsGetOptionalParams extends coreClient.OperationOptions {
|
|
637
|
-
}
|
|
638
|
-
|
|
639
|
-
// @public
|
|
640
|
-
export type PrivateEndpointConnectionsGetResponse = PrivateEndpointConnection;
|
|
641
|
-
|
|
642
|
-
// @public
|
|
643
|
-
export interface PrivateEndpointConnectionsListByAccountOptionalParams extends coreClient.OperationOptions {
|
|
644
|
-
}
|
|
645
|
-
|
|
646
|
-
// @public
|
|
647
|
-
export type PrivateEndpointConnectionsListByAccountResponse = PrivateEndpointConnectionListResult;
|
|
648
|
-
|
|
649
|
-
// @public
|
|
650
|
-
export type PrivateEndpointServiceConnectionStatus = string;
|
|
651
|
-
|
|
652
|
-
// @public
|
|
653
|
-
export interface PrivateEndpointUpdate {
|
|
654
|
-
id?: string;
|
|
655
|
-
immutableResourceId?: string;
|
|
656
|
-
immutableSubscriptionId?: string;
|
|
657
|
-
location?: string;
|
|
658
|
-
vnetTrafficTag?: string;
|
|
659
|
-
}
|
|
660
|
-
|
|
661
|
-
// @public
|
|
662
|
-
export interface PrivateLinkResourceListResult {
|
|
663
|
-
nextLink?: string;
|
|
664
|
-
value?: GroupInformation[];
|
|
665
|
-
}
|
|
666
|
-
|
|
667
|
-
// @public
|
|
668
|
-
export interface PrivateLinkResourceProperties {
|
|
669
|
-
readonly groupId?: string;
|
|
670
|
-
readonly requiredMembers?: string[];
|
|
671
|
-
requiredZoneNames?: string[];
|
|
672
|
-
}
|
|
673
|
-
|
|
674
|
-
// @public
|
|
675
|
-
export interface PrivateLinkResources {
|
|
676
|
-
get(resourceGroupName: string, accountName: string, groupId: string, options?: PrivateLinkResourcesGetOptionalParams): Promise<PrivateLinkResourcesGetResponse>;
|
|
677
|
-
listByAccount(resourceGroupName: string, accountName: string, options?: PrivateLinkResourcesListByAccountOptionalParams): PagedAsyncIterableIterator<GroupInformation>;
|
|
678
|
-
}
|
|
679
|
-
|
|
680
|
-
// @public
|
|
681
|
-
export interface PrivateLinkResourcesGetOptionalParams extends coreClient.OperationOptions {
|
|
682
|
-
}
|
|
683
|
-
|
|
684
|
-
// @public
|
|
685
|
-
export type PrivateLinkResourcesGetResponse = GroupInformation;
|
|
686
|
-
|
|
687
|
-
// @public
|
|
688
|
-
export interface PrivateLinkResourcesListByAccountOptionalParams extends coreClient.OperationOptions {
|
|
689
|
-
}
|
|
690
|
-
|
|
691
|
-
// @public
|
|
692
|
-
export type PrivateLinkResourcesListByAccountResponse = PrivateLinkResourceListResult;
|
|
693
|
-
|
|
694
|
-
// @public
|
|
695
|
-
export interface PrivateLinkServiceConnection {
|
|
696
|
-
groupIds?: string[];
|
|
697
|
-
name?: string;
|
|
698
|
-
requestMessage?: string;
|
|
699
|
-
}
|
|
700
|
-
|
|
701
|
-
// @public
|
|
702
|
-
export interface PrivateLinkServiceConnectionState {
|
|
703
|
-
actionsRequired?: string;
|
|
704
|
-
description?: string;
|
|
705
|
-
status?: PrivateEndpointServiceConnectionStatus;
|
|
706
|
-
}
|
|
707
|
-
|
|
708
|
-
// @public
|
|
709
|
-
export interface PrivateLinkServiceProxy {
|
|
710
|
-
groupConnectivityInformation?: GroupConnectivityInformation[];
|
|
711
|
-
id?: string;
|
|
712
|
-
remotePrivateEndpointConnection?: PrivateLinkServiceProxyRemotePrivateEndpointConnection;
|
|
713
|
-
remotePrivateLinkServiceConnectionState?: PrivateLinkServiceConnectionState;
|
|
714
|
-
}
|
|
715
|
-
|
|
716
|
-
// @public
|
|
717
|
-
export interface PrivateLinkServiceProxyRemotePrivateEndpointConnection extends RemotePrivateEndpointConnection {
|
|
718
|
-
}
|
|
719
|
-
|
|
720
|
-
// @public
|
|
721
|
-
export type ProvisioningState = string;
|
|
722
|
-
|
|
723
|
-
// @public
|
|
724
|
-
export interface ProxyResource extends Resource {
|
|
725
|
-
}
|
|
726
|
-
|
|
727
|
-
// @public
|
|
728
|
-
export type PublicNetworkAccess = string;
|
|
729
|
-
|
|
730
|
-
// @public
|
|
731
|
-
export interface RemotePrivateEndpoint {
|
|
732
|
-
connectionDetails?: ConnectionDetails[];
|
|
733
|
-
id?: string;
|
|
734
|
-
immutableResourceId?: string;
|
|
735
|
-
immutableSubscriptionId?: string;
|
|
736
|
-
location?: string;
|
|
737
|
-
manualPrivateLinkServiceConnections?: PrivateLinkServiceConnection[];
|
|
738
|
-
privateLinkServiceConnections?: PrivateLinkServiceConnection[];
|
|
739
|
-
privateLinkServiceProxies?: PrivateLinkServiceProxy[];
|
|
740
|
-
vnetTrafficTag?: string;
|
|
741
|
-
}
|
|
742
|
-
|
|
743
|
-
// @public
|
|
744
|
-
export interface RemotePrivateEndpointConnection {
|
|
745
|
-
readonly id?: string;
|
|
746
|
-
}
|
|
747
|
-
|
|
748
|
-
// @public
|
|
749
|
-
export interface Resource {
|
|
750
|
-
readonly id?: string;
|
|
751
|
-
readonly name?: string;
|
|
752
|
-
readonly systemData?: SystemData;
|
|
753
|
-
readonly type?: string;
|
|
754
|
-
}
|
|
755
|
-
|
|
756
|
-
// @public
|
|
757
|
-
export type Role = string;
|
|
758
|
-
|
|
759
|
-
// @public
|
|
760
|
-
export type Sku = string;
|
|
761
|
-
|
|
762
|
-
// @public
|
|
763
|
-
export interface SystemData {
|
|
764
|
-
createdAt?: Date;
|
|
765
|
-
createdBy?: string;
|
|
766
|
-
createdByType?: CreatedByType;
|
|
767
|
-
lastModifiedAt?: Date;
|
|
768
|
-
lastModifiedBy?: string;
|
|
769
|
-
lastModifiedByType?: CreatedByType;
|
|
770
|
-
}
|
|
771
|
-
|
|
772
|
-
// @public
|
|
773
|
-
export interface TagUpdate {
|
|
774
|
-
tags?: {
|
|
775
|
-
[propertyName: string]: string;
|
|
776
|
-
};
|
|
777
|
-
}
|
|
778
|
-
|
|
779
|
-
// @public
|
|
780
|
-
export interface TrackedResource extends Resource {
|
|
781
|
-
location: string;
|
|
782
|
-
tags?: {
|
|
783
|
-
[propertyName: string]: string;
|
|
784
|
-
};
|
|
785
|
-
}
|
|
786
|
-
|
|
787
|
-
// @public
|
|
788
|
-
export interface UserAssignedIdentity {
|
|
789
|
-
readonly clientId?: string;
|
|
790
|
-
readonly principalId?: string;
|
|
791
|
-
}
|
|
792
|
-
|
|
793
|
-
// (No @packageDocumentation comment for this package)
|
|
794
|
-
|
|
795
|
-
```
|
|
1
|
+
## API Report File for "@azure/arm-deviceupdate"
|
|
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 Account extends TrackedResource {
|
|
15
|
+
encryption?: Encryption;
|
|
16
|
+
readonly hostName?: string;
|
|
17
|
+
identity?: ManagedServiceIdentity;
|
|
18
|
+
readonly locations?: Location[];
|
|
19
|
+
privateEndpointConnections?: PrivateEndpointConnection[];
|
|
20
|
+
readonly provisioningState?: ProvisioningState;
|
|
21
|
+
publicNetworkAccess?: PublicNetworkAccess;
|
|
22
|
+
sku?: Sku;
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
// @public
|
|
26
|
+
export interface AccountList {
|
|
27
|
+
nextLink?: string;
|
|
28
|
+
value?: Account[];
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
// @public
|
|
32
|
+
export interface Accounts {
|
|
33
|
+
beginCreate(resourceGroupName: string, accountName: string, account: Account, options?: AccountsCreateOptionalParams): Promise<SimplePollerLike<OperationState<AccountsCreateResponse>, AccountsCreateResponse>>;
|
|
34
|
+
beginCreateAndWait(resourceGroupName: string, accountName: string, account: Account, options?: AccountsCreateOptionalParams): Promise<AccountsCreateResponse>;
|
|
35
|
+
beginDelete(resourceGroupName: string, accountName: string, options?: AccountsDeleteOptionalParams): Promise<SimplePollerLike<OperationState<void>, void>>;
|
|
36
|
+
beginDeleteAndWait(resourceGroupName: string, accountName: string, options?: AccountsDeleteOptionalParams): Promise<void>;
|
|
37
|
+
beginUpdate(resourceGroupName: string, accountName: string, accountUpdatePayload: AccountUpdate, options?: AccountsUpdateOptionalParams): Promise<SimplePollerLike<OperationState<AccountsUpdateResponse>, AccountsUpdateResponse>>;
|
|
38
|
+
beginUpdateAndWait(resourceGroupName: string, accountName: string, accountUpdatePayload: AccountUpdate, options?: AccountsUpdateOptionalParams): Promise<AccountsUpdateResponse>;
|
|
39
|
+
get(resourceGroupName: string, accountName: string, options?: AccountsGetOptionalParams): Promise<AccountsGetResponse>;
|
|
40
|
+
head(resourceGroupName: string, accountName: string, options?: AccountsHeadOptionalParams): Promise<AccountsHeadResponse>;
|
|
41
|
+
listByResourceGroup(resourceGroupName: string, options?: AccountsListByResourceGroupOptionalParams): PagedAsyncIterableIterator<Account>;
|
|
42
|
+
listBySubscription(options?: AccountsListBySubscriptionOptionalParams): PagedAsyncIterableIterator<Account>;
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
// @public
|
|
46
|
+
export interface AccountsCreateOptionalParams extends coreClient.OperationOptions {
|
|
47
|
+
resumeFrom?: string;
|
|
48
|
+
updateIntervalInMs?: number;
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
// @public
|
|
52
|
+
export type AccountsCreateResponse = Account;
|
|
53
|
+
|
|
54
|
+
// @public
|
|
55
|
+
export interface AccountsDeleteHeaders {
|
|
56
|
+
location?: string;
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
// @public
|
|
60
|
+
export interface AccountsDeleteOptionalParams extends coreClient.OperationOptions {
|
|
61
|
+
resumeFrom?: string;
|
|
62
|
+
updateIntervalInMs?: number;
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
// @public
|
|
66
|
+
export interface AccountsGetOptionalParams extends coreClient.OperationOptions {
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
// @public
|
|
70
|
+
export type AccountsGetResponse = Account;
|
|
71
|
+
|
|
72
|
+
// @public
|
|
73
|
+
export interface AccountsHeadOptionalParams extends coreClient.OperationOptions {
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
// @public
|
|
77
|
+
export type AccountsHeadResponse = {
|
|
78
|
+
body: boolean;
|
|
79
|
+
};
|
|
80
|
+
|
|
81
|
+
// @public
|
|
82
|
+
export interface AccountsListByResourceGroupNextOptionalParams extends coreClient.OperationOptions {
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
// @public
|
|
86
|
+
export type AccountsListByResourceGroupNextResponse = AccountList;
|
|
87
|
+
|
|
88
|
+
// @public
|
|
89
|
+
export interface AccountsListByResourceGroupOptionalParams extends coreClient.OperationOptions {
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
// @public
|
|
93
|
+
export type AccountsListByResourceGroupResponse = AccountList;
|
|
94
|
+
|
|
95
|
+
// @public
|
|
96
|
+
export interface AccountsListBySubscriptionNextOptionalParams extends coreClient.OperationOptions {
|
|
97
|
+
}
|
|
98
|
+
|
|
99
|
+
// @public
|
|
100
|
+
export type AccountsListBySubscriptionNextResponse = AccountList;
|
|
101
|
+
|
|
102
|
+
// @public
|
|
103
|
+
export interface AccountsListBySubscriptionOptionalParams extends coreClient.OperationOptions {
|
|
104
|
+
}
|
|
105
|
+
|
|
106
|
+
// @public
|
|
107
|
+
export type AccountsListBySubscriptionResponse = AccountList;
|
|
108
|
+
|
|
109
|
+
// @public
|
|
110
|
+
export interface AccountsUpdateOptionalParams extends coreClient.OperationOptions {
|
|
111
|
+
resumeFrom?: string;
|
|
112
|
+
updateIntervalInMs?: number;
|
|
113
|
+
}
|
|
114
|
+
|
|
115
|
+
// @public
|
|
116
|
+
export type AccountsUpdateResponse = Account;
|
|
117
|
+
|
|
118
|
+
// @public
|
|
119
|
+
export interface AccountUpdate extends TagUpdate {
|
|
120
|
+
identity?: ManagedServiceIdentity;
|
|
121
|
+
location?: string;
|
|
122
|
+
}
|
|
123
|
+
|
|
124
|
+
// @public
|
|
125
|
+
export type ActionType = string;
|
|
126
|
+
|
|
127
|
+
// @public
|
|
128
|
+
export type AuthenticationType = string;
|
|
129
|
+
|
|
130
|
+
// @public
|
|
131
|
+
export type CheckNameAvailabilityOperationResponse = CheckNameAvailabilityResponse;
|
|
132
|
+
|
|
133
|
+
// @public
|
|
134
|
+
export interface CheckNameAvailabilityOptionalParams extends coreClient.OperationOptions {
|
|
135
|
+
}
|
|
136
|
+
|
|
137
|
+
// @public
|
|
138
|
+
export type CheckNameAvailabilityReason = string;
|
|
139
|
+
|
|
140
|
+
// @public
|
|
141
|
+
export interface CheckNameAvailabilityRequest {
|
|
142
|
+
name?: string;
|
|
143
|
+
type?: string;
|
|
144
|
+
}
|
|
145
|
+
|
|
146
|
+
// @public
|
|
147
|
+
export interface CheckNameAvailabilityResponse {
|
|
148
|
+
message?: string;
|
|
149
|
+
nameAvailable?: boolean;
|
|
150
|
+
reason?: CheckNameAvailabilityReason;
|
|
151
|
+
}
|
|
152
|
+
|
|
153
|
+
// @public
|
|
154
|
+
export interface ConnectionDetails {
|
|
155
|
+
readonly groupId?: string;
|
|
156
|
+
readonly id?: string;
|
|
157
|
+
readonly linkIdentifier?: string;
|
|
158
|
+
readonly memberName?: string;
|
|
159
|
+
readonly privateIpAddress?: string;
|
|
160
|
+
}
|
|
161
|
+
|
|
162
|
+
// @public
|
|
163
|
+
export type CreatedByType = string;
|
|
164
|
+
|
|
165
|
+
// @public (undocumented)
|
|
166
|
+
export class DeviceUpdate extends coreClient.ServiceClient {
|
|
167
|
+
// (undocumented)
|
|
168
|
+
$host: string;
|
|
169
|
+
constructor(credentials: coreAuth.TokenCredential, subscriptionId: string, options?: DeviceUpdateOptionalParams);
|
|
170
|
+
// (undocumented)
|
|
171
|
+
accounts: Accounts;
|
|
172
|
+
// (undocumented)
|
|
173
|
+
apiVersion: string;
|
|
174
|
+
checkNameAvailability(request: CheckNameAvailabilityRequest, options?: CheckNameAvailabilityOptionalParams): Promise<CheckNameAvailabilityOperationResponse>;
|
|
175
|
+
// (undocumented)
|
|
176
|
+
instances: Instances;
|
|
177
|
+
// (undocumented)
|
|
178
|
+
operations: Operations;
|
|
179
|
+
// (undocumented)
|
|
180
|
+
privateEndpointConnectionProxies: PrivateEndpointConnectionProxies;
|
|
181
|
+
// (undocumented)
|
|
182
|
+
privateEndpointConnections: PrivateEndpointConnections;
|
|
183
|
+
// (undocumented)
|
|
184
|
+
privateLinkResources: PrivateLinkResources;
|
|
185
|
+
// (undocumented)
|
|
186
|
+
subscriptionId: string;
|
|
187
|
+
}
|
|
188
|
+
|
|
189
|
+
// @public
|
|
190
|
+
export interface DeviceUpdateOptionalParams extends coreClient.ServiceClientOptions {
|
|
191
|
+
$host?: string;
|
|
192
|
+
apiVersion?: string;
|
|
193
|
+
endpoint?: string;
|
|
194
|
+
}
|
|
195
|
+
|
|
196
|
+
// @public
|
|
197
|
+
export interface DiagnosticStorageProperties {
|
|
198
|
+
authenticationType: AuthenticationType;
|
|
199
|
+
connectionString?: string;
|
|
200
|
+
resourceId: string;
|
|
201
|
+
}
|
|
202
|
+
|
|
203
|
+
// @public
|
|
204
|
+
export interface Encryption {
|
|
205
|
+
keyVaultKeyUri?: string;
|
|
206
|
+
userAssignedIdentity?: string;
|
|
207
|
+
}
|
|
208
|
+
|
|
209
|
+
// @public
|
|
210
|
+
export interface ErrorAdditionalInfo {
|
|
211
|
+
readonly info?: Record<string, unknown>;
|
|
212
|
+
readonly type?: string;
|
|
213
|
+
}
|
|
214
|
+
|
|
215
|
+
// @public
|
|
216
|
+
export interface ErrorDetail {
|
|
217
|
+
readonly additionalInfo?: ErrorAdditionalInfo[];
|
|
218
|
+
readonly code?: string;
|
|
219
|
+
readonly details?: ErrorDetail[];
|
|
220
|
+
readonly message?: string;
|
|
221
|
+
readonly target?: string;
|
|
222
|
+
}
|
|
223
|
+
|
|
224
|
+
// @public
|
|
225
|
+
export interface ErrorResponse {
|
|
226
|
+
error?: ErrorDetail;
|
|
227
|
+
}
|
|
228
|
+
|
|
229
|
+
// @public
|
|
230
|
+
export function getContinuationToken(page: unknown): string | undefined;
|
|
231
|
+
|
|
232
|
+
// @public
|
|
233
|
+
export interface GroupConnectivityInformation {
|
|
234
|
+
customerVisibleFqdns?: string[];
|
|
235
|
+
readonly groupId?: string;
|
|
236
|
+
readonly internalFqdn?: string;
|
|
237
|
+
readonly memberName?: string;
|
|
238
|
+
privateLinkServiceArmRegion?: string;
|
|
239
|
+
redirectMapId?: string;
|
|
240
|
+
}
|
|
241
|
+
|
|
242
|
+
// @public
|
|
243
|
+
export type GroupIdProvisioningState = string;
|
|
244
|
+
|
|
245
|
+
// @public
|
|
246
|
+
export interface GroupInformation extends ProxyResource {
|
|
247
|
+
readonly groupId?: string;
|
|
248
|
+
readonly provisioningState?: GroupIdProvisioningState;
|
|
249
|
+
readonly requiredMembers?: string[];
|
|
250
|
+
requiredZoneNames?: string[];
|
|
251
|
+
}
|
|
252
|
+
|
|
253
|
+
// @public
|
|
254
|
+
export interface GroupInformationProperties extends PrivateLinkResourceProperties {
|
|
255
|
+
readonly provisioningState?: GroupIdProvisioningState;
|
|
256
|
+
}
|
|
257
|
+
|
|
258
|
+
// @public
|
|
259
|
+
export interface Instance extends TrackedResource {
|
|
260
|
+
readonly accountName?: string;
|
|
261
|
+
diagnosticStorageProperties?: DiagnosticStorageProperties;
|
|
262
|
+
enableDiagnostics?: boolean;
|
|
263
|
+
iotHubs?: IotHubSettings[];
|
|
264
|
+
readonly provisioningState?: ProvisioningState;
|
|
265
|
+
}
|
|
266
|
+
|
|
267
|
+
// @public
|
|
268
|
+
export interface InstanceList {
|
|
269
|
+
nextLink?: string;
|
|
270
|
+
value?: Instance[];
|
|
271
|
+
}
|
|
272
|
+
|
|
273
|
+
// @public
|
|
274
|
+
export interface Instances {
|
|
275
|
+
beginCreate(resourceGroupName: string, accountName: string, instanceName: string, instance: Instance, options?: InstancesCreateOptionalParams): Promise<SimplePollerLike<OperationState<InstancesCreateResponse>, InstancesCreateResponse>>;
|
|
276
|
+
beginCreateAndWait(resourceGroupName: string, accountName: string, instanceName: string, instance: Instance, options?: InstancesCreateOptionalParams): Promise<InstancesCreateResponse>;
|
|
277
|
+
beginDelete(resourceGroupName: string, accountName: string, instanceName: string, options?: InstancesDeleteOptionalParams): Promise<SimplePollerLike<OperationState<void>, void>>;
|
|
278
|
+
beginDeleteAndWait(resourceGroupName: string, accountName: string, instanceName: string, options?: InstancesDeleteOptionalParams): Promise<void>;
|
|
279
|
+
get(resourceGroupName: string, accountName: string, instanceName: string, options?: InstancesGetOptionalParams): Promise<InstancesGetResponse>;
|
|
280
|
+
head(resourceGroupName: string, accountName: string, instanceName: string, options?: InstancesHeadOptionalParams): Promise<InstancesHeadResponse>;
|
|
281
|
+
listByAccount(resourceGroupName: string, accountName: string, options?: InstancesListByAccountOptionalParams): PagedAsyncIterableIterator<Instance>;
|
|
282
|
+
update(resourceGroupName: string, accountName: string, instanceName: string, tagUpdatePayload: TagUpdate, options?: InstancesUpdateOptionalParams): Promise<InstancesUpdateResponse>;
|
|
283
|
+
}
|
|
284
|
+
|
|
285
|
+
// @public
|
|
286
|
+
export interface InstancesCreateOptionalParams extends coreClient.OperationOptions {
|
|
287
|
+
resumeFrom?: string;
|
|
288
|
+
updateIntervalInMs?: number;
|
|
289
|
+
}
|
|
290
|
+
|
|
291
|
+
// @public
|
|
292
|
+
export type InstancesCreateResponse = Instance;
|
|
293
|
+
|
|
294
|
+
// @public
|
|
295
|
+
export interface InstancesDeleteHeaders {
|
|
296
|
+
location?: string;
|
|
297
|
+
}
|
|
298
|
+
|
|
299
|
+
// @public
|
|
300
|
+
export interface InstancesDeleteOptionalParams extends coreClient.OperationOptions {
|
|
301
|
+
resumeFrom?: string;
|
|
302
|
+
updateIntervalInMs?: number;
|
|
303
|
+
}
|
|
304
|
+
|
|
305
|
+
// @public
|
|
306
|
+
export interface InstancesGetOptionalParams extends coreClient.OperationOptions {
|
|
307
|
+
}
|
|
308
|
+
|
|
309
|
+
// @public
|
|
310
|
+
export type InstancesGetResponse = Instance;
|
|
311
|
+
|
|
312
|
+
// @public
|
|
313
|
+
export interface InstancesHeadOptionalParams extends coreClient.OperationOptions {
|
|
314
|
+
}
|
|
315
|
+
|
|
316
|
+
// @public
|
|
317
|
+
export type InstancesHeadResponse = {
|
|
318
|
+
body: boolean;
|
|
319
|
+
};
|
|
320
|
+
|
|
321
|
+
// @public
|
|
322
|
+
export interface InstancesListByAccountNextOptionalParams extends coreClient.OperationOptions {
|
|
323
|
+
}
|
|
324
|
+
|
|
325
|
+
// @public
|
|
326
|
+
export type InstancesListByAccountNextResponse = InstanceList;
|
|
327
|
+
|
|
328
|
+
// @public
|
|
329
|
+
export interface InstancesListByAccountOptionalParams extends coreClient.OperationOptions {
|
|
330
|
+
}
|
|
331
|
+
|
|
332
|
+
// @public
|
|
333
|
+
export type InstancesListByAccountResponse = InstanceList;
|
|
334
|
+
|
|
335
|
+
// @public
|
|
336
|
+
export interface InstancesUpdateOptionalParams extends coreClient.OperationOptions {
|
|
337
|
+
}
|
|
338
|
+
|
|
339
|
+
// @public
|
|
340
|
+
export type InstancesUpdateResponse = Instance;
|
|
341
|
+
|
|
342
|
+
// @public
|
|
343
|
+
export interface IotHubSettings {
|
|
344
|
+
resourceId: string;
|
|
345
|
+
}
|
|
346
|
+
|
|
347
|
+
// @public
|
|
348
|
+
export enum KnownActionType {
|
|
349
|
+
Internal = "Internal"
|
|
350
|
+
}
|
|
351
|
+
|
|
352
|
+
// @public
|
|
353
|
+
export enum KnownAuthenticationType {
|
|
354
|
+
KeyBased = "KeyBased"
|
|
355
|
+
}
|
|
356
|
+
|
|
357
|
+
// @public
|
|
358
|
+
export enum KnownCheckNameAvailabilityReason {
|
|
359
|
+
AlreadyExists = "AlreadyExists",
|
|
360
|
+
Invalid = "Invalid"
|
|
361
|
+
}
|
|
362
|
+
|
|
363
|
+
// @public
|
|
364
|
+
export enum KnownCreatedByType {
|
|
365
|
+
Application = "Application",
|
|
366
|
+
Key = "Key",
|
|
367
|
+
ManagedIdentity = "ManagedIdentity",
|
|
368
|
+
User = "User"
|
|
369
|
+
}
|
|
370
|
+
|
|
371
|
+
// @public
|
|
372
|
+
export enum KnownGroupIdProvisioningState {
|
|
373
|
+
Canceled = "Canceled",
|
|
374
|
+
Failed = "Failed",
|
|
375
|
+
Succeeded = "Succeeded"
|
|
376
|
+
}
|
|
377
|
+
|
|
378
|
+
// @public
|
|
379
|
+
export enum KnownManagedServiceIdentityType {
|
|
380
|
+
None = "None",
|
|
381
|
+
SystemAssigned = "SystemAssigned",
|
|
382
|
+
SystemAssignedUserAssigned = "SystemAssigned,UserAssigned",
|
|
383
|
+
UserAssigned = "UserAssigned"
|
|
384
|
+
}
|
|
385
|
+
|
|
386
|
+
// @public
|
|
387
|
+
export enum KnownOrigin {
|
|
388
|
+
System = "system",
|
|
389
|
+
User = "user",
|
|
390
|
+
UserSystem = "user,system"
|
|
391
|
+
}
|
|
392
|
+
|
|
393
|
+
// @public
|
|
394
|
+
export enum KnownPrivateEndpointConnectionProvisioningState {
|
|
395
|
+
Creating = "Creating",
|
|
396
|
+
Deleting = "Deleting",
|
|
397
|
+
Failed = "Failed",
|
|
398
|
+
Succeeded = "Succeeded"
|
|
399
|
+
}
|
|
400
|
+
|
|
401
|
+
// @public
|
|
402
|
+
export enum KnownPrivateEndpointConnectionProxyProvisioningState {
|
|
403
|
+
Creating = "Creating",
|
|
404
|
+
Deleting = "Deleting",
|
|
405
|
+
Failed = "Failed",
|
|
406
|
+
Succeeded = "Succeeded"
|
|
407
|
+
}
|
|
408
|
+
|
|
409
|
+
// @public
|
|
410
|
+
export enum KnownPrivateEndpointServiceConnectionStatus {
|
|
411
|
+
Approved = "Approved",
|
|
412
|
+
Pending = "Pending",
|
|
413
|
+
Rejected = "Rejected"
|
|
414
|
+
}
|
|
415
|
+
|
|
416
|
+
// @public
|
|
417
|
+
export enum KnownProvisioningState {
|
|
418
|
+
Accepted = "Accepted",
|
|
419
|
+
Canceled = "Canceled",
|
|
420
|
+
Creating = "Creating",
|
|
421
|
+
Deleted = "Deleted",
|
|
422
|
+
Failed = "Failed",
|
|
423
|
+
Succeeded = "Succeeded"
|
|
424
|
+
}
|
|
425
|
+
|
|
426
|
+
// @public
|
|
427
|
+
export enum KnownPublicNetworkAccess {
|
|
428
|
+
Disabled = "Disabled",
|
|
429
|
+
Enabled = "Enabled"
|
|
430
|
+
}
|
|
431
|
+
|
|
432
|
+
// @public
|
|
433
|
+
export enum KnownRole {
|
|
434
|
+
Failover = "Failover",
|
|
435
|
+
Primary = "Primary"
|
|
436
|
+
}
|
|
437
|
+
|
|
438
|
+
// @public
|
|
439
|
+
export enum KnownSku {
|
|
440
|
+
Free = "Free",
|
|
441
|
+
Standard = "Standard"
|
|
442
|
+
}
|
|
443
|
+
|
|
444
|
+
// @public (undocumented)
|
|
445
|
+
export interface Location {
|
|
446
|
+
// (undocumented)
|
|
447
|
+
name?: string;
|
|
448
|
+
role?: Role;
|
|
449
|
+
}
|
|
450
|
+
|
|
451
|
+
// @public
|
|
452
|
+
export interface ManagedServiceIdentity {
|
|
453
|
+
readonly principalId?: string;
|
|
454
|
+
readonly tenantId?: string;
|
|
455
|
+
type: ManagedServiceIdentityType;
|
|
456
|
+
userAssignedIdentities?: {
|
|
457
|
+
[propertyName: string]: UserAssignedIdentity;
|
|
458
|
+
};
|
|
459
|
+
}
|
|
460
|
+
|
|
461
|
+
// @public
|
|
462
|
+
export type ManagedServiceIdentityType = string;
|
|
463
|
+
|
|
464
|
+
// @public
|
|
465
|
+
export interface Operation {
|
|
466
|
+
readonly actionType?: ActionType;
|
|
467
|
+
display?: OperationDisplay;
|
|
468
|
+
readonly isDataAction?: boolean;
|
|
469
|
+
readonly name?: string;
|
|
470
|
+
readonly origin?: Origin;
|
|
471
|
+
}
|
|
472
|
+
|
|
473
|
+
// @public
|
|
474
|
+
export interface OperationDisplay {
|
|
475
|
+
readonly description?: string;
|
|
476
|
+
readonly operation?: string;
|
|
477
|
+
readonly provider?: string;
|
|
478
|
+
readonly resource?: string;
|
|
479
|
+
}
|
|
480
|
+
|
|
481
|
+
// @public
|
|
482
|
+
export interface OperationListResult {
|
|
483
|
+
readonly nextLink?: string;
|
|
484
|
+
readonly value?: Operation[];
|
|
485
|
+
}
|
|
486
|
+
|
|
487
|
+
// @public
|
|
488
|
+
export interface Operations {
|
|
489
|
+
list(options?: OperationsListOptionalParams): PagedAsyncIterableIterator<Operation>;
|
|
490
|
+
}
|
|
491
|
+
|
|
492
|
+
// @public
|
|
493
|
+
export interface OperationsListNextOptionalParams extends coreClient.OperationOptions {
|
|
494
|
+
}
|
|
495
|
+
|
|
496
|
+
// @public
|
|
497
|
+
export type OperationsListNextResponse = OperationListResult;
|
|
498
|
+
|
|
499
|
+
// @public
|
|
500
|
+
export interface OperationsListOptionalParams extends coreClient.OperationOptions {
|
|
501
|
+
}
|
|
502
|
+
|
|
503
|
+
// @public
|
|
504
|
+
export type OperationsListResponse = OperationListResult;
|
|
505
|
+
|
|
506
|
+
// @public
|
|
507
|
+
export type Origin = string;
|
|
508
|
+
|
|
509
|
+
// @public
|
|
510
|
+
export interface PrivateEndpoint {
|
|
511
|
+
readonly id?: string;
|
|
512
|
+
}
|
|
513
|
+
|
|
514
|
+
// @public
|
|
515
|
+
export interface PrivateEndpointConnection extends Resource {
|
|
516
|
+
groupIds?: string[];
|
|
517
|
+
privateEndpoint?: PrivateEndpoint;
|
|
518
|
+
privateLinkServiceConnectionState: PrivateLinkServiceConnectionState;
|
|
519
|
+
readonly provisioningState?: PrivateEndpointConnectionProvisioningState;
|
|
520
|
+
}
|
|
521
|
+
|
|
522
|
+
// @public
|
|
523
|
+
export interface PrivateEndpointConnectionListResult {
|
|
524
|
+
value?: PrivateEndpointConnection[];
|
|
525
|
+
}
|
|
526
|
+
|
|
527
|
+
// @public
|
|
528
|
+
export type PrivateEndpointConnectionProvisioningState = string;
|
|
529
|
+
|
|
530
|
+
// @public
|
|
531
|
+
export interface PrivateEndpointConnectionProxies {
|
|
532
|
+
beginCreateOrUpdate(resourceGroupName: string, accountName: string, privateEndpointConnectionProxyId: string, privateEndpointConnectionProxy: PrivateEndpointConnectionProxy, options?: PrivateEndpointConnectionProxiesCreateOrUpdateOptionalParams): Promise<SimplePollerLike<OperationState<PrivateEndpointConnectionProxiesCreateOrUpdateResponse>, PrivateEndpointConnectionProxiesCreateOrUpdateResponse>>;
|
|
533
|
+
beginCreateOrUpdateAndWait(resourceGroupName: string, accountName: string, privateEndpointConnectionProxyId: string, privateEndpointConnectionProxy: PrivateEndpointConnectionProxy, options?: PrivateEndpointConnectionProxiesCreateOrUpdateOptionalParams): Promise<PrivateEndpointConnectionProxiesCreateOrUpdateResponse>;
|
|
534
|
+
beginDelete(resourceGroupName: string, accountName: string, privateEndpointConnectionProxyId: string, options?: PrivateEndpointConnectionProxiesDeleteOptionalParams): Promise<SimplePollerLike<OperationState<void>, void>>;
|
|
535
|
+
beginDeleteAndWait(resourceGroupName: string, accountName: string, privateEndpointConnectionProxyId: string, options?: PrivateEndpointConnectionProxiesDeleteOptionalParams): Promise<void>;
|
|
536
|
+
get(resourceGroupName: string, accountName: string, privateEndpointConnectionProxyId: string, options?: PrivateEndpointConnectionProxiesGetOptionalParams): Promise<PrivateEndpointConnectionProxiesGetResponse>;
|
|
537
|
+
listByAccount(resourceGroupName: string, accountName: string, options?: PrivateEndpointConnectionProxiesListByAccountOptionalParams): PagedAsyncIterableIterator<PrivateEndpointConnectionProxy>;
|
|
538
|
+
updatePrivateEndpointProperties(resourceGroupName: string, accountName: string, privateEndpointConnectionProxyId: string, privateEndpointUpdate: PrivateEndpointUpdate, options?: PrivateEndpointConnectionProxiesUpdatePrivateEndpointPropertiesOptionalParams): Promise<void>;
|
|
539
|
+
validate(resourceGroupName: string, accountName: string, privateEndpointConnectionProxyId: string, privateEndpointConnectionProxy: PrivateEndpointConnectionProxy, options?: PrivateEndpointConnectionProxiesValidateOptionalParams): Promise<void>;
|
|
540
|
+
}
|
|
541
|
+
|
|
542
|
+
// @public
|
|
543
|
+
export interface PrivateEndpointConnectionProxiesCreateOrUpdateOptionalParams extends coreClient.OperationOptions {
|
|
544
|
+
resumeFrom?: string;
|
|
545
|
+
updateIntervalInMs?: number;
|
|
546
|
+
}
|
|
547
|
+
|
|
548
|
+
// @public
|
|
549
|
+
export type PrivateEndpointConnectionProxiesCreateOrUpdateResponse = PrivateEndpointConnectionProxy;
|
|
550
|
+
|
|
551
|
+
// @public
|
|
552
|
+
export interface PrivateEndpointConnectionProxiesDeleteHeaders {
|
|
553
|
+
location?: string;
|
|
554
|
+
}
|
|
555
|
+
|
|
556
|
+
// @public
|
|
557
|
+
export interface PrivateEndpointConnectionProxiesDeleteOptionalParams extends coreClient.OperationOptions {
|
|
558
|
+
resumeFrom?: string;
|
|
559
|
+
updateIntervalInMs?: number;
|
|
560
|
+
}
|
|
561
|
+
|
|
562
|
+
// @public
|
|
563
|
+
export interface PrivateEndpointConnectionProxiesGetOptionalParams extends coreClient.OperationOptions {
|
|
564
|
+
}
|
|
565
|
+
|
|
566
|
+
// @public
|
|
567
|
+
export type PrivateEndpointConnectionProxiesGetResponse = PrivateEndpointConnectionProxy;
|
|
568
|
+
|
|
569
|
+
// @public
|
|
570
|
+
export interface PrivateEndpointConnectionProxiesListByAccountOptionalParams extends coreClient.OperationOptions {
|
|
571
|
+
}
|
|
572
|
+
|
|
573
|
+
// @public
|
|
574
|
+
export type PrivateEndpointConnectionProxiesListByAccountResponse = PrivateEndpointConnectionProxyListResult;
|
|
575
|
+
|
|
576
|
+
// @public
|
|
577
|
+
export interface PrivateEndpointConnectionProxiesUpdatePrivateEndpointPropertiesOptionalParams extends coreClient.OperationOptions {
|
|
578
|
+
}
|
|
579
|
+
|
|
580
|
+
// @public
|
|
581
|
+
export interface PrivateEndpointConnectionProxiesValidateOptionalParams extends coreClient.OperationOptions {
|
|
582
|
+
}
|
|
583
|
+
|
|
584
|
+
// @public
|
|
585
|
+
export interface PrivateEndpointConnectionProxy extends ProxyResource, PrivateEndpointConnectionProxyProperties {
|
|
586
|
+
readonly provisioningState?: PrivateEndpointConnectionProxyProvisioningState;
|
|
587
|
+
}
|
|
588
|
+
|
|
589
|
+
// @public
|
|
590
|
+
export interface PrivateEndpointConnectionProxyListResult {
|
|
591
|
+
nextLink?: string;
|
|
592
|
+
value?: PrivateEndpointConnectionProxy[];
|
|
593
|
+
}
|
|
594
|
+
|
|
595
|
+
// @public
|
|
596
|
+
export interface PrivateEndpointConnectionProxyProperties {
|
|
597
|
+
readonly eTag?: string;
|
|
598
|
+
remotePrivateEndpoint?: RemotePrivateEndpoint;
|
|
599
|
+
status?: string;
|
|
600
|
+
}
|
|
601
|
+
|
|
602
|
+
// @public
|
|
603
|
+
export type PrivateEndpointConnectionProxyProvisioningState = string;
|
|
604
|
+
|
|
605
|
+
// @public
|
|
606
|
+
export interface PrivateEndpointConnections {
|
|
607
|
+
beginCreateOrUpdate(resourceGroupName: string, accountName: string, privateEndpointConnectionName: string, privateEndpointConnection: PrivateEndpointConnection, options?: PrivateEndpointConnectionsCreateOrUpdateOptionalParams): Promise<SimplePollerLike<OperationState<PrivateEndpointConnectionsCreateOrUpdateResponse>, PrivateEndpointConnectionsCreateOrUpdateResponse>>;
|
|
608
|
+
beginCreateOrUpdateAndWait(resourceGroupName: string, accountName: string, privateEndpointConnectionName: string, privateEndpointConnection: PrivateEndpointConnection, options?: PrivateEndpointConnectionsCreateOrUpdateOptionalParams): Promise<PrivateEndpointConnectionsCreateOrUpdateResponse>;
|
|
609
|
+
beginDelete(resourceGroupName: string, accountName: string, privateEndpointConnectionName: string, options?: PrivateEndpointConnectionsDeleteOptionalParams): Promise<SimplePollerLike<OperationState<void>, void>>;
|
|
610
|
+
beginDeleteAndWait(resourceGroupName: string, accountName: string, privateEndpointConnectionName: string, options?: PrivateEndpointConnectionsDeleteOptionalParams): Promise<void>;
|
|
611
|
+
get(resourceGroupName: string, accountName: string, privateEndpointConnectionName: string, options?: PrivateEndpointConnectionsGetOptionalParams): Promise<PrivateEndpointConnectionsGetResponse>;
|
|
612
|
+
listByAccount(resourceGroupName: string, accountName: string, options?: PrivateEndpointConnectionsListByAccountOptionalParams): PagedAsyncIterableIterator<PrivateEndpointConnection>;
|
|
613
|
+
}
|
|
614
|
+
|
|
615
|
+
// @public
|
|
616
|
+
export interface PrivateEndpointConnectionsCreateOrUpdateOptionalParams extends coreClient.OperationOptions {
|
|
617
|
+
resumeFrom?: string;
|
|
618
|
+
updateIntervalInMs?: number;
|
|
619
|
+
}
|
|
620
|
+
|
|
621
|
+
// @public
|
|
622
|
+
export type PrivateEndpointConnectionsCreateOrUpdateResponse = PrivateEndpointConnection;
|
|
623
|
+
|
|
624
|
+
// @public
|
|
625
|
+
export interface PrivateEndpointConnectionsDeleteHeaders {
|
|
626
|
+
location?: string;
|
|
627
|
+
}
|
|
628
|
+
|
|
629
|
+
// @public
|
|
630
|
+
export interface PrivateEndpointConnectionsDeleteOptionalParams extends coreClient.OperationOptions {
|
|
631
|
+
resumeFrom?: string;
|
|
632
|
+
updateIntervalInMs?: number;
|
|
633
|
+
}
|
|
634
|
+
|
|
635
|
+
// @public
|
|
636
|
+
export interface PrivateEndpointConnectionsGetOptionalParams extends coreClient.OperationOptions {
|
|
637
|
+
}
|
|
638
|
+
|
|
639
|
+
// @public
|
|
640
|
+
export type PrivateEndpointConnectionsGetResponse = PrivateEndpointConnection;
|
|
641
|
+
|
|
642
|
+
// @public
|
|
643
|
+
export interface PrivateEndpointConnectionsListByAccountOptionalParams extends coreClient.OperationOptions {
|
|
644
|
+
}
|
|
645
|
+
|
|
646
|
+
// @public
|
|
647
|
+
export type PrivateEndpointConnectionsListByAccountResponse = PrivateEndpointConnectionListResult;
|
|
648
|
+
|
|
649
|
+
// @public
|
|
650
|
+
export type PrivateEndpointServiceConnectionStatus = string;
|
|
651
|
+
|
|
652
|
+
// @public
|
|
653
|
+
export interface PrivateEndpointUpdate {
|
|
654
|
+
id?: string;
|
|
655
|
+
immutableResourceId?: string;
|
|
656
|
+
immutableSubscriptionId?: string;
|
|
657
|
+
location?: string;
|
|
658
|
+
vnetTrafficTag?: string;
|
|
659
|
+
}
|
|
660
|
+
|
|
661
|
+
// @public
|
|
662
|
+
export interface PrivateLinkResourceListResult {
|
|
663
|
+
nextLink?: string;
|
|
664
|
+
value?: GroupInformation[];
|
|
665
|
+
}
|
|
666
|
+
|
|
667
|
+
// @public
|
|
668
|
+
export interface PrivateLinkResourceProperties {
|
|
669
|
+
readonly groupId?: string;
|
|
670
|
+
readonly requiredMembers?: string[];
|
|
671
|
+
requiredZoneNames?: string[];
|
|
672
|
+
}
|
|
673
|
+
|
|
674
|
+
// @public
|
|
675
|
+
export interface PrivateLinkResources {
|
|
676
|
+
get(resourceGroupName: string, accountName: string, groupId: string, options?: PrivateLinkResourcesGetOptionalParams): Promise<PrivateLinkResourcesGetResponse>;
|
|
677
|
+
listByAccount(resourceGroupName: string, accountName: string, options?: PrivateLinkResourcesListByAccountOptionalParams): PagedAsyncIterableIterator<GroupInformation>;
|
|
678
|
+
}
|
|
679
|
+
|
|
680
|
+
// @public
|
|
681
|
+
export interface PrivateLinkResourcesGetOptionalParams extends coreClient.OperationOptions {
|
|
682
|
+
}
|
|
683
|
+
|
|
684
|
+
// @public
|
|
685
|
+
export type PrivateLinkResourcesGetResponse = GroupInformation;
|
|
686
|
+
|
|
687
|
+
// @public
|
|
688
|
+
export interface PrivateLinkResourcesListByAccountOptionalParams extends coreClient.OperationOptions {
|
|
689
|
+
}
|
|
690
|
+
|
|
691
|
+
// @public
|
|
692
|
+
export type PrivateLinkResourcesListByAccountResponse = PrivateLinkResourceListResult;
|
|
693
|
+
|
|
694
|
+
// @public
|
|
695
|
+
export interface PrivateLinkServiceConnection {
|
|
696
|
+
groupIds?: string[];
|
|
697
|
+
name?: string;
|
|
698
|
+
requestMessage?: string;
|
|
699
|
+
}
|
|
700
|
+
|
|
701
|
+
// @public
|
|
702
|
+
export interface PrivateLinkServiceConnectionState {
|
|
703
|
+
actionsRequired?: string;
|
|
704
|
+
description?: string;
|
|
705
|
+
status?: PrivateEndpointServiceConnectionStatus;
|
|
706
|
+
}
|
|
707
|
+
|
|
708
|
+
// @public
|
|
709
|
+
export interface PrivateLinkServiceProxy {
|
|
710
|
+
groupConnectivityInformation?: GroupConnectivityInformation[];
|
|
711
|
+
id?: string;
|
|
712
|
+
remotePrivateEndpointConnection?: PrivateLinkServiceProxyRemotePrivateEndpointConnection;
|
|
713
|
+
remotePrivateLinkServiceConnectionState?: PrivateLinkServiceConnectionState;
|
|
714
|
+
}
|
|
715
|
+
|
|
716
|
+
// @public
|
|
717
|
+
export interface PrivateLinkServiceProxyRemotePrivateEndpointConnection extends RemotePrivateEndpointConnection {
|
|
718
|
+
}
|
|
719
|
+
|
|
720
|
+
// @public
|
|
721
|
+
export type ProvisioningState = string;
|
|
722
|
+
|
|
723
|
+
// @public
|
|
724
|
+
export interface ProxyResource extends Resource {
|
|
725
|
+
}
|
|
726
|
+
|
|
727
|
+
// @public
|
|
728
|
+
export type PublicNetworkAccess = string;
|
|
729
|
+
|
|
730
|
+
// @public
|
|
731
|
+
export interface RemotePrivateEndpoint {
|
|
732
|
+
connectionDetails?: ConnectionDetails[];
|
|
733
|
+
id?: string;
|
|
734
|
+
immutableResourceId?: string;
|
|
735
|
+
immutableSubscriptionId?: string;
|
|
736
|
+
location?: string;
|
|
737
|
+
manualPrivateLinkServiceConnections?: PrivateLinkServiceConnection[];
|
|
738
|
+
privateLinkServiceConnections?: PrivateLinkServiceConnection[];
|
|
739
|
+
privateLinkServiceProxies?: PrivateLinkServiceProxy[];
|
|
740
|
+
vnetTrafficTag?: string;
|
|
741
|
+
}
|
|
742
|
+
|
|
743
|
+
// @public
|
|
744
|
+
export interface RemotePrivateEndpointConnection {
|
|
745
|
+
readonly id?: string;
|
|
746
|
+
}
|
|
747
|
+
|
|
748
|
+
// @public
|
|
749
|
+
export interface Resource {
|
|
750
|
+
readonly id?: string;
|
|
751
|
+
readonly name?: string;
|
|
752
|
+
readonly systemData?: SystemData;
|
|
753
|
+
readonly type?: string;
|
|
754
|
+
}
|
|
755
|
+
|
|
756
|
+
// @public
|
|
757
|
+
export type Role = string;
|
|
758
|
+
|
|
759
|
+
// @public
|
|
760
|
+
export type Sku = string;
|
|
761
|
+
|
|
762
|
+
// @public
|
|
763
|
+
export interface SystemData {
|
|
764
|
+
createdAt?: Date;
|
|
765
|
+
createdBy?: string;
|
|
766
|
+
createdByType?: CreatedByType;
|
|
767
|
+
lastModifiedAt?: Date;
|
|
768
|
+
lastModifiedBy?: string;
|
|
769
|
+
lastModifiedByType?: CreatedByType;
|
|
770
|
+
}
|
|
771
|
+
|
|
772
|
+
// @public
|
|
773
|
+
export interface TagUpdate {
|
|
774
|
+
tags?: {
|
|
775
|
+
[propertyName: string]: string;
|
|
776
|
+
};
|
|
777
|
+
}
|
|
778
|
+
|
|
779
|
+
// @public
|
|
780
|
+
export interface TrackedResource extends Resource {
|
|
781
|
+
location: string;
|
|
782
|
+
tags?: {
|
|
783
|
+
[propertyName: string]: string;
|
|
784
|
+
};
|
|
785
|
+
}
|
|
786
|
+
|
|
787
|
+
// @public
|
|
788
|
+
export interface UserAssignedIdentity {
|
|
789
|
+
readonly clientId?: string;
|
|
790
|
+
readonly principalId?: string;
|
|
791
|
+
}
|
|
792
|
+
|
|
793
|
+
// (No @packageDocumentation comment for this package)
|
|
794
|
+
|
|
795
|
+
```
|