reports_timeseries
Creates, updates, deletes, gets or lists a reports_timeseries
resource.
Overview
Name | reports_timeseries |
Type | Resource |
Id | azure.front_door.reports_timeseries |
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 Timeseries |
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 , startDateTimeUTC , endDateTimeUTC , aggregationInterval , timeseriesType | endpoint , 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 Timeseries |
endDateTimeUTC | string (date-time) | The end DateTime of the Timeseries in UTC |
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. |
startDateTimeUTC | string (date-time) | The start DateTime of the Timeseries in UTC |
subscriptionId | string | The subscription credentials which uniquely identify the Microsoft Azure subscription. The subscription ID forms part of the URI for every service call. |
timeseriesType | string | The type of Timeseries |
country | string | The country associated with the Timeseries. Values are country ISO codes as specified here- https://www.iso.org/iso-3166-country-codes.html |
endpoint | string | The specific endpoint |
SELECT
examples
- get
successful operation
SELECT
id,
name,
location,
properties,
tags,
type
FROM azure.front_door.reports_timeseries
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND profileName = '{{ profileName }}' -- required
AND experimentName = '{{ experimentName }}' -- required
AND startDateTimeUTC = '{{ startDateTimeUTC }}' -- required
AND endDateTimeUTC = '{{ endDateTimeUTC }}' -- required
AND aggregationInterval = '{{ aggregationInterval }}' -- required
AND timeseriesType = '{{ timeseriesType }}' -- required
AND endpoint = '{{ endpoint }}'
AND country = '{{ country }}'
;