UNPKG

@codingame/kubevirt-api

Version:

kubevirt OpenAPI automation for TypeScript

41 lines (40 loc) 1.21 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. */ import { V1beta1CertConfig } from './'; /** * CDICertConfig has the CertConfigs for CDI * @export * @interface V1beta1CDICertConfig */ export interface V1beta1CDICertConfig { /** * * @type {V1beta1CertConfig} * @memberof V1beta1CDICertConfig */ ca?: V1beta1CertConfig; /** * * @type {V1beta1CertConfig} * @memberof V1beta1CDICertConfig */ client?: V1beta1CertConfig; /** * * @type {V1beta1CertConfig} * @memberof V1beta1CDICertConfig */ server?: V1beta1CertConfig; } export declare function V1beta1CDICertConfigFromJSON(json: any): V1beta1CDICertConfig; export declare function V1beta1CDICertConfigFromJSONTyped(json: any, _ignoreDiscriminator: boolean): V1beta1CDICertConfig; export declare function V1beta1CDICertConfigToJSON(value?: V1beta1CDICertConfig | null): any;