@@ -96,7 +96,9 @@ def create(
9696
9797 extensions: List of browser extensions to load into the session. Provide each by id or name.
9898
99- fill_rate_per_minute: Percentage of the pool to fill per minute. Defaults to 10%.
99+ fill_rate_per_minute: Percentage of the pool to fill per minute. Defaults to 10. The cap is 25 for
100+ most organizations but can be raised per-organization, so only the lower bound
101+ is enforced here.
100102
101103 headless: If true, launches the browser using a headless image. Defaults to false.
102104
@@ -122,7 +124,7 @@ def create(
122124 mechanisms.
123125
124126 timeout_seconds: Default idle timeout in seconds for browsers acquired from this pool before they
125- are destroyed. Defaults to 600 seconds if not specified
127+ are destroyed. Defaults to 600 seconds. Minimum 10, maximum 259200 (72 hours).
126128
127129 viewport: Initial browser window size in pixels with optional refresh rate. If omitted,
128130 image defaults apply (1920x1080@25). For GPU images, the default is
@@ -243,7 +245,9 @@ def update(
243245
244246 extensions: List of browser extensions to load into the session. Provide each by id or name.
245247
246- fill_rate_per_minute: Percentage of the pool to fill per minute. Defaults to 10%.
248+ fill_rate_per_minute: Percentage of the pool to fill per minute. Defaults to 10. The cap is 25 for
249+ most organizations but can be raised per-organization, so only the lower bound
250+ is enforced here.
247251
248252 headless: If true, launches the browser using a headless image. Defaults to false.
249253
@@ -273,7 +277,7 @@ def update(
273277 mechanisms.
274278
275279 timeout_seconds: Default idle timeout in seconds for browsers acquired from this pool before they
276- are destroyed. Defaults to 600 seconds if not specified
280+ are destroyed. Defaults to 600 seconds. Minimum 10, maximum 259200 (72 hours).
277281
278282 viewport: Initial browser window size in pixels with optional refresh rate. If omitted,
279283 image defaults apply (1920x1080@25). For GPU images, the default is
@@ -621,7 +625,9 @@ async def create(
621625
622626 extensions: List of browser extensions to load into the session. Provide each by id or name.
623627
624- fill_rate_per_minute: Percentage of the pool to fill per minute. Defaults to 10%.
628+ fill_rate_per_minute: Percentage of the pool to fill per minute. Defaults to 10. The cap is 25 for
629+ most organizations but can be raised per-organization, so only the lower bound
630+ is enforced here.
625631
626632 headless: If true, launches the browser using a headless image. Defaults to false.
627633
@@ -647,7 +653,7 @@ async def create(
647653 mechanisms.
648654
649655 timeout_seconds: Default idle timeout in seconds for browsers acquired from this pool before they
650- are destroyed. Defaults to 600 seconds if not specified
656+ are destroyed. Defaults to 600 seconds. Minimum 10, maximum 259200 (72 hours).
651657
652658 viewport: Initial browser window size in pixels with optional refresh rate. If omitted,
653659 image defaults apply (1920x1080@25). For GPU images, the default is
@@ -768,7 +774,9 @@ async def update(
768774
769775 extensions: List of browser extensions to load into the session. Provide each by id or name.
770776
771- fill_rate_per_minute: Percentage of the pool to fill per minute. Defaults to 10%.
777+ fill_rate_per_minute: Percentage of the pool to fill per minute. Defaults to 10. The cap is 25 for
778+ most organizations but can be raised per-organization, so only the lower bound
779+ is enforced here.
772780
773781 headless: If true, launches the browser using a headless image. Defaults to false.
774782
@@ -798,7 +806,7 @@ async def update(
798806 mechanisms.
799807
800808 timeout_seconds: Default idle timeout in seconds for browsers acquired from this pool before they
801- are destroyed. Defaults to 600 seconds if not specified
809+ are destroyed. Defaults to 600 seconds. Minimum 10, maximum 259200 (72 hours).
802810
803811 viewport: Initial browser window size in pixels with optional refresh rate. If omitted,
804812 image defaults apply (1920x1080@25). For GPU images, the default is
0 commit comments