KeyValueProperties interface

All key-value properties.

Properties

contentType

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.

eTag

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

key

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

label

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

lastModified

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

locked

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

tags

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

value

The value of the key-value.

Property Details

contentType

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.

contentType?: string

Property Value

string

eTag

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

eTag?: string

Property Value

string

key

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

key?: string

Property Value

string

label

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

label?: string

Property Value

string

lastModified

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

lastModified?: Date

Property Value

Date

locked

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

locked?: boolean

Property Value

boolean

tags

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

tags?: Record<string, string>

Property Value

Record<string, string>

value

The value of the key-value.

value?: string

Property Value

string