Cloud elastic account,Reindex docs

I'd recommend also

  1. checking to see if the index already exists before trying to create it

    if (!client.Indices.Exists("honadonz12").Exists)
    {
        // create the index		
    }
    
  2. checking that the index was successfully created, by looking at the createIndexResponse

     var createIndexResponse = client.Indices.Create("honadonz12", c => c
     	.Map<ElasticSearchModel>(mm => mm
     		.AutoMap()
     	)
     	.RequestConfiguration(r => r
     		.DisableDirectStreaming()
     	)
     );
     
     if (!createIndexResponse.IsValid)
     {
     	// do something
     }