Skip to content

Commit eed7099

Browse files
api-clients-generation-pipeline[bot]ci.datadog-api-spec
andauthored
Regenerate client from commit bf52987 of spec repo (#186)
Co-authored-by: ci.datadog-api-spec <[email protected]>
1 parent e66e8f9 commit eed7099

File tree

4 files changed

+13
-7
lines changed

4 files changed

+13
-7
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.3.0",
7-
"regenerated": "2020-12-10 08:36:12.128528",
8-
"spec_repo_commit": "3fa5f61"
7+
"regenerated": "2020-12-10 15:02:13.428548",
8+
"spec_repo_commit": "bf52987"
99
},
1010
"v2": {
1111
"apigentools_version": "1.3.0",
12-
"regenerated": "2020-12-10 08:36:22.021735",
13-
"spec_repo_commit": "3fa5f61"
12+
"regenerated": "2020-12-10 15:02:23.457811",
13+
"spec_repo_commit": "bf52987"
1414
}
1515
}
1616
}

docs/v1/SyntheticsAssertionOperator.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Assertion operator to apply.
44
## Properties
55
Name | Type | Description | Notes
66
------------ | ------------- | ------------- | -------------
7-
**value** | **str** | Assertion operator to apply. | must be one of ["contains", "doesNotContain", "is", "isNot", "lessThan", "moreThan", "matches", "doesNotMatch", "validates", "isInMoreThan", "isInLessThan", ]
7+
**value** | **str** | Assertion operator to apply. | must be one of ["contains", "doesNotContain", "is", "isNot", "lessThan", "lessThanOrEqual", "moreThan", "moreThanOrEqual", "matches", "doesNotMatch", "validates", "isInMoreThan", "isInLessThan", ]
88

99
[[Back to Model list]](README.md#documentation-for-models) [[Back to API list]](README.md#documentation-for-api-endpoints) [[Back to README]](README.md)
1010

src/datadog_api_client/v1/model/synthetics_assertion_operator.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,9 @@ class SyntheticsAssertionOperator(ModelSimple):
5151
'IS': "is",
5252
'IS_NOT': "isNot",
5353
'LESS_THAN': "lessThan",
54+
'LESS_THAN_OR_EQUAL': "lessThanOrEqual",
5455
'MORE_THAN': "moreThan",
56+
'MORE_THAN_OR_EQUAL': "moreThanOrEqual",
5557
'MATCHES': "matches",
5658
'DOES_NOT_MATCH': "doesNotMatch",
5759
'VALIDATES': "validates",
@@ -106,10 +108,10 @@ def __init__(self, *args, **kwargs):
106108
Note that value can be passed either in args or in kwargs, but not in both.
107109
108110
Args:
109-
args[0] (str): Assertion operator to apply.., must be one of ["contains", "doesNotContain", "is", "isNot", "lessThan", "moreThan", "matches", "doesNotMatch", "validates", "isInMoreThan", "isInLessThan", ] # noqa: E501
111+
args[0] (str): Assertion operator to apply.., must be one of ["contains", "doesNotContain", "is", "isNot", "lessThan", "lessThanOrEqual", "moreThan", "moreThanOrEqual", "matches", "doesNotMatch", "validates", "isInMoreThan", "isInLessThan", ] # noqa: E501
110112
111113
Keyword Args:
112-
value (str): Assertion operator to apply.., must be one of ["contains", "doesNotContain", "is", "isNot", "lessThan", "moreThan", "matches", "doesNotMatch", "validates", "isInMoreThan", "isInLessThan", ] # noqa: E501
114+
value (str): Assertion operator to apply.., must be one of ["contains", "doesNotContain", "is", "isNot", "lessThan", "lessThanOrEqual", "moreThan", "moreThanOrEqual", "matches", "doesNotMatch", "validates", "isInMoreThan", "isInLessThan", ] # noqa: E501
113115
_check_type (bool): if True, values for parameters in openapi_types
114116
will be type checked and a TypeError will be
115117
raised if the wrong type is input.

src/datadog_api_client/v1/openapi.yaml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5764,7 +5764,9 @@ components:
57645764
- is
57655765
- isNot
57665766
- lessThan
5767+
- lessThanOrEqual
57675768
- moreThan
5769+
- moreThanOrEqual
57685770
- matches
57695771
- doesNotMatch
57705772
- validates
@@ -5777,7 +5779,9 @@ components:
57775779
- IS
57785780
- IS_NOT
57795781
- LESS_THAN
5782+
- LESS_THAN_OR_EQUAL
57805783
- MORE_THAN
5784+
- MORE_THAN_OR_EQUAL
57815785
- MATCHES
57825786
- DOES_NOT_MATCH
57835787
- VALIDATES

0 commit comments

Comments
 (0)