[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2024-12-02 UTC."],[[["\u003cp\u003e\u003ccode\u003eAuthType\u003c/code\u003e is an enum used to define the authentication types for a connector in DataStudio.\u003c/p\u003e\n"],["\u003cp\u003eAuthentication types include options like no authorization, OAuth2, username/password, and API key/token methods.\u003c/p\u003e\n"],["\u003cp\u003eYou can call the \u003ccode\u003eAuthType\u003c/code\u003e enum using \u003ccode\u003eDataStudioApp.AuthType\u003c/code\u003e followed by the desired property (e.g., \u003ccode\u003eDataStudioApp.AuthType.OAUTH2\u003c/code\u003e).\u003c/p\u003e\n"]]],["`AuthType` is an enum defining connector authentication methods. It includes `NONE` for no authorization, `OAUTH2` for OAuth2, `USER_PASS` for username/password, `PATH_USER_PASS` for username/path/password, `PATH_KEY` for path/key, `KEY` for API Key/Token, and `USER_TOKEN` for username/token. Access is via `DataStudioApp.AuthType.PROPERTY`, replacing `PROPERTY` with the desired method. Each method is represented by an `Enum` type.\n"],null,["AuthType\n\nAn enum that defines the authentication types that can be set for a connector.\n\nTo call an enum, you call its parent class, name, and property. For example, `\nDataStudioApp.AuthType.OAUTH2`. \n\nProperties\n\n| Property | Type | Description |\n|------------------|--------|-------------------------------------------|\n| `NONE` | `Enum` | No authorization needed. |\n| `OAUTH2` | `Enum` | OAuth2 authorization needed. |\n| `USER_PASS` | `Enum` | Username and password credentials needed. |\n| `PATH_USER_PASS` | `Enum` | Username, path, and password needed. |\n| `PATH_KEY` | `Enum` | Path and key needed. |\n| `KEY` | `Enum` | API Key or Token needed. |\n| `USER_TOKEN` | `Enum` | Username and token needed. |"]]