Hello! I am creating an Azure Search resource using Pulumi/Python. I was able to create the Search resource itself, but I am wondering if it is possible to also create indexes for my Search service via Pulumi? I do not see an API to do so. Thank you!
Pulumi AI recommended the following:
search_index = azure_native.search.Index("searchIndex",
resource_group_name=resource_group.name,
search_service_name=search_service.name,
fields=index_fields,
but I just cannot find Index under search module.