@codingame/kubevirt-api
Version:
kubevirt OpenAPI automation for TypeScript
52 lines (51 loc) • 2.3 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.
*/
/**
* PriorityLevelConfigurationCondition defines the condition of priority level.
* @export
* @interface IoK8sApiFlowcontrolV1PriorityLevelConfigurationCondition
*/
export interface IoK8sApiFlowcontrolV1PriorityLevelConfigurationCondition {
/**
* 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 IoK8sApiFlowcontrolV1PriorityLevelConfigurationCondition
*/
lastTransitionTime?: string;
/**
* `message` is a human-readable message indicating details about last transition.
* @type {string}
* @memberof IoK8sApiFlowcontrolV1PriorityLevelConfigurationCondition
*/
message?: string;
/**
* `reason` is a unique, one-word, CamelCase reason for the condition's last transition.
* @type {string}
* @memberof IoK8sApiFlowcontrolV1PriorityLevelConfigurationCondition
*/
reason?: string;
/**
* `status` is the status of the condition. Can be True, False, Unknown. Required.
* @type {string}
* @memberof IoK8sApiFlowcontrolV1PriorityLevelConfigurationCondition
*/
status?: string;
/**
* `type` is the type of the condition. Required.
* @type {string}
* @memberof IoK8sApiFlowcontrolV1PriorityLevelConfigurationCondition
*/
type?: string;
}
export declare function IoK8sApiFlowcontrolV1PriorityLevelConfigurationConditionFromJSON(json: any): IoK8sApiFlowcontrolV1PriorityLevelConfigurationCondition;
export declare function IoK8sApiFlowcontrolV1PriorityLevelConfigurationConditionFromJSONTyped(json: any, _ignoreDiscriminator: boolean): IoK8sApiFlowcontrolV1PriorityLevelConfigurationCondition;
export declare function IoK8sApiFlowcontrolV1PriorityLevelConfigurationConditionToJSON(value?: IoK8sApiFlowcontrolV1PriorityLevelConfigurationCondition | null): any;