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:

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
listselectresource_group_name, resource_name, subscription_idGets 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
resource_group_namestringThe name of the resource group. The name is case insensitive. Required.
resource_namestringThe name of the Application Insights component resource. Required.
subscription_idstring

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 resource_group_name = '{{ resource_group_name }}' -- required
AND resource_name = '{{ resource_name }}' -- required
AND subscription_id = '{{ subscription_id }}' -- required
;