LabelSelectorRequirementResponse

data class LabelSelectorRequirementResponse(val key: String? = null, val operator: String? = null, val values: List<String>? = null)

A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values.

Constructors

Link copied to clipboard
constructor(key: String? = null, operator: String? = null, values: List<String>? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val key: String? = null

key is the label key that the selector applies to.

Link copied to clipboard
val operator: String? = null

operator represents a key's relationship to a set of values. Valid operators are In and NotIn

Link copied to clipboard
val values: List<String>? = null

values is an array of string values, the values array must be non-empty.