File tree Expand file tree Collapse file tree 2 files changed +25
-6
lines changed Expand file tree Collapse file tree 2 files changed +25
-6
lines changed Original file line number Diff line number Diff line change @@ -3972,7 +3972,16 @@ export interface TestNode {
3972
3972
/**
3973
3973
* current state of the test run
3974
3974
*/
3975
- status ?: 'pending' | 'cancelled' | 'creating' | 'building' | 'running' | 'succeeded' | 'failed' | 'errored'
3975
+ status ?:
3976
+ | 'pending'
3977
+ | 'cancelled'
3978
+ | 'creating'
3979
+ | 'building'
3980
+ | 'running'
3981
+ | 'succeeded'
3982
+ | 'failed'
3983
+ | 'errored'
3984
+ | 'debugging'
3976
3985
/**
3977
3986
* when test node was updated
3978
3987
*/
@@ -4058,7 +4067,16 @@ export interface TestRun {
4058
4067
/**
4059
4068
* current state of the test run
4060
4069
*/
4061
- status ?: 'pending' | 'cancelled' | 'creating' | 'building' | 'running' | 'succeeded' | 'failed' | 'errored'
4070
+ status ?:
4071
+ | 'pending'
4072
+ | 'cancelled'
4073
+ | 'creating'
4074
+ | 'building'
4075
+ | 'running'
4076
+ | 'succeeded'
4077
+ | 'failed'
4078
+ | 'errored'
4079
+ | 'debugging'
4062
4080
/**
4063
4081
* The download location for the source code to be tested
4064
4082
*/
@@ -4178,7 +4196,7 @@ export interface PrivateSpacesVpn {
4178
4196
/**
4179
4197
* Status of the VPN
4180
4198
*/
4181
- status ?: 'pending' | 'provisioning' | 'active' | 'deprovisioning' | 'complete' | ' failed'
4199
+ status ?: 'pending' | 'provisioning' | 'active' | 'deprovisioning' | 'failed'
4182
4200
/**
4183
4201
* Details of the status
4184
4202
*/
Original file line number Diff line number Diff line change 15044
15044
" running" ,
15045
15045
" succeeded" ,
15046
15046
" failed" ,
15047
- " errored"
15047
+ " errored" ,
15048
+ " debugging"
15048
15049
],
15049
15050
"readOnly" : true ,
15050
15051
"type" : [
15251
15252
" running" ,
15252
15253
" succeeded" ,
15253
15254
" failed" ,
15254
- " errored"
15255
+ " errored" ,
15256
+ " debugging"
15255
15257
],
15256
15258
"readOnly" : true ,
15257
15259
"type" : [
15802
15804
" provisioning" ,
15803
15805
" active" ,
15804
15806
" deprovisioning" ,
15805
- " complete" ,
15806
15807
" failed"
15807
15808
],
15808
15809
"example" : " active" ,
You can’t perform that action at this time.
0 commit comments