From d7e3d116efb5c26a43572a09619fa9ed63cff828 Mon Sep 17 00:00:00 2001 From: "ci.datadog-api-spec" Date: Wed, 27 Aug 2025 08:45:21 +0000 Subject: [PATCH] Regenerate client from commit 98e3371 of spec repo --- .generated-info | 4 ++-- .generator/schemas/v1/openapi.yaml | 4 ++++ src/datadog_api_client/v1/model/synthetics_ci_test.py | 8 ++++++++ 3 files changed, 14 insertions(+), 2 deletions(-) diff --git a/.generated-info b/.generated-info index 68abf77a2e..60618dc9b9 100644 --- a/.generated-info +++ b/.generated-info @@ -1,4 +1,4 @@ { - "spec_repo_commit": "335aa67", - "generated": "2025-08-27 07:13:55.321" + "spec_repo_commit": "98e3371", + "generated": "2025-08-27 08:45:21.765" } diff --git a/.generator/schemas/v1/openapi.yaml b/.generator/schemas/v1/openapi.yaml index dacd4a02b1..2e3684fae4 100644 --- a/.generator/schemas/v1/openapi.yaml +++ b/.generator/schemas/v1/openapi.yaml @@ -15696,6 +15696,10 @@ components: type: string description: Variables to replace in the test. type: object + version: + description: The version number of the Synthetic test version to trigger. + format: int64 + type: integer required: - public_id type: object diff --git a/src/datadog_api_client/v1/model/synthetics_ci_test.py b/src/datadog_api_client/v1/model/synthetics_ci_test.py index 14944d1109..2d7f429181 100644 --- a/src/datadog_api_client/v1/model/synthetics_ci_test.py +++ b/src/datadog_api_client/v1/model/synthetics_ci_test.py @@ -49,6 +49,7 @@ def openapi_types(_): "retry": (SyntheticsTestOptionsRetry,), "start_url": (str,), "variables": ({str: (str,)},), + "version": (int,), } attribute_map = { @@ -66,6 +67,7 @@ def openapi_types(_): "retry": "retry", "start_url": "startUrl", "variables": "variables", + "version": "version", } def __init__( @@ -93,6 +95,7 @@ def __init__( retry: Union[SyntheticsTestOptionsRetry, UnsetType] = unset, start_url: Union[str, UnsetType] = unset, variables: Union[Dict[str, str], UnsetType] = unset, + version: Union[int, UnsetType] = unset, **kwargs, ): """ @@ -139,6 +142,9 @@ def __init__( :param variables: Variables to replace in the test. :type variables: {str: (str,)}, optional + + :param version: The version number of the Synthetic test version to trigger. + :type version: int, optional """ if allow_insecure_certificates is not unset: kwargs["allow_insecure_certificates"] = allow_insecure_certificates @@ -166,6 +172,8 @@ def __init__( kwargs["start_url"] = start_url if variables is not unset: kwargs["variables"] = variables + if version is not unset: + kwargs["version"] = version super().__init__(kwargs) self_.public_id = public_id