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

rest-api-spec.test.indices.get_mapping.30_missing_index.yml Maven / Gradle / Ivy

The newest version!
---
"Raise 404 when index doesn't exist":
  - do:
      catch: missing
      indices.get_mapping:
        index: test_index

---
"Index missing, no indexes":
  - do:
      catch: missing
      indices.get_mapping:
        index: test_index

---
"Index missing, ignore_unavailable=true":
  - do:
      indices.get_mapping:
        index: test_index
        ignore_unavailable: true

  - match: { '':  {} }

---
"Index missing, ignore_unavailable=true, allow_no_indices=false":
  - do:
      catch: missing
      indices.get_mapping:
        index: test_index
        ignore_unavailable: true
        allow_no_indices: false




© 2015 - 2024 Weber Informatics LLC | Privacy Policy