Skip to content

Commit 2def85c

Browse files
api-clients-generation-pipeline[bot]ci.datadog-api-spec
andauthored
Add rum stream to API definition (#2058)
* Regenerate client from commit e7026d11 of spec repo * pre-commit fixes --------- Co-authored-by: ci.datadog-api-spec <[email protected]> Co-authored-by: api-clients-generation-pipeline[bot] <54105614+api-clients-generation-pipeline[bot]@users.noreply.github.com>
1 parent 6a50037 commit 2def85c

File tree

3 files changed

+10
-5
lines changed

3 files changed

+10
-5
lines changed

.apigentools-info

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,13 @@
44
"spec_versions": {
55
"v1": {
66
"apigentools_version": "1.6.6",
7-
"regenerated": "2024-07-19 16:49:31.567725",
8-
"spec_repo_commit": "d47df1fc"
7+
"regenerated": "2024-07-19 17:23:31.128268",
8+
"spec_repo_commit": "e7026d11"
99
},
1010
"v2": {
1111
"apigentools_version": "1.6.6",
12-
"regenerated": "2024-07-19 16:49:31.585828",
13-
"spec_repo_commit": "d47df1fc"
12+
"regenerated": "2024-07-19 17:23:31.145349",
13+
"spec_repo_commit": "e7026d11"
1414
}
1515
}
1616
}

.generator/schemas/v1/openapi.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4773,6 +4773,7 @@ components:
47734773
- logs_pattern_stream
47744774
- logs_transaction_stream
47754775
- event_stream
4776+
- rum_stream
47764777
example: apm_issue_stream
47774778
type: string
47784779
x-enum-varnames:
@@ -4787,6 +4788,7 @@ components:
47874788
- LOGS_PATTERN_STREAM
47884789
- LOGS_TRANSACTION_STREAM
47894790
- EVENT_STREAM
4791+
- RUM_STREAM
47904792
ListStreamWidgetDefinition:
47914793
description: 'The list stream visualization displays a table of recent events
47924794
in your application that

src/datadog_api_client/v1/model/list_stream_source.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ class ListStreamSource(ModelSimple):
1616
"""
1717
Source from which to query items to display in the stream.
1818
19-
: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"].
19+
: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"].
2020
:type value: str
2121
"""
2222

@@ -32,6 +32,7 @@ class ListStreamSource(ModelSimple):
3232
"logs_pattern_stream",
3333
"logs_transaction_stream",
3434
"event_stream",
35+
"rum_stream",
3536
}
3637
LOGS_STREAM: ClassVar["ListStreamSource"]
3738
AUDIT_STREAM: ClassVar["ListStreamSource"]
@@ -44,6 +45,7 @@ class ListStreamSource(ModelSimple):
4445
LOGS_PATTERN_STREAM: ClassVar["ListStreamSource"]
4546
LOGS_TRANSACTION_STREAM: ClassVar["ListStreamSource"]
4647
EVENT_STREAM: ClassVar["ListStreamSource"]
48+
RUM_STREAM: ClassVar["ListStreamSource"]
4749

4850
@cached_property
4951
def openapi_types(_):
@@ -63,3 +65,4 @@ def openapi_types(_):
6365
ListStreamSource.LOGS_PATTERN_STREAM = ListStreamSource("logs_pattern_stream")
6466
ListStreamSource.LOGS_TRANSACTION_STREAM = ListStreamSource("logs_transaction_stream")
6567
ListStreamSource.EVENT_STREAM = ListStreamSource("event_stream")
68+
ListStreamSource.RUM_STREAM = ListStreamSource("rum_stream")

0 commit comments

Comments
 (0)