@taiyi-io/api-connector-ts
    Preparing search index...

    Interface TLSStatusResponse

    TLS 证书状态响应

    interface TLSStatusResponse {
        has_certificate: boolean;
        is_self_signed?: boolean;
        issuer?: string;
        not_after?: string;
        not_before?: string;
        san?: string[];
        subject?: string;
        tls_enabled: boolean;
    }
    Index

    Properties

    has_certificate: boolean

    是否存在证书

    is_self_signed?: boolean

    是否为自签证书

    issuer?: string

    证书颁发者(CommonName)

    not_after?: string

    证书有效期结束时间(RFC3339)

    not_before?: string

    证书有效期开始时间(RFC3339)

    san?: string[]

    Subject Alternative Names(DNS名称和IP地址)

    subject?: string

    证书主体(CommonName)

    tls_enabled: boolean

    是否启用TLS