rest-api-spec.test.indices.get_mapping.30_missing_index.yml Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of rest-api-spec Show documentation
Show all versions of rest-api-spec Show documentation
OpenSearch subproject :rest-api-spec
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