@codingame/kubevirt-api
Version:
kubevirt OpenAPI automation for TypeScript
34 lines (33 loc) • 998 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.
*/
/**
* CustomBlockSize represents the desired logical and physical block size for a VM disk.
* @export
* @interface V1CustomBlockSize
*/
export interface V1CustomBlockSize {
/**
*
* @type {number}
* @memberof V1CustomBlockSize
*/
logical: number;
/**
*
* @type {number}
* @memberof V1CustomBlockSize
*/
physical: number;
}
export declare function V1CustomBlockSizeFromJSON(json: any): V1CustomBlockSize;
export declare function V1CustomBlockSizeFromJSONTyped(json: any, _ignoreDiscriminator: boolean): V1CustomBlockSize;
export declare function V1CustomBlockSizeToJSON(value?: V1CustomBlockSize | null): any;