Interface ApplicationGatewayAuthenticationCertificate.UpdateDefinitionStages.WithData<ReturnT>
- Type Parameters:
ReturnT- the stage of the parent application gateway update to return to after attaching this definition
- All Known Subinterfaces:
ApplicationGatewayAuthenticationCertificate.UpdateDefinition<ReturnT>,ApplicationGatewayAuthenticationCertificate.UpdateDefinitionStages.Blank<ReturnT>
- Enclosing interface:
- ApplicationGatewayAuthenticationCertificate.UpdateDefinitionStages
public static interface ApplicationGatewayAuthenticationCertificate.UpdateDefinitionStages.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[] data) Specifies an X.509 certificate to upload.Specifies an X.509 certificate to upload.
-
Method Details
-
fromBytes
ApplicationGatewayAuthenticationCertificate.UpdateDefinitionStages.WithAttach<ReturnT> fromBytes(byte[] data) Specifies an X.509 certificate to upload.- Parameters:
data- the DER-encoded bytes of an X.509 certificate- Returns:
- the next stage of the definition
-
fromFile
ApplicationGatewayAuthenticationCertificate.UpdateDefinitionStages.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.UpdateDefinitionStages.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
-