UNPKG

@codingame/kubevirt-api

Version:

kubevirt OpenAPI automation for TypeScript

34 lines (33 loc) 1.72 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. */ /** * Variable is the definition of a variable that is used for composition. * @export * @interface IoK8sApiAdmissionregistrationV1alpha1Variable */ export interface IoK8sApiAdmissionregistrationV1alpha1Variable { /** * Expression is the expression that will be evaluated as the value of the variable. The CEL expression has access to the same identifiers as the CEL expressions in Validation. * @type {string} * @memberof IoK8sApiAdmissionregistrationV1alpha1Variable */ expression: string; /** * Name is the name of the variable. The name must be a valid CEL identifier and unique among all variables. The variable can be accessed in other expressions through `variables` For example, if name is "foo", the variable will be available as `variables.foo` * @type {string} * @memberof IoK8sApiAdmissionregistrationV1alpha1Variable */ name: string; } export declare function IoK8sApiAdmissionregistrationV1alpha1VariableFromJSON(json: any): IoK8sApiAdmissionregistrationV1alpha1Variable; export declare function IoK8sApiAdmissionregistrationV1alpha1VariableFromJSONTyped(json: any, _ignoreDiscriminator: boolean): IoK8sApiAdmissionregistrationV1alpha1Variable; export declare function IoK8sApiAdmissionregistrationV1alpha1VariableToJSON(value?: IoK8sApiAdmissionregistrationV1alpha1Variable | null): any;