web_test_locations
Creates, updates, deletes, gets or lists a web_test_locations
resource.
Overview
Name | web_test_locations |
Type | Resource |
Id | azure.application_insights.web_test_locations |
Fields
The following fields are returned by SELECT
queries:
- list
A list containing 0 or more web test location names available to the Application Insights component.
Name | Datatype | Description |
---|---|---|
DisplayName | string | The display name of the web test location. |
Tag | string | Internally defined geographic location tag. |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
list | select | resourceGroupName , subscriptionId , resourceName | Gets 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.
Name | Datatype | Description |
---|---|---|
resourceGroupName | string | The name of the resource group. The name is case insensitive. |
resourceName | string | The name of the Application Insights component resource. |
subscriptionId | string (uuid) | The ID of the target subscription. The value must be an UUID. |
SELECT
examples
- list
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
;