public static interface ApplicationGatewayBackendHttpConfiguration.UpdateStages.WithAuthenticationCertificate
| Modifier and Type | Method and Description |
|---|---|
ApplicationGatewayBackendHttpConfiguration.Update |
withAuthenticationCertificate(String name)
Associates the specified authentication certificate that exists on this application gateway with this backend HTTP confifuration.
|
ApplicationGatewayBackendHttpConfiguration.Update |
withAuthenticationCertificateFromBase64(String base64Data)
Associates a new, automatically named certificate with this HTTP backend configuration loaded from the specified file.
|
ApplicationGatewayBackendHttpConfiguration.Update |
withAuthenticationCertificateFromBytes(byte[] derData)
Associates a new, automatically named certificate with this HTTP backend configuration based on the specified data.
|
ApplicationGatewayBackendHttpConfiguration.Update |
withAuthenticationCertificateFromFile(File certificateFile)
Associates a new, automatically named certificate with this HTTP backend configuration loaded from the specified file.
|
ApplicationGatewayBackendHttpConfiguration.Update |
withoutAuthenticationCertificate(String name)
Removes the reference to the specified authentication certificate from this HTTP backend configuration.
|
ApplicationGatewayBackendHttpConfiguration.Update |
withoutAuthenticationCertificates()
Removes all references to any authentication certificates.
|
@Beta(value=V1_4_0) ApplicationGatewayBackendHttpConfiguration.Update withAuthenticationCertificate(String name)
Multiple calls to this method will add additional certificate references.
name - the name of an existing authentication certificate@Beta(value=V1_4_0) ApplicationGatewayBackendHttpConfiguration.Update withAuthenticationCertificateFromBytes(byte[] derData)
Multiple calls to this method will add additional certificate references.
derData - the DER-encoded data of an X.509 certificate@Beta(value=V1_4_0) ApplicationGatewayBackendHttpConfiguration.Update withAuthenticationCertificateFromFile(File certificateFile) throws IOException
certificateFile - a file containing the DER representation of an X.509 certificateIOException - when there are issues reading the specified file@Beta(value=V1_4_0) ApplicationGatewayBackendHttpConfiguration.Update withAuthenticationCertificateFromBase64(String base64Data)
Multiple calls to this method will add additional certificate references.
base64Data - the base-64 encoded data of an X.509 certificate@Beta(value=V1_4_0) ApplicationGatewayBackendHttpConfiguration.Update withoutAuthenticationCertificate(String name)
Note the certificate will remain associated with the application gateway until removed from it explicitly.
name - the name of an existing authentication certificate associated with this HTTP backend configuration@Beta(value=V1_4_0) ApplicationGatewayBackendHttpConfiguration.Update withoutAuthenticationCertificates()
/**
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for
* license information.
*/