Skip to content
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
12 changes: 12 additions & 0 deletions .generator/schemas/v2/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down Expand Up @@ -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.
Expand Down Expand Up @@ -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.
Expand Down
12 changes: 12 additions & 0 deletions src/datadog_api_client/v2/api/synthetics_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
"""
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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.
Expand Down
Loading