Skip to content

Commit 91aad10

Browse files
api-clients-generation-pipeline[bot]ci.datadog-api-spec
andauthored
Explicitly mention the max page size (#1264)
Co-authored-by: ci.datadog-api-spec <[email protected]> Co-authored-by: api-clients-generation-pipeline[bot] <54105614+api-clients-generation-pipeline[bot]@users.noreply.github.com>
1 parent 450eb8e commit 91aad10

File tree

11 files changed

+18
-18
lines changed

11 files changed

+18
-18
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": "2022-12-09 09:29:11.062861",
8-
"spec_repo_commit": "68c90324"
7+
"regenerated": "2022-12-09 17:41:11.134424",
8+
"spec_repo_commit": "9e20f8a4"
99
},
1010
"v2": {
1111
"apigentools_version": "1.6.4",
12-
"regenerated": "2022-12-09 09:29:11.074112",
13-
"spec_repo_commit": "68c90324"
12+
"regenerated": "2022-12-09 17:41:11.145845",
13+
"spec_repo_commit": "9e20f8a4"
1414
}
1515
}
1616
}

.generator/schemas/v2/openapi.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -286,7 +286,7 @@ components:
286286
format: int64
287287
type: integer
288288
PageSize:
289-
description: Size for a given page.
289+
description: Size for a given page. The maximum allowed value is 5000.
290290
in: query
291291
name: page[size]
292292
required: false

src/datadog_api_client/v2/api/authn_mappings_api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -228,7 +228,7 @@ def list_authn_mappings(
228228
229229
List all AuthN Mappings in the org.
230230
231-
:param page_size: Size for a given page.
231+
:param page_size: Size for a given page. The maximum allowed value is 5000.
232232
:type page_size: int, optional
233233
:param page_number: Specific page number to return.
234234
:type page_number: int, optional

src/datadog_api_client/v2/api/incident_services_api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -242,7 +242,7 @@ def list_incident_services(
242242
243243
:param include: Specifies which types of related objects should be included in the response.
244244
:type include: IncidentRelatedObject, optional
245-
:param page_size: Size for a given page.
245+
:param page_size: Size for a given page. The maximum allowed value is 5000.
246246
:type page_size: int, optional
247247
:param page_offset: Specific offset to use as the beginning of the returned page.
248248
:type page_offset: int, optional

src/datadog_api_client/v2/api/incident_teams_api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -242,7 +242,7 @@ def list_incident_teams(
242242
243243
:param include: Specifies which types of related objects should be included in the response.
244244
:type include: IncidentRelatedObject, optional
245-
:param page_size: Size for a given page.
245+
:param page_size: Size for a given page. The maximum allowed value is 5000.
246246
:type page_size: int, optional
247247
:param page_offset: Specific offset to use as the beginning of the returned page.
248248
:type page_offset: int, optional

src/datadog_api_client/v2/api/incidents_api.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -352,7 +352,7 @@ def list_incidents(
352352
353353
:param include: Specifies which types of related objects should be included in the response.
354354
:type include: [IncidentRelatedObject], optional
355-
:param page_size: Size for a given page.
355+
:param page_size: Size for a given page. The maximum allowed value is 5000.
356356
:type page_size: int, optional
357357
:param page_offset: Specific offset to use as the beginning of the returned page.
358358
:type page_offset: int, optional
@@ -383,7 +383,7 @@ def list_incidents_with_pagination(
383383
384384
:param include: Specifies which types of related objects should be included in the response.
385385
:type include: [IncidentRelatedObject], optional
386-
:param page_size: Size for a given page.
386+
:param page_size: Size for a given page. The maximum allowed value is 5000.
387387
:type page_size: int, optional
388388
:param page_offset: Specific offset to use as the beginning of the returned page.
389389
:type page_offset: int, optional

src/datadog_api_client/v2/api/key_management_api.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -645,7 +645,7 @@ def list_api_keys(
645645
646646
List all API keys available for your account.
647647
648-
:param page_size: Size for a given page.
648+
:param page_size: Size for a given page. The maximum allowed value is 5000.
649649
:type page_size: int, optional
650650
:param page_number: Specific page number to return.
651651
:type page_number: int, optional
@@ -711,7 +711,7 @@ def list_application_keys(
711711
712712
List all application keys available for your org
713713
714-
:param page_size: Size for a given page.
714+
:param page_size: Size for a given page. The maximum allowed value is 5000.
715715
:type page_size: int, optional
716716
:param page_number: Specific page number to return.
717717
:type page_number: int, optional
@@ -762,7 +762,7 @@ def list_current_user_application_keys(
762762
763763
List all application keys available for current user
764764
765-
:param page_size: Size for a given page.
765+
:param page_size: Size for a given page. The maximum allowed value is 5000.
766766
:type page_size: int, optional
767767
:param page_number: Specific page number to return.
768768
:type page_number: int, optional

src/datadog_api_client/v2/api/roles_api.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -555,7 +555,7 @@ def list_roles(
555555
556556
Returns all roles, including their names and their unique identifiers.
557557
558-
:param page_size: Size for a given page.
558+
:param page_size: Size for a given page. The maximum allowed value is 5000.
559559
:type page_size: int, optional
560560
:param page_number: Specific page number to return.
561561
:type page_number: int, optional
@@ -597,7 +597,7 @@ def list_role_users(
597597
598598
:param role_id: The unique identifier of the role.
599599
:type role_id: str
600-
:param page_size: Size for a given page.
600+
:param page_size: Size for a given page. The maximum allowed value is 5000.
601601
:type page_size: int, optional
602602
:param page_number: Specific page number to return.
603603
:type page_number: int, optional

src/datadog_api_client/v2/api/security_monitoring_api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -694,7 +694,7 @@ def list_security_monitoring_rules(
694694
695695
List rules.
696696
697-
:param page_size: Size for a given page.
697+
:param page_size: Size for a given page. The maximum allowed value is 5000.
698698
:type page_size: int, optional
699699
:param page_number: Specific page number to return.
700700
:type page_number: int, optional

src/datadog_api_client/v2/api/service_accounts_api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -287,7 +287,7 @@ def list_service_account_application_keys(
287287
288288
:param service_account_id: The ID of the service account.
289289
:type service_account_id: str
290-
:param page_size: Size for a given page.
290+
:param page_size: Size for a given page. The maximum allowed value is 5000.
291291
:type page_size: int, optional
292292
:param page_number: Specific page number to return.
293293
:type page_number: int, optional

0 commit comments

Comments
 (0)