HttpGetArgs

data class HttpGetArgs(val fileName: Output<String>? = null, val headers: Output<List<String>>? = null, val url: Output<String>) : ConvertibleToJava<HttpGetArgs>

Model representing a http get request.

Constructors

Link copied to clipboard
constructor(fileName: Output<String>? = null, headers: Output<List<String>>? = null, url: Output<String>)

Properties

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

Name of the file that the request should be saved to.

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

List of headers to send with the request.

Link copied to clipboard
val url: Output<String>

URL to make HTTP GET request against.

Functions

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