Skip to main content

log_analytics_log_analytics_locations

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

Overview

Namelog_analytics_log_analytics_locations
TypeResource
Idazure.cdn.log_analytics_log_analytics_locations

Fields

The following fields are returned by SELECT queries:

Describe the result of a successful operation.

NameDatatypeDescription
continentsarray
countryOrRegionsarray

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectsubscriptionId, resourceGroupName, profileNameGet 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.

NameDatatypeDescription
profileNamestringName 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.
resourceGroupNamestringName of the Resource group within the Azure subscription.
subscriptionIdstringAzure Subscription ID.

SELECT examples

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
;