Api Key Auth Model Args
data class ApiKeyAuthModelArgs(val apiKey: Output<String>, val apiKeyIdentifier: Output<String>? = null, val apiKeyName: Output<String>, val isApiKeyInPostPayload: Output<Boolean>? = null, val type: Output<String>) : ConvertibleToJava<ApiKeyAuthModelArgs>
Model for authentication with the API Key. Will result in additional header on the request (default behavior) to the remote server: 'ApiKeyName: ApiKeyIdentifier ApiKey'. If 'IsApiKeyInPostPayload' is true it will send it in the body of the request and not the header.