CapabilitiesClient Interface

public interface CapabilitiesClient

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

Method Summary

Modifier and Type Method and Description
abstract LocationCapabilitiesInner listByLocation(String locationName)

Gets the subscription capabilities available for the specified location.

abstract Mono<LocationCapabilitiesInner> listByLocationAsync(String locationName)

Gets the subscription capabilities available for the specified location.

abstract Response<LocationCapabilitiesInner> listByLocationWithResponse(String locationName, CapabilityGroup include, Context context)

Gets the subscription capabilities available for the specified location.

abstract Mono<Response<LocationCapabilitiesInner>> listByLocationWithResponseAsync(String locationName, CapabilityGroup include)

Gets the subscription capabilities available for the specified location.

Method Details

listByLocation

public abstract LocationCapabilitiesInner listByLocation(String locationName)

Gets the subscription capabilities available for the specified location.

Parameters:

locationName - The location name whose capabilities are retrieved.

Returns:

the subscription capabilities available for the specified location.

listByLocationAsync

public abstract Mono listByLocationAsync(String locationName)

Gets the subscription capabilities available for the specified location.

Parameters:

locationName - The location name whose capabilities are retrieved.

Returns:

the subscription capabilities available for the specified location on successful completion of Mono.

listByLocationWithResponse

public abstract Response listByLocationWithResponse(String locationName, CapabilityGroup include, Context context)

Gets the subscription capabilities available for the specified location.

Parameters:

locationName - The location name whose capabilities are retrieved.
include - If specified, restricts the response to only include the selected item.
context - The context to associate with this operation.

Returns:

the subscription capabilities available for the specified location along with Response<T>.

listByLocationWithResponseAsync

public abstract Mono> listByLocationWithResponseAsync(String locationName, CapabilityGroup include)

Gets the subscription capabilities available for the specified location.

Parameters:

locationName - The location name whose capabilities are retrieved.
include - If specified, restricts the response to only include the selected item.

Returns:

the subscription capabilities available for the specified location along with Response<T> on successful completion of Mono.

Applies to