你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn

ProviderResourceTypesClient Interface

public interface ProviderResourceTypesClient

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

Method Summary

Modifier and Type Method and Description
abstract ProviderResourceTypeListResultInner list(String resourceProviderNamespace)

List the resource types for a specified resource provider.

abstract Mono<ProviderResourceTypeListResultInner> listAsync(String resourceProviderNamespace)

List the resource types for a specified resource provider.

abstract Response<ProviderResourceTypeListResultInner> listWithResponse(String resourceProviderNamespace, String expand, Context context)

List the resource types for a specified resource provider.

abstract Mono<Response<ProviderResourceTypeListResultInner>> listWithResponseAsync(String resourceProviderNamespace, String expand)

List the resource types for a specified resource provider.

Method Details

list

public abstract ProviderResourceTypeListResultInner list(String resourceProviderNamespace)

List the resource types for a specified resource provider.

Parameters:

resourceProviderNamespace - The namespace of the resource provider.

Returns:

list of resource types of a resource provider.

listAsync

public abstract Mono listAsync(String resourceProviderNamespace)

List the resource types for a specified resource provider.

Parameters:

resourceProviderNamespace - The namespace of the resource provider.

Returns:

list of resource types of a resource provider on successful completion of Mono.

listWithResponse

public abstract Response listWithResponse(String resourceProviderNamespace, String expand, Context context)

List the resource types for a specified resource provider.

Parameters:

resourceProviderNamespace - The namespace of the resource provider.
expand - The $expand query parameter. For example, to include property aliases in response, use $expand=resourceTypes/aliases.
context - The context to associate with this operation.

Returns:

list of resource types of a resource provider along with Response<T>.

listWithResponseAsync

public abstract Mono> listWithResponseAsync(String resourceProviderNamespace, String expand)

List the resource types for a specified resource provider.

Parameters:

resourceProviderNamespace - The namespace of the resource provider.
expand - The $expand query parameter. For example, to include property aliases in response, use $expand=resourceTypes/aliases.

Returns:

list of resource types of a resource provider along with Response<T> on successful completion of Mono.

Applies to