| Name |
Type |
Description |
Notes |
| enabled |
bool |
|
[optional] [default to False] |
| command_line_args |
str |
The command line parameters to pass to the dynamic execution sandbox. Requires `sandbox` to be True. |
[optional] [default to ''] |
| start_method |
SandboxStartMethod |
|
[optional] |
| timeout |
SandboxTimeout |
Maximum execution time for the sandbox run, in seconds. Allowed values: 120 (2m), 180 (3m), 300 (5m), 600 (10m). |
[optional] |
| archive_sha_256_hash |
str |
|
[optional] |
| archive_entry_path |
str |
|
[optional] |
| archive_password |
str |
|
[optional] |
from revengai.models.sandbox_options import SandboxOptions
# TODO update the JSON string below
json = "{}"
# create an instance of SandboxOptions from a JSON string
sandbox_options_instance = SandboxOptions.from_json(json)
# print the JSON string representation of the object
print(SandboxOptions.to_json())
# convert the object into a dict
sandbox_options_dict = sandbox_options_instance.to_dict()
# create an instance of SandboxOptions from a dict
sandbox_options_from_dict = SandboxOptions.from_dict(sandbox_options_dict)
[Back to Model list] [Back to API list] [Back to README]