SoftLayer.SSL

SSL Manager/helpers

copyright:
  1. 2013, SoftLayer Technologies, Inc. All rights reserved.
license:

BSD, see LICENSE for more details.

class SoftLayer.managers.ssl.SSLManager(client)[source]

Manages SSL certificates.

add_certificate(certificate)[source]

Creates a new certificate.

Parameters:certificate – # TODO: is this a dict?
edit_certificate(certificate)[source]

Updates a certificate with the included options. The provided dict must include an ‘id’ key and value corresponding to the certificate ID that should be updated.

Parameters:certificate (dict) – the certificate to update.
get_certificate(id)[source]

Gets a certificate with the ID specified.

Parameters:id (integer) – the certificate ID to retrieve
list_certs(method='all')[source]

List all certificates.

Parameters:method – # TODO: explain this param
remove_certificate(id)[source]

Removes a certificate.

Parameters:id (integer) – a certificate ID to remove

Previous topic

SoftLayer.metadata

Next topic

Command-line Interface

This Page