Skip to main content

heat_maps

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

Overview

Nameheat_maps
TypeResource
Idazure.traffic_manager.heat_maps

Fields

The following fields are returned by SELECT queries:

The Traffic Manager heatmap.

NameDatatypeDescription
propertiesobjectThe properties of the Traffic Manager HeatMap.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectsubscriptionId, resourceGroupName, profileName, heatMapTypetopLeft, 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
heatMapTypestringThe type of HeatMap for the Traffic Manager profile.
profileNamestringThe name of the Traffic Manager profile.
resourceGroupNamestringThe name of the resource group. The name is case insensitive.
subscriptionIdstringGets subscription credentials which uniquely identify Microsoft Azure subscription. The subscription ID forms part of the URI for every service call.
botRightarrayThe bottom right latitude,longitude pair of the rectangular viewport to query for.
topLeftarrayThe top left latitude,longitude pair of the rectangular viewport to query for.

SELECT examples

Gets latest heatmap for Traffic Manager profile.

SELECT
properties
FROM azure.traffic_manager.heat_maps
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND profileName = '{{ profileName }}' -- required
AND heatMapType = '{{ heatMapType }}' -- required
AND topLeft = '{{ topLeft }}'
AND botRight = '{{ botRight }}'
;