log_analytics_log_analytics_resources
Creates, updates, deletes, gets or lists a log_analytics_log_analytics_resources
resource.
Overview
Name | log_analytics_log_analytics_resources |
Type | Resource |
Id | azure.cdn.log_analytics_log_analytics_resources |
Fields
The following fields are returned by SELECT
queries:
- get
Describe the result of a successful operation.
Name | Datatype | Description |
---|---|---|
customDomains | array | |
endpoints | 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 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.
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 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
;