Skip to content
Closed
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/main/java/com/datadog/api/client/v2/api/SyntheticsApi.java
Original file line number Diff line number Diff line change
Expand Up @@ -425,6 +425,10 @@ public CompletableFuture<SyntheticsNetworkTestResponse> createSyntheticsNetworkT
}

/**
* Create a Network Path test.
*
* <p><strong>Note</strong>: This endpoint is not available for the Government (US1-FED) site.
*
* @param body (required)
* @return ApiResponse&lt;SyntheticsNetworkTestResponse&gt;
* @throws ApiException if fails to make API call
Expand Down Expand Up @@ -1627,6 +1631,10 @@ public CompletableFuture<SyntheticsNetworkTestResponse> getSyntheticsNetworkTest
}

/**
* Get a Network Path test.
*
* <p><strong>Note</strong>: This endpoint is not available for the Government (US1-FED) site.
*
* @param publicId The public ID of the Network Path test to get details from. (required)
* @return ApiResponse&lt;SyntheticsNetworkTestResponse&gt;
* @throws ApiException if fails to make API call
Expand Down Expand Up @@ -3551,6 +3559,10 @@ public CompletableFuture<SyntheticsNetworkTestResponse> updateSyntheticsNetworkT
}

/**
* Edit a Network Path test.
*
* <p><strong>Note</strong>: This endpoint is not available for the Government (US1-FED) site.
*
* @param publicId The public ID of the Network Path test to edit. (required)
* @param body New Network Path test details to be saved. (required)
* @return ApiResponse&lt;SyntheticsNetworkTestResponse&gt;
Expand Down
Loading