Sha256: 0346756ea2e143e12626b2de9410a42db04517c54ae86c732ebf29c4fae5a8a9

Contents?: true

Size: 548 Bytes

Versions: 14

Compression:

Stored size: 548 Bytes

Contents

# frozen_string_literal: true

module Esse
  class Cluster
    extend Esse::Deprecations::Deprecate

    def index_settings
      settings
    end
    deprecate :index_settings, :settings, 2023, 12

    def index_settings=(value)
      self.settings = value
    end
    deprecate :index_settings=, :settings=, 2023, 12

    def index_mappings
      mappings
    end
    deprecate :index_mappings, :mappings, 2023, 12

    def index_mappings=(value)
      self.mappings = value
    end
    deprecate :index_mappings=, :mappings=, 2023, 12
  end
end

Version data entries

14 entries across 14 versions & 1 rubygems

Version Path
esse-0.4.0.rc4 lib/esse/deprecations/cluster.rb
esse-0.4.0.rc3 lib/esse/deprecations/cluster.rb
esse-0.4.0.rc2 lib/esse/deprecations/cluster.rb
esse-0.4.0.rc1 lib/esse/deprecations/cluster.rb
esse-0.3.5 lib/esse/deprecations/cluster.rb
esse-0.3.4 lib/esse/deprecations/cluster.rb
esse-0.3.3 lib/esse/deprecations/cluster.rb
esse-0.3.2 lib/esse/deprecations/cluster.rb
esse-0.3.1 lib/esse/deprecations/cluster.rb
esse-0.3.0 lib/esse/deprecations/cluster.rb
esse-0.2.6 lib/esse/deprecations/cluster.rb
esse-0.2.5 lib/esse/deprecations/cluster.rb
esse-0.2.4 lib/esse/deprecations/cluster.rb
esse-0.2.3 lib/esse/deprecations/cluster.rb