Uses of Class
org.cdk8s.plus23.LabelExpression
-
-
Uses of LabelExpression in org.cdk8s.plus23
Methods in org.cdk8s.plus23 that return LabelExpression Modifier and Type Method Description static LabelExpressionLabelExpression. doesNotExist(String key)Requires label `key` to not exist.static LabelExpressionLabelExpression. exists(String key)Requires label `key` to exist.static LabelExpressionLabelExpression. in(String key, List<String> values)Requires value of label `key` to be one of `values`.static LabelExpressionLabelExpression. notIn(String key, List<String> values)Requires value of label `key` to be none of `values`.Methods in org.cdk8s.plus23 that return types with arguments of type LabelExpression Modifier and Type Method Description default List<LabelExpression>LabelSelectorOptions. getExpressions()Expression based label matchers.List<LabelExpression>LabelSelectorOptions.Jsii$Proxy. getExpressions()default List<LabelExpression>NamespacesSelectOptions. getExpressions()Namespaces must satisfy these selectors.List<LabelExpression>NamespacesSelectOptions.Jsii$Proxy. getExpressions()default List<LabelExpression>PodsSelectOptions. getExpressions()Expressions the pods must satisify.List<LabelExpression>PodsSelectOptions.Jsii$Proxy. getExpressions()Method parameters in org.cdk8s.plus23 with type arguments of type LabelExpression Modifier and Type Method Description LabelSelectorOptions.BuilderLabelSelectorOptions.Builder. expressions(List<? extends LabelExpression> expressions)Sets the value ofLabelSelectorOptions.getExpressions()NamespacesSelectOptions.BuilderNamespacesSelectOptions.Builder. expressions(List<? extends LabelExpression> expressions)Sets the value ofNamespacesSelectOptions.getExpressions()PodsSelectOptions.BuilderPodsSelectOptions.Builder. expressions(List<? extends LabelExpression> expressions)Sets the value ofPodsSelectOptions.getExpressions()Constructor parameters in org.cdk8s.plus23 with type arguments of type LabelExpression Constructor Description Namespaces(software.constructs.Construct scope, String id, List<LabelExpression> expressions)Namespaces(software.constructs.Construct scope, String id, List<LabelExpression> expressions, List<String> names)Namespaces(software.constructs.Construct scope, String id, List<LabelExpression> expressions, List<String> names, Map<String,String> labels)Pods(software.constructs.Construct scope, String id, List<LabelExpression> expressions)Pods(software.constructs.Construct scope, String id, List<LabelExpression> expressions, Map<String,String> labels)Pods(software.constructs.Construct scope, String id, List<LabelExpression> expressions, Map<String,String> labels, INamespaceSelector namespaces)
-