UNPKG

@codingame/kubevirt-api

Version:

kubevirt OpenAPI automation for TypeScript

35 lines (34 loc) 1.39 kB
/** * KubeVirt Containerized Data Importer API * Containerized Data Importer for KubeVirt. * * The version of the OpenAPI document: 1.0.0 * Contact: kubevirt-dev@googlegroups.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import { V1NodeSelectorRequirement } from './'; /** * A null or empty node selector term matches no objects. The requirements of them are ANDed. The TopologySelectorTerm type implements a subset of the NodeSelectorTerm. * @export * @interface V1NodeSelectorTerm */ export interface V1NodeSelectorTerm { /** * A list of node selector requirements by node's labels. * @type {Array<V1NodeSelectorRequirement>} * @memberof V1NodeSelectorTerm */ matchExpressions?: Array<V1NodeSelectorRequirement>; /** * A list of node selector requirements by node's fields. * @type {Array<V1NodeSelectorRequirement>} * @memberof V1NodeSelectorTerm */ matchFields?: Array<V1NodeSelectorRequirement>; } export declare function V1NodeSelectorTermFromJSON(json: any): V1NodeSelectorTerm; export declare function V1NodeSelectorTermFromJSONTyped(json: any, _ignoreDiscriminator: boolean): V1NodeSelectorTerm; export declare function V1NodeSelectorTermToJSON(value?: V1NodeSelectorTerm | null): any;