We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f0d063a commit 86ce9f6Copy full SHA for 86ce9f6
core/services/azblob/src/config.rs
@@ -76,6 +76,10 @@ pub struct AzblobConfig {
76
77
/// The maximum batch operations of Azblob service backend.
78
pub batch_max_operations: Option<usize>,
79
+
80
+ /// Enable soft deletes for this storage account.
81
+ #[serde(default)]
82
+ pub enable_soft_deletes: bool,
83
}
84
85
impl Debug for AzblobConfig {
@@ -84,6 +88,7 @@ impl Debug for AzblobConfig {
88
.field("root", &self.root)
89
.field("container", &self.container)
86
90
.field("endpoint", &self.endpoint)
91
+ .field("enable_soft_deletes", &self.enable_soft_deletes)
87
92
.finish_non_exhaustive()
93
94
0 commit comments