Package version:

Interface SetConfigurationSettingResponse

Response from setting a ConfigurationSetting.

interface SetConfigurationSettingResponse {
    _response: any;
    contentType?: string;
    etag?: string;
    isReadOnly: boolean;
    key: string;
    label?: string;
    lastModified?: any;
    syncToken?: string;
    tags?: {
        [propertyName: string]: string;
    };
    value?: string;
}

Hierarchy (view full)

Properties

_response: any

The underlying HTTP response.

contentType?: string

The content type of the setting's value

etag?: string

The etag for this setting

isReadOnly: boolean

Whether or not the setting is read-only

key: string

The key for this setting. Feature flags must be prefixed with .appconfig.featureflag/<feature-flag-name>.

label?: string

The label for this setting. Leaving this undefined means this setting does not have a label.

lastModified?: any

The date when this setting was last modified

syncToken?: string

Enables real-time consistency between requests by providing the returned value in the next request made to the server.

tags?: {
    [propertyName: string]: string;
}

Tags for this key

value?: string

The setting's value