All Downloads are FREE. Search and download functionalities are using the official Maven repository.

rest-api-spec.test.indices.get_settings.30_defaults.yml Maven / Gradle / Ivy

There is a newer version: 2.18.0
Show newest version
---
setup:
  - do:
      indices.create:
        body:
          settings:
            index:
              number_of_shards: 1
              number_of_replicas: 1
        index: test-index
---
Test retrieval of default settings:
  - do:
      indices.get_settings:
        flat_settings: true
        index: test-index
  - is_false:
      test-index.settings.index\.refresh_interval
  - do:
      indices.get_settings:
        include_defaults: true
        flat_settings: true
        index: test-index
  - match:
      test-index.defaults.index\.refresh_interval: "1s"




© 2015 - 2024 Weber Informatics LLC | Privacy Policy