Class CertificateOperation
- java.lang.Object
-
- com.azure.security.keyvault.certificates.models.CertificateOperation
-
public final class CertificateOperation extends Object
A certificate operation is returned in case of long running service requests.
-
-
Constructor Summary
Constructors Constructor Description CertificateOperation()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description BooleangetCancellationRequested()Get the cancellation requested status.StringgetCertificateType()Get the certificate type.byte[]getCsr()Get the csr.CertificateOperationErrorgetError()Get the error.StringgetId()Get the identifier.StringgetIssuerName()Get the issuer name.StringgetName()Get the certificate name.StringgetRequestId()Get the requestId.StringgetStatus()Get the status.StringgetStatusDetails()Get the status details.StringgetTarget()Get the target.StringgetVaultUrl()Get the URL for the Azure KeyVault service.booleanisCertificateTransparent()Get the certificate transparency status.
-
-
-
Method Detail
-
getId
public String getId()
Get the identifier.- Returns:
- the identifier.
-
getIssuerName
public String getIssuerName()
Get the issuer name.- Returns:
- the issuer name
-
getCertificateType
public String getCertificateType()
Get the certificate type.- Returns:
- the certificateType
-
isCertificateTransparent
public boolean isCertificateTransparent()
Get the certificate transparency status.- Returns:
- the certificateTransparency status.
-
getCsr
public byte[] getCsr()
Get the csr.- Returns:
- the csr.
-
getCancellationRequested
public Boolean getCancellationRequested()
Get the cancellation requested status.- Returns:
- the cancellationRequested status.
-
getStatus
public String getStatus()
Get the status.- Returns:
- the status
-
getStatusDetails
public String getStatusDetails()
Get the status details.- Returns:
- the status details
-
getError
public CertificateOperationError getError()
Get the error.- Returns:
- the error
-
getTarget
public String getTarget()
Get the target.- Returns:
- the target
-
getRequestId
public String getRequestId()
Get the requestId.- Returns:
- the requestId
-
getVaultUrl
public String getVaultUrl()
Get the URL for the Azure KeyVault service.- Returns:
- the value of the URL for the Azure KeyVault service.
-
getName
public String getName()
Get the certificate name.- Returns:
- the name of the certificate.
-
-