ParameterDeclarationResponse

data class ParameterDeclarationResponse(val default: String? = null, val description: String? = null, val name: String, val type: String)

Single topology parameter declaration. Declared parameters can and must be referenced throughout the topology and can optionally have default values to be used when they are not defined in the pipelines.

Constructors

Link copied to clipboard
constructor(default: String? = null, description: String? = null, name: String, type: String)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val default: String? = null

The default value for the parameter to be used if the pipeline does not specify a value.

Link copied to clipboard
val description: String? = null

Description of the parameter.

Link copied to clipboard

Name of the parameter.

Link copied to clipboard

Type of the parameter.