-
Notifications
You must be signed in to change notification settings - Fork 544
/
Copy pathv1NodeSelectorTerm.ts
47 lines (41 loc) · 1.47 KB
/
v1NodeSelectorTerm.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
/**
* Kubernetes
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
* The version of the OpenAPI document: release-1.28
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
import { RequestFile } from './models';
import { V1NodeSelectorRequirement } from './v1NodeSelectorRequirement';
/**
* 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 class V1NodeSelectorTerm {
/**
* A list of node selector requirements by node\'s labels.
*/
'matchExpressions'?: Array<V1NodeSelectorRequirement>;
/**
* A list of node selector requirements by node\'s fields.
*/
'matchFields'?: Array<V1NodeSelectorRequirement>;
static discriminator: string | undefined = undefined;
static attributeTypeMap: Array<{name: string, baseName: string, type: string}> = [
{
"name": "matchExpressions",
"baseName": "matchExpressions",
"type": "Array<V1NodeSelectorRequirement>"
},
{
"name": "matchFields",
"baseName": "matchFields",
"type": "Array<V1NodeSelectorRequirement>"
} ];
static getAttributeTypeMap() {
return V1NodeSelectorTerm.attributeTypeMap;
}
}