Class ReissueCertificateOrderRequest
- java.lang.Object
-
- com.microsoft.azure.ProxyResource
-
- com.microsoft.azure.management.appservice.ProxyOnlyResource
-
- com.microsoft.azure.management.appservice.ReissueCertificateOrderRequest
-
public class ReissueCertificateOrderRequest extends ProxyOnlyResource
Class representing certificate reissue request.
-
-
Constructor Summary
Constructors Constructor Description ReissueCertificateOrderRequest()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Stringcsr()Get csr to be used for re-key operation.IntegerdelayExistingRevokeInHours()Get delay in hours to revoke existing certificate after the new certificate is issued.BooleanisPrivateKeyExternal()Get should we change the ASC type (from managed private key to external private key and vice versa).IntegerkeySize()Get certificate Key Size.ReissueCertificateOrderRequestwithCsr(String csr)Set csr to be used for re-key operation.ReissueCertificateOrderRequestwithDelayExistingRevokeInHours(Integer delayExistingRevokeInHours)Set delay in hours to revoke existing certificate after the new certificate is issued.ReissueCertificateOrderRequestwithIsPrivateKeyExternal(Boolean isPrivateKeyExternal)Set should we change the ASC type (from managed private key to external private key and vice versa).ReissueCertificateOrderRequestwithKeySize(Integer keySize)Set certificate Key Size.-
Methods inherited from class com.microsoft.azure.management.appservice.ProxyOnlyResource
kind, withKind
-
-
-
-
Method Detail
-
keySize
public Integer keySize()
Get certificate Key Size.- Returns:
- the keySize value
-
withKeySize
public ReissueCertificateOrderRequest withKeySize(Integer keySize)
Set certificate Key Size.- Parameters:
keySize- the keySize value to set- Returns:
- the ReissueCertificateOrderRequest object itself.
-
delayExistingRevokeInHours
public Integer delayExistingRevokeInHours()
Get delay in hours to revoke existing certificate after the new certificate is issued.- Returns:
- the delayExistingRevokeInHours value
-
withDelayExistingRevokeInHours
public ReissueCertificateOrderRequest withDelayExistingRevokeInHours(Integer delayExistingRevokeInHours)
Set delay in hours to revoke existing certificate after the new certificate is issued.- Parameters:
delayExistingRevokeInHours- the delayExistingRevokeInHours value to set- Returns:
- the ReissueCertificateOrderRequest object itself.
-
csr
public String csr()
Get csr to be used for re-key operation.- Returns:
- the csr value
-
withCsr
public ReissueCertificateOrderRequest withCsr(String csr)
Set csr to be used for re-key operation.- Parameters:
csr- the csr value to set- Returns:
- the ReissueCertificateOrderRequest object itself.
-
isPrivateKeyExternal
public Boolean isPrivateKeyExternal()
Get should we change the ASC type (from managed private key to external private key and vice versa).- Returns:
- the isPrivateKeyExternal value
-
withIsPrivateKeyExternal
public ReissueCertificateOrderRequest withIsPrivateKeyExternal(Boolean isPrivateKeyExternal)
Set should we change the ASC type (from managed private key to external private key and vice versa).- Parameters:
isPrivateKeyExternal- the isPrivateKeyExternal value to set- Returns:
- the ReissueCertificateOrderRequest object itself.
-
-