EnvironmentVariableResponse

data class EnvironmentVariableResponse(val name: String, val secureValue: String? = null, val value: String? = null)

The environment variable to pass to the script in the container instance.

Constructors

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

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

The name of the environment variable.

Link copied to clipboard
val secureValue: String? = null

The value of the secure environment variable.

Link copied to clipboard
val value: String? = null

The value of the environment variable.