/
githubmirror
/
halo
Обзор
Документация
Войти
/
githubmirror
/
halo
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
ui/packages/api-client/src/models/condition.ts
49 строк
1 KB
Ryan Wang
Prepare 2.26.0 snapshot version (#10079)
12 июн 2026, 10:25
Не верифицирован
12 июн 2026, 10:25
aea0101
Код
Авторство
О чём код?
/* tslint:disable */ /* eslint-disable */ /** * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 2.26.0-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * EqualsAndHashCode 排除了lastTransitionTime否则失败时,lastTransitionTime 会被更新 导致 equals 为 false,一直被加入队列. */ export interface Condition { /** * Last time the condition transitioned from one status to another. */ 'lastTransitionTime': string; /** * Human-readable message indicating details about last transition. This may be an empty string. */ 'message'?: string; /** * Unique, one-word, CamelCase reason for the condition\'s last transition. */ 'reason'?: string; /** * Status is the status of the condition. Can be True, False, Unknown. */ 'status': ConditionStatusEnum; /** * type of condition in CamelCase or in foo.example.com/CamelCase. example: Ready, Initialized. maxLength: 316. */ 'type': string; } export const ConditionStatusEnum = { True: 'TRUE', False: 'FALSE', Unknown: 'UNKNOWN' } as const; export type ConditionStatusEnum = typeof ConditionStatusEnum[keyof typeof ConditionStatusEnum];