File tree Expand file tree Collapse file tree
src/main/java/com/datadog/api/client/v1/model Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -6075,6 +6075,9 @@ components:
60756075 - rum_stream
60766076 - llm_observability_stream
60776077 - issue_stream
6078+ - security_runtime_stream
6079+ - security_signals_stream
6080+ - incidents_stream
60786081 example: logs_stream
60796082 type: string
60806083 x-enum-varnames:
@@ -6092,6 +6095,9 @@ components:
60926095 - RUM_STREAM
60936096 - LLM_OBSERVABILITY_STREAM
60946097 - ISSUE_STREAM
6098+ - SECURITY_RUNTIME_STREAM
6099+ - SECURITY_SIGNALS_STREAM
6100+ - INCIDENTS_STREAM
60956101 ListStreamWidgetDefinition:
60966102 description: |-
60976103 The list stream visualization displays a table of recent events in your application that
Original file line number Diff line number Diff line change @@ -41,7 +41,10 @@ public class ListStreamSource extends ModelEnum<String> {
4141 "event_stream" ,
4242 "rum_stream" ,
4343 "llm_observability_stream" ,
44- "issue_stream" ));
44+ "issue_stream" ,
45+ "security_runtime_stream" ,
46+ "security_signals_stream" ,
47+ "incidents_stream" ));
4548
4649 public static final ListStreamSource LOGS_STREAM = new ListStreamSource ("logs_stream" );
4750 public static final ListStreamSource AUDIT_STREAM = new ListStreamSource ("audit_stream" );
@@ -62,6 +65,11 @@ public class ListStreamSource extends ModelEnum<String> {
6265 public static final ListStreamSource LLM_OBSERVABILITY_STREAM =
6366 new ListStreamSource ("llm_observability_stream" );
6467 public static final ListStreamSource ISSUE_STREAM = new ListStreamSource ("issue_stream" );
68+ public static final ListStreamSource SECURITY_RUNTIME_STREAM =
69+ new ListStreamSource ("security_runtime_stream" );
70+ public static final ListStreamSource SECURITY_SIGNALS_STREAM =
71+ new ListStreamSource ("security_signals_stream" );
72+ public static final ListStreamSource INCIDENTS_STREAM = new ListStreamSource ("incidents_stream" );
6573
6674 ListStreamSource (String value ) {
6775 super (value , allowedValues );
You can’t perform that action at this time.
0 commit comments