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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
pub struct MetadataClient<T> {
    client: T,
    path: String,
}
impl<T> MetadataClient<T>
where
    T: crate::client::Client,
{
    pub fn new(client: T, parent_path: &str) -> Self {
        Self {
            client,
            path: format!("{}{}", parent_path, "/metadata"),
        }
    }
}
impl<T> MetadataClient<T>
where
    T: crate::client::Client,
{
    #[doc = "Get ceph metadata."]
    pub fn get(&self, params: GetParams) -> Result<GetOutput, T::Error> {
        let path = self.path.to_string();
        self.client.get(&path, &params)
    }
}
impl GetOutput {
    pub fn new(
        mds: MdsGetOutputMds,
        mgr: MgrGetOutputMgr,
        mon: MonGetOutputMon,
        node: NodeGetOutputNode,
    ) -> Self {
        Self {
            mds,
            mgr,
            mon,
            node,
            additional_properties: Default::default(),
        }
    }
}
#[derive(Clone, Debug, :: serde :: Serialize, :: serde :: Deserialize)]
pub struct GetOutput {
    #[doc = "Metadata servers configured in the cluster and their properties."]
    pub mds: MdsGetOutputMds,
    #[doc = "Managers configured in the cluster and their properties."]
    pub mgr: MgrGetOutputMgr,
    #[doc = "Monitors configured in the cluster and their properties."]
    pub mon: MonGetOutputMon,
    #[doc = "Ceph version installed on the nodes."]
    pub node: NodeGetOutputNode,
    #[serde(
        flatten,
        default,
        skip_serializing_if = "::std::collections::HashMap::is_empty"
    )]
    pub additional_properties: ::std::collections::HashMap<String, ::serde_json::Value>,
}
#[derive(Clone, Debug, :: serde :: Serialize, :: serde :: Deserialize, Default)]
pub struct GetParams {
    #[serde(skip_serializing_if = "Option::is_none", default)]
    pub scope: Option<Scope>,
    #[serde(
        flatten,
        default,
        skip_serializing_if = "::std::collections::HashMap::is_empty"
    )]
    pub additional_properties: ::std::collections::HashMap<String, ::serde_json::Value>,
}
impl IdGetOutputMdsId {
    pub fn new(
        addr: String,
        ceph_release: String,
        ceph_version: String,
        ceph_version_short: String,
        hostname: String,
        mem_swap_kb: u64,
        mem_total_kb: u64,
        name: String,
    ) -> Self {
        Self {
            addr,
            ceph_release,
            ceph_version,
            ceph_version_short,
            hostname,
            mem_swap_kb,
            mem_total_kb,
            name,
            additional_properties: Default::default(),
        }
    }
}
#[derive(Clone, Debug, :: serde :: Serialize, :: serde :: Deserialize)]
pub struct IdGetOutputMdsId {
    #[doc = "Bind addresses and ports."]
    pub addr: String,
    #[doc = "Ceph release codename currently used."]
    pub ceph_release: String,
    #[doc = "Version info currently used by the service."]
    pub ceph_version: String,
    #[doc = "Short version (numerical) info currently used by the service."]
    pub ceph_version_short: String,
    #[doc = "Hostname on which the service is running."]
    pub hostname: String,
    #[serde(
        serialize_with = "crate::types::serialize_int",
        deserialize_with = "crate::types::deserialize_int"
    )]
    #[doc = "Memory of the service currently in swap."]
    pub mem_swap_kb: u64,
    #[serde(
        serialize_with = "crate::types::serialize_int",
        deserialize_with = "crate::types::deserialize_int"
    )]
    #[doc = "Memory consumption of the service."]
    pub mem_total_kb: u64,
    #[doc = "Name of the service instance."]
    pub name: String,
    #[serde(
        flatten,
        default,
        skip_serializing_if = "::std::collections::HashMap::is_empty"
    )]
    pub additional_properties: ::std::collections::HashMap<String, ::serde_json::Value>,
}
impl IdGetOutputMgrId {
    pub fn new(
        addr: String,
        ceph_release: String,
        ceph_version: String,
        ceph_version_short: String,
        hostname: String,
        mem_swap_kb: u64,
        mem_total_kb: u64,
        name: String,
    ) -> Self {
        Self {
            addr,
            ceph_release,
            ceph_version,
            ceph_version_short,
            hostname,
            mem_swap_kb,
            mem_total_kb,
            name,
            additional_properties: Default::default(),
        }
    }
}
#[derive(Clone, Debug, :: serde :: Serialize, :: serde :: Deserialize)]
pub struct IdGetOutputMgrId {
    #[doc = "Bind address"]
    pub addr: String,
    #[doc = "Ceph release codename currently used."]
    pub ceph_release: String,
    #[doc = "Version info currently used by the service."]
    pub ceph_version: String,
    #[doc = "Short version (numerical) info currently used by the service."]
    pub ceph_version_short: String,
    #[doc = "Hostname on which the service is running."]
    pub hostname: String,
    #[serde(
        serialize_with = "crate::types::serialize_int",
        deserialize_with = "crate::types::deserialize_int"
    )]
    #[doc = "Memory of the service currently in swap."]
    pub mem_swap_kb: u64,
    #[serde(
        serialize_with = "crate::types::serialize_int",
        deserialize_with = "crate::types::deserialize_int"
    )]
    #[doc = "Memory consumption of the service."]
    pub mem_total_kb: u64,
    #[doc = "Name of the service instance."]
    pub name: String,
    #[serde(
        flatten,
        default,
        skip_serializing_if = "::std::collections::HashMap::is_empty"
    )]
    pub additional_properties: ::std::collections::HashMap<String, ::serde_json::Value>,
}
impl IdGetOutputMonId {
    pub fn new(
        addrs: String,
        ceph_release: String,
        ceph_version: String,
        ceph_version_short: String,
        hostname: String,
        mem_swap_kb: u64,
        mem_total_kb: u64,
        name: String,
    ) -> Self {
        Self {
            addrs,
            ceph_release,
            ceph_version,
            ceph_version_short,
            hostname,
            mem_swap_kb,
            mem_total_kb,
            name,
            additional_properties: Default::default(),
        }
    }
}
#[derive(Clone, Debug, :: serde :: Serialize, :: serde :: Deserialize)]
pub struct IdGetOutputMonId {
    #[doc = "Bind addresses and ports."]
    pub addrs: String,
    #[doc = "Ceph release codename currently used."]
    pub ceph_release: String,
    #[doc = "Version info currently used by the service."]
    pub ceph_version: String,
    #[doc = "Short version (numerical) info currently used by the service."]
    pub ceph_version_short: String,
    #[doc = "Hostname on which the service is running."]
    pub hostname: String,
    #[serde(
        serialize_with = "crate::types::serialize_int",
        deserialize_with = "crate::types::deserialize_int"
    )]
    #[doc = "Memory of the service currently in swap."]
    pub mem_swap_kb: u64,
    #[serde(
        serialize_with = "crate::types::serialize_int",
        deserialize_with = "crate::types::deserialize_int"
    )]
    #[doc = "Memory consumption of the service."]
    pub mem_total_kb: u64,
    #[doc = "Name of the service instance."]
    pub name: String,
    #[serde(
        flatten,
        default,
        skip_serializing_if = "::std::collections::HashMap::is_empty"
    )]
    pub additional_properties: ::std::collections::HashMap<String, ::serde_json::Value>,
}
impl MdsGetOutputMds {
    pub fn new(_id: IdGetOutputMdsId) -> Self {
        Self {
            _id,
            additional_properties: Default::default(),
        }
    }
}
#[derive(Clone, Debug, :: serde :: Serialize, :: serde :: Deserialize)]
pub struct MdsGetOutputMds {
    #[serde(rename = "{id}")]
    #[doc = "Useful properties are listed, but not the full list."]
    pub _id: IdGetOutputMdsId,
    #[serde(
        flatten,
        default,
        skip_serializing_if = "::std::collections::HashMap::is_empty"
    )]
    pub additional_properties: ::std::collections::HashMap<String, ::serde_json::Value>,
}
impl MgrGetOutputMgr {
    pub fn new(_id: IdGetOutputMgrId) -> Self {
        Self {
            _id,
            additional_properties: Default::default(),
        }
    }
}
#[derive(Clone, Debug, :: serde :: Serialize, :: serde :: Deserialize)]
pub struct MgrGetOutputMgr {
    #[serde(rename = "{id}")]
    #[doc = "Useful properties are listed, but not the full list."]
    pub _id: IdGetOutputMgrId,
    #[serde(
        flatten,
        default,
        skip_serializing_if = "::std::collections::HashMap::is_empty"
    )]
    pub additional_properties: ::std::collections::HashMap<String, ::serde_json::Value>,
}
impl MonGetOutputMon {
    pub fn new(_id: IdGetOutputMonId) -> Self {
        Self {
            _id,
            additional_properties: Default::default(),
        }
    }
}
#[derive(Clone, Debug, :: serde :: Serialize, :: serde :: Deserialize)]
pub struct MonGetOutputMon {
    #[serde(rename = "{id}")]
    #[doc = "Useful properties are listed, but not the full list."]
    pub _id: IdGetOutputMonId,
    #[serde(
        flatten,
        default,
        skip_serializing_if = "::std::collections::HashMap::is_empty"
    )]
    pub additional_properties: ::std::collections::HashMap<String, ::serde_json::Value>,
}
impl NodeGetOutputNode {
    pub fn new(_node: NodeGetOutputNodeNode) -> Self {
        Self {
            _node,
            additional_properties: Default::default(),
        }
    }
}
#[derive(Clone, Debug, :: serde :: Serialize, :: serde :: Deserialize)]
pub struct NodeGetOutputNode {
    #[serde(rename = "{node}")]
    pub _node: NodeGetOutputNodeNode,
    #[serde(
        flatten,
        default,
        skip_serializing_if = "::std::collections::HashMap::is_empty"
    )]
    pub additional_properties: ::std::collections::HashMap<String, ::serde_json::Value>,
}
impl NodeGetOutputNodeNode {
    pub fn new(buildcommit: String, version: VersionGetOutputNodeNodeVersion) -> Self {
        Self {
            buildcommit,
            version,
            additional_properties: Default::default(),
        }
    }
}
#[derive(Clone, Debug, :: serde :: Serialize, :: serde :: Deserialize)]
pub struct NodeGetOutputNodeNode {
    #[doc = "GIT commit used for the build."]
    pub buildcommit: String,
    #[doc = "Version info."]
    pub version: VersionGetOutputNodeNodeVersion,
    #[serde(
        flatten,
        default,
        skip_serializing_if = "::std::collections::HashMap::is_empty"
    )]
    pub additional_properties: ::std::collections::HashMap<String, ::serde_json::Value>,
}
impl VersionGetOutputNodeNodeVersion {
    pub fn new(str: String) -> Self {
        Self {
            str,
            additional_properties: Default::default(),
        }
    }
}
#[derive(Clone, Debug, :: serde :: Serialize, :: serde :: Deserialize)]
pub struct VersionGetOutputNodeNodeVersion {
    #[doc = "Version as single string."]
    pub str: String,
    #[serde(
        flatten,
        default,
        skip_serializing_if = "::std::collections::HashMap::is_empty"
    )]
    pub additional_properties: ::std::collections::HashMap<String, ::serde_json::Value>,
}
#[derive(Clone, Debug, :: serde :: Serialize, :: serde :: Deserialize)]
pub enum Scope {
    #[serde(rename = "all")]
    All,
    #[serde(rename = "versions")]
    Versions,
}
impl Default for Scope {
    fn default() -> Self {
        Self::All
    }
}