HttpRequestArgs

data class HttpRequestArgs(val authentication: Output<Any>? = null, val body: Output<String>? = null, val headers: Output<Map<String, String>>? = null, val method: Output<String>? = null, val uri: Output<String>? = null) : ConvertibleToJava<HttpRequestArgs>

Constructors

Link copied to clipboard
constructor(authentication: Output<Any>? = null, body: Output<String>? = null, headers: Output<Map<String, String>>? = null, method: Output<String>? = null, uri: Output<String>? = null)

Properties

Link copied to clipboard
val authentication: Output<Any>? = null

Gets or sets the authentication method of the request.

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

Gets or sets the request body.

Link copied to clipboard
val headers: Output<Map<String, String>>? = null

Gets or sets the headers.

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

Gets or sets the method of the request.

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

Gets or sets the URI of the request.

Functions

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