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
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
pub mod aplinfo;
pub mod apt;
pub mod capabilities;
pub mod ceph;
pub mod certificates;
pub mod config;
pub mod disks;
pub mod dns;
pub mod execute;
pub mod firewall;
pub mod hardware;
pub mod hosts;
pub mod journal;
pub mod lxc;
pub mod migrateall;
pub mod netstat;
pub mod network;
pub mod qemu;
pub mod query_url_metadata;
pub mod replication;
pub mod report;
pub mod rrd;
pub mod rrddata;
pub mod scan;
pub mod sdn;
pub mod services;
pub mod spiceshell;
pub mod startall;
pub mod status;
pub mod stopall;
pub mod storage;
pub mod subscription;
pub mod suspendall;
pub mod syslog;
pub mod tasks;
pub mod termproxy;
pub mod time;
pub mod version;
pub mod vncshell;
pub mod vncwebsocket;
pub mod vzdump;
pub mod wakeonlan;
pub struct NodeClient<T> {
    client: T,
    path: String,
}
impl<T> NodeClient<T>
where
    T: crate::client::Client,
{
    pub fn new(client: T, parent_path: &str, node: &str) -> Self {
        Self {
            client,
            path: format!("{}/{}", parent_path, node),
        }
    }
}
impl<T> NodeClient<T>
where
    T: crate::client::Client,
{
    #[doc = "Node index."]
    pub fn get(&self) -> Result<Vec<GetOutputItems>, T::Error> {
        let path = self.path.to_string();
        self.client.get(&path, &())
    }
}
#[derive(Clone, Debug, :: serde :: Serialize, :: serde :: Deserialize, Default)]
pub struct GetOutputItems {
    #[serde(
        flatten,
        default,
        skip_serializing_if = "::std::collections::HashMap::is_empty"
    )]
    pub additional_properties: ::std::collections::HashMap<String, ::serde_json::Value>,
}
impl<T> NodeClient<T>
where
    T: crate::client::Client,
{
    pub fn qemu(&self) -> qemu::QemuClient<T> {
        qemu::QemuClient::<T>::new(self.client.clone(), &self.path)
    }
}
impl<T> NodeClient<T>
where
    T: crate::client::Client,
{
    pub fn lxc(&self) -> lxc::LxcClient<T> {
        lxc::LxcClient::<T>::new(self.client.clone(), &self.path)
    }
}
impl<T> NodeClient<T>
where
    T: crate::client::Client,
{
    pub fn ceph(&self) -> ceph::CephClient<T> {
        ceph::CephClient::<T>::new(self.client.clone(), &self.path)
    }
}
impl<T> NodeClient<T>
where
    T: crate::client::Client,
{
    pub fn vzdump(&self) -> vzdump::VzdumpClient<T> {
        vzdump::VzdumpClient::<T>::new(self.client.clone(), &self.path)
    }
}
impl<T> NodeClient<T>
where
    T: crate::client::Client,
{
    pub fn services(&self) -> services::ServicesClient<T> {
        services::ServicesClient::<T>::new(self.client.clone(), &self.path)
    }
}
impl<T> NodeClient<T>
where
    T: crate::client::Client,
{
    pub fn subscription(&self) -> subscription::SubscriptionClient<T> {
        subscription::SubscriptionClient::<T>::new(self.client.clone(), &self.path)
    }
}
impl<T> NodeClient<T>
where
    T: crate::client::Client,
{
    pub fn network(&self) -> network::NetworkClient<T> {
        network::NetworkClient::<T>::new(self.client.clone(), &self.path)
    }
}
impl<T> NodeClient<T>
where
    T: crate::client::Client,
{
    pub fn tasks(&self) -> tasks::TasksClient<T> {
        tasks::TasksClient::<T>::new(self.client.clone(), &self.path)
    }
}
impl<T> NodeClient<T>
where
    T: crate::client::Client,
{
    pub fn scan(&self) -> scan::ScanClient<T> {
        scan::ScanClient::<T>::new(self.client.clone(), &self.path)
    }
}
impl<T> NodeClient<T>
where
    T: crate::client::Client,
{
    pub fn hardware(&self) -> hardware::HardwareClient<T> {
        hardware::HardwareClient::<T>::new(self.client.clone(), &self.path)
    }
}
impl<T> NodeClient<T>
where
    T: crate::client::Client,
{
    pub fn capabilities(&self) -> capabilities::CapabilitiesClient<T> {
        capabilities::CapabilitiesClient::<T>::new(self.client.clone(), &self.path)
    }
}
impl<T> NodeClient<T>
where
    T: crate::client::Client,
{
    pub fn storage(&self) -> storage::StorageClient<T> {
        storage::StorageClient::<T>::new(self.client.clone(), &self.path)
    }
}
impl<T> NodeClient<T>
where
    T: crate::client::Client,
{
    pub fn disks(&self) -> disks::DisksClient<T> {
        disks::DisksClient::<T>::new(self.client.clone(), &self.path)
    }
}
impl<T> NodeClient<T>
where
    T: crate::client::Client,
{
    pub fn apt(&self) -> apt::AptClient<T> {
        apt::AptClient::<T>::new(self.client.clone(), &self.path)
    }
}
impl<T> NodeClient<T>
where
    T: crate::client::Client,
{
    pub fn firewall(&self) -> firewall::FirewallClient<T> {
        firewall::FirewallClient::<T>::new(self.client.clone(), &self.path)
    }
}
impl<T> NodeClient<T>
where
    T: crate::client::Client,
{
    pub fn replication(&self) -> replication::ReplicationClient<T> {
        replication::ReplicationClient::<T>::new(self.client.clone(), &self.path)
    }
}
impl<T> NodeClient<T>
where
    T: crate::client::Client,
{
    pub fn certificates(&self) -> certificates::CertificatesClient<T> {
        certificates::CertificatesClient::<T>::new(self.client.clone(), &self.path)
    }
}
impl<T> NodeClient<T>
where
    T: crate::client::Client,
{
    pub fn config(&self) -> config::ConfigClient<T> {
        config::ConfigClient::<T>::new(self.client.clone(), &self.path)
    }
}
impl<T> NodeClient<T>
where
    T: crate::client::Client,
{
    pub fn sdn(&self) -> sdn::SdnClient<T> {
        sdn::SdnClient::<T>::new(self.client.clone(), &self.path)
    }
}
impl<T> NodeClient<T>
where
    T: crate::client::Client,
{
    pub fn version(&self) -> version::VersionClient<T> {
        version::VersionClient::<T>::new(self.client.clone(), &self.path)
    }
}
impl<T> NodeClient<T>
where
    T: crate::client::Client,
{
    pub fn status(&self) -> status::StatusClient<T> {
        status::StatusClient::<T>::new(self.client.clone(), &self.path)
    }
}
impl<T> NodeClient<T>
where
    T: crate::client::Client,
{
    pub fn netstat(&self) -> netstat::NetstatClient<T> {
        netstat::NetstatClient::<T>::new(self.client.clone(), &self.path)
    }
}
impl<T> NodeClient<T>
where
    T: crate::client::Client,
{
    pub fn execute(&self) -> execute::ExecuteClient<T> {
        execute::ExecuteClient::<T>::new(self.client.clone(), &self.path)
    }
}
impl<T> NodeClient<T>
where
    T: crate::client::Client,
{
    pub fn wakeonlan(&self) -> wakeonlan::WakeonlanClient<T> {
        wakeonlan::WakeonlanClient::<T>::new(self.client.clone(), &self.path)
    }
}
impl<T> NodeClient<T>
where
    T: crate::client::Client,
{
    pub fn rrd(&self) -> rrd::RrdClient<T> {
        rrd::RrdClient::<T>::new(self.client.clone(), &self.path)
    }
}
impl<T> NodeClient<T>
where
    T: crate::client::Client,
{
    pub fn rrddata(&self) -> rrddata::RrddataClient<T> {
        rrddata::RrddataClient::<T>::new(self.client.clone(), &self.path)
    }
}
impl<T> NodeClient<T>
where
    T: crate::client::Client,
{
    pub fn syslog(&self) -> syslog::SyslogClient<T> {
        syslog::SyslogClient::<T>::new(self.client.clone(), &self.path)
    }
}
impl<T> NodeClient<T>
where
    T: crate::client::Client,
{
    pub fn journal(&self) -> journal::JournalClient<T> {
        journal::JournalClient::<T>::new(self.client.clone(), &self.path)
    }
}
impl<T> NodeClient<T>
where
    T: crate::client::Client,
{
    pub fn vncshell(&self) -> vncshell::VncshellClient<T> {
        vncshell::VncshellClient::<T>::new(self.client.clone(), &self.path)
    }
}
impl<T> NodeClient<T>
where
    T: crate::client::Client,
{
    pub fn termproxy(&self) -> termproxy::TermproxyClient<T> {
        termproxy::TermproxyClient::<T>::new(self.client.clone(), &self.path)
    }
}
impl<T> NodeClient<T>
where
    T: crate::client::Client,
{
    pub fn vncwebsocket(&self) -> vncwebsocket::VncwebsocketClient<T> {
        vncwebsocket::VncwebsocketClient::<T>::new(self.client.clone(), &self.path)
    }
}
impl<T> NodeClient<T>
where
    T: crate::client::Client,
{
    pub fn spiceshell(&self) -> spiceshell::SpiceshellClient<T> {
        spiceshell::SpiceshellClient::<T>::new(self.client.clone(), &self.path)
    }
}
impl<T> NodeClient<T>
where
    T: crate::client::Client,
{
    pub fn dns(&self) -> dns::DnsClient<T> {
        dns::DnsClient::<T>::new(self.client.clone(), &self.path)
    }
}
impl<T> NodeClient<T>
where
    T: crate::client::Client,
{
    pub fn time(&self) -> time::TimeClient<T> {
        time::TimeClient::<T>::new(self.client.clone(), &self.path)
    }
}
impl<T> NodeClient<T>
where
    T: crate::client::Client,
{
    pub fn aplinfo(&self) -> aplinfo::AplinfoClient<T> {
        aplinfo::AplinfoClient::<T>::new(self.client.clone(), &self.path)
    }
}
impl<T> NodeClient<T>
where
    T: crate::client::Client,
{
    pub fn query_url_metadata(&self) -> query_url_metadata::QueryUrlMetadataClient<T> {
        query_url_metadata::QueryUrlMetadataClient::<T>::new(self.client.clone(), &self.path)
    }
}
impl<T> NodeClient<T>
where
    T: crate::client::Client,
{
    pub fn report(&self) -> report::ReportClient<T> {
        report::ReportClient::<T>::new(self.client.clone(), &self.path)
    }
}
impl<T> NodeClient<T>
where
    T: crate::client::Client,
{
    pub fn startall(&self) -> startall::StartallClient<T> {
        startall::StartallClient::<T>::new(self.client.clone(), &self.path)
    }
}
impl<T> NodeClient<T>
where
    T: crate::client::Client,
{
    pub fn stopall(&self) -> stopall::StopallClient<T> {
        stopall::StopallClient::<T>::new(self.client.clone(), &self.path)
    }
}
impl<T> NodeClient<T>
where
    T: crate::client::Client,
{
    pub fn suspendall(&self) -> suspendall::SuspendallClient<T> {
        suspendall::SuspendallClient::<T>::new(self.client.clone(), &self.path)
    }
}
impl<T> NodeClient<T>
where
    T: crate::client::Client,
{
    pub fn migrateall(&self) -> migrateall::MigrateallClient<T> {
        migrateall::MigrateallClient::<T>::new(self.client.clone(), &self.path)
    }
}
impl<T> NodeClient<T>
where
    T: crate::client::Client,
{
    pub fn hosts(&self) -> hosts::HostsClient<T> {
        hosts::HostsClient::<T>::new(self.client.clone(), &self.path)
    }
}