interface AvailableClusterSetting {
    defaultValue?: string;
    deprecated: boolean;
    description: string;
    maxValue?: number;
    minValue?: number;
    name: string;
    regex?: string;
    type: AvailableClusterSettingPropertyType;
}

Properties

defaultValue?: string

Default value of the setting.

deprecated: boolean

Defines whether or not the setting is deprecated.

description: string

Description of the setting.

maxValue?: number

Optional maximum value of the setting.

minValue?: number

Optional minimum value of the setting.

name: string

Name of the setting.

regex?: string

Optional validation rule of the setting.

Type of setting.