HeatMapsClient Interface

public interface HeatMapsClient

An instance of this class provides access to all the operations defined in HeatMapsClient.

Method Summary

Modifier and Type Method and Description
abstract HeatMapModelInner get(String resourceGroupName, String profileName)

Gets latest heatmap for Traffic Manager profile.

abstract Mono<HeatMapModelInner> getAsync(String resourceGroupName, String profileName)

Gets latest heatmap for Traffic Manager profile.

abstract Response<HeatMapModelInner> getWithResponse(String resourceGroupName, String profileName, List<Double> topLeft, List<Double> botRight, Context context)

Gets latest heatmap for Traffic Manager profile.

abstract Mono<Response<HeatMapModelInner>> getWithResponseAsync(String resourceGroupName, String profileName, List<Double> topLeft, List<Double> botRight)

Gets latest heatmap for Traffic Manager profile.

Method Details

get

public abstract HeatMapModelInner get(String resourceGroupName, String profileName)

Gets latest heatmap for Traffic Manager profile.

Parameters:

resourceGroupName - The name of the resource group. The name is case insensitive.
profileName - The name of the Traffic Manager profile.

Returns:

latest heatmap for Traffic Manager profile.

getAsync

public abstract Mono getAsync(String resourceGroupName, String profileName)

Gets latest heatmap for Traffic Manager profile.

Parameters:

resourceGroupName - The name of the resource group. The name is case insensitive.
profileName - The name of the Traffic Manager profile.

Returns:

latest heatmap for Traffic Manager profile on successful completion of Mono.

getWithResponse

public abstract Response getWithResponse(String resourceGroupName, String profileName, List topLeft, List botRight, Context context)

Gets latest heatmap for Traffic Manager profile.

Parameters:

resourceGroupName - The name of the resource group. The name is case insensitive.
profileName - The name of the Traffic Manager profile.
topLeft - The top left latitude,longitude pair of the rectangular viewport to query for.
botRight - The bottom right latitude,longitude pair of the rectangular viewport to query for.
context - The context to associate with this operation.

Returns:

latest heatmap for Traffic Manager profile along with Response<T>.

getWithResponseAsync

public abstract Mono<>> getWithResponseAsync(String resourceGroupName, String profileName, List topLeft, List botRight)

Gets latest heatmap for Traffic Manager profile.

Parameters:

resourceGroupName - The name of the resource group. The name is case insensitive.
profileName - The name of the Traffic Manager profile.
topLeft - The top left latitude,longitude pair of the rectangular viewport to query for.
botRight - The bottom right latitude,longitude pair of the rectangular viewport to query for.

Returns:

latest heatmap for Traffic Manager profile along with Response<T> on successful completion of Mono.

Applies to