Skip to content

Commit 3c1e444

Browse files
api-clients-generation-pipeline[bot]ci.datadog-api-spec
andauthored
Regenerate client from commit 18eae8f of spec repo (#521)
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>
1 parent 8110807 commit 3c1e444

13 files changed

+135
-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.4.1.dev11",
7-
"regenerated": "2021-07-14 09:06:55.275340",
8-
"spec_repo_commit": "f0a4221"
7+
"regenerated": "2021-07-15 15:54:38.956828",
8+
"spec_repo_commit": "18eae8f"
99
},
1010
"v2": {
1111
"apigentools_version": "1.4.1.dev11",
12-
"regenerated": "2021-07-14 09:07:22.355067",
13-
"spec_repo_commit": "f0a4221"
12+
"regenerated": "2021-07-15 15:55:05.776227",
13+
"spec_repo_commit": "18eae8f"
1414
}
1515
}
1616
}

docs/v1/FormulaAndFunctionEventsDataSource.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Data source for event platform-based queries.
55
## Properties
66
Name | Type | Description | Notes
77
------------ | ------------- | ------------- | -------------
8-
**value** | **str** | Data source for event platform-based queries. | must be one of ["logs", "spans", "network", "rum", "security_signals", "profiles", ]
8+
**value** | **str** | Data source for event platform-based queries. | must be one of ["logs", "spans", "network", "rum", "security_signals", "profiles", "audit", ]
99

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

docs/v1/QueryValueWidgetRequest.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ Name | Type | Description | Notes
77
------------ | ------------- | ------------- | -------------
88
**aggregator** | [**WidgetAggregator**](WidgetAggregator.md) | | [optional]
99
**apm_query** | [**LogQueryDefinition**](LogQueryDefinition.md) | | [optional]
10+
**audit_query** | [**LogQueryDefinition**](LogQueryDefinition.md) | | [optional]
1011
**conditional_formats** | [**[WidgetConditionalFormat]**](WidgetConditionalFormat.md) | List of conditional formats. | [optional]
1112
**event_query** | [**LogQueryDefinition**](LogQueryDefinition.md) | | [optional]
1213
**formulas** | [**[WidgetFormula]**](WidgetFormula.md) | List of formulas that operate on queries. **This feature is currently in beta.** | [optional]

docs/v1/TimeseriesWidgetRequest.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ Updated timeseries widget.
66
Name | Type | Description | Notes
77
------------ | ------------- | ------------- | -------------
88
**apm_query** | [**LogQueryDefinition**](LogQueryDefinition.md) | | [optional]
9+
**audit_query** | [**LogQueryDefinition**](LogQueryDefinition.md) | | [optional]
910
**display_type** | [**WidgetDisplayType**](WidgetDisplayType.md) | | [optional]
1011
**event_query** | [**LogQueryDefinition**](LogQueryDefinition.md) | | [optional]
1112
**formulas** | [**[WidgetFormula]**](WidgetFormula.md) | List of formulas that operate on queries. **This feature is currently in beta.** | [optional]

docs/v1/ToplistWidgetRequest.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ Updated top list widget.
66
Name | Type | Description | Notes
77
------------ | ------------- | ------------- | -------------
88
**apm_query** | [**LogQueryDefinition**](LogQueryDefinition.md) | | [optional]
9+
**audit_query** | [**LogQueryDefinition**](LogQueryDefinition.md) | | [optional]
910
**conditional_formats** | [**[WidgetConditionalFormat]**](WidgetConditionalFormat.md) | List of conditional formats. | [optional]
1011
**event_query** | [**LogQueryDefinition**](LogQueryDefinition.md) | | [optional]
1112
**formulas** | [**[WidgetFormula]**](WidgetFormula.md) | List of formulas that operate on queries. **This feature is currently in beta.** | [optional]

src/datadog_api_client/v1/model/formula_and_function_events_data_source.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@ class FormulaAndFunctionEventsDataSource(ModelSimple):
5050
"RUM": "rum",
5151
"SECURITY_SIGNALS": "security_signals",
5252
"PROFILES": "profiles",
53+
"AUDIT": "audit",
5354
},
5455
}
5556

@@ -99,10 +100,10 @@ def __init__(self, *args, **kwargs):
99100
Note that value can be passed either in args or in kwargs, but not in both.
100101
101102
Args:
102-
args[0] (str): Data source for event platform-based queries.., must be one of ["logs", "spans", "network", "rum", "security_signals", "profiles", ] # noqa: E501
103+
args[0] (str): Data source for event platform-based queries.., must be one of ["logs", "spans", "network", "rum", "security_signals", "profiles", "audit", ] # noqa: E501
103104
104105
Keyword Args:
105-
value (str): Data source for event platform-based queries.., must be one of ["logs", "spans", "network", "rum", "security_signals", "profiles", ] # noqa: E501
106+
value (str): Data source for event platform-based queries.., must be one of ["logs", "spans", "network", "rum", "security_signals", "profiles", "audit", ] # noqa: E501
106107
_check_type (bool): if True, values for parameters in openapi_types
107108
will be type checked and a TypeError will be
108109
raised if the wrong type is input.

src/datadog_api_client/v1/model/query_value_widget_request.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,7 @@ def openapi_types():
8686
return {
8787
"aggregator": (WidgetAggregator,), # noqa: E501
8888
"apm_query": (LogQueryDefinition,), # noqa: E501
89+
"audit_query": (LogQueryDefinition,), # noqa: E501
8990
"conditional_formats": ([WidgetConditionalFormat],), # noqa: E501
9091
"event_query": (LogQueryDefinition,), # noqa: E501
9192
"formulas": ([WidgetFormula],), # noqa: E501
@@ -107,6 +108,7 @@ def discriminator():
107108
attribute_map = {
108109
"aggregator": "aggregator", # noqa: E501
109110
"apm_query": "apm_query", # noqa: E501
111+
"audit_query": "audit_query", # noqa: E501
110112
"conditional_formats": "conditional_formats", # noqa: E501
111113
"event_query": "event_query", # noqa: E501
112114
"formulas": "formulas", # noqa: E501
@@ -171,6 +173,7 @@ def __init__(self, *args, **kwargs): # noqa: E501
171173
_visited_composed_classes = (Animal,)
172174
aggregator (WidgetAggregator): [optional] # noqa: E501
173175
apm_query (LogQueryDefinition): [optional] # noqa: E501
176+
audit_query (LogQueryDefinition): [optional] # noqa: E501
174177
conditional_formats ([WidgetConditionalFormat]): List of conditional formats.. [optional] # noqa: E501
175178
event_query (LogQueryDefinition): [optional] # noqa: E501
176179
formulas ([WidgetFormula]): List of formulas that operate on queries. **This feature is currently in beta.**. [optional] # noqa: E501

src/datadog_api_client/v1/model/timeseries_widget_request.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -87,6 +87,7 @@ def openapi_types():
8787
lazy_import()
8888
return {
8989
"apm_query": (LogQueryDefinition,), # noqa: E501
90+
"audit_query": (LogQueryDefinition,), # noqa: E501
9091
"display_type": (WidgetDisplayType,), # noqa: E501
9192
"event_query": (LogQueryDefinition,), # noqa: E501
9293
"formulas": ([WidgetFormula],), # noqa: E501
@@ -110,6 +111,7 @@ def discriminator():
110111

111112
attribute_map = {
112113
"apm_query": "apm_query", # noqa: E501
114+
"audit_query": "audit_query", # noqa: E501
113115
"display_type": "display_type", # noqa: E501
114116
"event_query": "event_query", # noqa: E501
115117
"formulas": "formulas", # noqa: E501
@@ -176,6 +178,7 @@ def __init__(self, *args, **kwargs): # noqa: E501
176178
through its discriminator because we passed in
177179
_visited_composed_classes = (Animal,)
178180
apm_query (LogQueryDefinition): [optional] # noqa: E501
181+
audit_query (LogQueryDefinition): [optional] # noqa: E501
179182
display_type (WidgetDisplayType): [optional] # noqa: E501
180183
event_query (LogQueryDefinition): [optional] # noqa: E501
181184
formulas ([WidgetFormula]): List of formulas that operate on queries. **This feature is currently in beta.**. [optional] # noqa: E501

src/datadog_api_client/v1/model/toplist_widget_request.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -89,6 +89,7 @@ def openapi_types():
8989
lazy_import()
9090
return {
9191
"apm_query": (LogQueryDefinition,), # noqa: E501
92+
"audit_query": (LogQueryDefinition,), # noqa: E501
9293
"conditional_formats": ([WidgetConditionalFormat],), # noqa: E501
9394
"event_query": (LogQueryDefinition,), # noqa: E501
9495
"formulas": ([WidgetFormula],), # noqa: E501
@@ -110,6 +111,7 @@ def discriminator():
110111

111112
attribute_map = {
112113
"apm_query": "apm_query", # noqa: E501
114+
"audit_query": "audit_query", # noqa: E501
113115
"conditional_formats": "conditional_formats", # noqa: E501
114116
"event_query": "event_query", # noqa: E501
115117
"formulas": "formulas", # noqa: E501
@@ -174,6 +176,7 @@ def __init__(self, *args, **kwargs): # noqa: E501
174176
through its discriminator because we passed in
175177
_visited_composed_classes = (Animal,)
176178
apm_query (LogQueryDefinition): [optional] # noqa: E501
179+
audit_query (LogQueryDefinition): [optional] # noqa: E501
177180
conditional_formats ([WidgetConditionalFormat]): List of conditional formats.. [optional] # noqa: E501
178181
event_query (LogQueryDefinition): [optional] # noqa: E501
179182
formulas ([WidgetFormula]): List of formulas that operate on queries. **This feature is currently in beta.**. [optional] # noqa: E501

src/datadog_api_client/v1/openapi.yaml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2097,6 +2097,7 @@ components:
20972097
- rum
20982098
- security_signals
20992099
- profiles
2100+
- audit
21002101
example: logs
21012102
type: string
21022103
x-enum-varnames:
@@ -2106,6 +2107,7 @@ components:
21062107
- RUM
21072108
- SECURITY_SIGNALS
21082109
- PROFILES
2110+
- AUDIT
21092111
FormulaAndFunctionMetricAggregation:
21102112
description: The aggregation methods available for metrics queries.
21112113
enum:
@@ -6754,6 +6756,8 @@ components:
67546756
$ref: '#/components/schemas/WidgetAggregator'
67556757
apm_query:
67566758
$ref: '#/components/schemas/LogQueryDefinition'
6759+
audit_query:
6760+
$ref: '#/components/schemas/LogQueryDefinition'
67576761
conditional_formats:
67586762
description: List of conditional formats.
67596763
items:
@@ -10379,6 +10383,8 @@ components:
1037910383
properties:
1038010384
apm_query:
1038110385
$ref: '#/components/schemas/LogQueryDefinition'
10386+
audit_query:
10387+
$ref: '#/components/schemas/LogQueryDefinition'
1038210388
display_type:
1038310389
$ref: '#/components/schemas/WidgetDisplayType'
1038410390
event_query:
@@ -10470,6 +10476,8 @@ components:
1047010476
properties:
1047110477
apm_query:
1047210478
$ref: '#/components/schemas/LogQueryDefinition'
10479+
audit_query:
10480+
$ref: '#/components/schemas/LogQueryDefinition'
1047310481
conditional_formats:
1047410482
description: List of conditional formats.
1047510483
example:

0 commit comments

Comments
 (0)