private static int GetCountryRateLimitPriority()

in Azure WAF/Alert - Process Azure FrontDoor Alerts/ProcessAFDAlerts.cs [318:333]


        private static int GetCountryRateLimitPriority(string countryCode)
        {
            return countryCode switch
            {
                "US" => 1,
                "CA" => 2,
                "BR" => 3,
                "IE" => 4,
                "AU" => 5,
                "SG" => 6,
                "JP" => 7,
                "FR" => 8,
                "IN" => 9,
                _ => new Random().Next(10, 1000)
            };
        }