File tree Expand file tree Collapse file tree 4 files changed +10
-5
lines changed
packages/datadog-api-client-v1/models Expand file tree Collapse file tree 4 files changed +10
-5
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.4",
7
- "regenerated": "2022-09-07 19:30 :40.870279 ",
8
- "spec_repo_commit": "33b7a42c "
7
+ "regenerated": "2022-09-09 15:07 :40.480200 ",
8
+ "spec_repo_commit": "0bdea812 "
9
9
},
10
10
"v2": {
11
11
"apigentools_version": "1.6.4",
12
- "regenerated": "2022-09-07 19:30 :40.887104 ",
13
- "spec_repo_commit": "33b7a42c "
12
+ "regenerated": "2022-09-09 15:07 :40.495134 ",
13
+ "spec_repo_commit": "0bdea812 "
14
14
}
15
15
}
16
16
}
Original file line number Diff line number Diff line change @@ -10858,6 +10858,7 @@ components:
10858
10858
- validates
10859
10859
- isInMoreThan
10860
10860
- isInLessThan
10861
+ - doesNotExist
10861
10862
example: contains
10862
10863
type: string
10863
10864
x-enum-varnames:
@@ -10874,6 +10875,7 @@ components:
10874
10875
- VALIDATES
10875
10876
- IS_IN_MORE_DAYS_THAN
10876
10877
- IS_IN_LESS_DAYS_THAN
10878
+ - DOES_NOT_EXIST
10877
10879
SyntheticsAssertionTarget:
10878
10880
description: An assertion which uses a simple target.
10879
10881
properties:
Original file line number Diff line number Diff line change @@ -916,6 +916,7 @@ const enumsMap: { [key: string]: any[] } = {
916
916
"validates" ,
917
917
"isInMoreThan" ,
918
918
"isInLessThan" ,
919
+ "doesNotExist" ,
919
920
] ,
920
921
SyntheticsAssertionType : [
921
922
"body" ,
Original file line number Diff line number Diff line change @@ -17,7 +17,8 @@ export type SyntheticsAssertionOperator =
17
17
| typeof DOES_NOT_MATCH
18
18
| typeof VALIDATES
19
19
| typeof IS_IN_MORE_DAYS_THAN
20
- | typeof IS_IN_LESS_DAYS_THAN ;
20
+ | typeof IS_IN_LESS_DAYS_THAN
21
+ | typeof DOES_NOT_EXIST ;
21
22
export const CONTAINS = "contains" ;
22
23
export const DOES_NOT_CONTAIN = "doesNotContain" ;
23
24
export const IS = "is" ;
@@ -31,3 +32,4 @@ export const DOES_NOT_MATCH = "doesNotMatch";
31
32
export const VALIDATES = "validates" ;
32
33
export const IS_IN_MORE_DAYS_THAN = "isInMoreThan" ;
33
34
export const IS_IN_LESS_DAYS_THAN = "isInLessThan" ;
35
+ export const DOES_NOT_EXIST = "doesNotExist" ;
You can’t perform that action at this time.
0 commit comments