@kubernetes/client-node
Version:
NodeJS client for kubernetes
54 lines (53 loc) • 1.5 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.
*/
/**
* HorizontalPodAutoscalerCondition describes the state of a HorizontalPodAutoscaler at a certain point.
*/
export declare class V2HorizontalPodAutoscalerCondition {
/**
* lastTransitionTime is the last time the condition transitioned from one status to another
*/
'lastTransitionTime'?: Date;
/**
* message is a human-readable explanation containing details about the transition
*/
'message'?: string;
/**
* reason is the reason for the condition\'s last transition.
*/
'reason'?: string;
/**
* status is the status of the condition (True, False, Unknown)
*/
'status': string;
/**
* type describes the current condition
*/
'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();
}