ListConfigurationStoreKeyValueResult

data class ListConfigurationStoreKeyValueResult(val contentType: String, val eTag: String, val key: String, val label: String, val lastModified: String, val locked: Boolean, val tags: Map<String, String>, val value: String)

The result of a request to retrieve a key-value from the specified configuration store.

Constructors

Link copied to clipboard
constructor(contentType: String, eTag: String, key: String, label: String, lastModified: String, locked: Boolean, tags: Map<String, String>, value: String)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

The content type of the key-value's value. Providing a proper content-type can enable transformations of values when they are retrieved by applications.

Link copied to clipboard

An ETag indicating the state of a key-value within a configuration store.

Link copied to clipboard
val key: String

The primary identifier of a key-value. The key is used in unison with the label to uniquely identify a key-value.

Link copied to clipboard

A value used to group key-values. The label is used in unison with the key to uniquely identify a key-value.

Link copied to clipboard

The last time a modifying operation was performed on the given key-value.

Link copied to clipboard

A value indicating whether the key-value is locked. A locked key-value may not be modified until it is unlocked.

Link copied to clipboard

A dictionary of tags that can help identify what a key-value may be applicable for.

Link copied to clipboard

The value of the key-value.