Skip to main content

reports_latency_scorecards

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

Overview

Namereports_latency_scorecards
TypeResource
Idazure.front_door.reports_latency_scorecards

Fields

The following fields are returned by SELECT queries:

successful operation

NameDatatypeDescription
idstringResource ID.
namestringResource name.
locationstringResource location.
propertiesobjectThe properties of a latency scorecard
tagsobjectResource tags.
typestringResource type.

Methods

The following methods are available for this resource:

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

NameDatatypeDescription
aggregationIntervalstringThe aggregation interval of the Latency Scorecard
experimentNamestringThe Experiment identifier associated with the Experiment
profileNamestringThe Profile identifier associated with the Tenant and Partner
resourceGroupNamestringName of the Resource group within the Azure subscription.
subscriptionIdstringThe subscription credentials which uniquely identify the Microsoft Azure subscription. The subscription ID forms part of the URI for every service call.
countrystringThe country associated with the Latency Scorecard. Values are country ISO codes as specified here- https://www.iso.org/iso-3166-country-codes.html
endDateTimeUTCstringThe end DateTime of the Latency Scorecard in UTC

SELECT examples

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 }}'
;