OAuth
class resources.oauth.OAuth
Base class: Resource
Users can grant Cloudomation the right to access third-party APIs on their behalf. This permission is stored in the form of an OAuth grant.
| Property | Description | Type |
|---|---|---|
| id | UUID() | |
| oauth_type | Selection for which target this oauth grant can be used. | Enum('GOOGLE', 'MAGENTO', 'BULLHORN', name='oauthtype') |
| request_token | String(length=128) | |
| request_token_secret | String(length=128) | |
| configuration | JSONB(astext_type=Text()) | |
| credentials | JSONB(astext_type=Text()) | |
| is_authorized | Boolean() | |
| authorization_url | String(length=512) | |
| size_bytes | BigInteger() |