Warning: file_get_contents(/data/phpspider/zhask/data//catemap/7/neo4j/3.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Azure API管理器“;每次订阅的使用配额”;政策_Azure_Api Manager - Fatal编程技术网

Azure API管理器“;每次订阅的使用配额”;政策

Azure API管理器“;每次订阅的使用配额”;政策,azure,api-manager,Azure,Api Manager,策略语法如下所示- <quota calls="number" bandwidth="kilobytes" renewal-period="seconds"> <api name="API name" id="API id" calls="number" renewal-period="seconds" /> <operation name="operation name" id="operation id" calls="numbe

策略语法如下所示-

<quota calls="number" bandwidth="kilobytes" renewal-period="seconds">  
    <api name="API name" id="API id" calls="number" renewal-period="seconds" />  
        <operation name="operation name" id="operation id" calls="number" renewal-period="seconds" />  
    </api>  
</quota>  

我有一个关于续期的具体问题。根据文件,它是

配额重置后的时间段(以秒为单位)


假设我想每天重置配额。我将续订期限的值设置为=
(60*60*24=86400)
。这个限制什么时候生效?是否会在保单生效后24小时内重置?因此,如果我想在午夜重置配额,我必须确保该政策在午夜生效

达到配额限制后,续订开始倒计时。因此,在这种情况下,如果您在2018年9月11日13:00时达到配额,则您只能在2018年9月12日13:00时再次申请

问候