/** * @type MtlsCertificateResponse: mTLS certificate information. * * @property mtlsCertificateId: ID generated by the CDN provider for the certificate. * - **Pattern:** /^.*$/ * * @property expiresOn: Expiration date for the mTLS certificate. * * @property issuer: The certificate authority that issued the mTLS certificate. * - **Pattern:** /^.*$/ * * @property signature: The type of hash used for the mTLS certificate. * - **Pattern:** /^.*$/ * * @property uploadedOn: Date the mTLS certificate was uploaded. * * @property ca: Indicates whether the mTLS certificate is a CA or leaf certificate. * * @property serialNumber: The mTLS certificate serial number. * - **Pattern:** /^.*$/ * * @property mtlsCertificateName: Optional name for the mTLS certificate used for ease of understanding. * - **Pattern:** /^.*$/ * * @property mtlsAssociatedCodeUploadHostname: Hostname associated with this mTLS certificate. * - **Pattern:** /^.*$/ * */ export type MtlsCertificateResponse = { mtlsCertificateId?: string; expiresOn?: string; issuer?: string; signature?: string; uploadedOn?: string; ca?: boolean; serialNumber?: string; mtlsCertificateName?: string; mtlsAssociatedCodeUploadHostname?: string; } & { [key: string]: any; };