Skip to content

Latest commit

History

History
33 lines (24 loc) · 1.46 KB

File metadata and controls

33 lines (24 loc) · 1.46 KB

AnalysisConfig

Properties

NameTypeDescriptionNotes
scrape_third_party_configScrapeThirdPartyConfigSettings to scrape third party sources[optional]
generate_capabilitiesboolA configuration option for generating capabilities of a binary[optional] [default to False]
no_cacheboolWhen enabled, skips using cached data within the processing.[optional] [default to False]
advanced_analysisboolEnables an advanced security analysis.[optional] [default to False]
sandbox_configSandboxOptionsIncluding a sandbox config enables the dynamic execution sandbox[optional]

Example

fromrevengai.models.analysis_configimportAnalysisConfig# TODO update the JSON string belowjson="{}"# create an instance of AnalysisConfig from a JSON stringanalysis_config_instance=AnalysisConfig.from_json(json)
# print the JSON string representation of the objectprint(AnalysisConfig.to_json())
# convert the object into a dictanalysis_config_dict=analysis_config_instance.to_dict()
# create an instance of AnalysisConfig from a dictanalysis_config_from_dict=AnalysisConfig.from_dict(analysis_config_dict)

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