SignalRFeatureArgs

data class SignalRFeatureArgs(val flag: Output<Either<String, FeatureFlags>>, val properties: Output<Map<String, String>>? = null, val value: Output<String>) : ConvertibleToJava<SignalRFeatureArgs>

Feature of a resource, which controls the runtime behavior.

Constructors

Link copied to clipboard
constructor(flag: Output<Either<String, FeatureFlags>>, properties: Output<Map<String, String>>? = null, value: Output<String>)

Properties

Link copied to clipboard
val flag: Output<Either<String, FeatureFlags>>

FeatureFlags is the supported features of Azure SignalR service.

Link copied to clipboard
val properties: Output<Map<String, String>>? = null

Optional properties related to this feature.

Link copied to clipboard
val value: Output<String>

Value of the feature flag. See Azure SignalR service document https://docs.microsoft.com/azure/azure-signalr/ for allowed values.

Functions

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