Configurations Interface

public interface Configurations

Resource collection API of Configurations.

Method Summary

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

Begins definition for a new Configuration resource.

abstract Configuration get(String resourceGroupName, String serverName, String configurationName)

Gets information about a configuration of server.

abstract Configuration getById(String id)

Gets information about a configuration of server.

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

Gets information about a configuration of server.

abstract Response<Configuration> getWithResponse(String resourceGroupName, String serverName, String configurationName, Context context)

Gets information about a configuration of server.

abstract PagedIterable<Configuration> listByServer(String resourceGroupName, String serverName)

List all the configurations in a given server.

abstract PagedIterable<Configuration> listByServer(String resourceGroupName, String serverName, Context context)

List all the configurations in a given server.

Method Details

define

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

Begins definition for a new Configuration resource.

Parameters:

name - resource name.

Returns:

the first stage of the new Configuration definition.

get

public abstract Configuration get(String resourceGroupName, String serverName, String configurationName)

Gets information about a configuration of server.

Parameters:

resourceGroupName - The name of the resource group. The name is case insensitive.
serverName - The name of the server.
configurationName - The name of the server configuration.

Returns:

information about a configuration of server.

getById

public abstract Configuration getById(String id)

Gets information about a configuration of server.

Parameters:

id - the resource ID.

Returns:

information about a configuration of server along with Response<T>.

getByIdWithResponse

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

Gets information about a configuration of server.

Parameters:

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

Returns:

information about a configuration of server along with Response<T>.

getWithResponse

public abstract Response<Configuration> getWithResponse(String resourceGroupName, String serverName, String configurationName, Context context)

Gets information about a configuration of server.

Parameters:

resourceGroupName - The name of the resource group. The name is case insensitive.
serverName - The name of the server.
configurationName - The name of the server configuration.
context - The context to associate with this operation.

Returns:

information about a configuration of server along with Response<T>.

listByServer

public abstract PagedIterable<Configuration> listByServer(String resourceGroupName, String serverName)

List all the configurations in a given server.

Parameters:

resourceGroupName - The name of the resource group. The name is case insensitive.
serverName - The name of the server.

Returns:

a list of server configurations as paginated response with PagedIterable<T>.

listByServer

public abstract PagedIterable<Configuration> listByServer(String resourceGroupName, String serverName, Context context)

List all the configurations in a given server.

Parameters:

resourceGroupName - The name of the resource group. The name is case insensitive.
serverName - The name of the server.
context - The context to associate with this operation.

Returns:

a list of server configurations as paginated response with PagedIterable<T>.

Applies to