Interface PointToSiteConfiguration.DefinitionStages.WithAzureCertificate<ParentT>
- Type Parameters:
ParentT- the stage of the parent definition to return to after attaching this definition
- All Known Subinterfaces:
PointToSiteConfiguration.Definition<ParentT>,PointToSiteConfiguration.DefinitionStages.WithAttachAndAzureCertificate<ParentT>,PointToSiteConfiguration.DefinitionStages.WithAuthenticationType<ParentT>
- Enclosing interface:
PointToSiteConfiguration.DefinitionStages
public static interface PointToSiteConfiguration.DefinitionStages.WithAzureCertificate<ParentT>
The stage of the point-to-site configuration definition allowing to add root certificate for Azure
authentication.
-
Method Summary
Modifier and TypeMethodDescriptionwithAzureCertificate(String name, String certificateData) Specifies that Azure certificate authentication type will be used and certificate to use for Azure authentication.withAzureCertificateFromFile(String name, File certificateFile) Specifies that Azure certificate authentication type will be used and certificate to use for Azure authentication.
-
Method Details
-
withAzureCertificate
PointToSiteConfiguration.DefinitionStages.WithAttachAndAzureCertificate<ParentT> withAzureCertificate(String name, String certificateData) Specifies that Azure certificate authentication type will be used and certificate to use for Azure authentication.- Parameters:
name- name of certificatecertificateData- the certificate public data- Returns:
- the next stage of the definition
-
withAzureCertificateFromFile
PointToSiteConfiguration.DefinitionStages.WithAttachAndAzureCertificate<ParentT> withAzureCertificateFromFile(String name, File certificateFile) throws IOException Specifies that Azure certificate authentication type will be used and certificate to use for Azure authentication.- Parameters:
name- name of certificatecertificateFile- public Base64-encoded certificate file- Returns:
- the next stage of the definition
- Throws:
IOException- the IO Exception
-