@azure-rest/developer-devcenter 1.0.0-alpha.20221018.2

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.
@@ -0,0 +1,1766 @@
1
+ ## API Report File for "@azure-rest/developer-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 { Client } from '@azure-rest/core-client';
8
+ import { ClientOptions } from '@azure-rest/core-client';
9
+ import { HttpResponse } from '@azure-rest/core-client';
10
+ import { LroEngineOptions } from '@azure/core-lro';
11
+ import { PagedAsyncIterableIterator } from '@azure/core-paging';
12
+ import { PathUncheckedResponse } from '@azure-rest/core-client';
13
+ import { PollerLike } from '@azure/core-lro';
14
+ import { PollOperationState } from '@azure/core-lro';
15
+ import { RawHttpHeaders } from '@azure/core-rest-pipeline';
16
+ import { RequestParameters } from '@azure-rest/core-client';
17
+ import { StreamableMethod } from '@azure-rest/core-client';
18
+ import { TokenCredential } from '@azure/core-auth';
19
+
20
+ // @public
21
+ export interface ActionRequest {
22
+ actionId: string;
23
+ parameters?: Record<string, unknown>;
24
+ }
25
+
26
+ // @public
27
+ export interface ArtifactListResultOutput {
28
+ nextLink?: string;
29
+ value: Array<ArtifactOutput>;
30
+ }
31
+
32
+ // @public
33
+ export interface ArtifactOutput {
34
+ createdTime?: string;
35
+ downloadUri?: string;
36
+ fileSize?: number;
37
+ id?: string;
38
+ isDirectory?: boolean;
39
+ lastModifiedTime?: string;
40
+ name?: string;
41
+ }
42
+
43
+ // @public (undocumented)
44
+ export type AzureDevCenterClient = Client & {
45
+ path: Routes;
46
+ };
47
+
48
+ // @public
49
+ export interface CatalogItemActionOutput {
50
+ description?: string;
51
+ id?: string;
52
+ name?: string;
53
+ parameters?: Array<CatalogItemParameterOutput>;
54
+ parametersSchema?: string;
55
+ runner?: string;
56
+ type?: "Custom" | "Deploy" | "Delete";
57
+ typeName?: string;
58
+ }
59
+
60
+ // @public
61
+ export interface CatalogItemListResultOutput {
62
+ nextLink?: string;
63
+ value: Array<CatalogItemOutput>;
64
+ }
65
+
66
+ // @public
67
+ export interface CatalogItemOutput {
68
+ catalogName?: string;
69
+ id?: string;
70
+ name?: string;
71
+ }
72
+
73
+ // @public
74
+ export interface CatalogItemParameterOutput {
75
+ allowed?: Array<Record<string, unknown>>;
76
+ default?: Record<string, unknown>;
77
+ description?: string;
78
+ id?: string;
79
+ name?: string;
80
+ readOnly?: boolean;
81
+ required?: boolean;
82
+ type?: "array" | "boolean" | "integer" | "null" | "number" | "object" | "string";
83
+ }
84
+
85
+ // @public
86
+ export interface CatalogItemVersionListResultOutput {
87
+ nextLink?: string;
88
+ value: Array<CatalogItemVersionOutput>;
89
+ }
90
+
91
+ // @public
92
+ export interface CatalogItemVersionOutput {
93
+ actions?: Array<CatalogItemActionOutput>;
94
+ catalogItemId?: string;
95
+ catalogItemName?: string;
96
+ catalogName?: string;
97
+ description?: string;
98
+ eligibleForLatestVersion?: boolean;
99
+ parameters?: Array<CatalogItemParameterOutput>;
100
+ parametersSchema?: string;
101
+ runner?: string;
102
+ status?: "Enabled" | "Disabled";
103
+ summary?: string;
104
+ templatePath?: string;
105
+ version?: string;
106
+ }
107
+
108
+ // @public
109
+ export interface CloudErrorBodyOutput {
110
+ code: string;
111
+ details?: Array<CloudErrorBodyOutput>;
112
+ message: string;
113
+ target?: string;
114
+ }
115
+
116
+ // @public
117
+ export interface CloudErrorOutput {
118
+ error: CloudErrorBodyOutput;
119
+ }
120
+
121
+ // @public
122
+ function createClient(tenantId: string, devCenter: string, credentials: TokenCredential, devCenterDnsSuffix?: string, options?: ClientOptions): AzureDevCenterClient;
123
+ export default createClient;
124
+
125
+ // @public
126
+ export interface DevBox {
127
+ actionState?: string;
128
+ createdTime?: Date | string;
129
+ errorDetails?: ProvisioningError;
130
+ hardwareProfile?: HardwareProfile;
131
+ imageReference?: ImageReference;
132
+ localAdministrator?: "Enabled" | "Disabled";
133
+ location?: string;
134
+ name?: string;
135
+ osType?: "Windows";
136
+ poolName: string;
137
+ powerState?: "Unknown" | "Deallocated" | "PoweredOff" | "Running" | "Hibernated";
138
+ projectName?: string;
139
+ provisioningState?: string;
140
+ storageProfile?: StorageProfile;
141
+ uniqueId?: string;
142
+ user?: string;
143
+ }
144
+
145
+ // @public
146
+ export interface DevBoxesCreateDevBox200Response extends HttpResponse {
147
+ // (undocumented)
148
+ body: DevBoxOutput;
149
+ // (undocumented)
150
+ status: "200";
151
+ }
152
+
153
+ // @public
154
+ export interface DevBoxesCreateDevBox201Response extends HttpResponse {
155
+ // (undocumented)
156
+ body: DevBoxOutput;
157
+ // (undocumented)
158
+ status: "201";
159
+ }
160
+
161
+ // @public (undocumented)
162
+ export interface DevBoxesCreateDevBoxBodyParam {
163
+ body: DevBox;
164
+ }
165
+
166
+ // @public (undocumented)
167
+ export interface DevBoxesCreateDevBoxDefaultHeaders {
168
+ "x-ms-error-code"?: string;
169
+ }
170
+
171
+ // @public
172
+ export interface DevBoxesCreateDevBoxDefaultResponse extends HttpResponse {
173
+ // (undocumented)
174
+ body: CloudErrorOutput;
175
+ // (undocumented)
176
+ headers: RawHttpHeaders & DevBoxesCreateDevBoxDefaultHeaders;
177
+ // (undocumented)
178
+ status: string;
179
+ }
180
+
181
+ // @public (undocumented)
182
+ export interface DevBoxesCreateDevBoxMediaTypesParam {
183
+ contentType?: "application/json";
184
+ }
185
+
186
+ // @public (undocumented)
187
+ export type DevBoxesCreateDevBoxParameters = DevBoxesCreateDevBoxMediaTypesParam & DevBoxesCreateDevBoxBodyParam & RequestParameters;
188
+
189
+ // @public
190
+ export interface DevBoxesDeleteDevBox200Response extends HttpResponse {
191
+ // (undocumented)
192
+ body: DevBoxOutput;
193
+ // (undocumented)
194
+ status: "200";
195
+ }
196
+
197
+ // @public (undocumented)
198
+ export interface DevBoxesDeleteDevBox202Headers {
199
+ "operation-location"?: string;
200
+ }
201
+
202
+ // @public
203
+ export interface DevBoxesDeleteDevBox202Response extends HttpResponse {
204
+ // (undocumented)
205
+ body: Record<string, unknown>;
206
+ // (undocumented)
207
+ headers: RawHttpHeaders & DevBoxesDeleteDevBox202Headers;
208
+ // (undocumented)
209
+ status: "202";
210
+ }
211
+
212
+ // @public
213
+ export interface DevBoxesDeleteDevBox204Response extends HttpResponse {
214
+ // (undocumented)
215
+ body: Record<string, unknown>;
216
+ // (undocumented)
217
+ status: "204";
218
+ }
219
+
220
+ // @public (undocumented)
221
+ export interface DevBoxesDeleteDevBoxDefaultHeaders {
222
+ "x-ms-error-code"?: string;
223
+ }
224
+
225
+ // @public
226
+ export interface DevBoxesDeleteDevBoxDefaultResponse extends HttpResponse {
227
+ // (undocumented)
228
+ body: CloudErrorOutput;
229
+ // (undocumented)
230
+ headers: RawHttpHeaders & DevBoxesDeleteDevBoxDefaultHeaders;
231
+ // (undocumented)
232
+ status: string;
233
+ }
234
+
235
+ // @public (undocumented)
236
+ export type DevBoxesDeleteDevBoxParameters = RequestParameters;
237
+
238
+ // @public (undocumented)
239
+ export interface DevBoxesGetDevBoxByUser {
240
+ delete(options?: DevBoxesDeleteDevBoxParameters): StreamableMethod<DevBoxesDeleteDevBox200Response | DevBoxesDeleteDevBox202Response | DevBoxesDeleteDevBox204Response | DevBoxesDeleteDevBoxDefaultResponse>;
241
+ get(options?: DevBoxesGetDevBoxByUserParameters): StreamableMethod<DevBoxesGetDevBoxByUser200Response | DevBoxesGetDevBoxByUserDefaultResponse>;
242
+ put(options: DevBoxesCreateDevBoxParameters): StreamableMethod<DevBoxesCreateDevBox200Response | DevBoxesCreateDevBox201Response | DevBoxesCreateDevBoxDefaultResponse>;
243
+ }
244
+
245
+ // @public
246
+ export interface DevBoxesGetDevBoxByUser200Response extends HttpResponse {
247
+ // (undocumented)
248
+ body: DevBoxOutput;
249
+ // (undocumented)
250
+ status: "200";
251
+ }
252
+
253
+ // @public (undocumented)
254
+ export interface DevBoxesGetDevBoxByUserDefaultHeaders {
255
+ "x-ms-error-code"?: string;
256
+ }
257
+
258
+ // @public
259
+ export interface DevBoxesGetDevBoxByUserDefaultResponse extends HttpResponse {
260
+ // (undocumented)
261
+ body: CloudErrorOutput;
262
+ // (undocumented)
263
+ headers: RawHttpHeaders & DevBoxesGetDevBoxByUserDefaultHeaders;
264
+ // (undocumented)
265
+ status: string;
266
+ }
267
+
268
+ // @public (undocumented)
269
+ export type DevBoxesGetDevBoxByUserParameters = RequestParameters;
270
+
271
+ // @public (undocumented)
272
+ export interface DevBoxesGetPool {
273
+ get(options?: DevBoxesGetPoolParameters): StreamableMethod<DevBoxesGetPool200Response | DevBoxesGetPoolDefaultResponse>;
274
+ }
275
+
276
+ // @public
277
+ export interface DevBoxesGetPool200Response extends HttpResponse {
278
+ // (undocumented)
279
+ body: PoolOutput;
280
+ // (undocumented)
281
+ status: "200";
282
+ }
283
+
284
+ // @public (undocumented)
285
+ export interface DevBoxesGetPoolDefaultHeaders {
286
+ "x-ms-error-code"?: string;
287
+ }
288
+
289
+ // @public
290
+ export interface DevBoxesGetPoolDefaultResponse extends HttpResponse {
291
+ // (undocumented)
292
+ body: CloudErrorOutput;
293
+ // (undocumented)
294
+ headers: RawHttpHeaders & DevBoxesGetPoolDefaultHeaders;
295
+ // (undocumented)
296
+ status: string;
297
+ }
298
+
299
+ // @public (undocumented)
300
+ export type DevBoxesGetPoolParameters = RequestParameters;
301
+
302
+ // @public (undocumented)
303
+ export interface DevBoxesGetRemoteConnection {
304
+ get(options?: DevBoxesGetRemoteConnectionParameters): StreamableMethod<DevBoxesGetRemoteConnection200Response | DevBoxesGetRemoteConnectionDefaultResponse>;
305
+ }
306
+
307
+ // @public
308
+ export interface DevBoxesGetRemoteConnection200Response extends HttpResponse {
309
+ // (undocumented)
310
+ body: RemoteConnectionOutput;
311
+ // (undocumented)
312
+ status: "200";
313
+ }
314
+
315
+ // @public (undocumented)
316
+ export interface DevBoxesGetRemoteConnectionDefaultHeaders {
317
+ "x-ms-error-code"?: string;
318
+ }
319
+
320
+ // @public
321
+ export interface DevBoxesGetRemoteConnectionDefaultResponse extends HttpResponse {
322
+ // (undocumented)
323
+ body: CloudErrorOutput;
324
+ // (undocumented)
325
+ headers: RawHttpHeaders & DevBoxesGetRemoteConnectionDefaultHeaders;
326
+ // (undocumented)
327
+ status: string;
328
+ }
329
+
330
+ // @public (undocumented)
331
+ export type DevBoxesGetRemoteConnectionParameters = RequestParameters;
332
+
333
+ // @public (undocumented)
334
+ export interface DevBoxesGetScheduleByPool {
335
+ get(options?: DevBoxesGetScheduleByPoolParameters): StreamableMethod<DevBoxesGetScheduleByPool200Response | DevBoxesGetScheduleByPoolDefaultResponse>;
336
+ }
337
+
338
+ // @public
339
+ export interface DevBoxesGetScheduleByPool200Response extends HttpResponse {
340
+ // (undocumented)
341
+ body: ScheduleOutput;
342
+ // (undocumented)
343
+ status: "200";
344
+ }
345
+
346
+ // @public (undocumented)
347
+ export interface DevBoxesGetScheduleByPoolDefaultHeaders {
348
+ "x-ms-error-code"?: string;
349
+ }
350
+
351
+ // @public
352
+ export interface DevBoxesGetScheduleByPoolDefaultResponse extends HttpResponse {
353
+ // (undocumented)
354
+ body: CloudErrorOutput;
355
+ // (undocumented)
356
+ headers: RawHttpHeaders & DevBoxesGetScheduleByPoolDefaultHeaders;
357
+ // (undocumented)
358
+ status: string;
359
+ }
360
+
361
+ // @public (undocumented)
362
+ export type DevBoxesGetScheduleByPoolParameters = RequestParameters;
363
+
364
+ // @public (undocumented)
365
+ export interface DevBoxesListDevBoxesByUser {
366
+ get(options?: DevBoxesListDevBoxesByUserParameters): StreamableMethod<DevBoxesListDevBoxesByUser200Response | DevBoxesListDevBoxesByUserDefaultResponse>;
367
+ }
368
+
369
+ // @public
370
+ export interface DevBoxesListDevBoxesByUser200Response extends HttpResponse {
371
+ // (undocumented)
372
+ body: DevBoxListResultOutput;
373
+ // (undocumented)
374
+ status: "200";
375
+ }
376
+
377
+ // @public (undocumented)
378
+ export interface DevBoxesListDevBoxesByUserDefaultHeaders {
379
+ "x-ms-error-code"?: string;
380
+ }
381
+
382
+ // @public
383
+ export interface DevBoxesListDevBoxesByUserDefaultResponse extends HttpResponse {
384
+ // (undocumented)
385
+ body: CloudErrorOutput;
386
+ // (undocumented)
387
+ headers: RawHttpHeaders & DevBoxesListDevBoxesByUserDefaultHeaders;
388
+ // (undocumented)
389
+ status: string;
390
+ }
391
+
392
+ // @public (undocumented)
393
+ export type DevBoxesListDevBoxesByUserParameters = DevBoxesListDevBoxesByUserQueryParam & RequestParameters;
394
+
395
+ // @public (undocumented)
396
+ export interface DevBoxesListDevBoxesByUserQueryParam {
397
+ // (undocumented)
398
+ queryParameters?: DevBoxesListDevBoxesByUserQueryParamProperties;
399
+ }
400
+
401
+ // @public (undocumented)
402
+ export interface DevBoxesListDevBoxesByUserQueryParamProperties {
403
+ filter?: string;
404
+ top?: number;
405
+ }
406
+
407
+ // @public (undocumented)
408
+ export interface DevBoxesListPools {
409
+ get(options?: DevBoxesListPoolsParameters): StreamableMethod<DevBoxesListPools200Response | DevBoxesListPoolsDefaultResponse>;
410
+ }
411
+
412
+ // @public
413
+ export interface DevBoxesListPools200Response extends HttpResponse {
414
+ // (undocumented)
415
+ body: PoolListResultOutput;
416
+ // (undocumented)
417
+ status: "200";
418
+ }
419
+
420
+ // @public (undocumented)
421
+ export interface DevBoxesListPoolsDefaultHeaders {
422
+ "x-ms-error-code"?: string;
423
+ }
424
+
425
+ // @public
426
+ export interface DevBoxesListPoolsDefaultResponse extends HttpResponse {
427
+ // (undocumented)
428
+ body: CloudErrorOutput;
429
+ // (undocumented)
430
+ headers: RawHttpHeaders & DevBoxesListPoolsDefaultHeaders;
431
+ // (undocumented)
432
+ status: string;
433
+ }
434
+
435
+ // @public (undocumented)
436
+ export type DevBoxesListPoolsParameters = DevBoxesListPoolsQueryParam & RequestParameters;
437
+
438
+ // @public (undocumented)
439
+ export interface DevBoxesListPoolsQueryParam {
440
+ // (undocumented)
441
+ queryParameters?: DevBoxesListPoolsQueryParamProperties;
442
+ }
443
+
444
+ // @public (undocumented)
445
+ export interface DevBoxesListPoolsQueryParamProperties {
446
+ filter?: string;
447
+ top?: number;
448
+ }
449
+
450
+ // @public (undocumented)
451
+ export interface DevBoxesListSchedulesByPool {
452
+ get(options?: DevBoxesListSchedulesByPoolParameters): StreamableMethod<DevBoxesListSchedulesByPool200Response | DevBoxesListSchedulesByPoolDefaultResponse>;
453
+ }
454
+
455
+ // @public
456
+ export interface DevBoxesListSchedulesByPool200Response extends HttpResponse {
457
+ // (undocumented)
458
+ body: ScheduleListResultOutput;
459
+ // (undocumented)
460
+ status: "200";
461
+ }
462
+
463
+ // @public (undocumented)
464
+ export interface DevBoxesListSchedulesByPoolDefaultHeaders {
465
+ "x-ms-error-code"?: string;
466
+ }
467
+
468
+ // @public
469
+ export interface DevBoxesListSchedulesByPoolDefaultResponse extends HttpResponse {
470
+ // (undocumented)
471
+ body: CloudErrorOutput;
472
+ // (undocumented)
473
+ headers: RawHttpHeaders & DevBoxesListSchedulesByPoolDefaultHeaders;
474
+ // (undocumented)
475
+ status: string;
476
+ }
477
+
478
+ // @public (undocumented)
479
+ export type DevBoxesListSchedulesByPoolParameters = DevBoxesListSchedulesByPoolQueryParam & RequestParameters;
480
+
481
+ // @public (undocumented)
482
+ export interface DevBoxesListSchedulesByPoolQueryParam {
483
+ // (undocumented)
484
+ queryParameters?: DevBoxesListSchedulesByPoolQueryParamProperties;
485
+ }
486
+
487
+ // @public (undocumented)
488
+ export interface DevBoxesListSchedulesByPoolQueryParamProperties {
489
+ filter?: string;
490
+ top?: number;
491
+ }
492
+
493
+ // @public (undocumented)
494
+ export interface DevBoxesStartDevBox {
495
+ post(options?: DevBoxesStartDevBoxParameters): StreamableMethod<DevBoxesStartDevBox200Response | DevBoxesStartDevBox202Response | DevBoxesStartDevBoxDefaultResponse>;
496
+ }
497
+
498
+ // @public
499
+ export interface DevBoxesStartDevBox200Response extends HttpResponse {
500
+ // (undocumented)
501
+ body: DevBoxOutput;
502
+ // (undocumented)
503
+ status: "200";
504
+ }
505
+
506
+ // @public (undocumented)
507
+ export interface DevBoxesStartDevBox202Headers {
508
+ "operation-location"?: string;
509
+ }
510
+
511
+ // @public
512
+ export interface DevBoxesStartDevBox202Response extends HttpResponse {
513
+ // (undocumented)
514
+ body: Record<string, unknown>;
515
+ // (undocumented)
516
+ headers: RawHttpHeaders & DevBoxesStartDevBox202Headers;
517
+ // (undocumented)
518
+ status: "202";
519
+ }
520
+
521
+ // @public (undocumented)
522
+ export interface DevBoxesStartDevBoxDefaultHeaders {
523
+ "x-ms-error-code"?: string;
524
+ }
525
+
526
+ // @public
527
+ export interface DevBoxesStartDevBoxDefaultResponse extends HttpResponse {
528
+ // (undocumented)
529
+ body: CloudErrorOutput;
530
+ // (undocumented)
531
+ headers: RawHttpHeaders & DevBoxesStartDevBoxDefaultHeaders;
532
+ // (undocumented)
533
+ status: string;
534
+ }
535
+
536
+ // @public (undocumented)
537
+ export type DevBoxesStartDevBoxParameters = RequestParameters;
538
+
539
+ // @public (undocumented)
540
+ export interface DevBoxesStopDevBox {
541
+ post(options?: DevBoxesStopDevBoxParameters): StreamableMethod<DevBoxesStopDevBox200Response | DevBoxesStopDevBox202Response | DevBoxesStopDevBoxDefaultResponse>;
542
+ }
543
+
544
+ // @public
545
+ export interface DevBoxesStopDevBox200Response extends HttpResponse {
546
+ // (undocumented)
547
+ body: DevBoxOutput;
548
+ // (undocumented)
549
+ status: "200";
550
+ }
551
+
552
+ // @public (undocumented)
553
+ export interface DevBoxesStopDevBox202Headers {
554
+ "operation-location"?: string;
555
+ }
556
+
557
+ // @public
558
+ export interface DevBoxesStopDevBox202Response extends HttpResponse {
559
+ // (undocumented)
560
+ body: Record<string, unknown>;
561
+ // (undocumented)
562
+ headers: RawHttpHeaders & DevBoxesStopDevBox202Headers;
563
+ // (undocumented)
564
+ status: "202";
565
+ }
566
+
567
+ // @public (undocumented)
568
+ export interface DevBoxesStopDevBoxDefaultHeaders {
569
+ "x-ms-error-code"?: string;
570
+ }
571
+
572
+ // @public
573
+ export interface DevBoxesStopDevBoxDefaultResponse extends HttpResponse {
574
+ // (undocumented)
575
+ body: CloudErrorOutput;
576
+ // (undocumented)
577
+ headers: RawHttpHeaders & DevBoxesStopDevBoxDefaultHeaders;
578
+ // (undocumented)
579
+ status: string;
580
+ }
581
+
582
+ // @public (undocumented)
583
+ export type DevBoxesStopDevBoxParameters = RequestParameters;
584
+
585
+ // @public
586
+ export interface DevBoxListResultOutput {
587
+ nextLink?: string;
588
+ value: Array<DevBoxOutput>;
589
+ }
590
+
591
+ // @public
592
+ export interface DevBoxOutput {
593
+ actionState?: string;
594
+ createdTime?: string;
595
+ errorDetails?: ProvisioningErrorOutput;
596
+ hardwareProfile?: HardwareProfileOutput;
597
+ imageReference?: ImageReferenceOutput;
598
+ localAdministrator?: "Enabled" | "Disabled";
599
+ location?: string;
600
+ name?: string;
601
+ osType?: "Windows";
602
+ poolName: string;
603
+ powerState?: "Unknown" | "Deallocated" | "PoweredOff" | "Running" | "Hibernated";
604
+ projectName?: string;
605
+ provisioningState?: string;
606
+ storageProfile?: StorageProfileOutput;
607
+ uniqueId?: string;
608
+ user?: string;
609
+ }
610
+
611
+ // @public (undocumented)
612
+ export interface DevCenterGetProject {
613
+ get(options?: DevCenterGetProjectParameters): StreamableMethod<DevCenterGetProject200Response | DevCenterGetProjectDefaultResponse>;
614
+ }
615
+
616
+ // @public
617
+ export interface DevCenterGetProject200Response extends HttpResponse {
618
+ // (undocumented)
619
+ body: ProjectOutput;
620
+ // (undocumented)
621
+ status: "200";
622
+ }
623
+
624
+ // @public
625
+ export interface DevCenterGetProjectDefaultResponse extends HttpResponse {
626
+ // (undocumented)
627
+ body: CloudErrorOutput;
628
+ // (undocumented)
629
+ status: string;
630
+ }
631
+
632
+ // @public (undocumented)
633
+ export type DevCenterGetProjectParameters = RequestParameters;
634
+
635
+ // @public (undocumented)
636
+ export interface DevCenterListAllDevBoxes {
637
+ get(options?: DevCenterListAllDevBoxesParameters): StreamableMethod<DevCenterListAllDevBoxes200Response | DevCenterListAllDevBoxesDefaultResponse>;
638
+ }
639
+
640
+ // @public
641
+ export interface DevCenterListAllDevBoxes200Response extends HttpResponse {
642
+ // (undocumented)
643
+ body: DevBoxListResultOutput;
644
+ // (undocumented)
645
+ status: "200";
646
+ }
647
+
648
+ // @public (undocumented)
649
+ export interface DevCenterListAllDevBoxesByUser {
650
+ get(options?: DevCenterListAllDevBoxesByUserParameters): StreamableMethod<DevCenterListAllDevBoxesByUser200Response | DevCenterListAllDevBoxesByUserDefaultResponse>;
651
+ }
652
+
653
+ // @public
654
+ export interface DevCenterListAllDevBoxesByUser200Response extends HttpResponse {
655
+ // (undocumented)
656
+ body: DevBoxListResultOutput;
657
+ // (undocumented)
658
+ status: "200";
659
+ }
660
+
661
+ // @public (undocumented)
662
+ export interface DevCenterListAllDevBoxesByUserDefaultHeaders {
663
+ "x-ms-error-code"?: string;
664
+ }
665
+
666
+ // @public
667
+ export interface DevCenterListAllDevBoxesByUserDefaultResponse extends HttpResponse {
668
+ // (undocumented)
669
+ body: CloudErrorOutput;
670
+ // (undocumented)
671
+ headers: RawHttpHeaders & DevCenterListAllDevBoxesByUserDefaultHeaders;
672
+ // (undocumented)
673
+ status: string;
674
+ }
675
+
676
+ // @public (undocumented)
677
+ export type DevCenterListAllDevBoxesByUserParameters = DevCenterListAllDevBoxesByUserQueryParam & RequestParameters;
678
+
679
+ // @public (undocumented)
680
+ export interface DevCenterListAllDevBoxesByUserQueryParam {
681
+ // (undocumented)
682
+ queryParameters?: DevCenterListAllDevBoxesByUserQueryParamProperties;
683
+ }
684
+
685
+ // @public (undocumented)
686
+ export interface DevCenterListAllDevBoxesByUserQueryParamProperties {
687
+ filter?: string;
688
+ top?: number;
689
+ }
690
+
691
+ // @public (undocumented)
692
+ export interface DevCenterListAllDevBoxesDefaultHeaders {
693
+ "x-ms-error-code"?: string;
694
+ }
695
+
696
+ // @public
697
+ export interface DevCenterListAllDevBoxesDefaultResponse extends HttpResponse {
698
+ // (undocumented)
699
+ body: CloudErrorOutput;
700
+ // (undocumented)
701
+ headers: RawHttpHeaders & DevCenterListAllDevBoxesDefaultHeaders;
702
+ // (undocumented)
703
+ status: string;
704
+ }
705
+
706
+ // @public (undocumented)
707
+ export type DevCenterListAllDevBoxesParameters = DevCenterListAllDevBoxesQueryParam & RequestParameters;
708
+
709
+ // @public (undocumented)
710
+ export interface DevCenterListAllDevBoxesQueryParam {
711
+ // (undocumented)
712
+ queryParameters?: DevCenterListAllDevBoxesQueryParamProperties;
713
+ }
714
+
715
+ // @public (undocumented)
716
+ export interface DevCenterListAllDevBoxesQueryParamProperties {
717
+ filter?: string;
718
+ top?: number;
719
+ }
720
+
721
+ // @public (undocumented)
722
+ export interface DevCenterListProjects {
723
+ get(options?: DevCenterListProjectsParameters): StreamableMethod<DevCenterListProjects200Response | DevCenterListProjectsDefaultResponse>;
724
+ }
725
+
726
+ // @public
727
+ export interface DevCenterListProjects200Response extends HttpResponse {
728
+ // (undocumented)
729
+ body: ProjectListResultOutput;
730
+ // (undocumented)
731
+ status: "200";
732
+ }
733
+
734
+ // @public
735
+ export interface DevCenterListProjectsDefaultResponse extends HttpResponse {
736
+ // (undocumented)
737
+ body: CloudErrorOutput;
738
+ // (undocumented)
739
+ status: string;
740
+ }
741
+
742
+ // @public (undocumented)
743
+ export type DevCenterListProjectsParameters = DevCenterListProjectsQueryParam & RequestParameters;
744
+
745
+ // @public (undocumented)
746
+ export interface DevCenterListProjectsQueryParam {
747
+ // (undocumented)
748
+ queryParameters?: DevCenterListProjectsQueryParamProperties;
749
+ }
750
+
751
+ // @public (undocumented)
752
+ export interface DevCenterListProjectsQueryParamProperties {
753
+ filter?: string;
754
+ top?: number;
755
+ }
756
+
757
+ // @public
758
+ export interface Environment extends EnvironmentUpdateProperties {
759
+ environmentType: string;
760
+ name?: string;
761
+ owner?: string;
762
+ provisioningState?: string;
763
+ resourceGroupId?: string;
764
+ }
765
+
766
+ // @public
767
+ export interface EnvironmentListResultOutput {
768
+ nextLink?: string;
769
+ value: Array<EnvironmentOutput>;
770
+ }
771
+
772
+ // @public
773
+ export interface EnvironmentOutput extends EnvironmentUpdatePropertiesOutput {
774
+ environmentType: string;
775
+ name?: string;
776
+ owner?: string;
777
+ provisioningState?: string;
778
+ resourceGroupId?: string;
779
+ }
780
+
781
+ // @public
782
+ export interface EnvironmentsCreateOrUpdateEnvironment200Response extends HttpResponse {
783
+ // (undocumented)
784
+ body: EnvironmentOutput;
785
+ // (undocumented)
786
+ status: "200";
787
+ }
788
+
789
+ // @public (undocumented)
790
+ export interface EnvironmentsCreateOrUpdateEnvironment201Headers {
791
+ "operation-location"?: string;
792
+ }
793
+
794
+ // @public
795
+ export interface EnvironmentsCreateOrUpdateEnvironment201Response extends HttpResponse {
796
+ // (undocumented)
797
+ body: EnvironmentOutput;
798
+ // (undocumented)
799
+ headers: RawHttpHeaders & EnvironmentsCreateOrUpdateEnvironment201Headers;
800
+ // (undocumented)
801
+ status: "201";
802
+ }
803
+
804
+ // @public (undocumented)
805
+ export interface EnvironmentsCreateOrUpdateEnvironmentBodyParam {
806
+ body: Environment;
807
+ }
808
+
809
+ // @public (undocumented)
810
+ export interface EnvironmentsCreateOrUpdateEnvironmentDefaultHeaders {
811
+ "x-ms-error-code"?: string;
812
+ }
813
+
814
+ // @public
815
+ export interface EnvironmentsCreateOrUpdateEnvironmentDefaultResponse extends HttpResponse {
816
+ // (undocumented)
817
+ body: CloudErrorOutput;
818
+ // (undocumented)
819
+ headers: RawHttpHeaders & EnvironmentsCreateOrUpdateEnvironmentDefaultHeaders;
820
+ // (undocumented)
821
+ status: string;
822
+ }
823
+
824
+ // @public (undocumented)
825
+ export interface EnvironmentsCreateOrUpdateEnvironmentMediaTypesParam {
826
+ contentType?: "application/json";
827
+ }
828
+
829
+ // @public (undocumented)
830
+ export type EnvironmentsCreateOrUpdateEnvironmentParameters = EnvironmentsCreateOrUpdateEnvironmentMediaTypesParam & EnvironmentsCreateOrUpdateEnvironmentBodyParam & RequestParameters;
831
+
832
+ // @public (undocumented)
833
+ export interface EnvironmentsCustomEnvironmentAction {
834
+ post(options: EnvironmentsCustomEnvironmentActionParameters): StreamableMethod<EnvironmentsCustomEnvironmentAction200Response | EnvironmentsCustomEnvironmentAction202Response | EnvironmentsCustomEnvironmentActionDefaultResponse>;
835
+ }
836
+
837
+ // @public
838
+ export interface EnvironmentsCustomEnvironmentAction200Response extends HttpResponse {
839
+ // (undocumented)
840
+ body: Record<string, unknown>;
841
+ // (undocumented)
842
+ status: "200";
843
+ }
844
+
845
+ // @public (undocumented)
846
+ export interface EnvironmentsCustomEnvironmentAction202Headers {
847
+ "operation-location"?: string;
848
+ }
849
+
850
+ // @public
851
+ export interface EnvironmentsCustomEnvironmentAction202Response extends HttpResponse {
852
+ // (undocumented)
853
+ body: Record<string, unknown>;
854
+ // (undocumented)
855
+ headers: RawHttpHeaders & EnvironmentsCustomEnvironmentAction202Headers;
856
+ // (undocumented)
857
+ status: "202";
858
+ }
859
+
860
+ // @public (undocumented)
861
+ export interface EnvironmentsCustomEnvironmentActionBodyParam {
862
+ body: ActionRequest;
863
+ }
864
+
865
+ // @public (undocumented)
866
+ export interface EnvironmentsCustomEnvironmentActionDefaultHeaders {
867
+ "x-ms-error-code"?: string;
868
+ }
869
+
870
+ // @public
871
+ export interface EnvironmentsCustomEnvironmentActionDefaultResponse extends HttpResponse {
872
+ // (undocumented)
873
+ body: CloudErrorOutput;
874
+ // (undocumented)
875
+ headers: RawHttpHeaders & EnvironmentsCustomEnvironmentActionDefaultHeaders;
876
+ // (undocumented)
877
+ status: string;
878
+ }
879
+
880
+ // @public (undocumented)
881
+ export interface EnvironmentsCustomEnvironmentActionMediaTypesParam {
882
+ contentType?: "application/json";
883
+ }
884
+
885
+ // @public (undocumented)
886
+ export type EnvironmentsCustomEnvironmentActionParameters = EnvironmentsCustomEnvironmentActionMediaTypesParam & EnvironmentsCustomEnvironmentActionBodyParam & RequestParameters;
887
+
888
+ // @public
889
+ export interface EnvironmentsDeleteEnvironment200Response extends HttpResponse {
890
+ // (undocumented)
891
+ body: Record<string, unknown>;
892
+ // (undocumented)
893
+ status: "200";
894
+ }
895
+
896
+ // @public (undocumented)
897
+ export interface EnvironmentsDeleteEnvironment202Headers {
898
+ "operation-location"?: string;
899
+ }
900
+
901
+ // @public
902
+ export interface EnvironmentsDeleteEnvironment202Response extends HttpResponse {
903
+ // (undocumented)
904
+ body: Record<string, unknown>;
905
+ // (undocumented)
906
+ headers: RawHttpHeaders & EnvironmentsDeleteEnvironment202Headers;
907
+ // (undocumented)
908
+ status: "202";
909
+ }
910
+
911
+ // @public
912
+ export interface EnvironmentsDeleteEnvironment204Response extends HttpResponse {
913
+ // (undocumented)
914
+ body: Record<string, unknown>;
915
+ // (undocumented)
916
+ status: "204";
917
+ }
918
+
919
+ // @public (undocumented)
920
+ export interface EnvironmentsDeleteEnvironmentAction {
921
+ post(options: EnvironmentsDeleteEnvironmentActionParameters): StreamableMethod<EnvironmentsDeleteEnvironmentAction200Response | EnvironmentsDeleteEnvironmentAction202Response | EnvironmentsDeleteEnvironmentActionDefaultResponse>;
922
+ }
923
+
924
+ // @public
925
+ export interface EnvironmentsDeleteEnvironmentAction200Response extends HttpResponse {
926
+ // (undocumented)
927
+ body: Record<string, unknown>;
928
+ // (undocumented)
929
+ status: "200";
930
+ }
931
+
932
+ // @public (undocumented)
933
+ export interface EnvironmentsDeleteEnvironmentAction202Headers {
934
+ "operation-location"?: string;
935
+ }
936
+
937
+ // @public
938
+ export interface EnvironmentsDeleteEnvironmentAction202Response extends HttpResponse {
939
+ // (undocumented)
940
+ body: Record<string, unknown>;
941
+ // (undocumented)
942
+ headers: RawHttpHeaders & EnvironmentsDeleteEnvironmentAction202Headers;
943
+ // (undocumented)
944
+ status: "202";
945
+ }
946
+
947
+ // @public (undocumented)
948
+ export interface EnvironmentsDeleteEnvironmentActionBodyParam {
949
+ body: ActionRequest;
950
+ }
951
+
952
+ // @public (undocumented)
953
+ export interface EnvironmentsDeleteEnvironmentActionDefaultHeaders {
954
+ "x-ms-error-code"?: string;
955
+ }
956
+
957
+ // @public
958
+ export interface EnvironmentsDeleteEnvironmentActionDefaultResponse extends HttpResponse {
959
+ // (undocumented)
960
+ body: CloudErrorOutput;
961
+ // (undocumented)
962
+ headers: RawHttpHeaders & EnvironmentsDeleteEnvironmentActionDefaultHeaders;
963
+ // (undocumented)
964
+ status: string;
965
+ }
966
+
967
+ // @public (undocumented)
968
+ export interface EnvironmentsDeleteEnvironmentActionMediaTypesParam {
969
+ contentType?: "application/json";
970
+ }
971
+
972
+ // @public (undocumented)
973
+ export type EnvironmentsDeleteEnvironmentActionParameters = EnvironmentsDeleteEnvironmentActionMediaTypesParam & EnvironmentsDeleteEnvironmentActionBodyParam & RequestParameters;
974
+
975
+ // @public (undocumented)
976
+ export interface EnvironmentsDeleteEnvironmentDefaultHeaders {
977
+ "x-ms-error-code"?: string;
978
+ }
979
+
980
+ // @public
981
+ export interface EnvironmentsDeleteEnvironmentDefaultResponse extends HttpResponse {
982
+ // (undocumented)
983
+ body: CloudErrorOutput;
984
+ // (undocumented)
985
+ headers: RawHttpHeaders & EnvironmentsDeleteEnvironmentDefaultHeaders;
986
+ // (undocumented)
987
+ status: string;
988
+ }
989
+
990
+ // @public (undocumented)
991
+ export type EnvironmentsDeleteEnvironmentParameters = RequestParameters;
992
+
993
+ // @public (undocumented)
994
+ export interface EnvironmentsDeployEnvironmentAction {
995
+ post(options: EnvironmentsDeployEnvironmentActionParameters): StreamableMethod<EnvironmentsDeployEnvironmentAction200Response | EnvironmentsDeployEnvironmentAction202Response | EnvironmentsDeployEnvironmentActionDefaultResponse>;
996
+ }
997
+
998
+ // @public
999
+ export interface EnvironmentsDeployEnvironmentAction200Response extends HttpResponse {
1000
+ // (undocumented)
1001
+ body: Record<string, unknown>;
1002
+ // (undocumented)
1003
+ status: "200";
1004
+ }
1005
+
1006
+ // @public (undocumented)
1007
+ export interface EnvironmentsDeployEnvironmentAction202Headers {
1008
+ "operation-location"?: string;
1009
+ }
1010
+
1011
+ // @public
1012
+ export interface EnvironmentsDeployEnvironmentAction202Response extends HttpResponse {
1013
+ // (undocumented)
1014
+ body: Record<string, unknown>;
1015
+ // (undocumented)
1016
+ headers: RawHttpHeaders & EnvironmentsDeployEnvironmentAction202Headers;
1017
+ // (undocumented)
1018
+ status: "202";
1019
+ }
1020
+
1021
+ // @public (undocumented)
1022
+ export interface EnvironmentsDeployEnvironmentActionBodyParam {
1023
+ body: ActionRequest;
1024
+ }
1025
+
1026
+ // @public (undocumented)
1027
+ export interface EnvironmentsDeployEnvironmentActionDefaultHeaders {
1028
+ "x-ms-error-code"?: string;
1029
+ }
1030
+
1031
+ // @public
1032
+ export interface EnvironmentsDeployEnvironmentActionDefaultResponse extends HttpResponse {
1033
+ // (undocumented)
1034
+ body: CloudErrorOutput;
1035
+ // (undocumented)
1036
+ headers: RawHttpHeaders & EnvironmentsDeployEnvironmentActionDefaultHeaders;
1037
+ // (undocumented)
1038
+ status: string;
1039
+ }
1040
+
1041
+ // @public (undocumented)
1042
+ export interface EnvironmentsDeployEnvironmentActionMediaTypesParam {
1043
+ contentType?: "application/json";
1044
+ }
1045
+
1046
+ // @public (undocumented)
1047
+ export type EnvironmentsDeployEnvironmentActionParameters = EnvironmentsDeployEnvironmentActionMediaTypesParam & EnvironmentsDeployEnvironmentActionBodyParam & RequestParameters;
1048
+
1049
+ // @public (undocumented)
1050
+ export interface EnvironmentsGetCatalogItem {
1051
+ get(options?: EnvironmentsGetCatalogItemParameters): StreamableMethod<EnvironmentsGetCatalogItem200Response | EnvironmentsGetCatalogItemDefaultResponse>;
1052
+ }
1053
+
1054
+ // @public
1055
+ export interface EnvironmentsGetCatalogItem200Response extends HttpResponse {
1056
+ // (undocumented)
1057
+ body: CatalogItemOutput;
1058
+ // (undocumented)
1059
+ status: "200";
1060
+ }
1061
+
1062
+ // @public (undocumented)
1063
+ export interface EnvironmentsGetCatalogItemDefaultHeaders {
1064
+ "x-ms-error-code"?: string;
1065
+ }
1066
+
1067
+ // @public
1068
+ export interface EnvironmentsGetCatalogItemDefaultResponse extends HttpResponse {
1069
+ // (undocumented)
1070
+ body: CloudErrorOutput;
1071
+ // (undocumented)
1072
+ headers: RawHttpHeaders & EnvironmentsGetCatalogItemDefaultHeaders;
1073
+ // (undocumented)
1074
+ status: string;
1075
+ }
1076
+
1077
+ // @public (undocumented)
1078
+ export type EnvironmentsGetCatalogItemParameters = RequestParameters;
1079
+
1080
+ // @public (undocumented)
1081
+ export interface EnvironmentsGetCatalogItemVersion {
1082
+ get(options?: EnvironmentsGetCatalogItemVersionParameters): StreamableMethod<EnvironmentsGetCatalogItemVersion200Response | EnvironmentsGetCatalogItemVersionDefaultResponse>;
1083
+ }
1084
+
1085
+ // @public
1086
+ export interface EnvironmentsGetCatalogItemVersion200Response extends HttpResponse {
1087
+ // (undocumented)
1088
+ body: CatalogItemVersionOutput;
1089
+ // (undocumented)
1090
+ status: "200";
1091
+ }
1092
+
1093
+ // @public (undocumented)
1094
+ export interface EnvironmentsGetCatalogItemVersionDefaultHeaders {
1095
+ "x-ms-error-code"?: string;
1096
+ }
1097
+
1098
+ // @public
1099
+ export interface EnvironmentsGetCatalogItemVersionDefaultResponse extends HttpResponse {
1100
+ // (undocumented)
1101
+ body: CloudErrorOutput;
1102
+ // (undocumented)
1103
+ headers: RawHttpHeaders & EnvironmentsGetCatalogItemVersionDefaultHeaders;
1104
+ // (undocumented)
1105
+ status: string;
1106
+ }
1107
+
1108
+ // @public (undocumented)
1109
+ export type EnvironmentsGetCatalogItemVersionParameters = RequestParameters;
1110
+
1111
+ // @public (undocumented)
1112
+ export interface EnvironmentsGetEnvironmentByUser {
1113
+ delete(options?: EnvironmentsDeleteEnvironmentParameters): StreamableMethod<EnvironmentsDeleteEnvironment200Response | EnvironmentsDeleteEnvironment202Response | EnvironmentsDeleteEnvironment204Response | EnvironmentsDeleteEnvironmentDefaultResponse>;
1114
+ get(options?: EnvironmentsGetEnvironmentByUserParameters): StreamableMethod<EnvironmentsGetEnvironmentByUser200Response | EnvironmentsGetEnvironmentByUserDefaultResponse>;
1115
+ patch(options: EnvironmentsUpdateEnvironmentParameters): StreamableMethod<EnvironmentsUpdateEnvironment200Response | EnvironmentsUpdateEnvironmentDefaultResponse>;
1116
+ put(options: EnvironmentsCreateOrUpdateEnvironmentParameters): StreamableMethod<EnvironmentsCreateOrUpdateEnvironment200Response | EnvironmentsCreateOrUpdateEnvironment201Response | EnvironmentsCreateOrUpdateEnvironmentDefaultResponse>;
1117
+ }
1118
+
1119
+ // @public
1120
+ export interface EnvironmentsGetEnvironmentByUser200Response extends HttpResponse {
1121
+ // (undocumented)
1122
+ body: EnvironmentOutput;
1123
+ // (undocumented)
1124
+ status: "200";
1125
+ }
1126
+
1127
+ // @public (undocumented)
1128
+ export interface EnvironmentsGetEnvironmentByUserDefaultHeaders {
1129
+ "x-ms-error-code"?: string;
1130
+ }
1131
+
1132
+ // @public
1133
+ export interface EnvironmentsGetEnvironmentByUserDefaultResponse extends HttpResponse {
1134
+ // (undocumented)
1135
+ body: CloudErrorOutput;
1136
+ // (undocumented)
1137
+ headers: RawHttpHeaders & EnvironmentsGetEnvironmentByUserDefaultHeaders;
1138
+ // (undocumented)
1139
+ status: string;
1140
+ }
1141
+
1142
+ // @public (undocumented)
1143
+ export type EnvironmentsGetEnvironmentByUserParameters = RequestParameters;
1144
+
1145
+ // @public (undocumented)
1146
+ export interface EnvironmentsListArtifactsByEnvironment {
1147
+ get(options?: EnvironmentsListArtifactsByEnvironmentParameters): StreamableMethod<EnvironmentsListArtifactsByEnvironment200Response | EnvironmentsListArtifactsByEnvironmentDefaultResponse>;
1148
+ }
1149
+
1150
+ // @public
1151
+ export interface EnvironmentsListArtifactsByEnvironment200Response extends HttpResponse {
1152
+ // (undocumented)
1153
+ body: ArtifactListResultOutput;
1154
+ // (undocumented)
1155
+ status: "200";
1156
+ }
1157
+
1158
+ // @public (undocumented)
1159
+ export interface EnvironmentsListArtifactsByEnvironmentAndPath {
1160
+ get(options?: EnvironmentsListArtifactsByEnvironmentAndPathParameters): StreamableMethod<EnvironmentsListArtifactsByEnvironmentAndPath200Response | EnvironmentsListArtifactsByEnvironmentAndPathDefaultResponse>;
1161
+ }
1162
+
1163
+ // @public
1164
+ export interface EnvironmentsListArtifactsByEnvironmentAndPath200Response extends HttpResponse {
1165
+ // (undocumented)
1166
+ body: ArtifactListResultOutput;
1167
+ // (undocumented)
1168
+ status: "200";
1169
+ }
1170
+
1171
+ // @public (undocumented)
1172
+ export interface EnvironmentsListArtifactsByEnvironmentAndPathDefaultHeaders {
1173
+ "x-ms-error-code"?: string;
1174
+ }
1175
+
1176
+ // @public
1177
+ export interface EnvironmentsListArtifactsByEnvironmentAndPathDefaultResponse extends HttpResponse {
1178
+ // (undocumented)
1179
+ body: CloudErrorOutput;
1180
+ // (undocumented)
1181
+ headers: RawHttpHeaders & EnvironmentsListArtifactsByEnvironmentAndPathDefaultHeaders;
1182
+ // (undocumented)
1183
+ status: string;
1184
+ }
1185
+
1186
+ // @public (undocumented)
1187
+ export type EnvironmentsListArtifactsByEnvironmentAndPathParameters = RequestParameters;
1188
+
1189
+ // @public (undocumented)
1190
+ export interface EnvironmentsListArtifactsByEnvironmentDefaultHeaders {
1191
+ "x-ms-error-code"?: string;
1192
+ }
1193
+
1194
+ // @public
1195
+ export interface EnvironmentsListArtifactsByEnvironmentDefaultResponse extends HttpResponse {
1196
+ // (undocumented)
1197
+ body: CloudErrorOutput;
1198
+ // (undocumented)
1199
+ headers: RawHttpHeaders & EnvironmentsListArtifactsByEnvironmentDefaultHeaders;
1200
+ // (undocumented)
1201
+ status: string;
1202
+ }
1203
+
1204
+ // @public (undocumented)
1205
+ export type EnvironmentsListArtifactsByEnvironmentParameters = RequestParameters;
1206
+
1207
+ // @public (undocumented)
1208
+ export interface EnvironmentsListCatalogItems {
1209
+ get(options?: EnvironmentsListCatalogItemsParameters): StreamableMethod<EnvironmentsListCatalogItems200Response | EnvironmentsListCatalogItemsDefaultResponse>;
1210
+ }
1211
+
1212
+ // @public
1213
+ export interface EnvironmentsListCatalogItems200Response extends HttpResponse {
1214
+ // (undocumented)
1215
+ body: CatalogItemListResultOutput;
1216
+ // (undocumented)
1217
+ status: "200";
1218
+ }
1219
+
1220
+ // @public (undocumented)
1221
+ export interface EnvironmentsListCatalogItemsDefaultHeaders {
1222
+ "x-ms-error-code"?: string;
1223
+ }
1224
+
1225
+ // @public
1226
+ export interface EnvironmentsListCatalogItemsDefaultResponse extends HttpResponse {
1227
+ // (undocumented)
1228
+ body: CloudErrorOutput;
1229
+ // (undocumented)
1230
+ headers: RawHttpHeaders & EnvironmentsListCatalogItemsDefaultHeaders;
1231
+ // (undocumented)
1232
+ status: string;
1233
+ }
1234
+
1235
+ // @public (undocumented)
1236
+ export type EnvironmentsListCatalogItemsParameters = EnvironmentsListCatalogItemsQueryParam & RequestParameters;
1237
+
1238
+ // @public (undocumented)
1239
+ export interface EnvironmentsListCatalogItemsQueryParam {
1240
+ // (undocumented)
1241
+ queryParameters?: EnvironmentsListCatalogItemsQueryParamProperties;
1242
+ }
1243
+
1244
+ // @public (undocumented)
1245
+ export interface EnvironmentsListCatalogItemsQueryParamProperties {
1246
+ top?: number;
1247
+ }
1248
+
1249
+ // @public (undocumented)
1250
+ export interface EnvironmentsListCatalogItemVersions {
1251
+ get(options?: EnvironmentsListCatalogItemVersionsParameters): StreamableMethod<EnvironmentsListCatalogItemVersions200Response | EnvironmentsListCatalogItemVersionsDefaultResponse>;
1252
+ }
1253
+
1254
+ // @public
1255
+ export interface EnvironmentsListCatalogItemVersions200Response extends HttpResponse {
1256
+ // (undocumented)
1257
+ body: CatalogItemVersionListResultOutput;
1258
+ // (undocumented)
1259
+ status: "200";
1260
+ }
1261
+
1262
+ // @public (undocumented)
1263
+ export interface EnvironmentsListCatalogItemVersionsDefaultHeaders {
1264
+ "x-ms-error-code"?: string;
1265
+ }
1266
+
1267
+ // @public
1268
+ export interface EnvironmentsListCatalogItemVersionsDefaultResponse extends HttpResponse {
1269
+ // (undocumented)
1270
+ body: CloudErrorOutput;
1271
+ // (undocumented)
1272
+ headers: RawHttpHeaders & EnvironmentsListCatalogItemVersionsDefaultHeaders;
1273
+ // (undocumented)
1274
+ status: string;
1275
+ }
1276
+
1277
+ // @public (undocumented)
1278
+ export type EnvironmentsListCatalogItemVersionsParameters = EnvironmentsListCatalogItemVersionsQueryParam & RequestParameters;
1279
+
1280
+ // @public (undocumented)
1281
+ export interface EnvironmentsListCatalogItemVersionsQueryParam {
1282
+ // (undocumented)
1283
+ queryParameters?: EnvironmentsListCatalogItemVersionsQueryParamProperties;
1284
+ }
1285
+
1286
+ // @public (undocumented)
1287
+ export interface EnvironmentsListCatalogItemVersionsQueryParamProperties {
1288
+ top?: number;
1289
+ }
1290
+
1291
+ // @public (undocumented)
1292
+ export interface EnvironmentsListEnvironments {
1293
+ get(options?: EnvironmentsListEnvironmentsParameters): StreamableMethod<EnvironmentsListEnvironments200Response | EnvironmentsListEnvironmentsDefaultResponse>;
1294
+ }
1295
+
1296
+ // @public
1297
+ export interface EnvironmentsListEnvironments200Response extends HttpResponse {
1298
+ // (undocumented)
1299
+ body: EnvironmentListResultOutput;
1300
+ // (undocumented)
1301
+ status: "200";
1302
+ }
1303
+
1304
+ // @public (undocumented)
1305
+ export interface EnvironmentsListEnvironmentsByUser {
1306
+ get(options?: EnvironmentsListEnvironmentsByUserParameters): StreamableMethod<EnvironmentsListEnvironmentsByUser200Response | EnvironmentsListEnvironmentsByUserDefaultResponse>;
1307
+ }
1308
+
1309
+ // @public
1310
+ export interface EnvironmentsListEnvironmentsByUser200Response extends HttpResponse {
1311
+ // (undocumented)
1312
+ body: EnvironmentListResultOutput;
1313
+ // (undocumented)
1314
+ status: "200";
1315
+ }
1316
+
1317
+ // @public (undocumented)
1318
+ export interface EnvironmentsListEnvironmentsByUserDefaultHeaders {
1319
+ "x-ms-error-code"?: string;
1320
+ }
1321
+
1322
+ // @public
1323
+ export interface EnvironmentsListEnvironmentsByUserDefaultResponse extends HttpResponse {
1324
+ // (undocumented)
1325
+ body: CloudErrorOutput;
1326
+ // (undocumented)
1327
+ headers: RawHttpHeaders & EnvironmentsListEnvironmentsByUserDefaultHeaders;
1328
+ // (undocumented)
1329
+ status: string;
1330
+ }
1331
+
1332
+ // @public (undocumented)
1333
+ export type EnvironmentsListEnvironmentsByUserParameters = EnvironmentsListEnvironmentsByUserQueryParam & RequestParameters;
1334
+
1335
+ // @public (undocumented)
1336
+ export interface EnvironmentsListEnvironmentsByUserQueryParam {
1337
+ // (undocumented)
1338
+ queryParameters?: EnvironmentsListEnvironmentsByUserQueryParamProperties;
1339
+ }
1340
+
1341
+ // @public (undocumented)
1342
+ export interface EnvironmentsListEnvironmentsByUserQueryParamProperties {
1343
+ top?: number;
1344
+ }
1345
+
1346
+ // @public (undocumented)
1347
+ export interface EnvironmentsListEnvironmentsDefaultHeaders {
1348
+ "x-ms-error-code"?: string;
1349
+ }
1350
+
1351
+ // @public
1352
+ export interface EnvironmentsListEnvironmentsDefaultResponse extends HttpResponse {
1353
+ // (undocumented)
1354
+ body: CloudErrorOutput;
1355
+ // (undocumented)
1356
+ headers: RawHttpHeaders & EnvironmentsListEnvironmentsDefaultHeaders;
1357
+ // (undocumented)
1358
+ status: string;
1359
+ }
1360
+
1361
+ // @public (undocumented)
1362
+ export type EnvironmentsListEnvironmentsParameters = EnvironmentsListEnvironmentsQueryParam & RequestParameters;
1363
+
1364
+ // @public (undocumented)
1365
+ export interface EnvironmentsListEnvironmentsQueryParam {
1366
+ // (undocumented)
1367
+ queryParameters?: EnvironmentsListEnvironmentsQueryParamProperties;
1368
+ }
1369
+
1370
+ // @public (undocumented)
1371
+ export interface EnvironmentsListEnvironmentsQueryParamProperties {
1372
+ top?: number;
1373
+ }
1374
+
1375
+ // @public (undocumented)
1376
+ export interface EnvironmentsListEnvironmentTypes {
1377
+ get(options?: EnvironmentsListEnvironmentTypesParameters): StreamableMethod<EnvironmentsListEnvironmentTypes200Response | EnvironmentsListEnvironmentTypesDefaultResponse>;
1378
+ }
1379
+
1380
+ // @public
1381
+ export interface EnvironmentsListEnvironmentTypes200Response extends HttpResponse {
1382
+ // (undocumented)
1383
+ body: EnvironmentTypeListResultOutput;
1384
+ // (undocumented)
1385
+ status: "200";
1386
+ }
1387
+
1388
+ // @public (undocumented)
1389
+ export interface EnvironmentsListEnvironmentTypesDefaultHeaders {
1390
+ "x-ms-error-code"?: string;
1391
+ }
1392
+
1393
+ // @public
1394
+ export interface EnvironmentsListEnvironmentTypesDefaultResponse extends HttpResponse {
1395
+ // (undocumented)
1396
+ body: CloudErrorOutput;
1397
+ // (undocumented)
1398
+ headers: RawHttpHeaders & EnvironmentsListEnvironmentTypesDefaultHeaders;
1399
+ // (undocumented)
1400
+ status: string;
1401
+ }
1402
+
1403
+ // @public (undocumented)
1404
+ export type EnvironmentsListEnvironmentTypesParameters = EnvironmentsListEnvironmentTypesQueryParam & RequestParameters;
1405
+
1406
+ // @public (undocumented)
1407
+ export interface EnvironmentsListEnvironmentTypesQueryParam {
1408
+ // (undocumented)
1409
+ queryParameters?: EnvironmentsListEnvironmentTypesQueryParamProperties;
1410
+ }
1411
+
1412
+ // @public (undocumented)
1413
+ export interface EnvironmentsListEnvironmentTypesQueryParamProperties {
1414
+ top?: number;
1415
+ }
1416
+
1417
+ // @public
1418
+ export interface EnvironmentsUpdateEnvironment200Response extends HttpResponse {
1419
+ // (undocumented)
1420
+ body: EnvironmentOutput;
1421
+ // (undocumented)
1422
+ status: "200";
1423
+ }
1424
+
1425
+ // @public (undocumented)
1426
+ export interface EnvironmentsUpdateEnvironmentBodyParam {
1427
+ body: EnvironmentUpdateProperties;
1428
+ }
1429
+
1430
+ // @public (undocumented)
1431
+ export interface EnvironmentsUpdateEnvironmentDefaultHeaders {
1432
+ "x-ms-error-code"?: string;
1433
+ }
1434
+
1435
+ // @public
1436
+ export interface EnvironmentsUpdateEnvironmentDefaultResponse extends HttpResponse {
1437
+ // (undocumented)
1438
+ body: CloudErrorOutput;
1439
+ // (undocumented)
1440
+ headers: RawHttpHeaders & EnvironmentsUpdateEnvironmentDefaultHeaders;
1441
+ // (undocumented)
1442
+ status: string;
1443
+ }
1444
+
1445
+ // @public (undocumented)
1446
+ export interface EnvironmentsUpdateEnvironmentMediaTypesParam {
1447
+ contentType?: "application/merge-patch+json";
1448
+ }
1449
+
1450
+ // @public (undocumented)
1451
+ export type EnvironmentsUpdateEnvironmentParameters = EnvironmentsUpdateEnvironmentMediaTypesParam & EnvironmentsUpdateEnvironmentBodyParam & RequestParameters;
1452
+
1453
+ // @public
1454
+ export interface EnvironmentTypeListResultOutput {
1455
+ nextLink?: string;
1456
+ value: Array<EnvironmentTypeOutput>;
1457
+ }
1458
+
1459
+ // @public
1460
+ export interface EnvironmentTypeOutput {
1461
+ deploymentTargetId?: string;
1462
+ name?: string;
1463
+ status?: "Enabled" | "Disabled";
1464
+ }
1465
+
1466
+ // @public
1467
+ export interface EnvironmentUpdateProperties {
1468
+ catalogItemName?: string;
1469
+ catalogName?: string;
1470
+ description?: string;
1471
+ parameters?: Record<string, unknown>;
1472
+ scheduledTasks?: Record<string, ScheduledTask>;
1473
+ tags?: Record<string, string>;
1474
+ }
1475
+
1476
+ // @public
1477
+ export interface EnvironmentUpdatePropertiesOutput {
1478
+ catalogItemName?: string;
1479
+ catalogName?: string;
1480
+ description?: string;
1481
+ parameters?: Record<string, unknown>;
1482
+ scheduledTasks?: Record<string, ScheduledTaskOutput>;
1483
+ tags?: Record<string, string>;
1484
+ }
1485
+
1486
+ // @public
1487
+ export type GetArrayType<T> = T extends Array<infer TData> ? TData : never;
1488
+
1489
+ // @public
1490
+ export function getLongRunningPoller<TResult extends HttpResponse>(client: Client, initialResponse: TResult, options?: LroEngineOptions<TResult, PollOperationState<TResult>>): PollerLike<PollOperationState<TResult>, TResult>;
1491
+
1492
+ // @public
1493
+ export type GetPage<TPage> = (pageLink: string, maxPageSize?: number) => Promise<{
1494
+ page: TPage;
1495
+ nextPageLink?: string;
1496
+ }>;
1497
+
1498
+ // @public
1499
+ export interface HardwareProfile {
1500
+ memoryGB?: number;
1501
+ skuName?: string;
1502
+ vCPUs?: number;
1503
+ }
1504
+
1505
+ // @public
1506
+ export interface HardwareProfileOutput {
1507
+ memoryGB?: number;
1508
+ skuName?: string;
1509
+ vCPUs?: number;
1510
+ }
1511
+
1512
+ // @public
1513
+ export interface ImageReference {
1514
+ name?: string;
1515
+ operatingSystem?: string;
1516
+ osBuildNumber?: string;
1517
+ publishedDate?: Date | string;
1518
+ version?: string;
1519
+ }
1520
+
1521
+ // @public
1522
+ export interface ImageReferenceOutput {
1523
+ name?: string;
1524
+ operatingSystem?: string;
1525
+ osBuildNumber?: string;
1526
+ publishedDate?: string;
1527
+ version?: string;
1528
+ }
1529
+
1530
+ // @public (undocumented)
1531
+ export function isUnexpected(response: DevCenterListProjects200Response | DevCenterListProjectsDefaultResponse): response is DevCenterListProjectsDefaultResponse;
1532
+
1533
+ // @public (undocumented)
1534
+ export function isUnexpected(response: DevCenterGetProject200Response | DevCenterGetProjectDefaultResponse): response is DevCenterGetProjectDefaultResponse;
1535
+
1536
+ // @public (undocumented)
1537
+ export function isUnexpected(response: DevCenterListAllDevBoxes200Response | DevCenterListAllDevBoxesDefaultResponse): response is DevCenterListAllDevBoxesDefaultResponse;
1538
+
1539
+ // @public (undocumented)
1540
+ export function isUnexpected(response: DevCenterListAllDevBoxesByUser200Response | DevCenterListAllDevBoxesByUserDefaultResponse): response is DevCenterListAllDevBoxesByUserDefaultResponse;
1541
+
1542
+ // @public (undocumented)
1543
+ export function isUnexpected(response: DevBoxesListPools200Response | DevBoxesListPoolsDefaultResponse): response is DevBoxesListPoolsDefaultResponse;
1544
+
1545
+ // @public (undocumented)
1546
+ export function isUnexpected(response: DevBoxesGetPool200Response | DevBoxesGetPoolDefaultResponse): response is DevBoxesGetPoolDefaultResponse;
1547
+
1548
+ // @public (undocumented)
1549
+ export function isUnexpected(response: DevBoxesListSchedulesByPool200Response | DevBoxesListSchedulesByPoolDefaultResponse): response is DevBoxesListSchedulesByPoolDefaultResponse;
1550
+
1551
+ // @public (undocumented)
1552
+ export function isUnexpected(response: DevBoxesGetScheduleByPool200Response | DevBoxesGetScheduleByPoolDefaultResponse): response is DevBoxesGetScheduleByPoolDefaultResponse;
1553
+
1554
+ // @public (undocumented)
1555
+ export function isUnexpected(response: DevBoxesListDevBoxesByUser200Response | DevBoxesListDevBoxesByUserDefaultResponse): response is DevBoxesListDevBoxesByUserDefaultResponse;
1556
+
1557
+ // @public (undocumented)
1558
+ export function isUnexpected(response: DevBoxesGetDevBoxByUser200Response | DevBoxesGetDevBoxByUserDefaultResponse): response is DevBoxesGetDevBoxByUserDefaultResponse;
1559
+
1560
+ // @public (undocumented)
1561
+ export function isUnexpected(response: DevBoxesCreateDevBox200Response | DevBoxesCreateDevBox201Response | DevBoxesCreateDevBoxDefaultResponse): response is DevBoxesCreateDevBoxDefaultResponse;
1562
+
1563
+ // @public (undocumented)
1564
+ export function isUnexpected(response: DevBoxesDeleteDevBox200Response | DevBoxesDeleteDevBox202Response | DevBoxesDeleteDevBox204Response | DevBoxesDeleteDevBoxDefaultResponse): response is DevBoxesDeleteDevBoxDefaultResponse;
1565
+
1566
+ // @public (undocumented)
1567
+ export function isUnexpected(response: DevBoxesStartDevBox200Response | DevBoxesStartDevBox202Response | DevBoxesStartDevBoxDefaultResponse): response is DevBoxesStartDevBoxDefaultResponse;
1568
+
1569
+ // @public (undocumented)
1570
+ export function isUnexpected(response: DevBoxesStopDevBox200Response | DevBoxesStopDevBox202Response | DevBoxesStopDevBoxDefaultResponse): response is DevBoxesStopDevBoxDefaultResponse;
1571
+
1572
+ // @public (undocumented)
1573
+ export function isUnexpected(response: DevBoxesGetRemoteConnection200Response | DevBoxesGetRemoteConnectionDefaultResponse): response is DevBoxesGetRemoteConnectionDefaultResponse;
1574
+
1575
+ // @public (undocumented)
1576
+ export function isUnexpected(response: EnvironmentsListEnvironments200Response | EnvironmentsListEnvironmentsDefaultResponse): response is EnvironmentsListEnvironmentsDefaultResponse;
1577
+
1578
+ // @public (undocumented)
1579
+ export function isUnexpected(response: EnvironmentsListEnvironmentsByUser200Response | EnvironmentsListEnvironmentsByUserDefaultResponse): response is EnvironmentsListEnvironmentsByUserDefaultResponse;
1580
+
1581
+ // @public (undocumented)
1582
+ export function isUnexpected(response: EnvironmentsGetEnvironmentByUser200Response | EnvironmentsGetEnvironmentByUserDefaultResponse): response is EnvironmentsGetEnvironmentByUserDefaultResponse;
1583
+
1584
+ // @public (undocumented)
1585
+ export function isUnexpected(response: EnvironmentsCreateOrUpdateEnvironment200Response | EnvironmentsCreateOrUpdateEnvironment201Response | EnvironmentsCreateOrUpdateEnvironmentDefaultResponse): response is EnvironmentsCreateOrUpdateEnvironmentDefaultResponse;
1586
+
1587
+ // @public (undocumented)
1588
+ export function isUnexpected(response: EnvironmentsUpdateEnvironment200Response | EnvironmentsUpdateEnvironmentDefaultResponse): response is EnvironmentsUpdateEnvironmentDefaultResponse;
1589
+
1590
+ // @public (undocumented)
1591
+ export function isUnexpected(response: EnvironmentsDeleteEnvironment200Response | EnvironmentsDeleteEnvironment202Response | EnvironmentsDeleteEnvironment204Response | EnvironmentsDeleteEnvironmentDefaultResponse): response is EnvironmentsDeleteEnvironmentDefaultResponse;
1592
+
1593
+ // @public (undocumented)
1594
+ export function isUnexpected(response: EnvironmentsDeployEnvironmentAction200Response | EnvironmentsDeployEnvironmentAction202Response | EnvironmentsDeployEnvironmentActionDefaultResponse): response is EnvironmentsDeployEnvironmentActionDefaultResponse;
1595
+
1596
+ // @public (undocumented)
1597
+ export function isUnexpected(response: EnvironmentsDeleteEnvironmentAction200Response | EnvironmentsDeleteEnvironmentAction202Response | EnvironmentsDeleteEnvironmentActionDefaultResponse): response is EnvironmentsDeleteEnvironmentActionDefaultResponse;
1598
+
1599
+ // @public (undocumented)
1600
+ export function isUnexpected(response: EnvironmentsCustomEnvironmentAction200Response | EnvironmentsCustomEnvironmentAction202Response | EnvironmentsCustomEnvironmentActionDefaultResponse): response is EnvironmentsCustomEnvironmentActionDefaultResponse;
1601
+
1602
+ // @public (undocumented)
1603
+ export function isUnexpected(response: EnvironmentsListArtifactsByEnvironment200Response | EnvironmentsListArtifactsByEnvironmentDefaultResponse): response is EnvironmentsListArtifactsByEnvironmentDefaultResponse;
1604
+
1605
+ // @public (undocumented)
1606
+ export function isUnexpected(response: EnvironmentsListArtifactsByEnvironmentAndPath200Response | EnvironmentsListArtifactsByEnvironmentAndPathDefaultResponse): response is EnvironmentsListArtifactsByEnvironmentAndPathDefaultResponse;
1607
+
1608
+ // @public (undocumented)
1609
+ export function isUnexpected(response: EnvironmentsListCatalogItems200Response | EnvironmentsListCatalogItemsDefaultResponse): response is EnvironmentsListCatalogItemsDefaultResponse;
1610
+
1611
+ // @public (undocumented)
1612
+ export function isUnexpected(response: EnvironmentsGetCatalogItem200Response | EnvironmentsGetCatalogItemDefaultResponse): response is EnvironmentsGetCatalogItemDefaultResponse;
1613
+
1614
+ // @public (undocumented)
1615
+ export function isUnexpected(response: EnvironmentsListCatalogItemVersions200Response | EnvironmentsListCatalogItemVersionsDefaultResponse): response is EnvironmentsListCatalogItemVersionsDefaultResponse;
1616
+
1617
+ // @public (undocumented)
1618
+ export function isUnexpected(response: EnvironmentsGetCatalogItemVersion200Response | EnvironmentsGetCatalogItemVersionDefaultResponse): response is EnvironmentsGetCatalogItemVersionDefaultResponse;
1619
+
1620
+ // @public (undocumented)
1621
+ export function isUnexpected(response: EnvironmentsListEnvironmentTypes200Response | EnvironmentsListEnvironmentTypesDefaultResponse): response is EnvironmentsListEnvironmentTypesDefaultResponse;
1622
+
1623
+ // @public
1624
+ export interface OSDisk {
1625
+ diskSizeGB?: number;
1626
+ }
1627
+
1628
+ // @public
1629
+ export interface OSDiskOutput {
1630
+ diskSizeGB?: number;
1631
+ }
1632
+
1633
+ // @public
1634
+ export function paginate<TResponse extends PathUncheckedResponse>(client: Client, initialResponse: TResponse, options?: PagingOptions<TResponse>): PagedAsyncIterableIterator<PaginateReturn<TResponse>>;
1635
+
1636
+ // @public
1637
+ export type PaginateReturn<TResult> = TResult extends {
1638
+ body: {
1639
+ value?: infer TPage;
1640
+ };
1641
+ } ? GetArrayType<TPage> : Array<unknown>;
1642
+
1643
+ // @public
1644
+ export interface PagingOptions<TResponse> {
1645
+ customGetPage?: GetPage<PaginateReturn<TResponse>[]>;
1646
+ }
1647
+
1648
+ // @public
1649
+ export interface PoolListResultOutput {
1650
+ nextLink?: string;
1651
+ value: Array<PoolOutput>;
1652
+ }
1653
+
1654
+ // @public
1655
+ export interface PoolOutput {
1656
+ hardwareProfile?: HardwareProfileOutput;
1657
+ imageReference?: ImageReferenceOutput;
1658
+ localAdministrator?: "Enabled" | "Disabled";
1659
+ location?: string;
1660
+ name?: string;
1661
+ osType?: "Windows";
1662
+ storageProfile?: StorageProfileOutput;
1663
+ }
1664
+
1665
+ // @public
1666
+ export interface ProjectListResultOutput {
1667
+ nextLink?: string;
1668
+ value: Array<ProjectOutput>;
1669
+ }
1670
+
1671
+ // @public
1672
+ export interface ProjectOutput {
1673
+ description?: string;
1674
+ name?: string;
1675
+ }
1676
+
1677
+ // @public
1678
+ export interface ProvisioningError {
1679
+ code?: string;
1680
+ message?: string;
1681
+ }
1682
+
1683
+ // @public
1684
+ export interface ProvisioningErrorOutput {
1685
+ code?: string;
1686
+ message?: string;
1687
+ }
1688
+
1689
+ // @public
1690
+ export interface RemoteConnectionOutput {
1691
+ rdpConnectionUrl?: string;
1692
+ webUrl?: string;
1693
+ }
1694
+
1695
+ // @public (undocumented)
1696
+ export interface Routes {
1697
+ (path: "/projects"): DevCenterListProjects;
1698
+ (path: "/projects/{projectName}", projectName: string): DevCenterGetProject;
1699
+ (path: "/devboxes"): DevCenterListAllDevBoxes;
1700
+ (path: "/users/{userId}/devboxes", userId: string): DevCenterListAllDevBoxesByUser;
1701
+ (path: "/projects/{projectName}/pools", projectName: string): DevBoxesListPools;
1702
+ (path: "/projects/{projectName}/pools/{poolName}", projectName: string, poolName: string): DevBoxesGetPool;
1703
+ (path: "/projects/{projectName}/pools/{poolName}/schedules", projectName: string, poolName: string): DevBoxesListSchedulesByPool;
1704
+ (path: "/projects/{projectName}/pools/{poolName}/schedules/{scheduleName}", projectName: string, poolName: string, scheduleName: string): DevBoxesGetScheduleByPool;
1705
+ (path: "/projects/{projectName}/users/{userId}/devboxes", projectName: string, userId: string): DevBoxesListDevBoxesByUser;
1706
+ (path: "/projects/{projectName}/users/{userId}/devboxes/{devBoxName}", projectName: string, userId: string, devBoxName: string): DevBoxesGetDevBoxByUser;
1707
+ (path: "/projects/{projectName}/users/{userId}/devboxes/{devBoxName}:start", projectName: string, userId: string, devBoxName: string): DevBoxesStartDevBox;
1708
+ (path: "/projects/{projectName}/users/{userId}/devboxes/{devBoxName}:stop", projectName: string, userId: string, devBoxName: string): DevBoxesStopDevBox;
1709
+ (path: "/projects/{projectName}/users/{userId}/devboxes/{devBoxName}/remoteConnection", projectName: string, userId: string, devBoxName: string): DevBoxesGetRemoteConnection;
1710
+ (path: "/projects/{projectName}/environments", projectName: string): EnvironmentsListEnvironments;
1711
+ (path: "/projects/{projectName}/users/{userId}/environments", projectName: string, userId: string): EnvironmentsListEnvironmentsByUser;
1712
+ (path: "/projects/{projectName}/users/{userId}/environments/{environmentName}", projectName: string, userId: string, environmentName: string): EnvironmentsGetEnvironmentByUser;
1713
+ (path: "/projects/{projectName}/users/{userId}/environments/{environmentName}:deploy", projectName: string, userId: string, environmentName: string): EnvironmentsDeployEnvironmentAction;
1714
+ (path: "/projects/{projectName}/users/{userId}/environments/{environmentName}:delete", projectName: string, userId: string, environmentName: string): EnvironmentsDeleteEnvironmentAction;
1715
+ (path: "/projects/{projectName}/users/{userId}/environments/{environmentName}:custom", projectName: string, userId: string, environmentName: string): EnvironmentsCustomEnvironmentAction;
1716
+ (path: "/projects/{projectName}/users/{userId}/environments/{environmentName}/artifacts", projectName: string, userId: string, environmentName: string): EnvironmentsListArtifactsByEnvironment;
1717
+ (path: "/projects/{projectName}/users/{userId}/environments/{environmentName}/artifacts/{artifactPath}", projectName: string, userId: string, environmentName: string, artifactPath: string): EnvironmentsListArtifactsByEnvironmentAndPath;
1718
+ (path: "/projects/{projectName}/catalogItems", projectName: string): EnvironmentsListCatalogItems;
1719
+ (path: "/projects/{projectName}/catalogItems/{catalogItemId}", projectName: string, catalogItemId: string): EnvironmentsGetCatalogItem;
1720
+ (path: "/projects/{projectName}/catalogItems/{catalogItemId}/versions", projectName: string, catalogItemId: string): EnvironmentsListCatalogItemVersions;
1721
+ (path: "/projects/{projectName}/catalogItems/{catalogItemId}/versions/{version}", projectName: string, catalogItemId: string, version: string): EnvironmentsGetCatalogItemVersion;
1722
+ (path: "/projects/{projectName}/environmentTypes", projectName: string): EnvironmentsListEnvironmentTypes;
1723
+ }
1724
+
1725
+ // @public
1726
+ export interface ScheduledTask {
1727
+ enabled?: "Enabled" | "Disabled";
1728
+ startTime: Date | string;
1729
+ type: "AutoExpire";
1730
+ }
1731
+
1732
+ // @public
1733
+ export interface ScheduledTaskOutput {
1734
+ enabled?: "Enabled" | "Disabled";
1735
+ startTime: string;
1736
+ type: "AutoExpire";
1737
+ }
1738
+
1739
+ // @public
1740
+ export interface ScheduleListResultOutput {
1741
+ nextLink?: string;
1742
+ value: Array<ScheduleOutput>;
1743
+ }
1744
+
1745
+ // @public
1746
+ export interface ScheduleOutput {
1747
+ frequency?: "Daily";
1748
+ name?: string;
1749
+ time?: string;
1750
+ timeZone?: string;
1751
+ type?: "StopDevBox";
1752
+ }
1753
+
1754
+ // @public
1755
+ export interface StorageProfile {
1756
+ osDisk?: OSDisk;
1757
+ }
1758
+
1759
+ // @public
1760
+ export interface StorageProfileOutput {
1761
+ osDisk?: OSDiskOutput;
1762
+ }
1763
+
1764
+ // (No @packageDocumentation comment for this package)
1765
+
1766
+ ```