Sha256: 6ec3397058dbc238cea7e8df97f7a7c6e2d5395fbaf7f0327daaf8a003a675bc
Contents?: true
Size: 601 Bytes
Versions: 97
Compression:
Stored size: 601 Bytes
Contents
# Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one # or more contributor license agreements. Licensed under the Elastic License; # you may not use this file except in compliance with the Elastic License. module Elasticsearch module API module Actions # Retrieve the list of index lifecycle management policies def get_ilm_policy(arguments={}) method = HTTP_GET path = Utils.__pathify '_ilm/policy', Utils.__escape(arguments[:name]) params = {} perform_request(method, path, params, nil).body end end end end
Version data entries
97 entries across 97 versions & 2 rubygems