Skip to content
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

Update description for synthetics test body #2213

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": "2024-10-10 19:45:55.876636",
"spec_repo_commit": "049920eb"
"regenerated": "2024-10-15 14:42:58.274711",
"spec_repo_commit": "85278ed5"
},
"v2": {
"apigentools_version": "1.6.6",
"regenerated": "2024-10-10 19:45:55.894524",
"spec_repo_commit": "049920eb"
"regenerated": "2024-10-15 14:42:58.291884",
"spec_repo_commit": "85278ed5"
}
}
}
2 changes: 1 addition & 1 deletion .generator/schemas/v1/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15007,7 +15007,7 @@ components:
description: Object describing the synthetics tests to trigger.
properties:
tests:
description: Individual synthetics test.
description: List of individual synthetic tests.
items:
$ref: '#/components/schemas/SyntheticsCITest'
type: array
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ def __init__(self_, tests: Union[List[SyntheticsCITest], UnsetType] = unset, **k
"""
Object describing the synthetics tests to trigger.

:param tests: Individual synthetics test.
:param tests: List of individual synthetic tests.
:type tests: [SyntheticsCITest], optional
"""
if tests is not unset:
Expand Down
Loading