reports_latency_scorecards
Creates, updates, deletes, gets or lists a reports_latency_scorecards
resource.
Overview
Name | reports_latency_scorecards |
Type | Resource |
Id | azure.front_door.reports_latency_scorecards |
Fields
The following fields are returned by SELECT
queries:
- get
successful operation
Name | Datatype | Description |
---|---|---|
id | string | Resource ID. |
name | string | Resource name. |
location | string | Resource location. |
properties | object | The properties of a latency scorecard |
tags | object | Resource tags. |
type | string | Resource type. |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
get | select | subscriptionId , resourceGroupName , profileName , experimentName , aggregationInterval | endDateTimeUTC , country |
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 |
---|---|---|
aggregationInterval | string | The aggregation interval of the Latency Scorecard |
experimentName | string | The Experiment identifier associated with the Experiment |
profileName | string | The Profile identifier associated with the Tenant and Partner |
resourceGroupName | string | Name of the Resource group within the Azure subscription. |
subscriptionId | string | The subscription credentials which uniquely identify the Microsoft Azure subscription. The subscription ID forms part of the URI for every service call. |
country | string | The country associated with the Latency Scorecard. Values are country ISO codes as specified here- https://www.iso.org/iso-3166-country-codes.html |
endDateTimeUTC | string | The end DateTime of the Latency Scorecard in UTC |
SELECT
examples
- get
successful operation
SELECT
id,
name,
location,
properties,
tags,
type
FROM azure.front_door.reports_latency_scorecards
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND profileName = '{{ profileName }}' -- required
AND experimentName = '{{ experimentName }}' -- required
AND aggregationInterval = '{{ aggregationInterval }}' -- required
AND endDateTimeUTC = '{{ endDateTimeUTC }}'
AND country = '{{ country }}'
;