DaprConfigArgs

data class DaprConfigArgs(val appId: Output<String>? = null, val appPort: Output<Int>? = null, val enableApiLogging: Output<Boolean>? = null, val enabled: Output<Boolean>? = null, val httpMaxRequestSize: Output<Int>? = null, val httpReadBufferSize: Output<Int>? = null, val logLevel: Output<Either<String, DaprLogLevel>>? = null) : ConvertibleToJava<DaprConfigArgs>

App Dapr configuration.

Constructors

Link copied to clipboard
constructor(appId: Output<String>? = null, appPort: Output<Int>? = null, enableApiLogging: Output<Boolean>? = null, enabled: Output<Boolean>? = null, httpMaxRequestSize: Output<Int>? = null, httpReadBufferSize: Output<Int>? = null, logLevel: Output<Either<String, DaprLogLevel>>? = null)

Properties

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

Dapr application identifier

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

Tells Dapr which port your application is listening on

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

Enables API logging for the Dapr sidecar

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

Boolean indicating if the Dapr side car is enabled

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

Increasing max size of request body http servers parameter in MB to handle uploading of big files. Default is 4 MB.

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

Dapr max size of http header read buffer in KB to handle when sending multi-KB headers. Default is 65KB.

Link copied to clipboard
val logLevel: Output<Either<String, DaprLogLevel>>? = null

Sets the log level for the Dapr sidecar. Allowed values are debug, info, warn, error. Default is info.

Functions

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