diff --git a/.generator/schemas/v2/openapi.yaml b/.generator/schemas/v2/openapi.yaml index e6df2f158a6..abcdf549631 100644 --- a/.generator/schemas/v2/openapi.yaml +++ b/.generator/schemas/v2/openapi.yaml @@ -78234,8 +78234,10 @@ 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:01Z` or `2025-05-07T02:53:01+00:00`). + When using timezone offsets with `+` or `-`, ensure proper URL encoding + (`+` should be encoded as `%2B`). Defaults to the current time if omitted. in: query name: filter[at_ts] schema: diff --git a/src/main/java/com/datadog/api/client/v2/api/OnCallApi.java b/src/main/java/com/datadog/api/client/v2/api/OnCallApi.java index c73f9e8304c..51d5325517c 100644 --- a/src/main/java/com/datadog/api/client/v2/api/OnCallApi.java +++ b/src/main/java/com/datadog/api/client/v2/api/OnCallApi.java @@ -2005,8 +2005,11 @@ 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, 2025-05-07T02:53:01Z or 2025-05-07T02:53:01+00:00). + * When using timezone offsets with + or -, ensure proper URL + * encoding (+ should be encoded as %2B). Defaults to the current + * time if omitted. (optional) * @return GetScheduleOnCallUserOptionalParameters */ public GetScheduleOnCallUserOptionalParameters filterAtTs(String filterAtTs) {