Interface AppServiceCertificate.DefinitionStages.WithCertificate
-
- All Known Subinterfaces:
AppServiceCertificate.Definition
- Enclosing interface:
- AppServiceCertificate.DefinitionStages
public static interface AppServiceCertificate.DefinitionStages.WithCertificateAn app service certificate definition allowing PFX certificate file to be set.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description AppServiceCertificate.DefinitionStages.WithCreatewithExistingCertificateOrder(AppServiceCertificateOrder certificateOrder)Specifies the app service certificate.AppServiceCertificate.DefinitionStages.WithPfxFilePasswordwithPfxByteArray(byte[] pfxByteArray)Specifies the PFX byte array to upload.AppServiceCertificate.DefinitionStages.WithPfxFilePasswordwithPfxFile(File file)Specifies the PFX certificate file to upload.AppServiceCertificate.DefinitionStages.WithPfxFilePasswordwithPfxFileFromUrl(String url)Specifies the PFX file from a URL.
-
-
-
Method Detail
-
withPfxFile
AppServiceCertificate.DefinitionStages.WithPfxFilePassword withPfxFile(File file)
Specifies the PFX certificate file to upload.- Parameters:
file- the PFX certificate file- Returns:
- the next stage of the definition
-
withPfxByteArray
AppServiceCertificate.DefinitionStages.WithPfxFilePassword withPfxByteArray(byte[] pfxByteArray)
Specifies the PFX byte array to upload.- Parameters:
pfxByteArray- the PFX byte array- Returns:
- the next stage of the definition
-
withPfxFileFromUrl
AppServiceCertificate.DefinitionStages.WithPfxFilePassword withPfxFileFromUrl(String url)
Specifies the PFX file from a URL.- Parameters:
url- the URL pointing to the PFX file.- Returns:
- the next stage of the definition
-
withExistingCertificateOrder
AppServiceCertificate.DefinitionStages.WithCreate withExistingCertificateOrder(AppServiceCertificateOrder certificateOrder)
Specifies the app service certificate.- Parameters:
certificateOrder- the app service certificate order- Returns:
- the next stage of the definition
-
-