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
The following fields are returned by SELECT queries:
- list
Azure operation completed successfully.
| 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
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list | select | subscriptionId, resourceGroupName, loadTestName | Lists 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.
| Name | Datatype | Description |
|---|---|---|
loadTestName | string | Load Test name |
resourceGroupName | string | The name of the resource group. The name is case insensitive. |
subscriptionId | string (uuid) | The ID of the target subscription. The value must be an UUID. |
SELECT examples
- list
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
;