File tree Expand file tree Collapse file tree 4 files changed +4
-9
lines changed
packages/datadog-api-client-v1/models Expand file tree Collapse file tree 4 files changed +4
-9
lines changed Original file line number Diff line number Diff line change 4
4
"spec_versions": {
5
5
"v1": {
6
6
"apigentools_version": "1.6.2",
7
- "regenerated": "2022-08-18 14 :15:13.204003 ",
8
- "spec_repo_commit": "063ba8c1 "
7
+ "regenerated": "2022-08-18 17 :15:24.272680 ",
8
+ "spec_repo_commit": "0a894d5c "
9
9
},
10
10
"v2": {
11
11
"apigentools_version": "1.6.2",
12
- "regenerated": "2022-08-18 14 :15:13.216459 ",
13
- "spec_repo_commit": "063ba8c1 "
12
+ "regenerated": "2022-08-18 17 :15:24.286415 ",
13
+ "spec_repo_commit": "0a894d5c "
14
14
}
15
15
}
16
16
}
Original file line number Diff line number Diff line change @@ -12634,14 +12634,12 @@ components:
12634
12634
enum:
12635
12635
- not_scheduled
12636
12636
- scheduled
12637
- - started
12638
12637
- finished
12639
12638
- finished_with_error
12640
12639
type: string
12641
12640
x-enum-varnames:
12642
12641
- NOT_SCHEDULED
12643
12642
- SCHEDULED
12644
- - STARTED
12645
12643
- FINISHED
12646
12644
- FINISHED_WITH_ERROR
12647
12645
SyntheticsTestRequest:
Original file line number Diff line number Diff line change @@ -1060,7 +1060,6 @@ const enumsMap: { [key: string]: any[] } = {
1060
1060
SyntheticsTestProcessStatus : [
1061
1061
"not_scheduled" ,
1062
1062
"scheduled" ,
1063
- "started" ,
1064
1063
"finished" ,
1065
1064
"finished_with_error" ,
1066
1065
] ,
Original file line number Diff line number Diff line change 7
7
export type SyntheticsTestProcessStatus =
8
8
| typeof NOT_SCHEDULED
9
9
| typeof SCHEDULED
10
- | typeof STARTED
11
10
| typeof FINISHED
12
11
| typeof FINISHED_WITH_ERROR ;
13
12
export const NOT_SCHEDULED = "not_scheduled" ;
14
13
export const SCHEDULED = "scheduled" ;
15
- export const STARTED = "started" ;
16
14
export const FINISHED = "finished" ;
17
15
export const FINISHED_WITH_ERROR = "finished_with_error" ;
You can’t perform that action at this time.
0 commit comments