/** * Kubernetes * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * OpenAPI spec version: v1.34.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * Describes the state of a migration at a certain point. */ export declare class V1alpha1MigrationCondition { /** * The last time this condition was updated. */ 'lastUpdateTime'?: 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 the condition. */ 'type': string; static readonly discriminator: string | undefined; static readonly mapping: { [index: string]: 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(); }