diff --git a/.generator/schemas/v2/openapi.yaml b/.generator/schemas/v2/openapi.yaml index 1d02f30912..b6ddc81c87 100644 --- a/.generator/schemas/v2/openapi.yaml +++ b/.generator/schemas/v2/openapi.yaml @@ -116590,6 +116590,10 @@ paths: - synthetics_read /api/v2/synthetics/tests/network: post: + description: |- + Create a Network Path test. + + **Note**: This endpoint is not available for the Government (US1-FED) site. operationId: CreateSyntheticsNetworkTest requestBody: content: @@ -116627,6 +116631,10 @@ paths: - synthetics_create_edit_trigger /api/v2/synthetics/tests/network/{public_id}: get: + description: |- + Get a Network Path test. + + **Note**: This endpoint is not available for the Government (US1-FED) site. operationId: GetSyntheticsNetworkTest parameters: - description: The public ID of the Network Path test to get details from. @@ -116669,6 +116677,10 @@ paths: permissions: - synthetics_read put: + description: |- + Edit a Network Path test. + + **Note**: This endpoint is not available for the Government (US1-FED) site. operationId: UpdateSyntheticsNetworkTest parameters: - description: The public ID of the Network Path test to edit. diff --git a/src/datadog_api_client/v2/api/synthetics_api.py b/src/datadog_api_client/v2/api/synthetics_api.py index ef02b17a4d..f12e42a1c2 100644 --- a/src/datadog_api_client/v2/api/synthetics_api.py +++ b/src/datadog_api_client/v2/api/synthetics_api.py @@ -697,6 +697,10 @@ def create_synthetics_network_test( ) -> SyntheticsNetworkTestResponse: """Create a Network Path test. + Create a Network Path test. + + **Note** : This endpoint is not available for the Government (US1-FED) site. + :type body: SyntheticsNetworkTestEditRequest :rtype: SyntheticsNetworkTestResponse """ @@ -836,6 +840,10 @@ def get_synthetics_network_test( ) -> SyntheticsNetworkTestResponse: """Get a Network Path test. + Get a Network Path test. + + **Note** : This endpoint is not available for the Government (US1-FED) site. + :param public_id: The public ID of the Network Path test to get details from. :type public_id: str :rtype: SyntheticsNetworkTestResponse @@ -1113,6 +1121,10 @@ def update_synthetics_network_test( ) -> SyntheticsNetworkTestResponse: """Edit a Network Path test. + Edit a Network Path test. + + **Note** : This endpoint is not available for the Government (US1-FED) site. + :param public_id: The public ID of the Network Path test to edit. :type public_id: str :param body: New Network Path test details to be saved.