CertArgs

data class CertArgs(val certData: Output<String>? = null, val certNeeded: Output<Boolean>? = null, val certProvided: Output<Boolean>? = null, val secretStore: Output<Either<String, SecretStoreType>>? = null) : ConvertibleToJava<CertArgs>

WebApplication certificate.

Constructors

Link copied to clipboard
constructor(certData: Output<String>? = null, certNeeded: Output<Boolean>? = null, certProvided: Output<Boolean>? = null, secretStore: Output<Either<String, SecretStoreType>>? = null)

Properties

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

Gets or sets the Certificate data.

Link copied to clipboard
val certNeeded: Output<Boolean>? = null

Gets or sets a value indicating whether certificate is needed or not.

Link copied to clipboard
val certProvided: Output<Boolean>? = null

Gets or sets a value indicating whether certificate is provided or not.

Link copied to clipboard
val secretStore: Output<Either<String, SecretStoreType>>? = null

Gets or sets the type of secret store for the certificate.

Functions

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