ApiKeyAuthenticationArgs

data class ApiKeyAuthenticationArgs(val in: Output<RestAuthLocation>, val name: Output<String>, val type: Output<String>, val value: Output<String>) : ConvertibleToJava<ApiKeyAuthenticationArgs>

ApiKey authentication gives a name and a value that can be included in either the request header or query parameters.

Constructors

Link copied to clipboard
constructor(in: Output<RestAuthLocation>, name: Output<String>, type: Output<String>, value: Output<String>)

Properties

Link copied to clipboard
val in: Output<RestAuthLocation>

The location of the authentication key/value pair in the request.

Link copied to clipboard
val name: Output<String>

The key name of the authentication key/value pair.

Link copied to clipboard
val type: Output<String>

The authentication type. Expected value is 'ApiKey'.

Link copied to clipboard
val value: Output<String>

The value of the authentication key/value pair.

Functions

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