Class AzureCredentialCertificateProperties
- java.lang.Object
-
- com.cloudera.cdp.environments.model.AzureCredentialCertificateProperties
-
@Generated(value="com.cloudera.cdp.client.codegen.CdpSDKJavaCodegen", date="2023-09-27T13:27:53.061-07:00") public class AzureCredentialCertificateProperties extends Object
The certificate used for the credential
-
-
Constructor Summary
Constructors Constructor Description AzureCredentialCertificateProperties()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object o)
String
getBase64()
Getter for base64.String
getExpiration()
Getter for expiration.ZonedDateTime
getExpirationDate()
Getter for expirationDate.String
getSha512()
Getter for sha512.String
getStatus()
Getter for status.int
hashCode()
void
setBase64(String base64)
Setter for base64.void
setExpiration(String expiration)
Setter for expiration.void
setExpirationDate(ZonedDateTime expirationDate)
Setter for expirationDate.void
setSha512(String sha512)
Setter for sha512.void
setStatus(String status)
Setter for status.String
toString()
-
-
-
Method Detail
-
getStatus
public String getStatus()
Getter for status. The status of an Azure credential.
-
setStatus
public void setStatus(String status)
Setter for status. The status of an Azure credential.
-
getExpiration
public String getExpiration()
Getter for expiration. the expiration timestamp
-
setExpiration
public void setExpiration(String expiration)
Setter for expiration. the expiration timestamp
-
getExpirationDate
public ZonedDateTime getExpirationDate()
Getter for expirationDate. the expiration in date format
-
setExpirationDate
public void setExpirationDate(ZonedDateTime expirationDate)
Setter for expirationDate. the expiration in date format
-
getSha512
public String getSha512()
Getter for sha512. The SHA512 digest of the certificate
-
setSha512
public void setSha512(String sha512)
Setter for sha512. The SHA512 digest of the certificate
-
getBase64
public String getBase64()
Getter for base64. The certificate (PEM) encoded in base64 format
-
setBase64
public void setBase64(String base64)
Setter for base64. The certificate (PEM) encoded in base64 format
-
-