GRPCActionArgs

data class GRPCActionArgs(val port: Output<Int>, val service: Output<String>? = null) : ConvertibleToJava<GRPCActionArgs>

Constructors

Link copied to clipboard
constructor(port: Output<Int>, service: Output<String>? = null)

Properties

Link copied to clipboard
val port: Output<Int>

Port number of the gRPC service. Number must be in the range 1 to 65535.

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

Service is the name of the service to place in the gRPC HealthCheckRequest (see https://github.com/grpc/grpc/blob/master/doc/health-checking.md). If this is not specified, the default behavior is defined by gRPC.

Functions

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