Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -697,6 +697,7 @@ constructor(
fun operation(): Optional<Operation> =
Optional.ofNullable(operation.getNullable("operation"))

/** A regex string, to be used with `MATCHES` or `DOES_NOT_MATCH` */
fun value(): Optional<Value> = Optional.ofNullable(value.getNullable("value"))

/**
Expand Down Expand Up @@ -736,6 +737,7 @@ constructor(
/** The operation to apply to the attribute */
@JsonProperty("operation") @ExcludeMissing fun _operation() = operation

/** A regex string, to be used with `MATCHES` or `DOES_NOT_MATCH` */
@JsonProperty("value") @ExcludeMissing fun _value() = value

@JsonAnyGetter
Expand Down Expand Up @@ -858,8 +860,10 @@ constructor(
this.operation = operation
}

/** A regex string, to be used with `MATCHES` or `DOES_NOT_MATCH` */
fun value(value: Value) = value(JsonField.of(value))

/** A regex string, to be used with `MATCHES` or `DOES_NOT_MATCH` */
@JsonProperty("value")
@ExcludeMissing
fun value(value: JsonField<Value>) = apply { this.value = value }
Expand Down Expand Up @@ -1672,6 +1676,7 @@ constructor(
fun operation(): Optional<Operation> =
Optional.ofNullable(operation.getNullable("operation"))

/** A regex string, to be used with `MATCHES` or `DOES_NOT_MATCH` */
fun value(): Optional<Value> = Optional.ofNullable(value.getNullable("value"))

/**
Expand Down Expand Up @@ -1711,6 +1716,7 @@ constructor(
/** The operation to apply to the attribute */
@JsonProperty("operation") @ExcludeMissing fun _operation() = operation

/** A regex string, to be used with `MATCHES` or `DOES_NOT_MATCH` */
@JsonProperty("value") @ExcludeMissing fun _value() = value

@JsonAnyGetter
Expand Down Expand Up @@ -1833,8 +1839,10 @@ constructor(
this.operation = operation
}

/** A regex string, to be used with `MATCHES` or `DOES_NOT_MATCH` */
fun value(value: Value) = value(JsonField.of(value))

/** A regex string, to be used with `MATCHES` or `DOES_NOT_MATCH` */
@JsonProperty("value")
@ExcludeMissing
fun value(value: JsonField<Value>) = apply { this.value = value }
Expand Down Expand Up @@ -2647,6 +2655,7 @@ constructor(
fun operation(): Optional<Operation> =
Optional.ofNullable(operation.getNullable("operation"))

/** A regex string, to be used with `MATCHES` or `DOES_NOT_MATCH` */
fun value(): Optional<Value> = Optional.ofNullable(value.getNullable("value"))

/**
Expand Down Expand Up @@ -2686,6 +2695,7 @@ constructor(
/** The operation to apply to the attribute */
@JsonProperty("operation") @ExcludeMissing fun _operation() = operation

/** A regex string, to be used with `MATCHES` or `DOES_NOT_MATCH` */
@JsonProperty("value") @ExcludeMissing fun _value() = value

@JsonAnyGetter
Expand Down Expand Up @@ -2808,8 +2818,10 @@ constructor(
this.operation = operation
}

/** A regex string, to be used with `MATCHES` or `DOES_NOT_MATCH` */
fun value(value: Value) = value(JsonField.of(value))

/** A regex string, to be used with `MATCHES` or `DOES_NOT_MATCH` */
@JsonProperty("value")
@ExcludeMissing
fun value(value: JsonField<Value>) = apply { this.value = value }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -515,6 +515,7 @@ constructor(
fun operation(): Optional<Operation> =
Optional.ofNullable(operation.getNullable("operation"))

/** A regex string, to be used with `MATCHES` or `DOES_NOT_MATCH` */
fun value(): Optional<Value> = Optional.ofNullable(value.getNullable("value"))

/**
Expand Down Expand Up @@ -554,6 +555,7 @@ constructor(
/** The operation to apply to the attribute */
@JsonProperty("operation") @ExcludeMissing fun _operation() = operation

/** A regex string, to be used with `MATCHES` or `DOES_NOT_MATCH` */
@JsonProperty("value") @ExcludeMissing fun _value() = value

@JsonAnyGetter
Expand Down Expand Up @@ -673,8 +675,10 @@ constructor(
this.operation = operation
}

/** A regex string, to be used with `MATCHES` or `DOES_NOT_MATCH` */
fun value(value: Value) = value(JsonField.of(value))

/** A regex string, to be used with `MATCHES` or `DOES_NOT_MATCH` */
@JsonProperty("value")
@ExcludeMissing
fun value(value: JsonField<Value>) = apply { this.value = value }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -594,6 +594,7 @@ private constructor(
fun operation(): Optional<Operation> =
Optional.ofNullable(operation.getNullable("operation"))

/** A regex string, to be used with `MATCHES` or `DOES_NOT_MATCH` */
fun value(): Optional<Value> = Optional.ofNullable(value.getNullable("value"))

/**
Expand Down Expand Up @@ -633,6 +634,7 @@ private constructor(
/** The operation to apply to the attribute */
@JsonProperty("operation") @ExcludeMissing fun _operation() = operation

/** A regex string, to be used with `MATCHES` or `DOES_NOT_MATCH` */
@JsonProperty("value") @ExcludeMissing fun _value() = value

@JsonAnyGetter
Expand Down Expand Up @@ -755,8 +757,10 @@ private constructor(
this.operation = operation
}

/** A regex string, to be used with `MATCHES` or `DOES_NOT_MATCH` */
fun value(value: Value) = value(JsonField.of(value))

/** A regex string, to be used with `MATCHES` or `DOES_NOT_MATCH` */
@JsonProperty("value")
@ExcludeMissing
fun value(value: JsonField<Value>) = apply { this.value = value }
Expand Down Expand Up @@ -1530,6 +1534,7 @@ private constructor(
fun operation(): Optional<Operation> =
Optional.ofNullable(operation.getNullable("operation"))

/** A regex string, to be used with `MATCHES` or `DOES_NOT_MATCH` */
fun value(): Optional<Value> = Optional.ofNullable(value.getNullable("value"))

/**
Expand Down Expand Up @@ -1569,6 +1574,7 @@ private constructor(
/** The operation to apply to the attribute */
@JsonProperty("operation") @ExcludeMissing fun _operation() = operation

/** A regex string, to be used with `MATCHES` or `DOES_NOT_MATCH` */
@JsonProperty("value") @ExcludeMissing fun _value() = value

@JsonAnyGetter
Expand Down Expand Up @@ -1691,8 +1697,10 @@ private constructor(
this.operation = operation
}

/** A regex string, to be used with `MATCHES` or `DOES_NOT_MATCH` */
fun value(value: Value) = value(JsonField.of(value))

/** A regex string, to be used with `MATCHES` or `DOES_NOT_MATCH` */
@JsonProperty("value")
@ExcludeMissing
fun value(value: JsonField<Value>) = apply { this.value = value }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -594,6 +594,7 @@ private constructor(
fun operation(): Optional<Operation> =
Optional.ofNullable(operation.getNullable("operation"))

/** A regex string, to be used with `MATCHES` or `DOES_NOT_MATCH` */
fun value(): Optional<Value> = Optional.ofNullable(value.getNullable("value"))

/**
Expand Down Expand Up @@ -633,6 +634,7 @@ private constructor(
/** The operation to apply to the attribute */
@JsonProperty("operation") @ExcludeMissing fun _operation() = operation

/** A regex string, to be used with `MATCHES` or `DOES_NOT_MATCH` */
@JsonProperty("value") @ExcludeMissing fun _value() = value

@JsonAnyGetter
Expand Down Expand Up @@ -755,8 +757,10 @@ private constructor(
this.operation = operation
}

/** A regex string, to be used with `MATCHES` or `DOES_NOT_MATCH` */
fun value(value: Value) = value(JsonField.of(value))

/** A regex string, to be used with `MATCHES` or `DOES_NOT_MATCH` */
@JsonProperty("value")
@ExcludeMissing
fun value(value: JsonField<Value>) = apply { this.value = value }
Expand Down Expand Up @@ -1530,6 +1534,7 @@ private constructor(
fun operation(): Optional<Operation> =
Optional.ofNullable(operation.getNullable("operation"))

/** A regex string, to be used with `MATCHES` or `DOES_NOT_MATCH` */
fun value(): Optional<Value> = Optional.ofNullable(value.getNullable("value"))

/**
Expand Down Expand Up @@ -1569,6 +1574,7 @@ private constructor(
/** The operation to apply to the attribute */
@JsonProperty("operation") @ExcludeMissing fun _operation() = operation

/** A regex string, to be used with `MATCHES` or `DOES_NOT_MATCH` */
@JsonProperty("value") @ExcludeMissing fun _value() = value

@JsonAnyGetter
Expand Down Expand Up @@ -1691,8 +1697,10 @@ private constructor(
this.operation = operation
}

/** A regex string, to be used with `MATCHES` or `DOES_NOT_MATCH` */
fun value(value: Value) = value(JsonField.of(value))

/** A regex string, to be used with `MATCHES` or `DOES_NOT_MATCH` */
@JsonProperty("value")
@ExcludeMissing
fun value(value: JsonField<Value>) = apply { this.value = value }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -594,6 +594,7 @@ private constructor(
fun operation(): Optional<Operation> =
Optional.ofNullable(operation.getNullable("operation"))

/** A regex string, to be used with `MATCHES` or `DOES_NOT_MATCH` */
fun value(): Optional<Value> = Optional.ofNullable(value.getNullable("value"))

/**
Expand Down Expand Up @@ -633,6 +634,7 @@ private constructor(
/** The operation to apply to the attribute */
@JsonProperty("operation") @ExcludeMissing fun _operation() = operation

/** A regex string, to be used with `MATCHES` or `DOES_NOT_MATCH` */
@JsonProperty("value") @ExcludeMissing fun _value() = value

@JsonAnyGetter
Expand Down Expand Up @@ -755,8 +757,10 @@ private constructor(
this.operation = operation
}

/** A regex string, to be used with `MATCHES` or `DOES_NOT_MATCH` */
fun value(value: Value) = value(JsonField.of(value))

/** A regex string, to be used with `MATCHES` or `DOES_NOT_MATCH` */
@JsonProperty("value")
@ExcludeMissing
fun value(value: JsonField<Value>) = apply { this.value = value }
Expand Down Expand Up @@ -1530,6 +1534,7 @@ private constructor(
fun operation(): Optional<Operation> =
Optional.ofNullable(operation.getNullable("operation"))

/** A regex string, to be used with `MATCHES` or `DOES_NOT_MATCH` */
fun value(): Optional<Value> = Optional.ofNullable(value.getNullable("value"))

/**
Expand Down Expand Up @@ -1569,6 +1574,7 @@ private constructor(
/** The operation to apply to the attribute */
@JsonProperty("operation") @ExcludeMissing fun _operation() = operation

/** A regex string, to be used with `MATCHES` or `DOES_NOT_MATCH` */
@JsonProperty("value") @ExcludeMissing fun _value() = value

@JsonAnyGetter
Expand Down Expand Up @@ -1691,8 +1697,10 @@ private constructor(
this.operation = operation
}

/** A regex string, to be used with `MATCHES` or `DOES_NOT_MATCH` */
fun value(value: Value) = value(JsonField.of(value))

/** A regex string, to be used with `MATCHES` or `DOES_NOT_MATCH` */
@JsonProperty("value")
@ExcludeMissing
fun value(value: JsonField<Value>) = apply { this.value = value }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -594,6 +594,7 @@ private constructor(
fun operation(): Optional<Operation> =
Optional.ofNullable(operation.getNullable("operation"))

/** A regex string, to be used with `MATCHES` or `DOES_NOT_MATCH` */
fun value(): Optional<Value> = Optional.ofNullable(value.getNullable("value"))

/**
Expand Down Expand Up @@ -633,6 +634,7 @@ private constructor(
/** The operation to apply to the attribute */
@JsonProperty("operation") @ExcludeMissing fun _operation() = operation

/** A regex string, to be used with `MATCHES` or `DOES_NOT_MATCH` */
@JsonProperty("value") @ExcludeMissing fun _value() = value

@JsonAnyGetter
Expand Down Expand Up @@ -755,8 +757,10 @@ private constructor(
this.operation = operation
}

/** A regex string, to be used with `MATCHES` or `DOES_NOT_MATCH` */
fun value(value: Value) = value(JsonField.of(value))

/** A regex string, to be used with `MATCHES` or `DOES_NOT_MATCH` */
@JsonProperty("value")
@ExcludeMissing
fun value(value: JsonField<Value>) = apply { this.value = value }
Expand Down Expand Up @@ -1530,6 +1534,7 @@ private constructor(
fun operation(): Optional<Operation> =
Optional.ofNullable(operation.getNullable("operation"))

/** A regex string, to be used with `MATCHES` or `DOES_NOT_MATCH` */
fun value(): Optional<Value> = Optional.ofNullable(value.getNullable("value"))

/**
Expand Down Expand Up @@ -1569,6 +1574,7 @@ private constructor(
/** The operation to apply to the attribute */
@JsonProperty("operation") @ExcludeMissing fun _operation() = operation

/** A regex string, to be used with `MATCHES` or `DOES_NOT_MATCH` */
@JsonProperty("value") @ExcludeMissing fun _value() = value

@JsonAnyGetter
Expand Down Expand Up @@ -1691,8 +1697,10 @@ private constructor(
this.operation = operation
}

/** A regex string, to be used with `MATCHES` or `DOES_NOT_MATCH` */
fun value(value: Value) = value(JsonField.of(value))

/** A regex string, to be used with `MATCHES` or `DOES_NOT_MATCH` */
@JsonProperty("value")
@ExcludeMissing
fun value(value: JsonField<Value>) = apply { this.value = value }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -594,6 +594,7 @@ private constructor(
fun operation(): Optional<Operation> =
Optional.ofNullable(operation.getNullable("operation"))

/** A regex string, to be used with `MATCHES` or `DOES_NOT_MATCH` */
fun value(): Optional<Value> = Optional.ofNullable(value.getNullable("value"))

/**
Expand Down Expand Up @@ -633,6 +634,7 @@ private constructor(
/** The operation to apply to the attribute */
@JsonProperty("operation") @ExcludeMissing fun _operation() = operation

/** A regex string, to be used with `MATCHES` or `DOES_NOT_MATCH` */
@JsonProperty("value") @ExcludeMissing fun _value() = value

@JsonAnyGetter
Expand Down Expand Up @@ -755,8 +757,10 @@ private constructor(
this.operation = operation
}

/** A regex string, to be used with `MATCHES` or `DOES_NOT_MATCH` */
fun value(value: Value) = value(JsonField.of(value))

/** A regex string, to be used with `MATCHES` or `DOES_NOT_MATCH` */
@JsonProperty("value")
@ExcludeMissing
fun value(value: JsonField<Value>) = apply { this.value = value }
Expand Down Expand Up @@ -1530,6 +1534,7 @@ private constructor(
fun operation(): Optional<Operation> =
Optional.ofNullable(operation.getNullable("operation"))

/** A regex string, to be used with `MATCHES` or `DOES_NOT_MATCH` */
fun value(): Optional<Value> = Optional.ofNullable(value.getNullable("value"))

/**
Expand Down Expand Up @@ -1569,6 +1574,7 @@ private constructor(
/** The operation to apply to the attribute */
@JsonProperty("operation") @ExcludeMissing fun _operation() = operation

/** A regex string, to be used with `MATCHES` or `DOES_NOT_MATCH` */
@JsonProperty("value") @ExcludeMissing fun _value() = value

@JsonAnyGetter
Expand Down Expand Up @@ -1691,8 +1697,10 @@ private constructor(
this.operation = operation
}

/** A regex string, to be used with `MATCHES` or `DOES_NOT_MATCH` */
fun value(value: Value) = value(JsonField.of(value))

/** A regex string, to be used with `MATCHES` or `DOES_NOT_MATCH` */
@JsonProperty("value")
@ExcludeMissing
fun value(value: JsonField<Value>) = apply { this.value = value }
Expand Down
Loading