@codingame/kubevirt-api
Version:
kubevirt OpenAPI automation for TypeScript
29 lines (28 loc) • 1.15 kB
TypeScript
/**
* 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 { V1NodeSelectorTerm } from './';
/**
* A node selector represents the union of the results of one or more label queries over a set of nodes; that is, it represents the OR of the selectors represented by the node selector terms.
* @export
* @interface V1NodeSelector
*/
export interface V1NodeSelector {
/**
* Required. A list of node selector terms. The terms are ORed.
* @type {Array<V1NodeSelectorTerm>}
* @memberof V1NodeSelector
*/
nodeSelectorTerms: Array<V1NodeSelectorTerm>;
}
export declare function V1NodeSelectorFromJSON(json: any): V1NodeSelector;
export declare function V1NodeSelectorFromJSONTyped(json: any, _ignoreDiscriminator: boolean): V1NodeSelector;
export declare function V1NodeSelectorToJSON(value?: V1NodeSelector | null): any;