Skip to content

Commit 32b643e

Browse files
api-clients-generation-pipeline[bot]ci.datadog-api-spec
andauthored
[Cloud Network Monitoring API] Update limit to 7500 (#2672)
Co-authored-by: ci.datadog-api-spec <[email protected]>
1 parent 68aa745 commit 32b643e

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
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": "d93d991",
3-
"generated": "2025-07-15 09:31:55.997"
2+
"spec_repo_commit": "2e1c8ca",
3+
"generated": "2025-07-16 17:25:17.887"
44
}

.generator/schemas/v2/openapi.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54458,13 +54458,13 @@ paths:
5445854458
schema:
5445954459
type: string
5446054460
- description: The number of connections to be returned. The maximum value is
54461-
5000.
54461+
7500.
5446254462
in: query
5446354463
name: limit
5446454464
schema:
5446554465
default: 100
5446654466
format: int32
54467-
maximum: 5000
54467+
maximum: 7500
5446854468
minimum: 1
5446954469
type: integer
5447054470
responses:

src/datadog_api_client/v2/api/cloud_network_monitoring_api.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ def __init__(self, api_client=None):
5858
},
5959
"limit": {
6060
"validation": {
61-
"inclusive_maximum": 5000,
61+
"inclusive_maximum": 7500,
6262
"inclusive_minimum": 1,
6363
},
6464
"openapi_types": (int,),
@@ -93,7 +93,7 @@ def get_aggregated_connections(
9393
:type group_by: str, optional
9494
:param tags: Comma-separated list of tags to filter connections by.
9595
:type tags: str, optional
96-
:param limit: The number of connections to be returned. The maximum value is 5000.
96+
:param limit: The number of connections to be returned. The maximum value is 7500.
9797
:type limit: int, optional
9898
:rtype: SingleAggregatedConnectionResponseArray
9999
"""

0 commit comments

Comments
 (0)