Skip to content

Latest commit

History

History
37 lines (28 loc) · 1.75 KB

File metadata and controls

37 lines (28 loc) · 1.75 KB

AnalysisCreateRequest

Properties

NameTypeDescriptionNotes
filenamestrThe name of the file
sha_256_hashstrThe sha256 hash of the file
tagsList[Tag]List of tags to assign to an analysis[optional] [default to []]
analysis_scopeAnalysisScopeThe scope of the analysis determines who can access it[optional]
symbolsSymbols[optional]
debug_hashstr[optional]
analysis_configAnalysisConfigThe analysis config enables the configuration of optional analysis stages[optional]
binary_configBinaryConfigThe binary config can override automatically determined values such as ISA, Platform, File Format, etc[optional]
auto_run_agentsAutoRunAgents[optional]

Example

fromrevengai.models.analysis_create_requestimportAnalysisCreateRequest# TODO update the JSON string belowjson="{}"# create an instance of AnalysisCreateRequest from a JSON stringanalysis_create_request_instance=AnalysisCreateRequest.from_json(json)
# print the JSON string representation of the objectprint(AnalysisCreateRequest.to_json())
# convert the object into a dictanalysis_create_request_dict=analysis_create_request_instance.to_dict()
# create an instance of AnalysisCreateRequest from a dictanalysis_create_request_from_dict=AnalysisCreateRequest.from_dict(analysis_create_request_dict)

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