/** * Kubernetes * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: v1.20.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ export declare class V1beta1CertificateSigningRequestCondition { /** * lastTransitionTime is the time the condition last transitioned from one status to another. If unset, when a new condition type is added or an existing condition\'s status is changed, the server defaults this to the current time. */ 'lastTransitionTime'?: Date; /** * timestamp for the last update to this condition */ 'lastUpdateTime'?: Date; /** * human readable message with details about the request state */ 'message'?: string; /** * brief reason for the request state */ 'reason'?: string; /** * Status of the condition, one of True, False, Unknown. Approved, Denied, and Failed conditions may not be \"False\" or \"Unknown\". Defaults to \"True\". If unset, should be treated as \"True\". */ 'status'?: string; /** * type of the condition. Known conditions include \"Approved\", \"Denied\", and \"Failed\". */ 'type': string; static discriminator: string | undefined; static attributeTypeMap: Array<{ name: string; baseName: string; type: string; }>; static getAttributeTypeMap(): { name: string; baseName: string; type: string; }[]; }