
com.pulumi.azurenative.containerservice.enums.Operator Maven / Gradle / Ivy
// *** WARNING: this file was generated by pulumi-java-gen. ***
// *** Do not edit by hand unless you're certain you know what you are doing! ***
package com.pulumi.azurenative.containerservice.enums;
import com.pulumi.core.annotations.EnumType;
import java.lang.String;
import java.util.Objects;
import java.util.StringJoiner;
/**
* operator represents a key's relationship to a set of values. Valid operators are In and NotIn
*
*/
@EnumType
public enum Operator {
/**
* The value of the key should be in the given list.
*
*/
In("In"),
/**
* The value of the key should not be in the given list.
*
*/
NotIn("NotIn"),
/**
* The value of the key should exist.
*
*/
Exists("Exists"),
/**
* The value of the key should not exist.
*
*/
DoesNotExist("DoesNotExist");
private final String value;
Operator(String value) {
this.value = Objects.requireNonNull(value);
}
@EnumType.Converter
public String getValue() {
return this.value;
}
@Override
public java.lang.String toString() {
return new StringJoiner(", ", "Operator[", "]")
.add("value='" + this.value + "'")
.toString();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy