diff --git a/.generator/schemas/v1/openapi.yaml b/.generator/schemas/v1/openapi.yaml index 150bd49be13..ad13eb0ed86 100644 --- a/.generator/schemas/v1/openapi.yaml +++ b/.generator/schemas/v1/openapi.yaml @@ -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: @@ -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: diff --git a/lib/datadog_api_client/v1/models/monitor_options_notification_presets.rb b/lib/datadog_api_client/v1/models/monitor_options_notification_presets.rb index 6188fdf64a3..340a434b35f 100644 --- a/lib/datadog_api_client/v1/models/monitor_options_notification_presets.rb +++ b/lib/datadog_api_client/v1/models/monitor_options_notification_presets.rb @@ -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 diff --git a/lib/datadog_api_client/v1/models/synthetics_test_options_monitor_options_notification_preset_name.rb b/lib/datadog_api_client/v1/models/synthetics_test_options_monitor_options_notification_preset_name.rb index 5b072484860..5fa71c56403 100644 --- a/lib/datadog_api_client/v1/models/synthetics_test_options_monitor_options_notification_preset_name.rb +++ b/lib/datadog_api_client/v1/models/synthetics_test_options_monitor_options_notification_preset_name.rb @@ -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