Skip to content

Commit 79a417f

Browse files
author
ci.datadog-api-spec
committed
Regenerate client from commit 9477872 of spec repo
1 parent 0faef47 commit 79a417f

15 files changed

+307
-43
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-08-04 16:37:23.957844",
8-
"spec_repo_commit": "c6e36ca"
7+
"regenerated": "2021-08-05 07:58:27.950491",
8+
"spec_repo_commit": "9477872"
99
},
1010
"v2": {
1111
"apigentools_version": "1.4.1.dev11",
12-
"regenerated": "2021-08-04 16:37:54.999270",
13-
"spec_repo_commit": "c6e36ca"
12+
"regenerated": "2021-08-05 07:58:59.826717",
13+
"spec_repo_commit": "9477872"
1414
}
1515
}
1616
}

api/v1/datadog/.openapi-generator/FILES

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -399,6 +399,7 @@ docs/ScatterPlotRequest.md
399399
docs/ScatterPlotWidgetDefinition.md
400400
docs/ScatterPlotWidgetDefinitionRequests.md
401401
docs/ScatterPlotWidgetDefinitionType.md
402+
docs/ScatterplotWidgetAggregator.md
402403
docs/Series.md
403404
docs/ServiceCheck.md
404405
docs/ServiceCheckStatus.md
@@ -972,6 +973,7 @@ model_scatter_plot_request.go
972973
model_scatter_plot_widget_definition.go
973974
model_scatter_plot_widget_definition_requests.go
974975
model_scatter_plot_widget_definition_type.go
976+
model_scatterplot_widget_aggregator.go
975977
model_series.go
976978
model_service_check.go
977979
model_service_check_status.go

api/v1/datadog/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -621,6 +621,7 @@ Class | Method | HTTP request | Description
621621
- [ScatterPlotWidgetDefinition](docs/ScatterPlotWidgetDefinition.md)
622622
- [ScatterPlotWidgetDefinitionRequests](docs/ScatterPlotWidgetDefinitionRequests.md)
623623
- [ScatterPlotWidgetDefinitionType](docs/ScatterPlotWidgetDefinitionType.md)
624+
- [ScatterplotWidgetAggregator](docs/ScatterplotWidgetAggregator.md)
624625
- [Series](docs/Series.md)
625626
- [ServiceCheck](docs/ServiceCheck.md)
626627
- [ServiceCheckStatus](docs/ServiceCheckStatus.md)

api/v1/datadog/api/openapi.yaml

Lines changed: 20 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12263,6 +12263,7 @@ components:
1226312263
- last
1226412264
- area
1226512265
- l2norm
12266+
- percentile
1226612267
example: avg
1226712268
type: string
1226812269
x-enum-varnames:
@@ -12273,6 +12274,7 @@ components:
1227312274
- LAST
1227412275
- AREA
1227512276
- L2NORM
12277+
- PERCENTILE
1227612278
FormulaAndFunctionMetricDataSource:
1227712279
description: Data source for metrics queries.
1227812280
enum:
@@ -19149,7 +19151,7 @@ components:
1914919151
description: Updated scatter plot.
1915019152
properties:
1915119153
aggregator:
19152-
$ref: '#/components/schemas/WidgetAggregator'
19154+
$ref: '#/components/schemas/ScatterplotWidgetAggregator'
1915319155
apm_query:
1915419156
$ref: '#/components/schemas/LogQueryDefinition'
1915519157
event_query:
@@ -19216,6 +19218,21 @@ components:
1921619218
type: string
1921719219
x-enum-varnames:
1921819220
- SCATTERPLOT
19221+
ScatterplotWidgetAggregator:
19222+
description: Aggregator used for the request.
19223+
enum:
19224+
- avg
19225+
- last
19226+
- max
19227+
- min
19228+
- sum
19229+
type: string
19230+
x-enum-varnames:
19231+
- AVERAGE
19232+
- LAST
19233+
- MAXIMUM
19234+
- MINIMUM
19235+
- SUM
1921919236
Series:
1922019237
description: |-
1922119238
A metric to submit to Datadog.
@@ -27871,13 +27888,15 @@ components:
2787127888
- max
2787227889
- min
2787327890
- sum
27891+
- percentile
2787427892
type: string
2787527893
x-enum-varnames:
2787627894
- AVERAGE
2787727895
- LAST
2787827896
- MAXIMUM
2787927897
- MINIMUM
2788027898
- SUM
27899+
- PERCENTILE
2788127900
WidgetAxis:
2788227901
description: Axis controls for the widget.
2788327902
properties:

api/v1/datadog/docs/FormulaAndFunctionMetricAggregation.md

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

1818
* `L2NORM` (value: `"l2norm"`)
1919

20+
* `PERCENTILE` (value: `"percentile"`)
21+
2022

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

api/v1/datadog/docs/ScatterPlotRequest.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
Name | Type | Description | Notes
66
---- | ---- | ----------- | ------
7-
**Aggregator** | Pointer to [**WidgetAggregator**](WidgetAggregator.md) | | [optional]
7+
**Aggregator** | Pointer to [**ScatterplotWidgetAggregator**](ScatterplotWidgetAggregator.md) | | [optional]
88
**ApmQuery** | Pointer to [**LogQueryDefinition**](LogQueryDefinition.md) | | [optional]
99
**EventQuery** | Pointer to [**LogQueryDefinition**](LogQueryDefinition.md) | | [optional]
1010
**LogQuery** | Pointer to [**LogQueryDefinition**](LogQueryDefinition.md) | | [optional]
@@ -36,20 +36,20 @@ but it doesn't guarantee that properties required by API are set.
3636

3737
### GetAggregator
3838

39-
`func (o *ScatterPlotRequest) GetAggregator() WidgetAggregator`
39+
`func (o *ScatterPlotRequest) GetAggregator() ScatterplotWidgetAggregator`
4040

4141
GetAggregator returns the Aggregator field if non-nil, zero value otherwise.
4242

4343
### GetAggregatorOk
4444

45-
`func (o *ScatterPlotRequest) GetAggregatorOk() (*WidgetAggregator, bool)`
45+
`func (o *ScatterPlotRequest) GetAggregatorOk() (*ScatterplotWidgetAggregator, bool)`
4646

4747
GetAggregatorOk returns a tuple with the Aggregator field if it's non-nil, zero value otherwise
4848
and a boolean to check if the value has been set.
4949

5050
### SetAggregator
5151

52-
`func (o *ScatterPlotRequest) SetAggregator(v WidgetAggregator)`
52+
`func (o *ScatterPlotRequest) SetAggregator(v ScatterplotWidgetAggregator)`
5353

5454
SetAggregator sets Aggregator field to given value.
5555

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
# ScatterplotWidgetAggregator
2+
3+
## Enum
4+
5+
6+
* `AVERAGE` (value: `"avg"`)
7+
8+
* `LAST` (value: `"last"`)
9+
10+
* `MAXIMUM` (value: `"max"`)
11+
12+
* `MINIMUM` (value: `"min"`)
13+
14+
* `SUM` (value: `"sum"`)
15+
16+
17+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
18+
19+

api/v1/datadog/docs/WidgetAggregator.md

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

1414
* `SUM` (value: `"sum"`)
1515

16+
* `PERCENTILE` (value: `"percentile"`)
17+
1618

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

api/v1/datadog/model_formula_and_function_metric_aggregation.go

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

api/v1/datadog/model_scatter_plot_request.go

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

0 commit comments

Comments
 (0)