Skip to content

Commit f30f305

Browse files
api-clients-generation-pipeline[bot]ci.datadog-api-spec
andauthored
[network-connections-api] Update description with group_by limit (#814)
Co-authored-by: ci.datadog-api-spec <[email protected]>
1 parent 8234ccd commit f30f305

File tree

3 files changed

+6
-5
lines changed

3 files changed

+6
-5
lines changed

.generated-info

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
2-
"spec_repo_commit": "b737cc4",
3-
"generated": "2025-07-28 13:16:28.685"
2+
"spec_repo_commit": "0fe80dc",
3+
"generated": "2025-07-28 18:53:03.925"
44
}

.generator/schemas/v2/openapi.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55082,7 +55082,8 @@ paths:
5508255082
schema:
5508355083
format: int64
5508455084
type: integer
55085-
- description: Comma-separated list of fields to group connections by.
55085+
- description: Comma-separated list of fields to group connections by. The maximum
55086+
number of group_by(s) is 10.
5508655087
in: query
5508755088
name: group_by
5508855089
schema:

src/datadogV2/api/api_cloud_network_monitoring.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ pub struct GetAggregatedConnectionsOptionalParams {
1414
pub from: Option<i64>,
1515
/// Unix timestamp (number of seconds since epoch) of the end of the query window. If not provided, the end of the query window is the current time. If neither `from` nor `to` are provided, the query window is `[now - 15m, now]`.
1616
pub to: Option<i64>,
17-
/// Comma-separated list of fields to group connections by.
17+
/// Comma-separated list of fields to group connections by. The maximum number of group_by(s) is 10.
1818
pub group_by: Option<String>,
1919
/// Comma-separated list of tags to filter connections by.
2020
pub tags: Option<String>,
@@ -33,7 +33,7 @@ impl GetAggregatedConnectionsOptionalParams {
3333
self.to = Some(value);
3434
self
3535
}
36-
/// Comma-separated list of fields to group connections by.
36+
/// Comma-separated list of fields to group connections by. The maximum number of group_by(s) is 10.
3737
pub fn group_by(mut self, value: String) -> Self {
3838
self.group_by = Some(value);
3939
self

0 commit comments

Comments
 (0)