Skip to content

Commit 75d05e2

Browse files
author
ci.datadog-api-spec
committed
Regenerate client from commit 460b9c2 of spec repo
1 parent eccd867 commit 75d05e2

10 files changed

+203
-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.4.1.dev11",
7-
"regenerated": "2021-07-13 14:05:00.829993",
8-
"spec_repo_commit": "6586890"
7+
"regenerated": "2021-07-13 15:38:54.786332",
8+
"spec_repo_commit": "460b9c2"
99
},
1010
"v2": {
1111
"apigentools_version": "1.4.1.dev11",
12-
"regenerated": "2021-07-13 14:05:31.810546",
13-
"spec_repo_commit": "6586890"
12+
"regenerated": "2021-07-13 15:39:26.775173",
13+
"spec_repo_commit": "460b9c2"
1414
}
1515
}
1616
}

api/v1/datadog/api/openapi.yaml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12044,6 +12044,7 @@ components:
1204412044
- rum
1204512045
- security_signals
1204612046
- profiles
12047+
- audit
1204712048
example: logs
1204812049
type: string
1204912050
x-enum-varnames:
@@ -12053,6 +12054,7 @@ components:
1205312054
- RUM
1205412055
- SECURITY_SIGNALS
1205512056
- PROFILES
12057+
- AUDIT
1205612058
FormulaAndFunctionMetricAggregation:
1205712059
description: The aggregation methods available for metrics queries.
1205812060
enum:
@@ -17770,6 +17772,8 @@ components:
1777017772
$ref: '#/components/schemas/WidgetAggregator'
1777117773
apm_query:
1777217774
$ref: '#/components/schemas/LogQueryDefinition'
17775+
audit_query:
17776+
$ref: '#/components/schemas/LogQueryDefinition'
1777317777
conditional_formats:
1777417778
description: List of conditional formats.
1777517779
items:
@@ -22851,6 +22855,8 @@ components:
2285122855
properties:
2285222856
apm_query:
2285322857
$ref: '#/components/schemas/LogQueryDefinition'
22858+
audit_query:
22859+
$ref: '#/components/schemas/LogQueryDefinition'
2285422860
display_type:
2285522861
$ref: '#/components/schemas/WidgetDisplayType'
2285622862
event_query:
@@ -22942,6 +22948,8 @@ components:
2294222948
properties:
2294322949
apm_query:
2294422950
$ref: '#/components/schemas/LogQueryDefinition'
22951+
audit_query:
22952+
$ref: '#/components/schemas/LogQueryDefinition'
2294522953
conditional_formats:
2294622954
description: List of conditional formats.
2294722955
example:

api/v1/datadog/docs/FormulaAndFunctionEventsDataSource.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,8 @@
1515

1616
* `PROFILES` (value: `"profiles"`)
1717

18+
* `AUDIT` (value: `"audit"`)
19+
1820

1921
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
2022

api/v1/datadog/docs/QueryValueWidgetRequest.md

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ Name | Type | Description | Notes
66
---- | ---- | ----------- | ------
77
**Aggregator** | Pointer to [**WidgetAggregator**](WidgetAggregator.md) | | [optional]
88
**ApmQuery** | Pointer to [**LogQueryDefinition**](LogQueryDefinition.md) | | [optional]
9+
**AuditQuery** | Pointer to [**LogQueryDefinition**](LogQueryDefinition.md) | | [optional]
910
**ConditionalFormats** | Pointer to [**[]WidgetConditionalFormat**](WidgetConditionalFormat.md) | List of conditional formats. | [optional]
1011
**EventQuery** | Pointer to [**LogQueryDefinition**](LogQueryDefinition.md) | | [optional]
1112
**Formulas** | Pointer to [**[]WidgetFormula**](WidgetFormula.md) | List of formulas that operate on queries. **This feature is currently in beta.** | [optional]
@@ -88,6 +89,31 @@ SetApmQuery sets ApmQuery field to given value.
8889

8990
HasApmQuery returns a boolean if a field has been set.
9091

92+
### GetAuditQuery
93+
94+
`func (o *QueryValueWidgetRequest) GetAuditQuery() LogQueryDefinition`
95+
96+
GetAuditQuery returns the AuditQuery field if non-nil, zero value otherwise.
97+
98+
### GetAuditQueryOk
99+
100+
`func (o *QueryValueWidgetRequest) GetAuditQueryOk() (*LogQueryDefinition, bool)`
101+
102+
GetAuditQueryOk returns a tuple with the AuditQuery field if it's non-nil, zero value otherwise
103+
and a boolean to check if the value has been set.
104+
105+
### SetAuditQuery
106+
107+
`func (o *QueryValueWidgetRequest) SetAuditQuery(v LogQueryDefinition)`
108+
109+
SetAuditQuery sets AuditQuery field to given value.
110+
111+
### HasAuditQuery
112+
113+
`func (o *QueryValueWidgetRequest) HasAuditQuery() bool`
114+
115+
HasAuditQuery returns a boolean if a field has been set.
116+
91117
### GetConditionalFormats
92118

93119
`func (o *QueryValueWidgetRequest) GetConditionalFormats() []WidgetConditionalFormat`

api/v1/datadog/docs/TimeseriesWidgetRequest.md

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
Name | Type | Description | Notes
66
---- | ---- | ----------- | ------
77
**ApmQuery** | Pointer to [**LogQueryDefinition**](LogQueryDefinition.md) | | [optional]
8+
**AuditQuery** | Pointer to [**LogQueryDefinition**](LogQueryDefinition.md) | | [optional]
89
**DisplayType** | Pointer to [**WidgetDisplayType**](WidgetDisplayType.md) | | [optional]
910
**EventQuery** | Pointer to [**LogQueryDefinition**](LogQueryDefinition.md) | | [optional]
1011
**Formulas** | Pointer to [**[]WidgetFormula**](WidgetFormula.md) | List of formulas that operate on queries. **This feature is currently in beta.** | [optional]
@@ -65,6 +66,31 @@ SetApmQuery sets ApmQuery field to given value.
6566

6667
HasApmQuery returns a boolean if a field has been set.
6768

69+
### GetAuditQuery
70+
71+
`func (o *TimeseriesWidgetRequest) GetAuditQuery() LogQueryDefinition`
72+
73+
GetAuditQuery returns the AuditQuery field if non-nil, zero value otherwise.
74+
75+
### GetAuditQueryOk
76+
77+
`func (o *TimeseriesWidgetRequest) GetAuditQueryOk() (*LogQueryDefinition, bool)`
78+
79+
GetAuditQueryOk returns a tuple with the AuditQuery field if it's non-nil, zero value otherwise
80+
and a boolean to check if the value has been set.
81+
82+
### SetAuditQuery
83+
84+
`func (o *TimeseriesWidgetRequest) SetAuditQuery(v LogQueryDefinition)`
85+
86+
SetAuditQuery sets AuditQuery field to given value.
87+
88+
### HasAuditQuery
89+
90+
`func (o *TimeseriesWidgetRequest) HasAuditQuery() bool`
91+
92+
HasAuditQuery returns a boolean if a field has been set.
93+
6894
### GetDisplayType
6995

7096
`func (o *TimeseriesWidgetRequest) GetDisplayType() WidgetDisplayType`

api/v1/datadog/docs/ToplistWidgetRequest.md

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
Name | Type | Description | Notes
66
---- | ---- | ----------- | ------
77
**ApmQuery** | Pointer to [**LogQueryDefinition**](LogQueryDefinition.md) | | [optional]
8+
**AuditQuery** | Pointer to [**LogQueryDefinition**](LogQueryDefinition.md) | | [optional]
89
**ConditionalFormats** | Pointer to [**[]WidgetConditionalFormat**](WidgetConditionalFormat.md) | List of conditional formats. | [optional]
910
**EventQuery** | Pointer to [**LogQueryDefinition**](LogQueryDefinition.md) | | [optional]
1011
**Formulas** | Pointer to [**[]WidgetFormula**](WidgetFormula.md) | List of formulas that operate on queries. **This feature is currently in beta.** | [optional]
@@ -63,6 +64,31 @@ SetApmQuery sets ApmQuery field to given value.
6364

6465
HasApmQuery returns a boolean if a field has been set.
6566

67+
### GetAuditQuery
68+
69+
`func (o *ToplistWidgetRequest) GetAuditQuery() LogQueryDefinition`
70+
71+
GetAuditQuery returns the AuditQuery field if non-nil, zero value otherwise.
72+
73+
### GetAuditQueryOk
74+
75+
`func (o *ToplistWidgetRequest) GetAuditQueryOk() (*LogQueryDefinition, bool)`
76+
77+
GetAuditQueryOk returns a tuple with the AuditQuery field if it's non-nil, zero value otherwise
78+
and a boolean to check if the value has been set.
79+
80+
### SetAuditQuery
81+
82+
`func (o *ToplistWidgetRequest) SetAuditQuery(v LogQueryDefinition)`
83+
84+
SetAuditQuery sets AuditQuery field to given value.
85+
86+
### HasAuditQuery
87+
88+
`func (o *ToplistWidgetRequest) HasAuditQuery() bool`
89+
90+
HasAuditQuery returns a boolean if a field has been set.
91+
6692
### GetConditionalFormats
6793

6894
`func (o *ToplistWidgetRequest) GetConditionalFormats() []WidgetConditionalFormat`

api/v1/datadog/model_formula_and_function_events_data_source.go

Lines changed: 2 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

api/v1/datadog/model_query_value_widget_request.go

Lines changed: 36 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

api/v1/datadog/model_timeseries_widget_request.go

Lines changed: 36 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

api/v1/datadog/model_toplist_widget_request.go

Lines changed: 37 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)