Skip to content

Commit 78300ba

Browse files
api-clients-generation-pipeline[bot]ci.datadog-api-spec
andauthored
Add isUndefined synthetics assertion operator (#1193)
Co-authored-by: ci.datadog-api-spec <[email protected]>
1 parent 4b3e0bb commit 78300ba

File tree

4 files changed

+9
-4
lines changed

4 files changed

+9
-4
lines changed

.apigentools-info

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,13 @@
44
"spec_versions": {
55
"v1": {
66
"apigentools_version": "1.6.4",
7-
"regenerated": "2023-06-15 13:52:12.792888",
8-
"spec_repo_commit": "cd68c9b8"
7+
"regenerated": "2023-06-15 14:21:28.636683",
8+
"spec_repo_commit": "aa16daa0"
99
},
1010
"v2": {
1111
"apigentools_version": "1.6.4",
12-
"regenerated": "2023-06-15 13:52:12.810917",
13-
"spec_repo_commit": "cd68c9b8"
12+
"regenerated": "2023-06-15 14:21:28.649631",
13+
"spec_repo_commit": "aa16daa0"
1414
}
1515
}
1616
}

.generator/schemas/v1/openapi.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12408,6 +12408,7 @@ components:
1240812408
- isInMoreThan
1240912409
- isInLessThan
1241012410
- doesNotExist
12411+
- isUndefined
1241112412
example: contains
1241212413
type: string
1241312414
x-enum-varnames:
@@ -12425,6 +12426,7 @@ components:
1242512426
- IS_IN_MORE_DAYS_THAN
1242612427
- IS_IN_LESS_DAYS_THAN
1242712428
- DOES_NOT_EXIST
12429+
- IS_UNDEFINED
1242812430
SyntheticsAssertionTarget:
1242912431
description: An assertion which uses a simple target.
1243012432
properties:

packages/datadog-api-client-v1/models/ObjectSerializer.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1056,6 +1056,7 @@ const enumsMap: { [key: string]: any[] } = {
10561056
"isInMoreThan",
10571057
"isInLessThan",
10581058
"doesNotExist",
1059+
"isUndefined",
10591060
],
10601061
SyntheticsAssertionType: [
10611062
"body",

packages/datadog-api-client-v1/models/SyntheticsAssertionOperator.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ export type SyntheticsAssertionOperator =
2525
| typeof IS_IN_MORE_DAYS_THAN
2626
| typeof IS_IN_LESS_DAYS_THAN
2727
| typeof DOES_NOT_EXIST
28+
| typeof IS_UNDEFINED
2829
| UnparsedObject;
2930
export const CONTAINS = "contains";
3031
export const DOES_NOT_CONTAIN = "doesNotContain";
@@ -40,3 +41,4 @@ export const VALIDATES = "validates";
4041
export const IS_IN_MORE_DAYS_THAN = "isInMoreThan";
4142
export const IS_IN_LESS_DAYS_THAN = "isInLessThan";
4243
export const DOES_NOT_EXIST = "doesNotExist";
44+
export const IS_UNDEFINED = "isUndefined";

0 commit comments

Comments
 (0)