Hello @Tushar Sharma !
Thank you for raising this question!
The recommended way to fetch this data is via azure cli. You can use "az aks show" command together with "--query parameter" and output as tsv. To be handy for you, I prepared the commands for your needs (name, region and availability zone):
az aks show -g resourceGroupName -n clusterName --query "name" -o tsv
az aks show -g resourceGroupName -n clusterName --query "location" -o tsv
az aks show -g resourceGroupName -n clusterName --query "agentPoolProfiles[].availabilityZones" -o tsv
I hope this answers your question.
If the ANSWER is helpful, please click "Accept Answer" and upvote it.
Thank you!