@@ -213,7 +213,9 @@ export namespace BrowserPool {
213213 extensions ?: Array < Shared . BrowserExtension > ;
214214
215215 /**
216- * Percentage of the pool to fill per minute. Defaults to 10%.
216+ * Percentage of the pool to fill per minute. Defaults to 10. The cap is 25 for
217+ * most organizations but can be raised per-organization, so only the lower bound
218+ * is enforced here.
217219 */
218220 fill_rate_per_minute ?: number ;
219221
@@ -263,7 +265,7 @@ export namespace BrowserPool {
263265
264266 /**
265267 * Default idle timeout in seconds for browsers acquired from this pool before they
266- * are destroyed. Defaults to 600 seconds if not specified
268+ * are destroyed. Defaults to 600 seconds. Minimum 10, maximum 259200 (72 hours).
267269 */
268270 timeout_seconds ?: number ;
269271
@@ -439,7 +441,9 @@ export interface BrowserPoolCreateParams {
439441 extensions ?: Array < Shared . BrowserExtension > ;
440442
441443 /**
442- * Percentage of the pool to fill per minute. Defaults to 10%.
444+ * Percentage of the pool to fill per minute. Defaults to 10. The cap is 25 for
445+ * most organizations but can be raised per-organization, so only the lower bound
446+ * is enforced here.
443447 */
444448 fill_rate_per_minute ?: number ;
445449
@@ -489,7 +493,7 @@ export interface BrowserPoolCreateParams {
489493
490494 /**
491495 * Default idle timeout in seconds for browsers acquired from this pool before they
492- * are destroyed. Defaults to 600 seconds if not specified
496+ * are destroyed. Defaults to 600 seconds. Minimum 10, maximum 259200 (72 hours).
493497 */
494498 timeout_seconds ?: number ;
495499
@@ -531,7 +535,9 @@ export interface BrowserPoolUpdateParams {
531535 extensions ?: Array < Shared . BrowserExtension > ;
532536
533537 /**
534- * Percentage of the pool to fill per minute. Defaults to 10%.
538+ * Percentage of the pool to fill per minute. Defaults to 10. The cap is 25 for
539+ * most organizations but can be raised per-organization, so only the lower bound
540+ * is enforced here.
535541 */
536542 fill_rate_per_minute ?: number ;
537543
@@ -588,7 +594,7 @@ export interface BrowserPoolUpdateParams {
588594
589595 /**
590596 * Default idle timeout in seconds for browsers acquired from this pool before they
591- * are destroyed. Defaults to 600 seconds if not specified
597+ * are destroyed. Defaults to 600 seconds. Minimum 10, maximum 259200 (72 hours).
592598 */
593599 timeout_seconds ?: number ;
594600
0 commit comments