pub struct DeleteConfigurationsQuery {
pub pattern: Option<String>,
pub since: Option<String>,
pub until: Option<String>,
pub dry_run: bool,
}Expand description
Query parameters for DELETE /api/v1/configurations.
Fields§
§pattern: Option<String>Glob pattern to match configuration names.
since: Option<String>ISO-8601 lower bound — only delete configurations created after this date.
until: Option<String>ISO-8601 upper bound — only delete configurations created before this date.
dry_run: boolWhen true, return deletion candidates without removing anything.
Trait Implementations§
Source§impl Debug for DeleteConfigurationsQuery
impl Debug for DeleteConfigurationsQuery
Source§impl<'de> Deserialize<'de> for DeleteConfigurationsQuery
impl<'de> Deserialize<'de> for DeleteConfigurationsQuery
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl IntoParams for DeleteConfigurationsQuery
impl IntoParams for DeleteConfigurationsQuery
Auto Trait Implementations§
impl Freeze for DeleteConfigurationsQuery
impl RefUnwindSafe for DeleteConfigurationsQuery
impl Send for DeleteConfigurationsQuery
impl Sync for DeleteConfigurationsQuery
impl Unpin for DeleteConfigurationsQuery
impl UnwindSafe for DeleteConfigurationsQuery
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more