Skip to content

Commit 6c9db7e

Browse files
api-clients-generation-pipeline[bot]ci.datadog-api-specnkzou
authored
Regenerate client from commit 0bdea812 of spec repo (#1153)
Co-authored-by: ci.datadog-api-spec <[email protected]> Co-authored-by: Kevin Zou <[email protected]>
1 parent 4a7d9d0 commit 6c9db7e

File tree

3 files changed

+10
-5
lines changed

3 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:33.542727",
8-
"spec_repo_commit": "33b7a42c"
7+
"regenerated": "2022-09-09 15:07:32.323951",
8+
"spec_repo_commit": "0bdea812"
99
},
1010
"v2": {
1111
"apigentools_version": "1.6.4",
12-
"regenerated": "2022-09-07 19:30:33.558188",
13-
"spec_repo_commit": "33b7a42c"
12+
"regenerated": "2022-09-09 15:07:32.339877",
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:

src/datadog_api_client/v1/model/synthetics_assertion_operator.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ class SyntheticsAssertionOperator(ModelSimple):
1515
"""
1616
Assertion operator to apply.
1717
18-
:param value: Must be one of ["contains", "doesNotContain", "is", "isNot", "lessThan", "lessThanOrEqual", "moreThan", "moreThanOrEqual", "matches", "doesNotMatch", "validates", "isInMoreThan", "isInLessThan"].
18+
:param value: Must be one of ["contains", "doesNotContain", "is", "isNot", "lessThan", "lessThanOrEqual", "moreThan", "moreThanOrEqual", "matches", "doesNotMatch", "validates", "isInMoreThan", "isInLessThan", "doesNotExist"].
1919
:type value: str
2020
"""
2121

@@ -33,6 +33,7 @@ class SyntheticsAssertionOperator(ModelSimple):
3333
"validates",
3434
"isInMoreThan",
3535
"isInLessThan",
36+
"doesNotExist",
3637
}
3738
CONTAINS: ClassVar["SyntheticsAssertionOperator"]
3839
DOES_NOT_CONTAIN: ClassVar["SyntheticsAssertionOperator"]
@@ -47,6 +48,7 @@ class SyntheticsAssertionOperator(ModelSimple):
4748
VALIDATES: ClassVar["SyntheticsAssertionOperator"]
4849
IS_IN_MORE_DAYS_THAN: ClassVar["SyntheticsAssertionOperator"]
4950
IS_IN_LESS_DAYS_THAN: ClassVar["SyntheticsAssertionOperator"]
51+
DOES_NOT_EXIST: ClassVar["SyntheticsAssertionOperator"]
5052

5153
@cached_property
5254
def openapi_types(_):
@@ -68,3 +70,4 @@ def openapi_types(_):
6870
SyntheticsAssertionOperator.VALIDATES = SyntheticsAssertionOperator("validates")
6971
SyntheticsAssertionOperator.IS_IN_MORE_DAYS_THAN = SyntheticsAssertionOperator("isInMoreThan")
7072
SyntheticsAssertionOperator.IS_IN_LESS_DAYS_THAN = SyntheticsAssertionOperator("isInLessThan")
73+
SyntheticsAssertionOperator.DOES_NOT_EXIST = SyntheticsAssertionOperator("doesNotExist")

0 commit comments

Comments
 (0)