Skip to main content

log_analytics_log_analytics_resources

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

Overview

Namelog_analytics_log_analytics_resources
TypeResource
Idazure.cdn.log_analytics_log_analytics_resources

Fields

The following fields are returned by SELECT queries:

Describe the result of a successful operation.

NameDatatypeDescription
customDomainsarray
endpointsarray

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectsubscriptionId, resourceGroupName, profileNameGet all endpoints and custom domains available for AFD log 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 endpoints and custom domains available for AFD log report

SELECT
customDomains,
endpoints
FROM azure.cdn.log_analytics_log_analytics_resources
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND profileName = '{{ profileName }}' -- required
;