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.
|
ApplicationGatewayBackendHttpConfiguration.Update withAuthenticationCertificate(String name)
Multiple calls to this method will add additional certificate references.
name - the name of an existing authentication certificateApplicationGatewayBackendHttpConfiguration.Update withAuthenticationCertificateFromBytes(byte[] derData)
Multiple calls to this method will add additional certificate references.
derData - the DER-encoded data of an X.509 certificateApplicationGatewayBackendHttpConfiguration.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 fileApplicationGatewayBackendHttpConfiguration.Update withAuthenticationCertificateFromBase64(String base64Data)
Multiple calls to this method will add additional certificate references.
base64Data - the base-64 encoded data of an X.509 certificateApplicationGatewayBackendHttpConfiguration.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
configurationApplicationGatewayBackendHttpConfiguration.Update withoutAuthenticationCertificates()
Copyright © 2020 Microsoft Corporation. All rights reserved.