次の方法で共有


Clients Interface

public interface Clients

Resource collection API of Clients.

Method Summary

Modifier and Type Method and Description
abstract Blank define(String name)

Begins definition for a new Client resource.

abstract void delete(String resourceGroupName, String namespaceName, String clientName)

Delete a client.

abstract void delete(String resourceGroupName, String namespaceName, String clientName, Context context)

Delete a client.

abstract void deleteById(String id)

Delete a client.

abstract void deleteByIdWithResponse(String id, Context context)

Delete a client.

abstract Client get(String resourceGroupName, String namespaceName, String clientName)

Get a client.

abstract Client getById(String id)

Get a client.

abstract Response<Client> getByIdWithResponse(String id, Context context)

Get a client.

abstract Response<Client> getWithResponse(String resourceGroupName, String namespaceName, String clientName, Context context)

Get a client.

abstract PagedIterable<Client> listByNamespace(String resourceGroupName, String namespaceName)

List all permission bindings under a namespace.

abstract PagedIterable<Client> listByNamespace(String resourceGroupName, String namespaceName, String filter, Integer top, Context context)

List all permission bindings under a namespace.

Method Details

define

public abstract Client.DefinitionStages.Blank define(String name)

Begins definition for a new Client resource.

Parameters:

name - resource name.

Returns:

the first stage of the new Client definition.

delete

public abstract void delete(String resourceGroupName, String namespaceName, String clientName)

Delete a client. Delete an existing client.

Parameters:

resourceGroupName - The name of the resource group within the user's subscription.
namespaceName - Name of the namespace.
clientName - Name of the client.

delete

public abstract void delete(String resourceGroupName, String namespaceName, String clientName, Context context)

Delete a client. Delete an existing client.

Parameters:

resourceGroupName - The name of the resource group within the user's subscription.
namespaceName - Name of the namespace.
clientName - Name of the client.
context - The context to associate with this operation.

deleteById

public abstract void deleteById(String id)

Delete a client. Delete an existing client.

Parameters:

id - the resource ID.

deleteByIdWithResponse

public abstract void deleteByIdWithResponse(String id, Context context)

Delete a client. Delete an existing client.

Parameters:

id - the resource ID.
context - The context to associate with this operation.

get

public abstract Client get(String resourceGroupName, String namespaceName, String clientName)

Get a client. Get properties of a client.

Parameters:

resourceGroupName - The name of the resource group within the user's subscription.
namespaceName - Name of the namespace.
clientName - Name of the client.

Returns:

properties of a client.

getById

public abstract Client getById(String id)

Get a client. Get properties of a client.

Parameters:

id - the resource ID.

Returns:

properties of a client along with Response<T>.

getByIdWithResponse

public abstract Response<Client> getByIdWithResponse(String id, Context context)

Get a client. Get properties of a client.

Parameters:

id - the resource ID.
context - The context to associate with this operation.

Returns:

properties of a client along with Response<T>.

getWithResponse

public abstract Response<Client> getWithResponse(String resourceGroupName, String namespaceName, String clientName, Context context)

Get a client. Get properties of a client.

Parameters:

resourceGroupName - The name of the resource group within the user's subscription.
namespaceName - Name of the namespace.
clientName - Name of the client.
context - The context to associate with this operation.

Returns:

properties of a client along with Response<T>.

listByNamespace

public abstract PagedIterable<Client> listByNamespace(String resourceGroupName, String namespaceName)

List all permission bindings under a namespace. Get all the permission bindings under a namespace.

Parameters:

resourceGroupName - The name of the resource group within the user's subscription.
namespaceName - Name of the namespace.

Returns:

all the permission bindings under a namespace as paginated response with PagedIterable<T>.

listByNamespace

public abstract PagedIterable<Client> listByNamespace(String resourceGroupName, String namespaceName, String filter, Integer top, Context context)

List all permission bindings under a namespace. Get all the permission bindings under a namespace.

Parameters:

resourceGroupName - The name of the resource group within the user's subscription.
namespaceName - Name of the namespace.
filter - The query used to filter the search results using OData syntax. Filtering is permitted on the 'name' property only and with limited number of OData operations. These operations are: the 'contains' function as well as the following logical operations: not, and, or, eq (for equal), and ne (for not equal). No arithmetic operations are supported. The following is a valid filter example: $filter=contains(namE, 'PATTERN') and name ne 'PATTERN-1'. The following is not a valid filter example: $filter=location eq 'westus'.
top - The number of results to return per page for the list operation. Valid range for top parameter is 1 to 100. If not specified, the default number of results to be returned is 20 items per page.
context - The context to associate with this operation.

Returns:

all the permission bindings under a namespace as paginated response with PagedIterable<T>.

Applies to