Package version:

Interface GetConfigurationSettingOptions

Options for getting a ConfigurationSetting.

interface GetConfigurationSettingOptions {
    acceptDateTime?: any;
    fields?: (
        | "value"
        | "contentType"
        | "tags"
        | "isReadOnly"
        | "lastModified"
        | (keyof ConfigurationSettingId))[];
    onlyIfChanged?: boolean;
}

Hierarchy (view full)

Properties

acceptDateTime?: any

Requests the server to respond with the state of the resource at the specified time.

fields?: (
    | "value"
    | "contentType"
    | "tags"
    | "isReadOnly"
    | "lastModified"
    | (keyof ConfigurationSettingId))[]

Which fields to return for each ConfigurationSetting

onlyIfChanged?: boolean

Used to perform an operation only if the targeted resource's etag does not match the value provided.