Class KMIPClientCertificate
- java.lang.Object
-
- com.ibm.cloud.sdk.core.service.model.GenericModel
-
- com.ibm.cloud.ibm_key_protect_api.v2.model.KMIPClientCertificate
-
- All Implemented Interfaces:
com.ibm.cloud.sdk.core.service.model.ObjectModel
public class KMIPClientCertificate extends com.ibm.cloud.sdk.core.service.model.GenericModel
Properties of a client certificate.
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getCertificate()
Gets the certificate.Date
getCreatedAt()
Gets the createdAt.String
getCreatedBy()
Gets the createdBy.String
getId()
Gets the id.String
getName()
Gets the name.
-
-
-
Method Detail
-
getName
public String getName()
Gets the name. A human-readable name that uniquely identifies a certificate within the given adapter. If one is not specified, one will be autogenerated of the format `kmip_cert_<random_string>`. To protect your privacy do not use personal data, such as your name or location, as a name for your client certificate. The name must be alphanumeric and cannot contain spaces or special characters other than `-` or `_`. The name cannot be a UUID.- Returns:
- the name
-
getId
public String getId()
Gets the id. The v4 UUID that uniquely identifies this certificate resource.- Returns:
- the id
-
getCreatedAt
public Date getCreatedAt()
Gets the createdAt. The date this certificate resource was created on the KMIP Adapter. The date format follows RFC 3339.- Returns:
- the createdAt
-
getCreatedBy
public String getCreatedBy()
Gets the createdBy. The IAM id that created the certificate resource.- Returns:
- the createdBy
-
getCertificate
public String getCertificate()
Gets the certificate. The client certificate to be associated with the KMIP Adapter. It should explicitly have the BEGIN CERTIFICATE and END CERTIFICATE tags.- Returns:
- the certificate
-
-