@kubernetes/client-node
Version:
NodeJS client for kubernetes
62 lines (61 loc) • 1.79 kB
TypeScript
/**
* Kubernetes
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
* The version of the OpenAPI document: v1.22.2
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
/**
* LimitRangeItem defines a min/max usage limit for any resource that matches on kind.
*/
export declare class V1LimitRangeItem {
/**
* Default resource requirement limit value by resource name if resource limit is omitted.
*/
'_default'?: {
[]: string;
};
/**
* DefaultRequest is the default resource requirement request value by resource name if resource request is omitted.
*/
'defaultRequest'?: {
[]: string;
};
/**
* Max usage constraints on this kind by resource name.
*/
'max'?: {
[]: string;
};
/**
* MaxLimitRequestRatio if specified, the named resource must have a request and limit that are both non-zero where limit divided by request is less than or equal to the enumerated value; this represents the max burst for the named resource.
*/
'maxLimitRequestRatio'?: {
[]: string;
};
/**
* Min usage constraints on this kind by resource name.
*/
'min'?: {
[]: string;
};
/**
* Type of resource that this limit applies to.
*/
'type': string;
static discriminator: string | undefined;
static attributeTypeMap: Array<{
name: string;
baseName: string;
type: string;
}>;
static getAttributeTypeMap(): {
name: string;
baseName: string;
type: string;
}[];
}