Dapr Config Args
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.
Properties
Link copied to clipboard
Enables API logging for the Dapr sidecar
Link copied to clipboard
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
Dapr max size of http header read buffer in KB to handle when sending multi-KB headers. Default is 65KB.
Link copied to clipboard
Sets the log level for the Dapr sidecar. Allowed values are debug, info, warn, error. Default is info.