diff --git a/.apigentools-info b/.apigentools-info index 4568dffc9d..387b041ae0 100644 --- a/.apigentools-info +++ b/.apigentools-info @@ -4,13 +4,13 @@ "spec_versions": { "v1": { "apigentools_version": "1.6.6", - "regenerated": "2024-07-19 16:49:31.567725", - "spec_repo_commit": "d47df1fc" + "regenerated": "2024-07-19 17:23:31.128268", + "spec_repo_commit": "e7026d11" }, "v2": { "apigentools_version": "1.6.6", - "regenerated": "2024-07-19 16:49:31.585828", - "spec_repo_commit": "d47df1fc" + "regenerated": "2024-07-19 17:23:31.145349", + "spec_repo_commit": "e7026d11" } } } \ No newline at end of file diff --git a/.generator/schemas/v1/openapi.yaml b/.generator/schemas/v1/openapi.yaml index 80b3b9c330..7749ad8b46 100644 --- a/.generator/schemas/v1/openapi.yaml +++ b/.generator/schemas/v1/openapi.yaml @@ -4773,6 +4773,7 @@ components: - logs_pattern_stream - logs_transaction_stream - event_stream + - rum_stream example: apm_issue_stream type: string x-enum-varnames: @@ -4787,6 +4788,7 @@ components: - LOGS_PATTERN_STREAM - LOGS_TRANSACTION_STREAM - EVENT_STREAM + - RUM_STREAM ListStreamWidgetDefinition: description: 'The list stream visualization displays a table of recent events in your application that diff --git a/src/datadog_api_client/v1/model/list_stream_source.py b/src/datadog_api_client/v1/model/list_stream_source.py index 4da605c041..8cfb815429 100644 --- a/src/datadog_api_client/v1/model/list_stream_source.py +++ b/src/datadog_api_client/v1/model/list_stream_source.py @@ -16,7 +16,7 @@ class ListStreamSource(ModelSimple): """ Source from which to query items to display in the stream. - :param value: If omitted defaults to "apm_issue_stream". Must be one of ["logs_stream", "audit_stream", "ci_pipeline_stream", "ci_test_stream", "rum_issue_stream", "apm_issue_stream", "trace_stream", "logs_issue_stream", "logs_pattern_stream", "logs_transaction_stream", "event_stream"]. + :param value: If omitted defaults to "apm_issue_stream". Must be one of ["logs_stream", "audit_stream", "ci_pipeline_stream", "ci_test_stream", "rum_issue_stream", "apm_issue_stream", "trace_stream", "logs_issue_stream", "logs_pattern_stream", "logs_transaction_stream", "event_stream", "rum_stream"]. :type value: str """ @@ -32,6 +32,7 @@ class ListStreamSource(ModelSimple): "logs_pattern_stream", "logs_transaction_stream", "event_stream", + "rum_stream", } LOGS_STREAM: ClassVar["ListStreamSource"] AUDIT_STREAM: ClassVar["ListStreamSource"] @@ -44,6 +45,7 @@ class ListStreamSource(ModelSimple): LOGS_PATTERN_STREAM: ClassVar["ListStreamSource"] LOGS_TRANSACTION_STREAM: ClassVar["ListStreamSource"] EVENT_STREAM: ClassVar["ListStreamSource"] + RUM_STREAM: ClassVar["ListStreamSource"] @cached_property def openapi_types(_): @@ -63,3 +65,4 @@ def openapi_types(_): ListStreamSource.LOGS_PATTERN_STREAM = ListStreamSource("logs_pattern_stream") ListStreamSource.LOGS_TRANSACTION_STREAM = ListStreamSource("logs_transaction_stream") ListStreamSource.EVENT_STREAM = ListStreamSource("event_stream") +ListStreamSource.RUM_STREAM = ListStreamSource("rum_stream")