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
- vw_heat_maps
- heat_maps
Name | Datatype | Description |
---|---|---|
end_time | text | field from the properties object |
endpoints | text | field from the properties object |
heatMapType | text | field from the properties object |
profileName | text | field from the properties object |
resourceGroupName | text | field from the properties object |
start_time | text | field from the properties object |
subscriptionId | text | field from the properties object |
traffic_flows | text | field from the properties object |
Name | Datatype | Description |
---|---|---|
properties | object | Class representing a Traffic Manager HeatMap properties. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | heatMapType, profileName, resourceGroupName, subscriptionId | Gets latest heatmap for Traffic Manager profile. |
SELECT
examples
Gets latest heatmap for Traffic Manager profile.
- vw_heat_maps
- heat_maps
SELECT
end_time,
endpoints,
heatMapType,
profileName,
resourceGroupName,
start_time,
subscriptionId,
traffic_flows
FROM azure.traffic_manager.vw_heat_maps
WHERE heatMapType = '{{ heatMapType }}'
AND profileName = '{{ profileName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';
SELECT
properties
FROM azure.traffic_manager.heat_maps
WHERE heatMapType = '{{ heatMapType }}'
AND profileName = '{{ profileName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';