SettingArgs

data class SettingArgs(val name: Output<String>? = null, val value: Output<String>? = null) : ConvertibleToJava<SettingArgs>

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: Output<String>? = null, value: Output<String>? = null)

Properties

Link copied to clipboard
val name: Output<String>? = null

The name of the setting.

Link copied to clipboard
val value: Output<String>? = null

The value of the setting.

Functions

Link copied to clipboard
open override fun toJava(): SettingArgs