Skip to content
New issue

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

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

Already on GitHub? # to your account

Update spans.yaml #2349

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-01-09 22:06:09.999288",
"spec_repo_commit": "8d40e082"
"regenerated": "2025-01-10 21:28:33.426415",
"spec_repo_commit": "cf3ae49b"
},
"v2": {
"apigentools_version": "1.6.6",
"regenerated": "2025-01-09 22:06:10.013561",
"spec_repo_commit": "8d40e082"
"regenerated": "2025-01-10 21:28:33.440781",
"spec_repo_commit": "cf3ae49b"
}
}
}
3 changes: 2 additions & 1 deletion .generator/schemas/v2/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -45687,7 +45687,8 @@ paths:
required: false
schema:
type: string
- description: Maximum number of spans in the response.
- description: Maximum number of spans in the response. Defaults to 10 and allows
up to 5000.
example: 25
in: query
name: page[limit]
Expand Down
4 changes: 2 additions & 2 deletions src/datadog_api_client/v2/api/spans_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,7 @@ def list_spans_get(
:type sort: SpansSort, optional
:param page_cursor: List following results with a cursor provided in the previous query.
:type page_cursor: str, optional
:param page_limit: Maximum number of spans in the response.
:param page_limit: Maximum number of spans in the response. Defaults to 10 and allows up to 5000.
:type page_limit: int, optional
:rtype: SpansListResponse
"""
Expand Down Expand Up @@ -265,7 +265,7 @@ def list_spans_get_with_pagination(
:type sort: SpansSort, optional
:param page_cursor: List following results with a cursor provided in the previous query.
:type page_cursor: str, optional
:param page_limit: Maximum number of spans in the response.
:param page_limit: Maximum number of spans in the response. Defaults to 10 and allows up to 5000.
:type page_limit: int, optional

:return: A generator of paginated results.
Expand Down
Loading