KeyAttributesArgs

data class KeyAttributesArgs(val enabled: Output<Boolean>? = null, val expires: Output<Double>? = null, val exportable: Output<Boolean>? = null, val notBefore: Output<Double>? = null) : ConvertibleToJava<KeyAttributesArgs>

The object attributes managed by the Azure Key Vault service.

Constructors

Link copied to clipboard
constructor(enabled: Output<Boolean>? = null, expires: Output<Double>? = null, exportable: Output<Boolean>? = null, notBefore: Output<Double>? = null)

Properties

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

Determines whether or not the object is enabled.

Link copied to clipboard
val expires: Output<Double>? = null

Expiry date in seconds since 1970-01-01T00:00:00Z.

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

Indicates if the private key can be exported.

Link copied to clipboard
val notBefore: Output<Double>? = null

Not before date in seconds since 1970-01-01T00:00:00Z.

Functions

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