You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: containerized-data-importer/models/ApiNodePlacement.ts
+54-51Lines changed: 54 additions & 51 deletions
Original file line number
Diff line number
Diff line change
@@ -12,16 +12,14 @@
12
12
* Do not edit the class manually.
13
13
*/
14
14
15
-
import{exists,mapValues}from'../runtime';
15
+
import{exists}from'../runtime';
16
16
import{
17
-
V1Affinity,
18
-
V1AffinityFromJSON,
19
-
V1AffinityFromJSONTyped,
20
-
V1AffinityToJSON,
21
-
V1Toleration,
22
-
V1TolerationFromJSON,
23
-
V1TolerationFromJSONTyped,
24
-
V1TolerationToJSON,
17
+
V1Affinity,
18
+
V1AffinityFromJSON,
19
+
V1AffinityToJSON,
20
+
V1Toleration,
21
+
V1TolerationFromJSON,
22
+
V1TolerationToJSON,
25
23
}from'./';
26
24
27
25
/**
@@ -30,54 +28,59 @@ import {
30
28
* @interface ApiNodePlacement
31
29
*/
32
30
exportinterfaceApiNodePlacement{
33
-
/**
34
-
*
35
-
* @type {V1Affinity}
36
-
* @memberof ApiNodePlacement
37
-
*/
38
-
affinity?: V1Affinity;
39
-
/**
40
-
* nodeSelector is the node selector applied to the relevant kind of pods It specifies a map of key-value pairs: for the pod to be eligible to run on a node, the node must have each of the indicated key-value pairs as labels (it can have additional labels as well). See https://kubernetes.io/docs/concepts/configuration/assign-pod-node/#nodeselector
41
-
* @type {{ [key: string]: string; }}
42
-
* @memberof ApiNodePlacement
43
-
*/
44
-
nodeSelector?: {[key: string]: string;};
45
-
/**
46
-
* tolerations is a list of tolerations applied to the relevant kind of pods See https://kubernetes.io/docs/concepts/configuration/taint-and-toleration/ for more info. These are additional tolerations other than default ones.
47
-
* @type {Array<V1Toleration>}
48
-
* @memberof ApiNodePlacement
49
-
*/
50
-
tolerations?: Array<V1Toleration>;
31
+
/**
32
+
*
33
+
* @type {V1Affinity}
34
+
* @memberof ApiNodePlacement
35
+
*/
36
+
affinity?: V1Affinity;
37
+
/**
38
+
* nodeSelector is the node selector applied to the relevant kind of pods It specifies a map of key-value pairs: for the pod to be eligible to run on a node, the node must have each of the indicated key-value pairs as labels (it can have additional labels as well). See https://kubernetes.io/docs/concepts/configuration/assign-pod-node/#nodeselector
39
+
* @type {{ [key: string]: string; }}
40
+
* @memberof ApiNodePlacement
41
+
*/
42
+
nodeSelector?: {[key: string]: string};
43
+
/**
44
+
* tolerations is a list of tolerations applied to the relevant kind of pods See https://kubernetes.io/docs/concepts/configuration/taint-and-toleration/ for more info. These are additional tolerations other than default ones.
Copy file name to clipboardExpand all lines: containerized-data-importer/models/V1APIGroup.ts
+77-75Lines changed: 77 additions & 75 deletions
Original file line number
Diff line number
Diff line change
@@ -12,16 +12,14 @@
12
12
* Do not edit the class manually.
13
13
*/
14
14
15
-
import{exists,mapValues}from'../runtime';
15
+
import{exists}from'../runtime';
16
16
import{
17
-
V1GroupVersionForDiscovery,
18
-
V1GroupVersionForDiscoveryFromJSON,
19
-
V1GroupVersionForDiscoveryFromJSONTyped,
20
-
V1GroupVersionForDiscoveryToJSON,
21
-
V1ServerAddressByClientCIDR,
22
-
V1ServerAddressByClientCIDRFromJSON,
23
-
V1ServerAddressByClientCIDRFromJSONTyped,
24
-
V1ServerAddressByClientCIDRToJSON,
17
+
V1GroupVersionForDiscovery,
18
+
V1GroupVersionForDiscoveryFromJSON,
19
+
V1GroupVersionForDiscoveryToJSON,
20
+
V1ServerAddressByClientCIDR,
21
+
V1ServerAddressByClientCIDRFromJSON,
22
+
V1ServerAddressByClientCIDRToJSON,
25
23
}from'./';
26
24
27
25
/**
@@ -30,78 +28,82 @@ import {
30
28
* @interface V1APIGroup
31
29
*/
32
30
exportinterfaceV1APIGroup{
33
-
/**
34
-
* APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources
35
-
* @type {string}
36
-
* @memberof V1APIGroup
37
-
*/
38
-
apiVersion?: string;
39
-
/**
40
-
* Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
41
-
* @type {string}
42
-
* @memberof V1APIGroup
43
-
*/
44
-
kind?: string;
45
-
/**
46
-
* name is the name of the group.
47
-
* @type {string}
48
-
* @memberof V1APIGroup
49
-
*/
50
-
name: string;
51
-
/**
52
-
*
53
-
* @type {V1GroupVersionForDiscovery}
54
-
* @memberof V1APIGroup
55
-
*/
56
-
preferredVersion?: V1GroupVersionForDiscovery;
57
-
/**
58
-
* a map of client CIDR to server address that is serving this group. This is to help clients reach servers in the most network-efficient way possible. Clients can use the appropriate server address as per the CIDR that they match. In case of multiple matches, clients should use the longest matching CIDR. The server returns only those CIDRs that it thinks that the client can match. For example: the master will return an internal IP CIDR only, if the client reaches the server using an internal IP. Server looks at X-Forwarded-For header or X-Real-Ip header or request.RemoteAddr (in that order) to get the client IP.
* versions are the versions supported in this group.
65
-
* @type {Array<V1GroupVersionForDiscovery>}
66
-
* @memberof V1APIGroup
67
-
*/
68
-
versions: Array<V1GroupVersionForDiscovery>;
31
+
/**
32
+
* APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources
33
+
* @type {string}
34
+
* @memberof V1APIGroup
35
+
*/
36
+
apiVersion?: string;
37
+
/**
38
+
* Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
39
+
* @type {string}
40
+
* @memberof V1APIGroup
41
+
*/
42
+
kind?: string;
43
+
/**
44
+
* name is the name of the group.
45
+
* @type {string}
46
+
* @memberof V1APIGroup
47
+
*/
48
+
name: string;
49
+
/**
50
+
*
51
+
* @type {V1GroupVersionForDiscovery}
52
+
* @memberof V1APIGroup
53
+
*/
54
+
preferredVersion?: V1GroupVersionForDiscovery;
55
+
/**
56
+
* a map of client CIDR to server address that is serving this group. This is to help clients reach servers in the most network-efficient way possible. Clients can use the appropriate server address as per the CIDR that they match. In case of multiple matches, clients should use the longest matching CIDR. The server returns only those CIDRs that it thinks that the client can match. For example: the master will return an internal IP CIDR only, if the client reaches the server using an internal IP. Server looks at X-Forwarded-For header or X-Real-Ip header or request.RemoteAddr (in that order) to get the client IP.
0 commit comments