Add node modules and compiled JavaScript from main (#54)
Co-authored-by: Oliver King <oking3@uncc.edu>
This commit is contained in:
committed by
GitHub
parent
4a983766a0
commit
52d71d28bd
61
node_modules/@kubernetes/client-node/dist/gen/model/v1LimitRangeItem.d.ts
generated
vendored
Normal file
61
node_modules/@kubernetes/client-node/dist/gen/model/v1LimitRangeItem.d.ts
generated
vendored
Normal file
@@ -0,0 +1,61 @@
|
||||
/**
|
||||
* 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'?: {
|
||||
[key: string]: string;
|
||||
};
|
||||
/**
|
||||
* DefaultRequest is the default resource requirement request value by resource name if resource request is omitted.
|
||||
*/
|
||||
'defaultRequest'?: {
|
||||
[key: string]: string;
|
||||
};
|
||||
/**
|
||||
* Max usage constraints on this kind by resource name.
|
||||
*/
|
||||
'max'?: {
|
||||
[key: string]: 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'?: {
|
||||
[key: string]: string;
|
||||
};
|
||||
/**
|
||||
* Min usage constraints on this kind by resource name.
|
||||
*/
|
||||
'min'?: {
|
||||
[key: string]: 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;
|
||||
}[];
|
||||
}
|
Reference in New Issue
Block a user