/
githubmirror
/
halo
Обзор
Документация
Войти
/
githubmirror
/
halo
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
ui/packages/api-client/src/models/metadata.ts
50 строк
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. */ /** * Metadata of Extension. */ export interface Metadata { /** * Annotations are like key-value format. */ 'annotations'?: { [key: string]: string; }; /** * Creation timestamp of the Extension. */ 'creationTimestamp'?: string | null; /** * Deletion timestamp of the Extension. */ 'deletionTimestamp'?: string | null; 'finalizers'?: Array<string | null> | null; /** * The name field will be generated automatically according to the given generateName field */ 'generateName'?: string; /** * Labels are like key-value format. */ 'labels'?: { [key: string]: string; }; /** * Metadata name */ 'name': string; /** * Current version of the Extension. It will be bumped up every update. */ 'version'?: number | null; }