Skip to main content

manta_shared/types/params/
image.rs

1//! Parameters for `GET /images`.
2
3/// Typed parameters for fetching IMS images.
4pub struct GetImagesParams {
5  /// Exact IMS image ID; returns just that image when set.
6  pub id: Option<String>,
7  /// Regex to filter images by name.
8  pub pattern: Option<String>,
9  /// Cap on the number of images returned (most recent first).
10  pub limit: Option<u8>,
11}