rest-api-spec.test.indices.delete_alias.10_basic.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!
---
"Basic test for delete alias":
- do:
indices.create:
index: testind
- do:
indices.put_alias:
index: testind
name: testali
body:
routing: "routing value"
- do:
indices.get_alias:
name: testali
- match: {testind.aliases.testali.search_routing: "routing value"}
- match: {testind.aliases.testali.index_routing: "routing value"}
- do:
indices.delete_alias:
index: testind
name: testali
- do:
catch: missing
indices.get_alias:
index: testind
name: testali
- match: { 'status': 404 }
- match: { 'error': 'alias [testali] missing' }
© 2015 - 2025 Weber Informatics LLC | Privacy Policy