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
2 changes: 1 addition & 1 deletion src/datadog_api_client/v2/api/on_call_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -889,7 +889,7 @@ def get_schedule_on_call_user(
:type schedule_id: str
:param include: Specifies related resources to include in the response as a comma-separated list. Allowed value: ``user``.
:type include: str, optional
:param filter_at_ts: Retrieves the on-call user at the given timestamp (ISO-8601). Defaults to the current time if omitted."
:param filter_at_ts: 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.
:type filter_at_ts: str, optional
:rtype: Shift
"""
Expand Down
Loading