GetConfigurationKeyResult

data class GetConfigurationKeyResult(val configurationStoreId: String, val contentType: String, val etag: String, val id: String, val key: String, val label: String? = null, val locked: Boolean, val tags: Map<String, String>, val type: String, val value: String, val vaultKeyReference: String)

A collection of values returned by getConfigurationKey.

Constructors

Link copied to clipboard
constructor(configurationStoreId: String, contentType: String, etag: String, id: String, key: String, label: String? = null, locked: Boolean, tags: Map<String, String>, type: String, value: String, vaultKeyReference: String)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
Link copied to clipboard

The content type of the App Configuration Key.

Link copied to clipboard

The ETag of the key.

Link copied to clipboard
val id: String

The provider-assigned unique ID for this managed resource.

Link copied to clipboard
val key: String
Link copied to clipboard
val label: String? = null
Link copied to clipboard

Is this App Configuration Key be Locked to prevent changes.

Link copied to clipboard

A mapping of tags assigned to the resource.

Link copied to clipboard

The type of the App Configuration Key. It can either be kv (simple key/value) or vault (where the value is a reference to a Key Vault Secret.

Link copied to clipboard

The value of the App Configuration Key.

Link copied to clipboard

The ID of the vault secret this App Configuration Key refers to, when type is vault.