WebCategoriesClient Interface

public interface WebCategoriesClient

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

Method Summary

Modifier and Type Method and Description
abstract AzureWebCategoryInner get(String name)

Gets the specified Azure Web Category.

abstract Mono<AzureWebCategoryInner> getAsync(String name)

Gets the specified Azure Web Category.

abstract Response<AzureWebCategoryInner> getWithResponse(String name, String expand, Context context)

Gets the specified Azure Web Category.

abstract Mono<Response<AzureWebCategoryInner>> getWithResponseAsync(String name, String expand)

Gets the specified Azure Web Category.

abstract PagedIterable<AzureWebCategoryInner> list()

Gets all the Azure Web Categories in a subscription.

abstract PagedIterable<AzureWebCategoryInner> list(Context context)

Gets all the Azure Web Categories in a subscription.

abstract PagedFlux<AzureWebCategoryInner> listAsync()

Gets all the Azure Web Categories in a subscription.

Method Details

get

public abstract AzureWebCategoryInner get(String name)

Gets the specified Azure Web Category.

Parameters:

name - The name of the azureWebCategory.

Returns:

the specified Azure Web Category.

getAsync

public abstract Mono getAsync(String name)

Gets the specified Azure Web Category.

Parameters:

name - The name of the azureWebCategory.

Returns:

the specified Azure Web Category on successful completion of Mono.

getWithResponse

public abstract Response getWithResponse(String name, String expand, Context context)

Gets the specified Azure Web Category.

Parameters:

name - The name of the azureWebCategory.
expand - Expands resourceIds back referenced by the azureWebCategory resource.
context - The context to associate with this operation.

Returns:

the specified Azure Web Category along with Response<T>.

getWithResponseAsync

public abstract Mono> getWithResponseAsync(String name, String expand)

Gets the specified Azure Web Category.

Parameters:

name - The name of the azureWebCategory.
expand - Expands resourceIds back referenced by the azureWebCategory resource.

Returns:

the specified Azure Web Category along with Response<T> on successful completion of Mono.

list

public abstract PagedIterable list()

Gets all the Azure Web Categories in a subscription.

Returns:

all the Azure Web Categories in a subscription as paginated response with PagedIterable<T>.

list

public abstract PagedIterable list(Context context)

Gets all the Azure Web Categories in a subscription.

Parameters:

context - The context to associate with this operation.

Returns:

all the Azure Web Categories in a subscription as paginated response with PagedIterable<T>.

listAsync

public abstract PagedFlux listAsync()

Gets all the Azure Web Categories in a subscription.

Returns:

all the Azure Web Categories in a subscription as paginated response with PagedFlux<T>.

Applies to