@kubernetes/client-node
Version:
NodeJS client for kubernetes
54 lines (53 loc) • 1.41 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.
*/
/**
* StatefulSetCondition describes the state of a statefulset at a certain point.
*/
export declare class V1StatefulSetCondition {
/**
* Last time the condition transitioned from one status to another.
*/
'lastTransitionTime'?: Date;
/**
* A human readable message indicating details about the transition.
*/
'message'?: string;
/**
* The reason for the condition\'s last transition.
*/
'reason'?: string;
/**
* Status of the condition, one of True, False, Unknown.
*/
'status': string;
/**
* Type of statefulset 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();
}