Skip to content

Commit f2478e2

Browse files
api-clients-generation-pipeline[bot]ci.datadog-api-spec
andauthored
Regenerate client from commit 68f66e0 of spec repo (#84)
Co-authored-by: ci.datadog-api-spec <[email protected]>
1 parent dd0da89 commit f2478e2

File tree

5 files changed

+13
-9
lines changed

5 files changed

+13
-9
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.2.0",
7-
"regenerated": "2020-09-24 08:35:20.476647",
8-
"spec_repo_commit": "aead216"
7+
"regenerated": "2020-09-24 11:31:33.445651",
8+
"spec_repo_commit": "68f66e0"
99
},
1010
"v2": {
1111
"apigentools_version": "1.2.0",
12-
"regenerated": "2020-09-24 08:35:30.325667",
13-
"spec_repo_commit": "aead216"
12+
"regenerated": "2020-09-24 11:31:44.213986",
13+
"spec_repo_commit": "68f66e0"
1414
}
1515
}
1616
}

docs/v1/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -701,7 +701,7 @@ Learn more in the [Browser test Actions documentation](https://docs.datadoghq.co
701701
- [SyntheticsStepType](Step type used in your Synthetic test..md)
702702
- [SyntheticsTestConfig](Configuration object for a Synthetic test..md)
703703
- [SyntheticsTestDetails](Object containing details about your Synthetic test..md)
704-
- [SyntheticsTestDetailsSubType](The sub-type of the Synthetic API test, `http`, `ssl`, or `tcp`..md)
704+
- [SyntheticsTestDetailsSubType](The sub-type of the Synthetic API test, `http`, `ssl`, `tcp` or `dns`..md)
705705
- [SyntheticsTestDetailsType](Type of the Synthetic test, either `api` or `browser`..md)
706706
- [SyntheticsTestHeaders](Headers to include when performing the test..md)
707707
- [SyntheticsTestMonitorStatus](The status of your Synthetic monitor.

docs/v1/SyntheticsTestDetailsSubType.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
# SyntheticsTestDetailsSubType
22

3-
The sub-type of the Synthetic API test, `http`, `ssl`, or `tcp`.
3+
The sub-type of the Synthetic API test, `http`, `ssl`, `tcp` or `dns`.
44
## Properties
55
Name | Type | Description | Notes
66
------------ | ------------- | ------------- | -------------
7-
**value** | **str** | The sub-type of the Synthetic API test, &#x60;http&#x60;, &#x60;ssl&#x60;, or &#x60;tcp&#x60;. | must be one of ["http", "ssl", "tcp", ]
7+
**value** | **str** | The sub-type of the Synthetic API test, &#x60;http&#x60;, &#x60;ssl&#x60;, &#x60;tcp&#x60; or &#x60;dns&#x60;. | must be one of ["http", "ssl", "tcp", "dns", ]
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_test_details_sub_type.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,7 @@ class SyntheticsTestDetailsSubType(ModelSimple):
5151
'HTTP': "http",
5252
'SSL': "ssl",
5353
'TCP': "tcp",
54+
'DNS': "dns",
5455
},
5556
}
5657

@@ -98,7 +99,7 @@ def __init__(self, value, *args, **kwargs):
9899
"""SyntheticsTestDetailsSubType - a model defined in OpenAPI
99100
100101
Args:
101-
value (str): The sub-type of the Synthetic API test, &#x60;http&#x60;, &#x60;ssl&#x60;, or &#x60;tcp&#x60;.., must be one of ["http", "ssl", "tcp", ] # noqa: E501
102+
value (str): The sub-type of the Synthetic API test, &#x60;http&#x60;, &#x60;ssl&#x60;, &#x60;tcp&#x60; or &#x60;dns&#x60;.., must be one of ["http", "ssl", "tcp", "dns", ] # noqa: E501
102103
103104
Keyword Args:
104105
_check_type (bool): if True, values for parameters in openapi_types

src/datadog_api_client/v1/openapi.yaml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6479,16 +6479,19 @@ components:
64796479
$ref: '#/components/schemas/SyntheticsTestDetailsType'
64806480
type: object
64816481
SyntheticsTestDetailsSubType:
6482-
description: The sub-type of the Synthetic API test, `http`, `ssl`, or `tcp`.
6482+
description: The sub-type of the Synthetic API test, `http`, `ssl`, `tcp` or
6483+
`dns`.
64836484
enum:
64846485
- http
64856486
- ssl
64866487
- tcp
6488+
- dns
64876489
type: string
64886490
x-enum-varnames:
64896491
- HTTP
64906492
- SSL
64916493
- TCP
6494+
- DNS
64926495
SyntheticsTestDetailsType:
64936496
description: Type of the Synthetic test, either `api` or `browser`.
64946497
enum:

0 commit comments

Comments
 (0)