DaprConfigResponse

data class DaprConfigResponse(val appId: String? = null, val appPort: Int? = null, val enableApiLogging: Boolean? = null, val enabled: Boolean? = null, val httpMaxRequestSize: Int? = null, val httpReadBufferSize: Int? = null, val logLevel: String? = null)

App Dapr configuration.

Constructors

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

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val appId: String? = null

Dapr application identifier

Link copied to clipboard
val appPort: Int? = null

Tells Dapr which port your application is listening on

Link copied to clipboard

Enables API logging for the Dapr sidecar

Link copied to clipboard
val enabled: Boolean? = null

Boolean indicating if the Dapr side car is enabled

Link copied to clipboard
val httpMaxRequestSize: 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: 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: String? = null

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