1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
/// ClusterPatchPatch : A software patch that can be applied to OneFS.

#[allow(unused_imports)]
use serde_json::Value;

#[derive(Debug, Serialize, Deserialize)]
pub struct ClusterPatchPatch {
    /// The path location of the patch file.
    #[serde(rename = "location")]
    pub location: Option<String>,
    /// The id or filename of the patch to install.
    #[serde(rename = "patch")]
    pub patch: String,
}