UNPKG

@codingame/kubevirt-api

Version:

kubevirt OpenAPI automation for TypeScript

46 lines (45 loc) 1.2 kB
/** * KubeVirt API * This is KubeVirt API an add-on for Kubernetes. * * 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. */ /** * KubeVirtCondition represents a condition of a KubeVirt deployment * @export * @interface V1KubeVirtCondition */ export interface V1KubeVirtCondition { /** * * @type {string} * @memberof V1KubeVirtCondition */ message?: string; /** * * @type {string} * @memberof V1KubeVirtCondition */ reason?: string; /** * * @type {string} * @memberof V1KubeVirtCondition */ status: string; /** * * @type {string} * @memberof V1KubeVirtCondition */ type: string; } export declare function V1KubeVirtConditionFromJSON(json: any): V1KubeVirtCondition; export declare function V1KubeVirtConditionFromJSONTyped(json: any, _ignoreDiscriminator: boolean): V1KubeVirtCondition; export declare function V1KubeVirtConditionToJSON(value?: V1KubeVirtCondition | null): any;