Struct assemblyline_models::datastore::submission::SubmissionParams
source · pub struct SubmissionParams {Show 24 fields
pub classification: ClassificationString,
pub deep_scan: bool,
pub description: Option<String>,
pub generate_alert: bool,
pub groups: Vec<String>,
pub ignore_cache: bool,
pub ignore_dynamic_recursion_prevention: bool,
pub ignore_filtering: bool,
pub ignore_size: bool,
pub never_drop: bool,
pub malicious: bool,
pub max_extracted: u32,
pub max_supplementary: u32,
pub priority: u16,
pub profile: bool,
pub quota_item: bool,
pub services: ServiceSelection,
pub service_spec: HashMap<String, JsonMap>,
pub submitter: String,
pub ttl: u32,
pub submission_type: String,
pub initial_data: Option<String>,
pub auto_archive: bool,
pub delete_after_archive: bool,
}
Expand description
Submission Parameters
Fields§
§classification: ClassificationString
classification of the submission
deep_scan: bool
Should a deep scan be performed?
description: Option<String>
Description of the submission
generate_alert: bool
Should this submission generate an alert?
groups: Vec<String>
List of groups related to this scan
ignore_cache: bool
Ignore the cached service results?
ignore_dynamic_recursion_prevention: bool
Should we ignore dynamic recursion prevention?
ignore_filtering: bool
Should we ignore filtering services?
ignore_size: bool
Ignore the file size limits?
never_drop: bool
Exempt from being dropped by ingester?
malicious: bool
Is the file submitted already known to be malicious?
max_extracted: u32
Max number of extracted files
max_supplementary: u32
Max number of supplementary files
priority: u16
Priority of the scan
profile: bool
Should the submission do extra profiling?
quota_item: bool
Does this submission count against quota?
services: ServiceSelection
Service selection
service_spec: HashMap<String, JsonMap>
Service-specific parameters
submitter: String
User who submitted the file
ttl: u32
Time, in days, to live for this submission
submission_type: String
Type of submission
initial_data: Option<String>
Initialization for temporary submission data
auto_archive: bool
Does the submission automatically goes into the archive when completed?
delete_after_archive: bool
When the submission is archived, should we delete it from hot storage right away?
Trait Implementations§
source§impl Clone for SubmissionParams
impl Clone for SubmissionParams
source§fn clone(&self) -> SubmissionParams
fn clone(&self) -> SubmissionParams
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more