SslConfigurationResponse

data class SslConfigurationResponse(val cert: String? = null, val cname: String? = null, val key: String? = null, val status: String? = null)

SSL configuration. If configured data-plane calls to user services will be exposed over SSL only.

Constructors

Link copied to clipboard
constructor(cert: String? = null, cname: String? = null, key: String? = null, status: String? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val cert: String? = null

The SSL cert data in PEM format.

Link copied to clipboard
val cname: String? = null

The CName of the certificate.

Link copied to clipboard
val key: String? = null

The SSL key data in PEM format. This is not returned in response of GET/PUT on the resource. To see this please call listKeys API.

Link copied to clipboard
val status: String? = null

SSL status. Allowed values are Enabled and Disabled.