SecretTypeEnum
No description
enum SecretTypeEnum {
QUERY_PARAM
BASIC_AUTH
BEARER_TOKEN
COOKIE
GENERIC
HEADER
}
Values
SecretTypeEnum.QUERY_PARAM
Authentication via credentials or tokens in the URL query param string.
SecretTypeEnum.BASIC_AUTH
Authentication using a username and password.
SecretTypeEnum.BEARER_TOKEN
Authentication using a token in the request.
SecretTypeEnum.COOKIE
Session-based authentication using browser cookies.
SecretTypeEnum.GENERIC
A general-purpose secret based on key-value pairs, not tied to any specific authentication method.
SecretTypeEnum.HEADER
Authentication via custom headers, e.g., API keys or tokens.
Member Of
BasicAuthSecret
object ● BearerTokenSecret
object ● CookieSecret
object ● GenericSecret
object ● HeaderSecret
object ● QueryParamSecret
object ● SecretInterface
interface