1111 * @property string|null $description
1212 * @property array|null $features
1313 * @property string $docker_image -- deprecated, use $docker_images
14- * @property string $update_url
1514 * @property array<string, string> $docker_images
15+ * @property string $update_url
16+ * @property bool $force_outgoing_ip
1617 * @property array|null $file_denylist
1718 * @property string|null $config_files
1819 * @property string|null $config_startup
@@ -84,6 +85,7 @@ class Egg extends Model
8485 'description ' ,
8586 'features ' ,
8687 'docker_images ' ,
88+ 'force_outgoing_ip ' ,
8789 'file_denylist ' ,
8890 'config_files ' ,
8991 'config_startup ' ,
@@ -107,6 +109,7 @@ class Egg extends Model
107109 'nest_id ' => 'integer ' ,
108110 'config_from ' => 'integer ' ,
109111 'script_is_privileged ' => 'boolean ' ,
112+ 'force_outgoing_ip ' => 'boolean ' ,
110113 'copy_script_from ' => 'integer ' ,
111114 'features ' => 'array ' ,
112115 'docker_images ' => 'array ' ,
@@ -134,6 +137,7 @@ class Egg extends Model
134137 'config_logs ' => 'required_without:config_from|nullable|json ' ,
135138 'config_files ' => 'required_without:config_from|nullable|json ' ,
136139 'update_url ' => 'sometimes|nullable|string ' ,
140+ 'force_outgoing_ip ' => 'sometimes|boolean ' ,
137141 ];
138142
139143 /**
0 commit comments