Package org.cdk8s.plus23
Class NodeTaintQuery
- java.lang.Object
-
- software.amazon.jsii.JsiiObject
-
- org.cdk8s.plus23.NodeTaintQuery
-
- All Implemented Interfaces:
software.amazon.jsii.JsiiSerializable
@Generated(value="jsii-pacmak/1.69.0 (build f656c31)", date="2022-10-15T03:08:35.125Z") @Stability(Stable) public class NodeTaintQuery extends software.amazon.jsii.JsiiObject
Taint queries that can be perfomed against nodes.
-
-
Constructor Summary
Constructors Modifier Constructor Description protected
NodeTaintQuery(software.amazon.jsii.JsiiObject.InitializationMode initializationMode)
protected
NodeTaintQuery(software.amazon.jsii.JsiiObjectRef objRef)
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static NodeTaintQuery
any()
Matches any taint.static NodeTaintQuery
exists(String key)
Matches a tain with any value of a specific key.static NodeTaintQuery
exists(String key, NodeTaintQueryOptions options)
Matches a tain with any value of a specific key.static NodeTaintQuery
is(String key, String value)
Matches a taint with a specific key and value.static NodeTaintQuery
is(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.
-
-