1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25

mod lease;
pub use self::lease::{
    Lease,
    CreateNamespacedLeaseOptional, CreateNamespacedLeaseResponse,
    DeleteCollectionNamespacedLeaseOptional, DeleteCollectionNamespacedLeaseResponse,
    DeleteNamespacedLeaseOptional, DeleteNamespacedLeaseResponse,
    ListLeaseForAllNamespacesOptional, ListLeaseForAllNamespacesResponse,
    ListNamespacedLeaseOptional, ListNamespacedLeaseResponse,
    PatchNamespacedLeaseOptional, PatchNamespacedLeaseResponse,
    ReadNamespacedLeaseOptional, ReadNamespacedLeaseResponse,
    ReplaceNamespacedLeaseOptional, ReplaceNamespacedLeaseResponse,
    WatchLeaseForAllNamespacesOptional, WatchLeaseForAllNamespacesResponse,
    WatchNamespacedLeaseOptional, WatchNamespacedLeaseResponse,
};

mod lease_list;
pub use self::lease_list::{
    LeaseList,
};

mod lease_spec;
pub use self::lease_spec::{
    LeaseSpec,
};