Class: PlatformAPI::Domain
- Inherits:
-
Object
- Object
- PlatformAPI::Domain
- Defined in:
- lib/platform-api/client.rb
Overview
Domains define what web routes should be routed to an app on Heroku.
Instance Method Summary collapse
-
#create(app_id_or_app_name, body) ⇒ Object
Create a new domain.
-
#delete(app_id_or_app_name, domain_id_or_domain_hostname) ⇒ Object
Delete an existing domain.
-
#info(app_id_or_app_name, domain_id_or_domain_hostname) ⇒ Object
Info for existing domain.
-
#initialize(client) ⇒ Domain
constructor
A new instance of Domain.
-
#list(app_id_or_app_name) ⇒ Object
List existing domains.
Constructor Details
#initialize(client) ⇒ Domain
Returns a new instance of Domain.
832 833 834 |
# File 'lib/platform-api/client.rb', line 832 def initialize(client) @client = client end |
Instance Method Details
#create(app_id_or_app_name, body) ⇒ Object
Create a new domain.
840 841 842 |
# File 'lib/platform-api/client.rb', line 840 def create(app_id_or_app_name, body) @client.domain.create(app_id_or_app_name, body) end |
#delete(app_id_or_app_name, domain_id_or_domain_hostname) ⇒ Object
Delete an existing domain
848 849 850 |
# File 'lib/platform-api/client.rb', line 848 def delete(app_id_or_app_name, domain_id_or_domain_hostname) @client.domain.delete(app_id_or_app_name, domain_id_or_domain_hostname) end |
#info(app_id_or_app_name, domain_id_or_domain_hostname) ⇒ Object
Info for existing domain.
856 857 858 |
# File 'lib/platform-api/client.rb', line 856 def info(app_id_or_app_name, domain_id_or_domain_hostname) @client.domain.info(app_id_or_app_name, domain_id_or_domain_hostname) end |
#list(app_id_or_app_name) ⇒ Object
List existing domains.
863 864 865 |
# File 'lib/platform-api/client.rb', line 863 def list(app_id_or_app_name) @client.domain.list(app_id_or_app_name) end |