@azure/arm-devcenter 1.1.1-alpha.20250619.1 → 1.1.1-alpha.20250718.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -1,2567 +1,2567 @@
|
|
|
1
|
-
## API Report File for "@azure/arm-devcenter"
|
|
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 type ActionType = string;
|
|
15
|
-
|
|
16
|
-
// @public
|
|
17
|
-
export interface AllowedEnvironmentType extends Resource {
|
|
18
|
-
readonly displayName?: string;
|
|
19
|
-
readonly provisioningState?: ProvisioningState;
|
|
20
|
-
}
|
|
21
|
-
|
|
22
|
-
// @public
|
|
23
|
-
export interface AllowedEnvironmentTypeListResult {
|
|
24
|
-
readonly nextLink?: string;
|
|
25
|
-
readonly value?: AllowedEnvironmentType[];
|
|
26
|
-
}
|
|
27
|
-
|
|
28
|
-
// @public
|
|
29
|
-
export interface AttachedNetworkConnection extends Resource {
|
|
30
|
-
readonly domainJoinType?: DomainJoinType;
|
|
31
|
-
readonly healthCheckStatus?: HealthCheckStatus;
|
|
32
|
-
networkConnectionId?: string;
|
|
33
|
-
readonly networkConnectionLocation?: string;
|
|
34
|
-
readonly provisioningState?: ProvisioningState;
|
|
35
|
-
}
|
|
36
|
-
|
|
37
|
-
// @public
|
|
38
|
-
export interface AttachedNetworkListResult {
|
|
39
|
-
readonly nextLink?: string;
|
|
40
|
-
readonly value?: AttachedNetworkConnection[];
|
|
41
|
-
}
|
|
42
|
-
|
|
43
|
-
// @public
|
|
44
|
-
export interface AttachedNetworks {
|
|
45
|
-
beginCreateOrUpdate(resourceGroupName: string, devCenterName: string, attachedNetworkConnectionName: string, body: AttachedNetworkConnection, options?: AttachedNetworksCreateOrUpdateOptionalParams): Promise<SimplePollerLike<OperationState<AttachedNetworksCreateOrUpdateResponse>, AttachedNetworksCreateOrUpdateResponse>>;
|
|
46
|
-
beginCreateOrUpdateAndWait(resourceGroupName: string, devCenterName: string, attachedNetworkConnectionName: string, body: AttachedNetworkConnection, options?: AttachedNetworksCreateOrUpdateOptionalParams): Promise<AttachedNetworksCreateOrUpdateResponse>;
|
|
47
|
-
beginDelete(resourceGroupName: string, devCenterName: string, attachedNetworkConnectionName: string, options?: AttachedNetworksDeleteOptionalParams): Promise<SimplePollerLike<OperationState<AttachedNetworksDeleteResponse>, AttachedNetworksDeleteResponse>>;
|
|
48
|
-
beginDeleteAndWait(resourceGroupName: string, devCenterName: string, attachedNetworkConnectionName: string, options?: AttachedNetworksDeleteOptionalParams): Promise<AttachedNetworksDeleteResponse>;
|
|
49
|
-
getByDevCenter(resourceGroupName: string, devCenterName: string, attachedNetworkConnectionName: string, options?: AttachedNetworksGetByDevCenterOptionalParams): Promise<AttachedNetworksGetByDevCenterResponse>;
|
|
50
|
-
getByProject(resourceGroupName: string, projectName: string, attachedNetworkConnectionName: string, options?: AttachedNetworksGetByProjectOptionalParams): Promise<AttachedNetworksGetByProjectResponse>;
|
|
51
|
-
listByDevCenter(resourceGroupName: string, devCenterName: string, options?: AttachedNetworksListByDevCenterOptionalParams): PagedAsyncIterableIterator<AttachedNetworkConnection>;
|
|
52
|
-
listByProject(resourceGroupName: string, projectName: string, options?: AttachedNetworksListByProjectOptionalParams): PagedAsyncIterableIterator<AttachedNetworkConnection>;
|
|
53
|
-
}
|
|
54
|
-
|
|
55
|
-
// @public
|
|
56
|
-
export interface AttachedNetworksCreateOrUpdateOptionalParams extends coreClient.OperationOptions {
|
|
57
|
-
resumeFrom?: string;
|
|
58
|
-
updateIntervalInMs?: number;
|
|
59
|
-
}
|
|
60
|
-
|
|
61
|
-
// @public
|
|
62
|
-
export type AttachedNetworksCreateOrUpdateResponse = AttachedNetworkConnection;
|
|
63
|
-
|
|
64
|
-
// @public
|
|
65
|
-
export interface AttachedNetworksDeleteHeaders {
|
|
66
|
-
// (undocumented)
|
|
67
|
-
location?: string;
|
|
68
|
-
}
|
|
69
|
-
|
|
70
|
-
// @public
|
|
71
|
-
export interface AttachedNetworksDeleteOptionalParams extends coreClient.OperationOptions {
|
|
72
|
-
resumeFrom?: string;
|
|
73
|
-
updateIntervalInMs?: number;
|
|
74
|
-
}
|
|
75
|
-
|
|
76
|
-
// @public
|
|
77
|
-
export type AttachedNetworksDeleteResponse = AttachedNetworksDeleteHeaders;
|
|
78
|
-
|
|
79
|
-
// @public
|
|
80
|
-
export interface AttachedNetworksGetByDevCenterOptionalParams extends coreClient.OperationOptions {
|
|
81
|
-
}
|
|
82
|
-
|
|
83
|
-
// @public
|
|
84
|
-
export type AttachedNetworksGetByDevCenterResponse = AttachedNetworkConnection;
|
|
85
|
-
|
|
86
|
-
// @public
|
|
87
|
-
export interface AttachedNetworksGetByProjectOptionalParams extends coreClient.OperationOptions {
|
|
88
|
-
}
|
|
89
|
-
|
|
90
|
-
// @public
|
|
91
|
-
export type AttachedNetworksGetByProjectResponse = AttachedNetworkConnection;
|
|
92
|
-
|
|
93
|
-
// @public
|
|
94
|
-
export interface AttachedNetworksListByDevCenterNextOptionalParams extends coreClient.OperationOptions {
|
|
95
|
-
}
|
|
96
|
-
|
|
97
|
-
// @public
|
|
98
|
-
export type AttachedNetworksListByDevCenterNextResponse = AttachedNetworkListResult;
|
|
99
|
-
|
|
100
|
-
// @public
|
|
101
|
-
export interface AttachedNetworksListByDevCenterOptionalParams extends coreClient.OperationOptions {
|
|
102
|
-
top?: number;
|
|
103
|
-
}
|
|
104
|
-
|
|
105
|
-
// @public
|
|
106
|
-
export type AttachedNetworksListByDevCenterResponse = AttachedNetworkListResult;
|
|
107
|
-
|
|
108
|
-
// @public
|
|
109
|
-
export interface AttachedNetworksListByProjectNextOptionalParams extends coreClient.OperationOptions {
|
|
110
|
-
}
|
|
111
|
-
|
|
112
|
-
// @public
|
|
113
|
-
export type AttachedNetworksListByProjectNextResponse = AttachedNetworkListResult;
|
|
114
|
-
|
|
115
|
-
// @public
|
|
116
|
-
export interface AttachedNetworksListByProjectOptionalParams extends coreClient.OperationOptions {
|
|
117
|
-
top?: number;
|
|
118
|
-
}
|
|
119
|
-
|
|
120
|
-
// @public
|
|
121
|
-
export type AttachedNetworksListByProjectResponse = AttachedNetworkListResult;
|
|
122
|
-
|
|
123
|
-
// @public
|
|
124
|
-
export interface Capability {
|
|
125
|
-
readonly name?: string;
|
|
126
|
-
readonly value?: string;
|
|
127
|
-
}
|
|
128
|
-
|
|
129
|
-
// @public
|
|
130
|
-
export interface Catalog extends Resource {
|
|
131
|
-
adoGit?: GitCatalog;
|
|
132
|
-
readonly connectionState?: CatalogConnectionState;
|
|
133
|
-
gitHub?: GitCatalog;
|
|
134
|
-
readonly lastConnectionTime?: Date;
|
|
135
|
-
readonly lastSyncStats?: SyncStats;
|
|
136
|
-
readonly lastSyncTime?: Date;
|
|
137
|
-
readonly provisioningState?: ProvisioningState;
|
|
138
|
-
readonly syncState?: CatalogSyncState;
|
|
139
|
-
syncType?: CatalogSyncType;
|
|
140
|
-
tags?: {
|
|
141
|
-
[propertyName: string]: string;
|
|
142
|
-
};
|
|
143
|
-
}
|
|
144
|
-
|
|
145
|
-
// @public
|
|
146
|
-
export interface CatalogConflictError {
|
|
147
|
-
readonly name?: string;
|
|
148
|
-
readonly path?: string;
|
|
149
|
-
}
|
|
150
|
-
|
|
151
|
-
// @public
|
|
152
|
-
export type CatalogConnectionState = string;
|
|
153
|
-
|
|
154
|
-
// @public
|
|
155
|
-
export interface CatalogErrorDetails {
|
|
156
|
-
code?: string;
|
|
157
|
-
message?: string;
|
|
158
|
-
}
|
|
159
|
-
|
|
160
|
-
// @public
|
|
161
|
-
export type CatalogItemSyncEnableStatus = string;
|
|
162
|
-
|
|
163
|
-
// @public
|
|
164
|
-
export type CatalogItemType = string;
|
|
165
|
-
|
|
166
|
-
// @public
|
|
167
|
-
export interface CatalogListResult {
|
|
168
|
-
readonly nextLink?: string;
|
|
169
|
-
readonly value?: Catalog[];
|
|
170
|
-
}
|
|
171
|
-
|
|
172
|
-
// @public
|
|
173
|
-
export interface CatalogProperties extends CatalogUpdateProperties {
|
|
174
|
-
readonly connectionState?: CatalogConnectionState;
|
|
175
|
-
readonly lastConnectionTime?: Date;
|
|
176
|
-
readonly lastSyncStats?: SyncStats;
|
|
177
|
-
readonly lastSyncTime?: Date;
|
|
178
|
-
readonly provisioningState?: ProvisioningState;
|
|
179
|
-
readonly syncState?: CatalogSyncState;
|
|
180
|
-
}
|
|
181
|
-
|
|
182
|
-
// @public
|
|
183
|
-
export interface CatalogResourceValidationErrorDetails {
|
|
184
|
-
readonly errors?: CatalogErrorDetails[];
|
|
185
|
-
}
|
|
186
|
-
|
|
187
|
-
// @public
|
|
188
|
-
export type CatalogResourceValidationStatus = string;
|
|
189
|
-
|
|
190
|
-
// @public
|
|
191
|
-
export interface Catalogs {
|
|
192
|
-
beginConnect(resourceGroupName: string, devCenterName: string, catalogName: string, options?: CatalogsConnectOptionalParams): Promise<SimplePollerLike<OperationState<CatalogsConnectResponse>, CatalogsConnectResponse>>;
|
|
193
|
-
beginConnectAndWait(resourceGroupName: string, devCenterName: string, catalogName: string, options?: CatalogsConnectOptionalParams): Promise<CatalogsConnectResponse>;
|
|
194
|
-
beginCreateOrUpdate(resourceGroupName: string, devCenterName: string, catalogName: string, body: Catalog, options?: CatalogsCreateOrUpdateOptionalParams): Promise<SimplePollerLike<OperationState<CatalogsCreateOrUpdateResponse>, CatalogsCreateOrUpdateResponse>>;
|
|
195
|
-
beginCreateOrUpdateAndWait(resourceGroupName: string, devCenterName: string, catalogName: string, body: Catalog, options?: CatalogsCreateOrUpdateOptionalParams): Promise<CatalogsCreateOrUpdateResponse>;
|
|
196
|
-
beginDelete(resourceGroupName: string, devCenterName: string, catalogName: string, options?: CatalogsDeleteOptionalParams): Promise<SimplePollerLike<OperationState<CatalogsDeleteResponse>, CatalogsDeleteResponse>>;
|
|
197
|
-
beginDeleteAndWait(resourceGroupName: string, devCenterName: string, catalogName: string, options?: CatalogsDeleteOptionalParams): Promise<CatalogsDeleteResponse>;
|
|
198
|
-
beginSync(resourceGroupName: string, devCenterName: string, catalogName: string, options?: CatalogsSyncOptionalParams): Promise<SimplePollerLike<OperationState<CatalogsSyncResponse>, CatalogsSyncResponse>>;
|
|
199
|
-
beginSyncAndWait(resourceGroupName: string, devCenterName: string, catalogName: string, options?: CatalogsSyncOptionalParams): Promise<CatalogsSyncResponse>;
|
|
200
|
-
beginUpdate(resourceGroupName: string, devCenterName: string, catalogName: string, body: CatalogUpdate, options?: CatalogsUpdateOptionalParams): Promise<SimplePollerLike<OperationState<CatalogsUpdateResponse>, CatalogsUpdateResponse>>;
|
|
201
|
-
beginUpdateAndWait(resourceGroupName: string, devCenterName: string, catalogName: string, body: CatalogUpdate, options?: CatalogsUpdateOptionalParams): Promise<CatalogsUpdateResponse>;
|
|
202
|
-
get(resourceGroupName: string, devCenterName: string, catalogName: string, options?: CatalogsGetOptionalParams): Promise<CatalogsGetResponse>;
|
|
203
|
-
getSyncErrorDetails(resourceGroupName: string, devCenterName: string, catalogName: string, options?: CatalogsGetSyncErrorDetailsOptionalParams): Promise<CatalogsGetSyncErrorDetailsResponse>;
|
|
204
|
-
listByDevCenter(resourceGroupName: string, devCenterName: string, options?: CatalogsListByDevCenterOptionalParams): PagedAsyncIterableIterator<Catalog>;
|
|
205
|
-
}
|
|
206
|
-
|
|
207
|
-
// @public
|
|
208
|
-
export interface CatalogsConnectHeaders {
|
|
209
|
-
// (undocumented)
|
|
210
|
-
location?: string;
|
|
211
|
-
}
|
|
212
|
-
|
|
213
|
-
// @public
|
|
214
|
-
export interface CatalogsConnectOptionalParams extends coreClient.OperationOptions {
|
|
215
|
-
resumeFrom?: string;
|
|
216
|
-
updateIntervalInMs?: number;
|
|
217
|
-
}
|
|
218
|
-
|
|
219
|
-
// @public
|
|
220
|
-
export type CatalogsConnectResponse = CatalogsConnectHeaders;
|
|
221
|
-
|
|
222
|
-
// @public
|
|
223
|
-
export interface CatalogsCreateOrUpdateOptionalParams extends coreClient.OperationOptions {
|
|
224
|
-
resumeFrom?: string;
|
|
225
|
-
updateIntervalInMs?: number;
|
|
226
|
-
}
|
|
227
|
-
|
|
228
|
-
// @public
|
|
229
|
-
export type CatalogsCreateOrUpdateResponse = Catalog;
|
|
230
|
-
|
|
231
|
-
// @public
|
|
232
|
-
export interface CatalogsDeleteHeaders {
|
|
233
|
-
// (undocumented)
|
|
234
|
-
location?: string;
|
|
235
|
-
}
|
|
236
|
-
|
|
237
|
-
// @public
|
|
238
|
-
export interface CatalogsDeleteOptionalParams extends coreClient.OperationOptions {
|
|
239
|
-
resumeFrom?: string;
|
|
240
|
-
updateIntervalInMs?: number;
|
|
241
|
-
}
|
|
242
|
-
|
|
243
|
-
// @public
|
|
244
|
-
export type CatalogsDeleteResponse = CatalogsDeleteHeaders;
|
|
245
|
-
|
|
246
|
-
// @public
|
|
247
|
-
export interface CatalogsGetOptionalParams extends coreClient.OperationOptions {
|
|
248
|
-
}
|
|
249
|
-
|
|
250
|
-
// @public
|
|
251
|
-
export type CatalogsGetResponse = Catalog;
|
|
252
|
-
|
|
253
|
-
// @public
|
|
254
|
-
export interface CatalogsGetSyncErrorDetailsOptionalParams extends coreClient.OperationOptions {
|
|
255
|
-
}
|
|
256
|
-
|
|
257
|
-
// @public
|
|
258
|
-
export type CatalogsGetSyncErrorDetailsResponse = SyncErrorDetails;
|
|
259
|
-
|
|
260
|
-
// @public
|
|
261
|
-
export interface CatalogsListByDevCenterNextOptionalParams extends coreClient.OperationOptions {
|
|
262
|
-
}
|
|
263
|
-
|
|
264
|
-
// @public
|
|
265
|
-
export type CatalogsListByDevCenterNextResponse = CatalogListResult;
|
|
266
|
-
|
|
267
|
-
// @public
|
|
268
|
-
export interface CatalogsListByDevCenterOptionalParams extends coreClient.OperationOptions {
|
|
269
|
-
top?: number;
|
|
270
|
-
}
|
|
271
|
-
|
|
272
|
-
// @public
|
|
273
|
-
export type CatalogsListByDevCenterResponse = CatalogListResult;
|
|
274
|
-
|
|
275
|
-
// @public
|
|
276
|
-
export interface CatalogsSyncHeaders {
|
|
277
|
-
// (undocumented)
|
|
278
|
-
location?: string;
|
|
279
|
-
}
|
|
280
|
-
|
|
281
|
-
// @public
|
|
282
|
-
export interface CatalogsSyncOptionalParams extends coreClient.OperationOptions {
|
|
283
|
-
resumeFrom?: string;
|
|
284
|
-
updateIntervalInMs?: number;
|
|
285
|
-
}
|
|
286
|
-
|
|
287
|
-
// @public
|
|
288
|
-
export type CatalogsSyncResponse = CatalogsSyncHeaders;
|
|
289
|
-
|
|
290
|
-
// @public
|
|
291
|
-
export interface CatalogsUpdateHeaders {
|
|
292
|
-
// (undocumented)
|
|
293
|
-
location?: string;
|
|
294
|
-
}
|
|
295
|
-
|
|
296
|
-
// @public
|
|
297
|
-
export interface CatalogsUpdateOptionalParams extends coreClient.OperationOptions {
|
|
298
|
-
resumeFrom?: string;
|
|
299
|
-
updateIntervalInMs?: number;
|
|
300
|
-
}
|
|
301
|
-
|
|
302
|
-
// @public
|
|
303
|
-
export type CatalogsUpdateResponse = Catalog;
|
|
304
|
-
|
|
305
|
-
// @public
|
|
306
|
-
export interface CatalogSyncError {
|
|
307
|
-
readonly errorDetails?: CatalogErrorDetails[];
|
|
308
|
-
readonly path?: string;
|
|
309
|
-
}
|
|
310
|
-
|
|
311
|
-
// @public
|
|
312
|
-
export type CatalogSyncState = string;
|
|
313
|
-
|
|
314
|
-
// @public
|
|
315
|
-
export type CatalogSyncType = string;
|
|
316
|
-
|
|
317
|
-
// @public
|
|
318
|
-
export interface CatalogUpdate {
|
|
319
|
-
adoGit?: GitCatalog;
|
|
320
|
-
gitHub?: GitCatalog;
|
|
321
|
-
syncType?: CatalogSyncType;
|
|
322
|
-
tags?: {
|
|
323
|
-
[propertyName: string]: string;
|
|
324
|
-
};
|
|
325
|
-
}
|
|
326
|
-
|
|
327
|
-
// @public
|
|
328
|
-
export interface CatalogUpdateProperties {
|
|
329
|
-
adoGit?: GitCatalog;
|
|
330
|
-
gitHub?: GitCatalog;
|
|
331
|
-
syncType?: CatalogSyncType;
|
|
332
|
-
tags?: {
|
|
333
|
-
[propertyName: string]: string;
|
|
334
|
-
};
|
|
335
|
-
}
|
|
336
|
-
|
|
337
|
-
// @public
|
|
338
|
-
export interface CheckNameAvailability {
|
|
339
|
-
execute(nameAvailabilityRequest: CheckNameAvailabilityRequest, options?: CheckNameAvailabilityExecuteOptionalParams): Promise<CheckNameAvailabilityExecuteResponse>;
|
|
340
|
-
}
|
|
341
|
-
|
|
342
|
-
// @public
|
|
343
|
-
export interface CheckNameAvailabilityExecuteOptionalParams extends coreClient.OperationOptions {
|
|
344
|
-
}
|
|
345
|
-
|
|
346
|
-
// @public
|
|
347
|
-
export type CheckNameAvailabilityExecuteResponse = CheckNameAvailabilityResponse;
|
|
348
|
-
|
|
349
|
-
// @public
|
|
350
|
-
export type CheckNameAvailabilityReason = string;
|
|
351
|
-
|
|
352
|
-
// @public
|
|
353
|
-
export interface CheckNameAvailabilityRequest {
|
|
354
|
-
name?: string;
|
|
355
|
-
type?: string;
|
|
356
|
-
}
|
|
357
|
-
|
|
358
|
-
// @public
|
|
359
|
-
export interface CheckNameAvailabilityResponse {
|
|
360
|
-
message?: string;
|
|
361
|
-
nameAvailable?: boolean;
|
|
362
|
-
reason?: CheckNameAvailabilityReason;
|
|
363
|
-
}
|
|
364
|
-
|
|
365
|
-
// @public
|
|
366
|
-
export interface CheckScopedNameAvailability {
|
|
367
|
-
execute(nameAvailabilityRequest: CheckScopedNameAvailabilityRequest, options?: CheckScopedNameAvailabilityExecuteOptionalParams): Promise<CheckScopedNameAvailabilityExecuteResponse>;
|
|
368
|
-
}
|
|
369
|
-
|
|
370
|
-
// @public
|
|
371
|
-
export interface CheckScopedNameAvailabilityExecuteOptionalParams extends coreClient.OperationOptions {
|
|
372
|
-
}
|
|
373
|
-
|
|
374
|
-
// @public
|
|
375
|
-
export type CheckScopedNameAvailabilityExecuteResponse = CheckNameAvailabilityResponse;
|
|
376
|
-
|
|
377
|
-
// @public
|
|
378
|
-
export interface CheckScopedNameAvailabilityRequest {
|
|
379
|
-
name?: string;
|
|
380
|
-
scope?: string;
|
|
381
|
-
type?: string;
|
|
382
|
-
}
|
|
383
|
-
|
|
384
|
-
// @public
|
|
385
|
-
export type CreatedByType = string;
|
|
386
|
-
|
|
387
|
-
// @public
|
|
388
|
-
export interface CustomerManagedKeyEncryption {
|
|
389
|
-
keyEncryptionKeyIdentity?: CustomerManagedKeyEncryptionKeyIdentity;
|
|
390
|
-
keyEncryptionKeyUrl?: string;
|
|
391
|
-
}
|
|
392
|
-
|
|
393
|
-
// @public
|
|
394
|
-
export interface CustomerManagedKeyEncryptionKeyIdentity {
|
|
395
|
-
delegatedIdentityClientId?: string;
|
|
396
|
-
identityType?: IdentityType;
|
|
397
|
-
userAssignedIdentityResourceId?: string;
|
|
398
|
-
}
|
|
399
|
-
|
|
400
|
-
// @public
|
|
401
|
-
export interface DevBoxDefinition extends TrackedResource {
|
|
402
|
-
readonly activeImageReference?: ImageReference;
|
|
403
|
-
hibernateSupport?: HibernateSupport;
|
|
404
|
-
imageReference?: ImageReference;
|
|
405
|
-
readonly imageValidationErrorDetails?: ImageValidationErrorDetails;
|
|
406
|
-
readonly imageValidationStatus?: ImageValidationStatus;
|
|
407
|
-
osStorageType?: string;
|
|
408
|
-
readonly provisioningState?: ProvisioningState;
|
|
409
|
-
sku?: Sku;
|
|
410
|
-
readonly validationStatus?: CatalogResourceValidationStatus;
|
|
411
|
-
}
|
|
412
|
-
|
|
413
|
-
// @public
|
|
414
|
-
export interface DevBoxDefinitionListResult {
|
|
415
|
-
readonly nextLink?: string;
|
|
416
|
-
readonly value?: DevBoxDefinition[];
|
|
417
|
-
}
|
|
418
|
-
|
|
419
|
-
// @public
|
|
420
|
-
export interface DevBoxDefinitionProperties extends DevBoxDefinitionUpdateProperties {
|
|
421
|
-
readonly activeImageReference?: ImageReference;
|
|
422
|
-
readonly imageValidationErrorDetails?: ImageValidationErrorDetails;
|
|
423
|
-
readonly imageValidationStatus?: ImageValidationStatus;
|
|
424
|
-
readonly provisioningState?: ProvisioningState;
|
|
425
|
-
readonly validationStatus?: CatalogResourceValidationStatus;
|
|
426
|
-
}
|
|
427
|
-
|
|
428
|
-
// @public
|
|
429
|
-
export interface DevBoxDefinitions {
|
|
430
|
-
beginCreateOrUpdate(resourceGroupName: string, devCenterName: string, devBoxDefinitionName: string, body: DevBoxDefinition, options?: DevBoxDefinitionsCreateOrUpdateOptionalParams): Promise<SimplePollerLike<OperationState<DevBoxDefinitionsCreateOrUpdateResponse>, DevBoxDefinitionsCreateOrUpdateResponse>>;
|
|
431
|
-
beginCreateOrUpdateAndWait(resourceGroupName: string, devCenterName: string, devBoxDefinitionName: string, body: DevBoxDefinition, options?: DevBoxDefinitionsCreateOrUpdateOptionalParams): Promise<DevBoxDefinitionsCreateOrUpdateResponse>;
|
|
432
|
-
beginDelete(resourceGroupName: string, devCenterName: string, devBoxDefinitionName: string, options?: DevBoxDefinitionsDeleteOptionalParams): Promise<SimplePollerLike<OperationState<DevBoxDefinitionsDeleteResponse>, DevBoxDefinitionsDeleteResponse>>;
|
|
433
|
-
beginDeleteAndWait(resourceGroupName: string, devCenterName: string, devBoxDefinitionName: string, options?: DevBoxDefinitionsDeleteOptionalParams): Promise<DevBoxDefinitionsDeleteResponse>;
|
|
434
|
-
beginUpdate(resourceGroupName: string, devCenterName: string, devBoxDefinitionName: string, body: DevBoxDefinitionUpdate, options?: DevBoxDefinitionsUpdateOptionalParams): Promise<SimplePollerLike<OperationState<DevBoxDefinitionsUpdateResponse>, DevBoxDefinitionsUpdateResponse>>;
|
|
435
|
-
beginUpdateAndWait(resourceGroupName: string, devCenterName: string, devBoxDefinitionName: string, body: DevBoxDefinitionUpdate, options?: DevBoxDefinitionsUpdateOptionalParams): Promise<DevBoxDefinitionsUpdateResponse>;
|
|
436
|
-
get(resourceGroupName: string, devCenterName: string, devBoxDefinitionName: string, options?: DevBoxDefinitionsGetOptionalParams): Promise<DevBoxDefinitionsGetResponse>;
|
|
437
|
-
getByProject(resourceGroupName: string, projectName: string, devBoxDefinitionName: string, options?: DevBoxDefinitionsGetByProjectOptionalParams): Promise<DevBoxDefinitionsGetByProjectResponse>;
|
|
438
|
-
listByDevCenter(resourceGroupName: string, devCenterName: string, options?: DevBoxDefinitionsListByDevCenterOptionalParams): PagedAsyncIterableIterator<DevBoxDefinition>;
|
|
439
|
-
listByProject(resourceGroupName: string, projectName: string, options?: DevBoxDefinitionsListByProjectOptionalParams): PagedAsyncIterableIterator<DevBoxDefinition>;
|
|
440
|
-
}
|
|
441
|
-
|
|
442
|
-
// @public
|
|
443
|
-
export interface DevBoxDefinitionsCreateOrUpdateOptionalParams extends coreClient.OperationOptions {
|
|
444
|
-
resumeFrom?: string;
|
|
445
|
-
updateIntervalInMs?: number;
|
|
446
|
-
}
|
|
447
|
-
|
|
448
|
-
// @public
|
|
449
|
-
export type DevBoxDefinitionsCreateOrUpdateResponse = DevBoxDefinition;
|
|
450
|
-
|
|
451
|
-
// @public
|
|
452
|
-
export interface DevBoxDefinitionsDeleteHeaders {
|
|
453
|
-
// (undocumented)
|
|
454
|
-
location?: string;
|
|
455
|
-
}
|
|
456
|
-
|
|
457
|
-
// @public
|
|
458
|
-
export interface DevBoxDefinitionsDeleteOptionalParams extends coreClient.OperationOptions {
|
|
459
|
-
resumeFrom?: string;
|
|
460
|
-
updateIntervalInMs?: number;
|
|
461
|
-
}
|
|
462
|
-
|
|
463
|
-
// @public
|
|
464
|
-
export type DevBoxDefinitionsDeleteResponse = DevBoxDefinitionsDeleteHeaders;
|
|
465
|
-
|
|
466
|
-
// @public
|
|
467
|
-
export interface DevBoxDefinitionsGetByProjectOptionalParams extends coreClient.OperationOptions {
|
|
468
|
-
}
|
|
469
|
-
|
|
470
|
-
// @public
|
|
471
|
-
export type DevBoxDefinitionsGetByProjectResponse = DevBoxDefinition;
|
|
472
|
-
|
|
473
|
-
// @public
|
|
474
|
-
export interface DevBoxDefinitionsGetOptionalParams extends coreClient.OperationOptions {
|
|
475
|
-
}
|
|
476
|
-
|
|
477
|
-
// @public
|
|
478
|
-
export type DevBoxDefinitionsGetResponse = DevBoxDefinition;
|
|
479
|
-
|
|
480
|
-
// @public
|
|
481
|
-
export interface DevBoxDefinitionsListByDevCenterNextOptionalParams extends coreClient.OperationOptions {
|
|
482
|
-
}
|
|
483
|
-
|
|
484
|
-
// @public
|
|
485
|
-
export type DevBoxDefinitionsListByDevCenterNextResponse = DevBoxDefinitionListResult;
|
|
486
|
-
|
|
487
|
-
// @public
|
|
488
|
-
export interface DevBoxDefinitionsListByDevCenterOptionalParams extends coreClient.OperationOptions {
|
|
489
|
-
top?: number;
|
|
490
|
-
}
|
|
491
|
-
|
|
492
|
-
// @public
|
|
493
|
-
export type DevBoxDefinitionsListByDevCenterResponse = DevBoxDefinitionListResult;
|
|
494
|
-
|
|
495
|
-
// @public
|
|
496
|
-
export interface DevBoxDefinitionsListByProjectNextOptionalParams extends coreClient.OperationOptions {
|
|
497
|
-
}
|
|
498
|
-
|
|
499
|
-
// @public
|
|
500
|
-
export type DevBoxDefinitionsListByProjectNextResponse = DevBoxDefinitionListResult;
|
|
501
|
-
|
|
502
|
-
// @public
|
|
503
|
-
export interface DevBoxDefinitionsListByProjectOptionalParams extends coreClient.OperationOptions {
|
|
504
|
-
top?: number;
|
|
505
|
-
}
|
|
506
|
-
|
|
507
|
-
// @public
|
|
508
|
-
export type DevBoxDefinitionsListByProjectResponse = DevBoxDefinitionListResult;
|
|
509
|
-
|
|
510
|
-
// @public
|
|
511
|
-
export interface DevBoxDefinitionsUpdateHeaders {
|
|
512
|
-
// (undocumented)
|
|
513
|
-
location?: string;
|
|
514
|
-
}
|
|
515
|
-
|
|
516
|
-
// @public
|
|
517
|
-
export interface DevBoxDefinitionsUpdateOptionalParams extends coreClient.OperationOptions {
|
|
518
|
-
resumeFrom?: string;
|
|
519
|
-
updateIntervalInMs?: number;
|
|
520
|
-
}
|
|
521
|
-
|
|
522
|
-
// @public
|
|
523
|
-
export type DevBoxDefinitionsUpdateResponse = DevBoxDefinition;
|
|
524
|
-
|
|
525
|
-
// @public
|
|
526
|
-
export interface DevBoxDefinitionUpdate extends TrackedResourceUpdate {
|
|
527
|
-
hibernateSupport?: HibernateSupport;
|
|
528
|
-
imageReference?: ImageReference;
|
|
529
|
-
osStorageType?: string;
|
|
530
|
-
sku?: Sku;
|
|
531
|
-
}
|
|
532
|
-
|
|
533
|
-
// @public
|
|
534
|
-
export interface DevBoxDefinitionUpdateProperties {
|
|
535
|
-
hibernateSupport?: HibernateSupport;
|
|
536
|
-
imageReference?: ImageReference;
|
|
537
|
-
osStorageType?: string;
|
|
538
|
-
sku?: Sku;
|
|
539
|
-
}
|
|
540
|
-
|
|
541
|
-
// @public
|
|
542
|
-
export interface DevCenter extends TrackedResource {
|
|
543
|
-
readonly devCenterUri?: string;
|
|
544
|
-
displayName?: string;
|
|
545
|
-
encryption?: Encryption;
|
|
546
|
-
identity?: ManagedServiceIdentity;
|
|
547
|
-
projectCatalogSettings?: DevCenterProjectCatalogSettings;
|
|
548
|
-
readonly provisioningState?: ProvisioningState;
|
|
549
|
-
}
|
|
550
|
-
|
|
551
|
-
// @public (undocumented)
|
|
552
|
-
export class DevCenterClient extends coreClient.ServiceClient {
|
|
553
|
-
// (undocumented)
|
|
554
|
-
$host: string;
|
|
555
|
-
constructor(credentials: coreAuth.TokenCredential, subscriptionId: string, options?: DevCenterClientOptionalParams);
|
|
556
|
-
// (undocumented)
|
|
557
|
-
apiVersion: string;
|
|
558
|
-
// (undocumented)
|
|
559
|
-
attachedNetworks: AttachedNetworks;
|
|
560
|
-
// (undocumented)
|
|
561
|
-
catalogs: Catalogs;
|
|
562
|
-
// (undocumented)
|
|
563
|
-
checkNameAvailability: CheckNameAvailability;
|
|
564
|
-
// (undocumented)
|
|
565
|
-
checkScopedNameAvailability: CheckScopedNameAvailability;
|
|
566
|
-
// (undocumented)
|
|
567
|
-
devBoxDefinitions: DevBoxDefinitions;
|
|
568
|
-
// (undocumented)
|
|
569
|
-
devCenters: DevCenters;
|
|
570
|
-
// (undocumented)
|
|
571
|
-
environmentDefinitions: EnvironmentDefinitions;
|
|
572
|
-
// (undocumented)
|
|
573
|
-
environmentTypes: EnvironmentTypes;
|
|
574
|
-
// (undocumented)
|
|
575
|
-
galleries: Galleries;
|
|
576
|
-
// (undocumented)
|
|
577
|
-
images: Images;
|
|
578
|
-
// (undocumented)
|
|
579
|
-
imageVersions: ImageVersions;
|
|
580
|
-
// (undocumented)
|
|
581
|
-
networkConnections: NetworkConnections;
|
|
582
|
-
// (undocumented)
|
|
583
|
-
operations: Operations;
|
|
584
|
-
// (undocumented)
|
|
585
|
-
operationStatuses: OperationStatuses;
|
|
586
|
-
// (undocumented)
|
|
587
|
-
pools: Pools;
|
|
588
|
-
// (undocumented)
|
|
589
|
-
projectAllowedEnvironmentTypes: ProjectAllowedEnvironmentTypes;
|
|
590
|
-
// (undocumented)
|
|
591
|
-
projectCatalogEnvironmentDefinitions: ProjectCatalogEnvironmentDefinitions;
|
|
592
|
-
// (undocumented)
|
|
593
|
-
projectCatalogs: ProjectCatalogs;
|
|
594
|
-
// (undocumented)
|
|
595
|
-
projectEnvironmentTypes: ProjectEnvironmentTypes;
|
|
596
|
-
// (undocumented)
|
|
597
|
-
projects: Projects;
|
|
598
|
-
// (undocumented)
|
|
599
|
-
schedules: Schedules;
|
|
600
|
-
// (undocumented)
|
|
601
|
-
skus: Skus;
|
|
602
|
-
// (undocumented)
|
|
603
|
-
subscriptionId: string;
|
|
604
|
-
// (undocumented)
|
|
605
|
-
usages: Usages;
|
|
606
|
-
}
|
|
607
|
-
|
|
608
|
-
// @public
|
|
609
|
-
export interface DevCenterClientOptionalParams extends coreClient.ServiceClientOptions {
|
|
610
|
-
$host?: string;
|
|
611
|
-
apiVersion?: string;
|
|
612
|
-
endpoint?: string;
|
|
613
|
-
}
|
|
614
|
-
|
|
615
|
-
// @public
|
|
616
|
-
export interface DevCenterListResult {
|
|
617
|
-
readonly nextLink?: string;
|
|
618
|
-
readonly value?: DevCenter[];
|
|
619
|
-
}
|
|
620
|
-
|
|
621
|
-
// @public
|
|
622
|
-
export interface DevCenterProjectCatalogSettings {
|
|
623
|
-
catalogItemSyncEnableStatus?: CatalogItemSyncEnableStatus;
|
|
624
|
-
}
|
|
625
|
-
|
|
626
|
-
// @public
|
|
627
|
-
export interface DevCenterProperties extends DevCenterUpdateProperties {
|
|
628
|
-
readonly devCenterUri?: string;
|
|
629
|
-
readonly provisioningState?: ProvisioningState;
|
|
630
|
-
}
|
|
631
|
-
|
|
632
|
-
// @public
|
|
633
|
-
export interface DevCenters {
|
|
634
|
-
beginCreateOrUpdate(resourceGroupName: string, devCenterName: string, body: DevCenter, options?: DevCentersCreateOrUpdateOptionalParams): Promise<SimplePollerLike<OperationState<DevCentersCreateOrUpdateResponse>, DevCentersCreateOrUpdateResponse>>;
|
|
635
|
-
beginCreateOrUpdateAndWait(resourceGroupName: string, devCenterName: string, body: DevCenter, options?: DevCentersCreateOrUpdateOptionalParams): Promise<DevCentersCreateOrUpdateResponse>;
|
|
636
|
-
beginDelete(resourceGroupName: string, devCenterName: string, options?: DevCentersDeleteOptionalParams): Promise<SimplePollerLike<OperationState<DevCentersDeleteResponse>, DevCentersDeleteResponse>>;
|
|
637
|
-
beginDeleteAndWait(resourceGroupName: string, devCenterName: string, options?: DevCentersDeleteOptionalParams): Promise<DevCentersDeleteResponse>;
|
|
638
|
-
beginUpdate(resourceGroupName: string, devCenterName: string, body: DevCenterUpdate, options?: DevCentersUpdateOptionalParams): Promise<SimplePollerLike<OperationState<DevCentersUpdateResponse>, DevCentersUpdateResponse>>;
|
|
639
|
-
beginUpdateAndWait(resourceGroupName: string, devCenterName: string, body: DevCenterUpdate, options?: DevCentersUpdateOptionalParams): Promise<DevCentersUpdateResponse>;
|
|
640
|
-
get(resourceGroupName: string, devCenterName: string, options?: DevCentersGetOptionalParams): Promise<DevCentersGetResponse>;
|
|
641
|
-
listByResourceGroup(resourceGroupName: string, options?: DevCentersListByResourceGroupOptionalParams): PagedAsyncIterableIterator<DevCenter>;
|
|
642
|
-
listBySubscription(options?: DevCentersListBySubscriptionOptionalParams): PagedAsyncIterableIterator<DevCenter>;
|
|
643
|
-
}
|
|
644
|
-
|
|
645
|
-
// @public
|
|
646
|
-
export interface DevCentersCreateOrUpdateOptionalParams extends coreClient.OperationOptions {
|
|
647
|
-
resumeFrom?: string;
|
|
648
|
-
updateIntervalInMs?: number;
|
|
649
|
-
}
|
|
650
|
-
|
|
651
|
-
// @public
|
|
652
|
-
export type DevCentersCreateOrUpdateResponse = DevCenter;
|
|
653
|
-
|
|
654
|
-
// @public
|
|
655
|
-
export interface DevCentersDeleteHeaders {
|
|
656
|
-
// (undocumented)
|
|
657
|
-
location?: string;
|
|
658
|
-
}
|
|
659
|
-
|
|
660
|
-
// @public
|
|
661
|
-
export interface DevCentersDeleteOptionalParams extends coreClient.OperationOptions {
|
|
662
|
-
resumeFrom?: string;
|
|
663
|
-
updateIntervalInMs?: number;
|
|
664
|
-
}
|
|
665
|
-
|
|
666
|
-
// @public
|
|
667
|
-
export type DevCentersDeleteResponse = DevCentersDeleteHeaders;
|
|
668
|
-
|
|
669
|
-
// @public
|
|
670
|
-
export interface DevCentersGetOptionalParams extends coreClient.OperationOptions {
|
|
671
|
-
}
|
|
672
|
-
|
|
673
|
-
// @public
|
|
674
|
-
export type DevCentersGetResponse = DevCenter;
|
|
675
|
-
|
|
676
|
-
// @public
|
|
677
|
-
export interface DevCenterSku extends Sku {
|
|
678
|
-
readonly capabilities?: Capability[];
|
|
679
|
-
readonly locations?: string[];
|
|
680
|
-
readonly resourceType?: string;
|
|
681
|
-
}
|
|
682
|
-
|
|
683
|
-
// @public
|
|
684
|
-
export interface DevCentersListByResourceGroupNextOptionalParams extends coreClient.OperationOptions {
|
|
685
|
-
}
|
|
686
|
-
|
|
687
|
-
// @public
|
|
688
|
-
export type DevCentersListByResourceGroupNextResponse = DevCenterListResult;
|
|
689
|
-
|
|
690
|
-
// @public
|
|
691
|
-
export interface DevCentersListByResourceGroupOptionalParams extends coreClient.OperationOptions {
|
|
692
|
-
top?: number;
|
|
693
|
-
}
|
|
694
|
-
|
|
695
|
-
// @public
|
|
696
|
-
export type DevCentersListByResourceGroupResponse = DevCenterListResult;
|
|
697
|
-
|
|
698
|
-
// @public
|
|
699
|
-
export interface DevCentersListBySubscriptionNextOptionalParams extends coreClient.OperationOptions {
|
|
700
|
-
}
|
|
701
|
-
|
|
702
|
-
// @public
|
|
703
|
-
export type DevCentersListBySubscriptionNextResponse = DevCenterListResult;
|
|
704
|
-
|
|
705
|
-
// @public
|
|
706
|
-
export interface DevCentersListBySubscriptionOptionalParams extends coreClient.OperationOptions {
|
|
707
|
-
top?: number;
|
|
708
|
-
}
|
|
709
|
-
|
|
710
|
-
// @public
|
|
711
|
-
export type DevCentersListBySubscriptionResponse = DevCenterListResult;
|
|
712
|
-
|
|
713
|
-
// @public
|
|
714
|
-
export interface DevCentersUpdateHeaders {
|
|
715
|
-
// (undocumented)
|
|
716
|
-
location?: string;
|
|
717
|
-
}
|
|
718
|
-
|
|
719
|
-
// @public
|
|
720
|
-
export interface DevCentersUpdateOptionalParams extends coreClient.OperationOptions {
|
|
721
|
-
resumeFrom?: string;
|
|
722
|
-
updateIntervalInMs?: number;
|
|
723
|
-
}
|
|
724
|
-
|
|
725
|
-
// @public
|
|
726
|
-
export type DevCentersUpdateResponse = DevCenter;
|
|
727
|
-
|
|
728
|
-
// @public
|
|
729
|
-
export interface DevCenterUpdate extends TrackedResourceUpdate {
|
|
730
|
-
displayName?: string;
|
|
731
|
-
encryption?: Encryption;
|
|
732
|
-
identity?: ManagedServiceIdentity;
|
|
733
|
-
projectCatalogSettings?: DevCenterProjectCatalogSettings;
|
|
734
|
-
}
|
|
735
|
-
|
|
736
|
-
// @public
|
|
737
|
-
export interface DevCenterUpdateProperties {
|
|
738
|
-
displayName?: string;
|
|
739
|
-
encryption?: Encryption;
|
|
740
|
-
projectCatalogSettings?: DevCenterProjectCatalogSettings;
|
|
741
|
-
}
|
|
742
|
-
|
|
743
|
-
// @public
|
|
744
|
-
export type DomainJoinType = string;
|
|
745
|
-
|
|
746
|
-
// @public (undocumented)
|
|
747
|
-
export interface Encryption {
|
|
748
|
-
customerManagedKeyEncryption?: CustomerManagedKeyEncryption;
|
|
749
|
-
}
|
|
750
|
-
|
|
751
|
-
// @public
|
|
752
|
-
export interface EndpointDependency {
|
|
753
|
-
readonly description?: string;
|
|
754
|
-
readonly domainName?: string;
|
|
755
|
-
readonly endpointDetails?: EndpointDetail[];
|
|
756
|
-
}
|
|
757
|
-
|
|
758
|
-
// @public
|
|
759
|
-
export interface EndpointDetail {
|
|
760
|
-
readonly port?: number;
|
|
761
|
-
}
|
|
762
|
-
|
|
763
|
-
// @public
|
|
764
|
-
export interface EnvironmentDefinition extends ProxyResource {
|
|
765
|
-
readonly description?: string;
|
|
766
|
-
readonly parameters?: EnvironmentDefinitionParameter[];
|
|
767
|
-
readonly templatePath?: string;
|
|
768
|
-
readonly validationStatus?: CatalogResourceValidationStatus;
|
|
769
|
-
}
|
|
770
|
-
|
|
771
|
-
// @public
|
|
772
|
-
export interface EnvironmentDefinitionListResult {
|
|
773
|
-
readonly nextLink?: string;
|
|
774
|
-
readonly value?: EnvironmentDefinition[];
|
|
775
|
-
}
|
|
776
|
-
|
|
777
|
-
// @public
|
|
778
|
-
export interface EnvironmentDefinitionParameter {
|
|
779
|
-
readonly description?: string;
|
|
780
|
-
readonly id?: string;
|
|
781
|
-
readonly name?: string;
|
|
782
|
-
readonly readOnly?: boolean;
|
|
783
|
-
readonly required?: boolean;
|
|
784
|
-
readonly type?: ParameterType;
|
|
785
|
-
}
|
|
786
|
-
|
|
787
|
-
// @public
|
|
788
|
-
export interface EnvironmentDefinitions {
|
|
789
|
-
get(resourceGroupName: string, devCenterName: string, catalogName: string, environmentDefinitionName: string, options?: EnvironmentDefinitionsGetOptionalParams): Promise<EnvironmentDefinitionsGetResponse>;
|
|
790
|
-
getByProjectCatalog(resourceGroupName: string, projectName: string, catalogName: string, environmentDefinitionName: string, options?: EnvironmentDefinitionsGetByProjectCatalogOptionalParams): Promise<EnvironmentDefinitionsGetByProjectCatalogResponse>;
|
|
791
|
-
getErrorDetails(resourceGroupName: string, devCenterName: string, catalogName: string, environmentDefinitionName: string, options?: EnvironmentDefinitionsGetErrorDetailsOptionalParams): Promise<EnvironmentDefinitionsGetErrorDetailsResponse>;
|
|
792
|
-
listByCatalog(resourceGroupName: string, devCenterName: string, catalogName: string, options?: EnvironmentDefinitionsListByCatalogOptionalParams): PagedAsyncIterableIterator<EnvironmentDefinition>;
|
|
793
|
-
listByProjectCatalog(resourceGroupName: string, projectName: string, catalogName: string, options?: EnvironmentDefinitionsListByProjectCatalogOptionalParams): PagedAsyncIterableIterator<EnvironmentDefinition>;
|
|
794
|
-
}
|
|
795
|
-
|
|
796
|
-
// @public
|
|
797
|
-
export interface EnvironmentDefinitionsGetByProjectCatalogOptionalParams extends coreClient.OperationOptions {
|
|
798
|
-
}
|
|
799
|
-
|
|
800
|
-
// @public
|
|
801
|
-
export type EnvironmentDefinitionsGetByProjectCatalogResponse = EnvironmentDefinition;
|
|
802
|
-
|
|
803
|
-
// @public
|
|
804
|
-
export interface EnvironmentDefinitionsGetErrorDetailsOptionalParams extends coreClient.OperationOptions {
|
|
805
|
-
}
|
|
806
|
-
|
|
807
|
-
// @public
|
|
808
|
-
export type EnvironmentDefinitionsGetErrorDetailsResponse = CatalogResourceValidationErrorDetails;
|
|
809
|
-
|
|
810
|
-
// @public
|
|
811
|
-
export interface EnvironmentDefinitionsGetOptionalParams extends coreClient.OperationOptions {
|
|
812
|
-
}
|
|
813
|
-
|
|
814
|
-
// @public
|
|
815
|
-
export type EnvironmentDefinitionsGetResponse = EnvironmentDefinition;
|
|
816
|
-
|
|
817
|
-
// @public
|
|
818
|
-
export interface EnvironmentDefinitionsListByCatalogNextOptionalParams extends coreClient.OperationOptions {
|
|
819
|
-
}
|
|
820
|
-
|
|
821
|
-
// @public
|
|
822
|
-
export type EnvironmentDefinitionsListByCatalogNextResponse = EnvironmentDefinitionListResult;
|
|
823
|
-
|
|
824
|
-
// @public
|
|
825
|
-
export interface EnvironmentDefinitionsListByCatalogOptionalParams extends coreClient.OperationOptions {
|
|
826
|
-
top?: number;
|
|
827
|
-
}
|
|
828
|
-
|
|
829
|
-
// @public
|
|
830
|
-
export type EnvironmentDefinitionsListByCatalogResponse = EnvironmentDefinitionListResult;
|
|
831
|
-
|
|
832
|
-
// @public
|
|
833
|
-
export interface EnvironmentDefinitionsListByProjectCatalogNextOptionalParams extends coreClient.OperationOptions {
|
|
834
|
-
}
|
|
835
|
-
|
|
836
|
-
// @public
|
|
837
|
-
export type EnvironmentDefinitionsListByProjectCatalogNextResponse = EnvironmentDefinitionListResult;
|
|
838
|
-
|
|
839
|
-
// @public
|
|
840
|
-
export interface EnvironmentDefinitionsListByProjectCatalogOptionalParams extends coreClient.OperationOptions {
|
|
841
|
-
}
|
|
842
|
-
|
|
843
|
-
// @public
|
|
844
|
-
export type EnvironmentDefinitionsListByProjectCatalogResponse = EnvironmentDefinitionListResult;
|
|
845
|
-
|
|
846
|
-
// @public
|
|
847
|
-
export interface EnvironmentRole {
|
|
848
|
-
readonly description?: string;
|
|
849
|
-
readonly roleName?: string;
|
|
850
|
-
}
|
|
851
|
-
|
|
852
|
-
// @public
|
|
853
|
-
export interface EnvironmentType extends Resource {
|
|
854
|
-
displayName?: string;
|
|
855
|
-
readonly provisioningState?: ProvisioningState;
|
|
856
|
-
tags?: {
|
|
857
|
-
[propertyName: string]: string;
|
|
858
|
-
};
|
|
859
|
-
}
|
|
860
|
-
|
|
861
|
-
// @public
|
|
862
|
-
export type EnvironmentTypeEnableStatus = string;
|
|
863
|
-
|
|
864
|
-
// @public
|
|
865
|
-
export interface EnvironmentTypeListResult {
|
|
866
|
-
readonly nextLink?: string;
|
|
867
|
-
readonly value?: EnvironmentType[];
|
|
868
|
-
}
|
|
869
|
-
|
|
870
|
-
// @public
|
|
871
|
-
export interface EnvironmentTypeProperties extends EnvironmentTypeUpdateProperties {
|
|
872
|
-
readonly provisioningState?: ProvisioningState;
|
|
873
|
-
}
|
|
874
|
-
|
|
875
|
-
// @public
|
|
876
|
-
export interface EnvironmentTypes {
|
|
877
|
-
createOrUpdate(resourceGroupName: string, devCenterName: string, environmentTypeName: string, body: EnvironmentType, options?: EnvironmentTypesCreateOrUpdateOptionalParams): Promise<EnvironmentTypesCreateOrUpdateResponse>;
|
|
878
|
-
delete(resourceGroupName: string, devCenterName: string, environmentTypeName: string, options?: EnvironmentTypesDeleteOptionalParams): Promise<void>;
|
|
879
|
-
get(resourceGroupName: string, devCenterName: string, environmentTypeName: string, options?: EnvironmentTypesGetOptionalParams): Promise<EnvironmentTypesGetResponse>;
|
|
880
|
-
listByDevCenter(resourceGroupName: string, devCenterName: string, options?: EnvironmentTypesListByDevCenterOptionalParams): PagedAsyncIterableIterator<EnvironmentType>;
|
|
881
|
-
update(resourceGroupName: string, devCenterName: string, environmentTypeName: string, body: EnvironmentTypeUpdate, options?: EnvironmentTypesUpdateOptionalParams): Promise<EnvironmentTypesUpdateResponse>;
|
|
882
|
-
}
|
|
883
|
-
|
|
884
|
-
// @public
|
|
885
|
-
export interface EnvironmentTypesCreateOrUpdateOptionalParams extends coreClient.OperationOptions {
|
|
886
|
-
}
|
|
887
|
-
|
|
888
|
-
// @public
|
|
889
|
-
export type EnvironmentTypesCreateOrUpdateResponse = EnvironmentType;
|
|
890
|
-
|
|
891
|
-
// @public
|
|
892
|
-
export interface EnvironmentTypesDeleteOptionalParams extends coreClient.OperationOptions {
|
|
893
|
-
}
|
|
894
|
-
|
|
895
|
-
// @public
|
|
896
|
-
export interface EnvironmentTypesGetOptionalParams extends coreClient.OperationOptions {
|
|
897
|
-
}
|
|
898
|
-
|
|
899
|
-
// @public
|
|
900
|
-
export type EnvironmentTypesGetResponse = EnvironmentType;
|
|
901
|
-
|
|
902
|
-
// @public
|
|
903
|
-
export interface EnvironmentTypesListByDevCenterNextOptionalParams extends coreClient.OperationOptions {
|
|
904
|
-
}
|
|
905
|
-
|
|
906
|
-
// @public
|
|
907
|
-
export type EnvironmentTypesListByDevCenterNextResponse = EnvironmentTypeListResult;
|
|
908
|
-
|
|
909
|
-
// @public
|
|
910
|
-
export interface EnvironmentTypesListByDevCenterOptionalParams extends coreClient.OperationOptions {
|
|
911
|
-
top?: number;
|
|
912
|
-
}
|
|
913
|
-
|
|
914
|
-
// @public
|
|
915
|
-
export type EnvironmentTypesListByDevCenterResponse = EnvironmentTypeListResult;
|
|
916
|
-
|
|
917
|
-
// @public
|
|
918
|
-
export interface EnvironmentTypesUpdateOptionalParams extends coreClient.OperationOptions {
|
|
919
|
-
}
|
|
920
|
-
|
|
921
|
-
// @public
|
|
922
|
-
export type EnvironmentTypesUpdateResponse = EnvironmentType;
|
|
923
|
-
|
|
924
|
-
// @public
|
|
925
|
-
export interface EnvironmentTypeUpdate {
|
|
926
|
-
displayName?: string;
|
|
927
|
-
tags?: {
|
|
928
|
-
[propertyName: string]: string;
|
|
929
|
-
};
|
|
930
|
-
}
|
|
931
|
-
|
|
932
|
-
// @public
|
|
933
|
-
export interface EnvironmentTypeUpdateProperties {
|
|
934
|
-
displayName?: string;
|
|
935
|
-
}
|
|
936
|
-
|
|
937
|
-
// @public
|
|
938
|
-
export interface ErrorAdditionalInfo {
|
|
939
|
-
readonly info?: Record<string, unknown>;
|
|
940
|
-
readonly type?: string;
|
|
941
|
-
}
|
|
942
|
-
|
|
943
|
-
// @public
|
|
944
|
-
export interface ErrorDetail {
|
|
945
|
-
readonly additionalInfo?: ErrorAdditionalInfo[];
|
|
946
|
-
readonly code?: string;
|
|
947
|
-
readonly details?: ErrorDetail[];
|
|
948
|
-
readonly message?: string;
|
|
949
|
-
readonly target?: string;
|
|
950
|
-
}
|
|
951
|
-
|
|
952
|
-
// @public
|
|
953
|
-
export interface ErrorResponse {
|
|
954
|
-
error?: ErrorDetail;
|
|
955
|
-
}
|
|
956
|
-
|
|
957
|
-
// @public
|
|
958
|
-
export interface Galleries {
|
|
959
|
-
beginCreateOrUpdate(resourceGroupName: string, devCenterName: string, galleryName: string, body: Gallery, options?: GalleriesCreateOrUpdateOptionalParams): Promise<SimplePollerLike<OperationState<GalleriesCreateOrUpdateResponse>, GalleriesCreateOrUpdateResponse>>;
|
|
960
|
-
beginCreateOrUpdateAndWait(resourceGroupName: string, devCenterName: string, galleryName: string, body: Gallery, options?: GalleriesCreateOrUpdateOptionalParams): Promise<GalleriesCreateOrUpdateResponse>;
|
|
961
|
-
beginDelete(resourceGroupName: string, devCenterName: string, galleryName: string, options?: GalleriesDeleteOptionalParams): Promise<SimplePollerLike<OperationState<GalleriesDeleteResponse>, GalleriesDeleteResponse>>;
|
|
962
|
-
beginDeleteAndWait(resourceGroupName: string, devCenterName: string, galleryName: string, options?: GalleriesDeleteOptionalParams): Promise<GalleriesDeleteResponse>;
|
|
963
|
-
get(resourceGroupName: string, devCenterName: string, galleryName: string, options?: GalleriesGetOptionalParams): Promise<GalleriesGetResponse>;
|
|
964
|
-
listByDevCenter(resourceGroupName: string, devCenterName: string, options?: GalleriesListByDevCenterOptionalParams): PagedAsyncIterableIterator<Gallery>;
|
|
965
|
-
}
|
|
966
|
-
|
|
967
|
-
// @public
|
|
968
|
-
export interface GalleriesCreateOrUpdateOptionalParams extends coreClient.OperationOptions {
|
|
969
|
-
resumeFrom?: string;
|
|
970
|
-
updateIntervalInMs?: number;
|
|
971
|
-
}
|
|
972
|
-
|
|
973
|
-
// @public
|
|
974
|
-
export type GalleriesCreateOrUpdateResponse = Gallery;
|
|
975
|
-
|
|
976
|
-
// @public
|
|
977
|
-
export interface GalleriesDeleteHeaders {
|
|
978
|
-
// (undocumented)
|
|
979
|
-
location?: string;
|
|
980
|
-
}
|
|
981
|
-
|
|
982
|
-
// @public
|
|
983
|
-
export interface GalleriesDeleteOptionalParams extends coreClient.OperationOptions {
|
|
984
|
-
resumeFrom?: string;
|
|
985
|
-
updateIntervalInMs?: number;
|
|
986
|
-
}
|
|
987
|
-
|
|
988
|
-
// @public
|
|
989
|
-
export type GalleriesDeleteResponse = GalleriesDeleteHeaders;
|
|
990
|
-
|
|
991
|
-
// @public
|
|
992
|
-
export interface GalleriesGetOptionalParams extends coreClient.OperationOptions {
|
|
993
|
-
}
|
|
994
|
-
|
|
995
|
-
// @public
|
|
996
|
-
export type GalleriesGetResponse = Gallery;
|
|
997
|
-
|
|
998
|
-
// @public
|
|
999
|
-
export interface GalleriesListByDevCenterNextOptionalParams extends coreClient.OperationOptions {
|
|
1000
|
-
}
|
|
1001
|
-
|
|
1002
|
-
// @public
|
|
1003
|
-
export type GalleriesListByDevCenterNextResponse = GalleryListResult;
|
|
1004
|
-
|
|
1005
|
-
// @public
|
|
1006
|
-
export interface GalleriesListByDevCenterOptionalParams extends coreClient.OperationOptions {
|
|
1007
|
-
top?: number;
|
|
1008
|
-
}
|
|
1009
|
-
|
|
1010
|
-
// @public
|
|
1011
|
-
export type GalleriesListByDevCenterResponse = GalleryListResult;
|
|
1012
|
-
|
|
1013
|
-
// @public
|
|
1014
|
-
export interface Gallery extends Resource {
|
|
1015
|
-
galleryResourceId?: string;
|
|
1016
|
-
readonly provisioningState?: ProvisioningState;
|
|
1017
|
-
}
|
|
1018
|
-
|
|
1019
|
-
// @public
|
|
1020
|
-
export interface GalleryListResult {
|
|
1021
|
-
readonly nextLink?: string;
|
|
1022
|
-
readonly value?: Gallery[];
|
|
1023
|
-
}
|
|
1024
|
-
|
|
1025
|
-
// @public
|
|
1026
|
-
export function getContinuationToken(page: unknown): string | undefined;
|
|
1027
|
-
|
|
1028
|
-
// @public
|
|
1029
|
-
export interface GitCatalog {
|
|
1030
|
-
branch?: string;
|
|
1031
|
-
path?: string;
|
|
1032
|
-
secretIdentifier?: string;
|
|
1033
|
-
uri?: string;
|
|
1034
|
-
}
|
|
1035
|
-
|
|
1036
|
-
// @public
|
|
1037
|
-
export interface HealthCheck {
|
|
1038
|
-
readonly additionalDetails?: string;
|
|
1039
|
-
readonly displayName?: string;
|
|
1040
|
-
readonly endDateTime?: Date;
|
|
1041
|
-
readonly errorType?: string;
|
|
1042
|
-
readonly recommendedAction?: string;
|
|
1043
|
-
readonly startDateTime?: Date;
|
|
1044
|
-
readonly status?: HealthCheckStatus;
|
|
1045
|
-
}
|
|
1046
|
-
|
|
1047
|
-
// @public
|
|
1048
|
-
export type HealthCheckStatus = string;
|
|
1049
|
-
|
|
1050
|
-
// @public
|
|
1051
|
-
export interface HealthCheckStatusDetails extends Resource {
|
|
1052
|
-
readonly endDateTime?: Date;
|
|
1053
|
-
readonly healthChecks?: HealthCheck[];
|
|
1054
|
-
readonly startDateTime?: Date;
|
|
1055
|
-
}
|
|
1056
|
-
|
|
1057
|
-
// @public
|
|
1058
|
-
export interface HealthCheckStatusDetailsListResult {
|
|
1059
|
-
readonly nextLink?: string;
|
|
1060
|
-
readonly value?: HealthCheckStatusDetails[];
|
|
1061
|
-
}
|
|
1062
|
-
|
|
1063
|
-
// @public
|
|
1064
|
-
export type HealthStatus = string;
|
|
1065
|
-
|
|
1066
|
-
// @public
|
|
1067
|
-
export interface HealthStatusDetail {
|
|
1068
|
-
readonly code?: string;
|
|
1069
|
-
readonly message?: string;
|
|
1070
|
-
}
|
|
1071
|
-
|
|
1072
|
-
// @public
|
|
1073
|
-
export type HibernateSupport = string;
|
|
1074
|
-
|
|
1075
|
-
// @public
|
|
1076
|
-
export type IdentityType = string;
|
|
1077
|
-
|
|
1078
|
-
// @public
|
|
1079
|
-
export interface Image extends ProxyResource {
|
|
1080
|
-
readonly description?: string;
|
|
1081
|
-
readonly hibernateSupport?: HibernateSupport;
|
|
1082
|
-
readonly offer?: string;
|
|
1083
|
-
readonly provisioningState?: ProvisioningState;
|
|
1084
|
-
readonly publisher?: string;
|
|
1085
|
-
readonly recommendedMachineConfiguration?: RecommendedMachineConfiguration;
|
|
1086
|
-
readonly sku?: string;
|
|
1087
|
-
}
|
|
1088
|
-
|
|
1089
|
-
// @public
|
|
1090
|
-
export interface ImageListResult {
|
|
1091
|
-
readonly nextLink?: string;
|
|
1092
|
-
readonly value?: Image[];
|
|
1093
|
-
}
|
|
1094
|
-
|
|
1095
|
-
// @public
|
|
1096
|
-
export interface ImageReference {
|
|
1097
|
-
readonly exactVersion?: string;
|
|
1098
|
-
id?: string;
|
|
1099
|
-
}
|
|
1100
|
-
|
|
1101
|
-
// @public
|
|
1102
|
-
export interface Images {
|
|
1103
|
-
get(resourceGroupName: string, devCenterName: string, galleryName: string, imageName: string, options?: ImagesGetOptionalParams): Promise<ImagesGetResponse>;
|
|
1104
|
-
listByDevCenter(resourceGroupName: string, devCenterName: string, options?: ImagesListByDevCenterOptionalParams): PagedAsyncIterableIterator<Image>;
|
|
1105
|
-
listByGallery(resourceGroupName: string, devCenterName: string, galleryName: string, options?: ImagesListByGalleryOptionalParams): PagedAsyncIterableIterator<Image>;
|
|
1106
|
-
}
|
|
1107
|
-
|
|
1108
|
-
// @public
|
|
1109
|
-
export interface ImagesGetOptionalParams extends coreClient.OperationOptions {
|
|
1110
|
-
}
|
|
1111
|
-
|
|
1112
|
-
// @public
|
|
1113
|
-
export type ImagesGetResponse = Image;
|
|
1114
|
-
|
|
1115
|
-
// @public
|
|
1116
|
-
export interface ImagesListByDevCenterNextOptionalParams extends coreClient.OperationOptions {
|
|
1117
|
-
}
|
|
1118
|
-
|
|
1119
|
-
// @public
|
|
1120
|
-
export type ImagesListByDevCenterNextResponse = ImageListResult;
|
|
1121
|
-
|
|
1122
|
-
// @public
|
|
1123
|
-
export interface ImagesListByDevCenterOptionalParams extends coreClient.OperationOptions {
|
|
1124
|
-
top?: number;
|
|
1125
|
-
}
|
|
1126
|
-
|
|
1127
|
-
// @public
|
|
1128
|
-
export type ImagesListByDevCenterResponse = ImageListResult;
|
|
1129
|
-
|
|
1130
|
-
// @public
|
|
1131
|
-
export interface ImagesListByGalleryNextOptionalParams extends coreClient.OperationOptions {
|
|
1132
|
-
}
|
|
1133
|
-
|
|
1134
|
-
// @public
|
|
1135
|
-
export type ImagesListByGalleryNextResponse = ImageListResult;
|
|
1136
|
-
|
|
1137
|
-
// @public
|
|
1138
|
-
export interface ImagesListByGalleryOptionalParams extends coreClient.OperationOptions {
|
|
1139
|
-
top?: number;
|
|
1140
|
-
}
|
|
1141
|
-
|
|
1142
|
-
// @public
|
|
1143
|
-
export type ImagesListByGalleryResponse = ImageListResult;
|
|
1144
|
-
|
|
1145
|
-
// @public
|
|
1146
|
-
export interface ImageValidationErrorDetails {
|
|
1147
|
-
code?: string;
|
|
1148
|
-
message?: string;
|
|
1149
|
-
}
|
|
1150
|
-
|
|
1151
|
-
// @public
|
|
1152
|
-
export type ImageValidationStatus = string;
|
|
1153
|
-
|
|
1154
|
-
// @public
|
|
1155
|
-
export interface ImageVersion extends ProxyResource {
|
|
1156
|
-
readonly excludeFromLatest?: boolean;
|
|
1157
|
-
readonly namePropertiesName?: string;
|
|
1158
|
-
readonly osDiskImageSizeInGb?: number;
|
|
1159
|
-
readonly provisioningState?: ProvisioningState;
|
|
1160
|
-
readonly publishedDate?: Date;
|
|
1161
|
-
}
|
|
1162
|
-
|
|
1163
|
-
// @public
|
|
1164
|
-
export interface ImageVersionListResult {
|
|
1165
|
-
readonly nextLink?: string;
|
|
1166
|
-
readonly value?: ImageVersion[];
|
|
1167
|
-
}
|
|
1168
|
-
|
|
1169
|
-
// @public
|
|
1170
|
-
export interface ImageVersions {
|
|
1171
|
-
get(resourceGroupName: string, devCenterName: string, galleryName: string, imageName: string, versionName: string, options?: ImageVersionsGetOptionalParams): Promise<ImageVersionsGetResponse>;
|
|
1172
|
-
listByImage(resourceGroupName: string, devCenterName: string, galleryName: string, imageName: string, options?: ImageVersionsListByImageOptionalParams): PagedAsyncIterableIterator<ImageVersion>;
|
|
1173
|
-
}
|
|
1174
|
-
|
|
1175
|
-
// @public
|
|
1176
|
-
export interface ImageVersionsGetOptionalParams extends coreClient.OperationOptions {
|
|
1177
|
-
}
|
|
1178
|
-
|
|
1179
|
-
// @public
|
|
1180
|
-
export type ImageVersionsGetResponse = ImageVersion;
|
|
1181
|
-
|
|
1182
|
-
// @public
|
|
1183
|
-
export interface ImageVersionsListByImageNextOptionalParams extends coreClient.OperationOptions {
|
|
1184
|
-
}
|
|
1185
|
-
|
|
1186
|
-
// @public
|
|
1187
|
-
export type ImageVersionsListByImageNextResponse = ImageVersionListResult;
|
|
1188
|
-
|
|
1189
|
-
// @public
|
|
1190
|
-
export interface ImageVersionsListByImageOptionalParams extends coreClient.OperationOptions {
|
|
1191
|
-
}
|
|
1192
|
-
|
|
1193
|
-
// @public
|
|
1194
|
-
export type ImageVersionsListByImageResponse = ImageVersionListResult;
|
|
1195
|
-
|
|
1196
|
-
// @public
|
|
1197
|
-
export enum KnownActionType {
|
|
1198
|
-
Internal = "Internal"
|
|
1199
|
-
}
|
|
1200
|
-
|
|
1201
|
-
// @public
|
|
1202
|
-
export enum KnownCatalogConnectionState {
|
|
1203
|
-
Connected = "Connected",
|
|
1204
|
-
Disconnected = "Disconnected"
|
|
1205
|
-
}
|
|
1206
|
-
|
|
1207
|
-
// @public
|
|
1208
|
-
export enum KnownCatalogItemSyncEnableStatus {
|
|
1209
|
-
Disabled = "Disabled",
|
|
1210
|
-
Enabled = "Enabled"
|
|
1211
|
-
}
|
|
1212
|
-
|
|
1213
|
-
// @public
|
|
1214
|
-
export enum KnownCatalogItemType {
|
|
1215
|
-
EnvironmentDefinition = "EnvironmentDefinition"
|
|
1216
|
-
}
|
|
1217
|
-
|
|
1218
|
-
// @public
|
|
1219
|
-
export enum KnownCatalogResourceValidationStatus {
|
|
1220
|
-
Failed = "Failed",
|
|
1221
|
-
Pending = "Pending",
|
|
1222
|
-
Succeeded = "Succeeded",
|
|
1223
|
-
Unknown = "Unknown"
|
|
1224
|
-
}
|
|
1225
|
-
|
|
1226
|
-
// @public
|
|
1227
|
-
export enum KnownCatalogSyncState {
|
|
1228
|
-
Canceled = "Canceled",
|
|
1229
|
-
Failed = "Failed",
|
|
1230
|
-
InProgress = "InProgress",
|
|
1231
|
-
Succeeded = "Succeeded"
|
|
1232
|
-
}
|
|
1233
|
-
|
|
1234
|
-
// @public
|
|
1235
|
-
export enum KnownCatalogSyncType {
|
|
1236
|
-
Manual = "Manual",
|
|
1237
|
-
Scheduled = "Scheduled"
|
|
1238
|
-
}
|
|
1239
|
-
|
|
1240
|
-
// @public
|
|
1241
|
-
export enum KnownCheckNameAvailabilityReason {
|
|
1242
|
-
AlreadyExists = "AlreadyExists",
|
|
1243
|
-
Invalid = "Invalid"
|
|
1244
|
-
}
|
|
1245
|
-
|
|
1246
|
-
// @public
|
|
1247
|
-
export enum KnownCreatedByType {
|
|
1248
|
-
Application = "Application",
|
|
1249
|
-
Key = "Key",
|
|
1250
|
-
ManagedIdentity = "ManagedIdentity",
|
|
1251
|
-
User = "User"
|
|
1252
|
-
}
|
|
1253
|
-
|
|
1254
|
-
// @public
|
|
1255
|
-
export enum KnownDomainJoinType {
|
|
1256
|
-
AzureADJoin = "AzureADJoin",
|
|
1257
|
-
HybridAzureADJoin = "HybridAzureADJoin"
|
|
1258
|
-
}
|
|
1259
|
-
|
|
1260
|
-
// @public
|
|
1261
|
-
export enum KnownEnvironmentTypeEnableStatus {
|
|
1262
|
-
Disabled = "Disabled",
|
|
1263
|
-
Enabled = "Enabled"
|
|
1264
|
-
}
|
|
1265
|
-
|
|
1266
|
-
// @public
|
|
1267
|
-
export enum KnownHealthCheckStatus {
|
|
1268
|
-
Failed = "Failed",
|
|
1269
|
-
Passed = "Passed",
|
|
1270
|
-
Pending = "Pending",
|
|
1271
|
-
Running = "Running",
|
|
1272
|
-
Unknown = "Unknown",
|
|
1273
|
-
Warning = "Warning"
|
|
1274
|
-
}
|
|
1275
|
-
|
|
1276
|
-
// @public
|
|
1277
|
-
export enum KnownHealthStatus {
|
|
1278
|
-
Healthy = "Healthy",
|
|
1279
|
-
Pending = "Pending",
|
|
1280
|
-
Unhealthy = "Unhealthy",
|
|
1281
|
-
Unknown = "Unknown",
|
|
1282
|
-
Warning = "Warning"
|
|
1283
|
-
}
|
|
1284
|
-
|
|
1285
|
-
// @public
|
|
1286
|
-
export enum KnownHibernateSupport {
|
|
1287
|
-
Disabled = "Disabled",
|
|
1288
|
-
Enabled = "Enabled"
|
|
1289
|
-
}
|
|
1290
|
-
|
|
1291
|
-
// @public
|
|
1292
|
-
export enum KnownIdentityType {
|
|
1293
|
-
DelegatedResourceIdentity = "delegatedResourceIdentity",
|
|
1294
|
-
SystemAssignedIdentity = "systemAssignedIdentity",
|
|
1295
|
-
UserAssignedIdentity = "userAssignedIdentity"
|
|
1296
|
-
}
|
|
1297
|
-
|
|
1298
|
-
// @public
|
|
1299
|
-
export enum KnownImageValidationStatus {
|
|
1300
|
-
Failed = "Failed",
|
|
1301
|
-
Pending = "Pending",
|
|
1302
|
-
Succeeded = "Succeeded",
|
|
1303
|
-
TimedOut = "TimedOut",
|
|
1304
|
-
Unknown = "Unknown"
|
|
1305
|
-
}
|
|
1306
|
-
|
|
1307
|
-
// @public
|
|
1308
|
-
export enum KnownLicenseType {
|
|
1309
|
-
WindowsClient = "Windows_Client"
|
|
1310
|
-
}
|
|
1311
|
-
|
|
1312
|
-
// @public
|
|
1313
|
-
export enum KnownLocalAdminStatus {
|
|
1314
|
-
Disabled = "Disabled",
|
|
1315
|
-
Enabled = "Enabled"
|
|
1316
|
-
}
|
|
1317
|
-
|
|
1318
|
-
// @public
|
|
1319
|
-
export enum KnownManagedServiceIdentityType {
|
|
1320
|
-
None = "None",
|
|
1321
|
-
SystemAssigned = "SystemAssigned",
|
|
1322
|
-
SystemAssignedUserAssigned = "SystemAssigned, UserAssigned",
|
|
1323
|
-
UserAssigned = "UserAssigned"
|
|
1324
|
-
}
|
|
1325
|
-
|
|
1326
|
-
// @public
|
|
1327
|
-
export enum KnownOrigin {
|
|
1328
|
-
System = "system",
|
|
1329
|
-
User = "user",
|
|
1330
|
-
UserSystem = "user,system"
|
|
1331
|
-
}
|
|
1332
|
-
|
|
1333
|
-
// @public
|
|
1334
|
-
export enum KnownParameterType {
|
|
1335
|
-
Array = "array",
|
|
1336
|
-
Boolean = "boolean",
|
|
1337
|
-
Integer = "integer",
|
|
1338
|
-
Number = "number",
|
|
1339
|
-
Object = "object",
|
|
1340
|
-
String = "string"
|
|
1341
|
-
}
|
|
1342
|
-
|
|
1343
|
-
// @public
|
|
1344
|
-
export enum KnownProvisioningState {
|
|
1345
|
-
Accepted = "Accepted",
|
|
1346
|
-
Canceled = "Canceled",
|
|
1347
|
-
Created = "Created",
|
|
1348
|
-
Creating = "Creating",
|
|
1349
|
-
Deleted = "Deleted",
|
|
1350
|
-
Deleting = "Deleting",
|
|
1351
|
-
Failed = "Failed",
|
|
1352
|
-
MovingResources = "MovingResources",
|
|
1353
|
-
NotSpecified = "NotSpecified",
|
|
1354
|
-
RolloutInProgress = "RolloutInProgress",
|
|
1355
|
-
Running = "Running",
|
|
1356
|
-
StorageProvisioningFailed = "StorageProvisioningFailed",
|
|
1357
|
-
Succeeded = "Succeeded",
|
|
1358
|
-
TransientFailure = "TransientFailure",
|
|
1359
|
-
Updated = "Updated",
|
|
1360
|
-
Updating = "Updating"
|
|
1361
|
-
}
|
|
1362
|
-
|
|
1363
|
-
// @public
|
|
1364
|
-
export enum KnownScheduledFrequency {
|
|
1365
|
-
Daily = "Daily"
|
|
1366
|
-
}
|
|
1367
|
-
|
|
1368
|
-
// @public
|
|
1369
|
-
export enum KnownScheduledType {
|
|
1370
|
-
StopDevBox = "StopDevBox"
|
|
1371
|
-
}
|
|
1372
|
-
|
|
1373
|
-
// @public
|
|
1374
|
-
export enum KnownScheduleEnableStatus {
|
|
1375
|
-
Disabled = "Disabled",
|
|
1376
|
-
Enabled = "Enabled"
|
|
1377
|
-
}
|
|
1378
|
-
|
|
1379
|
-
// @public
|
|
1380
|
-
export enum KnownSingleSignOnStatus {
|
|
1381
|
-
Disabled = "Disabled",
|
|
1382
|
-
Enabled = "Enabled"
|
|
1383
|
-
}
|
|
1384
|
-
|
|
1385
|
-
// @public
|
|
1386
|
-
export enum KnownStopOnDisconnectEnableStatus {
|
|
1387
|
-
Disabled = "Disabled",
|
|
1388
|
-
Enabled = "Enabled"
|
|
1389
|
-
}
|
|
1390
|
-
|
|
1391
|
-
// @public
|
|
1392
|
-
export enum KnownUsageUnit {
|
|
1393
|
-
Count = "Count"
|
|
1394
|
-
}
|
|
1395
|
-
|
|
1396
|
-
// @public
|
|
1397
|
-
export enum KnownVirtualNetworkType {
|
|
1398
|
-
Managed = "Managed",
|
|
1399
|
-
Unmanaged = "Unmanaged"
|
|
1400
|
-
}
|
|
1401
|
-
|
|
1402
|
-
// @public
|
|
1403
|
-
export type LicenseType = string;
|
|
1404
|
-
|
|
1405
|
-
// @public
|
|
1406
|
-
export interface ListUsagesResult {
|
|
1407
|
-
readonly nextLink?: string;
|
|
1408
|
-
readonly value?: Usage[];
|
|
1409
|
-
}
|
|
1410
|
-
|
|
1411
|
-
// @public
|
|
1412
|
-
export type LocalAdminStatus = string;
|
|
1413
|
-
|
|
1414
|
-
// @public
|
|
1415
|
-
export interface ManagedServiceIdentity {
|
|
1416
|
-
readonly principalId?: string;
|
|
1417
|
-
readonly tenantId?: string;
|
|
1418
|
-
type: ManagedServiceIdentityType;
|
|
1419
|
-
userAssignedIdentities?: {
|
|
1420
|
-
[propertyName: string]: UserAssignedIdentity;
|
|
1421
|
-
};
|
|
1422
|
-
}
|
|
1423
|
-
|
|
1424
|
-
// @public
|
|
1425
|
-
export type ManagedServiceIdentityType = string;
|
|
1426
|
-
|
|
1427
|
-
// @public
|
|
1428
|
-
export interface NetworkConnection extends TrackedResource {
|
|
1429
|
-
domainJoinType?: DomainJoinType;
|
|
1430
|
-
domainName?: string;
|
|
1431
|
-
domainPassword?: string;
|
|
1432
|
-
domainUsername?: string;
|
|
1433
|
-
readonly healthCheckStatus?: HealthCheckStatus;
|
|
1434
|
-
networkingResourceGroupName?: string;
|
|
1435
|
-
organizationUnit?: string;
|
|
1436
|
-
readonly provisioningState?: ProvisioningState;
|
|
1437
|
-
subnetId?: string;
|
|
1438
|
-
}
|
|
1439
|
-
|
|
1440
|
-
// @public
|
|
1441
|
-
export interface NetworkConnectionListResult {
|
|
1442
|
-
readonly nextLink?: string;
|
|
1443
|
-
readonly value?: NetworkConnection[];
|
|
1444
|
-
}
|
|
1445
|
-
|
|
1446
|
-
// @public
|
|
1447
|
-
export interface NetworkConnections {
|
|
1448
|
-
beginCreateOrUpdate(resourceGroupName: string, networkConnectionName: string, body: NetworkConnection, options?: NetworkConnectionsCreateOrUpdateOptionalParams): Promise<SimplePollerLike<OperationState<NetworkConnectionsCreateOrUpdateResponse>, NetworkConnectionsCreateOrUpdateResponse>>;
|
|
1449
|
-
beginCreateOrUpdateAndWait(resourceGroupName: string, networkConnectionName: string, body: NetworkConnection, options?: NetworkConnectionsCreateOrUpdateOptionalParams): Promise<NetworkConnectionsCreateOrUpdateResponse>;
|
|
1450
|
-
beginDelete(resourceGroupName: string, networkConnectionName: string, options?: NetworkConnectionsDeleteOptionalParams): Promise<SimplePollerLike<OperationState<NetworkConnectionsDeleteResponse>, NetworkConnectionsDeleteResponse>>;
|
|
1451
|
-
beginDeleteAndWait(resourceGroupName: string, networkConnectionName: string, options?: NetworkConnectionsDeleteOptionalParams): Promise<NetworkConnectionsDeleteResponse>;
|
|
1452
|
-
beginRunHealthChecks(resourceGroupName: string, networkConnectionName: string, options?: NetworkConnectionsRunHealthChecksOptionalParams): Promise<SimplePollerLike<OperationState<NetworkConnectionsRunHealthChecksResponse>, NetworkConnectionsRunHealthChecksResponse>>;
|
|
1453
|
-
beginRunHealthChecksAndWait(resourceGroupName: string, networkConnectionName: string, options?: NetworkConnectionsRunHealthChecksOptionalParams): Promise<NetworkConnectionsRunHealthChecksResponse>;
|
|
1454
|
-
beginUpdate(resourceGroupName: string, networkConnectionName: string, body: NetworkConnectionUpdate, options?: NetworkConnectionsUpdateOptionalParams): Promise<SimplePollerLike<OperationState<NetworkConnectionsUpdateResponse>, NetworkConnectionsUpdateResponse>>;
|
|
1455
|
-
beginUpdateAndWait(resourceGroupName: string, networkConnectionName: string, body: NetworkConnectionUpdate, options?: NetworkConnectionsUpdateOptionalParams): Promise<NetworkConnectionsUpdateResponse>;
|
|
1456
|
-
get(resourceGroupName: string, networkConnectionName: string, options?: NetworkConnectionsGetOptionalParams): Promise<NetworkConnectionsGetResponse>;
|
|
1457
|
-
getHealthDetails(resourceGroupName: string, networkConnectionName: string, options?: NetworkConnectionsGetHealthDetailsOptionalParams): Promise<NetworkConnectionsGetHealthDetailsResponse>;
|
|
1458
|
-
listByResourceGroup(resourceGroupName: string, options?: NetworkConnectionsListByResourceGroupOptionalParams): PagedAsyncIterableIterator<NetworkConnection>;
|
|
1459
|
-
listBySubscription(options?: NetworkConnectionsListBySubscriptionOptionalParams): PagedAsyncIterableIterator<NetworkConnection>;
|
|
1460
|
-
listHealthDetails(resourceGroupName: string, networkConnectionName: string, options?: NetworkConnectionsListHealthDetailsOptionalParams): PagedAsyncIterableIterator<HealthCheckStatusDetails>;
|
|
1461
|
-
listOutboundNetworkDependenciesEndpoints(resourceGroupName: string, networkConnectionName: string, options?: NetworkConnectionsListOutboundNetworkDependenciesEndpointsOptionalParams): PagedAsyncIterableIterator<OutboundEnvironmentEndpoint>;
|
|
1462
|
-
}
|
|
1463
|
-
|
|
1464
|
-
// @public
|
|
1465
|
-
export interface NetworkConnectionsCreateOrUpdateOptionalParams extends coreClient.OperationOptions {
|
|
1466
|
-
resumeFrom?: string;
|
|
1467
|
-
updateIntervalInMs?: number;
|
|
1468
|
-
}
|
|
1469
|
-
|
|
1470
|
-
// @public
|
|
1471
|
-
export type NetworkConnectionsCreateOrUpdateResponse = NetworkConnection;
|
|
1472
|
-
|
|
1473
|
-
// @public
|
|
1474
|
-
export interface NetworkConnectionsDeleteHeaders {
|
|
1475
|
-
// (undocumented)
|
|
1476
|
-
location?: string;
|
|
1477
|
-
}
|
|
1478
|
-
|
|
1479
|
-
// @public
|
|
1480
|
-
export interface NetworkConnectionsDeleteOptionalParams extends coreClient.OperationOptions {
|
|
1481
|
-
resumeFrom?: string;
|
|
1482
|
-
updateIntervalInMs?: number;
|
|
1483
|
-
}
|
|
1484
|
-
|
|
1485
|
-
// @public
|
|
1486
|
-
export type NetworkConnectionsDeleteResponse = NetworkConnectionsDeleteHeaders;
|
|
1487
|
-
|
|
1488
|
-
// @public
|
|
1489
|
-
export interface NetworkConnectionsGetHealthDetailsOptionalParams extends coreClient.OperationOptions {
|
|
1490
|
-
}
|
|
1491
|
-
|
|
1492
|
-
// @public
|
|
1493
|
-
export type NetworkConnectionsGetHealthDetailsResponse = HealthCheckStatusDetails;
|
|
1494
|
-
|
|
1495
|
-
// @public
|
|
1496
|
-
export interface NetworkConnectionsGetOptionalParams extends coreClient.OperationOptions {
|
|
1497
|
-
}
|
|
1498
|
-
|
|
1499
|
-
// @public
|
|
1500
|
-
export type NetworkConnectionsGetResponse = NetworkConnection;
|
|
1501
|
-
|
|
1502
|
-
// @public
|
|
1503
|
-
export interface NetworkConnectionsListByResourceGroupNextOptionalParams extends coreClient.OperationOptions {
|
|
1504
|
-
}
|
|
1505
|
-
|
|
1506
|
-
// @public
|
|
1507
|
-
export type NetworkConnectionsListByResourceGroupNextResponse = NetworkConnectionListResult;
|
|
1508
|
-
|
|
1509
|
-
// @public
|
|
1510
|
-
export interface NetworkConnectionsListByResourceGroupOptionalParams extends coreClient.OperationOptions {
|
|
1511
|
-
top?: number;
|
|
1512
|
-
}
|
|
1513
|
-
|
|
1514
|
-
// @public
|
|
1515
|
-
export type NetworkConnectionsListByResourceGroupResponse = NetworkConnectionListResult;
|
|
1516
|
-
|
|
1517
|
-
// @public
|
|
1518
|
-
export interface NetworkConnectionsListBySubscriptionNextOptionalParams extends coreClient.OperationOptions {
|
|
1519
|
-
}
|
|
1520
|
-
|
|
1521
|
-
// @public
|
|
1522
|
-
export type NetworkConnectionsListBySubscriptionNextResponse = NetworkConnectionListResult;
|
|
1523
|
-
|
|
1524
|
-
// @public
|
|
1525
|
-
export interface NetworkConnectionsListBySubscriptionOptionalParams extends coreClient.OperationOptions {
|
|
1526
|
-
top?: number;
|
|
1527
|
-
}
|
|
1528
|
-
|
|
1529
|
-
// @public
|
|
1530
|
-
export type NetworkConnectionsListBySubscriptionResponse = NetworkConnectionListResult;
|
|
1531
|
-
|
|
1532
|
-
// @public
|
|
1533
|
-
export interface NetworkConnectionsListHealthDetailsOptionalParams extends coreClient.OperationOptions {
|
|
1534
|
-
top?: number;
|
|
1535
|
-
}
|
|
1536
|
-
|
|
1537
|
-
// @public
|
|
1538
|
-
export type NetworkConnectionsListHealthDetailsResponse = HealthCheckStatusDetailsListResult;
|
|
1539
|
-
|
|
1540
|
-
// @public
|
|
1541
|
-
export interface NetworkConnectionsListOutboundNetworkDependenciesEndpointsNextOptionalParams extends coreClient.OperationOptions {
|
|
1542
|
-
}
|
|
1543
|
-
|
|
1544
|
-
// @public
|
|
1545
|
-
export type NetworkConnectionsListOutboundNetworkDependenciesEndpointsNextResponse = OutboundEnvironmentEndpointCollection;
|
|
1546
|
-
|
|
1547
|
-
// @public
|
|
1548
|
-
export interface NetworkConnectionsListOutboundNetworkDependenciesEndpointsOptionalParams extends coreClient.OperationOptions {
|
|
1549
|
-
top?: number;
|
|
1550
|
-
}
|
|
1551
|
-
|
|
1552
|
-
// @public
|
|
1553
|
-
export type NetworkConnectionsListOutboundNetworkDependenciesEndpointsResponse = OutboundEnvironmentEndpointCollection;
|
|
1554
|
-
|
|
1555
|
-
// @public
|
|
1556
|
-
export interface NetworkConnectionsRunHealthChecksHeaders {
|
|
1557
|
-
// (undocumented)
|
|
1558
|
-
location?: string;
|
|
1559
|
-
}
|
|
1560
|
-
|
|
1561
|
-
// @public
|
|
1562
|
-
export interface NetworkConnectionsRunHealthChecksOptionalParams extends coreClient.OperationOptions {
|
|
1563
|
-
resumeFrom?: string;
|
|
1564
|
-
updateIntervalInMs?: number;
|
|
1565
|
-
}
|
|
1566
|
-
|
|
1567
|
-
// @public
|
|
1568
|
-
export type NetworkConnectionsRunHealthChecksResponse = NetworkConnectionsRunHealthChecksHeaders;
|
|
1569
|
-
|
|
1570
|
-
// @public
|
|
1571
|
-
export interface NetworkConnectionsUpdateHeaders {
|
|
1572
|
-
// (undocumented)
|
|
1573
|
-
location?: string;
|
|
1574
|
-
}
|
|
1575
|
-
|
|
1576
|
-
// @public
|
|
1577
|
-
export interface NetworkConnectionsUpdateOptionalParams extends coreClient.OperationOptions {
|
|
1578
|
-
resumeFrom?: string;
|
|
1579
|
-
updateIntervalInMs?: number;
|
|
1580
|
-
}
|
|
1581
|
-
|
|
1582
|
-
// @public
|
|
1583
|
-
export type NetworkConnectionsUpdateResponse = NetworkConnection;
|
|
1584
|
-
|
|
1585
|
-
// @public
|
|
1586
|
-
export interface NetworkConnectionUpdate extends TrackedResourceUpdate {
|
|
1587
|
-
domainName?: string;
|
|
1588
|
-
domainPassword?: string;
|
|
1589
|
-
domainUsername?: string;
|
|
1590
|
-
organizationUnit?: string;
|
|
1591
|
-
subnetId?: string;
|
|
1592
|
-
}
|
|
1593
|
-
|
|
1594
|
-
// @public
|
|
1595
|
-
export interface NetworkConnectionUpdateProperties {
|
|
1596
|
-
domainName?: string;
|
|
1597
|
-
domainPassword?: string;
|
|
1598
|
-
domainUsername?: string;
|
|
1599
|
-
organizationUnit?: string;
|
|
1600
|
-
subnetId?: string;
|
|
1601
|
-
}
|
|
1602
|
-
|
|
1603
|
-
// @public
|
|
1604
|
-
export interface NetworkProperties extends NetworkConnectionUpdateProperties {
|
|
1605
|
-
domainJoinType: DomainJoinType;
|
|
1606
|
-
readonly healthCheckStatus?: HealthCheckStatus;
|
|
1607
|
-
networkingResourceGroupName?: string;
|
|
1608
|
-
readonly provisioningState?: ProvisioningState;
|
|
1609
|
-
}
|
|
1610
|
-
|
|
1611
|
-
// @public
|
|
1612
|
-
export interface Operation {
|
|
1613
|
-
readonly actionType?: ActionType;
|
|
1614
|
-
display?: OperationDisplay;
|
|
1615
|
-
readonly isDataAction?: boolean;
|
|
1616
|
-
readonly name?: string;
|
|
1617
|
-
readonly origin?: Origin;
|
|
1618
|
-
}
|
|
1619
|
-
|
|
1620
|
-
// @public
|
|
1621
|
-
export interface OperationDisplay {
|
|
1622
|
-
readonly description?: string;
|
|
1623
|
-
readonly operation?: string;
|
|
1624
|
-
readonly provider?: string;
|
|
1625
|
-
readonly resource?: string;
|
|
1626
|
-
}
|
|
1627
|
-
|
|
1628
|
-
// @public
|
|
1629
|
-
export interface OperationListResult {
|
|
1630
|
-
readonly nextLink?: string;
|
|
1631
|
-
readonly value?: Operation[];
|
|
1632
|
-
}
|
|
1633
|
-
|
|
1634
|
-
// @public
|
|
1635
|
-
export interface Operations {
|
|
1636
|
-
list(options?: OperationsListOptionalParams): PagedAsyncIterableIterator<Operation>;
|
|
1637
|
-
}
|
|
1638
|
-
|
|
1639
|
-
// @public
|
|
1640
|
-
export interface OperationsListNextOptionalParams extends coreClient.OperationOptions {
|
|
1641
|
-
}
|
|
1642
|
-
|
|
1643
|
-
// @public
|
|
1644
|
-
export type OperationsListNextResponse = OperationListResult;
|
|
1645
|
-
|
|
1646
|
-
// @public
|
|
1647
|
-
export interface OperationsListOptionalParams extends coreClient.OperationOptions {
|
|
1648
|
-
}
|
|
1649
|
-
|
|
1650
|
-
// @public
|
|
1651
|
-
export type OperationsListResponse = OperationListResult;
|
|
1652
|
-
|
|
1653
|
-
// @public
|
|
1654
|
-
export interface OperationStatus extends OperationStatusResult {
|
|
1655
|
-
readonly properties?: Record<string, unknown>;
|
|
1656
|
-
}
|
|
1657
|
-
|
|
1658
|
-
// @public
|
|
1659
|
-
export interface OperationStatuses {
|
|
1660
|
-
get(location: string, operationId: string, options?: OperationStatusesGetOptionalParams): Promise<OperationStatusesGetResponse>;
|
|
1661
|
-
}
|
|
1662
|
-
|
|
1663
|
-
// @public
|
|
1664
|
-
export interface OperationStatusesGetHeaders {
|
|
1665
|
-
// (undocumented)
|
|
1666
|
-
location?: string;
|
|
1667
|
-
}
|
|
1668
|
-
|
|
1669
|
-
// @public
|
|
1670
|
-
export interface OperationStatusesGetOptionalParams extends coreClient.OperationOptions {
|
|
1671
|
-
}
|
|
1672
|
-
|
|
1673
|
-
// @public
|
|
1674
|
-
export type OperationStatusesGetResponse = OperationStatus;
|
|
1675
|
-
|
|
1676
|
-
// @public
|
|
1677
|
-
export interface OperationStatusResult {
|
|
1678
|
-
endTime?: Date;
|
|
1679
|
-
error?: ErrorDetail;
|
|
1680
|
-
id?: string;
|
|
1681
|
-
name?: string;
|
|
1682
|
-
operations?: OperationStatusResult[];
|
|
1683
|
-
percentComplete?: number;
|
|
1684
|
-
readonly resourceId?: string;
|
|
1685
|
-
startTime?: Date;
|
|
1686
|
-
status: string;
|
|
1687
|
-
}
|
|
1688
|
-
|
|
1689
|
-
// @public
|
|
1690
|
-
export type Origin = string;
|
|
1691
|
-
|
|
1692
|
-
// @public
|
|
1693
|
-
export interface OutboundEnvironmentEndpoint {
|
|
1694
|
-
readonly category?: string;
|
|
1695
|
-
readonly endpoints?: EndpointDependency[];
|
|
1696
|
-
}
|
|
1697
|
-
|
|
1698
|
-
// @public
|
|
1699
|
-
export interface OutboundEnvironmentEndpointCollection {
|
|
1700
|
-
nextLink?: string;
|
|
1701
|
-
readonly value?: OutboundEnvironmentEndpoint[];
|
|
1702
|
-
}
|
|
1703
|
-
|
|
1704
|
-
// @public
|
|
1705
|
-
export type ParameterType = string;
|
|
1706
|
-
|
|
1707
|
-
// @public
|
|
1708
|
-
export interface Pool extends TrackedResource {
|
|
1709
|
-
readonly devBoxCount?: number;
|
|
1710
|
-
devBoxDefinitionName?: string;
|
|
1711
|
-
displayName?: string;
|
|
1712
|
-
readonly healthStatus?: HealthStatus;
|
|
1713
|
-
readonly healthStatusDetails?: HealthStatusDetail[];
|
|
1714
|
-
licenseType?: LicenseType;
|
|
1715
|
-
localAdministrator?: LocalAdminStatus;
|
|
1716
|
-
managedVirtualNetworkRegions?: string[];
|
|
1717
|
-
networkConnectionName?: string;
|
|
1718
|
-
readonly provisioningState?: ProvisioningState;
|
|
1719
|
-
singleSignOnStatus?: SingleSignOnStatus;
|
|
1720
|
-
stopOnDisconnect?: StopOnDisconnectConfiguration;
|
|
1721
|
-
virtualNetworkType?: VirtualNetworkType;
|
|
1722
|
-
}
|
|
1723
|
-
|
|
1724
|
-
// @public
|
|
1725
|
-
export interface PoolListResult {
|
|
1726
|
-
readonly nextLink?: string;
|
|
1727
|
-
readonly value?: Pool[];
|
|
1728
|
-
}
|
|
1729
|
-
|
|
1730
|
-
// @public
|
|
1731
|
-
export interface PoolProperties extends PoolUpdateProperties {
|
|
1732
|
-
readonly devBoxCount?: number;
|
|
1733
|
-
readonly healthStatus?: HealthStatus;
|
|
1734
|
-
readonly healthStatusDetails?: HealthStatusDetail[];
|
|
1735
|
-
readonly provisioningState?: ProvisioningState;
|
|
1736
|
-
}
|
|
1737
|
-
|
|
1738
|
-
// @public
|
|
1739
|
-
export interface Pools {
|
|
1740
|
-
beginCreateOrUpdate(resourceGroupName: string, projectName: string, poolName: string, body: Pool, options?: PoolsCreateOrUpdateOptionalParams): Promise<SimplePollerLike<OperationState<PoolsCreateOrUpdateResponse>, PoolsCreateOrUpdateResponse>>;
|
|
1741
|
-
beginCreateOrUpdateAndWait(resourceGroupName: string, projectName: string, poolName: string, body: Pool, options?: PoolsCreateOrUpdateOptionalParams): Promise<PoolsCreateOrUpdateResponse>;
|
|
1742
|
-
beginDelete(resourceGroupName: string, projectName: string, poolName: string, options?: PoolsDeleteOptionalParams): Promise<SimplePollerLike<OperationState<PoolsDeleteResponse>, PoolsDeleteResponse>>;
|
|
1743
|
-
beginDeleteAndWait(resourceGroupName: string, projectName: string, poolName: string, options?: PoolsDeleteOptionalParams): Promise<PoolsDeleteResponse>;
|
|
1744
|
-
beginRunHealthChecks(resourceGroupName: string, projectName: string, poolName: string, options?: PoolsRunHealthChecksOptionalParams): Promise<SimplePollerLike<OperationState<PoolsRunHealthChecksResponse>, PoolsRunHealthChecksResponse>>;
|
|
1745
|
-
beginRunHealthChecksAndWait(resourceGroupName: string, projectName: string, poolName: string, options?: PoolsRunHealthChecksOptionalParams): Promise<PoolsRunHealthChecksResponse>;
|
|
1746
|
-
beginUpdate(resourceGroupName: string, projectName: string, poolName: string, body: PoolUpdate, options?: PoolsUpdateOptionalParams): Promise<SimplePollerLike<OperationState<PoolsUpdateResponse>, PoolsUpdateResponse>>;
|
|
1747
|
-
beginUpdateAndWait(resourceGroupName: string, projectName: string, poolName: string, body: PoolUpdate, options?: PoolsUpdateOptionalParams): Promise<PoolsUpdateResponse>;
|
|
1748
|
-
get(resourceGroupName: string, projectName: string, poolName: string, options?: PoolsGetOptionalParams): Promise<PoolsGetResponse>;
|
|
1749
|
-
listByProject(resourceGroupName: string, projectName: string, options?: PoolsListByProjectOptionalParams): PagedAsyncIterableIterator<Pool>;
|
|
1750
|
-
}
|
|
1751
|
-
|
|
1752
|
-
// @public
|
|
1753
|
-
export interface PoolsCreateOrUpdateOptionalParams extends coreClient.OperationOptions {
|
|
1754
|
-
resumeFrom?: string;
|
|
1755
|
-
updateIntervalInMs?: number;
|
|
1756
|
-
}
|
|
1757
|
-
|
|
1758
|
-
// @public
|
|
1759
|
-
export type PoolsCreateOrUpdateResponse = Pool;
|
|
1760
|
-
|
|
1761
|
-
// @public
|
|
1762
|
-
export interface PoolsDeleteHeaders {
|
|
1763
|
-
// (undocumented)
|
|
1764
|
-
location?: string;
|
|
1765
|
-
}
|
|
1766
|
-
|
|
1767
|
-
// @public
|
|
1768
|
-
export interface PoolsDeleteOptionalParams extends coreClient.OperationOptions {
|
|
1769
|
-
resumeFrom?: string;
|
|
1770
|
-
updateIntervalInMs?: number;
|
|
1771
|
-
}
|
|
1772
|
-
|
|
1773
|
-
// @public
|
|
1774
|
-
export type PoolsDeleteResponse = PoolsDeleteHeaders;
|
|
1775
|
-
|
|
1776
|
-
// @public
|
|
1777
|
-
export interface PoolsGetOptionalParams extends coreClient.OperationOptions {
|
|
1778
|
-
}
|
|
1779
|
-
|
|
1780
|
-
// @public
|
|
1781
|
-
export type PoolsGetResponse = Pool;
|
|
1782
|
-
|
|
1783
|
-
// @public
|
|
1784
|
-
export interface PoolsListByProjectNextOptionalParams extends coreClient.OperationOptions {
|
|
1785
|
-
}
|
|
1786
|
-
|
|
1787
|
-
// @public
|
|
1788
|
-
export type PoolsListByProjectNextResponse = PoolListResult;
|
|
1789
|
-
|
|
1790
|
-
// @public
|
|
1791
|
-
export interface PoolsListByProjectOptionalParams extends coreClient.OperationOptions {
|
|
1792
|
-
top?: number;
|
|
1793
|
-
}
|
|
1794
|
-
|
|
1795
|
-
// @public
|
|
1796
|
-
export type PoolsListByProjectResponse = PoolListResult;
|
|
1797
|
-
|
|
1798
|
-
// @public
|
|
1799
|
-
export interface PoolsRunHealthChecksHeaders {
|
|
1800
|
-
// (undocumented)
|
|
1801
|
-
location?: string;
|
|
1802
|
-
}
|
|
1803
|
-
|
|
1804
|
-
// @public
|
|
1805
|
-
export interface PoolsRunHealthChecksOptionalParams extends coreClient.OperationOptions {
|
|
1806
|
-
resumeFrom?: string;
|
|
1807
|
-
updateIntervalInMs?: number;
|
|
1808
|
-
}
|
|
1809
|
-
|
|
1810
|
-
// @public
|
|
1811
|
-
export type PoolsRunHealthChecksResponse = PoolsRunHealthChecksHeaders;
|
|
1812
|
-
|
|
1813
|
-
// @public
|
|
1814
|
-
export interface PoolsUpdateHeaders {
|
|
1815
|
-
// (undocumented)
|
|
1816
|
-
location?: string;
|
|
1817
|
-
}
|
|
1818
|
-
|
|
1819
|
-
// @public
|
|
1820
|
-
export interface PoolsUpdateOptionalParams extends coreClient.OperationOptions {
|
|
1821
|
-
resumeFrom?: string;
|
|
1822
|
-
updateIntervalInMs?: number;
|
|
1823
|
-
}
|
|
1824
|
-
|
|
1825
|
-
// @public
|
|
1826
|
-
export type PoolsUpdateResponse = Pool;
|
|
1827
|
-
|
|
1828
|
-
// @public
|
|
1829
|
-
export interface PoolUpdate extends TrackedResourceUpdate {
|
|
1830
|
-
devBoxDefinitionName?: string;
|
|
1831
|
-
displayName?: string;
|
|
1832
|
-
licenseType?: LicenseType;
|
|
1833
|
-
localAdministrator?: LocalAdminStatus;
|
|
1834
|
-
managedVirtualNetworkRegions?: string[];
|
|
1835
|
-
networkConnectionName?: string;
|
|
1836
|
-
singleSignOnStatus?: SingleSignOnStatus;
|
|
1837
|
-
stopOnDisconnect?: StopOnDisconnectConfiguration;
|
|
1838
|
-
virtualNetworkType?: VirtualNetworkType;
|
|
1839
|
-
}
|
|
1840
|
-
|
|
1841
|
-
// @public
|
|
1842
|
-
export interface PoolUpdateProperties {
|
|
1843
|
-
devBoxDefinitionName?: string;
|
|
1844
|
-
displayName?: string;
|
|
1845
|
-
licenseType?: LicenseType;
|
|
1846
|
-
localAdministrator?: LocalAdminStatus;
|
|
1847
|
-
managedVirtualNetworkRegions?: string[];
|
|
1848
|
-
networkConnectionName?: string;
|
|
1849
|
-
singleSignOnStatus?: SingleSignOnStatus;
|
|
1850
|
-
stopOnDisconnect?: StopOnDisconnectConfiguration;
|
|
1851
|
-
virtualNetworkType?: VirtualNetworkType;
|
|
1852
|
-
}
|
|
1853
|
-
|
|
1854
|
-
// @public
|
|
1855
|
-
export interface Project extends TrackedResource {
|
|
1856
|
-
catalogSettings?: ProjectCatalogSettings;
|
|
1857
|
-
description?: string;
|
|
1858
|
-
devCenterId?: string;
|
|
1859
|
-
readonly devCenterUri?: string;
|
|
1860
|
-
displayName?: string;
|
|
1861
|
-
identity?: ManagedServiceIdentity;
|
|
1862
|
-
maxDevBoxesPerUser?: number;
|
|
1863
|
-
readonly provisioningState?: ProvisioningState;
|
|
1864
|
-
}
|
|
1865
|
-
|
|
1866
|
-
// @public
|
|
1867
|
-
export interface ProjectAllowedEnvironmentTypes {
|
|
1868
|
-
get(resourceGroupName: string, projectName: string, environmentTypeName: string, options?: ProjectAllowedEnvironmentTypesGetOptionalParams): Promise<ProjectAllowedEnvironmentTypesGetResponse>;
|
|
1869
|
-
list(resourceGroupName: string, projectName: string, options?: ProjectAllowedEnvironmentTypesListOptionalParams): PagedAsyncIterableIterator<AllowedEnvironmentType>;
|
|
1870
|
-
}
|
|
1871
|
-
|
|
1872
|
-
// @public
|
|
1873
|
-
export interface ProjectAllowedEnvironmentTypesGetOptionalParams extends coreClient.OperationOptions {
|
|
1874
|
-
}
|
|
1875
|
-
|
|
1876
|
-
// @public
|
|
1877
|
-
export type ProjectAllowedEnvironmentTypesGetResponse = AllowedEnvironmentType;
|
|
1878
|
-
|
|
1879
|
-
// @public
|
|
1880
|
-
export interface ProjectAllowedEnvironmentTypesListNextOptionalParams extends coreClient.OperationOptions {
|
|
1881
|
-
}
|
|
1882
|
-
|
|
1883
|
-
// @public
|
|
1884
|
-
export type ProjectAllowedEnvironmentTypesListNextResponse = AllowedEnvironmentTypeListResult;
|
|
1885
|
-
|
|
1886
|
-
// @public
|
|
1887
|
-
export interface ProjectAllowedEnvironmentTypesListOptionalParams extends coreClient.OperationOptions {
|
|
1888
|
-
top?: number;
|
|
1889
|
-
}
|
|
1890
|
-
|
|
1891
|
-
// @public
|
|
1892
|
-
export type ProjectAllowedEnvironmentTypesListResponse = AllowedEnvironmentTypeListResult;
|
|
1893
|
-
|
|
1894
|
-
// @public
|
|
1895
|
-
export interface ProjectCatalogEnvironmentDefinitions {
|
|
1896
|
-
getErrorDetails(resourceGroupName: string, projectName: string, catalogName: string, environmentDefinitionName: string, options?: ProjectCatalogEnvironmentDefinitionsGetErrorDetailsOptionalParams): Promise<ProjectCatalogEnvironmentDefinitionsGetErrorDetailsResponse>;
|
|
1897
|
-
}
|
|
1898
|
-
|
|
1899
|
-
// @public
|
|
1900
|
-
export interface ProjectCatalogEnvironmentDefinitionsGetErrorDetailsOptionalParams extends coreClient.OperationOptions {
|
|
1901
|
-
}
|
|
1902
|
-
|
|
1903
|
-
// @public
|
|
1904
|
-
export type ProjectCatalogEnvironmentDefinitionsGetErrorDetailsResponse = CatalogResourceValidationErrorDetails;
|
|
1905
|
-
|
|
1906
|
-
// @public
|
|
1907
|
-
export interface ProjectCatalogs {
|
|
1908
|
-
beginConnect(resourceGroupName: string, projectName: string, catalogName: string, options?: ProjectCatalogsConnectOptionalParams): Promise<SimplePollerLike<OperationState<ProjectCatalogsConnectResponse>, ProjectCatalogsConnectResponse>>;
|
|
1909
|
-
beginConnectAndWait(resourceGroupName: string, projectName: string, catalogName: string, options?: ProjectCatalogsConnectOptionalParams): Promise<ProjectCatalogsConnectResponse>;
|
|
1910
|
-
beginCreateOrUpdate(resourceGroupName: string, projectName: string, catalogName: string, body: Catalog, options?: ProjectCatalogsCreateOrUpdateOptionalParams): Promise<SimplePollerLike<OperationState<ProjectCatalogsCreateOrUpdateResponse>, ProjectCatalogsCreateOrUpdateResponse>>;
|
|
1911
|
-
beginCreateOrUpdateAndWait(resourceGroupName: string, projectName: string, catalogName: string, body: Catalog, options?: ProjectCatalogsCreateOrUpdateOptionalParams): Promise<ProjectCatalogsCreateOrUpdateResponse>;
|
|
1912
|
-
beginDelete(resourceGroupName: string, projectName: string, catalogName: string, options?: ProjectCatalogsDeleteOptionalParams): Promise<SimplePollerLike<OperationState<ProjectCatalogsDeleteResponse>, ProjectCatalogsDeleteResponse>>;
|
|
1913
|
-
beginDeleteAndWait(resourceGroupName: string, projectName: string, catalogName: string, options?: ProjectCatalogsDeleteOptionalParams): Promise<ProjectCatalogsDeleteResponse>;
|
|
1914
|
-
beginPatch(resourceGroupName: string, projectName: string, catalogName: string, body: CatalogUpdate, options?: ProjectCatalogsPatchOptionalParams): Promise<SimplePollerLike<OperationState<ProjectCatalogsPatchResponse>, ProjectCatalogsPatchResponse>>;
|
|
1915
|
-
beginPatchAndWait(resourceGroupName: string, projectName: string, catalogName: string, body: CatalogUpdate, options?: ProjectCatalogsPatchOptionalParams): Promise<ProjectCatalogsPatchResponse>;
|
|
1916
|
-
beginSync(resourceGroupName: string, projectName: string, catalogName: string, options?: ProjectCatalogsSyncOptionalParams): Promise<SimplePollerLike<OperationState<ProjectCatalogsSyncResponse>, ProjectCatalogsSyncResponse>>;
|
|
1917
|
-
beginSyncAndWait(resourceGroupName: string, projectName: string, catalogName: string, options?: ProjectCatalogsSyncOptionalParams): Promise<ProjectCatalogsSyncResponse>;
|
|
1918
|
-
get(resourceGroupName: string, projectName: string, catalogName: string, options?: ProjectCatalogsGetOptionalParams): Promise<ProjectCatalogsGetResponse>;
|
|
1919
|
-
getSyncErrorDetails(resourceGroupName: string, projectName: string, catalogName: string, options?: ProjectCatalogsGetSyncErrorDetailsOptionalParams): Promise<ProjectCatalogsGetSyncErrorDetailsResponse>;
|
|
1920
|
-
list(resourceGroupName: string, projectName: string, options?: ProjectCatalogsListOptionalParams): PagedAsyncIterableIterator<Catalog>;
|
|
1921
|
-
}
|
|
1922
|
-
|
|
1923
|
-
// @public
|
|
1924
|
-
export interface ProjectCatalogsConnectHeaders {
|
|
1925
|
-
// (undocumented)
|
|
1926
|
-
location?: string;
|
|
1927
|
-
}
|
|
1928
|
-
|
|
1929
|
-
// @public
|
|
1930
|
-
export interface ProjectCatalogsConnectOptionalParams extends coreClient.OperationOptions {
|
|
1931
|
-
resumeFrom?: string;
|
|
1932
|
-
updateIntervalInMs?: number;
|
|
1933
|
-
}
|
|
1934
|
-
|
|
1935
|
-
// @public
|
|
1936
|
-
export type ProjectCatalogsConnectResponse = ProjectCatalogsConnectHeaders;
|
|
1937
|
-
|
|
1938
|
-
// @public
|
|
1939
|
-
export interface ProjectCatalogsCreateOrUpdateOptionalParams extends coreClient.OperationOptions {
|
|
1940
|
-
resumeFrom?: string;
|
|
1941
|
-
updateIntervalInMs?: number;
|
|
1942
|
-
}
|
|
1943
|
-
|
|
1944
|
-
// @public
|
|
1945
|
-
export type ProjectCatalogsCreateOrUpdateResponse = Catalog;
|
|
1946
|
-
|
|
1947
|
-
// @public
|
|
1948
|
-
export interface ProjectCatalogsDeleteHeaders {
|
|
1949
|
-
// (undocumented)
|
|
1950
|
-
location?: string;
|
|
1951
|
-
}
|
|
1952
|
-
|
|
1953
|
-
// @public
|
|
1954
|
-
export interface ProjectCatalogsDeleteOptionalParams extends coreClient.OperationOptions {
|
|
1955
|
-
resumeFrom?: string;
|
|
1956
|
-
updateIntervalInMs?: number;
|
|
1957
|
-
}
|
|
1958
|
-
|
|
1959
|
-
// @public
|
|
1960
|
-
export type ProjectCatalogsDeleteResponse = ProjectCatalogsDeleteHeaders;
|
|
1961
|
-
|
|
1962
|
-
// @public
|
|
1963
|
-
export interface ProjectCatalogSettings {
|
|
1964
|
-
catalogItemSyncTypes?: CatalogItemType[];
|
|
1965
|
-
}
|
|
1966
|
-
|
|
1967
|
-
// @public
|
|
1968
|
-
export interface ProjectCatalogsGetOptionalParams extends coreClient.OperationOptions {
|
|
1969
|
-
}
|
|
1970
|
-
|
|
1971
|
-
// @public
|
|
1972
|
-
export type ProjectCatalogsGetResponse = Catalog;
|
|
1973
|
-
|
|
1974
|
-
// @public
|
|
1975
|
-
export interface ProjectCatalogsGetSyncErrorDetailsOptionalParams extends coreClient.OperationOptions {
|
|
1976
|
-
}
|
|
1977
|
-
|
|
1978
|
-
// @public
|
|
1979
|
-
export type ProjectCatalogsGetSyncErrorDetailsResponse = SyncErrorDetails;
|
|
1980
|
-
|
|
1981
|
-
// @public
|
|
1982
|
-
export interface ProjectCatalogsListNextOptionalParams extends coreClient.OperationOptions {
|
|
1983
|
-
}
|
|
1984
|
-
|
|
1985
|
-
// @public
|
|
1986
|
-
export type ProjectCatalogsListNextResponse = CatalogListResult;
|
|
1987
|
-
|
|
1988
|
-
// @public
|
|
1989
|
-
export interface ProjectCatalogsListOptionalParams extends coreClient.OperationOptions {
|
|
1990
|
-
top?: number;
|
|
1991
|
-
}
|
|
1992
|
-
|
|
1993
|
-
// @public
|
|
1994
|
-
export type ProjectCatalogsListResponse = CatalogListResult;
|
|
1995
|
-
|
|
1996
|
-
// @public
|
|
1997
|
-
export interface ProjectCatalogsPatchHeaders {
|
|
1998
|
-
// (undocumented)
|
|
1999
|
-
location?: string;
|
|
2000
|
-
}
|
|
2001
|
-
|
|
2002
|
-
// @public
|
|
2003
|
-
export interface ProjectCatalogsPatchOptionalParams extends coreClient.OperationOptions {
|
|
2004
|
-
resumeFrom?: string;
|
|
2005
|
-
updateIntervalInMs?: number;
|
|
2006
|
-
}
|
|
2007
|
-
|
|
2008
|
-
// @public
|
|
2009
|
-
export type ProjectCatalogsPatchResponse = Catalog;
|
|
2010
|
-
|
|
2011
|
-
// @public
|
|
2012
|
-
export interface ProjectCatalogsSyncHeaders {
|
|
2013
|
-
// (undocumented)
|
|
2014
|
-
location?: string;
|
|
2015
|
-
}
|
|
2016
|
-
|
|
2017
|
-
// @public
|
|
2018
|
-
export interface ProjectCatalogsSyncOptionalParams extends coreClient.OperationOptions {
|
|
2019
|
-
resumeFrom?: string;
|
|
2020
|
-
updateIntervalInMs?: number;
|
|
2021
|
-
}
|
|
2022
|
-
|
|
2023
|
-
// @public
|
|
2024
|
-
export type ProjectCatalogsSyncResponse = ProjectCatalogsSyncHeaders;
|
|
2025
|
-
|
|
2026
|
-
// @public
|
|
2027
|
-
export interface ProjectEnvironmentType extends Resource {
|
|
2028
|
-
creatorRoleAssignment?: ProjectEnvironmentTypeUpdatePropertiesCreatorRoleAssignment;
|
|
2029
|
-
deploymentTargetId?: string;
|
|
2030
|
-
displayName?: string;
|
|
2031
|
-
readonly environmentCount?: number;
|
|
2032
|
-
identity?: ManagedServiceIdentity;
|
|
2033
|
-
location?: string;
|
|
2034
|
-
readonly provisioningState?: ProvisioningState;
|
|
2035
|
-
status?: EnvironmentTypeEnableStatus;
|
|
2036
|
-
tags?: {
|
|
2037
|
-
[propertyName: string]: string;
|
|
2038
|
-
};
|
|
2039
|
-
userRoleAssignments?: {
|
|
2040
|
-
[propertyName: string]: UserRoleAssignmentValue;
|
|
2041
|
-
};
|
|
2042
|
-
}
|
|
2043
|
-
|
|
2044
|
-
// @public
|
|
2045
|
-
export interface ProjectEnvironmentTypeListResult {
|
|
2046
|
-
readonly nextLink?: string;
|
|
2047
|
-
readonly value?: ProjectEnvironmentType[];
|
|
2048
|
-
}
|
|
2049
|
-
|
|
2050
|
-
// @public
|
|
2051
|
-
export interface ProjectEnvironmentTypeProperties extends ProjectEnvironmentTypeUpdateProperties {
|
|
2052
|
-
readonly environmentCount?: number;
|
|
2053
|
-
readonly provisioningState?: ProvisioningState;
|
|
2054
|
-
}
|
|
2055
|
-
|
|
2056
|
-
// @public
|
|
2057
|
-
export interface ProjectEnvironmentTypes {
|
|
2058
|
-
createOrUpdate(resourceGroupName: string, projectName: string, environmentTypeName: string, body: ProjectEnvironmentType, options?: ProjectEnvironmentTypesCreateOrUpdateOptionalParams): Promise<ProjectEnvironmentTypesCreateOrUpdateResponse>;
|
|
2059
|
-
delete(resourceGroupName: string, projectName: string, environmentTypeName: string, options?: ProjectEnvironmentTypesDeleteOptionalParams): Promise<void>;
|
|
2060
|
-
get(resourceGroupName: string, projectName: string, environmentTypeName: string, options?: ProjectEnvironmentTypesGetOptionalParams): Promise<ProjectEnvironmentTypesGetResponse>;
|
|
2061
|
-
list(resourceGroupName: string, projectName: string, options?: ProjectEnvironmentTypesListOptionalParams): PagedAsyncIterableIterator<ProjectEnvironmentType>;
|
|
2062
|
-
update(resourceGroupName: string, projectName: string, environmentTypeName: string, body: ProjectEnvironmentTypeUpdate, options?: ProjectEnvironmentTypesUpdateOptionalParams): Promise<ProjectEnvironmentTypesUpdateResponse>;
|
|
2063
|
-
}
|
|
2064
|
-
|
|
2065
|
-
// @public
|
|
2066
|
-
export interface ProjectEnvironmentTypesCreateOrUpdateOptionalParams extends coreClient.OperationOptions {
|
|
2067
|
-
}
|
|
2068
|
-
|
|
2069
|
-
// @public
|
|
2070
|
-
export type ProjectEnvironmentTypesCreateOrUpdateResponse = ProjectEnvironmentType;
|
|
2071
|
-
|
|
2072
|
-
// @public
|
|
2073
|
-
export interface ProjectEnvironmentTypesDeleteOptionalParams extends coreClient.OperationOptions {
|
|
2074
|
-
}
|
|
2075
|
-
|
|
2076
|
-
// @public
|
|
2077
|
-
export interface ProjectEnvironmentTypesGetOptionalParams extends coreClient.OperationOptions {
|
|
2078
|
-
}
|
|
2079
|
-
|
|
2080
|
-
// @public
|
|
2081
|
-
export type ProjectEnvironmentTypesGetResponse = ProjectEnvironmentType;
|
|
2082
|
-
|
|
2083
|
-
// @public
|
|
2084
|
-
export interface ProjectEnvironmentTypesListNextOptionalParams extends coreClient.OperationOptions {
|
|
2085
|
-
}
|
|
2086
|
-
|
|
2087
|
-
// @public
|
|
2088
|
-
export type ProjectEnvironmentTypesListNextResponse = ProjectEnvironmentTypeListResult;
|
|
2089
|
-
|
|
2090
|
-
// @public
|
|
2091
|
-
export interface ProjectEnvironmentTypesListOptionalParams extends coreClient.OperationOptions {
|
|
2092
|
-
top?: number;
|
|
2093
|
-
}
|
|
2094
|
-
|
|
2095
|
-
// @public
|
|
2096
|
-
export type ProjectEnvironmentTypesListResponse = ProjectEnvironmentTypeListResult;
|
|
2097
|
-
|
|
2098
|
-
// @public
|
|
2099
|
-
export interface ProjectEnvironmentTypesUpdateOptionalParams extends coreClient.OperationOptions {
|
|
2100
|
-
}
|
|
2101
|
-
|
|
2102
|
-
// @public
|
|
2103
|
-
export type ProjectEnvironmentTypesUpdateResponse = ProjectEnvironmentType;
|
|
2104
|
-
|
|
2105
|
-
// @public
|
|
2106
|
-
export interface ProjectEnvironmentTypeUpdate {
|
|
2107
|
-
creatorRoleAssignment?: ProjectEnvironmentTypeUpdatePropertiesCreatorRoleAssignment;
|
|
2108
|
-
deploymentTargetId?: string;
|
|
2109
|
-
displayName?: string;
|
|
2110
|
-
identity?: ManagedServiceIdentity;
|
|
2111
|
-
status?: EnvironmentTypeEnableStatus;
|
|
2112
|
-
tags?: {
|
|
2113
|
-
[propertyName: string]: string;
|
|
2114
|
-
};
|
|
2115
|
-
userRoleAssignments?: {
|
|
2116
|
-
[propertyName: string]: UserRoleAssignmentValue;
|
|
2117
|
-
};
|
|
2118
|
-
}
|
|
2119
|
-
|
|
2120
|
-
// @public
|
|
2121
|
-
export interface ProjectEnvironmentTypeUpdateProperties {
|
|
2122
|
-
creatorRoleAssignment?: ProjectEnvironmentTypeUpdatePropertiesCreatorRoleAssignment;
|
|
2123
|
-
deploymentTargetId?: string;
|
|
2124
|
-
displayName?: string;
|
|
2125
|
-
status?: EnvironmentTypeEnableStatus;
|
|
2126
|
-
userRoleAssignments?: {
|
|
2127
|
-
[propertyName: string]: UserRoleAssignmentValue;
|
|
2128
|
-
};
|
|
2129
|
-
}
|
|
2130
|
-
|
|
2131
|
-
// @public
|
|
2132
|
-
export interface ProjectEnvironmentTypeUpdatePropertiesCreatorRoleAssignment {
|
|
2133
|
-
roles?: {
|
|
2134
|
-
[propertyName: string]: EnvironmentRole;
|
|
2135
|
-
};
|
|
2136
|
-
}
|
|
2137
|
-
|
|
2138
|
-
// @public
|
|
2139
|
-
export interface ProjectListResult {
|
|
2140
|
-
readonly nextLink?: string;
|
|
2141
|
-
readonly value?: Project[];
|
|
2142
|
-
}
|
|
2143
|
-
|
|
2144
|
-
// @public
|
|
2145
|
-
export interface ProjectProperties extends ProjectUpdateProperties {
|
|
2146
|
-
readonly devCenterUri?: string;
|
|
2147
|
-
readonly provisioningState?: ProvisioningState;
|
|
2148
|
-
}
|
|
2149
|
-
|
|
2150
|
-
// @public
|
|
2151
|
-
export interface Projects {
|
|
2152
|
-
beginCreateOrUpdate(resourceGroupName: string, projectName: string, body: Project, options?: ProjectsCreateOrUpdateOptionalParams): Promise<SimplePollerLike<OperationState<ProjectsCreateOrUpdateResponse>, ProjectsCreateOrUpdateResponse>>;
|
|
2153
|
-
beginCreateOrUpdateAndWait(resourceGroupName: string, projectName: string, body: Project, options?: ProjectsCreateOrUpdateOptionalParams): Promise<ProjectsCreateOrUpdateResponse>;
|
|
2154
|
-
beginDelete(resourceGroupName: string, projectName: string, options?: ProjectsDeleteOptionalParams): Promise<SimplePollerLike<OperationState<ProjectsDeleteResponse>, ProjectsDeleteResponse>>;
|
|
2155
|
-
beginDeleteAndWait(resourceGroupName: string, projectName: string, options?: ProjectsDeleteOptionalParams): Promise<ProjectsDeleteResponse>;
|
|
2156
|
-
beginUpdate(resourceGroupName: string, projectName: string, body: ProjectUpdate, options?: ProjectsUpdateOptionalParams): Promise<SimplePollerLike<OperationState<ProjectsUpdateResponse>, ProjectsUpdateResponse>>;
|
|
2157
|
-
beginUpdateAndWait(resourceGroupName: string, projectName: string, body: ProjectUpdate, options?: ProjectsUpdateOptionalParams): Promise<ProjectsUpdateResponse>;
|
|
2158
|
-
get(resourceGroupName: string, projectName: string, options?: ProjectsGetOptionalParams): Promise<ProjectsGetResponse>;
|
|
2159
|
-
listByResourceGroup(resourceGroupName: string, options?: ProjectsListByResourceGroupOptionalParams): PagedAsyncIterableIterator<Project>;
|
|
2160
|
-
listBySubscription(options?: ProjectsListBySubscriptionOptionalParams): PagedAsyncIterableIterator<Project>;
|
|
2161
|
-
}
|
|
2162
|
-
|
|
2163
|
-
// @public
|
|
2164
|
-
export interface ProjectsCreateOrUpdateOptionalParams extends coreClient.OperationOptions {
|
|
2165
|
-
resumeFrom?: string;
|
|
2166
|
-
updateIntervalInMs?: number;
|
|
2167
|
-
}
|
|
2168
|
-
|
|
2169
|
-
// @public
|
|
2170
|
-
export type ProjectsCreateOrUpdateResponse = Project;
|
|
2171
|
-
|
|
2172
|
-
// @public
|
|
2173
|
-
export interface ProjectsDeleteHeaders {
|
|
2174
|
-
// (undocumented)
|
|
2175
|
-
location?: string;
|
|
2176
|
-
}
|
|
2177
|
-
|
|
2178
|
-
// @public
|
|
2179
|
-
export interface ProjectsDeleteOptionalParams extends coreClient.OperationOptions {
|
|
2180
|
-
resumeFrom?: string;
|
|
2181
|
-
updateIntervalInMs?: number;
|
|
2182
|
-
}
|
|
2183
|
-
|
|
2184
|
-
// @public
|
|
2185
|
-
export type ProjectsDeleteResponse = ProjectsDeleteHeaders;
|
|
2186
|
-
|
|
2187
|
-
// @public
|
|
2188
|
-
export interface ProjectsGetOptionalParams extends coreClient.OperationOptions {
|
|
2189
|
-
}
|
|
2190
|
-
|
|
2191
|
-
// @public
|
|
2192
|
-
export type ProjectsGetResponse = Project;
|
|
2193
|
-
|
|
2194
|
-
// @public
|
|
2195
|
-
export interface ProjectsListByResourceGroupNextOptionalParams extends coreClient.OperationOptions {
|
|
2196
|
-
}
|
|
2197
|
-
|
|
2198
|
-
// @public
|
|
2199
|
-
export type ProjectsListByResourceGroupNextResponse = ProjectListResult;
|
|
2200
|
-
|
|
2201
|
-
// @public
|
|
2202
|
-
export interface ProjectsListByResourceGroupOptionalParams extends coreClient.OperationOptions {
|
|
2203
|
-
top?: number;
|
|
2204
|
-
}
|
|
2205
|
-
|
|
2206
|
-
// @public
|
|
2207
|
-
export type ProjectsListByResourceGroupResponse = ProjectListResult;
|
|
2208
|
-
|
|
2209
|
-
// @public
|
|
2210
|
-
export interface ProjectsListBySubscriptionNextOptionalParams extends coreClient.OperationOptions {
|
|
2211
|
-
}
|
|
2212
|
-
|
|
2213
|
-
// @public
|
|
2214
|
-
export type ProjectsListBySubscriptionNextResponse = ProjectListResult;
|
|
2215
|
-
|
|
2216
|
-
// @public
|
|
2217
|
-
export interface ProjectsListBySubscriptionOptionalParams extends coreClient.OperationOptions {
|
|
2218
|
-
top?: number;
|
|
2219
|
-
}
|
|
2220
|
-
|
|
2221
|
-
// @public
|
|
2222
|
-
export type ProjectsListBySubscriptionResponse = ProjectListResult;
|
|
2223
|
-
|
|
2224
|
-
// @public
|
|
2225
|
-
export interface ProjectsUpdateHeaders {
|
|
2226
|
-
// (undocumented)
|
|
2227
|
-
location?: string;
|
|
2228
|
-
}
|
|
2229
|
-
|
|
2230
|
-
// @public
|
|
2231
|
-
export interface ProjectsUpdateOptionalParams extends coreClient.OperationOptions {
|
|
2232
|
-
resumeFrom?: string;
|
|
2233
|
-
updateIntervalInMs?: number;
|
|
2234
|
-
}
|
|
2235
|
-
|
|
2236
|
-
// @public
|
|
2237
|
-
export type ProjectsUpdateResponse = Project;
|
|
2238
|
-
|
|
2239
|
-
// @public
|
|
2240
|
-
export interface ProjectUpdate extends TrackedResourceUpdate {
|
|
2241
|
-
catalogSettings?: ProjectCatalogSettings;
|
|
2242
|
-
description?: string;
|
|
2243
|
-
devCenterId?: string;
|
|
2244
|
-
displayName?: string;
|
|
2245
|
-
identity?: ManagedServiceIdentity;
|
|
2246
|
-
maxDevBoxesPerUser?: number;
|
|
2247
|
-
}
|
|
2248
|
-
|
|
2249
|
-
// @public
|
|
2250
|
-
export interface ProjectUpdateProperties {
|
|
2251
|
-
catalogSettings?: ProjectCatalogSettings;
|
|
2252
|
-
description?: string;
|
|
2253
|
-
devCenterId?: string;
|
|
2254
|
-
displayName?: string;
|
|
2255
|
-
maxDevBoxesPerUser?: number;
|
|
2256
|
-
}
|
|
2257
|
-
|
|
2258
|
-
// @public
|
|
2259
|
-
export type ProvisioningState = string;
|
|
2260
|
-
|
|
2261
|
-
// @public
|
|
2262
|
-
export interface ProxyResource extends Resource {
|
|
2263
|
-
}
|
|
2264
|
-
|
|
2265
|
-
// @public
|
|
2266
|
-
export interface RecommendedMachineConfiguration {
|
|
2267
|
-
readonly memory?: ResourceRange;
|
|
2268
|
-
readonly vCPUs?: ResourceRange;
|
|
2269
|
-
}
|
|
2270
|
-
|
|
2271
|
-
// @public
|
|
2272
|
-
export interface Resource {
|
|
2273
|
-
readonly id?: string;
|
|
2274
|
-
readonly name?: string;
|
|
2275
|
-
readonly systemData?: SystemData;
|
|
2276
|
-
readonly type?: string;
|
|
2277
|
-
}
|
|
2278
|
-
|
|
2279
|
-
// @public
|
|
2280
|
-
export interface ResourceRange {
|
|
2281
|
-
readonly max?: number;
|
|
2282
|
-
readonly min?: number;
|
|
2283
|
-
}
|
|
2284
|
-
|
|
2285
|
-
// @public
|
|
2286
|
-
export interface Schedule extends Resource {
|
|
2287
|
-
frequency?: ScheduledFrequency;
|
|
2288
|
-
location?: string;
|
|
2289
|
-
readonly provisioningState?: ProvisioningState;
|
|
2290
|
-
state?: ScheduleEnableStatus;
|
|
2291
|
-
tags?: {
|
|
2292
|
-
[propertyName: string]: string;
|
|
2293
|
-
};
|
|
2294
|
-
time?: string;
|
|
2295
|
-
timeZone?: string;
|
|
2296
|
-
typePropertiesType?: ScheduledType;
|
|
2297
|
-
}
|
|
2298
|
-
|
|
2299
|
-
// @public
|
|
2300
|
-
export type ScheduledFrequency = string;
|
|
2301
|
-
|
|
2302
|
-
// @public
|
|
2303
|
-
export type ScheduledType = string;
|
|
2304
|
-
|
|
2305
|
-
// @public
|
|
2306
|
-
export type ScheduleEnableStatus = string;
|
|
2307
|
-
|
|
2308
|
-
// @public
|
|
2309
|
-
export interface ScheduleListResult {
|
|
2310
|
-
readonly nextLink?: string;
|
|
2311
|
-
readonly value?: Schedule[];
|
|
2312
|
-
}
|
|
2313
|
-
|
|
2314
|
-
// @public
|
|
2315
|
-
export interface ScheduleProperties extends ScheduleUpdateProperties {
|
|
2316
|
-
readonly provisioningState?: ProvisioningState;
|
|
2317
|
-
}
|
|
2318
|
-
|
|
2319
|
-
// @public
|
|
2320
|
-
export interface Schedules {
|
|
2321
|
-
beginCreateOrUpdate(resourceGroupName: string, projectName: string, poolName: string, scheduleName: string, body: Schedule, options?: SchedulesCreateOrUpdateOptionalParams): Promise<SimplePollerLike<OperationState<SchedulesCreateOrUpdateResponse>, SchedulesCreateOrUpdateResponse>>;
|
|
2322
|
-
beginCreateOrUpdateAndWait(resourceGroupName: string, projectName: string, poolName: string, scheduleName: string, body: Schedule, options?: SchedulesCreateOrUpdateOptionalParams): Promise<SchedulesCreateOrUpdateResponse>;
|
|
2323
|
-
beginDelete(resourceGroupName: string, projectName: string, poolName: string, scheduleName: string, options?: SchedulesDeleteOptionalParams): Promise<SimplePollerLike<OperationState<SchedulesDeleteResponse>, SchedulesDeleteResponse>>;
|
|
2324
|
-
beginDeleteAndWait(resourceGroupName: string, projectName: string, poolName: string, scheduleName: string, options?: SchedulesDeleteOptionalParams): Promise<SchedulesDeleteResponse>;
|
|
2325
|
-
beginUpdate(resourceGroupName: string, projectName: string, poolName: string, scheduleName: string, body: ScheduleUpdate, options?: SchedulesUpdateOptionalParams): Promise<SimplePollerLike<OperationState<SchedulesUpdateResponse>, SchedulesUpdateResponse>>;
|
|
2326
|
-
beginUpdateAndWait(resourceGroupName: string, projectName: string, poolName: string, scheduleName: string, body: ScheduleUpdate, options?: SchedulesUpdateOptionalParams): Promise<SchedulesUpdateResponse>;
|
|
2327
|
-
get(resourceGroupName: string, projectName: string, poolName: string, scheduleName: string, options?: SchedulesGetOptionalParams): Promise<SchedulesGetResponse>;
|
|
2328
|
-
listByPool(resourceGroupName: string, projectName: string, poolName: string, options?: SchedulesListByPoolOptionalParams): PagedAsyncIterableIterator<Schedule>;
|
|
2329
|
-
}
|
|
2330
|
-
|
|
2331
|
-
// @public
|
|
2332
|
-
export interface SchedulesCreateOrUpdateOptionalParams extends coreClient.OperationOptions {
|
|
2333
|
-
resumeFrom?: string;
|
|
2334
|
-
top?: number;
|
|
2335
|
-
updateIntervalInMs?: number;
|
|
2336
|
-
}
|
|
2337
|
-
|
|
2338
|
-
// @public
|
|
2339
|
-
export type SchedulesCreateOrUpdateResponse = Schedule;
|
|
2340
|
-
|
|
2341
|
-
// @public
|
|
2342
|
-
export interface SchedulesDeleteHeaders {
|
|
2343
|
-
// (undocumented)
|
|
2344
|
-
location?: string;
|
|
2345
|
-
}
|
|
2346
|
-
|
|
2347
|
-
// @public
|
|
2348
|
-
export interface SchedulesDeleteOptionalParams extends coreClient.OperationOptions {
|
|
2349
|
-
resumeFrom?: string;
|
|
2350
|
-
top?: number;
|
|
2351
|
-
updateIntervalInMs?: number;
|
|
2352
|
-
}
|
|
2353
|
-
|
|
2354
|
-
// @public
|
|
2355
|
-
export type SchedulesDeleteResponse = SchedulesDeleteHeaders;
|
|
2356
|
-
|
|
2357
|
-
// @public
|
|
2358
|
-
export interface SchedulesGetOptionalParams extends coreClient.OperationOptions {
|
|
2359
|
-
top?: number;
|
|
2360
|
-
}
|
|
2361
|
-
|
|
2362
|
-
// @public
|
|
2363
|
-
export type SchedulesGetResponse = Schedule;
|
|
2364
|
-
|
|
2365
|
-
// @public
|
|
2366
|
-
export interface SchedulesListByPoolNextOptionalParams extends coreClient.OperationOptions {
|
|
2367
|
-
}
|
|
2368
|
-
|
|
2369
|
-
// @public
|
|
2370
|
-
export type SchedulesListByPoolNextResponse = ScheduleListResult;
|
|
2371
|
-
|
|
2372
|
-
// @public
|
|
2373
|
-
export interface SchedulesListByPoolOptionalParams extends coreClient.OperationOptions {
|
|
2374
|
-
top?: number;
|
|
2375
|
-
}
|
|
2376
|
-
|
|
2377
|
-
// @public
|
|
2378
|
-
export type SchedulesListByPoolResponse = ScheduleListResult;
|
|
2379
|
-
|
|
2380
|
-
// @public
|
|
2381
|
-
export interface SchedulesUpdateHeaders {
|
|
2382
|
-
// (undocumented)
|
|
2383
|
-
location?: string;
|
|
2384
|
-
}
|
|
2385
|
-
|
|
2386
|
-
// @public
|
|
2387
|
-
export interface SchedulesUpdateOptionalParams extends coreClient.OperationOptions {
|
|
2388
|
-
resumeFrom?: string;
|
|
2389
|
-
top?: number;
|
|
2390
|
-
updateIntervalInMs?: number;
|
|
2391
|
-
}
|
|
2392
|
-
|
|
2393
|
-
// @public
|
|
2394
|
-
export type SchedulesUpdateResponse = Schedule;
|
|
2395
|
-
|
|
2396
|
-
// @public
|
|
2397
|
-
export interface ScheduleUpdate {
|
|
2398
|
-
frequency?: ScheduledFrequency;
|
|
2399
|
-
location?: string;
|
|
2400
|
-
state?: ScheduleEnableStatus;
|
|
2401
|
-
tags?: {
|
|
2402
|
-
[propertyName: string]: string;
|
|
2403
|
-
};
|
|
2404
|
-
time?: string;
|
|
2405
|
-
timeZone?: string;
|
|
2406
|
-
type?: ScheduledType;
|
|
2407
|
-
}
|
|
2408
|
-
|
|
2409
|
-
// @public
|
|
2410
|
-
export interface ScheduleUpdateProperties extends TrackedResourceUpdate {
|
|
2411
|
-
frequency?: ScheduledFrequency;
|
|
2412
|
-
state?: ScheduleEnableStatus;
|
|
2413
|
-
time?: string;
|
|
2414
|
-
timeZone?: string;
|
|
2415
|
-
type?: ScheduledType;
|
|
2416
|
-
}
|
|
2417
|
-
|
|
2418
|
-
// @public
|
|
2419
|
-
export type SingleSignOnStatus = string;
|
|
2420
|
-
|
|
2421
|
-
// @public
|
|
2422
|
-
export interface Sku {
|
|
2423
|
-
capacity?: number;
|
|
2424
|
-
family?: string;
|
|
2425
|
-
name: string;
|
|
2426
|
-
size?: string;
|
|
2427
|
-
tier?: SkuTier;
|
|
2428
|
-
}
|
|
2429
|
-
|
|
2430
|
-
// @public
|
|
2431
|
-
export interface SkuListResult {
|
|
2432
|
-
readonly nextLink?: string;
|
|
2433
|
-
readonly value?: DevCenterSku[];
|
|
2434
|
-
}
|
|
2435
|
-
|
|
2436
|
-
// @public
|
|
2437
|
-
export interface Skus {
|
|
2438
|
-
listBySubscription(options?: SkusListBySubscriptionOptionalParams): PagedAsyncIterableIterator<DevCenterSku>;
|
|
2439
|
-
}
|
|
2440
|
-
|
|
2441
|
-
// @public
|
|
2442
|
-
export interface SkusListBySubscriptionNextOptionalParams extends coreClient.OperationOptions {
|
|
2443
|
-
}
|
|
2444
|
-
|
|
2445
|
-
// @public
|
|
2446
|
-
export type SkusListBySubscriptionNextResponse = SkuListResult;
|
|
2447
|
-
|
|
2448
|
-
// @public
|
|
2449
|
-
export interface SkusListBySubscriptionOptionalParams extends coreClient.OperationOptions {
|
|
2450
|
-
top?: number;
|
|
2451
|
-
}
|
|
2452
|
-
|
|
2453
|
-
// @public
|
|
2454
|
-
export type SkusListBySubscriptionResponse = SkuListResult;
|
|
2455
|
-
|
|
2456
|
-
// @public
|
|
2457
|
-
export type SkuTier = "Free" | "Basic" | "Standard" | "Premium";
|
|
2458
|
-
|
|
2459
|
-
// @public
|
|
2460
|
-
export interface StopOnDisconnectConfiguration {
|
|
2461
|
-
gracePeriodMinutes?: number;
|
|
2462
|
-
status?: StopOnDisconnectEnableStatus;
|
|
2463
|
-
}
|
|
2464
|
-
|
|
2465
|
-
// @public
|
|
2466
|
-
export type StopOnDisconnectEnableStatus = string;
|
|
2467
|
-
|
|
2468
|
-
// @public
|
|
2469
|
-
export interface SyncErrorDetails {
|
|
2470
|
-
readonly conflicts?: CatalogConflictError[];
|
|
2471
|
-
readonly errors?: CatalogSyncError[];
|
|
2472
|
-
readonly operationError?: CatalogErrorDetails;
|
|
2473
|
-
}
|
|
2474
|
-
|
|
2475
|
-
// @public
|
|
2476
|
-
export interface SyncStats {
|
|
2477
|
-
readonly added?: number;
|
|
2478
|
-
readonly removed?: number;
|
|
2479
|
-
syncedCatalogItemTypes?: CatalogItemType[];
|
|
2480
|
-
readonly synchronizationErrors?: number;
|
|
2481
|
-
readonly unchanged?: number;
|
|
2482
|
-
readonly updated?: number;
|
|
2483
|
-
readonly validationErrors?: number;
|
|
2484
|
-
}
|
|
2485
|
-
|
|
2486
|
-
// @public
|
|
2487
|
-
export interface SystemData {
|
|
2488
|
-
createdAt?: Date;
|
|
2489
|
-
createdBy?: string;
|
|
2490
|
-
createdByType?: CreatedByType;
|
|
2491
|
-
lastModifiedAt?: Date;
|
|
2492
|
-
lastModifiedBy?: string;
|
|
2493
|
-
lastModifiedByType?: CreatedByType;
|
|
2494
|
-
}
|
|
2495
|
-
|
|
2496
|
-
// @public
|
|
2497
|
-
export interface TrackedResource extends Resource {
|
|
2498
|
-
location: string;
|
|
2499
|
-
tags?: {
|
|
2500
|
-
[propertyName: string]: string;
|
|
2501
|
-
};
|
|
2502
|
-
}
|
|
2503
|
-
|
|
2504
|
-
// @public
|
|
2505
|
-
export interface TrackedResourceUpdate {
|
|
2506
|
-
location?: string;
|
|
2507
|
-
tags?: {
|
|
2508
|
-
[propertyName: string]: string;
|
|
2509
|
-
};
|
|
2510
|
-
}
|
|
2511
|
-
|
|
2512
|
-
// @public
|
|
2513
|
-
export interface Usage {
|
|
2514
|
-
currentValue?: number;
|
|
2515
|
-
id?: string;
|
|
2516
|
-
limit?: number;
|
|
2517
|
-
name?: UsageName;
|
|
2518
|
-
unit?: UsageUnit;
|
|
2519
|
-
}
|
|
2520
|
-
|
|
2521
|
-
// @public
|
|
2522
|
-
export interface UsageName {
|
|
2523
|
-
localizedValue?: string;
|
|
2524
|
-
value?: string;
|
|
2525
|
-
}
|
|
2526
|
-
|
|
2527
|
-
// @public
|
|
2528
|
-
export interface Usages {
|
|
2529
|
-
listByLocation(location: string, options?: UsagesListByLocationOptionalParams): PagedAsyncIterableIterator<Usage>;
|
|
2530
|
-
}
|
|
2531
|
-
|
|
2532
|
-
// @public
|
|
2533
|
-
export interface UsagesListByLocationNextOptionalParams extends coreClient.OperationOptions {
|
|
2534
|
-
}
|
|
2535
|
-
|
|
2536
|
-
// @public
|
|
2537
|
-
export type UsagesListByLocationNextResponse = ListUsagesResult;
|
|
2538
|
-
|
|
2539
|
-
// @public
|
|
2540
|
-
export interface UsagesListByLocationOptionalParams extends coreClient.OperationOptions {
|
|
2541
|
-
}
|
|
2542
|
-
|
|
2543
|
-
// @public
|
|
2544
|
-
export type UsagesListByLocationResponse = ListUsagesResult;
|
|
2545
|
-
|
|
2546
|
-
// @public
|
|
2547
|
-
export type UsageUnit = string;
|
|
2548
|
-
|
|
2549
|
-
// @public
|
|
2550
|
-
export interface UserAssignedIdentity {
|
|
2551
|
-
readonly clientId?: string;
|
|
2552
|
-
readonly principalId?: string;
|
|
2553
|
-
}
|
|
2554
|
-
|
|
2555
|
-
// @public
|
|
2556
|
-
export interface UserRoleAssignmentValue {
|
|
2557
|
-
roles?: {
|
|
2558
|
-
[propertyName: string]: EnvironmentRole;
|
|
2559
|
-
};
|
|
2560
|
-
}
|
|
2561
|
-
|
|
2562
|
-
// @public
|
|
2563
|
-
export type VirtualNetworkType = string;
|
|
2564
|
-
|
|
2565
|
-
// (No @packageDocumentation comment for this package)
|
|
2566
|
-
|
|
2567
|
-
```
|
|
1
|
+
## API Report File for "@azure/arm-devcenter"
|
|
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 type ActionType = string;
|
|
15
|
+
|
|
16
|
+
// @public
|
|
17
|
+
export interface AllowedEnvironmentType extends Resource {
|
|
18
|
+
readonly displayName?: string;
|
|
19
|
+
readonly provisioningState?: ProvisioningState;
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
// @public
|
|
23
|
+
export interface AllowedEnvironmentTypeListResult {
|
|
24
|
+
readonly nextLink?: string;
|
|
25
|
+
readonly value?: AllowedEnvironmentType[];
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
// @public
|
|
29
|
+
export interface AttachedNetworkConnection extends Resource {
|
|
30
|
+
readonly domainJoinType?: DomainJoinType;
|
|
31
|
+
readonly healthCheckStatus?: HealthCheckStatus;
|
|
32
|
+
networkConnectionId?: string;
|
|
33
|
+
readonly networkConnectionLocation?: string;
|
|
34
|
+
readonly provisioningState?: ProvisioningState;
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
// @public
|
|
38
|
+
export interface AttachedNetworkListResult {
|
|
39
|
+
readonly nextLink?: string;
|
|
40
|
+
readonly value?: AttachedNetworkConnection[];
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
// @public
|
|
44
|
+
export interface AttachedNetworks {
|
|
45
|
+
beginCreateOrUpdate(resourceGroupName: string, devCenterName: string, attachedNetworkConnectionName: string, body: AttachedNetworkConnection, options?: AttachedNetworksCreateOrUpdateOptionalParams): Promise<SimplePollerLike<OperationState<AttachedNetworksCreateOrUpdateResponse>, AttachedNetworksCreateOrUpdateResponse>>;
|
|
46
|
+
beginCreateOrUpdateAndWait(resourceGroupName: string, devCenterName: string, attachedNetworkConnectionName: string, body: AttachedNetworkConnection, options?: AttachedNetworksCreateOrUpdateOptionalParams): Promise<AttachedNetworksCreateOrUpdateResponse>;
|
|
47
|
+
beginDelete(resourceGroupName: string, devCenterName: string, attachedNetworkConnectionName: string, options?: AttachedNetworksDeleteOptionalParams): Promise<SimplePollerLike<OperationState<AttachedNetworksDeleteResponse>, AttachedNetworksDeleteResponse>>;
|
|
48
|
+
beginDeleteAndWait(resourceGroupName: string, devCenterName: string, attachedNetworkConnectionName: string, options?: AttachedNetworksDeleteOptionalParams): Promise<AttachedNetworksDeleteResponse>;
|
|
49
|
+
getByDevCenter(resourceGroupName: string, devCenterName: string, attachedNetworkConnectionName: string, options?: AttachedNetworksGetByDevCenterOptionalParams): Promise<AttachedNetworksGetByDevCenterResponse>;
|
|
50
|
+
getByProject(resourceGroupName: string, projectName: string, attachedNetworkConnectionName: string, options?: AttachedNetworksGetByProjectOptionalParams): Promise<AttachedNetworksGetByProjectResponse>;
|
|
51
|
+
listByDevCenter(resourceGroupName: string, devCenterName: string, options?: AttachedNetworksListByDevCenterOptionalParams): PagedAsyncIterableIterator<AttachedNetworkConnection>;
|
|
52
|
+
listByProject(resourceGroupName: string, projectName: string, options?: AttachedNetworksListByProjectOptionalParams): PagedAsyncIterableIterator<AttachedNetworkConnection>;
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
// @public
|
|
56
|
+
export interface AttachedNetworksCreateOrUpdateOptionalParams extends coreClient.OperationOptions {
|
|
57
|
+
resumeFrom?: string;
|
|
58
|
+
updateIntervalInMs?: number;
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
// @public
|
|
62
|
+
export type AttachedNetworksCreateOrUpdateResponse = AttachedNetworkConnection;
|
|
63
|
+
|
|
64
|
+
// @public
|
|
65
|
+
export interface AttachedNetworksDeleteHeaders {
|
|
66
|
+
// (undocumented)
|
|
67
|
+
location?: string;
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
// @public
|
|
71
|
+
export interface AttachedNetworksDeleteOptionalParams extends coreClient.OperationOptions {
|
|
72
|
+
resumeFrom?: string;
|
|
73
|
+
updateIntervalInMs?: number;
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
// @public
|
|
77
|
+
export type AttachedNetworksDeleteResponse = AttachedNetworksDeleteHeaders;
|
|
78
|
+
|
|
79
|
+
// @public
|
|
80
|
+
export interface AttachedNetworksGetByDevCenterOptionalParams extends coreClient.OperationOptions {
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
// @public
|
|
84
|
+
export type AttachedNetworksGetByDevCenterResponse = AttachedNetworkConnection;
|
|
85
|
+
|
|
86
|
+
// @public
|
|
87
|
+
export interface AttachedNetworksGetByProjectOptionalParams extends coreClient.OperationOptions {
|
|
88
|
+
}
|
|
89
|
+
|
|
90
|
+
// @public
|
|
91
|
+
export type AttachedNetworksGetByProjectResponse = AttachedNetworkConnection;
|
|
92
|
+
|
|
93
|
+
// @public
|
|
94
|
+
export interface AttachedNetworksListByDevCenterNextOptionalParams extends coreClient.OperationOptions {
|
|
95
|
+
}
|
|
96
|
+
|
|
97
|
+
// @public
|
|
98
|
+
export type AttachedNetworksListByDevCenterNextResponse = AttachedNetworkListResult;
|
|
99
|
+
|
|
100
|
+
// @public
|
|
101
|
+
export interface AttachedNetworksListByDevCenterOptionalParams extends coreClient.OperationOptions {
|
|
102
|
+
top?: number;
|
|
103
|
+
}
|
|
104
|
+
|
|
105
|
+
// @public
|
|
106
|
+
export type AttachedNetworksListByDevCenterResponse = AttachedNetworkListResult;
|
|
107
|
+
|
|
108
|
+
// @public
|
|
109
|
+
export interface AttachedNetworksListByProjectNextOptionalParams extends coreClient.OperationOptions {
|
|
110
|
+
}
|
|
111
|
+
|
|
112
|
+
// @public
|
|
113
|
+
export type AttachedNetworksListByProjectNextResponse = AttachedNetworkListResult;
|
|
114
|
+
|
|
115
|
+
// @public
|
|
116
|
+
export interface AttachedNetworksListByProjectOptionalParams extends coreClient.OperationOptions {
|
|
117
|
+
top?: number;
|
|
118
|
+
}
|
|
119
|
+
|
|
120
|
+
// @public
|
|
121
|
+
export type AttachedNetworksListByProjectResponse = AttachedNetworkListResult;
|
|
122
|
+
|
|
123
|
+
// @public
|
|
124
|
+
export interface Capability {
|
|
125
|
+
readonly name?: string;
|
|
126
|
+
readonly value?: string;
|
|
127
|
+
}
|
|
128
|
+
|
|
129
|
+
// @public
|
|
130
|
+
export interface Catalog extends Resource {
|
|
131
|
+
adoGit?: GitCatalog;
|
|
132
|
+
readonly connectionState?: CatalogConnectionState;
|
|
133
|
+
gitHub?: GitCatalog;
|
|
134
|
+
readonly lastConnectionTime?: Date;
|
|
135
|
+
readonly lastSyncStats?: SyncStats;
|
|
136
|
+
readonly lastSyncTime?: Date;
|
|
137
|
+
readonly provisioningState?: ProvisioningState;
|
|
138
|
+
readonly syncState?: CatalogSyncState;
|
|
139
|
+
syncType?: CatalogSyncType;
|
|
140
|
+
tags?: {
|
|
141
|
+
[propertyName: string]: string;
|
|
142
|
+
};
|
|
143
|
+
}
|
|
144
|
+
|
|
145
|
+
// @public
|
|
146
|
+
export interface CatalogConflictError {
|
|
147
|
+
readonly name?: string;
|
|
148
|
+
readonly path?: string;
|
|
149
|
+
}
|
|
150
|
+
|
|
151
|
+
// @public
|
|
152
|
+
export type CatalogConnectionState = string;
|
|
153
|
+
|
|
154
|
+
// @public
|
|
155
|
+
export interface CatalogErrorDetails {
|
|
156
|
+
code?: string;
|
|
157
|
+
message?: string;
|
|
158
|
+
}
|
|
159
|
+
|
|
160
|
+
// @public
|
|
161
|
+
export type CatalogItemSyncEnableStatus = string;
|
|
162
|
+
|
|
163
|
+
// @public
|
|
164
|
+
export type CatalogItemType = string;
|
|
165
|
+
|
|
166
|
+
// @public
|
|
167
|
+
export interface CatalogListResult {
|
|
168
|
+
readonly nextLink?: string;
|
|
169
|
+
readonly value?: Catalog[];
|
|
170
|
+
}
|
|
171
|
+
|
|
172
|
+
// @public
|
|
173
|
+
export interface CatalogProperties extends CatalogUpdateProperties {
|
|
174
|
+
readonly connectionState?: CatalogConnectionState;
|
|
175
|
+
readonly lastConnectionTime?: Date;
|
|
176
|
+
readonly lastSyncStats?: SyncStats;
|
|
177
|
+
readonly lastSyncTime?: Date;
|
|
178
|
+
readonly provisioningState?: ProvisioningState;
|
|
179
|
+
readonly syncState?: CatalogSyncState;
|
|
180
|
+
}
|
|
181
|
+
|
|
182
|
+
// @public
|
|
183
|
+
export interface CatalogResourceValidationErrorDetails {
|
|
184
|
+
readonly errors?: CatalogErrorDetails[];
|
|
185
|
+
}
|
|
186
|
+
|
|
187
|
+
// @public
|
|
188
|
+
export type CatalogResourceValidationStatus = string;
|
|
189
|
+
|
|
190
|
+
// @public
|
|
191
|
+
export interface Catalogs {
|
|
192
|
+
beginConnect(resourceGroupName: string, devCenterName: string, catalogName: string, options?: CatalogsConnectOptionalParams): Promise<SimplePollerLike<OperationState<CatalogsConnectResponse>, CatalogsConnectResponse>>;
|
|
193
|
+
beginConnectAndWait(resourceGroupName: string, devCenterName: string, catalogName: string, options?: CatalogsConnectOptionalParams): Promise<CatalogsConnectResponse>;
|
|
194
|
+
beginCreateOrUpdate(resourceGroupName: string, devCenterName: string, catalogName: string, body: Catalog, options?: CatalogsCreateOrUpdateOptionalParams): Promise<SimplePollerLike<OperationState<CatalogsCreateOrUpdateResponse>, CatalogsCreateOrUpdateResponse>>;
|
|
195
|
+
beginCreateOrUpdateAndWait(resourceGroupName: string, devCenterName: string, catalogName: string, body: Catalog, options?: CatalogsCreateOrUpdateOptionalParams): Promise<CatalogsCreateOrUpdateResponse>;
|
|
196
|
+
beginDelete(resourceGroupName: string, devCenterName: string, catalogName: string, options?: CatalogsDeleteOptionalParams): Promise<SimplePollerLike<OperationState<CatalogsDeleteResponse>, CatalogsDeleteResponse>>;
|
|
197
|
+
beginDeleteAndWait(resourceGroupName: string, devCenterName: string, catalogName: string, options?: CatalogsDeleteOptionalParams): Promise<CatalogsDeleteResponse>;
|
|
198
|
+
beginSync(resourceGroupName: string, devCenterName: string, catalogName: string, options?: CatalogsSyncOptionalParams): Promise<SimplePollerLike<OperationState<CatalogsSyncResponse>, CatalogsSyncResponse>>;
|
|
199
|
+
beginSyncAndWait(resourceGroupName: string, devCenterName: string, catalogName: string, options?: CatalogsSyncOptionalParams): Promise<CatalogsSyncResponse>;
|
|
200
|
+
beginUpdate(resourceGroupName: string, devCenterName: string, catalogName: string, body: CatalogUpdate, options?: CatalogsUpdateOptionalParams): Promise<SimplePollerLike<OperationState<CatalogsUpdateResponse>, CatalogsUpdateResponse>>;
|
|
201
|
+
beginUpdateAndWait(resourceGroupName: string, devCenterName: string, catalogName: string, body: CatalogUpdate, options?: CatalogsUpdateOptionalParams): Promise<CatalogsUpdateResponse>;
|
|
202
|
+
get(resourceGroupName: string, devCenterName: string, catalogName: string, options?: CatalogsGetOptionalParams): Promise<CatalogsGetResponse>;
|
|
203
|
+
getSyncErrorDetails(resourceGroupName: string, devCenterName: string, catalogName: string, options?: CatalogsGetSyncErrorDetailsOptionalParams): Promise<CatalogsGetSyncErrorDetailsResponse>;
|
|
204
|
+
listByDevCenter(resourceGroupName: string, devCenterName: string, options?: CatalogsListByDevCenterOptionalParams): PagedAsyncIterableIterator<Catalog>;
|
|
205
|
+
}
|
|
206
|
+
|
|
207
|
+
// @public
|
|
208
|
+
export interface CatalogsConnectHeaders {
|
|
209
|
+
// (undocumented)
|
|
210
|
+
location?: string;
|
|
211
|
+
}
|
|
212
|
+
|
|
213
|
+
// @public
|
|
214
|
+
export interface CatalogsConnectOptionalParams extends coreClient.OperationOptions {
|
|
215
|
+
resumeFrom?: string;
|
|
216
|
+
updateIntervalInMs?: number;
|
|
217
|
+
}
|
|
218
|
+
|
|
219
|
+
// @public
|
|
220
|
+
export type CatalogsConnectResponse = CatalogsConnectHeaders;
|
|
221
|
+
|
|
222
|
+
// @public
|
|
223
|
+
export interface CatalogsCreateOrUpdateOptionalParams extends coreClient.OperationOptions {
|
|
224
|
+
resumeFrom?: string;
|
|
225
|
+
updateIntervalInMs?: number;
|
|
226
|
+
}
|
|
227
|
+
|
|
228
|
+
// @public
|
|
229
|
+
export type CatalogsCreateOrUpdateResponse = Catalog;
|
|
230
|
+
|
|
231
|
+
// @public
|
|
232
|
+
export interface CatalogsDeleteHeaders {
|
|
233
|
+
// (undocumented)
|
|
234
|
+
location?: string;
|
|
235
|
+
}
|
|
236
|
+
|
|
237
|
+
// @public
|
|
238
|
+
export interface CatalogsDeleteOptionalParams extends coreClient.OperationOptions {
|
|
239
|
+
resumeFrom?: string;
|
|
240
|
+
updateIntervalInMs?: number;
|
|
241
|
+
}
|
|
242
|
+
|
|
243
|
+
// @public
|
|
244
|
+
export type CatalogsDeleteResponse = CatalogsDeleteHeaders;
|
|
245
|
+
|
|
246
|
+
// @public
|
|
247
|
+
export interface CatalogsGetOptionalParams extends coreClient.OperationOptions {
|
|
248
|
+
}
|
|
249
|
+
|
|
250
|
+
// @public
|
|
251
|
+
export type CatalogsGetResponse = Catalog;
|
|
252
|
+
|
|
253
|
+
// @public
|
|
254
|
+
export interface CatalogsGetSyncErrorDetailsOptionalParams extends coreClient.OperationOptions {
|
|
255
|
+
}
|
|
256
|
+
|
|
257
|
+
// @public
|
|
258
|
+
export type CatalogsGetSyncErrorDetailsResponse = SyncErrorDetails;
|
|
259
|
+
|
|
260
|
+
// @public
|
|
261
|
+
export interface CatalogsListByDevCenterNextOptionalParams extends coreClient.OperationOptions {
|
|
262
|
+
}
|
|
263
|
+
|
|
264
|
+
// @public
|
|
265
|
+
export type CatalogsListByDevCenterNextResponse = CatalogListResult;
|
|
266
|
+
|
|
267
|
+
// @public
|
|
268
|
+
export interface CatalogsListByDevCenterOptionalParams extends coreClient.OperationOptions {
|
|
269
|
+
top?: number;
|
|
270
|
+
}
|
|
271
|
+
|
|
272
|
+
// @public
|
|
273
|
+
export type CatalogsListByDevCenterResponse = CatalogListResult;
|
|
274
|
+
|
|
275
|
+
// @public
|
|
276
|
+
export interface CatalogsSyncHeaders {
|
|
277
|
+
// (undocumented)
|
|
278
|
+
location?: string;
|
|
279
|
+
}
|
|
280
|
+
|
|
281
|
+
// @public
|
|
282
|
+
export interface CatalogsSyncOptionalParams extends coreClient.OperationOptions {
|
|
283
|
+
resumeFrom?: string;
|
|
284
|
+
updateIntervalInMs?: number;
|
|
285
|
+
}
|
|
286
|
+
|
|
287
|
+
// @public
|
|
288
|
+
export type CatalogsSyncResponse = CatalogsSyncHeaders;
|
|
289
|
+
|
|
290
|
+
// @public
|
|
291
|
+
export interface CatalogsUpdateHeaders {
|
|
292
|
+
// (undocumented)
|
|
293
|
+
location?: string;
|
|
294
|
+
}
|
|
295
|
+
|
|
296
|
+
// @public
|
|
297
|
+
export interface CatalogsUpdateOptionalParams extends coreClient.OperationOptions {
|
|
298
|
+
resumeFrom?: string;
|
|
299
|
+
updateIntervalInMs?: number;
|
|
300
|
+
}
|
|
301
|
+
|
|
302
|
+
// @public
|
|
303
|
+
export type CatalogsUpdateResponse = Catalog;
|
|
304
|
+
|
|
305
|
+
// @public
|
|
306
|
+
export interface CatalogSyncError {
|
|
307
|
+
readonly errorDetails?: CatalogErrorDetails[];
|
|
308
|
+
readonly path?: string;
|
|
309
|
+
}
|
|
310
|
+
|
|
311
|
+
// @public
|
|
312
|
+
export type CatalogSyncState = string;
|
|
313
|
+
|
|
314
|
+
// @public
|
|
315
|
+
export type CatalogSyncType = string;
|
|
316
|
+
|
|
317
|
+
// @public
|
|
318
|
+
export interface CatalogUpdate {
|
|
319
|
+
adoGit?: GitCatalog;
|
|
320
|
+
gitHub?: GitCatalog;
|
|
321
|
+
syncType?: CatalogSyncType;
|
|
322
|
+
tags?: {
|
|
323
|
+
[propertyName: string]: string;
|
|
324
|
+
};
|
|
325
|
+
}
|
|
326
|
+
|
|
327
|
+
// @public
|
|
328
|
+
export interface CatalogUpdateProperties {
|
|
329
|
+
adoGit?: GitCatalog;
|
|
330
|
+
gitHub?: GitCatalog;
|
|
331
|
+
syncType?: CatalogSyncType;
|
|
332
|
+
tags?: {
|
|
333
|
+
[propertyName: string]: string;
|
|
334
|
+
};
|
|
335
|
+
}
|
|
336
|
+
|
|
337
|
+
// @public
|
|
338
|
+
export interface CheckNameAvailability {
|
|
339
|
+
execute(nameAvailabilityRequest: CheckNameAvailabilityRequest, options?: CheckNameAvailabilityExecuteOptionalParams): Promise<CheckNameAvailabilityExecuteResponse>;
|
|
340
|
+
}
|
|
341
|
+
|
|
342
|
+
// @public
|
|
343
|
+
export interface CheckNameAvailabilityExecuteOptionalParams extends coreClient.OperationOptions {
|
|
344
|
+
}
|
|
345
|
+
|
|
346
|
+
// @public
|
|
347
|
+
export type CheckNameAvailabilityExecuteResponse = CheckNameAvailabilityResponse;
|
|
348
|
+
|
|
349
|
+
// @public
|
|
350
|
+
export type CheckNameAvailabilityReason = string;
|
|
351
|
+
|
|
352
|
+
// @public
|
|
353
|
+
export interface CheckNameAvailabilityRequest {
|
|
354
|
+
name?: string;
|
|
355
|
+
type?: string;
|
|
356
|
+
}
|
|
357
|
+
|
|
358
|
+
// @public
|
|
359
|
+
export interface CheckNameAvailabilityResponse {
|
|
360
|
+
message?: string;
|
|
361
|
+
nameAvailable?: boolean;
|
|
362
|
+
reason?: CheckNameAvailabilityReason;
|
|
363
|
+
}
|
|
364
|
+
|
|
365
|
+
// @public
|
|
366
|
+
export interface CheckScopedNameAvailability {
|
|
367
|
+
execute(nameAvailabilityRequest: CheckScopedNameAvailabilityRequest, options?: CheckScopedNameAvailabilityExecuteOptionalParams): Promise<CheckScopedNameAvailabilityExecuteResponse>;
|
|
368
|
+
}
|
|
369
|
+
|
|
370
|
+
// @public
|
|
371
|
+
export interface CheckScopedNameAvailabilityExecuteOptionalParams extends coreClient.OperationOptions {
|
|
372
|
+
}
|
|
373
|
+
|
|
374
|
+
// @public
|
|
375
|
+
export type CheckScopedNameAvailabilityExecuteResponse = CheckNameAvailabilityResponse;
|
|
376
|
+
|
|
377
|
+
// @public
|
|
378
|
+
export interface CheckScopedNameAvailabilityRequest {
|
|
379
|
+
name?: string;
|
|
380
|
+
scope?: string;
|
|
381
|
+
type?: string;
|
|
382
|
+
}
|
|
383
|
+
|
|
384
|
+
// @public
|
|
385
|
+
export type CreatedByType = string;
|
|
386
|
+
|
|
387
|
+
// @public
|
|
388
|
+
export interface CustomerManagedKeyEncryption {
|
|
389
|
+
keyEncryptionKeyIdentity?: CustomerManagedKeyEncryptionKeyIdentity;
|
|
390
|
+
keyEncryptionKeyUrl?: string;
|
|
391
|
+
}
|
|
392
|
+
|
|
393
|
+
// @public
|
|
394
|
+
export interface CustomerManagedKeyEncryptionKeyIdentity {
|
|
395
|
+
delegatedIdentityClientId?: string;
|
|
396
|
+
identityType?: IdentityType;
|
|
397
|
+
userAssignedIdentityResourceId?: string;
|
|
398
|
+
}
|
|
399
|
+
|
|
400
|
+
// @public
|
|
401
|
+
export interface DevBoxDefinition extends TrackedResource {
|
|
402
|
+
readonly activeImageReference?: ImageReference;
|
|
403
|
+
hibernateSupport?: HibernateSupport;
|
|
404
|
+
imageReference?: ImageReference;
|
|
405
|
+
readonly imageValidationErrorDetails?: ImageValidationErrorDetails;
|
|
406
|
+
readonly imageValidationStatus?: ImageValidationStatus;
|
|
407
|
+
osStorageType?: string;
|
|
408
|
+
readonly provisioningState?: ProvisioningState;
|
|
409
|
+
sku?: Sku;
|
|
410
|
+
readonly validationStatus?: CatalogResourceValidationStatus;
|
|
411
|
+
}
|
|
412
|
+
|
|
413
|
+
// @public
|
|
414
|
+
export interface DevBoxDefinitionListResult {
|
|
415
|
+
readonly nextLink?: string;
|
|
416
|
+
readonly value?: DevBoxDefinition[];
|
|
417
|
+
}
|
|
418
|
+
|
|
419
|
+
// @public
|
|
420
|
+
export interface DevBoxDefinitionProperties extends DevBoxDefinitionUpdateProperties {
|
|
421
|
+
readonly activeImageReference?: ImageReference;
|
|
422
|
+
readonly imageValidationErrorDetails?: ImageValidationErrorDetails;
|
|
423
|
+
readonly imageValidationStatus?: ImageValidationStatus;
|
|
424
|
+
readonly provisioningState?: ProvisioningState;
|
|
425
|
+
readonly validationStatus?: CatalogResourceValidationStatus;
|
|
426
|
+
}
|
|
427
|
+
|
|
428
|
+
// @public
|
|
429
|
+
export interface DevBoxDefinitions {
|
|
430
|
+
beginCreateOrUpdate(resourceGroupName: string, devCenterName: string, devBoxDefinitionName: string, body: DevBoxDefinition, options?: DevBoxDefinitionsCreateOrUpdateOptionalParams): Promise<SimplePollerLike<OperationState<DevBoxDefinitionsCreateOrUpdateResponse>, DevBoxDefinitionsCreateOrUpdateResponse>>;
|
|
431
|
+
beginCreateOrUpdateAndWait(resourceGroupName: string, devCenterName: string, devBoxDefinitionName: string, body: DevBoxDefinition, options?: DevBoxDefinitionsCreateOrUpdateOptionalParams): Promise<DevBoxDefinitionsCreateOrUpdateResponse>;
|
|
432
|
+
beginDelete(resourceGroupName: string, devCenterName: string, devBoxDefinitionName: string, options?: DevBoxDefinitionsDeleteOptionalParams): Promise<SimplePollerLike<OperationState<DevBoxDefinitionsDeleteResponse>, DevBoxDefinitionsDeleteResponse>>;
|
|
433
|
+
beginDeleteAndWait(resourceGroupName: string, devCenterName: string, devBoxDefinitionName: string, options?: DevBoxDefinitionsDeleteOptionalParams): Promise<DevBoxDefinitionsDeleteResponse>;
|
|
434
|
+
beginUpdate(resourceGroupName: string, devCenterName: string, devBoxDefinitionName: string, body: DevBoxDefinitionUpdate, options?: DevBoxDefinitionsUpdateOptionalParams): Promise<SimplePollerLike<OperationState<DevBoxDefinitionsUpdateResponse>, DevBoxDefinitionsUpdateResponse>>;
|
|
435
|
+
beginUpdateAndWait(resourceGroupName: string, devCenterName: string, devBoxDefinitionName: string, body: DevBoxDefinitionUpdate, options?: DevBoxDefinitionsUpdateOptionalParams): Promise<DevBoxDefinitionsUpdateResponse>;
|
|
436
|
+
get(resourceGroupName: string, devCenterName: string, devBoxDefinitionName: string, options?: DevBoxDefinitionsGetOptionalParams): Promise<DevBoxDefinitionsGetResponse>;
|
|
437
|
+
getByProject(resourceGroupName: string, projectName: string, devBoxDefinitionName: string, options?: DevBoxDefinitionsGetByProjectOptionalParams): Promise<DevBoxDefinitionsGetByProjectResponse>;
|
|
438
|
+
listByDevCenter(resourceGroupName: string, devCenterName: string, options?: DevBoxDefinitionsListByDevCenterOptionalParams): PagedAsyncIterableIterator<DevBoxDefinition>;
|
|
439
|
+
listByProject(resourceGroupName: string, projectName: string, options?: DevBoxDefinitionsListByProjectOptionalParams): PagedAsyncIterableIterator<DevBoxDefinition>;
|
|
440
|
+
}
|
|
441
|
+
|
|
442
|
+
// @public
|
|
443
|
+
export interface DevBoxDefinitionsCreateOrUpdateOptionalParams extends coreClient.OperationOptions {
|
|
444
|
+
resumeFrom?: string;
|
|
445
|
+
updateIntervalInMs?: number;
|
|
446
|
+
}
|
|
447
|
+
|
|
448
|
+
// @public
|
|
449
|
+
export type DevBoxDefinitionsCreateOrUpdateResponse = DevBoxDefinition;
|
|
450
|
+
|
|
451
|
+
// @public
|
|
452
|
+
export interface DevBoxDefinitionsDeleteHeaders {
|
|
453
|
+
// (undocumented)
|
|
454
|
+
location?: string;
|
|
455
|
+
}
|
|
456
|
+
|
|
457
|
+
// @public
|
|
458
|
+
export interface DevBoxDefinitionsDeleteOptionalParams extends coreClient.OperationOptions {
|
|
459
|
+
resumeFrom?: string;
|
|
460
|
+
updateIntervalInMs?: number;
|
|
461
|
+
}
|
|
462
|
+
|
|
463
|
+
// @public
|
|
464
|
+
export type DevBoxDefinitionsDeleteResponse = DevBoxDefinitionsDeleteHeaders;
|
|
465
|
+
|
|
466
|
+
// @public
|
|
467
|
+
export interface DevBoxDefinitionsGetByProjectOptionalParams extends coreClient.OperationOptions {
|
|
468
|
+
}
|
|
469
|
+
|
|
470
|
+
// @public
|
|
471
|
+
export type DevBoxDefinitionsGetByProjectResponse = DevBoxDefinition;
|
|
472
|
+
|
|
473
|
+
// @public
|
|
474
|
+
export interface DevBoxDefinitionsGetOptionalParams extends coreClient.OperationOptions {
|
|
475
|
+
}
|
|
476
|
+
|
|
477
|
+
// @public
|
|
478
|
+
export type DevBoxDefinitionsGetResponse = DevBoxDefinition;
|
|
479
|
+
|
|
480
|
+
// @public
|
|
481
|
+
export interface DevBoxDefinitionsListByDevCenterNextOptionalParams extends coreClient.OperationOptions {
|
|
482
|
+
}
|
|
483
|
+
|
|
484
|
+
// @public
|
|
485
|
+
export type DevBoxDefinitionsListByDevCenterNextResponse = DevBoxDefinitionListResult;
|
|
486
|
+
|
|
487
|
+
// @public
|
|
488
|
+
export interface DevBoxDefinitionsListByDevCenterOptionalParams extends coreClient.OperationOptions {
|
|
489
|
+
top?: number;
|
|
490
|
+
}
|
|
491
|
+
|
|
492
|
+
// @public
|
|
493
|
+
export type DevBoxDefinitionsListByDevCenterResponse = DevBoxDefinitionListResult;
|
|
494
|
+
|
|
495
|
+
// @public
|
|
496
|
+
export interface DevBoxDefinitionsListByProjectNextOptionalParams extends coreClient.OperationOptions {
|
|
497
|
+
}
|
|
498
|
+
|
|
499
|
+
// @public
|
|
500
|
+
export type DevBoxDefinitionsListByProjectNextResponse = DevBoxDefinitionListResult;
|
|
501
|
+
|
|
502
|
+
// @public
|
|
503
|
+
export interface DevBoxDefinitionsListByProjectOptionalParams extends coreClient.OperationOptions {
|
|
504
|
+
top?: number;
|
|
505
|
+
}
|
|
506
|
+
|
|
507
|
+
// @public
|
|
508
|
+
export type DevBoxDefinitionsListByProjectResponse = DevBoxDefinitionListResult;
|
|
509
|
+
|
|
510
|
+
// @public
|
|
511
|
+
export interface DevBoxDefinitionsUpdateHeaders {
|
|
512
|
+
// (undocumented)
|
|
513
|
+
location?: string;
|
|
514
|
+
}
|
|
515
|
+
|
|
516
|
+
// @public
|
|
517
|
+
export interface DevBoxDefinitionsUpdateOptionalParams extends coreClient.OperationOptions {
|
|
518
|
+
resumeFrom?: string;
|
|
519
|
+
updateIntervalInMs?: number;
|
|
520
|
+
}
|
|
521
|
+
|
|
522
|
+
// @public
|
|
523
|
+
export type DevBoxDefinitionsUpdateResponse = DevBoxDefinition;
|
|
524
|
+
|
|
525
|
+
// @public
|
|
526
|
+
export interface DevBoxDefinitionUpdate extends TrackedResourceUpdate {
|
|
527
|
+
hibernateSupport?: HibernateSupport;
|
|
528
|
+
imageReference?: ImageReference;
|
|
529
|
+
osStorageType?: string;
|
|
530
|
+
sku?: Sku;
|
|
531
|
+
}
|
|
532
|
+
|
|
533
|
+
// @public
|
|
534
|
+
export interface DevBoxDefinitionUpdateProperties {
|
|
535
|
+
hibernateSupport?: HibernateSupport;
|
|
536
|
+
imageReference?: ImageReference;
|
|
537
|
+
osStorageType?: string;
|
|
538
|
+
sku?: Sku;
|
|
539
|
+
}
|
|
540
|
+
|
|
541
|
+
// @public
|
|
542
|
+
export interface DevCenter extends TrackedResource {
|
|
543
|
+
readonly devCenterUri?: string;
|
|
544
|
+
displayName?: string;
|
|
545
|
+
encryption?: Encryption;
|
|
546
|
+
identity?: ManagedServiceIdentity;
|
|
547
|
+
projectCatalogSettings?: DevCenterProjectCatalogSettings;
|
|
548
|
+
readonly provisioningState?: ProvisioningState;
|
|
549
|
+
}
|
|
550
|
+
|
|
551
|
+
// @public (undocumented)
|
|
552
|
+
export class DevCenterClient extends coreClient.ServiceClient {
|
|
553
|
+
// (undocumented)
|
|
554
|
+
$host: string;
|
|
555
|
+
constructor(credentials: coreAuth.TokenCredential, subscriptionId: string, options?: DevCenterClientOptionalParams);
|
|
556
|
+
// (undocumented)
|
|
557
|
+
apiVersion: string;
|
|
558
|
+
// (undocumented)
|
|
559
|
+
attachedNetworks: AttachedNetworks;
|
|
560
|
+
// (undocumented)
|
|
561
|
+
catalogs: Catalogs;
|
|
562
|
+
// (undocumented)
|
|
563
|
+
checkNameAvailability: CheckNameAvailability;
|
|
564
|
+
// (undocumented)
|
|
565
|
+
checkScopedNameAvailability: CheckScopedNameAvailability;
|
|
566
|
+
// (undocumented)
|
|
567
|
+
devBoxDefinitions: DevBoxDefinitions;
|
|
568
|
+
// (undocumented)
|
|
569
|
+
devCenters: DevCenters;
|
|
570
|
+
// (undocumented)
|
|
571
|
+
environmentDefinitions: EnvironmentDefinitions;
|
|
572
|
+
// (undocumented)
|
|
573
|
+
environmentTypes: EnvironmentTypes;
|
|
574
|
+
// (undocumented)
|
|
575
|
+
galleries: Galleries;
|
|
576
|
+
// (undocumented)
|
|
577
|
+
images: Images;
|
|
578
|
+
// (undocumented)
|
|
579
|
+
imageVersions: ImageVersions;
|
|
580
|
+
// (undocumented)
|
|
581
|
+
networkConnections: NetworkConnections;
|
|
582
|
+
// (undocumented)
|
|
583
|
+
operations: Operations;
|
|
584
|
+
// (undocumented)
|
|
585
|
+
operationStatuses: OperationStatuses;
|
|
586
|
+
// (undocumented)
|
|
587
|
+
pools: Pools;
|
|
588
|
+
// (undocumented)
|
|
589
|
+
projectAllowedEnvironmentTypes: ProjectAllowedEnvironmentTypes;
|
|
590
|
+
// (undocumented)
|
|
591
|
+
projectCatalogEnvironmentDefinitions: ProjectCatalogEnvironmentDefinitions;
|
|
592
|
+
// (undocumented)
|
|
593
|
+
projectCatalogs: ProjectCatalogs;
|
|
594
|
+
// (undocumented)
|
|
595
|
+
projectEnvironmentTypes: ProjectEnvironmentTypes;
|
|
596
|
+
// (undocumented)
|
|
597
|
+
projects: Projects;
|
|
598
|
+
// (undocumented)
|
|
599
|
+
schedules: Schedules;
|
|
600
|
+
// (undocumented)
|
|
601
|
+
skus: Skus;
|
|
602
|
+
// (undocumented)
|
|
603
|
+
subscriptionId: string;
|
|
604
|
+
// (undocumented)
|
|
605
|
+
usages: Usages;
|
|
606
|
+
}
|
|
607
|
+
|
|
608
|
+
// @public
|
|
609
|
+
export interface DevCenterClientOptionalParams extends coreClient.ServiceClientOptions {
|
|
610
|
+
$host?: string;
|
|
611
|
+
apiVersion?: string;
|
|
612
|
+
endpoint?: string;
|
|
613
|
+
}
|
|
614
|
+
|
|
615
|
+
// @public
|
|
616
|
+
export interface DevCenterListResult {
|
|
617
|
+
readonly nextLink?: string;
|
|
618
|
+
readonly value?: DevCenter[];
|
|
619
|
+
}
|
|
620
|
+
|
|
621
|
+
// @public
|
|
622
|
+
export interface DevCenterProjectCatalogSettings {
|
|
623
|
+
catalogItemSyncEnableStatus?: CatalogItemSyncEnableStatus;
|
|
624
|
+
}
|
|
625
|
+
|
|
626
|
+
// @public
|
|
627
|
+
export interface DevCenterProperties extends DevCenterUpdateProperties {
|
|
628
|
+
readonly devCenterUri?: string;
|
|
629
|
+
readonly provisioningState?: ProvisioningState;
|
|
630
|
+
}
|
|
631
|
+
|
|
632
|
+
// @public
|
|
633
|
+
export interface DevCenters {
|
|
634
|
+
beginCreateOrUpdate(resourceGroupName: string, devCenterName: string, body: DevCenter, options?: DevCentersCreateOrUpdateOptionalParams): Promise<SimplePollerLike<OperationState<DevCentersCreateOrUpdateResponse>, DevCentersCreateOrUpdateResponse>>;
|
|
635
|
+
beginCreateOrUpdateAndWait(resourceGroupName: string, devCenterName: string, body: DevCenter, options?: DevCentersCreateOrUpdateOptionalParams): Promise<DevCentersCreateOrUpdateResponse>;
|
|
636
|
+
beginDelete(resourceGroupName: string, devCenterName: string, options?: DevCentersDeleteOptionalParams): Promise<SimplePollerLike<OperationState<DevCentersDeleteResponse>, DevCentersDeleteResponse>>;
|
|
637
|
+
beginDeleteAndWait(resourceGroupName: string, devCenterName: string, options?: DevCentersDeleteOptionalParams): Promise<DevCentersDeleteResponse>;
|
|
638
|
+
beginUpdate(resourceGroupName: string, devCenterName: string, body: DevCenterUpdate, options?: DevCentersUpdateOptionalParams): Promise<SimplePollerLike<OperationState<DevCentersUpdateResponse>, DevCentersUpdateResponse>>;
|
|
639
|
+
beginUpdateAndWait(resourceGroupName: string, devCenterName: string, body: DevCenterUpdate, options?: DevCentersUpdateOptionalParams): Promise<DevCentersUpdateResponse>;
|
|
640
|
+
get(resourceGroupName: string, devCenterName: string, options?: DevCentersGetOptionalParams): Promise<DevCentersGetResponse>;
|
|
641
|
+
listByResourceGroup(resourceGroupName: string, options?: DevCentersListByResourceGroupOptionalParams): PagedAsyncIterableIterator<DevCenter>;
|
|
642
|
+
listBySubscription(options?: DevCentersListBySubscriptionOptionalParams): PagedAsyncIterableIterator<DevCenter>;
|
|
643
|
+
}
|
|
644
|
+
|
|
645
|
+
// @public
|
|
646
|
+
export interface DevCentersCreateOrUpdateOptionalParams extends coreClient.OperationOptions {
|
|
647
|
+
resumeFrom?: string;
|
|
648
|
+
updateIntervalInMs?: number;
|
|
649
|
+
}
|
|
650
|
+
|
|
651
|
+
// @public
|
|
652
|
+
export type DevCentersCreateOrUpdateResponse = DevCenter;
|
|
653
|
+
|
|
654
|
+
// @public
|
|
655
|
+
export interface DevCentersDeleteHeaders {
|
|
656
|
+
// (undocumented)
|
|
657
|
+
location?: string;
|
|
658
|
+
}
|
|
659
|
+
|
|
660
|
+
// @public
|
|
661
|
+
export interface DevCentersDeleteOptionalParams extends coreClient.OperationOptions {
|
|
662
|
+
resumeFrom?: string;
|
|
663
|
+
updateIntervalInMs?: number;
|
|
664
|
+
}
|
|
665
|
+
|
|
666
|
+
// @public
|
|
667
|
+
export type DevCentersDeleteResponse = DevCentersDeleteHeaders;
|
|
668
|
+
|
|
669
|
+
// @public
|
|
670
|
+
export interface DevCentersGetOptionalParams extends coreClient.OperationOptions {
|
|
671
|
+
}
|
|
672
|
+
|
|
673
|
+
// @public
|
|
674
|
+
export type DevCentersGetResponse = DevCenter;
|
|
675
|
+
|
|
676
|
+
// @public
|
|
677
|
+
export interface DevCenterSku extends Sku {
|
|
678
|
+
readonly capabilities?: Capability[];
|
|
679
|
+
readonly locations?: string[];
|
|
680
|
+
readonly resourceType?: string;
|
|
681
|
+
}
|
|
682
|
+
|
|
683
|
+
// @public
|
|
684
|
+
export interface DevCentersListByResourceGroupNextOptionalParams extends coreClient.OperationOptions {
|
|
685
|
+
}
|
|
686
|
+
|
|
687
|
+
// @public
|
|
688
|
+
export type DevCentersListByResourceGroupNextResponse = DevCenterListResult;
|
|
689
|
+
|
|
690
|
+
// @public
|
|
691
|
+
export interface DevCentersListByResourceGroupOptionalParams extends coreClient.OperationOptions {
|
|
692
|
+
top?: number;
|
|
693
|
+
}
|
|
694
|
+
|
|
695
|
+
// @public
|
|
696
|
+
export type DevCentersListByResourceGroupResponse = DevCenterListResult;
|
|
697
|
+
|
|
698
|
+
// @public
|
|
699
|
+
export interface DevCentersListBySubscriptionNextOptionalParams extends coreClient.OperationOptions {
|
|
700
|
+
}
|
|
701
|
+
|
|
702
|
+
// @public
|
|
703
|
+
export type DevCentersListBySubscriptionNextResponse = DevCenterListResult;
|
|
704
|
+
|
|
705
|
+
// @public
|
|
706
|
+
export interface DevCentersListBySubscriptionOptionalParams extends coreClient.OperationOptions {
|
|
707
|
+
top?: number;
|
|
708
|
+
}
|
|
709
|
+
|
|
710
|
+
// @public
|
|
711
|
+
export type DevCentersListBySubscriptionResponse = DevCenterListResult;
|
|
712
|
+
|
|
713
|
+
// @public
|
|
714
|
+
export interface DevCentersUpdateHeaders {
|
|
715
|
+
// (undocumented)
|
|
716
|
+
location?: string;
|
|
717
|
+
}
|
|
718
|
+
|
|
719
|
+
// @public
|
|
720
|
+
export interface DevCentersUpdateOptionalParams extends coreClient.OperationOptions {
|
|
721
|
+
resumeFrom?: string;
|
|
722
|
+
updateIntervalInMs?: number;
|
|
723
|
+
}
|
|
724
|
+
|
|
725
|
+
// @public
|
|
726
|
+
export type DevCentersUpdateResponse = DevCenter;
|
|
727
|
+
|
|
728
|
+
// @public
|
|
729
|
+
export interface DevCenterUpdate extends TrackedResourceUpdate {
|
|
730
|
+
displayName?: string;
|
|
731
|
+
encryption?: Encryption;
|
|
732
|
+
identity?: ManagedServiceIdentity;
|
|
733
|
+
projectCatalogSettings?: DevCenterProjectCatalogSettings;
|
|
734
|
+
}
|
|
735
|
+
|
|
736
|
+
// @public
|
|
737
|
+
export interface DevCenterUpdateProperties {
|
|
738
|
+
displayName?: string;
|
|
739
|
+
encryption?: Encryption;
|
|
740
|
+
projectCatalogSettings?: DevCenterProjectCatalogSettings;
|
|
741
|
+
}
|
|
742
|
+
|
|
743
|
+
// @public
|
|
744
|
+
export type DomainJoinType = string;
|
|
745
|
+
|
|
746
|
+
// @public (undocumented)
|
|
747
|
+
export interface Encryption {
|
|
748
|
+
customerManagedKeyEncryption?: CustomerManagedKeyEncryption;
|
|
749
|
+
}
|
|
750
|
+
|
|
751
|
+
// @public
|
|
752
|
+
export interface EndpointDependency {
|
|
753
|
+
readonly description?: string;
|
|
754
|
+
readonly domainName?: string;
|
|
755
|
+
readonly endpointDetails?: EndpointDetail[];
|
|
756
|
+
}
|
|
757
|
+
|
|
758
|
+
// @public
|
|
759
|
+
export interface EndpointDetail {
|
|
760
|
+
readonly port?: number;
|
|
761
|
+
}
|
|
762
|
+
|
|
763
|
+
// @public
|
|
764
|
+
export interface EnvironmentDefinition extends ProxyResource {
|
|
765
|
+
readonly description?: string;
|
|
766
|
+
readonly parameters?: EnvironmentDefinitionParameter[];
|
|
767
|
+
readonly templatePath?: string;
|
|
768
|
+
readonly validationStatus?: CatalogResourceValidationStatus;
|
|
769
|
+
}
|
|
770
|
+
|
|
771
|
+
// @public
|
|
772
|
+
export interface EnvironmentDefinitionListResult {
|
|
773
|
+
readonly nextLink?: string;
|
|
774
|
+
readonly value?: EnvironmentDefinition[];
|
|
775
|
+
}
|
|
776
|
+
|
|
777
|
+
// @public
|
|
778
|
+
export interface EnvironmentDefinitionParameter {
|
|
779
|
+
readonly description?: string;
|
|
780
|
+
readonly id?: string;
|
|
781
|
+
readonly name?: string;
|
|
782
|
+
readonly readOnly?: boolean;
|
|
783
|
+
readonly required?: boolean;
|
|
784
|
+
readonly type?: ParameterType;
|
|
785
|
+
}
|
|
786
|
+
|
|
787
|
+
// @public
|
|
788
|
+
export interface EnvironmentDefinitions {
|
|
789
|
+
get(resourceGroupName: string, devCenterName: string, catalogName: string, environmentDefinitionName: string, options?: EnvironmentDefinitionsGetOptionalParams): Promise<EnvironmentDefinitionsGetResponse>;
|
|
790
|
+
getByProjectCatalog(resourceGroupName: string, projectName: string, catalogName: string, environmentDefinitionName: string, options?: EnvironmentDefinitionsGetByProjectCatalogOptionalParams): Promise<EnvironmentDefinitionsGetByProjectCatalogResponse>;
|
|
791
|
+
getErrorDetails(resourceGroupName: string, devCenterName: string, catalogName: string, environmentDefinitionName: string, options?: EnvironmentDefinitionsGetErrorDetailsOptionalParams): Promise<EnvironmentDefinitionsGetErrorDetailsResponse>;
|
|
792
|
+
listByCatalog(resourceGroupName: string, devCenterName: string, catalogName: string, options?: EnvironmentDefinitionsListByCatalogOptionalParams): PagedAsyncIterableIterator<EnvironmentDefinition>;
|
|
793
|
+
listByProjectCatalog(resourceGroupName: string, projectName: string, catalogName: string, options?: EnvironmentDefinitionsListByProjectCatalogOptionalParams): PagedAsyncIterableIterator<EnvironmentDefinition>;
|
|
794
|
+
}
|
|
795
|
+
|
|
796
|
+
// @public
|
|
797
|
+
export interface EnvironmentDefinitionsGetByProjectCatalogOptionalParams extends coreClient.OperationOptions {
|
|
798
|
+
}
|
|
799
|
+
|
|
800
|
+
// @public
|
|
801
|
+
export type EnvironmentDefinitionsGetByProjectCatalogResponse = EnvironmentDefinition;
|
|
802
|
+
|
|
803
|
+
// @public
|
|
804
|
+
export interface EnvironmentDefinitionsGetErrorDetailsOptionalParams extends coreClient.OperationOptions {
|
|
805
|
+
}
|
|
806
|
+
|
|
807
|
+
// @public
|
|
808
|
+
export type EnvironmentDefinitionsGetErrorDetailsResponse = CatalogResourceValidationErrorDetails;
|
|
809
|
+
|
|
810
|
+
// @public
|
|
811
|
+
export interface EnvironmentDefinitionsGetOptionalParams extends coreClient.OperationOptions {
|
|
812
|
+
}
|
|
813
|
+
|
|
814
|
+
// @public
|
|
815
|
+
export type EnvironmentDefinitionsGetResponse = EnvironmentDefinition;
|
|
816
|
+
|
|
817
|
+
// @public
|
|
818
|
+
export interface EnvironmentDefinitionsListByCatalogNextOptionalParams extends coreClient.OperationOptions {
|
|
819
|
+
}
|
|
820
|
+
|
|
821
|
+
// @public
|
|
822
|
+
export type EnvironmentDefinitionsListByCatalogNextResponse = EnvironmentDefinitionListResult;
|
|
823
|
+
|
|
824
|
+
// @public
|
|
825
|
+
export interface EnvironmentDefinitionsListByCatalogOptionalParams extends coreClient.OperationOptions {
|
|
826
|
+
top?: number;
|
|
827
|
+
}
|
|
828
|
+
|
|
829
|
+
// @public
|
|
830
|
+
export type EnvironmentDefinitionsListByCatalogResponse = EnvironmentDefinitionListResult;
|
|
831
|
+
|
|
832
|
+
// @public
|
|
833
|
+
export interface EnvironmentDefinitionsListByProjectCatalogNextOptionalParams extends coreClient.OperationOptions {
|
|
834
|
+
}
|
|
835
|
+
|
|
836
|
+
// @public
|
|
837
|
+
export type EnvironmentDefinitionsListByProjectCatalogNextResponse = EnvironmentDefinitionListResult;
|
|
838
|
+
|
|
839
|
+
// @public
|
|
840
|
+
export interface EnvironmentDefinitionsListByProjectCatalogOptionalParams extends coreClient.OperationOptions {
|
|
841
|
+
}
|
|
842
|
+
|
|
843
|
+
// @public
|
|
844
|
+
export type EnvironmentDefinitionsListByProjectCatalogResponse = EnvironmentDefinitionListResult;
|
|
845
|
+
|
|
846
|
+
// @public
|
|
847
|
+
export interface EnvironmentRole {
|
|
848
|
+
readonly description?: string;
|
|
849
|
+
readonly roleName?: string;
|
|
850
|
+
}
|
|
851
|
+
|
|
852
|
+
// @public
|
|
853
|
+
export interface EnvironmentType extends Resource {
|
|
854
|
+
displayName?: string;
|
|
855
|
+
readonly provisioningState?: ProvisioningState;
|
|
856
|
+
tags?: {
|
|
857
|
+
[propertyName: string]: string;
|
|
858
|
+
};
|
|
859
|
+
}
|
|
860
|
+
|
|
861
|
+
// @public
|
|
862
|
+
export type EnvironmentTypeEnableStatus = string;
|
|
863
|
+
|
|
864
|
+
// @public
|
|
865
|
+
export interface EnvironmentTypeListResult {
|
|
866
|
+
readonly nextLink?: string;
|
|
867
|
+
readonly value?: EnvironmentType[];
|
|
868
|
+
}
|
|
869
|
+
|
|
870
|
+
// @public
|
|
871
|
+
export interface EnvironmentTypeProperties extends EnvironmentTypeUpdateProperties {
|
|
872
|
+
readonly provisioningState?: ProvisioningState;
|
|
873
|
+
}
|
|
874
|
+
|
|
875
|
+
// @public
|
|
876
|
+
export interface EnvironmentTypes {
|
|
877
|
+
createOrUpdate(resourceGroupName: string, devCenterName: string, environmentTypeName: string, body: EnvironmentType, options?: EnvironmentTypesCreateOrUpdateOptionalParams): Promise<EnvironmentTypesCreateOrUpdateResponse>;
|
|
878
|
+
delete(resourceGroupName: string, devCenterName: string, environmentTypeName: string, options?: EnvironmentTypesDeleteOptionalParams): Promise<void>;
|
|
879
|
+
get(resourceGroupName: string, devCenterName: string, environmentTypeName: string, options?: EnvironmentTypesGetOptionalParams): Promise<EnvironmentTypesGetResponse>;
|
|
880
|
+
listByDevCenter(resourceGroupName: string, devCenterName: string, options?: EnvironmentTypesListByDevCenterOptionalParams): PagedAsyncIterableIterator<EnvironmentType>;
|
|
881
|
+
update(resourceGroupName: string, devCenterName: string, environmentTypeName: string, body: EnvironmentTypeUpdate, options?: EnvironmentTypesUpdateOptionalParams): Promise<EnvironmentTypesUpdateResponse>;
|
|
882
|
+
}
|
|
883
|
+
|
|
884
|
+
// @public
|
|
885
|
+
export interface EnvironmentTypesCreateOrUpdateOptionalParams extends coreClient.OperationOptions {
|
|
886
|
+
}
|
|
887
|
+
|
|
888
|
+
// @public
|
|
889
|
+
export type EnvironmentTypesCreateOrUpdateResponse = EnvironmentType;
|
|
890
|
+
|
|
891
|
+
// @public
|
|
892
|
+
export interface EnvironmentTypesDeleteOptionalParams extends coreClient.OperationOptions {
|
|
893
|
+
}
|
|
894
|
+
|
|
895
|
+
// @public
|
|
896
|
+
export interface EnvironmentTypesGetOptionalParams extends coreClient.OperationOptions {
|
|
897
|
+
}
|
|
898
|
+
|
|
899
|
+
// @public
|
|
900
|
+
export type EnvironmentTypesGetResponse = EnvironmentType;
|
|
901
|
+
|
|
902
|
+
// @public
|
|
903
|
+
export interface EnvironmentTypesListByDevCenterNextOptionalParams extends coreClient.OperationOptions {
|
|
904
|
+
}
|
|
905
|
+
|
|
906
|
+
// @public
|
|
907
|
+
export type EnvironmentTypesListByDevCenterNextResponse = EnvironmentTypeListResult;
|
|
908
|
+
|
|
909
|
+
// @public
|
|
910
|
+
export interface EnvironmentTypesListByDevCenterOptionalParams extends coreClient.OperationOptions {
|
|
911
|
+
top?: number;
|
|
912
|
+
}
|
|
913
|
+
|
|
914
|
+
// @public
|
|
915
|
+
export type EnvironmentTypesListByDevCenterResponse = EnvironmentTypeListResult;
|
|
916
|
+
|
|
917
|
+
// @public
|
|
918
|
+
export interface EnvironmentTypesUpdateOptionalParams extends coreClient.OperationOptions {
|
|
919
|
+
}
|
|
920
|
+
|
|
921
|
+
// @public
|
|
922
|
+
export type EnvironmentTypesUpdateResponse = EnvironmentType;
|
|
923
|
+
|
|
924
|
+
// @public
|
|
925
|
+
export interface EnvironmentTypeUpdate {
|
|
926
|
+
displayName?: string;
|
|
927
|
+
tags?: {
|
|
928
|
+
[propertyName: string]: string;
|
|
929
|
+
};
|
|
930
|
+
}
|
|
931
|
+
|
|
932
|
+
// @public
|
|
933
|
+
export interface EnvironmentTypeUpdateProperties {
|
|
934
|
+
displayName?: string;
|
|
935
|
+
}
|
|
936
|
+
|
|
937
|
+
// @public
|
|
938
|
+
export interface ErrorAdditionalInfo {
|
|
939
|
+
readonly info?: Record<string, unknown>;
|
|
940
|
+
readonly type?: string;
|
|
941
|
+
}
|
|
942
|
+
|
|
943
|
+
// @public
|
|
944
|
+
export interface ErrorDetail {
|
|
945
|
+
readonly additionalInfo?: ErrorAdditionalInfo[];
|
|
946
|
+
readonly code?: string;
|
|
947
|
+
readonly details?: ErrorDetail[];
|
|
948
|
+
readonly message?: string;
|
|
949
|
+
readonly target?: string;
|
|
950
|
+
}
|
|
951
|
+
|
|
952
|
+
// @public
|
|
953
|
+
export interface ErrorResponse {
|
|
954
|
+
error?: ErrorDetail;
|
|
955
|
+
}
|
|
956
|
+
|
|
957
|
+
// @public
|
|
958
|
+
export interface Galleries {
|
|
959
|
+
beginCreateOrUpdate(resourceGroupName: string, devCenterName: string, galleryName: string, body: Gallery, options?: GalleriesCreateOrUpdateOptionalParams): Promise<SimplePollerLike<OperationState<GalleriesCreateOrUpdateResponse>, GalleriesCreateOrUpdateResponse>>;
|
|
960
|
+
beginCreateOrUpdateAndWait(resourceGroupName: string, devCenterName: string, galleryName: string, body: Gallery, options?: GalleriesCreateOrUpdateOptionalParams): Promise<GalleriesCreateOrUpdateResponse>;
|
|
961
|
+
beginDelete(resourceGroupName: string, devCenterName: string, galleryName: string, options?: GalleriesDeleteOptionalParams): Promise<SimplePollerLike<OperationState<GalleriesDeleteResponse>, GalleriesDeleteResponse>>;
|
|
962
|
+
beginDeleteAndWait(resourceGroupName: string, devCenterName: string, galleryName: string, options?: GalleriesDeleteOptionalParams): Promise<GalleriesDeleteResponse>;
|
|
963
|
+
get(resourceGroupName: string, devCenterName: string, galleryName: string, options?: GalleriesGetOptionalParams): Promise<GalleriesGetResponse>;
|
|
964
|
+
listByDevCenter(resourceGroupName: string, devCenterName: string, options?: GalleriesListByDevCenterOptionalParams): PagedAsyncIterableIterator<Gallery>;
|
|
965
|
+
}
|
|
966
|
+
|
|
967
|
+
// @public
|
|
968
|
+
export interface GalleriesCreateOrUpdateOptionalParams extends coreClient.OperationOptions {
|
|
969
|
+
resumeFrom?: string;
|
|
970
|
+
updateIntervalInMs?: number;
|
|
971
|
+
}
|
|
972
|
+
|
|
973
|
+
// @public
|
|
974
|
+
export type GalleriesCreateOrUpdateResponse = Gallery;
|
|
975
|
+
|
|
976
|
+
// @public
|
|
977
|
+
export interface GalleriesDeleteHeaders {
|
|
978
|
+
// (undocumented)
|
|
979
|
+
location?: string;
|
|
980
|
+
}
|
|
981
|
+
|
|
982
|
+
// @public
|
|
983
|
+
export interface GalleriesDeleteOptionalParams extends coreClient.OperationOptions {
|
|
984
|
+
resumeFrom?: string;
|
|
985
|
+
updateIntervalInMs?: number;
|
|
986
|
+
}
|
|
987
|
+
|
|
988
|
+
// @public
|
|
989
|
+
export type GalleriesDeleteResponse = GalleriesDeleteHeaders;
|
|
990
|
+
|
|
991
|
+
// @public
|
|
992
|
+
export interface GalleriesGetOptionalParams extends coreClient.OperationOptions {
|
|
993
|
+
}
|
|
994
|
+
|
|
995
|
+
// @public
|
|
996
|
+
export type GalleriesGetResponse = Gallery;
|
|
997
|
+
|
|
998
|
+
// @public
|
|
999
|
+
export interface GalleriesListByDevCenterNextOptionalParams extends coreClient.OperationOptions {
|
|
1000
|
+
}
|
|
1001
|
+
|
|
1002
|
+
// @public
|
|
1003
|
+
export type GalleriesListByDevCenterNextResponse = GalleryListResult;
|
|
1004
|
+
|
|
1005
|
+
// @public
|
|
1006
|
+
export interface GalleriesListByDevCenterOptionalParams extends coreClient.OperationOptions {
|
|
1007
|
+
top?: number;
|
|
1008
|
+
}
|
|
1009
|
+
|
|
1010
|
+
// @public
|
|
1011
|
+
export type GalleriesListByDevCenterResponse = GalleryListResult;
|
|
1012
|
+
|
|
1013
|
+
// @public
|
|
1014
|
+
export interface Gallery extends Resource {
|
|
1015
|
+
galleryResourceId?: string;
|
|
1016
|
+
readonly provisioningState?: ProvisioningState;
|
|
1017
|
+
}
|
|
1018
|
+
|
|
1019
|
+
// @public
|
|
1020
|
+
export interface GalleryListResult {
|
|
1021
|
+
readonly nextLink?: string;
|
|
1022
|
+
readonly value?: Gallery[];
|
|
1023
|
+
}
|
|
1024
|
+
|
|
1025
|
+
// @public
|
|
1026
|
+
export function getContinuationToken(page: unknown): string | undefined;
|
|
1027
|
+
|
|
1028
|
+
// @public
|
|
1029
|
+
export interface GitCatalog {
|
|
1030
|
+
branch?: string;
|
|
1031
|
+
path?: string;
|
|
1032
|
+
secretIdentifier?: string;
|
|
1033
|
+
uri?: string;
|
|
1034
|
+
}
|
|
1035
|
+
|
|
1036
|
+
// @public
|
|
1037
|
+
export interface HealthCheck {
|
|
1038
|
+
readonly additionalDetails?: string;
|
|
1039
|
+
readonly displayName?: string;
|
|
1040
|
+
readonly endDateTime?: Date;
|
|
1041
|
+
readonly errorType?: string;
|
|
1042
|
+
readonly recommendedAction?: string;
|
|
1043
|
+
readonly startDateTime?: Date;
|
|
1044
|
+
readonly status?: HealthCheckStatus;
|
|
1045
|
+
}
|
|
1046
|
+
|
|
1047
|
+
// @public
|
|
1048
|
+
export type HealthCheckStatus = string;
|
|
1049
|
+
|
|
1050
|
+
// @public
|
|
1051
|
+
export interface HealthCheckStatusDetails extends Resource {
|
|
1052
|
+
readonly endDateTime?: Date;
|
|
1053
|
+
readonly healthChecks?: HealthCheck[];
|
|
1054
|
+
readonly startDateTime?: Date;
|
|
1055
|
+
}
|
|
1056
|
+
|
|
1057
|
+
// @public
|
|
1058
|
+
export interface HealthCheckStatusDetailsListResult {
|
|
1059
|
+
readonly nextLink?: string;
|
|
1060
|
+
readonly value?: HealthCheckStatusDetails[];
|
|
1061
|
+
}
|
|
1062
|
+
|
|
1063
|
+
// @public
|
|
1064
|
+
export type HealthStatus = string;
|
|
1065
|
+
|
|
1066
|
+
// @public
|
|
1067
|
+
export interface HealthStatusDetail {
|
|
1068
|
+
readonly code?: string;
|
|
1069
|
+
readonly message?: string;
|
|
1070
|
+
}
|
|
1071
|
+
|
|
1072
|
+
// @public
|
|
1073
|
+
export type HibernateSupport = string;
|
|
1074
|
+
|
|
1075
|
+
// @public
|
|
1076
|
+
export type IdentityType = string;
|
|
1077
|
+
|
|
1078
|
+
// @public
|
|
1079
|
+
export interface Image extends ProxyResource {
|
|
1080
|
+
readonly description?: string;
|
|
1081
|
+
readonly hibernateSupport?: HibernateSupport;
|
|
1082
|
+
readonly offer?: string;
|
|
1083
|
+
readonly provisioningState?: ProvisioningState;
|
|
1084
|
+
readonly publisher?: string;
|
|
1085
|
+
readonly recommendedMachineConfiguration?: RecommendedMachineConfiguration;
|
|
1086
|
+
readonly sku?: string;
|
|
1087
|
+
}
|
|
1088
|
+
|
|
1089
|
+
// @public
|
|
1090
|
+
export interface ImageListResult {
|
|
1091
|
+
readonly nextLink?: string;
|
|
1092
|
+
readonly value?: Image[];
|
|
1093
|
+
}
|
|
1094
|
+
|
|
1095
|
+
// @public
|
|
1096
|
+
export interface ImageReference {
|
|
1097
|
+
readonly exactVersion?: string;
|
|
1098
|
+
id?: string;
|
|
1099
|
+
}
|
|
1100
|
+
|
|
1101
|
+
// @public
|
|
1102
|
+
export interface Images {
|
|
1103
|
+
get(resourceGroupName: string, devCenterName: string, galleryName: string, imageName: string, options?: ImagesGetOptionalParams): Promise<ImagesGetResponse>;
|
|
1104
|
+
listByDevCenter(resourceGroupName: string, devCenterName: string, options?: ImagesListByDevCenterOptionalParams): PagedAsyncIterableIterator<Image>;
|
|
1105
|
+
listByGallery(resourceGroupName: string, devCenterName: string, galleryName: string, options?: ImagesListByGalleryOptionalParams): PagedAsyncIterableIterator<Image>;
|
|
1106
|
+
}
|
|
1107
|
+
|
|
1108
|
+
// @public
|
|
1109
|
+
export interface ImagesGetOptionalParams extends coreClient.OperationOptions {
|
|
1110
|
+
}
|
|
1111
|
+
|
|
1112
|
+
// @public
|
|
1113
|
+
export type ImagesGetResponse = Image;
|
|
1114
|
+
|
|
1115
|
+
// @public
|
|
1116
|
+
export interface ImagesListByDevCenterNextOptionalParams extends coreClient.OperationOptions {
|
|
1117
|
+
}
|
|
1118
|
+
|
|
1119
|
+
// @public
|
|
1120
|
+
export type ImagesListByDevCenterNextResponse = ImageListResult;
|
|
1121
|
+
|
|
1122
|
+
// @public
|
|
1123
|
+
export interface ImagesListByDevCenterOptionalParams extends coreClient.OperationOptions {
|
|
1124
|
+
top?: number;
|
|
1125
|
+
}
|
|
1126
|
+
|
|
1127
|
+
// @public
|
|
1128
|
+
export type ImagesListByDevCenterResponse = ImageListResult;
|
|
1129
|
+
|
|
1130
|
+
// @public
|
|
1131
|
+
export interface ImagesListByGalleryNextOptionalParams extends coreClient.OperationOptions {
|
|
1132
|
+
}
|
|
1133
|
+
|
|
1134
|
+
// @public
|
|
1135
|
+
export type ImagesListByGalleryNextResponse = ImageListResult;
|
|
1136
|
+
|
|
1137
|
+
// @public
|
|
1138
|
+
export interface ImagesListByGalleryOptionalParams extends coreClient.OperationOptions {
|
|
1139
|
+
top?: number;
|
|
1140
|
+
}
|
|
1141
|
+
|
|
1142
|
+
// @public
|
|
1143
|
+
export type ImagesListByGalleryResponse = ImageListResult;
|
|
1144
|
+
|
|
1145
|
+
// @public
|
|
1146
|
+
export interface ImageValidationErrorDetails {
|
|
1147
|
+
code?: string;
|
|
1148
|
+
message?: string;
|
|
1149
|
+
}
|
|
1150
|
+
|
|
1151
|
+
// @public
|
|
1152
|
+
export type ImageValidationStatus = string;
|
|
1153
|
+
|
|
1154
|
+
// @public
|
|
1155
|
+
export interface ImageVersion extends ProxyResource {
|
|
1156
|
+
readonly excludeFromLatest?: boolean;
|
|
1157
|
+
readonly namePropertiesName?: string;
|
|
1158
|
+
readonly osDiskImageSizeInGb?: number;
|
|
1159
|
+
readonly provisioningState?: ProvisioningState;
|
|
1160
|
+
readonly publishedDate?: Date;
|
|
1161
|
+
}
|
|
1162
|
+
|
|
1163
|
+
// @public
|
|
1164
|
+
export interface ImageVersionListResult {
|
|
1165
|
+
readonly nextLink?: string;
|
|
1166
|
+
readonly value?: ImageVersion[];
|
|
1167
|
+
}
|
|
1168
|
+
|
|
1169
|
+
// @public
|
|
1170
|
+
export interface ImageVersions {
|
|
1171
|
+
get(resourceGroupName: string, devCenterName: string, galleryName: string, imageName: string, versionName: string, options?: ImageVersionsGetOptionalParams): Promise<ImageVersionsGetResponse>;
|
|
1172
|
+
listByImage(resourceGroupName: string, devCenterName: string, galleryName: string, imageName: string, options?: ImageVersionsListByImageOptionalParams): PagedAsyncIterableIterator<ImageVersion>;
|
|
1173
|
+
}
|
|
1174
|
+
|
|
1175
|
+
// @public
|
|
1176
|
+
export interface ImageVersionsGetOptionalParams extends coreClient.OperationOptions {
|
|
1177
|
+
}
|
|
1178
|
+
|
|
1179
|
+
// @public
|
|
1180
|
+
export type ImageVersionsGetResponse = ImageVersion;
|
|
1181
|
+
|
|
1182
|
+
// @public
|
|
1183
|
+
export interface ImageVersionsListByImageNextOptionalParams extends coreClient.OperationOptions {
|
|
1184
|
+
}
|
|
1185
|
+
|
|
1186
|
+
// @public
|
|
1187
|
+
export type ImageVersionsListByImageNextResponse = ImageVersionListResult;
|
|
1188
|
+
|
|
1189
|
+
// @public
|
|
1190
|
+
export interface ImageVersionsListByImageOptionalParams extends coreClient.OperationOptions {
|
|
1191
|
+
}
|
|
1192
|
+
|
|
1193
|
+
// @public
|
|
1194
|
+
export type ImageVersionsListByImageResponse = ImageVersionListResult;
|
|
1195
|
+
|
|
1196
|
+
// @public
|
|
1197
|
+
export enum KnownActionType {
|
|
1198
|
+
Internal = "Internal"
|
|
1199
|
+
}
|
|
1200
|
+
|
|
1201
|
+
// @public
|
|
1202
|
+
export enum KnownCatalogConnectionState {
|
|
1203
|
+
Connected = "Connected",
|
|
1204
|
+
Disconnected = "Disconnected"
|
|
1205
|
+
}
|
|
1206
|
+
|
|
1207
|
+
// @public
|
|
1208
|
+
export enum KnownCatalogItemSyncEnableStatus {
|
|
1209
|
+
Disabled = "Disabled",
|
|
1210
|
+
Enabled = "Enabled"
|
|
1211
|
+
}
|
|
1212
|
+
|
|
1213
|
+
// @public
|
|
1214
|
+
export enum KnownCatalogItemType {
|
|
1215
|
+
EnvironmentDefinition = "EnvironmentDefinition"
|
|
1216
|
+
}
|
|
1217
|
+
|
|
1218
|
+
// @public
|
|
1219
|
+
export enum KnownCatalogResourceValidationStatus {
|
|
1220
|
+
Failed = "Failed",
|
|
1221
|
+
Pending = "Pending",
|
|
1222
|
+
Succeeded = "Succeeded",
|
|
1223
|
+
Unknown = "Unknown"
|
|
1224
|
+
}
|
|
1225
|
+
|
|
1226
|
+
// @public
|
|
1227
|
+
export enum KnownCatalogSyncState {
|
|
1228
|
+
Canceled = "Canceled",
|
|
1229
|
+
Failed = "Failed",
|
|
1230
|
+
InProgress = "InProgress",
|
|
1231
|
+
Succeeded = "Succeeded"
|
|
1232
|
+
}
|
|
1233
|
+
|
|
1234
|
+
// @public
|
|
1235
|
+
export enum KnownCatalogSyncType {
|
|
1236
|
+
Manual = "Manual",
|
|
1237
|
+
Scheduled = "Scheduled"
|
|
1238
|
+
}
|
|
1239
|
+
|
|
1240
|
+
// @public
|
|
1241
|
+
export enum KnownCheckNameAvailabilityReason {
|
|
1242
|
+
AlreadyExists = "AlreadyExists",
|
|
1243
|
+
Invalid = "Invalid"
|
|
1244
|
+
}
|
|
1245
|
+
|
|
1246
|
+
// @public
|
|
1247
|
+
export enum KnownCreatedByType {
|
|
1248
|
+
Application = "Application",
|
|
1249
|
+
Key = "Key",
|
|
1250
|
+
ManagedIdentity = "ManagedIdentity",
|
|
1251
|
+
User = "User"
|
|
1252
|
+
}
|
|
1253
|
+
|
|
1254
|
+
// @public
|
|
1255
|
+
export enum KnownDomainJoinType {
|
|
1256
|
+
AzureADJoin = "AzureADJoin",
|
|
1257
|
+
HybridAzureADJoin = "HybridAzureADJoin"
|
|
1258
|
+
}
|
|
1259
|
+
|
|
1260
|
+
// @public
|
|
1261
|
+
export enum KnownEnvironmentTypeEnableStatus {
|
|
1262
|
+
Disabled = "Disabled",
|
|
1263
|
+
Enabled = "Enabled"
|
|
1264
|
+
}
|
|
1265
|
+
|
|
1266
|
+
// @public
|
|
1267
|
+
export enum KnownHealthCheckStatus {
|
|
1268
|
+
Failed = "Failed",
|
|
1269
|
+
Passed = "Passed",
|
|
1270
|
+
Pending = "Pending",
|
|
1271
|
+
Running = "Running",
|
|
1272
|
+
Unknown = "Unknown",
|
|
1273
|
+
Warning = "Warning"
|
|
1274
|
+
}
|
|
1275
|
+
|
|
1276
|
+
// @public
|
|
1277
|
+
export enum KnownHealthStatus {
|
|
1278
|
+
Healthy = "Healthy",
|
|
1279
|
+
Pending = "Pending",
|
|
1280
|
+
Unhealthy = "Unhealthy",
|
|
1281
|
+
Unknown = "Unknown",
|
|
1282
|
+
Warning = "Warning"
|
|
1283
|
+
}
|
|
1284
|
+
|
|
1285
|
+
// @public
|
|
1286
|
+
export enum KnownHibernateSupport {
|
|
1287
|
+
Disabled = "Disabled",
|
|
1288
|
+
Enabled = "Enabled"
|
|
1289
|
+
}
|
|
1290
|
+
|
|
1291
|
+
// @public
|
|
1292
|
+
export enum KnownIdentityType {
|
|
1293
|
+
DelegatedResourceIdentity = "delegatedResourceIdentity",
|
|
1294
|
+
SystemAssignedIdentity = "systemAssignedIdentity",
|
|
1295
|
+
UserAssignedIdentity = "userAssignedIdentity"
|
|
1296
|
+
}
|
|
1297
|
+
|
|
1298
|
+
// @public
|
|
1299
|
+
export enum KnownImageValidationStatus {
|
|
1300
|
+
Failed = "Failed",
|
|
1301
|
+
Pending = "Pending",
|
|
1302
|
+
Succeeded = "Succeeded",
|
|
1303
|
+
TimedOut = "TimedOut",
|
|
1304
|
+
Unknown = "Unknown"
|
|
1305
|
+
}
|
|
1306
|
+
|
|
1307
|
+
// @public
|
|
1308
|
+
export enum KnownLicenseType {
|
|
1309
|
+
WindowsClient = "Windows_Client"
|
|
1310
|
+
}
|
|
1311
|
+
|
|
1312
|
+
// @public
|
|
1313
|
+
export enum KnownLocalAdminStatus {
|
|
1314
|
+
Disabled = "Disabled",
|
|
1315
|
+
Enabled = "Enabled"
|
|
1316
|
+
}
|
|
1317
|
+
|
|
1318
|
+
// @public
|
|
1319
|
+
export enum KnownManagedServiceIdentityType {
|
|
1320
|
+
None = "None",
|
|
1321
|
+
SystemAssigned = "SystemAssigned",
|
|
1322
|
+
SystemAssignedUserAssigned = "SystemAssigned, UserAssigned",
|
|
1323
|
+
UserAssigned = "UserAssigned"
|
|
1324
|
+
}
|
|
1325
|
+
|
|
1326
|
+
// @public
|
|
1327
|
+
export enum KnownOrigin {
|
|
1328
|
+
System = "system",
|
|
1329
|
+
User = "user",
|
|
1330
|
+
UserSystem = "user,system"
|
|
1331
|
+
}
|
|
1332
|
+
|
|
1333
|
+
// @public
|
|
1334
|
+
export enum KnownParameterType {
|
|
1335
|
+
Array = "array",
|
|
1336
|
+
Boolean = "boolean",
|
|
1337
|
+
Integer = "integer",
|
|
1338
|
+
Number = "number",
|
|
1339
|
+
Object = "object",
|
|
1340
|
+
String = "string"
|
|
1341
|
+
}
|
|
1342
|
+
|
|
1343
|
+
// @public
|
|
1344
|
+
export enum KnownProvisioningState {
|
|
1345
|
+
Accepted = "Accepted",
|
|
1346
|
+
Canceled = "Canceled",
|
|
1347
|
+
Created = "Created",
|
|
1348
|
+
Creating = "Creating",
|
|
1349
|
+
Deleted = "Deleted",
|
|
1350
|
+
Deleting = "Deleting",
|
|
1351
|
+
Failed = "Failed",
|
|
1352
|
+
MovingResources = "MovingResources",
|
|
1353
|
+
NotSpecified = "NotSpecified",
|
|
1354
|
+
RolloutInProgress = "RolloutInProgress",
|
|
1355
|
+
Running = "Running",
|
|
1356
|
+
StorageProvisioningFailed = "StorageProvisioningFailed",
|
|
1357
|
+
Succeeded = "Succeeded",
|
|
1358
|
+
TransientFailure = "TransientFailure",
|
|
1359
|
+
Updated = "Updated",
|
|
1360
|
+
Updating = "Updating"
|
|
1361
|
+
}
|
|
1362
|
+
|
|
1363
|
+
// @public
|
|
1364
|
+
export enum KnownScheduledFrequency {
|
|
1365
|
+
Daily = "Daily"
|
|
1366
|
+
}
|
|
1367
|
+
|
|
1368
|
+
// @public
|
|
1369
|
+
export enum KnownScheduledType {
|
|
1370
|
+
StopDevBox = "StopDevBox"
|
|
1371
|
+
}
|
|
1372
|
+
|
|
1373
|
+
// @public
|
|
1374
|
+
export enum KnownScheduleEnableStatus {
|
|
1375
|
+
Disabled = "Disabled",
|
|
1376
|
+
Enabled = "Enabled"
|
|
1377
|
+
}
|
|
1378
|
+
|
|
1379
|
+
// @public
|
|
1380
|
+
export enum KnownSingleSignOnStatus {
|
|
1381
|
+
Disabled = "Disabled",
|
|
1382
|
+
Enabled = "Enabled"
|
|
1383
|
+
}
|
|
1384
|
+
|
|
1385
|
+
// @public
|
|
1386
|
+
export enum KnownStopOnDisconnectEnableStatus {
|
|
1387
|
+
Disabled = "Disabled",
|
|
1388
|
+
Enabled = "Enabled"
|
|
1389
|
+
}
|
|
1390
|
+
|
|
1391
|
+
// @public
|
|
1392
|
+
export enum KnownUsageUnit {
|
|
1393
|
+
Count = "Count"
|
|
1394
|
+
}
|
|
1395
|
+
|
|
1396
|
+
// @public
|
|
1397
|
+
export enum KnownVirtualNetworkType {
|
|
1398
|
+
Managed = "Managed",
|
|
1399
|
+
Unmanaged = "Unmanaged"
|
|
1400
|
+
}
|
|
1401
|
+
|
|
1402
|
+
// @public
|
|
1403
|
+
export type LicenseType = string;
|
|
1404
|
+
|
|
1405
|
+
// @public
|
|
1406
|
+
export interface ListUsagesResult {
|
|
1407
|
+
readonly nextLink?: string;
|
|
1408
|
+
readonly value?: Usage[];
|
|
1409
|
+
}
|
|
1410
|
+
|
|
1411
|
+
// @public
|
|
1412
|
+
export type LocalAdminStatus = string;
|
|
1413
|
+
|
|
1414
|
+
// @public
|
|
1415
|
+
export interface ManagedServiceIdentity {
|
|
1416
|
+
readonly principalId?: string;
|
|
1417
|
+
readonly tenantId?: string;
|
|
1418
|
+
type: ManagedServiceIdentityType;
|
|
1419
|
+
userAssignedIdentities?: {
|
|
1420
|
+
[propertyName: string]: UserAssignedIdentity;
|
|
1421
|
+
};
|
|
1422
|
+
}
|
|
1423
|
+
|
|
1424
|
+
// @public
|
|
1425
|
+
export type ManagedServiceIdentityType = string;
|
|
1426
|
+
|
|
1427
|
+
// @public
|
|
1428
|
+
export interface NetworkConnection extends TrackedResource {
|
|
1429
|
+
domainJoinType?: DomainJoinType;
|
|
1430
|
+
domainName?: string;
|
|
1431
|
+
domainPassword?: string;
|
|
1432
|
+
domainUsername?: string;
|
|
1433
|
+
readonly healthCheckStatus?: HealthCheckStatus;
|
|
1434
|
+
networkingResourceGroupName?: string;
|
|
1435
|
+
organizationUnit?: string;
|
|
1436
|
+
readonly provisioningState?: ProvisioningState;
|
|
1437
|
+
subnetId?: string;
|
|
1438
|
+
}
|
|
1439
|
+
|
|
1440
|
+
// @public
|
|
1441
|
+
export interface NetworkConnectionListResult {
|
|
1442
|
+
readonly nextLink?: string;
|
|
1443
|
+
readonly value?: NetworkConnection[];
|
|
1444
|
+
}
|
|
1445
|
+
|
|
1446
|
+
// @public
|
|
1447
|
+
export interface NetworkConnections {
|
|
1448
|
+
beginCreateOrUpdate(resourceGroupName: string, networkConnectionName: string, body: NetworkConnection, options?: NetworkConnectionsCreateOrUpdateOptionalParams): Promise<SimplePollerLike<OperationState<NetworkConnectionsCreateOrUpdateResponse>, NetworkConnectionsCreateOrUpdateResponse>>;
|
|
1449
|
+
beginCreateOrUpdateAndWait(resourceGroupName: string, networkConnectionName: string, body: NetworkConnection, options?: NetworkConnectionsCreateOrUpdateOptionalParams): Promise<NetworkConnectionsCreateOrUpdateResponse>;
|
|
1450
|
+
beginDelete(resourceGroupName: string, networkConnectionName: string, options?: NetworkConnectionsDeleteOptionalParams): Promise<SimplePollerLike<OperationState<NetworkConnectionsDeleteResponse>, NetworkConnectionsDeleteResponse>>;
|
|
1451
|
+
beginDeleteAndWait(resourceGroupName: string, networkConnectionName: string, options?: NetworkConnectionsDeleteOptionalParams): Promise<NetworkConnectionsDeleteResponse>;
|
|
1452
|
+
beginRunHealthChecks(resourceGroupName: string, networkConnectionName: string, options?: NetworkConnectionsRunHealthChecksOptionalParams): Promise<SimplePollerLike<OperationState<NetworkConnectionsRunHealthChecksResponse>, NetworkConnectionsRunHealthChecksResponse>>;
|
|
1453
|
+
beginRunHealthChecksAndWait(resourceGroupName: string, networkConnectionName: string, options?: NetworkConnectionsRunHealthChecksOptionalParams): Promise<NetworkConnectionsRunHealthChecksResponse>;
|
|
1454
|
+
beginUpdate(resourceGroupName: string, networkConnectionName: string, body: NetworkConnectionUpdate, options?: NetworkConnectionsUpdateOptionalParams): Promise<SimplePollerLike<OperationState<NetworkConnectionsUpdateResponse>, NetworkConnectionsUpdateResponse>>;
|
|
1455
|
+
beginUpdateAndWait(resourceGroupName: string, networkConnectionName: string, body: NetworkConnectionUpdate, options?: NetworkConnectionsUpdateOptionalParams): Promise<NetworkConnectionsUpdateResponse>;
|
|
1456
|
+
get(resourceGroupName: string, networkConnectionName: string, options?: NetworkConnectionsGetOptionalParams): Promise<NetworkConnectionsGetResponse>;
|
|
1457
|
+
getHealthDetails(resourceGroupName: string, networkConnectionName: string, options?: NetworkConnectionsGetHealthDetailsOptionalParams): Promise<NetworkConnectionsGetHealthDetailsResponse>;
|
|
1458
|
+
listByResourceGroup(resourceGroupName: string, options?: NetworkConnectionsListByResourceGroupOptionalParams): PagedAsyncIterableIterator<NetworkConnection>;
|
|
1459
|
+
listBySubscription(options?: NetworkConnectionsListBySubscriptionOptionalParams): PagedAsyncIterableIterator<NetworkConnection>;
|
|
1460
|
+
listHealthDetails(resourceGroupName: string, networkConnectionName: string, options?: NetworkConnectionsListHealthDetailsOptionalParams): PagedAsyncIterableIterator<HealthCheckStatusDetails>;
|
|
1461
|
+
listOutboundNetworkDependenciesEndpoints(resourceGroupName: string, networkConnectionName: string, options?: NetworkConnectionsListOutboundNetworkDependenciesEndpointsOptionalParams): PagedAsyncIterableIterator<OutboundEnvironmentEndpoint>;
|
|
1462
|
+
}
|
|
1463
|
+
|
|
1464
|
+
// @public
|
|
1465
|
+
export interface NetworkConnectionsCreateOrUpdateOptionalParams extends coreClient.OperationOptions {
|
|
1466
|
+
resumeFrom?: string;
|
|
1467
|
+
updateIntervalInMs?: number;
|
|
1468
|
+
}
|
|
1469
|
+
|
|
1470
|
+
// @public
|
|
1471
|
+
export type NetworkConnectionsCreateOrUpdateResponse = NetworkConnection;
|
|
1472
|
+
|
|
1473
|
+
// @public
|
|
1474
|
+
export interface NetworkConnectionsDeleteHeaders {
|
|
1475
|
+
// (undocumented)
|
|
1476
|
+
location?: string;
|
|
1477
|
+
}
|
|
1478
|
+
|
|
1479
|
+
// @public
|
|
1480
|
+
export interface NetworkConnectionsDeleteOptionalParams extends coreClient.OperationOptions {
|
|
1481
|
+
resumeFrom?: string;
|
|
1482
|
+
updateIntervalInMs?: number;
|
|
1483
|
+
}
|
|
1484
|
+
|
|
1485
|
+
// @public
|
|
1486
|
+
export type NetworkConnectionsDeleteResponse = NetworkConnectionsDeleteHeaders;
|
|
1487
|
+
|
|
1488
|
+
// @public
|
|
1489
|
+
export interface NetworkConnectionsGetHealthDetailsOptionalParams extends coreClient.OperationOptions {
|
|
1490
|
+
}
|
|
1491
|
+
|
|
1492
|
+
// @public
|
|
1493
|
+
export type NetworkConnectionsGetHealthDetailsResponse = HealthCheckStatusDetails;
|
|
1494
|
+
|
|
1495
|
+
// @public
|
|
1496
|
+
export interface NetworkConnectionsGetOptionalParams extends coreClient.OperationOptions {
|
|
1497
|
+
}
|
|
1498
|
+
|
|
1499
|
+
// @public
|
|
1500
|
+
export type NetworkConnectionsGetResponse = NetworkConnection;
|
|
1501
|
+
|
|
1502
|
+
// @public
|
|
1503
|
+
export interface NetworkConnectionsListByResourceGroupNextOptionalParams extends coreClient.OperationOptions {
|
|
1504
|
+
}
|
|
1505
|
+
|
|
1506
|
+
// @public
|
|
1507
|
+
export type NetworkConnectionsListByResourceGroupNextResponse = NetworkConnectionListResult;
|
|
1508
|
+
|
|
1509
|
+
// @public
|
|
1510
|
+
export interface NetworkConnectionsListByResourceGroupOptionalParams extends coreClient.OperationOptions {
|
|
1511
|
+
top?: number;
|
|
1512
|
+
}
|
|
1513
|
+
|
|
1514
|
+
// @public
|
|
1515
|
+
export type NetworkConnectionsListByResourceGroupResponse = NetworkConnectionListResult;
|
|
1516
|
+
|
|
1517
|
+
// @public
|
|
1518
|
+
export interface NetworkConnectionsListBySubscriptionNextOptionalParams extends coreClient.OperationOptions {
|
|
1519
|
+
}
|
|
1520
|
+
|
|
1521
|
+
// @public
|
|
1522
|
+
export type NetworkConnectionsListBySubscriptionNextResponse = NetworkConnectionListResult;
|
|
1523
|
+
|
|
1524
|
+
// @public
|
|
1525
|
+
export interface NetworkConnectionsListBySubscriptionOptionalParams extends coreClient.OperationOptions {
|
|
1526
|
+
top?: number;
|
|
1527
|
+
}
|
|
1528
|
+
|
|
1529
|
+
// @public
|
|
1530
|
+
export type NetworkConnectionsListBySubscriptionResponse = NetworkConnectionListResult;
|
|
1531
|
+
|
|
1532
|
+
// @public
|
|
1533
|
+
export interface NetworkConnectionsListHealthDetailsOptionalParams extends coreClient.OperationOptions {
|
|
1534
|
+
top?: number;
|
|
1535
|
+
}
|
|
1536
|
+
|
|
1537
|
+
// @public
|
|
1538
|
+
export type NetworkConnectionsListHealthDetailsResponse = HealthCheckStatusDetailsListResult;
|
|
1539
|
+
|
|
1540
|
+
// @public
|
|
1541
|
+
export interface NetworkConnectionsListOutboundNetworkDependenciesEndpointsNextOptionalParams extends coreClient.OperationOptions {
|
|
1542
|
+
}
|
|
1543
|
+
|
|
1544
|
+
// @public
|
|
1545
|
+
export type NetworkConnectionsListOutboundNetworkDependenciesEndpointsNextResponse = OutboundEnvironmentEndpointCollection;
|
|
1546
|
+
|
|
1547
|
+
// @public
|
|
1548
|
+
export interface NetworkConnectionsListOutboundNetworkDependenciesEndpointsOptionalParams extends coreClient.OperationOptions {
|
|
1549
|
+
top?: number;
|
|
1550
|
+
}
|
|
1551
|
+
|
|
1552
|
+
// @public
|
|
1553
|
+
export type NetworkConnectionsListOutboundNetworkDependenciesEndpointsResponse = OutboundEnvironmentEndpointCollection;
|
|
1554
|
+
|
|
1555
|
+
// @public
|
|
1556
|
+
export interface NetworkConnectionsRunHealthChecksHeaders {
|
|
1557
|
+
// (undocumented)
|
|
1558
|
+
location?: string;
|
|
1559
|
+
}
|
|
1560
|
+
|
|
1561
|
+
// @public
|
|
1562
|
+
export interface NetworkConnectionsRunHealthChecksOptionalParams extends coreClient.OperationOptions {
|
|
1563
|
+
resumeFrom?: string;
|
|
1564
|
+
updateIntervalInMs?: number;
|
|
1565
|
+
}
|
|
1566
|
+
|
|
1567
|
+
// @public
|
|
1568
|
+
export type NetworkConnectionsRunHealthChecksResponse = NetworkConnectionsRunHealthChecksHeaders;
|
|
1569
|
+
|
|
1570
|
+
// @public
|
|
1571
|
+
export interface NetworkConnectionsUpdateHeaders {
|
|
1572
|
+
// (undocumented)
|
|
1573
|
+
location?: string;
|
|
1574
|
+
}
|
|
1575
|
+
|
|
1576
|
+
// @public
|
|
1577
|
+
export interface NetworkConnectionsUpdateOptionalParams extends coreClient.OperationOptions {
|
|
1578
|
+
resumeFrom?: string;
|
|
1579
|
+
updateIntervalInMs?: number;
|
|
1580
|
+
}
|
|
1581
|
+
|
|
1582
|
+
// @public
|
|
1583
|
+
export type NetworkConnectionsUpdateResponse = NetworkConnection;
|
|
1584
|
+
|
|
1585
|
+
// @public
|
|
1586
|
+
export interface NetworkConnectionUpdate extends TrackedResourceUpdate {
|
|
1587
|
+
domainName?: string;
|
|
1588
|
+
domainPassword?: string;
|
|
1589
|
+
domainUsername?: string;
|
|
1590
|
+
organizationUnit?: string;
|
|
1591
|
+
subnetId?: string;
|
|
1592
|
+
}
|
|
1593
|
+
|
|
1594
|
+
// @public
|
|
1595
|
+
export interface NetworkConnectionUpdateProperties {
|
|
1596
|
+
domainName?: string;
|
|
1597
|
+
domainPassword?: string;
|
|
1598
|
+
domainUsername?: string;
|
|
1599
|
+
organizationUnit?: string;
|
|
1600
|
+
subnetId?: string;
|
|
1601
|
+
}
|
|
1602
|
+
|
|
1603
|
+
// @public
|
|
1604
|
+
export interface NetworkProperties extends NetworkConnectionUpdateProperties {
|
|
1605
|
+
domainJoinType: DomainJoinType;
|
|
1606
|
+
readonly healthCheckStatus?: HealthCheckStatus;
|
|
1607
|
+
networkingResourceGroupName?: string;
|
|
1608
|
+
readonly provisioningState?: ProvisioningState;
|
|
1609
|
+
}
|
|
1610
|
+
|
|
1611
|
+
// @public
|
|
1612
|
+
export interface Operation {
|
|
1613
|
+
readonly actionType?: ActionType;
|
|
1614
|
+
display?: OperationDisplay;
|
|
1615
|
+
readonly isDataAction?: boolean;
|
|
1616
|
+
readonly name?: string;
|
|
1617
|
+
readonly origin?: Origin;
|
|
1618
|
+
}
|
|
1619
|
+
|
|
1620
|
+
// @public
|
|
1621
|
+
export interface OperationDisplay {
|
|
1622
|
+
readonly description?: string;
|
|
1623
|
+
readonly operation?: string;
|
|
1624
|
+
readonly provider?: string;
|
|
1625
|
+
readonly resource?: string;
|
|
1626
|
+
}
|
|
1627
|
+
|
|
1628
|
+
// @public
|
|
1629
|
+
export interface OperationListResult {
|
|
1630
|
+
readonly nextLink?: string;
|
|
1631
|
+
readonly value?: Operation[];
|
|
1632
|
+
}
|
|
1633
|
+
|
|
1634
|
+
// @public
|
|
1635
|
+
export interface Operations {
|
|
1636
|
+
list(options?: OperationsListOptionalParams): PagedAsyncIterableIterator<Operation>;
|
|
1637
|
+
}
|
|
1638
|
+
|
|
1639
|
+
// @public
|
|
1640
|
+
export interface OperationsListNextOptionalParams extends coreClient.OperationOptions {
|
|
1641
|
+
}
|
|
1642
|
+
|
|
1643
|
+
// @public
|
|
1644
|
+
export type OperationsListNextResponse = OperationListResult;
|
|
1645
|
+
|
|
1646
|
+
// @public
|
|
1647
|
+
export interface OperationsListOptionalParams extends coreClient.OperationOptions {
|
|
1648
|
+
}
|
|
1649
|
+
|
|
1650
|
+
// @public
|
|
1651
|
+
export type OperationsListResponse = OperationListResult;
|
|
1652
|
+
|
|
1653
|
+
// @public
|
|
1654
|
+
export interface OperationStatus extends OperationStatusResult {
|
|
1655
|
+
readonly properties?: Record<string, unknown>;
|
|
1656
|
+
}
|
|
1657
|
+
|
|
1658
|
+
// @public
|
|
1659
|
+
export interface OperationStatuses {
|
|
1660
|
+
get(location: string, operationId: string, options?: OperationStatusesGetOptionalParams): Promise<OperationStatusesGetResponse>;
|
|
1661
|
+
}
|
|
1662
|
+
|
|
1663
|
+
// @public
|
|
1664
|
+
export interface OperationStatusesGetHeaders {
|
|
1665
|
+
// (undocumented)
|
|
1666
|
+
location?: string;
|
|
1667
|
+
}
|
|
1668
|
+
|
|
1669
|
+
// @public
|
|
1670
|
+
export interface OperationStatusesGetOptionalParams extends coreClient.OperationOptions {
|
|
1671
|
+
}
|
|
1672
|
+
|
|
1673
|
+
// @public
|
|
1674
|
+
export type OperationStatusesGetResponse = OperationStatus;
|
|
1675
|
+
|
|
1676
|
+
// @public
|
|
1677
|
+
export interface OperationStatusResult {
|
|
1678
|
+
endTime?: Date;
|
|
1679
|
+
error?: ErrorDetail;
|
|
1680
|
+
id?: string;
|
|
1681
|
+
name?: string;
|
|
1682
|
+
operations?: OperationStatusResult[];
|
|
1683
|
+
percentComplete?: number;
|
|
1684
|
+
readonly resourceId?: string;
|
|
1685
|
+
startTime?: Date;
|
|
1686
|
+
status: string;
|
|
1687
|
+
}
|
|
1688
|
+
|
|
1689
|
+
// @public
|
|
1690
|
+
export type Origin = string;
|
|
1691
|
+
|
|
1692
|
+
// @public
|
|
1693
|
+
export interface OutboundEnvironmentEndpoint {
|
|
1694
|
+
readonly category?: string;
|
|
1695
|
+
readonly endpoints?: EndpointDependency[];
|
|
1696
|
+
}
|
|
1697
|
+
|
|
1698
|
+
// @public
|
|
1699
|
+
export interface OutboundEnvironmentEndpointCollection {
|
|
1700
|
+
nextLink?: string;
|
|
1701
|
+
readonly value?: OutboundEnvironmentEndpoint[];
|
|
1702
|
+
}
|
|
1703
|
+
|
|
1704
|
+
// @public
|
|
1705
|
+
export type ParameterType = string;
|
|
1706
|
+
|
|
1707
|
+
// @public
|
|
1708
|
+
export interface Pool extends TrackedResource {
|
|
1709
|
+
readonly devBoxCount?: number;
|
|
1710
|
+
devBoxDefinitionName?: string;
|
|
1711
|
+
displayName?: string;
|
|
1712
|
+
readonly healthStatus?: HealthStatus;
|
|
1713
|
+
readonly healthStatusDetails?: HealthStatusDetail[];
|
|
1714
|
+
licenseType?: LicenseType;
|
|
1715
|
+
localAdministrator?: LocalAdminStatus;
|
|
1716
|
+
managedVirtualNetworkRegions?: string[];
|
|
1717
|
+
networkConnectionName?: string;
|
|
1718
|
+
readonly provisioningState?: ProvisioningState;
|
|
1719
|
+
singleSignOnStatus?: SingleSignOnStatus;
|
|
1720
|
+
stopOnDisconnect?: StopOnDisconnectConfiguration;
|
|
1721
|
+
virtualNetworkType?: VirtualNetworkType;
|
|
1722
|
+
}
|
|
1723
|
+
|
|
1724
|
+
// @public
|
|
1725
|
+
export interface PoolListResult {
|
|
1726
|
+
readonly nextLink?: string;
|
|
1727
|
+
readonly value?: Pool[];
|
|
1728
|
+
}
|
|
1729
|
+
|
|
1730
|
+
// @public
|
|
1731
|
+
export interface PoolProperties extends PoolUpdateProperties {
|
|
1732
|
+
readonly devBoxCount?: number;
|
|
1733
|
+
readonly healthStatus?: HealthStatus;
|
|
1734
|
+
readonly healthStatusDetails?: HealthStatusDetail[];
|
|
1735
|
+
readonly provisioningState?: ProvisioningState;
|
|
1736
|
+
}
|
|
1737
|
+
|
|
1738
|
+
// @public
|
|
1739
|
+
export interface Pools {
|
|
1740
|
+
beginCreateOrUpdate(resourceGroupName: string, projectName: string, poolName: string, body: Pool, options?: PoolsCreateOrUpdateOptionalParams): Promise<SimplePollerLike<OperationState<PoolsCreateOrUpdateResponse>, PoolsCreateOrUpdateResponse>>;
|
|
1741
|
+
beginCreateOrUpdateAndWait(resourceGroupName: string, projectName: string, poolName: string, body: Pool, options?: PoolsCreateOrUpdateOptionalParams): Promise<PoolsCreateOrUpdateResponse>;
|
|
1742
|
+
beginDelete(resourceGroupName: string, projectName: string, poolName: string, options?: PoolsDeleteOptionalParams): Promise<SimplePollerLike<OperationState<PoolsDeleteResponse>, PoolsDeleteResponse>>;
|
|
1743
|
+
beginDeleteAndWait(resourceGroupName: string, projectName: string, poolName: string, options?: PoolsDeleteOptionalParams): Promise<PoolsDeleteResponse>;
|
|
1744
|
+
beginRunHealthChecks(resourceGroupName: string, projectName: string, poolName: string, options?: PoolsRunHealthChecksOptionalParams): Promise<SimplePollerLike<OperationState<PoolsRunHealthChecksResponse>, PoolsRunHealthChecksResponse>>;
|
|
1745
|
+
beginRunHealthChecksAndWait(resourceGroupName: string, projectName: string, poolName: string, options?: PoolsRunHealthChecksOptionalParams): Promise<PoolsRunHealthChecksResponse>;
|
|
1746
|
+
beginUpdate(resourceGroupName: string, projectName: string, poolName: string, body: PoolUpdate, options?: PoolsUpdateOptionalParams): Promise<SimplePollerLike<OperationState<PoolsUpdateResponse>, PoolsUpdateResponse>>;
|
|
1747
|
+
beginUpdateAndWait(resourceGroupName: string, projectName: string, poolName: string, body: PoolUpdate, options?: PoolsUpdateOptionalParams): Promise<PoolsUpdateResponse>;
|
|
1748
|
+
get(resourceGroupName: string, projectName: string, poolName: string, options?: PoolsGetOptionalParams): Promise<PoolsGetResponse>;
|
|
1749
|
+
listByProject(resourceGroupName: string, projectName: string, options?: PoolsListByProjectOptionalParams): PagedAsyncIterableIterator<Pool>;
|
|
1750
|
+
}
|
|
1751
|
+
|
|
1752
|
+
// @public
|
|
1753
|
+
export interface PoolsCreateOrUpdateOptionalParams extends coreClient.OperationOptions {
|
|
1754
|
+
resumeFrom?: string;
|
|
1755
|
+
updateIntervalInMs?: number;
|
|
1756
|
+
}
|
|
1757
|
+
|
|
1758
|
+
// @public
|
|
1759
|
+
export type PoolsCreateOrUpdateResponse = Pool;
|
|
1760
|
+
|
|
1761
|
+
// @public
|
|
1762
|
+
export interface PoolsDeleteHeaders {
|
|
1763
|
+
// (undocumented)
|
|
1764
|
+
location?: string;
|
|
1765
|
+
}
|
|
1766
|
+
|
|
1767
|
+
// @public
|
|
1768
|
+
export interface PoolsDeleteOptionalParams extends coreClient.OperationOptions {
|
|
1769
|
+
resumeFrom?: string;
|
|
1770
|
+
updateIntervalInMs?: number;
|
|
1771
|
+
}
|
|
1772
|
+
|
|
1773
|
+
// @public
|
|
1774
|
+
export type PoolsDeleteResponse = PoolsDeleteHeaders;
|
|
1775
|
+
|
|
1776
|
+
// @public
|
|
1777
|
+
export interface PoolsGetOptionalParams extends coreClient.OperationOptions {
|
|
1778
|
+
}
|
|
1779
|
+
|
|
1780
|
+
// @public
|
|
1781
|
+
export type PoolsGetResponse = Pool;
|
|
1782
|
+
|
|
1783
|
+
// @public
|
|
1784
|
+
export interface PoolsListByProjectNextOptionalParams extends coreClient.OperationOptions {
|
|
1785
|
+
}
|
|
1786
|
+
|
|
1787
|
+
// @public
|
|
1788
|
+
export type PoolsListByProjectNextResponse = PoolListResult;
|
|
1789
|
+
|
|
1790
|
+
// @public
|
|
1791
|
+
export interface PoolsListByProjectOptionalParams extends coreClient.OperationOptions {
|
|
1792
|
+
top?: number;
|
|
1793
|
+
}
|
|
1794
|
+
|
|
1795
|
+
// @public
|
|
1796
|
+
export type PoolsListByProjectResponse = PoolListResult;
|
|
1797
|
+
|
|
1798
|
+
// @public
|
|
1799
|
+
export interface PoolsRunHealthChecksHeaders {
|
|
1800
|
+
// (undocumented)
|
|
1801
|
+
location?: string;
|
|
1802
|
+
}
|
|
1803
|
+
|
|
1804
|
+
// @public
|
|
1805
|
+
export interface PoolsRunHealthChecksOptionalParams extends coreClient.OperationOptions {
|
|
1806
|
+
resumeFrom?: string;
|
|
1807
|
+
updateIntervalInMs?: number;
|
|
1808
|
+
}
|
|
1809
|
+
|
|
1810
|
+
// @public
|
|
1811
|
+
export type PoolsRunHealthChecksResponse = PoolsRunHealthChecksHeaders;
|
|
1812
|
+
|
|
1813
|
+
// @public
|
|
1814
|
+
export interface PoolsUpdateHeaders {
|
|
1815
|
+
// (undocumented)
|
|
1816
|
+
location?: string;
|
|
1817
|
+
}
|
|
1818
|
+
|
|
1819
|
+
// @public
|
|
1820
|
+
export interface PoolsUpdateOptionalParams extends coreClient.OperationOptions {
|
|
1821
|
+
resumeFrom?: string;
|
|
1822
|
+
updateIntervalInMs?: number;
|
|
1823
|
+
}
|
|
1824
|
+
|
|
1825
|
+
// @public
|
|
1826
|
+
export type PoolsUpdateResponse = Pool;
|
|
1827
|
+
|
|
1828
|
+
// @public
|
|
1829
|
+
export interface PoolUpdate extends TrackedResourceUpdate {
|
|
1830
|
+
devBoxDefinitionName?: string;
|
|
1831
|
+
displayName?: string;
|
|
1832
|
+
licenseType?: LicenseType;
|
|
1833
|
+
localAdministrator?: LocalAdminStatus;
|
|
1834
|
+
managedVirtualNetworkRegions?: string[];
|
|
1835
|
+
networkConnectionName?: string;
|
|
1836
|
+
singleSignOnStatus?: SingleSignOnStatus;
|
|
1837
|
+
stopOnDisconnect?: StopOnDisconnectConfiguration;
|
|
1838
|
+
virtualNetworkType?: VirtualNetworkType;
|
|
1839
|
+
}
|
|
1840
|
+
|
|
1841
|
+
// @public
|
|
1842
|
+
export interface PoolUpdateProperties {
|
|
1843
|
+
devBoxDefinitionName?: string;
|
|
1844
|
+
displayName?: string;
|
|
1845
|
+
licenseType?: LicenseType;
|
|
1846
|
+
localAdministrator?: LocalAdminStatus;
|
|
1847
|
+
managedVirtualNetworkRegions?: string[];
|
|
1848
|
+
networkConnectionName?: string;
|
|
1849
|
+
singleSignOnStatus?: SingleSignOnStatus;
|
|
1850
|
+
stopOnDisconnect?: StopOnDisconnectConfiguration;
|
|
1851
|
+
virtualNetworkType?: VirtualNetworkType;
|
|
1852
|
+
}
|
|
1853
|
+
|
|
1854
|
+
// @public
|
|
1855
|
+
export interface Project extends TrackedResource {
|
|
1856
|
+
catalogSettings?: ProjectCatalogSettings;
|
|
1857
|
+
description?: string;
|
|
1858
|
+
devCenterId?: string;
|
|
1859
|
+
readonly devCenterUri?: string;
|
|
1860
|
+
displayName?: string;
|
|
1861
|
+
identity?: ManagedServiceIdentity;
|
|
1862
|
+
maxDevBoxesPerUser?: number;
|
|
1863
|
+
readonly provisioningState?: ProvisioningState;
|
|
1864
|
+
}
|
|
1865
|
+
|
|
1866
|
+
// @public
|
|
1867
|
+
export interface ProjectAllowedEnvironmentTypes {
|
|
1868
|
+
get(resourceGroupName: string, projectName: string, environmentTypeName: string, options?: ProjectAllowedEnvironmentTypesGetOptionalParams): Promise<ProjectAllowedEnvironmentTypesGetResponse>;
|
|
1869
|
+
list(resourceGroupName: string, projectName: string, options?: ProjectAllowedEnvironmentTypesListOptionalParams): PagedAsyncIterableIterator<AllowedEnvironmentType>;
|
|
1870
|
+
}
|
|
1871
|
+
|
|
1872
|
+
// @public
|
|
1873
|
+
export interface ProjectAllowedEnvironmentTypesGetOptionalParams extends coreClient.OperationOptions {
|
|
1874
|
+
}
|
|
1875
|
+
|
|
1876
|
+
// @public
|
|
1877
|
+
export type ProjectAllowedEnvironmentTypesGetResponse = AllowedEnvironmentType;
|
|
1878
|
+
|
|
1879
|
+
// @public
|
|
1880
|
+
export interface ProjectAllowedEnvironmentTypesListNextOptionalParams extends coreClient.OperationOptions {
|
|
1881
|
+
}
|
|
1882
|
+
|
|
1883
|
+
// @public
|
|
1884
|
+
export type ProjectAllowedEnvironmentTypesListNextResponse = AllowedEnvironmentTypeListResult;
|
|
1885
|
+
|
|
1886
|
+
// @public
|
|
1887
|
+
export interface ProjectAllowedEnvironmentTypesListOptionalParams extends coreClient.OperationOptions {
|
|
1888
|
+
top?: number;
|
|
1889
|
+
}
|
|
1890
|
+
|
|
1891
|
+
// @public
|
|
1892
|
+
export type ProjectAllowedEnvironmentTypesListResponse = AllowedEnvironmentTypeListResult;
|
|
1893
|
+
|
|
1894
|
+
// @public
|
|
1895
|
+
export interface ProjectCatalogEnvironmentDefinitions {
|
|
1896
|
+
getErrorDetails(resourceGroupName: string, projectName: string, catalogName: string, environmentDefinitionName: string, options?: ProjectCatalogEnvironmentDefinitionsGetErrorDetailsOptionalParams): Promise<ProjectCatalogEnvironmentDefinitionsGetErrorDetailsResponse>;
|
|
1897
|
+
}
|
|
1898
|
+
|
|
1899
|
+
// @public
|
|
1900
|
+
export interface ProjectCatalogEnvironmentDefinitionsGetErrorDetailsOptionalParams extends coreClient.OperationOptions {
|
|
1901
|
+
}
|
|
1902
|
+
|
|
1903
|
+
// @public
|
|
1904
|
+
export type ProjectCatalogEnvironmentDefinitionsGetErrorDetailsResponse = CatalogResourceValidationErrorDetails;
|
|
1905
|
+
|
|
1906
|
+
// @public
|
|
1907
|
+
export interface ProjectCatalogs {
|
|
1908
|
+
beginConnect(resourceGroupName: string, projectName: string, catalogName: string, options?: ProjectCatalogsConnectOptionalParams): Promise<SimplePollerLike<OperationState<ProjectCatalogsConnectResponse>, ProjectCatalogsConnectResponse>>;
|
|
1909
|
+
beginConnectAndWait(resourceGroupName: string, projectName: string, catalogName: string, options?: ProjectCatalogsConnectOptionalParams): Promise<ProjectCatalogsConnectResponse>;
|
|
1910
|
+
beginCreateOrUpdate(resourceGroupName: string, projectName: string, catalogName: string, body: Catalog, options?: ProjectCatalogsCreateOrUpdateOptionalParams): Promise<SimplePollerLike<OperationState<ProjectCatalogsCreateOrUpdateResponse>, ProjectCatalogsCreateOrUpdateResponse>>;
|
|
1911
|
+
beginCreateOrUpdateAndWait(resourceGroupName: string, projectName: string, catalogName: string, body: Catalog, options?: ProjectCatalogsCreateOrUpdateOptionalParams): Promise<ProjectCatalogsCreateOrUpdateResponse>;
|
|
1912
|
+
beginDelete(resourceGroupName: string, projectName: string, catalogName: string, options?: ProjectCatalogsDeleteOptionalParams): Promise<SimplePollerLike<OperationState<ProjectCatalogsDeleteResponse>, ProjectCatalogsDeleteResponse>>;
|
|
1913
|
+
beginDeleteAndWait(resourceGroupName: string, projectName: string, catalogName: string, options?: ProjectCatalogsDeleteOptionalParams): Promise<ProjectCatalogsDeleteResponse>;
|
|
1914
|
+
beginPatch(resourceGroupName: string, projectName: string, catalogName: string, body: CatalogUpdate, options?: ProjectCatalogsPatchOptionalParams): Promise<SimplePollerLike<OperationState<ProjectCatalogsPatchResponse>, ProjectCatalogsPatchResponse>>;
|
|
1915
|
+
beginPatchAndWait(resourceGroupName: string, projectName: string, catalogName: string, body: CatalogUpdate, options?: ProjectCatalogsPatchOptionalParams): Promise<ProjectCatalogsPatchResponse>;
|
|
1916
|
+
beginSync(resourceGroupName: string, projectName: string, catalogName: string, options?: ProjectCatalogsSyncOptionalParams): Promise<SimplePollerLike<OperationState<ProjectCatalogsSyncResponse>, ProjectCatalogsSyncResponse>>;
|
|
1917
|
+
beginSyncAndWait(resourceGroupName: string, projectName: string, catalogName: string, options?: ProjectCatalogsSyncOptionalParams): Promise<ProjectCatalogsSyncResponse>;
|
|
1918
|
+
get(resourceGroupName: string, projectName: string, catalogName: string, options?: ProjectCatalogsGetOptionalParams): Promise<ProjectCatalogsGetResponse>;
|
|
1919
|
+
getSyncErrorDetails(resourceGroupName: string, projectName: string, catalogName: string, options?: ProjectCatalogsGetSyncErrorDetailsOptionalParams): Promise<ProjectCatalogsGetSyncErrorDetailsResponse>;
|
|
1920
|
+
list(resourceGroupName: string, projectName: string, options?: ProjectCatalogsListOptionalParams): PagedAsyncIterableIterator<Catalog>;
|
|
1921
|
+
}
|
|
1922
|
+
|
|
1923
|
+
// @public
|
|
1924
|
+
export interface ProjectCatalogsConnectHeaders {
|
|
1925
|
+
// (undocumented)
|
|
1926
|
+
location?: string;
|
|
1927
|
+
}
|
|
1928
|
+
|
|
1929
|
+
// @public
|
|
1930
|
+
export interface ProjectCatalogsConnectOptionalParams extends coreClient.OperationOptions {
|
|
1931
|
+
resumeFrom?: string;
|
|
1932
|
+
updateIntervalInMs?: number;
|
|
1933
|
+
}
|
|
1934
|
+
|
|
1935
|
+
// @public
|
|
1936
|
+
export type ProjectCatalogsConnectResponse = ProjectCatalogsConnectHeaders;
|
|
1937
|
+
|
|
1938
|
+
// @public
|
|
1939
|
+
export interface ProjectCatalogsCreateOrUpdateOptionalParams extends coreClient.OperationOptions {
|
|
1940
|
+
resumeFrom?: string;
|
|
1941
|
+
updateIntervalInMs?: number;
|
|
1942
|
+
}
|
|
1943
|
+
|
|
1944
|
+
// @public
|
|
1945
|
+
export type ProjectCatalogsCreateOrUpdateResponse = Catalog;
|
|
1946
|
+
|
|
1947
|
+
// @public
|
|
1948
|
+
export interface ProjectCatalogsDeleteHeaders {
|
|
1949
|
+
// (undocumented)
|
|
1950
|
+
location?: string;
|
|
1951
|
+
}
|
|
1952
|
+
|
|
1953
|
+
// @public
|
|
1954
|
+
export interface ProjectCatalogsDeleteOptionalParams extends coreClient.OperationOptions {
|
|
1955
|
+
resumeFrom?: string;
|
|
1956
|
+
updateIntervalInMs?: number;
|
|
1957
|
+
}
|
|
1958
|
+
|
|
1959
|
+
// @public
|
|
1960
|
+
export type ProjectCatalogsDeleteResponse = ProjectCatalogsDeleteHeaders;
|
|
1961
|
+
|
|
1962
|
+
// @public
|
|
1963
|
+
export interface ProjectCatalogSettings {
|
|
1964
|
+
catalogItemSyncTypes?: CatalogItemType[];
|
|
1965
|
+
}
|
|
1966
|
+
|
|
1967
|
+
// @public
|
|
1968
|
+
export interface ProjectCatalogsGetOptionalParams extends coreClient.OperationOptions {
|
|
1969
|
+
}
|
|
1970
|
+
|
|
1971
|
+
// @public
|
|
1972
|
+
export type ProjectCatalogsGetResponse = Catalog;
|
|
1973
|
+
|
|
1974
|
+
// @public
|
|
1975
|
+
export interface ProjectCatalogsGetSyncErrorDetailsOptionalParams extends coreClient.OperationOptions {
|
|
1976
|
+
}
|
|
1977
|
+
|
|
1978
|
+
// @public
|
|
1979
|
+
export type ProjectCatalogsGetSyncErrorDetailsResponse = SyncErrorDetails;
|
|
1980
|
+
|
|
1981
|
+
// @public
|
|
1982
|
+
export interface ProjectCatalogsListNextOptionalParams extends coreClient.OperationOptions {
|
|
1983
|
+
}
|
|
1984
|
+
|
|
1985
|
+
// @public
|
|
1986
|
+
export type ProjectCatalogsListNextResponse = CatalogListResult;
|
|
1987
|
+
|
|
1988
|
+
// @public
|
|
1989
|
+
export interface ProjectCatalogsListOptionalParams extends coreClient.OperationOptions {
|
|
1990
|
+
top?: number;
|
|
1991
|
+
}
|
|
1992
|
+
|
|
1993
|
+
// @public
|
|
1994
|
+
export type ProjectCatalogsListResponse = CatalogListResult;
|
|
1995
|
+
|
|
1996
|
+
// @public
|
|
1997
|
+
export interface ProjectCatalogsPatchHeaders {
|
|
1998
|
+
// (undocumented)
|
|
1999
|
+
location?: string;
|
|
2000
|
+
}
|
|
2001
|
+
|
|
2002
|
+
// @public
|
|
2003
|
+
export interface ProjectCatalogsPatchOptionalParams extends coreClient.OperationOptions {
|
|
2004
|
+
resumeFrom?: string;
|
|
2005
|
+
updateIntervalInMs?: number;
|
|
2006
|
+
}
|
|
2007
|
+
|
|
2008
|
+
// @public
|
|
2009
|
+
export type ProjectCatalogsPatchResponse = Catalog;
|
|
2010
|
+
|
|
2011
|
+
// @public
|
|
2012
|
+
export interface ProjectCatalogsSyncHeaders {
|
|
2013
|
+
// (undocumented)
|
|
2014
|
+
location?: string;
|
|
2015
|
+
}
|
|
2016
|
+
|
|
2017
|
+
// @public
|
|
2018
|
+
export interface ProjectCatalogsSyncOptionalParams extends coreClient.OperationOptions {
|
|
2019
|
+
resumeFrom?: string;
|
|
2020
|
+
updateIntervalInMs?: number;
|
|
2021
|
+
}
|
|
2022
|
+
|
|
2023
|
+
// @public
|
|
2024
|
+
export type ProjectCatalogsSyncResponse = ProjectCatalogsSyncHeaders;
|
|
2025
|
+
|
|
2026
|
+
// @public
|
|
2027
|
+
export interface ProjectEnvironmentType extends Resource {
|
|
2028
|
+
creatorRoleAssignment?: ProjectEnvironmentTypeUpdatePropertiesCreatorRoleAssignment;
|
|
2029
|
+
deploymentTargetId?: string;
|
|
2030
|
+
displayName?: string;
|
|
2031
|
+
readonly environmentCount?: number;
|
|
2032
|
+
identity?: ManagedServiceIdentity;
|
|
2033
|
+
location?: string;
|
|
2034
|
+
readonly provisioningState?: ProvisioningState;
|
|
2035
|
+
status?: EnvironmentTypeEnableStatus;
|
|
2036
|
+
tags?: {
|
|
2037
|
+
[propertyName: string]: string;
|
|
2038
|
+
};
|
|
2039
|
+
userRoleAssignments?: {
|
|
2040
|
+
[propertyName: string]: UserRoleAssignmentValue;
|
|
2041
|
+
};
|
|
2042
|
+
}
|
|
2043
|
+
|
|
2044
|
+
// @public
|
|
2045
|
+
export interface ProjectEnvironmentTypeListResult {
|
|
2046
|
+
readonly nextLink?: string;
|
|
2047
|
+
readonly value?: ProjectEnvironmentType[];
|
|
2048
|
+
}
|
|
2049
|
+
|
|
2050
|
+
// @public
|
|
2051
|
+
export interface ProjectEnvironmentTypeProperties extends ProjectEnvironmentTypeUpdateProperties {
|
|
2052
|
+
readonly environmentCount?: number;
|
|
2053
|
+
readonly provisioningState?: ProvisioningState;
|
|
2054
|
+
}
|
|
2055
|
+
|
|
2056
|
+
// @public
|
|
2057
|
+
export interface ProjectEnvironmentTypes {
|
|
2058
|
+
createOrUpdate(resourceGroupName: string, projectName: string, environmentTypeName: string, body: ProjectEnvironmentType, options?: ProjectEnvironmentTypesCreateOrUpdateOptionalParams): Promise<ProjectEnvironmentTypesCreateOrUpdateResponse>;
|
|
2059
|
+
delete(resourceGroupName: string, projectName: string, environmentTypeName: string, options?: ProjectEnvironmentTypesDeleteOptionalParams): Promise<void>;
|
|
2060
|
+
get(resourceGroupName: string, projectName: string, environmentTypeName: string, options?: ProjectEnvironmentTypesGetOptionalParams): Promise<ProjectEnvironmentTypesGetResponse>;
|
|
2061
|
+
list(resourceGroupName: string, projectName: string, options?: ProjectEnvironmentTypesListOptionalParams): PagedAsyncIterableIterator<ProjectEnvironmentType>;
|
|
2062
|
+
update(resourceGroupName: string, projectName: string, environmentTypeName: string, body: ProjectEnvironmentTypeUpdate, options?: ProjectEnvironmentTypesUpdateOptionalParams): Promise<ProjectEnvironmentTypesUpdateResponse>;
|
|
2063
|
+
}
|
|
2064
|
+
|
|
2065
|
+
// @public
|
|
2066
|
+
export interface ProjectEnvironmentTypesCreateOrUpdateOptionalParams extends coreClient.OperationOptions {
|
|
2067
|
+
}
|
|
2068
|
+
|
|
2069
|
+
// @public
|
|
2070
|
+
export type ProjectEnvironmentTypesCreateOrUpdateResponse = ProjectEnvironmentType;
|
|
2071
|
+
|
|
2072
|
+
// @public
|
|
2073
|
+
export interface ProjectEnvironmentTypesDeleteOptionalParams extends coreClient.OperationOptions {
|
|
2074
|
+
}
|
|
2075
|
+
|
|
2076
|
+
// @public
|
|
2077
|
+
export interface ProjectEnvironmentTypesGetOptionalParams extends coreClient.OperationOptions {
|
|
2078
|
+
}
|
|
2079
|
+
|
|
2080
|
+
// @public
|
|
2081
|
+
export type ProjectEnvironmentTypesGetResponse = ProjectEnvironmentType;
|
|
2082
|
+
|
|
2083
|
+
// @public
|
|
2084
|
+
export interface ProjectEnvironmentTypesListNextOptionalParams extends coreClient.OperationOptions {
|
|
2085
|
+
}
|
|
2086
|
+
|
|
2087
|
+
// @public
|
|
2088
|
+
export type ProjectEnvironmentTypesListNextResponse = ProjectEnvironmentTypeListResult;
|
|
2089
|
+
|
|
2090
|
+
// @public
|
|
2091
|
+
export interface ProjectEnvironmentTypesListOptionalParams extends coreClient.OperationOptions {
|
|
2092
|
+
top?: number;
|
|
2093
|
+
}
|
|
2094
|
+
|
|
2095
|
+
// @public
|
|
2096
|
+
export type ProjectEnvironmentTypesListResponse = ProjectEnvironmentTypeListResult;
|
|
2097
|
+
|
|
2098
|
+
// @public
|
|
2099
|
+
export interface ProjectEnvironmentTypesUpdateOptionalParams extends coreClient.OperationOptions {
|
|
2100
|
+
}
|
|
2101
|
+
|
|
2102
|
+
// @public
|
|
2103
|
+
export type ProjectEnvironmentTypesUpdateResponse = ProjectEnvironmentType;
|
|
2104
|
+
|
|
2105
|
+
// @public
|
|
2106
|
+
export interface ProjectEnvironmentTypeUpdate {
|
|
2107
|
+
creatorRoleAssignment?: ProjectEnvironmentTypeUpdatePropertiesCreatorRoleAssignment;
|
|
2108
|
+
deploymentTargetId?: string;
|
|
2109
|
+
displayName?: string;
|
|
2110
|
+
identity?: ManagedServiceIdentity;
|
|
2111
|
+
status?: EnvironmentTypeEnableStatus;
|
|
2112
|
+
tags?: {
|
|
2113
|
+
[propertyName: string]: string;
|
|
2114
|
+
};
|
|
2115
|
+
userRoleAssignments?: {
|
|
2116
|
+
[propertyName: string]: UserRoleAssignmentValue;
|
|
2117
|
+
};
|
|
2118
|
+
}
|
|
2119
|
+
|
|
2120
|
+
// @public
|
|
2121
|
+
export interface ProjectEnvironmentTypeUpdateProperties {
|
|
2122
|
+
creatorRoleAssignment?: ProjectEnvironmentTypeUpdatePropertiesCreatorRoleAssignment;
|
|
2123
|
+
deploymentTargetId?: string;
|
|
2124
|
+
displayName?: string;
|
|
2125
|
+
status?: EnvironmentTypeEnableStatus;
|
|
2126
|
+
userRoleAssignments?: {
|
|
2127
|
+
[propertyName: string]: UserRoleAssignmentValue;
|
|
2128
|
+
};
|
|
2129
|
+
}
|
|
2130
|
+
|
|
2131
|
+
// @public
|
|
2132
|
+
export interface ProjectEnvironmentTypeUpdatePropertiesCreatorRoleAssignment {
|
|
2133
|
+
roles?: {
|
|
2134
|
+
[propertyName: string]: EnvironmentRole;
|
|
2135
|
+
};
|
|
2136
|
+
}
|
|
2137
|
+
|
|
2138
|
+
// @public
|
|
2139
|
+
export interface ProjectListResult {
|
|
2140
|
+
readonly nextLink?: string;
|
|
2141
|
+
readonly value?: Project[];
|
|
2142
|
+
}
|
|
2143
|
+
|
|
2144
|
+
// @public
|
|
2145
|
+
export interface ProjectProperties extends ProjectUpdateProperties {
|
|
2146
|
+
readonly devCenterUri?: string;
|
|
2147
|
+
readonly provisioningState?: ProvisioningState;
|
|
2148
|
+
}
|
|
2149
|
+
|
|
2150
|
+
// @public
|
|
2151
|
+
export interface Projects {
|
|
2152
|
+
beginCreateOrUpdate(resourceGroupName: string, projectName: string, body: Project, options?: ProjectsCreateOrUpdateOptionalParams): Promise<SimplePollerLike<OperationState<ProjectsCreateOrUpdateResponse>, ProjectsCreateOrUpdateResponse>>;
|
|
2153
|
+
beginCreateOrUpdateAndWait(resourceGroupName: string, projectName: string, body: Project, options?: ProjectsCreateOrUpdateOptionalParams): Promise<ProjectsCreateOrUpdateResponse>;
|
|
2154
|
+
beginDelete(resourceGroupName: string, projectName: string, options?: ProjectsDeleteOptionalParams): Promise<SimplePollerLike<OperationState<ProjectsDeleteResponse>, ProjectsDeleteResponse>>;
|
|
2155
|
+
beginDeleteAndWait(resourceGroupName: string, projectName: string, options?: ProjectsDeleteOptionalParams): Promise<ProjectsDeleteResponse>;
|
|
2156
|
+
beginUpdate(resourceGroupName: string, projectName: string, body: ProjectUpdate, options?: ProjectsUpdateOptionalParams): Promise<SimplePollerLike<OperationState<ProjectsUpdateResponse>, ProjectsUpdateResponse>>;
|
|
2157
|
+
beginUpdateAndWait(resourceGroupName: string, projectName: string, body: ProjectUpdate, options?: ProjectsUpdateOptionalParams): Promise<ProjectsUpdateResponse>;
|
|
2158
|
+
get(resourceGroupName: string, projectName: string, options?: ProjectsGetOptionalParams): Promise<ProjectsGetResponse>;
|
|
2159
|
+
listByResourceGroup(resourceGroupName: string, options?: ProjectsListByResourceGroupOptionalParams): PagedAsyncIterableIterator<Project>;
|
|
2160
|
+
listBySubscription(options?: ProjectsListBySubscriptionOptionalParams): PagedAsyncIterableIterator<Project>;
|
|
2161
|
+
}
|
|
2162
|
+
|
|
2163
|
+
// @public
|
|
2164
|
+
export interface ProjectsCreateOrUpdateOptionalParams extends coreClient.OperationOptions {
|
|
2165
|
+
resumeFrom?: string;
|
|
2166
|
+
updateIntervalInMs?: number;
|
|
2167
|
+
}
|
|
2168
|
+
|
|
2169
|
+
// @public
|
|
2170
|
+
export type ProjectsCreateOrUpdateResponse = Project;
|
|
2171
|
+
|
|
2172
|
+
// @public
|
|
2173
|
+
export interface ProjectsDeleteHeaders {
|
|
2174
|
+
// (undocumented)
|
|
2175
|
+
location?: string;
|
|
2176
|
+
}
|
|
2177
|
+
|
|
2178
|
+
// @public
|
|
2179
|
+
export interface ProjectsDeleteOptionalParams extends coreClient.OperationOptions {
|
|
2180
|
+
resumeFrom?: string;
|
|
2181
|
+
updateIntervalInMs?: number;
|
|
2182
|
+
}
|
|
2183
|
+
|
|
2184
|
+
// @public
|
|
2185
|
+
export type ProjectsDeleteResponse = ProjectsDeleteHeaders;
|
|
2186
|
+
|
|
2187
|
+
// @public
|
|
2188
|
+
export interface ProjectsGetOptionalParams extends coreClient.OperationOptions {
|
|
2189
|
+
}
|
|
2190
|
+
|
|
2191
|
+
// @public
|
|
2192
|
+
export type ProjectsGetResponse = Project;
|
|
2193
|
+
|
|
2194
|
+
// @public
|
|
2195
|
+
export interface ProjectsListByResourceGroupNextOptionalParams extends coreClient.OperationOptions {
|
|
2196
|
+
}
|
|
2197
|
+
|
|
2198
|
+
// @public
|
|
2199
|
+
export type ProjectsListByResourceGroupNextResponse = ProjectListResult;
|
|
2200
|
+
|
|
2201
|
+
// @public
|
|
2202
|
+
export interface ProjectsListByResourceGroupOptionalParams extends coreClient.OperationOptions {
|
|
2203
|
+
top?: number;
|
|
2204
|
+
}
|
|
2205
|
+
|
|
2206
|
+
// @public
|
|
2207
|
+
export type ProjectsListByResourceGroupResponse = ProjectListResult;
|
|
2208
|
+
|
|
2209
|
+
// @public
|
|
2210
|
+
export interface ProjectsListBySubscriptionNextOptionalParams extends coreClient.OperationOptions {
|
|
2211
|
+
}
|
|
2212
|
+
|
|
2213
|
+
// @public
|
|
2214
|
+
export type ProjectsListBySubscriptionNextResponse = ProjectListResult;
|
|
2215
|
+
|
|
2216
|
+
// @public
|
|
2217
|
+
export interface ProjectsListBySubscriptionOptionalParams extends coreClient.OperationOptions {
|
|
2218
|
+
top?: number;
|
|
2219
|
+
}
|
|
2220
|
+
|
|
2221
|
+
// @public
|
|
2222
|
+
export type ProjectsListBySubscriptionResponse = ProjectListResult;
|
|
2223
|
+
|
|
2224
|
+
// @public
|
|
2225
|
+
export interface ProjectsUpdateHeaders {
|
|
2226
|
+
// (undocumented)
|
|
2227
|
+
location?: string;
|
|
2228
|
+
}
|
|
2229
|
+
|
|
2230
|
+
// @public
|
|
2231
|
+
export interface ProjectsUpdateOptionalParams extends coreClient.OperationOptions {
|
|
2232
|
+
resumeFrom?: string;
|
|
2233
|
+
updateIntervalInMs?: number;
|
|
2234
|
+
}
|
|
2235
|
+
|
|
2236
|
+
// @public
|
|
2237
|
+
export type ProjectsUpdateResponse = Project;
|
|
2238
|
+
|
|
2239
|
+
// @public
|
|
2240
|
+
export interface ProjectUpdate extends TrackedResourceUpdate {
|
|
2241
|
+
catalogSettings?: ProjectCatalogSettings;
|
|
2242
|
+
description?: string;
|
|
2243
|
+
devCenterId?: string;
|
|
2244
|
+
displayName?: string;
|
|
2245
|
+
identity?: ManagedServiceIdentity;
|
|
2246
|
+
maxDevBoxesPerUser?: number;
|
|
2247
|
+
}
|
|
2248
|
+
|
|
2249
|
+
// @public
|
|
2250
|
+
export interface ProjectUpdateProperties {
|
|
2251
|
+
catalogSettings?: ProjectCatalogSettings;
|
|
2252
|
+
description?: string;
|
|
2253
|
+
devCenterId?: string;
|
|
2254
|
+
displayName?: string;
|
|
2255
|
+
maxDevBoxesPerUser?: number;
|
|
2256
|
+
}
|
|
2257
|
+
|
|
2258
|
+
// @public
|
|
2259
|
+
export type ProvisioningState = string;
|
|
2260
|
+
|
|
2261
|
+
// @public
|
|
2262
|
+
export interface ProxyResource extends Resource {
|
|
2263
|
+
}
|
|
2264
|
+
|
|
2265
|
+
// @public
|
|
2266
|
+
export interface RecommendedMachineConfiguration {
|
|
2267
|
+
readonly memory?: ResourceRange;
|
|
2268
|
+
readonly vCPUs?: ResourceRange;
|
|
2269
|
+
}
|
|
2270
|
+
|
|
2271
|
+
// @public
|
|
2272
|
+
export interface Resource {
|
|
2273
|
+
readonly id?: string;
|
|
2274
|
+
readonly name?: string;
|
|
2275
|
+
readonly systemData?: SystemData;
|
|
2276
|
+
readonly type?: string;
|
|
2277
|
+
}
|
|
2278
|
+
|
|
2279
|
+
// @public
|
|
2280
|
+
export interface ResourceRange {
|
|
2281
|
+
readonly max?: number;
|
|
2282
|
+
readonly min?: number;
|
|
2283
|
+
}
|
|
2284
|
+
|
|
2285
|
+
// @public
|
|
2286
|
+
export interface Schedule extends Resource {
|
|
2287
|
+
frequency?: ScheduledFrequency;
|
|
2288
|
+
location?: string;
|
|
2289
|
+
readonly provisioningState?: ProvisioningState;
|
|
2290
|
+
state?: ScheduleEnableStatus;
|
|
2291
|
+
tags?: {
|
|
2292
|
+
[propertyName: string]: string;
|
|
2293
|
+
};
|
|
2294
|
+
time?: string;
|
|
2295
|
+
timeZone?: string;
|
|
2296
|
+
typePropertiesType?: ScheduledType;
|
|
2297
|
+
}
|
|
2298
|
+
|
|
2299
|
+
// @public
|
|
2300
|
+
export type ScheduledFrequency = string;
|
|
2301
|
+
|
|
2302
|
+
// @public
|
|
2303
|
+
export type ScheduledType = string;
|
|
2304
|
+
|
|
2305
|
+
// @public
|
|
2306
|
+
export type ScheduleEnableStatus = string;
|
|
2307
|
+
|
|
2308
|
+
// @public
|
|
2309
|
+
export interface ScheduleListResult {
|
|
2310
|
+
readonly nextLink?: string;
|
|
2311
|
+
readonly value?: Schedule[];
|
|
2312
|
+
}
|
|
2313
|
+
|
|
2314
|
+
// @public
|
|
2315
|
+
export interface ScheduleProperties extends ScheduleUpdateProperties {
|
|
2316
|
+
readonly provisioningState?: ProvisioningState;
|
|
2317
|
+
}
|
|
2318
|
+
|
|
2319
|
+
// @public
|
|
2320
|
+
export interface Schedules {
|
|
2321
|
+
beginCreateOrUpdate(resourceGroupName: string, projectName: string, poolName: string, scheduleName: string, body: Schedule, options?: SchedulesCreateOrUpdateOptionalParams): Promise<SimplePollerLike<OperationState<SchedulesCreateOrUpdateResponse>, SchedulesCreateOrUpdateResponse>>;
|
|
2322
|
+
beginCreateOrUpdateAndWait(resourceGroupName: string, projectName: string, poolName: string, scheduleName: string, body: Schedule, options?: SchedulesCreateOrUpdateOptionalParams): Promise<SchedulesCreateOrUpdateResponse>;
|
|
2323
|
+
beginDelete(resourceGroupName: string, projectName: string, poolName: string, scheduleName: string, options?: SchedulesDeleteOptionalParams): Promise<SimplePollerLike<OperationState<SchedulesDeleteResponse>, SchedulesDeleteResponse>>;
|
|
2324
|
+
beginDeleteAndWait(resourceGroupName: string, projectName: string, poolName: string, scheduleName: string, options?: SchedulesDeleteOptionalParams): Promise<SchedulesDeleteResponse>;
|
|
2325
|
+
beginUpdate(resourceGroupName: string, projectName: string, poolName: string, scheduleName: string, body: ScheduleUpdate, options?: SchedulesUpdateOptionalParams): Promise<SimplePollerLike<OperationState<SchedulesUpdateResponse>, SchedulesUpdateResponse>>;
|
|
2326
|
+
beginUpdateAndWait(resourceGroupName: string, projectName: string, poolName: string, scheduleName: string, body: ScheduleUpdate, options?: SchedulesUpdateOptionalParams): Promise<SchedulesUpdateResponse>;
|
|
2327
|
+
get(resourceGroupName: string, projectName: string, poolName: string, scheduleName: string, options?: SchedulesGetOptionalParams): Promise<SchedulesGetResponse>;
|
|
2328
|
+
listByPool(resourceGroupName: string, projectName: string, poolName: string, options?: SchedulesListByPoolOptionalParams): PagedAsyncIterableIterator<Schedule>;
|
|
2329
|
+
}
|
|
2330
|
+
|
|
2331
|
+
// @public
|
|
2332
|
+
export interface SchedulesCreateOrUpdateOptionalParams extends coreClient.OperationOptions {
|
|
2333
|
+
resumeFrom?: string;
|
|
2334
|
+
top?: number;
|
|
2335
|
+
updateIntervalInMs?: number;
|
|
2336
|
+
}
|
|
2337
|
+
|
|
2338
|
+
// @public
|
|
2339
|
+
export type SchedulesCreateOrUpdateResponse = Schedule;
|
|
2340
|
+
|
|
2341
|
+
// @public
|
|
2342
|
+
export interface SchedulesDeleteHeaders {
|
|
2343
|
+
// (undocumented)
|
|
2344
|
+
location?: string;
|
|
2345
|
+
}
|
|
2346
|
+
|
|
2347
|
+
// @public
|
|
2348
|
+
export interface SchedulesDeleteOptionalParams extends coreClient.OperationOptions {
|
|
2349
|
+
resumeFrom?: string;
|
|
2350
|
+
top?: number;
|
|
2351
|
+
updateIntervalInMs?: number;
|
|
2352
|
+
}
|
|
2353
|
+
|
|
2354
|
+
// @public
|
|
2355
|
+
export type SchedulesDeleteResponse = SchedulesDeleteHeaders;
|
|
2356
|
+
|
|
2357
|
+
// @public
|
|
2358
|
+
export interface SchedulesGetOptionalParams extends coreClient.OperationOptions {
|
|
2359
|
+
top?: number;
|
|
2360
|
+
}
|
|
2361
|
+
|
|
2362
|
+
// @public
|
|
2363
|
+
export type SchedulesGetResponse = Schedule;
|
|
2364
|
+
|
|
2365
|
+
// @public
|
|
2366
|
+
export interface SchedulesListByPoolNextOptionalParams extends coreClient.OperationOptions {
|
|
2367
|
+
}
|
|
2368
|
+
|
|
2369
|
+
// @public
|
|
2370
|
+
export type SchedulesListByPoolNextResponse = ScheduleListResult;
|
|
2371
|
+
|
|
2372
|
+
// @public
|
|
2373
|
+
export interface SchedulesListByPoolOptionalParams extends coreClient.OperationOptions {
|
|
2374
|
+
top?: number;
|
|
2375
|
+
}
|
|
2376
|
+
|
|
2377
|
+
// @public
|
|
2378
|
+
export type SchedulesListByPoolResponse = ScheduleListResult;
|
|
2379
|
+
|
|
2380
|
+
// @public
|
|
2381
|
+
export interface SchedulesUpdateHeaders {
|
|
2382
|
+
// (undocumented)
|
|
2383
|
+
location?: string;
|
|
2384
|
+
}
|
|
2385
|
+
|
|
2386
|
+
// @public
|
|
2387
|
+
export interface SchedulesUpdateOptionalParams extends coreClient.OperationOptions {
|
|
2388
|
+
resumeFrom?: string;
|
|
2389
|
+
top?: number;
|
|
2390
|
+
updateIntervalInMs?: number;
|
|
2391
|
+
}
|
|
2392
|
+
|
|
2393
|
+
// @public
|
|
2394
|
+
export type SchedulesUpdateResponse = Schedule;
|
|
2395
|
+
|
|
2396
|
+
// @public
|
|
2397
|
+
export interface ScheduleUpdate {
|
|
2398
|
+
frequency?: ScheduledFrequency;
|
|
2399
|
+
location?: string;
|
|
2400
|
+
state?: ScheduleEnableStatus;
|
|
2401
|
+
tags?: {
|
|
2402
|
+
[propertyName: string]: string;
|
|
2403
|
+
};
|
|
2404
|
+
time?: string;
|
|
2405
|
+
timeZone?: string;
|
|
2406
|
+
type?: ScheduledType;
|
|
2407
|
+
}
|
|
2408
|
+
|
|
2409
|
+
// @public
|
|
2410
|
+
export interface ScheduleUpdateProperties extends TrackedResourceUpdate {
|
|
2411
|
+
frequency?: ScheduledFrequency;
|
|
2412
|
+
state?: ScheduleEnableStatus;
|
|
2413
|
+
time?: string;
|
|
2414
|
+
timeZone?: string;
|
|
2415
|
+
type?: ScheduledType;
|
|
2416
|
+
}
|
|
2417
|
+
|
|
2418
|
+
// @public
|
|
2419
|
+
export type SingleSignOnStatus = string;
|
|
2420
|
+
|
|
2421
|
+
// @public
|
|
2422
|
+
export interface Sku {
|
|
2423
|
+
capacity?: number;
|
|
2424
|
+
family?: string;
|
|
2425
|
+
name: string;
|
|
2426
|
+
size?: string;
|
|
2427
|
+
tier?: SkuTier;
|
|
2428
|
+
}
|
|
2429
|
+
|
|
2430
|
+
// @public
|
|
2431
|
+
export interface SkuListResult {
|
|
2432
|
+
readonly nextLink?: string;
|
|
2433
|
+
readonly value?: DevCenterSku[];
|
|
2434
|
+
}
|
|
2435
|
+
|
|
2436
|
+
// @public
|
|
2437
|
+
export interface Skus {
|
|
2438
|
+
listBySubscription(options?: SkusListBySubscriptionOptionalParams): PagedAsyncIterableIterator<DevCenterSku>;
|
|
2439
|
+
}
|
|
2440
|
+
|
|
2441
|
+
// @public
|
|
2442
|
+
export interface SkusListBySubscriptionNextOptionalParams extends coreClient.OperationOptions {
|
|
2443
|
+
}
|
|
2444
|
+
|
|
2445
|
+
// @public
|
|
2446
|
+
export type SkusListBySubscriptionNextResponse = SkuListResult;
|
|
2447
|
+
|
|
2448
|
+
// @public
|
|
2449
|
+
export interface SkusListBySubscriptionOptionalParams extends coreClient.OperationOptions {
|
|
2450
|
+
top?: number;
|
|
2451
|
+
}
|
|
2452
|
+
|
|
2453
|
+
// @public
|
|
2454
|
+
export type SkusListBySubscriptionResponse = SkuListResult;
|
|
2455
|
+
|
|
2456
|
+
// @public
|
|
2457
|
+
export type SkuTier = "Free" | "Basic" | "Standard" | "Premium";
|
|
2458
|
+
|
|
2459
|
+
// @public
|
|
2460
|
+
export interface StopOnDisconnectConfiguration {
|
|
2461
|
+
gracePeriodMinutes?: number;
|
|
2462
|
+
status?: StopOnDisconnectEnableStatus;
|
|
2463
|
+
}
|
|
2464
|
+
|
|
2465
|
+
// @public
|
|
2466
|
+
export type StopOnDisconnectEnableStatus = string;
|
|
2467
|
+
|
|
2468
|
+
// @public
|
|
2469
|
+
export interface SyncErrorDetails {
|
|
2470
|
+
readonly conflicts?: CatalogConflictError[];
|
|
2471
|
+
readonly errors?: CatalogSyncError[];
|
|
2472
|
+
readonly operationError?: CatalogErrorDetails;
|
|
2473
|
+
}
|
|
2474
|
+
|
|
2475
|
+
// @public
|
|
2476
|
+
export interface SyncStats {
|
|
2477
|
+
readonly added?: number;
|
|
2478
|
+
readonly removed?: number;
|
|
2479
|
+
syncedCatalogItemTypes?: CatalogItemType[];
|
|
2480
|
+
readonly synchronizationErrors?: number;
|
|
2481
|
+
readonly unchanged?: number;
|
|
2482
|
+
readonly updated?: number;
|
|
2483
|
+
readonly validationErrors?: number;
|
|
2484
|
+
}
|
|
2485
|
+
|
|
2486
|
+
// @public
|
|
2487
|
+
export interface SystemData {
|
|
2488
|
+
createdAt?: Date;
|
|
2489
|
+
createdBy?: string;
|
|
2490
|
+
createdByType?: CreatedByType;
|
|
2491
|
+
lastModifiedAt?: Date;
|
|
2492
|
+
lastModifiedBy?: string;
|
|
2493
|
+
lastModifiedByType?: CreatedByType;
|
|
2494
|
+
}
|
|
2495
|
+
|
|
2496
|
+
// @public
|
|
2497
|
+
export interface TrackedResource extends Resource {
|
|
2498
|
+
location: string;
|
|
2499
|
+
tags?: {
|
|
2500
|
+
[propertyName: string]: string;
|
|
2501
|
+
};
|
|
2502
|
+
}
|
|
2503
|
+
|
|
2504
|
+
// @public
|
|
2505
|
+
export interface TrackedResourceUpdate {
|
|
2506
|
+
location?: string;
|
|
2507
|
+
tags?: {
|
|
2508
|
+
[propertyName: string]: string;
|
|
2509
|
+
};
|
|
2510
|
+
}
|
|
2511
|
+
|
|
2512
|
+
// @public
|
|
2513
|
+
export interface Usage {
|
|
2514
|
+
currentValue?: number;
|
|
2515
|
+
id?: string;
|
|
2516
|
+
limit?: number;
|
|
2517
|
+
name?: UsageName;
|
|
2518
|
+
unit?: UsageUnit;
|
|
2519
|
+
}
|
|
2520
|
+
|
|
2521
|
+
// @public
|
|
2522
|
+
export interface UsageName {
|
|
2523
|
+
localizedValue?: string;
|
|
2524
|
+
value?: string;
|
|
2525
|
+
}
|
|
2526
|
+
|
|
2527
|
+
// @public
|
|
2528
|
+
export interface Usages {
|
|
2529
|
+
listByLocation(location: string, options?: UsagesListByLocationOptionalParams): PagedAsyncIterableIterator<Usage>;
|
|
2530
|
+
}
|
|
2531
|
+
|
|
2532
|
+
// @public
|
|
2533
|
+
export interface UsagesListByLocationNextOptionalParams extends coreClient.OperationOptions {
|
|
2534
|
+
}
|
|
2535
|
+
|
|
2536
|
+
// @public
|
|
2537
|
+
export type UsagesListByLocationNextResponse = ListUsagesResult;
|
|
2538
|
+
|
|
2539
|
+
// @public
|
|
2540
|
+
export interface UsagesListByLocationOptionalParams extends coreClient.OperationOptions {
|
|
2541
|
+
}
|
|
2542
|
+
|
|
2543
|
+
// @public
|
|
2544
|
+
export type UsagesListByLocationResponse = ListUsagesResult;
|
|
2545
|
+
|
|
2546
|
+
// @public
|
|
2547
|
+
export type UsageUnit = string;
|
|
2548
|
+
|
|
2549
|
+
// @public
|
|
2550
|
+
export interface UserAssignedIdentity {
|
|
2551
|
+
readonly clientId?: string;
|
|
2552
|
+
readonly principalId?: string;
|
|
2553
|
+
}
|
|
2554
|
+
|
|
2555
|
+
// @public
|
|
2556
|
+
export interface UserRoleAssignmentValue {
|
|
2557
|
+
roles?: {
|
|
2558
|
+
[propertyName: string]: EnvironmentRole;
|
|
2559
|
+
};
|
|
2560
|
+
}
|
|
2561
|
+
|
|
2562
|
+
// @public
|
|
2563
|
+
export type VirtualNetworkType = string;
|
|
2564
|
+
|
|
2565
|
+
// (No @packageDocumentation comment for this package)
|
|
2566
|
+
|
|
2567
|
+
```
|