diff --git a/.apigentools-info b/.apigentools-info index 8a19baff6d9..0ba517ac922 100644 --- a/.apigentools-info +++ b/.apigentools-info @@ -4,13 +4,13 @@ "spec_versions": { "v1": { "apigentools_version": "1.6.6", - "regenerated": "2024-12-13 16:09:37.316335", - "spec_repo_commit": "936a5463" + "regenerated": "2024-12-13 17:55:07.078663", + "spec_repo_commit": "74a8f1e2" }, "v2": { "apigentools_version": "1.6.6", - "regenerated": "2024-12-13 16:09:37.335531", - "spec_repo_commit": "936a5463" + "regenerated": "2024-12-13 17:55:07.098128", + "spec_repo_commit": "74a8f1e2" } } } \ No newline at end of file diff --git a/.generator/schemas/v2/openapi.yaml b/.generator/schemas/v2/openapi.yaml index e07f73c38b0..d9ae2519234 100644 --- a/.generator/schemas/v2/openapi.yaml +++ b/.generator/schemas/v2/openapi.yaml @@ -10106,7 +10106,7 @@ components: type: string query: default: '*' - description: The search query following the event search syntax. + description: The search query following the [event search syntax](https://docs.datadoghq.com/service_management/events/explorer/searching). example: service:web* AND @http.status_code:[200 TO 299] type: string to: diff --git a/api/datadogV2/model_events_query_filter.go b/api/datadogV2/model_events_query_filter.go index f6cbad2c5a3..25b88fea4ad 100644 --- a/api/datadogV2/model_events_query_filter.go +++ b/api/datadogV2/model_events_query_filter.go @@ -12,7 +12,7 @@ import ( type EventsQueryFilter struct { // The minimum time for the requested events. Supports date math and regular timestamps in milliseconds. From *string `json:"from,omitempty"` - // The search query following the event search syntax. + // The search query following the [event search syntax](https://docs.datadoghq.com/service_management/events/explorer/searching). Query *string `json:"query,omitempty"` // The maximum time for the requested events. Supports date math and regular timestamps in milliseconds. To *string `json:"to,omitempty"`