AppSpecFunctionEnv

data class AppSpecFunctionEnv(val key: String? = null, val scope: String? = null, val type: String? = null, val value: String? = null)

Constructors

Link copied to clipboard
constructor(key: String? = null, scope: String? = null, type: String? = null, value: String? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val key: String? = null

The name of the environment variable.

Link copied to clipboard
val scope: String? = null

The visibility scope of the environment variable. One of RUN_TIME, BUILD_TIME, or RUN_AND_BUILD_TIME (default).

Link copied to clipboard
val type: String? = null

The type of the environment variable, GENERAL or SECRET.

Link copied to clipboard
val value: String? = null

The value of the environment variable.