entries

@JvmName(name = "jeacuclifvclcerj")
suspend fun entries(value: Output<Map<String, String>>)
@JvmName(name = "unkmdsnfurnlsgfx")
suspend fun entries(value: Map<String, String>?)

Parameters

value

Map of (K, V) -> (valid name of the field, new value of the field) E.g., ("age", "60") entry triggers update of field age with a value of 60. If the field is not present then new entry is added. During update action execution, value strings will be casted to appropriate types.


@JvmName(name = "qilenfmrsecthfwp")
fun entries(vararg values: Pair<String, String>)

Parameters

values

Map of (K, V) -> (valid name of the field, new value of the field) E.g., ("age", "60") entry triggers update of field age with a value of 60. If the field is not present then new entry is added. During update action execution, value strings will be casted to appropriate types.