Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 796 Bytes

File metadata and controls

30 lines (21 loc) · 796 Bytes

AuthType

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.

Example Usage

from glean.api_client.models import AuthType

value = AuthType.NONE

# Open enum: unrecognized values are captured as UnrecognizedStr

Values

Name Value
NONE NONE
OAUTH_USER OAUTH_USER
OAUTH_ADMIN OAUTH_ADMIN
API_KEY API_KEY
BASIC_AUTH BASIC_AUTH
DWD DWD