UNPKG

@codingame/kubevirt-api

Version:

kubevirt OpenAPI automation for TypeScript

38 lines (37 loc) 1.48 kB
/** * 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. */ /** * ResourceQuotaStatus defines the enforced hard limits and observed use. * @export * @interface IoK8sApiCoreV1ResourceQuotaStatus */ export interface IoK8sApiCoreV1ResourceQuotaStatus { /** * Hard is the set of enforced hard limits for each named resource. More info: https://kubernetes.io/docs/concepts/policy/resource-quotas/ * @type {{ [key: string]: string; }} * @memberof IoK8sApiCoreV1ResourceQuotaStatus */ hard?: { [key: string]: string; }; /** * Used is the current observed total usage of the resource in the namespace. * @type {{ [key: string]: string; }} * @memberof IoK8sApiCoreV1ResourceQuotaStatus */ used?: { [key: string]: string; }; } export declare function IoK8sApiCoreV1ResourceQuotaStatusFromJSON(json: any): IoK8sApiCoreV1ResourceQuotaStatus; export declare function IoK8sApiCoreV1ResourceQuotaStatusFromJSONTyped(json: any, _ignoreDiscriminator: boolean): IoK8sApiCoreV1ResourceQuotaStatus; export declare function IoK8sApiCoreV1ResourceQuotaStatusToJSON(value?: IoK8sApiCoreV1ResourceQuotaStatus | null): any;