SslConfigurationArgs

data class SslConfigurationArgs(val cert: Output<String>? = null, val cname: Output<String>? = null, val key: Output<String>? = null, val status: Output<Either<String, Status>>? = null) : ConvertibleToJava<SslConfigurationArgs>

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

Constructors

Link copied to clipboard
constructor(cert: Output<String>? = null, cname: Output<String>? = null, key: Output<String>? = null, status: Output<Either<String, Status>>? = null)

Properties

Link copied to clipboard
val cert: Output<String>? = null

The SSL cert data in PEM format.

Link copied to clipboard
val cname: Output<String>? = null

The CName of the certificate.

Link copied to clipboard
val key: Output<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: Output<Either<String, Status>>? = null

SSL status. Allowed values are Enabled and Disabled.

Functions

Link copied to clipboard
open override fun toJava(): SslConfigurationArgs