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
15 changes: 15 additions & 0 deletions lib/datadog_api_client/v2/api/synthetics_api.rb
Original file line number Diff line number Diff line change
Expand Up @@ -178,6 +178,11 @@ def create_synthetics_network_test(body, opts = {})
end

# Create a Network Path test.
#
# Create a Network Path test.
#
# **Note**: This endpoint is not available for the Government (US1-FED) site.
#
# @param body [SyntheticsNetworkTestEditRequest]
# @param opts [Hash] the optional parameters
# @return [Array<(SyntheticsNetworkTestResponse, Integer, Hash)>] SyntheticsNetworkTestResponse data, response status code and response headers
Expand Down Expand Up @@ -757,6 +762,11 @@ def get_synthetics_network_test(public_id, opts = {})
end

# 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 [String] The public ID of the Network Path test to get details from.
# @param opts [Hash] the optional parameters
# @return [Array<(SyntheticsNetworkTestResponse, Integer, Hash)>] SyntheticsNetworkTestResponse data, response status code and response headers
Expand Down Expand Up @@ -1532,6 +1542,11 @@ def update_synthetics_network_test(public_id, body, opts = {})
end

# 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 [String] The public ID of the Network Path test to edit.
# @param body [SyntheticsNetworkTestEditRequest] New Network Path test details to be saved.
# @param opts [Hash] the optional parameters
Expand Down
Loading