@codingame/kubevirt-api
Version:
kubevirt OpenAPI automation for TypeScript
28 lines (27 loc) • 1.47 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.
*/
/**
* VolumeNodeResources is a set of resource limits for scheduling of volumes.
* @export
* @interface IoK8sApiStorageV1VolumeNodeResources
*/
export interface IoK8sApiStorageV1VolumeNodeResources {
/**
* count indicates the maximum number of unique volumes managed by the CSI driver that can be used on a node. A volume that is both attached and mounted on a node is considered to be used once, not twice. The same rule applies for a unique volume that is shared among multiple pods on the same node. If this field is not specified, then the supported number of volumes on this node is unbounded.
* @type {number}
* @memberof IoK8sApiStorageV1VolumeNodeResources
*/
count?: number;
}
export declare function IoK8sApiStorageV1VolumeNodeResourcesFromJSON(json: any): IoK8sApiStorageV1VolumeNodeResources;
export declare function IoK8sApiStorageV1VolumeNodeResourcesFromJSONTyped(json: any, _ignoreDiscriminator: boolean): IoK8sApiStorageV1VolumeNodeResources;
export declare function IoK8sApiStorageV1VolumeNodeResourcesToJSON(value?: IoK8sApiStorageV1VolumeNodeResources | null): any;