Class: PlatformAPI::SniEndpoint

Inherits:
Object
  • Object
show all
Defined in:
lib/platform-api/client.rb

Overview

SNI Endpoint is a public address serving a custom SSL cert for HTTPS traffic, using the SNI TLS extension, to a Heroku app.

Instance Method Summary collapse

Constructor Details

#initialize(client) ⇒ SniEndpoint

Returns a new instance of SniEndpoint.



2844
2845
2846
# File 'lib/platform-api/client.rb', line 2844

def initialize(client)
  @client = client
end

Instance Method Details

#create(app_id_or_app_name, body = {}) ⇒ Object

Create a new SNI endpoint.

Parameters:

  • app_id_or_app_name:

    unique identifier of app or unique name of app

  • body:

    the object to pass as the request payload



2852
2853
2854
# File 'lib/platform-api/client.rb', line 2852

def create(app_id_or_app_name, body = {})
  @client.sni_endpoint.create(app_id_or_app_name, body)
end

#delete(app_id_or_app_name, sni_endpoint_id_or_sni_endpoint_name) ⇒ Object

Delete existing SNI endpoint.

Parameters:

  • app_id_or_app_name:

    unique identifier of app or unique name of app

  • sni_endpoint_id_or_sni_endpoint_name:

    unique identifier of this SNI endpoint or unique name for SNI endpoint



2860
2861
2862
# File 'lib/platform-api/client.rb', line 2860

def delete(app_id_or_app_name, sni_endpoint_id_or_sni_endpoint_name)
  @client.sni_endpoint.delete(app_id_or_app_name, sni_endpoint_id_or_sni_endpoint_name)
end

#info(app_id_or_app_name, sni_endpoint_id_or_sni_endpoint_name) ⇒ Object

Info for existing SNI endpoint.

Parameters:

  • app_id_or_app_name:

    unique identifier of app or unique name of app

  • sni_endpoint_id_or_sni_endpoint_name:

    unique identifier of this SNI endpoint or unique name for SNI endpoint



2868
2869
2870
# File 'lib/platform-api/client.rb', line 2868

def info(app_id_or_app_name, sni_endpoint_id_or_sni_endpoint_name)
  @client.sni_endpoint.info(app_id_or_app_name, sni_endpoint_id_or_sni_endpoint_name)
end

#list(app_id_or_app_name) ⇒ Object

List existing SNI endpoints.

Parameters:

  • app_id_or_app_name:

    unique identifier of app or unique name of app



2875
2876
2877
# File 'lib/platform-api/client.rb', line 2875

def list(app_id_or_app_name)
  @client.sni_endpoint.list(app_id_or_app_name)
end

#update(app_id_or_app_name, sni_endpoint_id_or_sni_endpoint_name, body = {}) ⇒ Object

Update an existing SNI endpoint.

Parameters:

  • app_id_or_app_name:

    unique identifier of app or unique name of app

  • sni_endpoint_id_or_sni_endpoint_name:

    unique identifier of this SNI endpoint or unique name for SNI endpoint

  • body:

    the object to pass as the request payload



2884
2885
2886
# File 'lib/platform-api/client.rb', line 2884

def update(app_id_or_app_name, sni_endpoint_id_or_sni_endpoint_name, body = {})
  @client.sni_endpoint.update(app_id_or_app_name, sni_endpoint_id_or_sni_endpoint_name, body)
end