UNPKG

@datadog/datadog-api-client

Version:

OpenAPI client for Datadog APIs

83 lines (82 loc) 2.36 kB
/** * Unless explicitly stated otherwise all files in this repository are licensed under the Apache-2.0 License. * This product includes software developed at Datadog (https://www.datadoghq.com/). * Copyright 2020-Present Datadog, Inc. */ import { SyntheticsSSLCertificateIssuer } from "./SyntheticsSSLCertificateIssuer"; import { SyntheticsSSLCertificateSubject } from "./SyntheticsSSLCertificateSubject"; import { AttributeTypeMap } from "../../datadog-api-client-common/util"; /** * Object describing the SSL certificate used for a Synthetic test. */ export declare class SyntheticsSSLCertificate { /** * Cipher used for the connection. */ "cipher"?: string; /** * Exponent associated to the certificate. */ "exponent"?: number; /** * Array of extensions and details used for the certificate. */ "extKeyUsage"?: Array<string>; /** * MD5 digest of the DER-encoded Certificate information. */ "fingerprint"?: string; /** * SHA-1 digest of the DER-encoded Certificate information. */ "fingerprint256"?: string; /** * Object describing the issuer of a SSL certificate. */ "issuer"?: SyntheticsSSLCertificateIssuer; /** * Modulus associated to the SSL certificate private key. */ "modulus"?: string; /** * TLS protocol used for the test. */ "protocol"?: string; /** * Serial Number assigned by Symantec to the SSL certificate. */ "serialNumber"?: string; /** * Object describing the SSL certificate used for the test. */ "subject"?: SyntheticsSSLCertificateSubject; /** * Date from which the SSL certificate is valid. */ "validFrom"?: Date; /** * Date until which the SSL certificate is valid. */ "validTo"?: Date; /** * A container for additional, undeclared properties. * This is a holder for any undeclared properties as specified with * the 'additionalProperties' keyword in the OAS document. */ "additionalProperties"?: { [key: string]: any; }; /** * @ignore */ "_unparsed"?: boolean; /** * @ignore */ static readonly attributeTypeMap: AttributeTypeMap; /** * @ignore */ static getAttributeTypeMap(): AttributeTypeMap; constructor(); }