Skip to content

Commit 43011bc

Browse files
api-clients-generation-pipeline[bot]ci.datadog-api-specnkzou
authored
Regenerate client from commit 0bdea812 of spec repo (#825)
Co-authored-by: ci.datadog-api-spec <[email protected]> Co-authored-by: api-clients-generation-pipeline[bot] <54105614+api-clients-generation-pipeline[bot]@users.noreply.github.com> Co-authored-by: Kevin Zou <[email protected]>
1 parent 48c5d22 commit 43011bc

File tree

4 files changed

+10
-5
lines changed

4 files changed

+10
-5
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": "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"
99
},
1010
"v2": {
1111
"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"
1414
}
1515
}
1616
}

.generator/schemas/v1/openapi.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10858,6 +10858,7 @@ components:
1085810858
- validates
1085910859
- isInMoreThan
1086010860
- isInLessThan
10861+
- doesNotExist
1086110862
example: contains
1086210863
type: string
1086310864
x-enum-varnames:
@@ -10874,6 +10875,7 @@ components:
1087410875
- VALIDATES
1087510876
- IS_IN_MORE_DAYS_THAN
1087610877
- IS_IN_LESS_DAYS_THAN
10878+
- DOES_NOT_EXIST
1087710879
SyntheticsAssertionTarget:
1087810880
description: An assertion which uses a simple target.
1087910881
properties:

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -916,6 +916,7 @@ const enumsMap: { [key: string]: any[] } = {
916916
"validates",
917917
"isInMoreThan",
918918
"isInLessThan",
919+
"doesNotExist",
919920
],
920921
SyntheticsAssertionType: [
921922
"body",

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

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,8 @@ export type SyntheticsAssertionOperator =
1717
| typeof DOES_NOT_MATCH
1818
| typeof VALIDATES
1919
| 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;
2122
export const CONTAINS = "contains";
2223
export const DOES_NOT_CONTAIN = "doesNotContain";
2324
export const IS = "is";
@@ -31,3 +32,4 @@ export const DOES_NOT_MATCH = "doesNotMatch";
3132
export const VALIDATES = "validates";
3233
export const IS_IN_MORE_DAYS_THAN = "isInMoreThan";
3334
export const IS_IN_LESS_DAYS_THAN = "isInLessThan";
35+
export const DOES_NOT_EXIST = "doesNotExist";

0 commit comments

Comments
 (0)