Method: PlatformAPI::Domain#update

Defined in:
lib/platform-api/client.rb

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

Associate an SNI endpoint

Parameters:

  • app_id_or_app_name:

    unique identifier of app or unique name of app

  • domain_id_or_domain_hostname:

    unique identifier of this domain or full hostname

  • body:

    the object to pass as the request payload



1683
1684
1685
# File 'lib/platform-api/client.rb', line 1683

def update(app_id_or_app_name, domain_id_or_domain_hostname, body = {})
  @client.domain.update(app_id_or_app_name, domain_id_or_domain_hostname, body)
end