Interface ApplicationGateway.UpdateStages.WithDisabledSslProtocol
-
- All Known Subinterfaces:
ApplicationGateway.Update
- Enclosing interface:
- ApplicationGateway.UpdateStages
public static interface ApplicationGateway.UpdateStages.WithDisabledSslProtocolThe stage of an application gateway definition allowing to specify the SSL protocols to disable.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ApplicationGateway.UpdatewithDisabledSslProtocol(ApplicationGatewaySslProtocol protocol)Disables the specified SSL protocol.ApplicationGateway.UpdatewithDisabledSslProtocols(ApplicationGatewaySslProtocol... protocols)Disables the specified SSL protocols.ApplicationGateway.UpdatewithoutAnyDisabledSslProtocols()Enables all SSL protocols, if previously disabled.ApplicationGateway.UpdatewithoutDisabledSslProtocol(ApplicationGatewaySslProtocol protocol)Enables the specified SSL protocol, if previously disabled.ApplicationGateway.UpdatewithoutDisabledSslProtocols(ApplicationGatewaySslProtocol... protocols)Enables the specified SSL protocols, if previously disabled.
-
-
-
Method Detail
-
withDisabledSslProtocol
ApplicationGateway.Update withDisabledSslProtocol(ApplicationGatewaySslProtocol protocol)
Disables the specified SSL protocol.- Parameters:
protocol- an SSL protocol- Returns:
- the next stage of the update
-
withDisabledSslProtocols
ApplicationGateway.Update withDisabledSslProtocols(ApplicationGatewaySslProtocol... protocols)
Disables the specified SSL protocols.- Parameters:
protocols- SSL protocols- Returns:
- the next stage of the update
-
withoutDisabledSslProtocol
ApplicationGateway.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
ApplicationGateway.Update withoutDisabledSslProtocols(ApplicationGatewaySslProtocol... protocols)
Enables the specified SSL protocols, if previously disabled.- Parameters:
protocols- SSL protocols- Returns:
- the next stage of the update
-
withoutAnyDisabledSslProtocols
ApplicationGateway.Update withoutAnyDisabledSslProtocols()
Enables all SSL protocols, if previously disabled.- Returns:
- the next stage of the update
-
-