Enum AuthType
Stay organized with collections
Save and categorize content based on your preferences.
AuthType
An enum that defines the authentication types that can be set for a connector.
To call an enum, you call its parent class, name, and property. For example,
DataStudioApp.AuthType.OAUTH2
.
Properties
Property | Type | Description |
NONE | Enum | No authorization needed. |
OAUTH2 | Enum | OAuth2 authorization needed. |
USER_PASS | Enum | Username and password credentials needed. |
PATH_USER_PASS | Enum | Username, path, and password needed. |
PATH_KEY | Enum | Path and key needed. |
KEY | Enum | API Key or Token needed. |
USER_TOKEN | Enum | Username and token needed. |
Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License, and code samples are licensed under the Apache 2.0 License. For details, see the Google Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates.
Last updated 2024-12-02 UTC.
[null,null,["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,["# Enum AuthType\n\nAuthType\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\n### Properties\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. |"]]