@codingame/kubevirt-api
Version:
kubevirt OpenAPI automation for TypeScript
52 lines (51 loc) • 2.32 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.
*/
/**
* APIServiceCondition describes the state of an APIService at a particular point
* @export
* @interface IoK8sKubeAggregatorPkgApisApiregistrationV1APIServiceCondition
*/
export interface IoK8sKubeAggregatorPkgApisApiregistrationV1APIServiceCondition {
/**
* 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 IoK8sKubeAggregatorPkgApisApiregistrationV1APIServiceCondition
*/
lastTransitionTime?: string;
/**
* Human-readable message indicating details about last transition.
* @type {string}
* @memberof IoK8sKubeAggregatorPkgApisApiregistrationV1APIServiceCondition
*/
message?: string;
/**
* Unique, one-word, CamelCase reason for the condition's last transition.
* @type {string}
* @memberof IoK8sKubeAggregatorPkgApisApiregistrationV1APIServiceCondition
*/
reason?: string;
/**
* Status is the status of the condition. Can be True, False, Unknown.
* @type {string}
* @memberof IoK8sKubeAggregatorPkgApisApiregistrationV1APIServiceCondition
*/
status: string;
/**
* Type is the type of the condition.
* @type {string}
* @memberof IoK8sKubeAggregatorPkgApisApiregistrationV1APIServiceCondition
*/
type: string;
}
export declare function IoK8sKubeAggregatorPkgApisApiregistrationV1APIServiceConditionFromJSON(json: any): IoK8sKubeAggregatorPkgApisApiregistrationV1APIServiceCondition;
export declare function IoK8sKubeAggregatorPkgApisApiregistrationV1APIServiceConditionFromJSONTyped(json: any, _ignoreDiscriminator: boolean): IoK8sKubeAggregatorPkgApisApiregistrationV1APIServiceCondition;
export declare function IoK8sKubeAggregatorPkgApisApiregistrationV1APIServiceConditionToJSON(value?: IoK8sKubeAggregatorPkgApisApiregistrationV1APIServiceCondition | null): any;