@@ -130,6 +130,12 @@ export interface NetworkPolicyCreateParameters {
130130 */
131131 allow_mcp_gateway ?: boolean | null ;
132132
133+ /**
134+ * (Optional) If true, allows devbox egress to Runloop's package/image registry
135+ * mirrors. Defaults to false. Implicitly allowed when allow_all is true.
136+ */
137+ allow_runloop_mirrors ?: boolean | null ;
138+
133139 /**
134140 * (Optional) IPv4 CIDR-based allow list with optional port restrictions, additive
135141 * with allowed_hostnames. Example: [{'cidr': '10.12.0.0/16', 'ports': [{'port':
@@ -193,6 +199,12 @@ export interface NetworkPolicyUpdateParameters {
193199 */
194200 allow_mcp_gateway ?: boolean | null ;
195201
202+ /**
203+ * If true, allows devbox egress to Runloop's package/image registry mirrors.
204+ * Implicitly allowed when allow_all is true.
205+ */
206+ allow_runloop_mirrors ?: boolean | null ;
207+
196208 /**
197209 * Updated IPv4 CIDR-based allow list with optional port restrictions, additive
198210 * with allowed_hostnames.
@@ -278,6 +290,12 @@ export namespace NetworkPolicyView {
278290 */
279291 allow_mcp_gateway : boolean ;
280292
293+ /**
294+ * If true, allows devbox egress to Runloop's package/image registry mirrors.
295+ * Implicitly allowed when allow_all is true.
296+ */
297+ allow_runloop_mirrors : boolean ;
298+
281299 /**
282300 * CIDR-based allow list with optional port restrictions, additive with
283301 * allowed_hostnames.
@@ -345,6 +363,12 @@ export interface NetworkPolicyCreateParams {
345363 */
346364 allow_mcp_gateway ?: boolean | null ;
347365
366+ /**
367+ * (Optional) If true, allows devbox egress to Runloop's package/image registry
368+ * mirrors. Defaults to false. Implicitly allowed when allow_all is true.
369+ */
370+ allow_runloop_mirrors ?: boolean | null ;
371+
348372 /**
349373 * (Optional) IPv4 CIDR-based allow list with optional port restrictions, additive
350374 * with allowed_hostnames. Example: [{'cidr': '10.12.0.0/16', 'ports': [{'port':
@@ -385,6 +409,12 @@ export interface NetworkPolicyUpdateParams {
385409 */
386410 allow_mcp_gateway ?: boolean | null ;
387411
412+ /**
413+ * If true, allows devbox egress to Runloop's package/image registry mirrors.
414+ * Implicitly allowed when allow_all is true.
415+ */
416+ allow_runloop_mirrors ?: boolean | null ;
417+
388418 /**
389419 * Updated IPv4 CIDR-based allow list with optional port restrictions, additive
390420 * with allowed_hostnames.
0 commit comments