UNPKG

@codingame/kubevirt-api

Version:

kubevirt OpenAPI automation for TypeScript

34 lines (33 loc) 1.74 kB
/** * 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. */ /** * ExpressionWarning is a warning information that targets a specific expression. * @export * @interface IoK8sApiAdmissionregistrationV1beta1ExpressionWarning */ export interface IoK8sApiAdmissionregistrationV1beta1ExpressionWarning { /** * The path to the field that refers the expression. For example, the reference to the expression of the first item of validations is "spec.validations[0].expression" * @type {string} * @memberof IoK8sApiAdmissionregistrationV1beta1ExpressionWarning */ fieldRef: string; /** * The content of type checking information in a human-readable form. Each line of the warning contains the type that the expression is checked against, followed by the type check error from the compiler. * @type {string} * @memberof IoK8sApiAdmissionregistrationV1beta1ExpressionWarning */ warning: string; } export declare function IoK8sApiAdmissionregistrationV1beta1ExpressionWarningFromJSON(json: any): IoK8sApiAdmissionregistrationV1beta1ExpressionWarning; export declare function IoK8sApiAdmissionregistrationV1beta1ExpressionWarningFromJSONTyped(json: any, _ignoreDiscriminator: boolean): IoK8sApiAdmissionregistrationV1beta1ExpressionWarning; export declare function IoK8sApiAdmissionregistrationV1beta1ExpressionWarningToJSON(value?: IoK8sApiAdmissionregistrationV1beta1ExpressionWarning | null): any;