Class: PlatformAPI::OauthAuthorization
- Inherits:
-
Object
- Object
- PlatformAPI::OauthAuthorization
- Defined in:
- lib/platform-api/client.rb
Overview
OAuth authorizations represent clients that a Heroku user has authorized to automate, customize or extend their usage of the platform. For more information please refer to the Heroku OAuth documentation
Instance Method Summary collapse
-
#create(body = {}) ⇒ Object
Create a new OAuth authorization.
-
#delete(oauth_authorization_id) ⇒ Object
Delete OAuth authorization.
-
#info(oauth_authorization_id) ⇒ Object
Info for an OAuth authorization.
-
#initialize(client) ⇒ OauthAuthorization
constructor
A new instance of OauthAuthorization.
-
#list ⇒ Object
List OAuth authorizations.
-
#regenerate(oauth_authorization_id) ⇒ Object
Regenerate OAuth tokens.
Constructor Details
#initialize(client) ⇒ OauthAuthorization
Returns a new instance of OauthAuthorization.
2138 2139 2140 |
# File 'lib/platform-api/client.rb', line 2138 def initialize(client) @client = client end |
Instance Method Details
#create(body = {}) ⇒ Object
Create a new OAuth authorization.
2145 2146 2147 |
# File 'lib/platform-api/client.rb', line 2145 def create(body = {}) @client..create(body) end |
#delete(oauth_authorization_id) ⇒ Object
Delete OAuth authorization.
2152 2153 2154 |
# File 'lib/platform-api/client.rb', line 2152 def delete() @client..delete() end |
#info(oauth_authorization_id) ⇒ Object
Info for an OAuth authorization.
2159 2160 2161 |
# File 'lib/platform-api/client.rb', line 2159 def info() @client..info() end |
#list ⇒ Object
List OAuth authorizations.
2164 2165 2166 |
# File 'lib/platform-api/client.rb', line 2164 def list() @client..list() end |
#regenerate(oauth_authorization_id) ⇒ Object
Regenerate OAuth tokens. This endpoint is only available to direct authorizations or privileged OAuth clients.
2171 2172 2173 |
# File 'lib/platform-api/client.rb', line 2171 def regenerate() @client..regenerate() end |