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

The following fields are returned by SELECT queries:

Azure operation completed successfully.

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

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselectsubscriptionId, resourceGroupName, loadTestNameLists the endpoints that agents may call as part of load testing.

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
loadTestNamestringLoad Test name
resourceGroupNamestringThe name of the resource group. The name is case insensitive.
subscriptionIdstring (uuid)The ID of the target subscription. The value must be an UUID.

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 subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND loadTestName = '{{ loadTestName }}' -- required
;