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 @@ -24,7 +24,15 @@
public class MonitorOptionsNotificationPresets extends ModelEnum<String> {

private static final Set<String> allowedValues =
new HashSet<String>(Arrays.asList("show_all", "hide_query", "hide_handles", "hide_all"));
new HashSet<String>(
Arrays.asList(
"show_all",
"hide_query",
"hide_handles",
"hide_all",
"hide_query_and_handles",
"show_only_snapshot",
"hide_handles_and_footer"));

public static final MonitorOptionsNotificationPresets SHOW_ALL =
new MonitorOptionsNotificationPresets("show_all");
Expand All @@ -34,6 +42,12 @@ public class MonitorOptionsNotificationPresets extends ModelEnum<String> {
new MonitorOptionsNotificationPresets("hide_handles");
public static final MonitorOptionsNotificationPresets HIDE_ALL =
new MonitorOptionsNotificationPresets("hide_all");
public static final MonitorOptionsNotificationPresets HIDE_QUERY_AND_HANDLES =
new MonitorOptionsNotificationPresets("hide_query_and_handles");
public static final MonitorOptionsNotificationPresets SHOW_ONLY_SNAPSHOT =
new MonitorOptionsNotificationPresets("show_only_snapshot");
public static final MonitorOptionsNotificationPresets HIDE_HANDLES_AND_FOOTER =
new MonitorOptionsNotificationPresets("hide_handles_and_footer");

MonitorOptionsNotificationPresets(String value) {
super(value, allowedValues);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,15 @@
public class SyntheticsTestOptionsMonitorOptionsNotificationPresetName extends ModelEnum<String> {

private static final Set<String> allowedValues =
new HashSet<String>(Arrays.asList("show_all", "hide_all", "hide_query", "hide_handles"));
new HashSet<String>(
Arrays.asList(
"show_all",
"hide_all",
"hide_query",
"hide_handles",
"hide_query_and_handles",
"show_only_snapshot",
"hide_handles_and_footer"));

public static final SyntheticsTestOptionsMonitorOptionsNotificationPresetName SHOW_ALL =
new SyntheticsTestOptionsMonitorOptionsNotificationPresetName("show_all");
Expand All @@ -36,6 +44,14 @@ public class SyntheticsTestOptionsMonitorOptionsNotificationPresetName extends M
new SyntheticsTestOptionsMonitorOptionsNotificationPresetName("hide_query");
public static final SyntheticsTestOptionsMonitorOptionsNotificationPresetName HIDE_HANDLES =
new SyntheticsTestOptionsMonitorOptionsNotificationPresetName("hide_handles");
public static final SyntheticsTestOptionsMonitorOptionsNotificationPresetName
HIDE_QUERY_AND_HANDLES =
new SyntheticsTestOptionsMonitorOptionsNotificationPresetName("hide_query_and_handles");
public static final SyntheticsTestOptionsMonitorOptionsNotificationPresetName SHOW_ONLY_SNAPSHOT =
new SyntheticsTestOptionsMonitorOptionsNotificationPresetName("show_only_snapshot");
public static final SyntheticsTestOptionsMonitorOptionsNotificationPresetName
HIDE_HANDLES_AND_FOOTER =
new SyntheticsTestOptionsMonitorOptionsNotificationPresetName("hide_handles_and_footer");

SyntheticsTestOptionsMonitorOptionsNotificationPresetName(String value) {
super(value, allowedValues);
Expand Down
Loading