@codingame/kubevirt-api
Version:
kubevirt OpenAPI automation for TypeScript
58 lines (57 loc) • 2.95 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.
*/
/**
* PersistentVolumeClaimCondition contains details about state of pvc
* @export
* @interface IoK8sApiCoreV1PersistentVolumeClaimCondition
*/
export interface IoK8sApiCoreV1PersistentVolumeClaimCondition {
/**
* 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 IoK8sApiCoreV1PersistentVolumeClaimCondition
*/
lastProbeTime?: 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 IoK8sApiCoreV1PersistentVolumeClaimCondition
*/
lastTransitionTime?: string;
/**
* message is the human-readable message indicating details about last transition.
* @type {string}
* @memberof IoK8sApiCoreV1PersistentVolumeClaimCondition
*/
message?: string;
/**
* reason is a unique, this should be a short, machine understandable string that gives the reason for condition's last transition. If it reports "Resizing" that means the underlying persistent volume is being resized.
* @type {string}
* @memberof IoK8sApiCoreV1PersistentVolumeClaimCondition
*/
reason?: string;
/**
* Status is the status of the condition. Can be True, False, Unknown. More info: https://kubernetes.io/docs/reference/kubernetes-api/config-and-storage-resources/persistent-volume-claim-v1/#:~:text=state%20of%20pvc-,conditions.status,-(string)%2C%20required
* @type {string}
* @memberof IoK8sApiCoreV1PersistentVolumeClaimCondition
*/
status: string;
/**
* Type is the type of the condition. More info: https://kubernetes.io/docs/reference/kubernetes-api/config-and-storage-resources/persistent-volume-claim-v1/#:~:text=set%20to%20%27ResizeStarted%27.-,PersistentVolumeClaimCondition,-contains%20details%20about
* @type {string}
* @memberof IoK8sApiCoreV1PersistentVolumeClaimCondition
*/
type: string;
}
export declare function IoK8sApiCoreV1PersistentVolumeClaimConditionFromJSON(json: any): IoK8sApiCoreV1PersistentVolumeClaimCondition;
export declare function IoK8sApiCoreV1PersistentVolumeClaimConditionFromJSONTyped(json: any, _ignoreDiscriminator: boolean): IoK8sApiCoreV1PersistentVolumeClaimCondition;
export declare function IoK8sApiCoreV1PersistentVolumeClaimConditionToJSON(value?: IoK8sApiCoreV1PersistentVolumeClaimCondition | null): any;