Skip to content

Commit 4bc15d8

Browse files
api-clients-generation-pipeline[bot]ci.datadog-api-spec
andauthored
Regenerate client from commit 9d03fff of spec repo (#149)
Co-authored-by: ci.datadog-api-spec <[email protected]>
1 parent 0a69195 commit 4bc15d8

File tree

4 files changed

+30
-4
lines changed

4 files changed

+30
-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.3.0",
7-
"regenerated": "2020-11-12 14:38:24.654767",
8-
"spec_repo_commit": "6a8fa99"
7+
"regenerated": "2020-11-12 15:41:53.706039",
8+
"spec_repo_commit": "9d03fff"
99
},
1010
"v2": {
1111
"apigentools_version": "1.3.0",
12-
"regenerated": "2020-11-12 14:38:35.318198",
13-
"spec_repo_commit": "6a8fa99"
12+
"regenerated": "2020-11-12 15:42:04.788475",
13+
"spec_repo_commit": "9d03fff"
1414
}
1515
}
1616
}

docs/v1/IPPrefixesSynthetics.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,9 @@ Available prefix information for the Synthetics endpoints.
55
Name | Type | Description | Notes
66
------------ | ------------- | ------------- | -------------
77
**prefixes_ipv4** | **[str]** | List of IPv4 prefixes. | [optional]
8+
**prefixes_ipv4_by_location** | **{str: ([str],)}** | List of IPv4 prefixes by location. | [optional]
89
**prefixes_ipv6** | **[str]** | List of IPv6 prefixes. | [optional]
10+
**prefixes_ipv6_by_location** | **{str: ([str],)}** | List of IPv6 prefixes by location. | [optional]
911

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

src/datadog_api_client/v1/model/ip_prefixes_synthetics.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,9 @@ def openapi_types():
7272
"""
7373
return {
7474
'prefixes_ipv4': ([str],), # noqa: E501
75+
'prefixes_ipv4_by_location': ({str: ([str],)},), # noqa: E501
7576
'prefixes_ipv6': ([str],), # noqa: E501
77+
'prefixes_ipv6_by_location': ({str: ([str],)},), # noqa: E501
7678
}
7779

7880
@cached_property
@@ -82,7 +84,9 @@ def discriminator():
8284

8385
attribute_map = {
8486
'prefixes_ipv4': 'prefixes_ipv4', # noqa: E501
87+
'prefixes_ipv4_by_location': 'prefixes_ipv4_by_location', # noqa: E501
8588
'prefixes_ipv6': 'prefixes_ipv6', # noqa: E501
89+
'prefixes_ipv6_by_location': 'prefixes_ipv6_by_location', # noqa: E501
8690
}
8791

8892
_composed_schemas = {}
@@ -132,7 +136,9 @@ def __init__(self, *args, **kwargs): # noqa: E501
132136
through its discriminator because we passed in
133137
_visited_composed_classes = (Animal,)
134138
prefixes_ipv4 ([str]): List of IPv4 prefixes.. [optional] # noqa: E501
139+
prefixes_ipv4_by_location ({str: ([str],)}): List of IPv4 prefixes by location.. [optional] # noqa: E501
135140
prefixes_ipv6 ([str]): List of IPv6 prefixes.. [optional] # noqa: E501
141+
prefixes_ipv6_by_location ({str: ([str],)}): List of IPv6 prefixes by location.. [optional] # noqa: E501
136142
"""
137143

138144
_check_type = kwargs.pop('_check_type', True)

src/datadog_api_client/v1/openapi.yaml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2133,12 +2133,30 @@ components:
21332133
description: IPv4 prefix
21342134
type: string
21352135
type: array
2136+
prefixes_ipv4_by_location:
2137+
additionalProperties:
2138+
description: List of IPv4 prefixes.
2139+
items:
2140+
description: IPv4 prefix.
2141+
type: string
2142+
type: array
2143+
description: List of IPv4 prefixes by location.
2144+
type: object
21362145
prefixes_ipv6:
21372146
description: List of IPv6 prefixes.
21382147
items:
21392148
description: IPv6 prefix
21402149
type: string
21412150
type: array
2151+
prefixes_ipv6_by_location:
2152+
additionalProperties:
2153+
description: List of IPv6 prefixes.
2154+
items:
2155+
description: IPv6 prefix.
2156+
type: string
2157+
type: array
2158+
description: List of IPv6 prefixes by location.
2159+
type: object
21422160
type: object
21432161
IPPrefixesWebhooks:
21442162
description: Available prefix information for the Webhook endpoints.

0 commit comments

Comments
 (0)