RsaKeyTypeArgs

data class RsaKeyTypeArgs(val maxModulusSize: Output<String>? = null, val minModulusSize: Output<String>? = null) : ConvertibleToJava<RsaKeyTypeArgs>

Describes an RSA key that may be used in a Certificate issued from a CaPool.

Constructors

Link copied to clipboard
fun RsaKeyTypeArgs(maxModulusSize: Output<String>? = null, minModulusSize: Output<String>? = null)

Functions

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

Properties

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

Optional. The maximum allowed RSA modulus size (inclusive), in bits. If this is not set, or if set to zero, the service will not enforce an explicit upper bound on RSA modulus sizes.

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

Optional. The minimum allowed RSA modulus size (inclusive), in bits. If this is not set, or if set to zero, the service-level min RSA modulus size will continue to apply.