ApplicationGateway.UpdateStages.WithDisabledSslProtocol Interface

public interface WithDisabledSslProtocol

The stage of an application gateway definition allowing to specify the SSL protocols to disable.

Method Summary

Modifier and Type Method and Description
ApplicationGateway.Update withDisabledSslProtocol(ApplicationGatewaySslProtocol protocol)

Disables the specified SSL protocol.

ApplicationGateway.Update withDisabledSslProtocols(ApplicationGatewaySslProtocol...protocols)

Disables the specified SSL protocols.

ApplicationGateway.Update withoutAnyDisabledSslProtocols()

Enables all SSL protocols, if previously disabled.

ApplicationGateway.Update withoutDisabledSslProtocol(ApplicationGatewaySslProtocol protocol)

Enables the specified SSL protocol, if previously disabled.

ApplicationGateway.Update withoutDisabledSslProtocols(ApplicationGatewaySslProtocol...protocols)

Enables the specified SSL protocols, if previously disabled.

Method Details

withDisabledSslProtocol

public Update withDisabledSslProtocol(ApplicationGatewaySslProtocol protocol)

Disables the specified SSL protocol.

Parameters:

protocol - an SSL protocol

Returns:

the next stage of the update

withDisabledSslProtocols

public Update withDisabledSslProtocols(ApplicationGatewaySslProtocol...protocols)

Disables the specified SSL protocols.

Parameters:

protocols - SSL protocols

Returns:

the next stage of the update

withoutAnyDisabledSslProtocols

public Update withoutAnyDisabledSslProtocols()

Enables all SSL protocols, if previously disabled.

Returns:

the next stage of the update

withoutDisabledSslProtocol

public Update withoutDisabledSslProtocol(ApplicationGatewaySslProtocol protocol)

Enables the specified SSL protocol, if previously disabled.

Parameters:

protocol - an SSL protocol

Returns:

the next stage of the update

withoutDisabledSslProtocols

public Update withoutDisabledSslProtocols(ApplicationGatewaySslProtocol...protocols)

Enables the specified SSL protocols, if previously disabled.

Parameters:

protocols - SSL protocols

Returns:

the next stage of the update

Applies to