Add node modules and compiled JavaScript from main (#54)

Co-authored-by: Oliver King <oking3@uncc.edu>
This commit is contained in:
github-actions[bot]
2022-06-29 15:41:55 -04:00
committed by GitHub
parent 4a983766a0
commit 52d71d28bd
6814 changed files with 2048539 additions and 2 deletions

View 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;
}[];
}