Interface SpringService.UpdateStages.WithCertificate
- All Known Subinterfaces:
SpringService.Update
- Enclosing interface:
- SpringService.UpdateStages
public static interface SpringService.UpdateStages.WithCertificate
The stage of a spring service update allowing to specify the certificate.
-
Method Summary
Modifier and TypeMethodDescriptionwithCertificate(String name, String keyVaultUri, String certNameInKeyVault) Specifies a certificate in key vault with latest version binding to the spring service.withCertificate(String name, String keyVaultUri, String certNameInKeyVault, String certVersion) Specifies a certificate in key vault with specific version binding to the spring service.withoutCertificate(String name) Removes a certificate binding to the spring service.
-
Method Details
-
withCertificate
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
Removes a certificate binding to the spring service.- Parameters:
name- the certificate name- Returns:
- the next stage of spring service update
-