Skip to content

Commit ec8a666

Browse files
api-clients-generation-pipeline[bot]ci.datadog-api-spec
andauthored
Regenerate client from commit f7a8bd6 of spec repo (#815)
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 b908de0 commit ec8a666

27 files changed

+1041
-31
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.6.2",
7-
"regenerated": "2022-02-02 15:54:46.685992",
8-
"spec_repo_commit": "3b52f9a"
7+
"regenerated": "2022-02-03 09:45:30.495642",
8+
"spec_repo_commit": "f7a8bd6"
99
},
1010
"v2": {
1111
"apigentools_version": "1.6.2",
12-
"regenerated": "2022-02-02 15:54:47.095880",
13-
"spec_repo_commit": "3b52f9a"
12+
"regenerated": "2022-02-03 09:45:30.903812",
13+
"spec_repo_commit": "f7a8bd6"
1414
}
1515
}
1616
}

.generator/schemas/v1/openapi.yaml

Lines changed: 141 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5692,6 +5692,141 @@ components:
56925692
- FIREFOX_LAPTOP_LARGE
56935693
- FIREFOX_TABLET
56945694
- FIREFOX_MOBILE_SMALL
5695+
MonitorFormulaAndFunctionEventAggregation:
5696+
description: Aggregation methods for event platform queries.
5697+
enum:
5698+
- count
5699+
- cardinality
5700+
- median
5701+
- pc75
5702+
- pc90
5703+
- pc95
5704+
- pc98
5705+
- pc99
5706+
- sum
5707+
- min
5708+
- max
5709+
- avg
5710+
example: avg
5711+
type: string
5712+
x-enum-varnames:
5713+
- COUNT
5714+
- CARDINALITY
5715+
- MEDIAN
5716+
- PC75
5717+
- PC90
5718+
- PC95
5719+
- PC98
5720+
- PC99
5721+
- SUM
5722+
- MIN
5723+
- MAX
5724+
- AVG
5725+
MonitorFormulaAndFunctionEventQueryDefinition:
5726+
description: A formula and functions events query.
5727+
properties:
5728+
compute:
5729+
$ref: '#/components/schemas/MonitorFormulaAndFunctionEventQueryDefinitionCompute'
5730+
data_source:
5731+
$ref: '#/components/schemas/MonitorFormulaAndFunctionEventsDataSource'
5732+
group_by:
5733+
description: Group by options.
5734+
items:
5735+
$ref: '#/components/schemas/MonitorFormulaAndFunctionEventQueryGroupBy'
5736+
type: array
5737+
indexes:
5738+
description: An array of index names to query in the stream. Omit or use
5739+
`[]` to query all indexes at once.
5740+
example:
5741+
- days-3
5742+
- days-7
5743+
items:
5744+
description: A log index set up for your organization. For additional
5745+
indexes, see the [multiple indexes](https://docs.datadoghq.com/logs/indexes/#multiple-indexes)
5746+
documentation.
5747+
type: string
5748+
type: array
5749+
name:
5750+
description: Name of the query for use in formulas.
5751+
example: query_errors
5752+
type: string
5753+
search:
5754+
$ref: '#/components/schemas/MonitorFormulaAndFunctionEventQueryDefinitionSearch'
5755+
required:
5756+
- data_source
5757+
- compute
5758+
- name
5759+
type: object
5760+
MonitorFormulaAndFunctionEventQueryDefinitionCompute:
5761+
description: Compute options.
5762+
properties:
5763+
aggregation:
5764+
$ref: '#/components/schemas/MonitorFormulaAndFunctionEventAggregation'
5765+
interval:
5766+
description: A time interval in milliseconds.
5767+
example: 60000
5768+
format: int64
5769+
type: integer
5770+
metric:
5771+
description: Measurable attribute to compute.
5772+
example: '@duration'
5773+
type: string
5774+
required:
5775+
- aggregation
5776+
type: object
5777+
MonitorFormulaAndFunctionEventQueryDefinitionSearch:
5778+
description: Search options.
5779+
properties:
5780+
query:
5781+
description: Events search string.
5782+
example: service:query
5783+
type: string
5784+
required:
5785+
- query
5786+
type: object
5787+
MonitorFormulaAndFunctionEventQueryGroupBy:
5788+
description: List of objects used to group by.
5789+
properties:
5790+
facet:
5791+
description: Event facet.
5792+
example: status
5793+
type: string
5794+
limit:
5795+
description: Number of groups to return.
5796+
example: 10
5797+
format: int64
5798+
type: integer
5799+
sort:
5800+
$ref: '#/components/schemas/MonitorFormulaAndFunctionEventQueryGroupBySort'
5801+
required:
5802+
- facet
5803+
type: object
5804+
MonitorFormulaAndFunctionEventQueryGroupBySort:
5805+
description: Options for sorting group by results.
5806+
properties:
5807+
aggregation:
5808+
$ref: '#/components/schemas/MonitorFormulaAndFunctionEventAggregation'
5809+
metric:
5810+
description: Metric used for sorting group by results.
5811+
type: string
5812+
order:
5813+
$ref: '#/components/schemas/QuerySortOrder'
5814+
required:
5815+
- aggregation
5816+
type: object
5817+
MonitorFormulaAndFunctionEventsDataSource:
5818+
description: Data source for event platform-based queries.
5819+
enum:
5820+
- rum
5821+
example: rum
5822+
type: string
5823+
x-enum-varnames:
5824+
- RUM
5825+
MonitorFormulaAndFunctionQueryDefinition:
5826+
description: A formula and function query.
5827+
oneOf:
5828+
- $ref: '#/components/schemas/MonitorFormulaAndFunctionEventQueryDefinition'
5829+
type: object
56955830
MonitorGroupSearchResponse:
56965831
description: The response of a monitor group search.
56975832
example:
@@ -5976,6 +6111,12 @@ components:
59766111
format: int64
59776112
nullable: true
59786113
type: integer
6114+
variables:
6115+
description: List of requests that can be used in the monitor query. **This
6116+
feature is currently in beta.**
6117+
items:
6118+
$ref: '#/components/schemas/MonitorFormulaAndFunctionQueryDefinition'
6119+
type: array
59796120
type: object
59806121
MonitorOverallStates:
59816122
description: The different states your monitor can be in.

docs/v1/MonitorFormulaAndFunctionEventAggregation.md

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

docs/v1/MonitorFormulaAndFunctionEventQueryDefinition.md

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

docs/v1/MonitorFormulaAndFunctionEventQueryDefinitionCompute.md

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

docs/v1/MonitorFormulaAndFunctionEventQueryDefinitionSearch.md

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

docs/v1/MonitorFormulaAndFunctionEventQueryGroupBy.md

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

docs/v1/MonitorFormulaAndFunctionEventQueryGroupBySort.md

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

docs/v1/MonitorFormulaAndFunctionEventsDataSource.md

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

docs/v1/MonitorFormulaAndFunctionQueryDefinition.md

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

0 commit comments

Comments
 (0)