UNPKG

@codingame/kubevirt-api

Version:

kubevirt OpenAPI automation for TypeScript

41 lines (40 loc) 1.72 kB
/** * KubeVirt Containerized Data Importer API * Containerized Data Importer for KubeVirt. * * The version of the OpenAPI document: 1.0.0 * Contact: kubevirt-dev@googlegroups.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * CustomTLSProfile is a user-defined TLS security profile. Be extremely careful using a custom TLS profile as invalid configurations can be catastrophic. * @export * @interface V1beta1CustomTLSProfile */ export interface V1beta1CustomTLSProfile { /** * ciphers is used to specify the cipher algorithms that are negotiated during the TLS handshake. Operators may remove entries their operands do not support. For example, to use DES-CBC3-SHA (yaml): * * ciphers: * - DES-CBC3-SHA * @type {Array<string>} * @memberof V1beta1CustomTLSProfile */ ciphers: Array<string>; /** * minTLSVersion is used to specify the minimal version of the TLS protocol that is negotiated during the TLS handshake. For example, to use TLS versions 1.1, 1.2 and 1.3 (yaml): * * minTLSVersion: VersionTLS11 * * NOTE: currently the highest minTLSVersion allowed is VersionTLS12 * @type {string} * @memberof V1beta1CustomTLSProfile */ minTLSVersion: string; } export declare function V1beta1CustomTLSProfileFromJSON(json: any): V1beta1CustomTLSProfile; export declare function V1beta1CustomTLSProfileFromJSONTyped(json: any, _ignoreDiscriminator: boolean): V1beta1CustomTLSProfile; export declare function V1beta1CustomTLSProfileToJSON(value?: V1beta1CustomTLSProfile | null): any;