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
| 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 | resource_group_name, resource_name, subscription_id | 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 |
|---|---|---|
resource_group_name | string | The name of the resource group. The name is case insensitive. Required. |
resource_name | string | The name of the Application Insights component resource. Required. |
subscription_id | string |
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 resource_group_name = '{{ resource_group_name }}' -- required
AND resource_name = '{{ resource_name }}' -- required
AND subscription_id = '{{ subscription_id }}' -- required
;