|
1 | 1 | use crate::clients::collections_mgmt_client::CollectionsMgmtClient;
|
2 | 2 | use crate::error;
|
| 3 | +pub use crate::management::collections::collection_settings::{ |
| 4 | + CreateCollectionSettings, UpdateCollectionSettings, |
| 5 | +}; |
3 | 6 | use crate::options::collection_mgmt_options::*;
|
4 | 7 | use crate::results::collections_mgmt_results::ScopeSpec;
|
5 | 8 | use std::sync::Arc;
|
6 |
| -use std::time::Duration; |
7 |
| - |
8 |
| -#[derive(Debug, Copy, Clone, Ord, PartialOrd, Eq, PartialEq)] |
9 |
| -pub enum MaxExpiryValue { |
10 |
| - Never, |
11 |
| - InheritFromBucket, |
12 |
| - Seconds(Duration), |
13 |
| -} |
14 |
| - |
15 |
| -impl From<MaxExpiryValue> for i32 { |
16 |
| - fn from(value: MaxExpiryValue) -> Self { |
17 |
| - match value { |
18 |
| - MaxExpiryValue::Never => 0, |
19 |
| - MaxExpiryValue::InheritFromBucket => -1, |
20 |
| - MaxExpiryValue::Seconds(duration) => duration.as_secs() as i32, |
21 |
| - } |
22 |
| - } |
23 |
| -} |
24 |
| - |
25 |
| -impl From<i32> for MaxExpiryValue { |
26 |
| - fn from(value: i32) -> Self { |
27 |
| - match value { |
28 |
| - 0 => MaxExpiryValue::Never, |
29 |
| - -1 => MaxExpiryValue::InheritFromBucket, |
30 |
| - _ => MaxExpiryValue::Seconds(Duration::from_secs(value as u64)), |
31 |
| - } |
32 |
| - } |
33 |
| -} |
34 |
| - |
35 |
| -#[derive(Default, Debug, Clone)] |
36 |
| -#[non_exhaustive] |
37 |
| -pub struct CreateCollectionSettings { |
38 |
| - pub max_expiry: Option<MaxExpiryValue>, |
39 |
| - pub history: Option<bool>, |
40 |
| -} |
41 |
| - |
42 |
| -impl CreateCollectionSettings { |
43 |
| - pub fn new() -> Self { |
44 |
| - Default::default() |
45 |
| - } |
46 |
| - |
47 |
| - pub fn max_expiry(mut self, max_expiry: MaxExpiryValue) -> Self { |
48 |
| - self.max_expiry = Some(max_expiry); |
49 |
| - self |
50 |
| - } |
51 |
| - |
52 |
| - pub fn history(mut self, history: bool) -> Self { |
53 |
| - self.history = Some(history); |
54 |
| - self |
55 |
| - } |
56 |
| -} |
57 |
| - |
58 |
| -#[derive(Default, Debug, Clone)] |
59 |
| -#[non_exhaustive] |
60 |
| -pub struct UpdateCollectionSettings { |
61 |
| - pub max_expiry: Option<MaxExpiryValue>, |
62 |
| - pub history: Option<bool>, |
63 |
| -} |
64 |
| - |
65 |
| -impl UpdateCollectionSettings { |
66 |
| - pub fn new() -> Self { |
67 |
| - Default::default() |
68 |
| - } |
69 |
| - |
70 |
| - pub fn max_expiry(mut self, max_expiry: MaxExpiryValue) -> Self { |
71 |
| - self.max_expiry = Some(max_expiry); |
72 |
| - self |
73 |
| - } |
74 |
| - |
75 |
| - pub fn history(mut self, history: bool) -> Self { |
76 |
| - self.history = Some(history); |
77 |
| - self |
78 |
| - } |
79 |
| -} |
80 | 9 |
|
81 | 10 | #[derive(Clone)]
|
82 | 11 | pub struct CollectionManager {
|
|
0 commit comments