Class: PlatformAPI::OrganizationApp
- Inherits:
-
Object
- Object
- PlatformAPI::OrganizationApp
- Defined in:
- lib/platform-api/client.rb
Overview
An organization app encapsulates the organization specific functionality of Heroku apps.
Instance Method Summary collapse
-
#create(body = {}) ⇒ Object
Create a new app in the specified organization, in the default organization if unspecified, or in personal account, if default organization is not set.
-
#info(app_name) ⇒ Object
Info for an organization app.
-
#initialize(client) ⇒ OrganizationApp
constructor
A new instance of OrganizationApp.
-
#list ⇒ Object
List apps in the default organization, or in personal account, if default organization is not set.
-
#list_for_organization(organization_name) ⇒ Object
List organization apps.
-
#transfer_to_account(app_name, body = {}) ⇒ Object
Transfer an existing organization app to another Heroku account.
-
#transfer_to_organization(app_name, body = {}) ⇒ Object
Transfer an existing organization app to another organization.
-
#update_locked(app_name, body = {}) ⇒ Object
Lock or unlock an organization app.
Constructor Details
#initialize(client) ⇒ OrganizationApp
Returns a new instance of OrganizationApp.
1624 1625 1626 |
# File 'lib/platform-api/client.rb', line 1624 def initialize(client) @client = client end |
Instance Method Details
#create(body = {}) ⇒ Object
Create a new app in the specified organization, in the default organization if unspecified, or in personal account, if default organization is not set.
1631 1632 1633 |
# File 'lib/platform-api/client.rb', line 1631 def create(body = {}) @client.organization_app.create(body) end |
#info(app_name) ⇒ Object
Info for an organization app.
1650 1651 1652 |
# File 'lib/platform-api/client.rb', line 1650 def info(app_name) @client.organization_app.info(app_name) end |
#list ⇒ Object
List apps in the default organization, or in personal account, if default organization is not set.
1636 1637 1638 |
# File 'lib/platform-api/client.rb', line 1636 def list() @client.organization_app.list() end |
#list_for_organization(organization_name) ⇒ Object
List organization apps.
1643 1644 1645 |
# File 'lib/platform-api/client.rb', line 1643 def list_for_organization(organization_name) @client.organization_app.list_for_organization(organization_name) end |
#transfer_to_account(app_name, body = {}) ⇒ Object
Transfer an existing organization app to another Heroku account.
1666 1667 1668 |
# File 'lib/platform-api/client.rb', line 1666 def transfer_to_account(app_name, body = {}) @client.organization_app.transfer_to_account(app_name, body) end |
#transfer_to_organization(app_name, body = {}) ⇒ Object
Transfer an existing organization app to another organization.
1674 1675 1676 |
# File 'lib/platform-api/client.rb', line 1674 def transfer_to_organization(app_name, body = {}) @client.organization_app.transfer_to_organization(app_name, body) end |
#update_locked(app_name, body = {}) ⇒ Object
Lock or unlock an organization app.
1658 1659 1660 |
# File 'lib/platform-api/client.rb', line 1658 def update_locked(app_name, body = {}) @client.organization_app.update_locked(app_name, body) end |