SettingResponse

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

Describes a setting for the container. The setting file path can be fetched from environment variable "Fabric_SettingPath". The path for Windows container is "C:\\secrets". The path for Linux container is "/var/secrets".

Constructors

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

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val name: String? = null

The name of the setting.

Link copied to clipboard
val value: String? = null

The value of the setting.