GetKeyValueResult

data class GetKeyValueResult(val azureApiVersion: String, val contentType: String? = null, val eTag: String, val id: String, val key: String, val label: String, val lastModified: String, val locked: Boolean, val name: String, val tags: Map<String, String>? = null, val type: String, val value: String? = null)

The key-value resource along with all resource properties.

Constructors

Link copied to clipboard
constructor(azureApiVersion: String, contentType: String? = null, eTag: String, id: String, key: String, label: String, lastModified: String, locked: Boolean, name: String, tags: Map<String, String>? = null, type: String, value: String? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

The Azure API version of the resource.

Link copied to clipboard
val contentType: String? = null

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 id: String

The resource ID.

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

The name of the resource.

Link copied to clipboard
val tags: Map<String, String>? = null

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

Link copied to clipboard

The type of the resource.

Link copied to clipboard
val value: String? = null

The value of the key-value.