heat_maps
Creates, updates, deletes, gets or lists a heat_maps
resource.
Overview
Name | heat_maps |
Type | Resource |
Id | azure.traffic_manager.heat_maps |
Fields
The following fields are returned by SELECT
queries:
- get
The Traffic Manager heatmap.
Name | Datatype | Description |
---|---|---|
properties | object | The properties of the Traffic Manager HeatMap. |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
get | select | subscriptionId , resourceGroupName , profileName , heatMapType | topLeft , botRight | Gets 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.
Name | Datatype | Description |
---|---|---|
heatMapType | string | The type of HeatMap for the Traffic Manager profile. |
profileName | string | The name of the Traffic Manager profile. |
resourceGroupName | string | The name of the resource group. The name is case insensitive. |
subscriptionId | string | Gets subscription credentials which uniquely identify Microsoft Azure subscription. The subscription ID forms part of the URI for every service call. |
botRight | array | The bottom right latitude,longitude pair of the rectangular viewport to query for. |
topLeft | array | The top left latitude,longitude pair of the rectangular viewport to query for. |
SELECT
examples
- get
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 }}'
;