AllowedKeyTypeArgs

data class AllowedKeyTypeArgs(val ellipticCurve: Output<EcKeyTypeArgs>? = null, val rsa: Output<RsaKeyTypeArgs>? = null) : ConvertibleToJava<AllowedKeyTypeArgs>

Describes a "type" of key that may be used in a Certificate issued from a CaPool. Note that a single AllowedKeyType may refer to either a fully-qualified key algorithm, such as RSA 4096, or a family of key algorithms, such as any RSA key.

Constructors

Link copied to clipboard
fun AllowedKeyTypeArgs(ellipticCurve: Output<EcKeyTypeArgs>? = null, rsa: Output<RsaKeyTypeArgs>? = null)

Functions

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

Properties

Link copied to clipboard
val ellipticCurve: Output<EcKeyTypeArgs>? = null

Represents an allowed Elliptic Curve key type.

Link copied to clipboard
val rsa: Output<RsaKeyTypeArgs>? = null

Represents an allowed RSA key type.