EnvironmentVarResponse

data class EnvironmentVarResponse(val name: String? = null, val secretRef: String? = null, val value: String? = null)

Container App container environment variable.

Constructors

Link copied to clipboard
constructor(name: String? = null, secretRef: String? = null, value: String? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val name: String? = null

Environment variable name.

Link copied to clipboard
val secretRef: String? = null

Name of the Container App secret from which to pull the environment variable value.

Link copied to clipboard
val value: String? = null

Non-secret environment variable value.