podman_rest_client/v5/params/secret_list.rs
1#[derive(Default, Debug)]
2pub struct SecretList<'a> {
3 /// JSON encoded value of the filters (a `map[string][]string`) to process on the secrets list. Currently available filters:
4 /// - `name=[name]` Matches secrets name (accepts regex).
5 /// - `id=[id]` Matches for full or partial ID.
6 pub filters: Option<&'a str>,
7}