dk.sdu.cloud.app.store.api.ApplicationParameter.Integer

UCloud Developer Guide / Orchestration of Resources / Compute / Application Store / Applications

ApplicationParameter.Integer

An input parameter which accepts any integer value

data class Integer(
    val name: String?,
    val optional: Boolean?,
    val defaultValue: Any?,
    val title: String?,
    val description: String?,
    val min: Long?,
    val max: Long?,
    val step: Long?,
    val unitName: String?,
    val type: String /* "integer" */,
)

Compatible with: AppParameterValue.Integer

This parameter can be tweaked using the various options. For example, it is possible to provide a minimum and maximum value.

Properties

Last updated