load_tests_outbound_network_dependencies_endpoints
Creates, updates, deletes, gets or lists a load_tests_outbound_network_dependencies_endpoints
resource.
Overview
Name | load_tests_outbound_network_dependencies_endpoints |
Type | Resource |
Id | azure.load_testing.load_tests_outbound_network_dependencies_endpoints |
Fields
Name | Datatype | Description |
---|---|---|
category | string | The type of service that Azure Load Testing connects to. |
endpoints | array | The endpoints for this service to which the Batch service makes outbound calls. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
list | SELECT | loadTestName, resourceGroupName, subscriptionId | Lists 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 }}';