log_analytics_log_analytics_locations
Creates, updates, deletes, gets or lists a log_analytics_log_analytics_locations
resource.
Overview
Name | log_analytics_log_analytics_locations |
Type | Resource |
Id | azure.cdn.log_analytics_log_analytics_locations |
Fields
The following fields are returned by SELECT
queries:
- get
Describe the result of a successful operation.
Name | Datatype | Description |
---|---|---|
continents | array | |
countryOrRegions | array |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
get | select | subscriptionId , resourceGroupName , profileName | Get all available location names for AFD log analytics report. |
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 |
---|---|---|
profileName | string | Name of the Azure Front Door Standard or Azure Front Door Premium profile which is unique within the resource group. which is unique within the resource group. |
resourceGroupName | string | Name of the Resource group within the Azure subscription. |
subscriptionId | string | Azure Subscription ID. |
SELECT
examples
- get
Get all available location names for AFD log analytics report.
SELECT
continents,
countryOrRegions
FROM azure.cdn.log_analytics_log_analytics_locations
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND profileName = '{{ profileName }}' -- required
;