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
12 changes: 12 additions & 0 deletions .generator/schemas/v1/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8369,12 +8369,18 @@ components:
- hide_query
- hide_handles
- hide_all
- hide_query_and_handles
- show_only_snapshot
- hide_handles_and_footer
type: string
x-enum-varnames:
- SHOW_ALL
- HIDE_QUERY
- HIDE_HANDLES
- HIDE_ALL
- HIDE_QUERY_AND_HANDLES
- SHOW_ONLY_SNAPSHOT
- HIDE_HANDLES_AND_FOOTER
MonitorOptionsSchedulingOptions:
description: Configuration options for scheduling.
properties:
Expand Down Expand Up @@ -18257,12 +18263,18 @@ components:
- hide_all
- hide_query
- hide_handles
- hide_query_and_handles
- show_only_snapshot
- hide_handles_and_footer
type: string
x-enum-varnames:
- SHOW_ALL
- HIDE_ALL
- HIDE_QUERY
- HIDE_HANDLES
- HIDE_QUERY_AND_HANDLES
- SHOW_ONLY_SNAPSHOT
- HIDE_HANDLES_AND_FOOTER
SyntheticsTestOptionsRetry:
description: Object describing the retry strategy to apply to a Synthetic test.
properties:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,5 +25,8 @@ class MonitorOptionsNotificationPresets
HIDE_QUERY = "hide_query".freeze
HIDE_HANDLES = "hide_handles".freeze
HIDE_ALL = "hide_all".freeze
HIDE_QUERY_AND_HANDLES = "hide_query_and_handles".freeze
SHOW_ONLY_SNAPSHOT = "show_only_snapshot".freeze
HIDE_HANDLES_AND_FOOTER = "hide_handles_and_footer".freeze
end
end
Original file line number Diff line number Diff line change
Expand Up @@ -25,5 +25,8 @@ class SyntheticsTestOptionsMonitorOptionsNotificationPresetName
HIDE_ALL = "hide_all".freeze
HIDE_QUERY = "hide_query".freeze
HIDE_HANDLES = "hide_handles".freeze
HIDE_QUERY_AND_HANDLES = "hide_query_and_handles".freeze
SHOW_ONLY_SNAPSHOT = "show_only_snapshot".freeze
HIDE_HANDLES_AND_FOOTER = "hide_handles_and_footer".freeze
end
end
Loading