@codingame/kubevirt-api
Version:
kubevirt OpenAPI automation for TypeScript
41 lines (40 loc) • 2.37 kB
TypeScript
/**
* Kubernetes
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
* The version of the OpenAPI document: unversioned
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
import { IoK8sApiApiserverinternalV1alpha1ServerStorageVersion, IoK8sApiApiserverinternalV1alpha1StorageVersionCondition } from './';
/**
* API server instances report the versions they can decode and the version they encode objects to when persisting objects in the backend.
* @export
* @interface IoK8sApiApiserverinternalV1alpha1StorageVersionStatus
*/
export interface IoK8sApiApiserverinternalV1alpha1StorageVersionStatus {
/**
* If all API server instances agree on the same encoding storage version, then this field is set to that version. Otherwise this field is left empty. API servers should finish updating its storageVersionStatus entry before serving write operations, so that this field will be in sync with the reality.
* @type {string}
* @memberof IoK8sApiApiserverinternalV1alpha1StorageVersionStatus
*/
commonEncodingVersion?: string;
/**
* The latest available observations of the storageVersion's state.
* @type {Array<IoK8sApiApiserverinternalV1alpha1StorageVersionCondition>}
* @memberof IoK8sApiApiserverinternalV1alpha1StorageVersionStatus
*/
conditions?: Array<IoK8sApiApiserverinternalV1alpha1StorageVersionCondition>;
/**
* The reported versions per API server instance.
* @type {Array<IoK8sApiApiserverinternalV1alpha1ServerStorageVersion>}
* @memberof IoK8sApiApiserverinternalV1alpha1StorageVersionStatus
*/
storageVersions?: Array<IoK8sApiApiserverinternalV1alpha1ServerStorageVersion>;
}
export declare function IoK8sApiApiserverinternalV1alpha1StorageVersionStatusFromJSON(json: any): IoK8sApiApiserverinternalV1alpha1StorageVersionStatus;
export declare function IoK8sApiApiserverinternalV1alpha1StorageVersionStatusFromJSONTyped(json: any, _ignoreDiscriminator: boolean): IoK8sApiApiserverinternalV1alpha1StorageVersionStatus;
export declare function IoK8sApiApiserverinternalV1alpha1StorageVersionStatusToJSON(value?: IoK8sApiApiserverinternalV1alpha1StorageVersionStatus | null): any;