Class: PlatformAPI::SSLEndpoint
- Inherits:
-
Object
- Object
- PlatformAPI::SSLEndpoint
- Defined in:
- lib/platform-api/client.rb
Overview
SSL Endpoint is a public address serving custom SSL cert for HTTPS traffic to a Heroku app. Note that an app must have the ssl:endpoint addon installed before it can provision an SSL Endpoint using these APIs.
Instance Method Summary collapse
-
#create(app_id_or_app_name, body) ⇒ Object
Create a new SSL endpoint.
-
#delete(app_id_or_app_name, ssl_endpoint_id_or_ssl_endpoint_name) ⇒ Object
Delete existing SSL endpoint.
-
#info(app_id_or_app_name, ssl_endpoint_id_or_ssl_endpoint_name) ⇒ Object
Info for existing SSL endpoint.
-
#initialize(client) ⇒ SSLEndpoint
constructor
A new instance of SSLEndpoint.
-
#list(app_id_or_app_name) ⇒ Object
List existing SSL endpoints.
-
#update(app_id_or_app_name, ssl_endpoint_id_or_ssl_endpoint_name, body) ⇒ Object
Update an existing SSL endpoint.
Constructor Details
#initialize(client) ⇒ SSLEndpoint
1127 1128 1129 |
# File 'lib/platform-api/client.rb', line 1127 def initialize(client) @client = client end |
Instance Method Details
#create(app_id_or_app_name, body) ⇒ Object
Create a new SSL endpoint.
1135 1136 1137 |
# File 'lib/platform-api/client.rb', line 1135 def create(app_id_or_app_name, body) @client.ssl_endpoint.create(app_id_or_app_name, body) end |
#delete(app_id_or_app_name, ssl_endpoint_id_or_ssl_endpoint_name) ⇒ Object
Delete existing SSL endpoint.
1143 1144 1145 |
# File 'lib/platform-api/client.rb', line 1143 def delete(app_id_or_app_name, ssl_endpoint_id_or_ssl_endpoint_name) @client.ssl_endpoint.delete(app_id_or_app_name, ssl_endpoint_id_or_ssl_endpoint_name) end |
#info(app_id_or_app_name, ssl_endpoint_id_or_ssl_endpoint_name) ⇒ Object
Info for existing SSL endpoint.
1151 1152 1153 |
# File 'lib/platform-api/client.rb', line 1151 def info(app_id_or_app_name, ssl_endpoint_id_or_ssl_endpoint_name) @client.ssl_endpoint.info(app_id_or_app_name, ssl_endpoint_id_or_ssl_endpoint_name) end |
#list(app_id_or_app_name) ⇒ Object
List existing SSL endpoints.
1158 1159 1160 |
# File 'lib/platform-api/client.rb', line 1158 def list(app_id_or_app_name) @client.ssl_endpoint.list(app_id_or_app_name) end |
#update(app_id_or_app_name, ssl_endpoint_id_or_ssl_endpoint_name, body) ⇒ Object
Update an existing SSL endpoint.
1167 1168 1169 |
# File 'lib/platform-api/client.rb', line 1167 def update(app_id_or_app_name, ssl_endpoint_id_or_ssl_endpoint_name, body) @client.ssl_endpoint.update(app_id_or_app_name, ssl_endpoint_id_or_ssl_endpoint_name, body) end |