@azure-rest/developer-devcenter 1.0.0-beta.1 → 1.0.0-beta.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.
- package/dist/index.js +17 -44
- package/dist/index.js.map +1 -1
- package/dist-esm/src/generated/azureDevCenter.js +5 -7
- package/dist-esm/src/generated/azureDevCenter.js.map +1 -1
- package/dist-esm/src/generated/clientDefinitions.js.map +1 -1
- package/dist-esm/src/generated/isUnexpected.js +12 -19
- package/dist-esm/src/generated/isUnexpected.js.map +1 -1
- package/dist-esm/src/generated/models.js.map +1 -1
- package/dist-esm/src/generated/outputModels.js.map +1 -1
- package/dist-esm/src/generated/parameters.js.map +1 -1
- package/dist-esm/src/generated/responses.js.map +1 -1
- package/dist-esm/src/index.js +3 -3
- package/dist-esm/src/index.js.map +1 -1
- package/package.json +4 -4
- package/review/developer-devcenter.api.md +180 -173
- package/types/developer-devcenter.d.ts +180 -181
- package/dist-esm/src/azureDevCenter.js +0 -20
- package/dist-esm/src/azureDevCenter.js.map +0 -1
|
@@ -23,23 +23,6 @@ export interface ActionRequest {
|
|
|
23
23
|
parameters?: Record<string, unknown>;
|
|
24
24
|
}
|
|
25
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
26
|
// @public (undocumented)
|
|
44
27
|
export type AzureDevCenterClient = Client & {
|
|
45
28
|
path: Routes;
|
|
@@ -119,10 +102,7 @@ export interface CloudErrorOutput {
|
|
|
119
102
|
}
|
|
120
103
|
|
|
121
104
|
// @public
|
|
122
|
-
function createClient(
|
|
123
|
-
|
|
124
|
-
// @public
|
|
125
|
-
function createClient(tenantId: string, devCenter: string, credentials: TokenCredential, devCenterDnsSuffix?: string, options?: ClientOptions): AzureDevCenterClient;
|
|
105
|
+
function createClient(endpoint: string, credentials: TokenCredential, options?: ClientOptions): AzureDevCenterClient;
|
|
126
106
|
export default createClient;
|
|
127
107
|
|
|
128
108
|
// @public
|
|
@@ -131,6 +111,7 @@ export interface DevBox {
|
|
|
131
111
|
createdTime?: Date | string;
|
|
132
112
|
errorDetails?: ProvisioningError;
|
|
133
113
|
hardwareProfile?: HardwareProfile;
|
|
114
|
+
hibernateSupport?: "Disabled" | "Enabled";
|
|
134
115
|
imageReference?: ImageReference;
|
|
135
116
|
localAdministrator?: "Enabled" | "Disabled";
|
|
136
117
|
location?: string;
|
|
@@ -189,14 +170,48 @@ export interface DevBoxesCreateDevBoxMediaTypesParam {
|
|
|
189
170
|
// @public (undocumented)
|
|
190
171
|
export type DevBoxesCreateDevBoxParameters = DevBoxesCreateDevBoxMediaTypesParam & DevBoxesCreateDevBoxBodyParam & RequestParameters;
|
|
191
172
|
|
|
173
|
+
// @public (undocumented)
|
|
174
|
+
export interface DevBoxesDelayUpcomingAction {
|
|
175
|
+
post(options: DevBoxesDelayUpcomingActionParameters): StreamableMethod<DevBoxesDelayUpcomingAction200Response | DevBoxesDelayUpcomingActionDefaultResponse>;
|
|
176
|
+
}
|
|
177
|
+
|
|
192
178
|
// @public
|
|
193
|
-
export interface
|
|
179
|
+
export interface DevBoxesDelayUpcomingAction200Response extends HttpResponse {
|
|
194
180
|
// (undocumented)
|
|
195
|
-
body:
|
|
181
|
+
body: UpcomingActionOutput;
|
|
196
182
|
// (undocumented)
|
|
197
183
|
status: "200";
|
|
198
184
|
}
|
|
199
185
|
|
|
186
|
+
// @public (undocumented)
|
|
187
|
+
export interface DevBoxesDelayUpcomingActionDefaultHeaders {
|
|
188
|
+
"x-ms-error-code"?: string;
|
|
189
|
+
}
|
|
190
|
+
|
|
191
|
+
// @public
|
|
192
|
+
export interface DevBoxesDelayUpcomingActionDefaultResponse extends HttpResponse {
|
|
193
|
+
// (undocumented)
|
|
194
|
+
body: CloudErrorOutput;
|
|
195
|
+
// (undocumented)
|
|
196
|
+
headers: RawHttpHeaders & DevBoxesDelayUpcomingActionDefaultHeaders;
|
|
197
|
+
// (undocumented)
|
|
198
|
+
status: string;
|
|
199
|
+
}
|
|
200
|
+
|
|
201
|
+
// @public (undocumented)
|
|
202
|
+
export type DevBoxesDelayUpcomingActionParameters = DevBoxesDelayUpcomingActionQueryParam & RequestParameters;
|
|
203
|
+
|
|
204
|
+
// @public (undocumented)
|
|
205
|
+
export interface DevBoxesDelayUpcomingActionQueryParam {
|
|
206
|
+
// (undocumented)
|
|
207
|
+
queryParameters: DevBoxesDelayUpcomingActionQueryParamProperties;
|
|
208
|
+
}
|
|
209
|
+
|
|
210
|
+
// @public (undocumented)
|
|
211
|
+
export interface DevBoxesDelayUpcomingActionQueryParamProperties {
|
|
212
|
+
delayUntil: Date | string;
|
|
213
|
+
}
|
|
214
|
+
|
|
200
215
|
// @public (undocumented)
|
|
201
216
|
export interface DevBoxesDeleteDevBox202Headers {
|
|
202
217
|
"operation-location"?: string;
|
|
@@ -240,7 +255,7 @@ export type DevBoxesDeleteDevBoxParameters = RequestParameters;
|
|
|
240
255
|
|
|
241
256
|
// @public (undocumented)
|
|
242
257
|
export interface DevBoxesGetDevBoxByUser {
|
|
243
|
-
delete(options?: DevBoxesDeleteDevBoxParameters): StreamableMethod<
|
|
258
|
+
delete(options?: DevBoxesDeleteDevBoxParameters): StreamableMethod<DevBoxesDeleteDevBox202Response | DevBoxesDeleteDevBox204Response | DevBoxesDeleteDevBoxDefaultResponse>;
|
|
244
259
|
get(options?: DevBoxesGetDevBoxByUserParameters): StreamableMethod<DevBoxesGetDevBoxByUser200Response | DevBoxesGetDevBoxByUserDefaultResponse>;
|
|
245
260
|
put(options: DevBoxesCreateDevBoxParameters): StreamableMethod<DevBoxesCreateDevBox200Response | DevBoxesCreateDevBox201Response | DevBoxesCreateDevBoxDefaultResponse>;
|
|
246
261
|
}
|
|
@@ -364,6 +379,37 @@ export interface DevBoxesGetScheduleByPoolDefaultResponse extends HttpResponse {
|
|
|
364
379
|
// @public (undocumented)
|
|
365
380
|
export type DevBoxesGetScheduleByPoolParameters = RequestParameters;
|
|
366
381
|
|
|
382
|
+
// @public (undocumented)
|
|
383
|
+
export interface DevBoxesGetUpcomingAction {
|
|
384
|
+
get(options?: DevBoxesGetUpcomingActionParameters): StreamableMethod<DevBoxesGetUpcomingAction200Response | DevBoxesGetUpcomingActionDefaultResponse>;
|
|
385
|
+
}
|
|
386
|
+
|
|
387
|
+
// @public
|
|
388
|
+
export interface DevBoxesGetUpcomingAction200Response extends HttpResponse {
|
|
389
|
+
// (undocumented)
|
|
390
|
+
body: UpcomingActionOutput;
|
|
391
|
+
// (undocumented)
|
|
392
|
+
status: "200";
|
|
393
|
+
}
|
|
394
|
+
|
|
395
|
+
// @public (undocumented)
|
|
396
|
+
export interface DevBoxesGetUpcomingActionDefaultHeaders {
|
|
397
|
+
"x-ms-error-code"?: string;
|
|
398
|
+
}
|
|
399
|
+
|
|
400
|
+
// @public
|
|
401
|
+
export interface DevBoxesGetUpcomingActionDefaultResponse extends HttpResponse {
|
|
402
|
+
// (undocumented)
|
|
403
|
+
body: CloudErrorOutput;
|
|
404
|
+
// (undocumented)
|
|
405
|
+
headers: RawHttpHeaders & DevBoxesGetUpcomingActionDefaultHeaders;
|
|
406
|
+
// (undocumented)
|
|
407
|
+
status: string;
|
|
408
|
+
}
|
|
409
|
+
|
|
410
|
+
// @public (undocumented)
|
|
411
|
+
export type DevBoxesGetUpcomingActionParameters = RequestParameters;
|
|
412
|
+
|
|
367
413
|
// @public (undocumented)
|
|
368
414
|
export interface DevBoxesListDevBoxesByUser {
|
|
369
415
|
get(options?: DevBoxesListDevBoxesByUserParameters): StreamableMethod<DevBoxesListDevBoxesByUser200Response | DevBoxesListDevBoxesByUserDefaultResponse>;
|
|
@@ -494,18 +540,72 @@ export interface DevBoxesListSchedulesByPoolQueryParamProperties {
|
|
|
494
540
|
}
|
|
495
541
|
|
|
496
542
|
// @public (undocumented)
|
|
497
|
-
export interface
|
|
498
|
-
|
|
543
|
+
export interface DevBoxesListUpcomingActions {
|
|
544
|
+
get(options?: DevBoxesListUpcomingActionsParameters): StreamableMethod<DevBoxesListUpcomingActions200Response | DevBoxesListUpcomingActionsDefaultResponse>;
|
|
499
545
|
}
|
|
500
546
|
|
|
501
547
|
// @public
|
|
502
|
-
export interface
|
|
548
|
+
export interface DevBoxesListUpcomingActions200Response extends HttpResponse {
|
|
503
549
|
// (undocumented)
|
|
504
|
-
body:
|
|
550
|
+
body: UpcomingActionsListResultOutput;
|
|
505
551
|
// (undocumented)
|
|
506
552
|
status: "200";
|
|
507
553
|
}
|
|
508
554
|
|
|
555
|
+
// @public (undocumented)
|
|
556
|
+
export interface DevBoxesListUpcomingActionsDefaultHeaders {
|
|
557
|
+
"x-ms-error-code"?: string;
|
|
558
|
+
}
|
|
559
|
+
|
|
560
|
+
// @public
|
|
561
|
+
export interface DevBoxesListUpcomingActionsDefaultResponse extends HttpResponse {
|
|
562
|
+
// (undocumented)
|
|
563
|
+
body: CloudErrorOutput;
|
|
564
|
+
// (undocumented)
|
|
565
|
+
headers: RawHttpHeaders & DevBoxesListUpcomingActionsDefaultHeaders;
|
|
566
|
+
// (undocumented)
|
|
567
|
+
status: string;
|
|
568
|
+
}
|
|
569
|
+
|
|
570
|
+
// @public (undocumented)
|
|
571
|
+
export type DevBoxesListUpcomingActionsParameters = RequestParameters;
|
|
572
|
+
|
|
573
|
+
// @public (undocumented)
|
|
574
|
+
export interface DevBoxesSkipUpcomingAction {
|
|
575
|
+
post(options?: DevBoxesSkipUpcomingActionParameters): StreamableMethod<DevBoxesSkipUpcomingAction204Response | DevBoxesSkipUpcomingActionDefaultResponse>;
|
|
576
|
+
}
|
|
577
|
+
|
|
578
|
+
// @public
|
|
579
|
+
export interface DevBoxesSkipUpcomingAction204Response extends HttpResponse {
|
|
580
|
+
// (undocumented)
|
|
581
|
+
body: Record<string, unknown>;
|
|
582
|
+
// (undocumented)
|
|
583
|
+
status: "204";
|
|
584
|
+
}
|
|
585
|
+
|
|
586
|
+
// @public (undocumented)
|
|
587
|
+
export interface DevBoxesSkipUpcomingActionDefaultHeaders {
|
|
588
|
+
"x-ms-error-code"?: string;
|
|
589
|
+
}
|
|
590
|
+
|
|
591
|
+
// @public
|
|
592
|
+
export interface DevBoxesSkipUpcomingActionDefaultResponse extends HttpResponse {
|
|
593
|
+
// (undocumented)
|
|
594
|
+
body: CloudErrorOutput;
|
|
595
|
+
// (undocumented)
|
|
596
|
+
headers: RawHttpHeaders & DevBoxesSkipUpcomingActionDefaultHeaders;
|
|
597
|
+
// (undocumented)
|
|
598
|
+
status: string;
|
|
599
|
+
}
|
|
600
|
+
|
|
601
|
+
// @public (undocumented)
|
|
602
|
+
export type DevBoxesSkipUpcomingActionParameters = RequestParameters;
|
|
603
|
+
|
|
604
|
+
// @public (undocumented)
|
|
605
|
+
export interface DevBoxesStartDevBox {
|
|
606
|
+
post(options?: DevBoxesStartDevBoxParameters): StreamableMethod<DevBoxesStartDevBox202Response | DevBoxesStartDevBoxDefaultResponse>;
|
|
607
|
+
}
|
|
608
|
+
|
|
509
609
|
// @public (undocumented)
|
|
510
610
|
export interface DevBoxesStartDevBox202Headers {
|
|
511
611
|
"operation-location"?: string;
|
|
@@ -541,15 +641,7 @@ export type DevBoxesStartDevBoxParameters = RequestParameters;
|
|
|
541
641
|
|
|
542
642
|
// @public (undocumented)
|
|
543
643
|
export interface DevBoxesStopDevBox {
|
|
544
|
-
post(options?: DevBoxesStopDevBoxParameters): StreamableMethod<
|
|
545
|
-
}
|
|
546
|
-
|
|
547
|
-
// @public
|
|
548
|
-
export interface DevBoxesStopDevBox200Response extends HttpResponse {
|
|
549
|
-
// (undocumented)
|
|
550
|
-
body: DevBoxOutput;
|
|
551
|
-
// (undocumented)
|
|
552
|
-
status: "200";
|
|
644
|
+
post(options?: DevBoxesStopDevBoxParameters): StreamableMethod<DevBoxesStopDevBox202Response | DevBoxesStopDevBoxDefaultResponse>;
|
|
553
645
|
}
|
|
554
646
|
|
|
555
647
|
// @public (undocumented)
|
|
@@ -583,7 +675,18 @@ export interface DevBoxesStopDevBoxDefaultResponse extends HttpResponse {
|
|
|
583
675
|
}
|
|
584
676
|
|
|
585
677
|
// @public (undocumented)
|
|
586
|
-
export type DevBoxesStopDevBoxParameters = RequestParameters;
|
|
678
|
+
export type DevBoxesStopDevBoxParameters = DevBoxesStopDevBoxQueryParam & RequestParameters;
|
|
679
|
+
|
|
680
|
+
// @public (undocumented)
|
|
681
|
+
export interface DevBoxesStopDevBoxQueryParam {
|
|
682
|
+
// (undocumented)
|
|
683
|
+
queryParameters?: DevBoxesStopDevBoxQueryParamProperties;
|
|
684
|
+
}
|
|
685
|
+
|
|
686
|
+
// @public (undocumented)
|
|
687
|
+
export interface DevBoxesStopDevBoxQueryParamProperties {
|
|
688
|
+
hibernate?: boolean;
|
|
689
|
+
}
|
|
587
690
|
|
|
588
691
|
// @public
|
|
589
692
|
export interface DevBoxListResultOutput {
|
|
@@ -597,6 +700,7 @@ export interface DevBoxOutput {
|
|
|
597
700
|
createdTime?: string;
|
|
598
701
|
errorDetails?: ProvisioningErrorOutput;
|
|
599
702
|
hardwareProfile?: HardwareProfileOutput;
|
|
703
|
+
hibernateSupport?: "Disabled" | "Enabled";
|
|
600
704
|
imageReference?: ImageReferenceOutput;
|
|
601
705
|
localAdministrator?: "Enabled" | "Disabled";
|
|
602
706
|
location?: string;
|
|
@@ -761,9 +865,9 @@ export interface DevCenterListProjectsQueryParamProperties {
|
|
|
761
865
|
export interface Environment extends EnvironmentUpdateProperties {
|
|
762
866
|
environmentType: string;
|
|
763
867
|
name?: string;
|
|
764
|
-
owner?: string;
|
|
765
868
|
provisioningState?: string;
|
|
766
869
|
resourceGroupId?: string;
|
|
870
|
+
user?: string;
|
|
767
871
|
}
|
|
768
872
|
|
|
769
873
|
// @public
|
|
@@ -776,9 +880,9 @@ export interface EnvironmentListResultOutput {
|
|
|
776
880
|
export interface EnvironmentOutput extends EnvironmentUpdatePropertiesOutput {
|
|
777
881
|
environmentType: string;
|
|
778
882
|
name?: string;
|
|
779
|
-
owner?: string;
|
|
780
883
|
provisioningState?: string;
|
|
781
884
|
resourceGroupId?: string;
|
|
885
|
+
user?: string;
|
|
782
886
|
}
|
|
783
887
|
|
|
784
888
|
// @public
|
|
@@ -919,62 +1023,6 @@ export interface EnvironmentsDeleteEnvironment204Response extends HttpResponse {
|
|
|
919
1023
|
status: "204";
|
|
920
1024
|
}
|
|
921
1025
|
|
|
922
|
-
// @public (undocumented)
|
|
923
|
-
export interface EnvironmentsDeleteEnvironmentAction {
|
|
924
|
-
post(options: EnvironmentsDeleteEnvironmentActionParameters): StreamableMethod<EnvironmentsDeleteEnvironmentAction200Response | EnvironmentsDeleteEnvironmentAction202Response | EnvironmentsDeleteEnvironmentActionDefaultResponse>;
|
|
925
|
-
}
|
|
926
|
-
|
|
927
|
-
// @public
|
|
928
|
-
export interface EnvironmentsDeleteEnvironmentAction200Response extends HttpResponse {
|
|
929
|
-
// (undocumented)
|
|
930
|
-
body: Record<string, unknown>;
|
|
931
|
-
// (undocumented)
|
|
932
|
-
status: "200";
|
|
933
|
-
}
|
|
934
|
-
|
|
935
|
-
// @public (undocumented)
|
|
936
|
-
export interface EnvironmentsDeleteEnvironmentAction202Headers {
|
|
937
|
-
"operation-location"?: string;
|
|
938
|
-
}
|
|
939
|
-
|
|
940
|
-
// @public
|
|
941
|
-
export interface EnvironmentsDeleteEnvironmentAction202Response extends HttpResponse {
|
|
942
|
-
// (undocumented)
|
|
943
|
-
body: Record<string, unknown>;
|
|
944
|
-
// (undocumented)
|
|
945
|
-
headers: RawHttpHeaders & EnvironmentsDeleteEnvironmentAction202Headers;
|
|
946
|
-
// (undocumented)
|
|
947
|
-
status: "202";
|
|
948
|
-
}
|
|
949
|
-
|
|
950
|
-
// @public (undocumented)
|
|
951
|
-
export interface EnvironmentsDeleteEnvironmentActionBodyParam {
|
|
952
|
-
body: ActionRequest;
|
|
953
|
-
}
|
|
954
|
-
|
|
955
|
-
// @public (undocumented)
|
|
956
|
-
export interface EnvironmentsDeleteEnvironmentActionDefaultHeaders {
|
|
957
|
-
"x-ms-error-code"?: string;
|
|
958
|
-
}
|
|
959
|
-
|
|
960
|
-
// @public
|
|
961
|
-
export interface EnvironmentsDeleteEnvironmentActionDefaultResponse extends HttpResponse {
|
|
962
|
-
// (undocumented)
|
|
963
|
-
body: CloudErrorOutput;
|
|
964
|
-
// (undocumented)
|
|
965
|
-
headers: RawHttpHeaders & EnvironmentsDeleteEnvironmentActionDefaultHeaders;
|
|
966
|
-
// (undocumented)
|
|
967
|
-
status: string;
|
|
968
|
-
}
|
|
969
|
-
|
|
970
|
-
// @public (undocumented)
|
|
971
|
-
export interface EnvironmentsDeleteEnvironmentActionMediaTypesParam {
|
|
972
|
-
contentType?: "application/json";
|
|
973
|
-
}
|
|
974
|
-
|
|
975
|
-
// @public (undocumented)
|
|
976
|
-
export type EnvironmentsDeleteEnvironmentActionParameters = EnvironmentsDeleteEnvironmentActionMediaTypesParam & EnvironmentsDeleteEnvironmentActionBodyParam & RequestParameters;
|
|
977
|
-
|
|
978
1026
|
// @public (undocumented)
|
|
979
1027
|
export interface EnvironmentsDeleteEnvironmentDefaultHeaders {
|
|
980
1028
|
"x-ms-error-code"?: string;
|
|
@@ -1145,68 +1193,6 @@ export interface EnvironmentsGetEnvironmentByUserDefaultResponse extends HttpRes
|
|
|
1145
1193
|
// @public (undocumented)
|
|
1146
1194
|
export type EnvironmentsGetEnvironmentByUserParameters = RequestParameters;
|
|
1147
1195
|
|
|
1148
|
-
// @public (undocumented)
|
|
1149
|
-
export interface EnvironmentsListArtifactsByEnvironment {
|
|
1150
|
-
get(options?: EnvironmentsListArtifactsByEnvironmentParameters): StreamableMethod<EnvironmentsListArtifactsByEnvironment200Response | EnvironmentsListArtifactsByEnvironmentDefaultResponse>;
|
|
1151
|
-
}
|
|
1152
|
-
|
|
1153
|
-
// @public
|
|
1154
|
-
export interface EnvironmentsListArtifactsByEnvironment200Response extends HttpResponse {
|
|
1155
|
-
// (undocumented)
|
|
1156
|
-
body: ArtifactListResultOutput;
|
|
1157
|
-
// (undocumented)
|
|
1158
|
-
status: "200";
|
|
1159
|
-
}
|
|
1160
|
-
|
|
1161
|
-
// @public (undocumented)
|
|
1162
|
-
export interface EnvironmentsListArtifactsByEnvironmentAndPath {
|
|
1163
|
-
get(options?: EnvironmentsListArtifactsByEnvironmentAndPathParameters): StreamableMethod<EnvironmentsListArtifactsByEnvironmentAndPath200Response | EnvironmentsListArtifactsByEnvironmentAndPathDefaultResponse>;
|
|
1164
|
-
}
|
|
1165
|
-
|
|
1166
|
-
// @public
|
|
1167
|
-
export interface EnvironmentsListArtifactsByEnvironmentAndPath200Response extends HttpResponse {
|
|
1168
|
-
// (undocumented)
|
|
1169
|
-
body: ArtifactListResultOutput;
|
|
1170
|
-
// (undocumented)
|
|
1171
|
-
status: "200";
|
|
1172
|
-
}
|
|
1173
|
-
|
|
1174
|
-
// @public (undocumented)
|
|
1175
|
-
export interface EnvironmentsListArtifactsByEnvironmentAndPathDefaultHeaders {
|
|
1176
|
-
"x-ms-error-code"?: string;
|
|
1177
|
-
}
|
|
1178
|
-
|
|
1179
|
-
// @public
|
|
1180
|
-
export interface EnvironmentsListArtifactsByEnvironmentAndPathDefaultResponse extends HttpResponse {
|
|
1181
|
-
// (undocumented)
|
|
1182
|
-
body: CloudErrorOutput;
|
|
1183
|
-
// (undocumented)
|
|
1184
|
-
headers: RawHttpHeaders & EnvironmentsListArtifactsByEnvironmentAndPathDefaultHeaders;
|
|
1185
|
-
// (undocumented)
|
|
1186
|
-
status: string;
|
|
1187
|
-
}
|
|
1188
|
-
|
|
1189
|
-
// @public (undocumented)
|
|
1190
|
-
export type EnvironmentsListArtifactsByEnvironmentAndPathParameters = RequestParameters;
|
|
1191
|
-
|
|
1192
|
-
// @public (undocumented)
|
|
1193
|
-
export interface EnvironmentsListArtifactsByEnvironmentDefaultHeaders {
|
|
1194
|
-
"x-ms-error-code"?: string;
|
|
1195
|
-
}
|
|
1196
|
-
|
|
1197
|
-
// @public
|
|
1198
|
-
export interface EnvironmentsListArtifactsByEnvironmentDefaultResponse extends HttpResponse {
|
|
1199
|
-
// (undocumented)
|
|
1200
|
-
body: CloudErrorOutput;
|
|
1201
|
-
// (undocumented)
|
|
1202
|
-
headers: RawHttpHeaders & EnvironmentsListArtifactsByEnvironmentDefaultHeaders;
|
|
1203
|
-
// (undocumented)
|
|
1204
|
-
status: string;
|
|
1205
|
-
}
|
|
1206
|
-
|
|
1207
|
-
// @public (undocumented)
|
|
1208
|
-
export type EnvironmentsListArtifactsByEnvironmentParameters = RequestParameters;
|
|
1209
|
-
|
|
1210
1196
|
// @public (undocumented)
|
|
1211
1197
|
export interface EnvironmentsListCatalogItems {
|
|
1212
1198
|
get(options?: EnvironmentsListCatalogItemsParameters): StreamableMethod<EnvironmentsListCatalogItems200Response | EnvironmentsListCatalogItemsDefaultResponse>;
|
|
@@ -1564,17 +1550,29 @@ export function isUnexpected(response: DevBoxesGetDevBoxByUser200Response | DevB
|
|
|
1564
1550
|
export function isUnexpected(response: DevBoxesCreateDevBox200Response | DevBoxesCreateDevBox201Response | DevBoxesCreateDevBoxDefaultResponse): response is DevBoxesCreateDevBoxDefaultResponse;
|
|
1565
1551
|
|
|
1566
1552
|
// @public (undocumented)
|
|
1567
|
-
export function isUnexpected(response:
|
|
1553
|
+
export function isUnexpected(response: DevBoxesDeleteDevBox202Response | DevBoxesDeleteDevBox204Response | DevBoxesDeleteDevBoxDefaultResponse): response is DevBoxesDeleteDevBoxDefaultResponse;
|
|
1568
1554
|
|
|
1569
1555
|
// @public (undocumented)
|
|
1570
|
-
export function isUnexpected(response:
|
|
1556
|
+
export function isUnexpected(response: DevBoxesStartDevBox202Response | DevBoxesStartDevBoxDefaultResponse): response is DevBoxesStartDevBoxDefaultResponse;
|
|
1571
1557
|
|
|
1572
1558
|
// @public (undocumented)
|
|
1573
|
-
export function isUnexpected(response:
|
|
1559
|
+
export function isUnexpected(response: DevBoxesStopDevBox202Response | DevBoxesStopDevBoxDefaultResponse): response is DevBoxesStopDevBoxDefaultResponse;
|
|
1574
1560
|
|
|
1575
1561
|
// @public (undocumented)
|
|
1576
1562
|
export function isUnexpected(response: DevBoxesGetRemoteConnection200Response | DevBoxesGetRemoteConnectionDefaultResponse): response is DevBoxesGetRemoteConnectionDefaultResponse;
|
|
1577
1563
|
|
|
1564
|
+
// @public (undocumented)
|
|
1565
|
+
export function isUnexpected(response: DevBoxesListUpcomingActions200Response | DevBoxesListUpcomingActionsDefaultResponse): response is DevBoxesListUpcomingActionsDefaultResponse;
|
|
1566
|
+
|
|
1567
|
+
// @public (undocumented)
|
|
1568
|
+
export function isUnexpected(response: DevBoxesGetUpcomingAction200Response | DevBoxesGetUpcomingActionDefaultResponse): response is DevBoxesGetUpcomingActionDefaultResponse;
|
|
1569
|
+
|
|
1570
|
+
// @public (undocumented)
|
|
1571
|
+
export function isUnexpected(response: DevBoxesSkipUpcomingAction204Response | DevBoxesSkipUpcomingActionDefaultResponse): response is DevBoxesSkipUpcomingActionDefaultResponse;
|
|
1572
|
+
|
|
1573
|
+
// @public (undocumented)
|
|
1574
|
+
export function isUnexpected(response: DevBoxesDelayUpcomingAction200Response | DevBoxesDelayUpcomingActionDefaultResponse): response is DevBoxesDelayUpcomingActionDefaultResponse;
|
|
1575
|
+
|
|
1578
1576
|
// @public (undocumented)
|
|
1579
1577
|
export function isUnexpected(response: EnvironmentsListEnvironments200Response | EnvironmentsListEnvironmentsDefaultResponse): response is EnvironmentsListEnvironmentsDefaultResponse;
|
|
1580
1578
|
|
|
@@ -1596,18 +1594,9 @@ export function isUnexpected(response: EnvironmentsDeleteEnvironment200Response
|
|
|
1596
1594
|
// @public (undocumented)
|
|
1597
1595
|
export function isUnexpected(response: EnvironmentsDeployEnvironmentAction200Response | EnvironmentsDeployEnvironmentAction202Response | EnvironmentsDeployEnvironmentActionDefaultResponse): response is EnvironmentsDeployEnvironmentActionDefaultResponse;
|
|
1598
1596
|
|
|
1599
|
-
// @public (undocumented)
|
|
1600
|
-
export function isUnexpected(response: EnvironmentsDeleteEnvironmentAction200Response | EnvironmentsDeleteEnvironmentAction202Response | EnvironmentsDeleteEnvironmentActionDefaultResponse): response is EnvironmentsDeleteEnvironmentActionDefaultResponse;
|
|
1601
|
-
|
|
1602
1597
|
// @public (undocumented)
|
|
1603
1598
|
export function isUnexpected(response: EnvironmentsCustomEnvironmentAction200Response | EnvironmentsCustomEnvironmentAction202Response | EnvironmentsCustomEnvironmentActionDefaultResponse): response is EnvironmentsCustomEnvironmentActionDefaultResponse;
|
|
1604
1599
|
|
|
1605
|
-
// @public (undocumented)
|
|
1606
|
-
export function isUnexpected(response: EnvironmentsListArtifactsByEnvironment200Response | EnvironmentsListArtifactsByEnvironmentDefaultResponse): response is EnvironmentsListArtifactsByEnvironmentDefaultResponse;
|
|
1607
|
-
|
|
1608
|
-
// @public (undocumented)
|
|
1609
|
-
export function isUnexpected(response: EnvironmentsListArtifactsByEnvironmentAndPath200Response | EnvironmentsListArtifactsByEnvironmentAndPathDefaultResponse): response is EnvironmentsListArtifactsByEnvironmentAndPathDefaultResponse;
|
|
1610
|
-
|
|
1611
1600
|
// @public (undocumented)
|
|
1612
1601
|
export function isUnexpected(response: EnvironmentsListCatalogItems200Response | EnvironmentsListCatalogItemsDefaultResponse): response is EnvironmentsListCatalogItemsDefaultResponse;
|
|
1613
1602
|
|
|
@@ -1657,6 +1646,7 @@ export interface PoolListResultOutput {
|
|
|
1657
1646
|
// @public
|
|
1658
1647
|
export interface PoolOutput {
|
|
1659
1648
|
hardwareProfile?: HardwareProfileOutput;
|
|
1649
|
+
hibernateSupport?: "Disabled" | "Enabled";
|
|
1660
1650
|
imageReference?: ImageReferenceOutput;
|
|
1661
1651
|
localAdministrator?: "Enabled" | "Disabled";
|
|
1662
1652
|
location?: string;
|
|
@@ -1710,14 +1700,15 @@ export interface Routes {
|
|
|
1710
1700
|
(path: "/projects/{projectName}/users/{userId}/devboxes/{devBoxName}:start", projectName: string, userId: string, devBoxName: string): DevBoxesStartDevBox;
|
|
1711
1701
|
(path: "/projects/{projectName}/users/{userId}/devboxes/{devBoxName}:stop", projectName: string, userId: string, devBoxName: string): DevBoxesStopDevBox;
|
|
1712
1702
|
(path: "/projects/{projectName}/users/{userId}/devboxes/{devBoxName}/remoteConnection", projectName: string, userId: string, devBoxName: string): DevBoxesGetRemoteConnection;
|
|
1703
|
+
(path: "/projects/{projectName}/users/{userId}/devboxes/{devBoxName}/upcomingActions", projectName: string, userId: string, devBoxName: string): DevBoxesListUpcomingActions;
|
|
1704
|
+
(path: "/projects/{projectName}/users/{userId}/devboxes/{devBoxName}/upcomingActions/{upcomingActionId}", projectName: string, userId: string, devBoxName: string, upcomingActionId: string): DevBoxesGetUpcomingAction;
|
|
1705
|
+
(path: "/projects/{projectName}/users/{userId}/devboxes/{devBoxName}/upcomingActions/{upcomingActionId}:skip", projectName: string, userId: string, devBoxName: string, upcomingActionId: string): DevBoxesSkipUpcomingAction;
|
|
1706
|
+
(path: "/projects/{projectName}/users/{userId}/devboxes/{devBoxName}/upcomingActions/{upcomingActionId}:delay", projectName: string, userId: string, devBoxName: string, upcomingActionId: string): DevBoxesDelayUpcomingAction;
|
|
1713
1707
|
(path: "/projects/{projectName}/environments", projectName: string): EnvironmentsListEnvironments;
|
|
1714
1708
|
(path: "/projects/{projectName}/users/{userId}/environments", projectName: string, userId: string): EnvironmentsListEnvironmentsByUser;
|
|
1715
1709
|
(path: "/projects/{projectName}/users/{userId}/environments/{environmentName}", projectName: string, userId: string, environmentName: string): EnvironmentsGetEnvironmentByUser;
|
|
1716
1710
|
(path: "/projects/{projectName}/users/{userId}/environments/{environmentName}:deploy", projectName: string, userId: string, environmentName: string): EnvironmentsDeployEnvironmentAction;
|
|
1717
|
-
(path: "/projects/{projectName}/users/{userId}/environments/{environmentName}:delete", projectName: string, userId: string, environmentName: string): EnvironmentsDeleteEnvironmentAction;
|
|
1718
1711
|
(path: "/projects/{projectName}/users/{userId}/environments/{environmentName}:custom", projectName: string, userId: string, environmentName: string): EnvironmentsCustomEnvironmentAction;
|
|
1719
|
-
(path: "/projects/{projectName}/users/{userId}/environments/{environmentName}/artifacts", projectName: string, userId: string, environmentName: string): EnvironmentsListArtifactsByEnvironment;
|
|
1720
|
-
(path: "/projects/{projectName}/users/{userId}/environments/{environmentName}/artifacts/{artifactPath}", projectName: string, userId: string, environmentName: string, artifactPath: string): EnvironmentsListArtifactsByEnvironmentAndPath;
|
|
1721
1712
|
(path: "/projects/{projectName}/catalogItems", projectName: string): EnvironmentsListCatalogItems;
|
|
1722
1713
|
(path: "/projects/{projectName}/catalogItems/{catalogItemId}", projectName: string, catalogItemId: string): EnvironmentsGetCatalogItem;
|
|
1723
1714
|
(path: "/projects/{projectName}/catalogItems/{catalogItemId}/versions", projectName: string, catalogItemId: string): EnvironmentsListCatalogItemVersions;
|
|
@@ -1764,6 +1755,22 @@ export interface StorageProfileOutput {
|
|
|
1764
1755
|
osDisk?: OSDiskOutput;
|
|
1765
1756
|
}
|
|
1766
1757
|
|
|
1758
|
+
// @public
|
|
1759
|
+
export interface UpcomingActionOutput {
|
|
1760
|
+
actionType?: "Stop";
|
|
1761
|
+
id?: string;
|
|
1762
|
+
originalScheduledTime?: string;
|
|
1763
|
+
reason?: "Schedule";
|
|
1764
|
+
scheduledTime?: string;
|
|
1765
|
+
sourceId?: string;
|
|
1766
|
+
}
|
|
1767
|
+
|
|
1768
|
+
// @public
|
|
1769
|
+
export interface UpcomingActionsListResultOutput {
|
|
1770
|
+
nextLink?: string;
|
|
1771
|
+
value: Array<UpcomingActionOutput>;
|
|
1772
|
+
}
|
|
1773
|
+
|
|
1767
1774
|
// (No @packageDocumentation comment for this package)
|
|
1768
1775
|
|
|
1769
1776
|
```
|