Skip to main content

load_tests_outbound_network_dependencies_endpoints

Creates, updates, deletes, gets or lists a load_tests_outbound_network_dependencies_endpoints resource.

Overview

Nameload_tests_outbound_network_dependencies_endpoints
TypeResource
Idazure.load_testing.load_tests_outbound_network_dependencies_endpoints

Fields

NameDatatypeDescription
categorystringThe type of service that Azure Load Testing connects to.
endpointsarrayThe endpoints for this service to which the Batch service makes outbound calls.

Methods

NameAccessible byRequired ParamsDescription
listSELECTloadTestName, resourceGroupName, subscriptionIdLists the endpoints that agents may call as part of load testing.

SELECT examples

Lists the endpoints that agents may call as part of load testing.

SELECT
category,
endpoints
FROM azure.load_testing.load_tests_outbound_network_dependencies_endpoints
WHERE loadTestName = '{{ loadTestName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';