Interface ApplicationGatewayAuthenticationCertificate.DefinitionStages.WithData<ReturnT>
- Type Parameters:
ReturnT- the stage of the parent application gateway definition to return to after attaching this definition
- All Known Subinterfaces:
ApplicationGatewayAuthenticationCertificate.Definition<ReturnT>,ApplicationGatewayAuthenticationCertificate.DefinitionStages.Blank<ReturnT>
- Enclosing interface:
- ApplicationGatewayAuthenticationCertificate.DefinitionStages
public static interface ApplicationGatewayAuthenticationCertificate.DefinitionStages.WithData<ReturnT>
The stage of an application gateway authentication certificate definition allowing to specify the data of the
certificate.
-
Method Summary
Modifier and TypeMethodDescriptionfromBase64(String base64data) Specifies an X.509 certificate to upload.fromBytes(byte[] derData) Specifies an X.509 certificate to upload.Specifies an X.509 certificate to upload.
-
Method Details
-
fromBytes
ApplicationGatewayAuthenticationCertificate.DefinitionStages.WithAttach<ReturnT> fromBytes(byte[] derData) Specifies an X.509 certificate to upload.- Parameters:
derData- the DER-encoded bytes of an X.509 certificate- Returns:
- the next stage of the definition
-
fromFile
ApplicationGatewayAuthenticationCertificate.DefinitionStages.WithAttach<ReturnT> fromFile(File certificateFile) throws IOException Specifies an X.509 certificate to upload.- Parameters:
certificateFile- a DER encoded X.509 certificate file- Returns:
- the next stage of the definition
- Throws:
IOException- when there are problems reading the certificate file
-
fromBase64
ApplicationGatewayAuthenticationCertificate.DefinitionStages.WithAttach<ReturnT> fromBase64(String base64data) Specifies an X.509 certificate to upload.- Parameters:
base64data- base-64 encoded data of the certificate- Returns:
- the next stage of the definition
-