Skip to main content

web_test_locations

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

Overview

Nameweb_test_locations
TypeResource
Idazure.application_insights.web_test_locations

Fields

The following fields are returned by SELECT queries:

A list containing 0 or more web test location names available to the Application Insights component.

NameDatatypeDescription
DisplayNamestringThe display name of the web test location.
TagstringInternally defined geographic location tag.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselectresourceGroupName, subscriptionId, resourceNameGets a list of web test locations available to this Application Insights component.

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
resourceGroupNamestringThe name of the resource group. The name is case insensitive.
resourceNamestringThe name of the Application Insights component resource.
subscriptionIdstring (uuid)The ID of the target subscription. The value must be an UUID.

SELECT examples

Gets a list of web test locations available to this Application Insights component.

SELECT
DisplayName,
Tag
FROM azure.application_insights.web_test_locations
WHERE resourceGroupName = '{{ resourceGroupName }}' -- required
AND subscriptionId = '{{ subscriptionId }}' -- required
AND resourceName = '{{ resourceName }}' -- required
;