isilon 5.0.1

Isilon rest api bindings
Documentation
#[allow(unused_imports)]
use serde_json::Value;

#[derive(Debug, Serialize, Deserialize)]
pub struct AntivirusPolicyExtended {
    /// A description for the policy.
    #[serde(rename = "description")]
    pub description: Option<String>,
    /// Whether the policy is enabled.
    #[serde(rename = "enabled")]
    pub enabled: Option<bool>,
    /// Forces the scan to run regardless of whether the files were recently scanned.
    #[serde(rename = "force_run")]
    pub force_run: Option<bool>,
    #[serde(rename = "impact")]
    pub impact: Option<String>,
    /// The name of the policy.
    #[serde(rename = "name")]
    pub name: Option<String>,
    /// Paths to include in the scan.
    #[serde(rename = "paths")]
    pub paths: Option<Vec<String>>,
    /// The depth to recurse in directories.  The default of -1 gives unlimited recursion.
    #[serde(rename = "recursion_depth")]
    pub recursion_depth: Option<i32>,
    #[serde(rename = "schedule")]
    pub schedule: Option<String>,
    /// A unique identifier for the policy.
    #[serde(rename = "id")]
    pub id: Option<String>,
    /// The epoch time of the last run of this policy.
    #[serde(rename = "last_run")]
    pub last_run: Option<i32>,
}