Interface SpringService.UpdateStages.WithCertificate
-
- All Known Subinterfaces:
SpringService.Update
- Enclosing interface:
- SpringService.UpdateStages
public static interface SpringService.UpdateStages.WithCertificateThe stage of a spring service update allowing to specify the certificate.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description SpringService.UpdatewithCertificate(String name, String keyVaultUri, String certNameInKeyVault)Specifies a certificate in key vault with latest version binding to the spring service.SpringService.UpdatewithCertificate(String name, String keyVaultUri, String certNameInKeyVault, String certVersion)Specifies a certificate in key vault with specific version binding to the spring service.SpringService.UpdatewithoutCertificate(String name)Removes a certificate binding to the spring service.
-
-
-
Method Detail
-
withCertificate
SpringService.Update withCertificate(String name, String keyVaultUri, String certNameInKeyVault)
Specifies a certificate in key vault with latest version binding to the spring service.- Parameters:
name- the certificate namekeyVaultUri- the uri for key vault that contains certificatecertNameInKeyVault- the certificate name in the key vault- Returns:
- the next stage of spring service update
-
withCertificate
SpringService.Update withCertificate(String name, String keyVaultUri, String certNameInKeyVault, String certVersion)
Specifies a certificate in key vault with specific version binding to the spring service.- Parameters:
name- the certificate namekeyVaultUri- the uri for key vault that contains certificatecertNameInKeyVault- the certificate name in the key vaultcertVersion- the certificate version in the key vault- Returns:
- the next stage of spring service update
-
withoutCertificate
SpringService.Update withoutCertificate(String name)
Removes a certificate binding to the spring service.- Parameters:
name- the certificate name- Returns:
- the next stage of spring service update
-
-