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
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
4
+
*
5
+
* OpenAPI spec version: master
6
+
*
7
+
*
8
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
+
* https://openapi-generator.tech
10
+
* Do not edit the class manually.
11
+
*/
12
+
13
+
14
+
15
+
/**
16
+
* The node this Taint is attached to has the \"effect\" on any pod that does not tolerate the Taint.
17
+
*/
18
+
exportclassV1Taint{
19
+
/**
20
+
* Required. The effect of the taint on pods that do not tolerate the taint. Valid effects are NoSchedule, PreferNoSchedule and NoExecute. Possible enum values: - `\"NoExecute\"` Evict any already-running pods that do not tolerate the taint. Currently enforced by NodeController. - `\"NoSchedule\"` Do not allow new pods to schedule onto the node unless they tolerate the taint, but allow all pods submitted to Kubelet without going through the scheduler to start, and allow all already-running pods to continue running. Enforced by the scheduler. - `\"PreferNoSchedule\"` Like TaintEffectNoSchedule, but the scheduler tries not to schedule new pods onto the node, rather than prohibiting new pods from scheduling onto the node entirely. Enforced by the scheduler.
21
+
*/
22
+
'effect': V1TaintEffectEnum;
23
+
/**
24
+
* Required. The taint key to be applied to a node.
25
+
*/
26
+
'key': string;
27
+
/**
28
+
* TimeAdded represents the time at which the taint was added. It is only written for NoExecute taints.
Copy file name to clipboardExpand all lines: gen/models/licenseApiResourceCount.ts
+10Lines changed: 10 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -21,6 +21,10 @@ export class LicenseApiResourceCount {
21
21
*/
22
22
'active'?: number;
23
23
/**
24
+
* Committed specifies the amount of resource consumption customers have committed to for a given billing period. It can be exceeded and will then be charged with overage fees.
25
+
*/
26
+
'committed'?: number;
27
+
/**
24
28
* TotalCreated is a continuous counter of the amount of resources ever created.
25
29
*/
26
30
'created'?: number;
@@ -38,6 +42,12 @@ export class LicenseApiResourceCount {
0 commit comments