Package org.cdk8s.plus25
Class NodeTaintQuery
- java.lang.Object
-
- software.amazon.jsii.JsiiObject
-
- org.cdk8s.plus25.NodeTaintQuery
-
- All Implemented Interfaces:
software.amazon.jsii.JsiiSerializable
@Generated(value="jsii-pacmak/1.88.0 (build eaabd08)", date="2023-09-11T06:17:58.373Z") @Stability(Stable) public class NodeTaintQuery extends software.amazon.jsii.JsiiObject
Taint queries that can be perfomed against nodes.
-
-
Constructor Summary
Constructors Modifier Constructor Description protectedNodeTaintQuery(software.amazon.jsii.JsiiObject.InitializationMode initializationMode)protectedNodeTaintQuery(software.amazon.jsii.JsiiObjectRef objRef)
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static NodeTaintQueryany()Matches any taint.static NodeTaintQueryexists(String key)Matches a tain with any value of a specific key.static NodeTaintQueryexists(String key, NodeTaintQueryOptions options)Matches a tain with any value of a specific key.static NodeTaintQueryis(String key, String value)Matches a taint with a specific key and value.static NodeTaintQueryis(String key, String value, NodeTaintQueryOptions options)Matches a taint with a specific key and value.-
Methods inherited from class software.amazon.jsii.JsiiObject
jsiiAsyncCall, jsiiAsyncCall, jsiiCall, jsiiCall, jsiiGet, jsiiGet, jsiiSet, jsiiStaticCall, jsiiStaticCall, jsiiStaticGet, jsiiStaticGet, jsiiStaticSet, jsiiStaticSet
-
-
-
-
Method Detail
-
any
@Stability(Stable) @NotNull public static NodeTaintQuery any()
Matches any taint.
-
exists
@Stability(Stable) @NotNull public static NodeTaintQuery exists(@NotNull String key, @Nullable NodeTaintQueryOptions options)
Matches a tain with any value of a specific key.- Parameters:
key- This parameter is required.options-
-
exists
@Stability(Stable) @NotNull public static NodeTaintQuery exists(@NotNull String key)
Matches a tain with any value of a specific key.- Parameters:
key- This parameter is required.
-
is
@Stability(Stable) @NotNull public static NodeTaintQuery is(@NotNull String key, @NotNull String value, @Nullable NodeTaintQueryOptions options)
Matches a taint with a specific key and value.- Parameters:
key- This parameter is required.value- This parameter is required.options-
-
is
@Stability(Stable) @NotNull public static NodeTaintQuery is(@NotNull String key, @NotNull String value)
Matches a taint with a specific key and value.- Parameters:
key- This parameter is required.value- This parameter is required.
-
-