DaprArgs

data class DaprArgs(val appId: Output<String>? = null, val appPort: Output<Int>? = null, val components: Output<List<DaprComponentArgs>>? = null, val enabled: Output<Boolean>? = null) : ConvertibleToJava<DaprArgs>

Container App Dapr configuration.

Constructors

Link copied to clipboard
constructor(appId: Output<String>? = null, appPort: Output<Int>? = null, components: Output<List<DaprComponentArgs>>? = null, enabled: Output<Boolean>? = null)

Properties

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

Dapr application identifier

Link copied to clipboard
val appPort: Output<Int>? = null

Port on which the Dapr side car

Link copied to clipboard
val components: Output<List<DaprComponentArgs>>? = null

Collection of Dapr components

Link copied to clipboard
val enabled: Output<Boolean>? = null

Boolean indicating if the Dapr side car is enabled

Functions

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