BasicAuthenticationArgs

data class BasicAuthenticationArgs(val password: Output<String>? = null, val username: Output<String>? = null) : ConvertibleToJava<BasicAuthenticationArgs>

The authentication parameters to provide to the specified resource or URL that requires a username and password. Currently, only Basic HTTP authentication (https://tools.ietf.org/html/rfc7617) is supported in Uptime checks.

Constructors

Link copied to clipboard
fun BasicAuthenticationArgs(password: Output<String>? = null, username: Output<String>? = null)

Functions

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

Properties

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

The password to use when authenticating with the HTTP server.

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

The username to use when authenticating with the HTTP server.