@codingame/kubevirt-api
Version:
kubevirt OpenAPI automation for TypeScript
28 lines (27 loc) • 969 B
TypeScript
/**
* 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.
*/
/**
* ContainerDiskInfo shows info about the containerdisk
* @export
* @interface V1ContainerDiskInfo
*/
export interface V1ContainerDiskInfo {
/**
* Checksum is the checksum of the rootdisk or kernel artifacts inside the containerdisk
* @type {number}
* @memberof V1ContainerDiskInfo
*/
checksum?: number;
}
export declare function V1ContainerDiskInfoFromJSON(json: any): V1ContainerDiskInfo;
export declare function V1ContainerDiskInfoFromJSONTyped(json: any, _ignoreDiscriminator: boolean): V1ContainerDiskInfo;
export declare function V1ContainerDiskInfoToJSON(value?: V1ContainerDiskInfo | null): any;