Dapr Args
data class DaprArgs(val appId: Output<String>? = null, val appPort: Output<Int>? = null, val appProtocol: Output<Either<String, AppProtocol>>? = 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, LogLevel>>? = null) : ConvertibleToJava<DaprArgs>
Container App Dapr configuration.
Constructors
Link copied to clipboard
constructor(appId: Output<String>? = null, appPort: Output<Int>? = null, appProtocol: Output<Either<String, AppProtocol>>? = null, enableApiLogging: Output<Boolean>? = null, enabled: Output<Boolean>? = null, httpMaxRequestSize: Output<Int>? = null, httpReadBufferSize: Output<Int>? = null, logLevel: Output<Either<String, LogLevel>>? = null)
Properties
Link copied to clipboard
Tells Dapr which protocol your application is using. Valid options are http and grpc. Default is http
Link copied to clipboard
Enables API logging for the Dapr sidecar
Link copied to clipboard
Increasing max size of request body http and grpc 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.