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 /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, returns deletion candidates without removing anything.
Trait Implementations§
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
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreCreates a shared type from an unshared type.