Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .apigentools-info
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@
"spec_versions": {
"v1": {
"apigentools_version": "1.6.6",
"regenerated": "2024-05-29 11:05:30.245471",
"spec_repo_commit": "6cd5686a"
"regenerated": "2024-05-29 12:19:39.295098",
"spec_repo_commit": "5a618bf5"
},
"v2": {
"apigentools_version": "1.6.6",
"regenerated": "2024-05-29 11:05:30.263690",
"spec_repo_commit": "6cd5686a"
"regenerated": "2024-05-29 12:19:39.312822",
"spec_repo_commit": "5a618bf5"
}
}
}
14 changes: 6 additions & 8 deletions .generator/schemas/v1/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26972,22 +26972,20 @@ paths:
description: Search and filter your monitor groups details.
operationId: SearchMonitorGroups
parameters:
- description: 'After entering a search query in your [Manage Monitor page][1]
- description: 'After entering a search query on the [Triggered Monitors page][1],
use the query parameter value in the

URL of the page as value for this parameter. Consult the dedicated [manage
monitor documentation][2]

page to learn more.
URL of the page as a value for this parameter. For more information, see
the [Manage Monitors documentation][2].


The query can contain any number of space-separated monitor attributes,
for instance `query="type:metric status:alert"`.
for instance: `query="type:metric group_status:alert"`.


[1]: https://app.datadoghq.com/monitors/manage
[1]: https://app.datadoghq.com/monitors/triggered

[2]: /monitors/manage/#find-the-monitors'
[2]: /monitors/manage/#triggered-monitors'
in: query
name: query
required: false
Expand Down
11 changes: 5 additions & 6 deletions packages/datadog-api-client-v1/apis/MonitorsApi.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1251,14 +1251,13 @@ export interface MonitorsApiListMonitorsRequest {

export interface MonitorsApiSearchMonitorGroupsRequest {
/**
* After entering a search query in your [Manage Monitor page][1] use the query parameter value in the
* URL of the page as value for this parameter. Consult the dedicated [manage monitor documentation][2]
* page to learn more.
* After entering a search query on the [Triggered Monitors page][1], use the query parameter value in the
* URL of the page as a value for this parameter. For more information, see the [Manage Monitors documentation][2].
*
* The query can contain any number of space-separated monitor attributes, for instance `query="type:metric status:alert"`.
* The query can contain any number of space-separated monitor attributes, for instance: `query="type:metric group_status:alert"`.
*
* [1]: https://app.datadoghq.com/monitors/manage
* [2]: /monitors/manage/#find-the-monitors
* [1]: https://app.datadoghq.com/monitors/triggered
* [2]: /monitors/manage/#triggered-monitors
* @type string
*/
query?: string;
Expand Down