Skip to content

Commit 54104ee

Browse files
author
ci.datadog-api-spec
committed
Regenerate client from commit b79b4acd of spec repo
1 parent 81a4e18 commit 54104ee

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.4",
7-
"regenerated": "2023-03-02 18:29:33.159238",
8-
"spec_repo_commit": "911d7cda"
7+
"regenerated": "2023-03-02 19:51:25.524414",
8+
"spec_repo_commit": "b79b4acd"
99
},
1010
"v2": {
1111
"apigentools_version": "1.6.4",
12-
"regenerated": "2023-03-02 18:29:33.171186",
13-
"spec_repo_commit": "911d7cda"
12+
"regenerated": "2023-03-02 19:51:25.536684",
13+
"spec_repo_commit": "b79b4acd"
1414
}
1515
}
1616
}

.generator/schemas/v1/openapi.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4137,6 +4137,7 @@ components:
41374137
- logs_stream
41384138
- audit_stream
41394139
- ci_pipeline_stream
4140+
- ci_test_stream
41404141
- rum_issue_stream
41414142
- apm_issue_stream
41424143
- logs_pattern_stream
@@ -4148,6 +4149,7 @@ components:
41484149
- LOGS_STREAM
41494150
- AUDIT_STREAM
41504151
- CI_PIPELINE_STREAM
4152+
- CI_TEST_STREAM
41514153
- RUM_ISSUE_STREAM
41524154
- APM_ISSUE_STREAM
41534155
- LOGS_PATTERN_STREAM

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,14 +16,15 @@ 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", "rum_issue_stream", "apm_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", "logs_pattern_stream", "logs_transaction_stream", "event_stream"].
2020
:type value: str
2121
"""
2222

2323
allowed_values = {
2424
"logs_stream",
2525
"audit_stream",
2626
"ci_pipeline_stream",
27+
"ci_test_stream",
2728
"rum_issue_stream",
2829
"apm_issue_stream",
2930
"logs_pattern_stream",
@@ -33,6 +34,7 @@ class ListStreamSource(ModelSimple):
3334
LOGS_STREAM: ClassVar["ListStreamSource"]
3435
AUDIT_STREAM: ClassVar["ListStreamSource"]
3536
CI_PIPELINE_STREAM: ClassVar["ListStreamSource"]
37+
CI_TEST_STREAM: ClassVar["ListStreamSource"]
3638
RUM_ISSUE_STREAM: ClassVar["ListStreamSource"]
3739
APM_ISSUE_STREAM: ClassVar["ListStreamSource"]
3840
LOGS_PATTERN_STREAM: ClassVar["ListStreamSource"]
@@ -49,6 +51,7 @@ def openapi_types(_):
4951
ListStreamSource.LOGS_STREAM = ListStreamSource("logs_stream")
5052
ListStreamSource.AUDIT_STREAM = ListStreamSource("audit_stream")
5153
ListStreamSource.CI_PIPELINE_STREAM = ListStreamSource("ci_pipeline_stream")
54+
ListStreamSource.CI_TEST_STREAM = ListStreamSource("ci_test_stream")
5255
ListStreamSource.RUM_ISSUE_STREAM = ListStreamSource("rum_issue_stream")
5356
ListStreamSource.APM_ISSUE_STREAM = ListStreamSource("apm_issue_stream")
5457
ListStreamSource.LOGS_PATTERN_STREAM = ListStreamSource("logs_pattern_stream")

0 commit comments

Comments
 (0)