Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 1.43 KB

File metadata and controls

35 lines (26 loc) · 1.43 KB

ReAnalysisForm

Form Model for receiving the analysis request

Properties

Name Type Description Notes
tags List[str] Tags associated with the analysis [optional] [default to []]
command_line_args str Command line arguments for dynamic execution [optional] [default to '']
priority int Priority of the analysis [optional] [default to 0]
essential bool Only runs essential parts of the analysis, skips tags/sbom/cves etc. [optional] [default to True]
model_name str [optional]
no_cache bool When enabled, skips using cached data within the processing. [optional] [default to False]

Example

from revengai.models.re_analysis_form import ReAnalysisForm

# TODO update the JSON string below
json = "{}"
# create an instance of ReAnalysisForm from a JSON string
re_analysis_form_instance = ReAnalysisForm.from_json(json)
# print the JSON string representation of the object
print(ReAnalysisForm.to_json())

# convert the object into a dict
re_analysis_form_dict = re_analysis_form_instance.to_dict()
# create an instance of ReAnalysisForm from a dict
re_analysis_form_from_dict = ReAnalysisForm.from_dict(re_analysis_form_dict)

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