@codingame/kubevirt-api
Version:
kubevirt OpenAPI automation for TypeScript
34 lines (33 loc) • 1.67 kB
TypeScript
/**
* KubeVirt API
* This is KubeVirt API an add-on for Kubernetes.
*
* The version of the OpenAPI document: 1.0.0
* Contact: kubevirt-dev@googlegroups.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
/**
* VirtualMachineInstancePhaseTransitionTimestamp gives a timestamp in relation to when a phase is set on a vmi
* @export
* @interface V1VirtualMachineInstancePhaseTransitionTimestamp
*/
export interface V1VirtualMachineInstancePhaseTransitionTimestamp {
/**
* Phase is the status of the VirtualMachineInstance in kubernetes world. It is not the VirtualMachineInstance status, but partially correlates to it.
* @type {string}
* @memberof V1VirtualMachineInstancePhaseTransitionTimestamp
*/
phase?: string;
/**
* 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 V1VirtualMachineInstancePhaseTransitionTimestamp
*/
phaseTransitionTimestamp?: string;
}
export declare function V1VirtualMachineInstancePhaseTransitionTimestampFromJSON(json: any): V1VirtualMachineInstancePhaseTransitionTimestamp;
export declare function V1VirtualMachineInstancePhaseTransitionTimestampFromJSONTyped(json: any, _ignoreDiscriminator: boolean): V1VirtualMachineInstancePhaseTransitionTimestamp;
export declare function V1VirtualMachineInstancePhaseTransitionTimestampToJSON(value?: V1VirtualMachineInstancePhaseTransitionTimestamp | null): any;