Skip to main content

heat_map

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

Overview

Nameheat_map
TypeResource
Idazure.traffic_manager.heat_map

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
idstringFully qualified resource Id for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/trafficManagerProfiles/{resourceName}.
namestringThe name of the resource.
endTimestring (date-time)The ending of the time window for this HeatMap, exclusive.
endpointsarrayThe endpoints used in this HeatMap calculation.
startTimestring (date-time)The beginning of the time window for this HeatMap, inclusive.
trafficFlowsarrayThe traffic flows produced in this HeatMap calculation.
typestringThe type of the resource. Ex- Microsoft.Network/trafficManagerProfiles.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectresource_group_name, profile_name, heat_map_type, subscription_idtopLeft, botRightGets latest heatmap for Traffic Manager profile.

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
heat_map_typestringThe type of the heatmap. "default" Required.
profile_namestringThe name of the Traffic Manager profile. Required.
resource_group_namestringThe name of the resource group. The name is case insensitive. Required.
subscription_idstring
botRightarrayThe bottom right latitude,longitude pair of the rectangular viewport to query for. Default value is None.
topLeftarrayThe top left latitude,longitude pair of the rectangular viewport to query for. Default value is None.

SELECT examples

Gets latest heatmap for Traffic Manager profile.

SELECT
id,
name,
endTime,
endpoints,
startTime,
trafficFlows,
type
FROM azure.traffic_manager.heat_map
WHERE resource_group_name = '{{ resource_group_name }}' -- required
AND profile_name = '{{ profile_name }}' -- required
AND heat_map_type = '{{ heat_map_type }}' -- required
AND subscription_id = '{{ subscription_id }}' -- required
AND topLeft = '{{ topLeft }}'
AND botRight = '{{ botRight }}'
;