Implementing API Management
- You find the following code snippet of an APIM policy:
<policies> <inbound> <rate-limit-by-key calls="7" renewal-period="60" increment-condition="@(context.Response.StatusCode == 200)" counter-key="@(context.Request.IpAddress)" remaining-calls-variable-name="remainingCallsPerIP"/> </inbound> </policies>
What is the result of applying the preceding statement?
- Any calls from any customer with any IP address will be accepted at a rate of seven calls...