I know how to get an alias if any given an index name in ElasticSearch:
es.indices.get_alias(indexname)
Is there a way to go the other way around? Something like es.indices.get_index(aliasname)? I implemented a workaround using the es.indices.get_alias for now but I am just curious.