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
38
node_modules/@kubernetes/client-node/dist/gen/model/v1CustomResourceDefinitionStatus.d.ts
generated
vendored
Normal file
38
node_modules/@kubernetes/client-node/dist/gen/model/v1CustomResourceDefinitionStatus.d.ts
generated
vendored
Normal file
@@ -0,0 +1,38 @@
|
||||
/**
|
||||
* 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.
|
||||
*/
|
||||
import { V1CustomResourceDefinitionCondition } from './v1CustomResourceDefinitionCondition';
|
||||
import { V1CustomResourceDefinitionNames } from './v1CustomResourceDefinitionNames';
|
||||
/**
|
||||
* CustomResourceDefinitionStatus indicates the state of the CustomResourceDefinition
|
||||
*/
|
||||
export declare class V1CustomResourceDefinitionStatus {
|
||||
'acceptedNames'?: V1CustomResourceDefinitionNames;
|
||||
/**
|
||||
* conditions indicate state for particular aspects of a CustomResourceDefinition
|
||||
*/
|
||||
'conditions'?: Array<V1CustomResourceDefinitionCondition>;
|
||||
/**
|
||||
* storedVersions lists all versions of CustomResources that were ever persisted. Tracking these versions allows a migration path for stored versions in etcd. The field is mutable so a migration controller can finish a migration to another version (ensuring no old objects are left in storage), and then remove the rest of the versions from this list. Versions may not be removed from `spec.versions` while they exist in this list.
|
||||
*/
|
||||
'storedVersions'?: Array<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