"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.defaultRolloverAction = exports.defaultPolicy = exports.defaultIndexPriority = 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 defaultIndexPriority = { hot: '100', warm: '50', cold: '0', frozen: '0' }; exports.defaultIndexPriority = defaultIndexPriority; const defaultRolloverAction = { max_age: '30d', max_primary_shard_size: '50gb' }; exports.defaultRolloverAction = defaultRolloverAction; const defaultPolicy = { name: '', phases: { hot: { actions: { rollover: defaultRolloverAction } } } }; exports.defaultPolicy = defaultPolicy;