1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
pub use fluvio_controlplane_metadata::spu::{SpuSpec};
use crate::objects::ListRequest;
use crate::objects::ListResponse;
use crate::objects::Metadata;
use crate::{
AdminSpec, NameFilter,
objects::{ObjectFrom, ObjectTryFrom, WatchResponse, WatchRequest},
};
impl AdminSpec for SpuSpec {
type ListFilter = NameFilter;
type ListType = Metadata<Self>;
type WatchResponseType = Self;
}
ObjectFrom!(WatchRequest, Spu);
ObjectFrom!(WatchResponse, Spu);
ObjectFrom!(ListRequest, Spu);
ObjectFrom!(ListResponse, Spu);
ObjectTryFrom!(WatchResponse, Spu);
ObjectTryFrom!(ListResponse, Spu);