ApiHttpServiceConfigArgs

data class ApiHttpServiceConfigArgs(val address: Output<String>, val aoneName: Output<String>? = null, val method: Output<String>, val path: Output<String>, val timeout: Output<Int>) : ConvertibleToJava<ApiHttpServiceConfigArgs>

Constructors

Link copied to clipboard
fun ApiHttpServiceConfigArgs(address: Output<String>, aoneName: Output<String>? = null, method: Output<String>, path: Output<String>, timeout: Output<Int>)

Functions

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

Properties

Link copied to clipboard
val address: Output<String>

The address of backend service.

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

The method of the api, including 'GET','POST','PUT' etc.

Link copied to clipboard
val path: Output<String>

The request path of the api.

Link copied to clipboard
val timeout: Output<Int>

Backend service time-out time; unit: millisecond.