@kubernetes/client-node
Version:
NodeJS client for kubernetes
50 lines (49 loc) • 1.39 kB
TypeScript
/**
* Kubernetes
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
* OpenAPI spec version: v1.32.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
/**
* Information about the condition of a component.
*/
export declare class V1ComponentCondition {
/**
* Condition error code for a component. For example, a health check error code.
*/
'error'?: string;
/**
* Message about the condition for a component. For example, information about a health check.
*/
'message'?: string;
/**
* Status of the condition for a component. Valid values for \"Healthy\": \"True\", \"False\", or \"Unknown\".
*/
'status': string;
/**
* Type of condition for a component. Valid value: \"Healthy\"
*/
'type': string;
static readonly discriminator: string | undefined;
static readonly mapping: {
[]: string;
} | undefined;
static readonly attributeTypeMap: Array<{
name: string;
baseName: string;
type: string;
format: string;
}>;
static getAttributeTypeMap(): {
name: string;
baseName: string;
type: string;
format: string;
}[];
constructor();
}