Skip to content

Commit bf1fb22

Browse files
api-clients-generation-pipeline[bot]ci.datadog-api-spec
andauthored
Allow 4 group-bys for pattern viz (#2116)
Co-authored-by: ci.datadog-api-spec <[email protected]>
1 parent 8b17fc4 commit bf1fb22

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
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-08-21 14:09:57.200863",
8-
"spec_repo_commit": "5bcbcb40"
7+
"regenerated": "2024-08-21 15:17:00.453751",
8+
"spec_repo_commit": "4470dfc1"
99
},
1010
"v2": {
1111
"apigentools_version": "1.6.6",
12-
"regenerated": "2024-08-21 14:09:57.224783",
13-
"spec_repo_commit": "5bcbcb40"
12+
"regenerated": "2024-08-21 15:17:00.482428",
13+
"spec_repo_commit": "4470dfc1"
1414
}
1515
}
1616
}

.generator/schemas/v1/openapi.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4736,11 +4736,11 @@ components:
47364736
$ref: '#/components/schemas/WidgetEventSize'
47374737
group_by:
47384738
description: Group by configuration for the List Stream Widget. Group by
4739-
can be used only with logs_pattern_stream (up to 3 items) or logs_transaction_stream
4739+
can be used only with logs_pattern_stream (up to 4 items) or logs_transaction_stream
47404740
(one group by item is required) list stream source.
47414741
items:
47424742
$ref: '#/components/schemas/ListStreamGroupByItems'
4743-
maxItems: 3
4743+
maxItems: 4
47444744
type: array
47454745
indexes:
47464746
description: List of indexes.

src/datadog_api_client/v1/model/list_stream_query.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ class ListStreamQuery(ModelNormal):
2828
"min_items": 1,
2929
},
3030
"group_by": {
31-
"max_items": 3,
31+
"max_items": 4,
3232
},
3333
}
3434

@@ -86,7 +86,7 @@ def __init__(
8686
:param event_size: Size to use to display an event.
8787
:type event_size: WidgetEventSize, optional
8888
89-
:param group_by: Group by configuration for the List Stream Widget. Group by can be used only with logs_pattern_stream (up to 3 items) or logs_transaction_stream (one group by item is required) list stream source.
89+
:param group_by: Group by configuration for the List Stream Widget. Group by can be used only with logs_pattern_stream (up to 4 items) or logs_transaction_stream (one group by item is required) list stream source.
9090
:type group_by: [ListStreamGroupByItems], optional
9191
9292
:param indexes: List of indexes.

0 commit comments

Comments
 (0)