The type of authentication being used. Use 'OAUTH_*' when Glean calls an external API (e.g., Jira) on behalf of a user to obtain an OAuth token. 'OAUTH_ADMIN' utilizes an admin token for external API calls on behalf all users. 'OAUTH_USER' uses individual user tokens for external API calls. 'DWD' refers to domain wide delegation.
from glean.api_client.models import AuthConfigType
value = AuthConfigType.NONE
# Open enum: unrecognized values are captured as UnrecognizedStr| Name | Value |
|---|---|
NONE |
NONE |
OAUTH_USER |
OAUTH_USER |
OAUTH_ADMIN |
OAUTH_ADMIN |
API_KEY |
API_KEY |
BASIC_AUTH |
BASIC_AUTH |
DWD |
DWD |