Skip to content
Open
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
7 changes: 4 additions & 3 deletions .generator/schemas/v2/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -77079,12 +77079,13 @@ paths:
schema:
example: 3653d3c6-0c75-11ea-ad28-fb5701eabc7d
type: string
- description: Retrieves the on-call user at the given timestamp (ISO-8601).
Defaults to the current time if omitted."
- description: Retrieves the on-call user at the given timestamp in RFC3339
format (for example, `2025-05-07T02:53:01+00:00`). Defaults to the current
time if omitted.
in: query
name: filter[at_ts]
schema:
example: '2025-05-07T02:53:01Z'
example: '2025-05-07T02:53:01+00:00'
type: string
responses:
'200':
Expand Down
5 changes: 3 additions & 2 deletions src/main/java/com/datadog/api/client/v2/api/OnCallApi.java
Original file line number Diff line number Diff line change
Expand Up @@ -2005,8 +2005,9 @@ public GetScheduleOnCallUserOptionalParameters include(String include) {
/**
* Set filterAtTs.
*
* @param filterAtTs Retrieves the on-call user at the given timestamp (ISO-8601). Defaults to
* the current time if omitted." (optional)
* @param filterAtTs Retrieves the on-call user at the given timestamp in RFC3339 format (for
* example, <code>2025-05-07T02:53:01+00:00</code>). Defaults to the current time if
* omitted. (optional)
* @return GetScheduleOnCallUserOptionalParameters
*/
public GetScheduleOnCallUserOptionalParameters filterAtTs(String filterAtTs) {
Expand Down
Loading