Configurations Interface

public interface Configurations

Type representing Configurations.

Method Summary

Modifier and Type Method and Description
abstract rx.Observable<java.util.Map<java.lang.String,java.lang.String>> getAsync(String resourceGroupName, String clusterName, String configurationName)

The configuration object for the specified cluster.

abstract rx.Observable<ClusterConfigurations> listAsync(String resourceGroupName, String clusterName)

Gets all configuration information for an HDI cluster.

abstract rx.Completable updateAsync(String resourceGroupName, String clusterName, String configurationName, Map<String,String> parameters)

Configures the HTTP settings on the specified cluster.

Method Details

getAsync

public abstract Observable<>> getAsync(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 observable for the request

listAsync

public abstract Observable listAsync(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:

the observable for the request

updateAsync

public abstract Completable updateAsync(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.

Returns:

the observable for the request

Applies to