UNPKG

@codingame/kubevirt-api

Version:

kubevirt OpenAPI automation for TypeScript

113 lines (112 loc) 2.62 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. */ import { V1GenerationStatus, V1KubeVirtCondition } from './'; /** * KubeVirtStatus represents information pertaining to a KubeVirt deployment. * @export * @interface V1KubeVirtStatus */ export interface V1KubeVirtStatus { /** * * @type {Array<V1KubeVirtCondition>} * @memberof V1KubeVirtStatus */ conditions?: Array<V1KubeVirtCondition>; /** * * @type {string} * @memberof V1KubeVirtStatus */ defaultArchitecture?: string; /** * * @type {Array<V1GenerationStatus>} * @memberof V1KubeVirtStatus */ generations?: Array<V1GenerationStatus>; /** * * @type {string} * @memberof V1KubeVirtStatus */ observedDeploymentConfig?: string; /** * * @type {string} * @memberof V1KubeVirtStatus */ observedDeploymentID?: string; /** * * @type {number} * @memberof V1KubeVirtStatus */ observedGeneration?: number; /** * * @type {string} * @memberof V1KubeVirtStatus */ observedKubeVirtRegistry?: string; /** * * @type {string} * @memberof V1KubeVirtStatus */ observedKubeVirtVersion?: string; /** * * @type {string} * @memberof V1KubeVirtStatus */ operatorVersion?: string; /** * * @type {number} * @memberof V1KubeVirtStatus */ outdatedVirtualMachineInstanceWorkloads?: number; /** * * @type {string} * @memberof V1KubeVirtStatus */ phase?: string; /** * * @type {string} * @memberof V1KubeVirtStatus */ targetDeploymentConfig?: string; /** * * @type {string} * @memberof V1KubeVirtStatus */ targetDeploymentID?: string; /** * * @type {string} * @memberof V1KubeVirtStatus */ targetKubeVirtRegistry?: string; /** * * @type {string} * @memberof V1KubeVirtStatus */ targetKubeVirtVersion?: string; } export declare function V1KubeVirtStatusFromJSON(json: any): V1KubeVirtStatus; export declare function V1KubeVirtStatusFromJSONTyped(json: any, _ignoreDiscriminator: boolean): V1KubeVirtStatus; export declare function V1KubeVirtStatusToJSON(value?: V1KubeVirtStatus | null): any;