UNPKG

@codingame/kubevirt-api

Version:

kubevirt OpenAPI automation for TypeScript

35 lines (34 loc) 1.25 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 { V1beta1CustomizeComponentsPatch, V1beta1Flags } from './'; /** * CustomizeComponents defines patches for components deployed by the CDI operator. * @export * @interface V1beta1CustomizeComponents */ export interface V1beta1CustomizeComponents { /** * * @type {V1beta1Flags} * @memberof V1beta1CustomizeComponents */ flags?: V1beta1Flags; /** * * @type {Array<V1beta1CustomizeComponentsPatch>} * @memberof V1beta1CustomizeComponents */ patches?: Array<V1beta1CustomizeComponentsPatch>; } export declare function V1beta1CustomizeComponentsFromJSON(json: any): V1beta1CustomizeComponents; export declare function V1beta1CustomizeComponentsFromJSONTyped(json: any, _ignoreDiscriminator: boolean): V1beta1CustomizeComponents; export declare function V1beta1CustomizeComponentsToJSON(value?: V1beta1CustomizeComponents | null): any;