"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.settingsToDisplay = exports.readOnlySettings = void 0; /* * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one * or more contributor license agreements. Licensed under the Elastic License * 2.0; you may not use this file except in compliance with the Elastic License * 2.0. */ const readOnlySettings = ['index.creation_date', 'index.number_of_shards', 'index.provided_name', 'index.uuid', 'index.version.created', 'index.compound_format', 'index.data_path', 'index.format', 'index.number_of_routing_shards', 'index.sort.field', 'index.sort.missing', 'index.sort.mode', 'index.sort.order', 'index.routing_partition_size', 'index.store.type']; exports.readOnlySettings = readOnlySettings; const settingsToDisplay = ['index.number_of_replicas', 'index.blocks.read_only_allow_delete', 'index.codec', 'index.priority', 'index.query.default_field', 'index.refresh_interval', 'index.write.wait_for_active_shards']; exports.settingsToDisplay = settingsToDisplay;