UNPKG

@codingame/kubevirt-api

Version:

kubevirt OpenAPI automation for TypeScript

46 lines (45 loc) 1.13 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. */ /** * Condition defines conditions * @export * @interface V1beta1Condition */ export interface V1beta1Condition { /** * * @type {string} * @memberof V1beta1Condition */ message?: string; /** * * @type {string} * @memberof V1beta1Condition */ reason?: string; /** * * @type {string} * @memberof V1beta1Condition */ status: string; /** * * @type {string} * @memberof V1beta1Condition */ type: string; } export declare function V1beta1ConditionFromJSON(json: any): V1beta1Condition; export declare function V1beta1ConditionFromJSONTyped(json: any, _ignoreDiscriminator: boolean): V1beta1Condition; export declare function V1beta1ConditionToJSON(value?: V1beta1Condition | null): any;