UNPKG

@codingame/kubevirt-api

Version:

kubevirt OpenAPI automation for TypeScript

35 lines (34 loc) 1.08 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 { V1CustomBlockSize, V1FeatureState } from './'; /** * BlockSize provides the option to change the block size presented to the VM for a disk. Only one of its members may be specified. * @export * @interface V1BlockSize */ export interface V1BlockSize { /** * * @type {V1CustomBlockSize} * @memberof V1BlockSize */ custom?: V1CustomBlockSize; /** * * @type {V1FeatureState} * @memberof V1BlockSize */ matchVolume?: V1FeatureState; } export declare function V1BlockSizeFromJSON(json: any): V1BlockSize; export declare function V1BlockSizeFromJSONTyped(json: any, _ignoreDiscriminator: boolean): V1BlockSize; export declare function V1BlockSizeToJSON(value?: V1BlockSize | null): any;