ResourceNamesClient Interface

public interface ResourceNamesClient

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

Method Summary

Modifier and Type Method and Description
abstract CheckResourceNameResultInner checkResourceName()

Checks resource name validity

abstract Mono<CheckResourceNameResultInner> checkResourceNameAsync()

Checks resource name validity

abstract Response<CheckResourceNameResultInner> checkResourceNameWithResponse(ResourceName resourceNameDefinition, Context context)

Checks resource name validity

abstract Mono<Response<CheckResourceNameResultInner>> checkResourceNameWithResponseAsync(ResourceName resourceNameDefinition)

Checks resource name validity

Method Details

checkResourceName

public abstract CheckResourceNameResultInner checkResourceName()

Checks resource name validity

A resource name is valid if it is not a reserved word, does not contains a reserved word and does not start with a reserved word.

Returns:

resource Name valid if not a reserved word, does not contain a reserved word and does not start with a reserved word.

checkResourceNameAsync

public abstract Mono checkResourceNameAsync()

Checks resource name validity

A resource name is valid if it is not a reserved word, does not contains a reserved word and does not start with a reserved word.

Returns:

resource Name valid if not a reserved word, does not contain a reserved word and does not start with a reserved word on successful completion of Mono.

checkResourceNameWithResponse

public abstract Response checkResourceNameWithResponse(ResourceName resourceNameDefinition, Context context)

Checks resource name validity

A resource name is valid if it is not a reserved word, does not contains a reserved word and does not start with a reserved word.

Parameters:

resourceNameDefinition - Resource object with values for resource name and resource type.
context - The context to associate with this operation.

Returns:

resource Name valid if not a reserved word, does not contain a reserved word and does not start with a reserved word along with Response<T>.

checkResourceNameWithResponseAsync

public abstract Mono<>> checkResourceNameWithResponseAsync(ResourceName resourceNameDefinition)

Checks resource name validity

A resource name is valid if it is not a reserved word, does not contains a reserved word and does not start with a reserved word.

Parameters:

resourceNameDefinition - Resource object with values for resource name and resource type.

Returns:

resource Name valid if not a reserved word, does not contain a reserved word and does not start with a reserved word along with Response<T> on successful completion of Mono.

Applies to