I am using azure SDK for management and I have the following code. I am wondering what are the possible values for IContainerGroup.State
? I am using the code below and so far i can find two values "Running"
and "Succeeded"
I am looking for other possible values which the documentation does not provide.
containerGroup = azure.ContainerGroups.GetByResourceGroup(rgName, aciName);
console.log($"Container State Is: { containerGroup.State }");
thanks!