updateModel
inline suspend fun LookoutEquipmentClient.updateModel(crossinline block: UpdateModelRequest.Builder.() -> Unit): UpdateModelResponse
Updates a model in the account.
Samples
fun main() {
//sampleStart
lookoutEquipmentClient.updateModel {
modelName = "sample-model"
labelsInputConfiguration = LabelsInputConfiguration {
labelGroupName = "sample-label-group"
}
}
//sampleEnd
}