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 lib/datadog_api_client/v2/api/on_call_api.rb
Original file line number Diff line number Diff line change
Expand Up @@ -791,7 +791,7 @@ def get_schedule_on_call_user(schedule_id, opts = {})
# @param schedule_id [String] The ID of the schedule.
# @param opts [Hash] the optional parameters
# @option opts [String] :include Specifies related resources to include in the response as a comma-separated list. Allowed value: `user`.
# @option opts [String] :filter_at_ts Retrieves the on-call user at the given timestamp (ISO-8601). Defaults to the current time if omitted."
# @option opts [String] :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.
# @return [Array<(Shift, Integer, Hash)>] Shift data, response status code and response headers
def get_schedule_on_call_user_with_http_info(schedule_id, opts = {})

Expand Down
Loading