Configurations Interface

public interface Configurations

Resource collection API of Configurations.

Method Summary

Modifier and Type Method and Description
abstract Map<String,String> get(String resourceGroupName, String clusterName, String configurationName)

The configuration object for the specified cluster.

abstract Response<Map<String,String>> getWithResponse(String resourceGroupName, String clusterName, String configurationName, Context context)

The configuration object for the specified cluster.

abstract ClusterConfigurations list(String resourceGroupName, String clusterName)

Gets all configuration information for an HDI cluster.

abstract Response<ClusterConfigurations> listWithResponse(String resourceGroupName, String clusterName, Context context)

Gets all configuration information for an HDI cluster.

abstract void update(String resourceGroupName, String clusterName, String configurationName, Map<String,String> parameters)

Configures the HTTP settings on the specified cluster.

abstract void update(String resourceGroupName, String clusterName, String configurationName, Map<String,String> parameters, Context context)

Configures the HTTP settings on the specified cluster.

Method Details

get

public abstract Map get(String resourceGroupName, String clusterName, String configurationName)

The configuration object for the specified cluster. This API is not recommended and might be removed in the future. Please consider using List configurations API instead.

Parameters:

resourceGroupName - The name of the resource group.
clusterName - The name of the cluster.
configurationName - The name of the cluster configuration.

Returns:

the configuration object for the specified configuration for the specified cluster.

getWithResponse

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

The configuration object for the specified cluster. This API is not recommended and might be removed in the future. Please consider using List configurations API instead.

Parameters:

resourceGroupName - The name of the resource group.
clusterName - The name of the cluster.
configurationName - The name of the cluster configuration.
context - The context to associate with this operation.

Returns:

the configuration object for the specified configuration for the specified cluster along with Response<T>.

list

public abstract ClusterConfigurations list(String resourceGroupName, String clusterName)

Gets all configuration information for an HDI cluster.

Parameters:

resourceGroupName - The name of the resource group.
clusterName - The name of the cluster.

Returns:

all configuration information for an HDI cluster.

listWithResponse

public abstract Response listWithResponse(String resourceGroupName, String clusterName, Context context)

Gets all configuration information for an HDI cluster.

Parameters:

resourceGroupName - The name of the resource group.
clusterName - The name of the cluster.
context - The context to associate with this operation.

Returns:

all configuration information for an HDI cluster along with Response<T>.

update

public abstract void update(String resourceGroupName, String clusterName, String configurationName, Map parameters)

Configures the HTTP settings on the specified cluster. This API is deprecated, please use UpdateGatewaySettings in cluster endpoint instead.

Parameters:

resourceGroupName - The name of the resource group.
clusterName - The name of the cluster.
configurationName - The name of the cluster configuration.
parameters - The cluster configurations.

update

public abstract void update(String resourceGroupName, String clusterName, String configurationName, Map parameters, Context context)

Configures the HTTP settings on the specified cluster. This API is deprecated, please use UpdateGatewaySettings in cluster endpoint instead.

Parameters:

resourceGroupName - The name of the resource group.
clusterName - The name of the cluster.
configurationName - The name of the cluster configuration.
parameters - The cluster configurations.
context - The context to associate with this operation.

Applies to