Skip to content

Latest commit

History

History
34 lines (25 loc) · 1.74 KB

File metadata and controls

34 lines (25 loc) · 1.74 KB

TriggerDynamicExecutionInputBody

Properties

NameTypeDescriptionNotes
archive_entry_pathstrRelative path of the entry inside the archive to execute[optional]
archive_passwordstrPassword for an encrypted archive[optional]
archive_sha_256_hashstrSHA-256 of the archive object to send to the sandbox instead of the analysed binary[optional]
command_line_argsstrCommand-line arguments passed to the sample when the sandbox launches it[optional]
start_methodstrHow the sandbox launches the sample. Defaults to the sandbox's standard behaviour when omitted.[optional]
timeoutintMaximum sandbox execution time in seconds[optional] [default to 120]

Example

fromrevengai.models.trigger_dynamic_execution_input_bodyimportTriggerDynamicExecutionInputBody# TODO update the JSON string belowjson="{}"# create an instance of TriggerDynamicExecutionInputBody from a JSON stringtrigger_dynamic_execution_input_body_instance=TriggerDynamicExecutionInputBody.from_json(json)
# print the JSON string representation of the objectprint(TriggerDynamicExecutionInputBody.to_json())
# convert the object into a dicttrigger_dynamic_execution_input_body_dict=trigger_dynamic_execution_input_body_instance.to_dict()
# create an instance of TriggerDynamicExecutionInputBody from a dicttrigger_dynamic_execution_input_body_from_dict=TriggerDynamicExecutionInputBody.from_dict(trigger_dynamic_execution_input_body_dict)

[Back to Model list][Back to API list][Back to README]