diff --git a/.generator/schemas/v2/openapi.yaml b/.generator/schemas/v2/openapi.yaml index 1d02f30912a..b6ddc81c870 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/main/java/com/datadog/api/client/v2/api/SyntheticsApi.java b/src/main/java/com/datadog/api/client/v2/api/SyntheticsApi.java index 23eb383a827..c1dfff61961 100644 --- a/src/main/java/com/datadog/api/client/v2/api/SyntheticsApi.java +++ b/src/main/java/com/datadog/api/client/v2/api/SyntheticsApi.java @@ -425,6 +425,10 @@ public CompletableFuture createSyntheticsNetworkT } /** + * Create a Network Path test. + * + *

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

Note: 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<SyntheticsNetworkTestResponse> * @throws ApiException if fails to make API call @@ -3551,6 +3559,10 @@ public CompletableFuture updateSyntheticsNetworkT } /** + * Edit a Network Path test. + * + *

Note: 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<SyntheticsNetworkTestResponse>