
com.microsoft.azure.management.network.ApplicationGatewaySslPolicy Maven / Gradle / Ivy
/**
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for
* license information.
*
* Code generated by Microsoft (R) AutoRest Code Generator.
*/
package com.microsoft.azure.management.network;
import java.util.List;
import com.fasterxml.jackson.annotation.JsonProperty;
/**
* Application gateway SSL policy.
*/
public class ApplicationGatewaySslPolicy {
/**
* SSL protocols to be disabled on application gateway. Possible values
* are: 'TLSv1_0', 'TLSv1_1', and 'TLSv1_2'.
*/
@JsonProperty(value = "disabledSslProtocols")
private List disabledSslProtocols;
/**
* Get the disabledSslProtocols value.
*
* @return the disabledSslProtocols value
*/
public List disabledSslProtocols() {
return this.disabledSslProtocols;
}
/**
* Set the disabledSslProtocols value.
*
* @param disabledSslProtocols the disabledSslProtocols value to set
* @return the ApplicationGatewaySslPolicy object itself.
*/
public ApplicationGatewaySslPolicy withDisabledSslProtocols(List disabledSslProtocols) {
this.disabledSslProtocols = disabledSslProtocols;
return this;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy