Пример #1
0
 public ActionResult Delete([FromBody] string podName)
 {
     if (string.IsNullOrEmpty(podName))
     {
         return(BadRequest("PodName is null or empty"));
     }
     _client.DeleteServicePod(podName);
     return(Ok());
 }