다음을 통해 공유


LocationsClient Interface

public interface LocationsClient

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

Method Summary

Modifier and Type Method and Description
abstract AscLocationInner get(String ascLocation)

Details of a specific location.

abstract Response<AscLocationInner> getWithResponse(String ascLocation, Context context)

Details of a specific location.

abstract PagedIterable<AscLocationInner> list()

The location of the responsible ASC of the specific subscription (home region).

abstract PagedIterable<AscLocationInner> list(Context context)

The location of the responsible ASC of the specific subscription (home region).

Method Details

get

public abstract AscLocationInner get(String ascLocation)

Details of a specific location.

Parameters:

ascLocation - The location where ASC stores the data of the subscription. can be retrieved from Get locations.

Returns:

the ASC location of the subscription is in the "name" field.

getWithResponse

public abstract Response<AscLocationInner> getWithResponse(String ascLocation, Context context)

Details of a specific location.

Parameters:

ascLocation - The location where ASC stores the data of the subscription. can be retrieved from Get locations.
context - The context to associate with this operation.

Returns:

the ASC location of the subscription is in the "name" field along with Response<T>.

list

public abstract PagedIterable<AscLocationInner> list()

The location of the responsible ASC of the specific subscription (home region). For each subscription there is only one responsible location. The location in the response should be used to read or write other resources in ASC according to their ID.

Returns:

list of locations where ASC saves your data as paginated response with PagedIterable<T>.

list

public abstract PagedIterable<AscLocationInner> list(Context context)

The location of the responsible ASC of the specific subscription (home region). For each subscription there is only one responsible location. The location in the response should be used to read or write other resources in ASC according to their ID.

Parameters:

context - The context to associate with this operation.

Returns:

list of locations where ASC saves your data as paginated response with PagedIterable<T>.

Applies to