Triple.Types.TLSCertificate (triple v1.0.0)

Copy Markdown View Source

A TLS certificate as returned by POST /v1/tls-certificates/ (HTTP 201).

pem_certificate is only ever populated on this creation response — Triple does not expose it again afterwards, so persist it securely immediately if you'll need it later.

Summary

Types

t()

@type t() :: %Triple.Types.TLSCertificate{
  created: String.t() | nil,
  id: String.t() | nil,
  not_valid_after: String.t() | nil,
  not_valid_before: String.t() | nil,
  pem_certificate: String.t() | nil,
  serial_number: String.t() | nil,
  sha256_fingerprint: String.t() | nil
}