Class RenewCertificateOrderRequest
- java.lang.Object
-
- com.microsoft.azure.ProxyResource
-
- com.microsoft.azure.management.appservice.ProxyOnlyResource
-
- com.microsoft.azure.management.appservice.RenewCertificateOrderRequest
-
public class RenewCertificateOrderRequest extends ProxyOnlyResource
Class representing certificate renew request.
-
-
Constructor Summary
Constructors Constructor Description RenewCertificateOrderRequest()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Stringcsr()Get csr to be used for re-key operation.BooleanisPrivateKeyExternal()Get should we change the ASC type (from managed private key to external private key and vice versa).IntegerkeySize()Get certificate Key Size.RenewCertificateOrderRequestwithCsr(String csr)Set csr to be used for re-key operation.RenewCertificateOrderRequestwithIsPrivateKeyExternal(Boolean isPrivateKeyExternal)Set should we change the ASC type (from managed private key to external private key and vice versa).RenewCertificateOrderRequestwithKeySize(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 RenewCertificateOrderRequest withKeySize(Integer keySize)
Set certificate Key Size.- Parameters:
keySize- the keySize value to set- Returns:
- the RenewCertificateOrderRequest object itself.
-
csr
public String csr()
Get csr to be used for re-key operation.- Returns:
- the csr value
-
withCsr
public RenewCertificateOrderRequest withCsr(String csr)
Set csr to be used for re-key operation.- Parameters:
csr- the csr value to set- Returns:
- the RenewCertificateOrderRequest 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 RenewCertificateOrderRequest 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 RenewCertificateOrderRequest object itself.
-
-