Initial commit

This commit is contained in:
2025-03-07 19:22:02 +01:00
commit 4a98255d83
55743 changed files with 5280367 additions and 0 deletions
+20
View File
@@ -0,0 +1,20 @@
import { ResourceStatus } from './resourceStatus';
/**
* Current value and limit information for a rate-limited operation related to a tunnel or
* port.
*/
export interface RateStatus extends ResourceStatus {
/**
* Gets or sets the length of each period, in seconds, over which the rate is
* measured.
*
* For rates that are limited by month (or billing period), this value may represent
* an estimate, since the actual duration may vary by the calendar.
*/
periodSeconds?: number;
/**
* Gets or sets the unix time in seconds when this status will be reset.
*/
resetTime?: number;
}
//# sourceMappingURL=rateStatus.d.ts.map