GetSecretResult

data class GetSecretResult(val data: Map<String, String>, val dataJson: String, val id: String, val leaseDuration: Int, val leaseId: String, val leaseRenewable: Boolean, val leaseStartTime: String, val namespace: String? = null, val path: String, val version: Int? = null, val withLeaseStartTime: Boolean? = null)

A collection of values returned by getSecret.

Constructors

Link copied to clipboard
constructor(data: Map<String, String>, dataJson: String, id: String, leaseDuration: Int, leaseId: String, leaseRenewable: Boolean, leaseStartTime: String, namespace: String? = null, path: String, version: Int? = null, withLeaseStartTime: Boolean? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

A mapping whose keys are the top-level data keys returned from Vault and whose values are the corresponding values. This map can only represent string data, so any non-string values returned from Vault are serialized as JSON.

Link copied to clipboard

A string containing the full data payload retrieved from Vault, serialized in JSON format.

Link copied to clipboard
val id: String

The provider-assigned unique ID for this managed resource.

Link copied to clipboard

The duration of the secret lease, in seconds relative to the time the data was requested. Once this time has passed any plan generated with this data may fail to apply.

Link copied to clipboard

The lease identifier assigned by Vault, if any.

Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
val namespace: String? = null
Link copied to clipboard
Link copied to clipboard
val version: Int? = null
Link copied to clipboard