Skip to content

[Cloud Network Monitoring API] Update limit to 7500 #2672

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .apigentools-info
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@
"spec_versions": {
"v1": {
"apigentools_version": "1.6.6",
"regenerated": "2025-07-02 11:31:44.914188",
"spec_repo_commit": "ab77d015"
"regenerated": "2025-07-02 15:33:37.759308",
"spec_repo_commit": "324946ba"
},
"v2": {
"apigentools_version": "1.6.6",
"regenerated": "2025-07-02 11:31:44.929324",
"spec_repo_commit": "ab77d015"
"regenerated": "2025-07-02 15:33:37.774498",
"spec_repo_commit": "324946ba"
}
}
}
4 changes: 2 additions & 2 deletions .generator/schemas/v2/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -54008,13 +54008,13 @@ paths:
schema:
type: string
- description: The number of connections to be returned. The maximum value is
5000.
7500.
in: query
name: limit
schema:
default: 100
format: int32
maximum: 5000
maximum: 7500
minimum: 1
type: integer
responses:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ def __init__(self, api_client=None):
},
"limit": {
"validation": {
"inclusive_maximum": 5000,
"inclusive_maximum": 7500,
"inclusive_minimum": 1,
},
"openapi_types": (int,),
Expand Down Expand Up @@ -93,7 +93,7 @@ def get_aggregated_connections(
:type group_by: str, optional
:param tags: Comma-separated list of tags to filter connections by.
:type tags: str, optional
:param limit: The number of connections to be returned. The maximum value is 5000.
:param limit: The number of connections to be returned. The maximum value is 7500.
:type limit: int, optional
:rtype: SingleAggregatedConnectionResponseArray
"""
Expand Down