AppDaprArgs

data class AppDaprArgs(val appId: Output<String>, val appPort: Output<Int>? = null, val appProtocol: Output<String>? = null) : ConvertibleToJava<AppDaprArgs>

Constructors

Link copied to clipboard
constructor(appId: Output<String>, appPort: Output<Int>? = null, appProtocol: Output<String>? = null)

Properties

Link copied to clipboard
val appId: Output<String>

The Dapr Application Identifier.

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

The port which the application is listening on. This is the same as the ingress port.

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

The protocol for the app. Possible values include http and grpc. Defaults to http.

Functions

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