@codingame/kubevirt-api
Version:
kubevirt OpenAPI automation for TypeScript
58 lines (57 loc) • 2.42 kB
TypeScript
/**
* 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.
*/
/**
* Describes the state of the storageVersion at a certain point.
* @export
* @interface IoK8sApiApiserverinternalV1alpha1StorageVersionCondition
*/
export interface IoK8sApiApiserverinternalV1alpha1StorageVersionCondition {
/**
* 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 IoK8sApiApiserverinternalV1alpha1StorageVersionCondition
*/
lastTransitionTime?: string;
/**
* A human readable message indicating details about the transition.
* @type {string}
* @memberof IoK8sApiApiserverinternalV1alpha1StorageVersionCondition
*/
message: string;
/**
* If set, this represents the .metadata.generation that the condition was set based upon.
* @type {number}
* @memberof IoK8sApiApiserverinternalV1alpha1StorageVersionCondition
*/
observedGeneration?: number;
/**
* The reason for the condition's last transition.
* @type {string}
* @memberof IoK8sApiApiserverinternalV1alpha1StorageVersionCondition
*/
reason: string;
/**
* Status of the condition, one of True, False, Unknown.
* @type {string}
* @memberof IoK8sApiApiserverinternalV1alpha1StorageVersionCondition
*/
status: string;
/**
* Type of the condition.
* @type {string}
* @memberof IoK8sApiApiserverinternalV1alpha1StorageVersionCondition
*/
type: string;
}
export declare function IoK8sApiApiserverinternalV1alpha1StorageVersionConditionFromJSON(json: any): IoK8sApiApiserverinternalV1alpha1StorageVersionCondition;
export declare function IoK8sApiApiserverinternalV1alpha1StorageVersionConditionFromJSONTyped(json: any, _ignoreDiscriminator: boolean): IoK8sApiApiserverinternalV1alpha1StorageVersionCondition;
export declare function IoK8sApiApiserverinternalV1alpha1StorageVersionConditionToJSON(value?: IoK8sApiApiserverinternalV1alpha1StorageVersionCondition | null): any;