UNPKG

@codingame/kubevirt-api

Version:

kubevirt OpenAPI automation for TypeScript

52 lines (51 loc) 2.23 kB
/** * Kubernetes * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: unversioned * * * 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 * @interface IoK8sApiAutoscalingV2HorizontalPodAutoscalerCondition */ export interface IoK8sApiAutoscalingV2HorizontalPodAutoscalerCondition { /** * Time is a wrapper around time.Time which supports correct marshaling to YAML and JSON. Wrappers are provided for many of the factory methods that the time package offers. * @type {string} * @memberof IoK8sApiAutoscalingV2HorizontalPodAutoscalerCondition */ lastTransitionTime?: string; /** * message is a human-readable explanation containing details about the transition * @type {string} * @memberof IoK8sApiAutoscalingV2HorizontalPodAutoscalerCondition */ message?: string; /** * reason is the reason for the condition's last transition. * @type {string} * @memberof IoK8sApiAutoscalingV2HorizontalPodAutoscalerCondition */ reason?: string; /** * status is the status of the condition (True, False, Unknown) * @type {string} * @memberof IoK8sApiAutoscalingV2HorizontalPodAutoscalerCondition */ status: string; /** * type describes the current condition * @type {string} * @memberof IoK8sApiAutoscalingV2HorizontalPodAutoscalerCondition */ type: string; } export declare function IoK8sApiAutoscalingV2HorizontalPodAutoscalerConditionFromJSON(json: any): IoK8sApiAutoscalingV2HorizontalPodAutoscalerCondition; export declare function IoK8sApiAutoscalingV2HorizontalPodAutoscalerConditionFromJSONTyped(json: any, _ignoreDiscriminator: boolean): IoK8sApiAutoscalingV2HorizontalPodAutoscalerCondition; export declare function IoK8sApiAutoscalingV2HorizontalPodAutoscalerConditionToJSON(value?: IoK8sApiAutoscalingV2HorizontalPodAutoscalerCondition | null): any;