consul-api 0.0.6-pre

consul api for rust
Documentation
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
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
//#![warn(missing_docs)]

use anyhow::{anyhow, Result};
use reqwest::{
    header::{HeaderMap, HeaderValue, AUTHORIZATION},
    Method, Response, StatusCode,
};
use serde::{Deserialize, Serialize};
use std::collections::HashMap;
use std::time::Duration;

// #[doc(hidden)]
// pub use reqwest::header;
#[doc(hidden)]
pub use reqwest::Proxy;

#[cfg(all(feature = "v1", feature = "v1_20_x"))]
mod structs_1_20_x;
#[cfg(all(feature = "v1", feature = "v1_20_x"))]
pub use structs_1_20_x::*;

#[cfg(all(feature = "v1", feature = "v1_22_x"))]
mod structs_1_22_x;
#[cfg(all(feature = "v1", feature = "v1_22_x"))]
pub use structs_1_22_x::*;

#[derive(Clone, Debug)]
pub struct Config {
    pub token: String,
    pub address: String,
}

impl Config {
    pub fn from_env() -> Self {
        Self {
            token: read_env_or_default("CONSUL_TOKEN", ""),
            address: read_env_or_default("CONSUL_ADDRESS", "http://127.0.0.1:8500"),
        }
    }
}

impl Default for Config {
    fn default() -> Self {
        Self::from_env()
    }
}

pub struct ClientBuilder {
    cfg: Config,
    proxies: Vec<Proxy>,
    timeout: Option<Duration>,
}

impl ClientBuilder {
    pub fn new(cfg: Config) -> Self {
        Self {
            cfg,
            proxies: vec![],
            timeout: None,
        }
    }

    pub fn with_proxy(mut self, proxy: Proxy) -> Self {
        self.proxies.push(proxy);
        self
    }

    pub fn with_timeout(mut self, timeout: Duration) -> Self {
        self.timeout = Some(timeout);
        self
    }

    pub fn build(self) -> Result<Client> {
        let mut headers = HeaderMap::new();
        if !self.cfg.token.is_empty() {
            headers.insert(
                AUTHORIZATION,
                HeaderValue::from_str(&format!("Bearer {}", self.cfg.token)).unwrap(),
            );
        }

        let mut builder = reqwest::ClientBuilder::new();
        builder = builder.default_headers(headers);

        for proxy in self.proxies {
            // add proxy
            builder = builder.proxy(proxy)
        }

        if let Some(v) = self.timeout {
            builder = builder.timeout(v);
        }

        Ok(Client {
            cfg: self.cfg,
            http: builder.build()?,
            #[cfg(feature = "v1")]
            prefix: "/v1".to_string(),
        })
    }
}

#[derive(Debug, Default, Serialize, Deserialize)]
pub struct FilterRequestQuery {
    pub filter: Option<String>,

    #[cfg(feature = "enterprise")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub ns: Option<String>,
}

#[derive(Debug, Default, Serialize, Deserialize)]
pub struct DeregisterCheckRequestQuery {
    #[serde(skip_serializing)]
    pub check_id: String,

    #[cfg(feature = "enterprise")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub ns: Option<String>,
}

#[derive(Debug, Default, Serialize, Deserialize)]
pub struct AgentTTLCheckRequestQuery {
    #[serde(skip_serializing)]
    pub check_id: String,

    pub note: Option<String>,

    #[cfg(feature = "enterprise")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub ns: Option<String>,
}

#[derive(Debug, Default, Serialize, Deserialize)]
pub struct AgentTTLCheckUpdateRequestQuery {
    #[serde(skip_serializing)]
    pub check_id: String,

    #[cfg(feature = "enterprise")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub ns: Option<String>,
}

#[derive(Debug, Default, Serialize, Deserialize)]
pub struct AgentTTLCheckUpdateRequestBody {
    #[serde(rename = "Status")]
    pub status: Option<String>,

    #[serde(rename = "Output")]
    pub output: Option<String>,
}

#[derive(Debug, Default, Serialize, Deserialize)]
pub struct ServiceConfigurationRequestQuery {
    #[serde(skip_serializing)]
    pub service_id: String,

    #[cfg(feature = "enterprise")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub ns: Option<String>,
}

#[derive(Debug, Default, Serialize, Deserialize)]
pub struct LocalServiceHealthByNameRequestQuery {
    #[cfg(feature = "enterprise")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub ns: Option<String>,
}

#[derive(Debug, Default, Serialize, Deserialize)]
pub struct LocalServiceHealthByIDRequestQuery {
    #[cfg(feature = "enterprise")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub ns: Option<String>,
}

#[derive(Debug, Default, Serialize, Deserialize)]
pub struct RegisterServiceRequestQuery {
    /// Missing health checks from the request will be deleted from the agent.
    /// Using this parameter allows to idempotently register a service and
    /// its checks without having to manually deregister checks.
    #[serde(rename = "replace-existing-checks")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub replace_existing_checks: Option<String>,

    #[cfg(feature = "enterprise")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub ns: Option<String>,
}

#[derive(Debug, Default, Serialize, Deserialize)]
pub struct DeregisterServiceRequestQuery {
    #[cfg(feature = "enterprise")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub ns: Option<String>,

    #[cfg(feature = "enterprise")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub partition: Option<String>,
}

#[derive(Debug, Default, Serialize, Deserialize)]
pub struct EnableMaintenanceModeRequestQuery {
    #[serde(skip_serializing)]
    pub service_id: String,

    /// Specifies whether to enable or disable maintenance mode.
    /// This is specified as part of the URL as a query string parameter.
    pub enable: bool,

    /// Specifies a text string explaining the reason for placing the node
    /// into maintenance mode. This is simply to aid human operators. If no
    /// reason is provided, a default value is used instead. This parameter
    /// must be URI-encoded.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub reason: Option<String>,

    #[cfg(feature = "enterprise")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub ns: Option<String>,
}

#[derive(Debug, Default, Serialize, Deserialize)]
pub struct ConnectAuthorizeRequestQuery {
    #[cfg(feature = "enterprise")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub ns: Option<String>,
}

#[derive(Debug, Default, Serialize, Deserialize)]
pub struct ConnectAuthorizeRequestReply {
    /// True if authorized, false if not
    #[serde(rename = "Authorized")]
    pub authorized: bool,

    /// Reason for the Authorized value (whether true or false)
    #[serde(rename = "Reason")]
    pub reason: String,
}

#[derive(Debug, Default, Serialize, Deserialize)]
pub struct KVReadKeyQuery {
    /// Specifies the datacenter to query. This will default to the
    /// datacenter of the agent being queried.
    pub dc: Option<String>,

    /// Specifies if the lookup should be recursive and treat key as a
    /// prefix instead of a literal match.
    pub recurse: Option<bool>,

    /// Specifies the response is just the raw value of the key, without
    /// any encoding or metadata.
    pub raw: Option<bool>,

    /// Specifies to return only keys (no values or metadata). Specifying
    /// this parameter implies recurse.
    pub keys: Option<bool>,

    /// Specifies the string to use as a separator for recursive key
    /// lookups. This option is only used when paired with the keys
    /// parameter to limit the prefix of keys returned, only up to the
    /// given separator.
    pub separator: Option<String>,

    #[cfg(feature = "enterprise")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub ns: Option<String>,

    /// The admin partition to use. If not provided, the partition is
    /// inferred from the request's ACL token, or defaults to the default
    /// partition.
    #[cfg(feature = "enterprise")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub partition: Option<String>,
}

#[derive(Debug, Default, Serialize, Deserialize)]
pub struct KVCreateOrUpdateKeyQuery {
    /// Specifies the datacenter to query. This will default to the
    /// datacenter of the agent being queried.
    pub dc: Option<String>,

    /// Specifies an unsigned value between 0 and (2^64)-1 to store with
    /// the key. API consumers can use this field any way they choose for
    /// their application.
    pub flags: Option<u64>,

    /// Specifies to use a Check-And-Set operation. This is very useful as a
    /// building block for more complex synchronization primitives. If the
    /// index is 0, Consul will only put the key if it does not already exist.
    /// If the index is non-zero, the key is only set if the index matches the
    /// ModifyIndex of that key.
    pub cas: Option<u64>,

    /// Supply a session ID to use in a lock acquisition operation. This is
    /// useful as it allows leader election to be built on top of Consul. If
    /// the lock is not held and the session is valid, this increments the
    /// LockIndex and sets the Session value of the key in addition to updating
    /// the key contents. A key does not need to exist to be acquired. If the
    /// lock is already held by the given session, then the LockIndex is not
    /// incremented but the key contents are updated. This lets the current
    /// lock holder update the key contents without having to give up the lock
    /// and reacquire it. Note that an update that does not include the acquire
    /// parameter will proceed normally even if another session has locked the
    /// key.
    pub acquire: Option<String>,

    /// Supply a session ID to use in a release operation. This is useful when
    /// paired with ?acquire= as it allows clients to yield a lock. This will
    /// leave the LockIndex unmodified but will clear the associated Session of
    /// the key. The key must be held by this session to be unlocked.
    pub release: Option<String>,

    #[cfg(feature = "enterprise")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub ns: Option<String>,

    #[cfg(feature = "enterprise")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub partition: Option<String>,
}

#[derive(Debug, Default, Serialize, Deserialize)]
pub struct KVDeleteKeyQuery {
    /// Specifies the datacenter to query. This will default to the datacenter
    /// of the agent being queried. If the DC is invalid, the error "No path to
    /// datacenter" is returned.
    pub dc: Option<String>,

    /// Specifies to delete all keys which have the specified prefix. Without
    /// this, only a key with an exact match will be deleted.
    pub recurse: Option<bool>,

    /// Specifies to use a Check-And-Set operation. This is very useful as a
    /// building block for more complex synchronization primitives. Unlike PUT,
    /// the index must be greater than 0 for Consul to take any action: a 0
    /// index will not delete the key. If the index is non-zero, the key is
    /// only deleted if the index matches the ModifyIndex of that key.
    pub cas: Option<u64>,

    #[cfg(feature = "enterprise")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub ns: Option<String>,

    #[cfg(feature = "enterprise")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub partition: Option<String>,
}

#[derive(Debug, Default, Serialize, Deserialize)]
pub struct CatalogRegisterEntityQuery {
    #[cfg(feature = "enterprise")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub ns: Option<String>,
}

#[derive(Debug, Default, Serialize, Deserialize)]
pub struct CatalogDeregisterEntityQuery {
    #[cfg(feature = "enterprise")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub ns: Option<String>,
}

#[derive(Debug, Default, Serialize, Deserialize)]
pub struct CatalogListServicesQuery {
    #[serde(skip_serializing_if = "Option::is_none")]
    pub dc: Option<String>,

    #[serde(rename = "node-meta")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub node_meta: Option<String>,

    #[serde(skip_serializing_if = "Option::is_none")]
    pub filter: Option<String>,

    #[cfg(feature = "enterprise")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub ns: Option<String>,

    #[cfg(feature = "enterprise")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub partition: Option<String>,
}

#[derive(Debug, Default, Serialize, Deserialize)]
pub struct CatalogListNodesForServiceQuery {
    #[serde(skip_serializing_if = "Option::is_none")]
    pub dc: Option<String>,

    #[serde(skip_serializing_if = "Option::is_none")]
    pub tag: Option<String>,

    #[serde(skip_serializing_if = "Option::is_none")]
    pub near: Option<String>,

    #[serde(rename = "node-meta")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub node_meta: Option<String>,

    #[serde(skip_serializing_if = "Option::is_none")]
    pub filter: Option<String>,

    #[cfg(feature = "enterprise")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub ns: Option<String>,
}

#[derive(Debug, Default, Serialize, Deserialize)]
pub struct CatalogNodeServicesQuery {
    #[serde(skip_serializing_if = "Option::is_none")]
    pub dc: Option<String>,

    #[serde(skip_serializing_if = "Option::is_none")]
    pub filter: Option<String>,

    #[cfg(feature = "enterprise")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub ns: Option<String>,
}

#[derive(Debug, Default, Serialize, Deserialize)]
pub struct CatalogGatewayServicesQuery {
    #[serde(skip_serializing_if = "Option::is_none")]
    pub dc: Option<String>,

    #[cfg(feature = "enterprise")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub ns: Option<String>,
}

#[derive(Debug, Default, Serialize, Deserialize)]
pub struct EventFireQuery {
    #[serde(skip_serializing_if = "Option::is_none")]
    pub dc: Option<String>,

    #[serde(skip_serializing_if = "Option::is_none")]
    pub node: Option<String>,

    #[serde(skip_serializing_if = "Option::is_none")]
    pub service: Option<String>,

    #[serde(skip_serializing_if = "Option::is_none")]
    pub tag: Option<String>,
}

#[derive(Debug, Default, Serialize, Deserialize)]
pub struct EventListQuery {
    #[serde(skip_serializing_if = "Option::is_none")]
    pub name: Option<String>,

    #[serde(skip_serializing_if = "Option::is_none")]
    pub node: Option<String>,

    #[serde(skip_serializing_if = "Option::is_none")]
    pub service: Option<String>,

    #[serde(skip_serializing_if = "Option::is_none")]
    pub tag: Option<String>,
}

#[derive(Debug, Default, Serialize, Deserialize)]
pub struct HealthListNodesQuery {
    #[serde(skip_serializing_if = "Option::is_none")]
    pub dc: Option<String>,

    #[serde(skip_serializing_if = "Option::is_none")]
    pub filter: Option<String>,

    #[cfg(feature = "enterprise")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub ns: Option<String>,
}

#[derive(Debug, Default, Serialize, Deserialize)]
pub struct HealthListServicesQuery {
    #[serde(skip_serializing_if = "Option::is_none")]
    pub dc: Option<String>,

    #[serde(skip_serializing_if = "Option::is_none")]
    pub near: Option<String>,

    #[serde(rename = "node-meta")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub node_meta: Option<String>,

    #[serde(skip_serializing_if = "Option::is_none")]
    pub filter: Option<String>,

    #[cfg(feature = "enterprise")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub ns: Option<String>,
}

#[derive(Debug, Default, Serialize, Deserialize)]
pub struct HealthListServiceInstancesQuery {
    #[serde(skip_serializing_if = "Option::is_none")]
    pub dc: Option<String>,

    #[serde(skip_serializing_if = "Option::is_none")]
    pub near: Option<String>,

    #[serde(skip_serializing_if = "Option::is_none")]
    pub tag: Option<String>,

    #[serde(rename = "node-meta")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub node_meta: Option<String>,

    #[serde(skip_serializing_if = "Option::is_none")]
    pub passing: Option<bool>,

    #[serde(skip_serializing_if = "Option::is_none")]
    pub filter: Option<String>,

    #[serde(skip_serializing_if = "Option::is_none")]
    pub peer: Option<String>,

    #[serde(skip_serializing_if = "Option::is_none")]
    pub index: Option<u64>,

    #[cfg(feature = "enterprise")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub ns: Option<String>,

    #[cfg(feature = "enterprise")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub sg: Option<String>,
}

#[derive(Debug, Default, Serialize, Deserialize)]
pub struct HealthListStateQuery {
    #[serde(skip_serializing_if = "Option::is_none")]
    pub dc: Option<String>,

    #[serde(skip_serializing_if = "Option::is_none")]
    pub near: Option<String>,

    #[serde(rename = "node-meta")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub node_meta: Option<String>,

    #[serde(skip_serializing_if = "Option::is_none")]
    pub filter: Option<String>,

    #[cfg(feature = "enterprise")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub ns: Option<String>,
}

#[cfg(feature = "enterprise")]
#[derive(Debug, Default, Serialize, Deserialize)]
pub struct NamespaceCreateBody {
    /// The namespace's name. This field must be a valid DNS hostname label.
    ///
    /// required
    ///
    #[serde(rename = "Name")]
    pub name: String,

    /// Free form namespaces description.
    #[serde(rename = "Description")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub description: Option<String>,

    #[serde(rename = "ACLs")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub acls: Option<NamespaceACLConfig>,

    #[serde(rename = "Meta")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub meta: Option<::std::collections::HashMap<String, String>>,

    #[serde(rename = "Partition")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub partition: Option<String>,
}

#[cfg(feature = "enterprise")]
#[derive(Debug, Default, Serialize, Deserialize)]
pub struct NamespaceDetail {
    /// The namespace's name.
    #[serde(rename = "Name")]
    pub name: String,

    /// Free form namespaces description.
    #[serde(rename = "Description")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub description: Option<String>,

    #[serde(rename = "ACLs")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub acls: Option<NamespaceACLConfig>,

    #[serde(rename = "Meta")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub meta: Option<::std::collections::HashMap<String, String>>,

    #[serde(rename = "CreateIndex")]
    pub create_index: u64,

    #[serde(rename = "ModifyIndex")]
    pub modify_index: u64,
}

#[cfg(feature = "enterprise")]
#[derive(Debug, Default, Serialize, Deserialize)]
pub struct NamespaceReadQuery {
    #[serde(skip_serializing_if = "Option::is_none")]
    pub partition: Option<String>,
}

#[cfg(feature = "enterprise")]
#[derive(Debug, Default, Serialize, Deserialize)]
pub struct NamespaceUpdateBody {
    /// If specified, this field must be an exact match with the name path
    /// parameter.
    #[serde(rename = "Name")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub name: Option<String>,

    /// Free form namespaces description.
    #[serde(rename = "Description")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub description: Option<String>,

    #[serde(rename = "ACLs")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub acls: Option<NamespaceACLConfig>,

    #[serde(rename = "Meta")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub meta: Option<::std::collections::HashMap<String, String>>,

    #[serde(rename = "Partition")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub partition: Option<String>,
}

#[derive(Debug, Default, Serialize, Deserialize)]
pub struct StatusQuery {
    #[serde(skip_serializing_if = "Option::is_none")]
    pub dc: Option<String>,
}

/// The Consul API client.
#[derive(Clone, Debug)]
pub struct Client {
    cfg: Config,
    http: reqwest::Client,
    prefix: String,
}

impl Client {
    /// Creates a new client with the default configuration.
    pub fn new() -> Self {
        ClientBuilder::new(Config::default()).build().unwrap()
    }

    /// List Checks
    /// This endpoint returns all checks that are registered with the local agent.
    /// These checks were either provided through configuration files or added
    /// dynamically using the HTTP API.
    pub async fn agent_checks(
        &self,
        q: &FilterRequestQuery,
    ) -> Result<HashMap<String, HealthCheck>> {
        let resp = self
            .execute_request(Method::GET, "/agent/checks", q, None, &())
            .await?;

        resp.json().await.map_err(|e| anyhow!(e))
    }

    /// Register Check
    /// This endpoint adds a new check to the local agent. Checks may be of script,
    /// HTTP, TCP, UDP, or TTL type. The agent is responsible for managing the
    /// status of the check and keeping the Catalog in sync.
    pub async fn agent_check_register(&self, b: &CheckDefinition) -> Result<bool> {
        let resp = self
            .execute_request(Method::PUT, "/agent/check/register", &(), None, b)
            .await?;
        Ok(resp.status() == StatusCode::OK)
    }

    /// Deregister Check
    /// This endpoint remove a check from the local agent. The agent will take care of
    /// deregistering the check from the catalog. If the check with the provided ID
    /// does not exist, no action is taken.
    pub async fn agent_check_deregister(&self, q: &DeregisterCheckRequestQuery) -> Result<bool> {
        let path = format!("/agent/check/deregister/{}", q.check_id);
        let resp = self
            .execute_request(Method::PUT, &path, q, None, &())
            .await?;
        Ok(resp.status() == StatusCode::OK)
    }

    /// TTL Check Pass
    /// This endpoint is used with a TTL type check to set the status of the check
    /// to passing and to reset the TTL clock.
    pub async fn agent_check_pass(&self, q: &AgentTTLCheckRequestQuery) -> Result<bool> {
        let path = format!("/agent/check/pass/{}", q.check_id);
        let resp = self
            .execute_request(Method::PUT, &path, q, None, &())
            .await?;

        Ok(resp.status() == StatusCode::OK)
    }

    /// TTL Check Warn
    /// This endpoint is used with a TTL type check to set the status of the check
    /// to warning and to reset the TTL clock.
    pub async fn agent_check_warn(&self, q: &AgentTTLCheckRequestQuery) -> Result<()> {
        let path = format!("/agent/check/warn/{}", q.check_id);
        let resp = self
            .execute_request(Method::PUT, &path, q, None, &())
            .await?;
        resp.json().await.map_err(|e| anyhow!(e))
    }

    /// TTL Check Fail
    /// This endpoint is used with a TTL type check to set the status of the check
    /// to critical and to reset the TTL clock.
    pub async fn agent_check_fail(&self, q: &AgentTTLCheckRequestQuery) -> Result<bool> {
        let path = format!("/agent/check/fail/{}", q.check_id);
        let resp = self
            .execute_request(Method::PUT, &path, q, None, &())
            .await?;
        Ok(resp.status() == StatusCode::OK)
    }

    /// TTL Check Update
    /// This endpoint is used with a TTL type check to set the status of the check
    /// and to reset the TTL clock.
    pub async fn agent_check_update(
        &self,
        q: &AgentTTLCheckUpdateRequestQuery,
        b: &AgentTTLCheckUpdateRequestBody,
    ) -> Result<bool> {
        let path = format!("/agent/check/update/{}", q.check_id);
        let resp = self.execute_request(Method::PUT, &path, q, None, b).await?;
        Ok(resp.status() == StatusCode::OK)
    }

    /// List Services
    /// This endpoint returns all the services that are registered with the local agent.
    /// These services were either provided through configuration files or added
    /// dynamically using the HTTP API.
    pub async fn agent_services(
        &self,
        q: &FilterRequestQuery,
    ) -> Result<HashMap<String, AgentService>> {
        let resp = self
            .execute_request(Method::GET, "/agent/services", q, None, &())
            .await?;
        resp.json().await.map_err(|e| anyhow!(e))
    }

    pub async fn agent_service_configuration(
        &self,
        q: &ServiceConfigurationRequestQuery,
    ) -> Result<Option<AgentService>> {
        let path = format!("/agent/service/{}", q.service_id);
        let resp = self
            .execute_request(Method::GET, &path, q, None, &())
            .await?;

        if resp.status() == StatusCode::NOT_FOUND {
            return Ok(None);
        }

        Ok(Some(resp.json().await.map_err(|e| anyhow!(e))?))
    }

    /// Get local service health
    /// Retrieve an aggregated state of service(s) on the local agent by name.
    ///
    /// This endpoints support JSON format and text/plain formats, JSON
    /// being the default. In order to get the text format, you can
    /// append ?format=text to the URL or use Mime Content negotiation
    /// by specifying a HTTP Header Accept starting with text/plain.
    pub async fn agent_get_service_health_by_name<S: Into<String>>(
        &self,
        service_name: S,
        q: &LocalServiceHealthByNameRequestQuery,
    ) -> Result<Vec<AgentServiceChecksInfo>> {
        let path = format!("/agent/health/service/name/{}", service_name.into());
        let resp = self
            .execute_request(Method::GET, &path, q, None, &())
            .await?;
        resp.json().await.map_err(|e| anyhow!(e))
    }

    /// Get local service health by ID
    /// Retrieve the health state of a specific service on the local agent
    /// by ID.
    pub async fn agent_get_service_health_by_id<S: Into<String>>(
        &self,
        service_id: S,
        q: &LocalServiceHealthByIDRequestQuery,
    ) -> Result<Option<AgentServiceChecksInfo>> {
        let path = format!("/agent/health/service/id/{}", service_id.into());
        let resp = self
            .execute_request(Method::GET, &path, q, None, &())
            .await?;

        if resp.status() == StatusCode::NOT_FOUND {
            return Ok(None);
        }

        Ok(Some(resp.json().await.map_err(|e| anyhow!(e))?))
    }

    /// Register Service
    /// This endpoint adds a new service, with optional health checks, to the
    /// local agent.
    ///
    /// The agent is responsible for managing the status of its local services, and
    /// for sending updates about its local services to the servers to keep the
    /// global catalog in sync.
    pub async fn agent_register_service(
        &self,
        q: &RegisterServiceRequestQuery,
        b: &ServiceDefinition,
    ) -> Result<bool> {
        let resp = self
            .execute_request(Method::PUT, "/agent/service/register", q, None, b)
            .await?;
        Ok(resp.status() == StatusCode::OK)
    }

    /// Deregister Service
    /// This endpoint removes a service from the local agent. If the service
    /// does not exist, no action is taken.
    ///
    /// The agent will take care of deregistering the service with the catalog.
    /// If there is an associated check, that is also deregistered.
    pub async fn agent_deregister_service<S: Into<String>>(
        &self,
        service_id: S,
        q: &DeregisterServiceRequestQuery,
    ) -> Result<bool> {
        let path = format!("/agent/service/deregister/{}", service_id.into());
        let resp = self
            .execute_request(Method::PUT, &path, q, None, &())
            .await?;
        Ok(resp.status() == StatusCode::OK)
    }

    /// Enable Maintenance Mode
    ///
    /// This endpoint places a given service into "maintenance mode". During
    /// maintenance mode, the service will be marked as unavailable and will
    /// not be present in DNS or API queries. This API call is idempotent.
    /// Maintenance mode is persistent and will be automatically restored on
    /// agent restart.
    pub async fn agent_enable_maintenance_mode(
        &self,
        q: &EnableMaintenanceModeRequestQuery,
    ) -> Result<bool> {
        let path = format!("/agent/service/maintenance/{}", q.service_id);
        let resp = self
            .execute_request(Method::PUT, &path, q, None, &())
            .await?;
        Ok(resp.status() == StatusCode::OK)
    }

    pub async fn agent_connect_authorize(
        &self,
        q: &ConnectAuthorizeRequestQuery,
        b: &ConnectAuthorizeRequest,
    ) -> Result<ConnectAuthorizeRequestReply> {
        let resp = self
            .execute_request(Method::POST, "/agent/connect/authorize", q, None, b)
            .await?;
        resp.json().await.map_err(|e| anyhow!(e))
    }

    /// Catalog Register Entity
    /// This endpoint is a low-level mechanism for registering or updating
    /// entries in the catalog. It is usually preferable to instead use the
    /// agent endpoints for registration as they are simpler and perform
    /// anti-entropy.
    pub async fn catalog_register_entity(
        &self,
        q: &CatalogRegisterEntityQuery,
        b: &RegisterRequest,
    ) -> Result<bool> {
        let resp = self
            .execute_request(Method::PUT, "/catalog/register", q, None, b)
            .await?;

        Ok(resp.status() == StatusCode::OK)
    }

    /// Catalog Deregister Entity
    /// This endpoint is a low-level mechanism for directly removing entries
    /// from the Catalog. It is usually preferable to instead use the agent
    /// endpoints for deregistration as they are simpler and perform
    /// anti-entropy.
    pub async fn catalog_deregister_entity(
        &self,
        q: &CatalogDeregisterEntityQuery,
        b: &DeregisterRequest,
    ) -> Result<bool> {
        let resp = self
            .execute_request(Method::PUT, "/catalog/deregister", q, None, b)
            .await?;

        Ok(resp.status() == StatusCode::OK)
    }

    /// Catalog List Datacenters
    /// This endpoint returns the list of all known datacenters. The
    /// datacenters will be sorted in ascending order based on the estimated
    /// median round trip time from the server to the servers in that
    /// datacenter.
    pub async fn catalog_list_datacenters(&self) -> Result<Vec<String>> {
        let resp = self
            .execute_request(Method::GET, "/catalog/datacenters", &(), None, &())
            .await?;

        resp.json().await.map_err(|e| anyhow!(e))
    }

    /// Catalog List Nodes
    /// This endpoint and returns the nodes registered in a given datacenter.
    pub async fn catalog_list_nodes(&self) -> Result<Vec<Node>> {
        let resp = self
            .execute_request(Method::GET, "/catalog/nodes", &(), None, &())
            .await?;

        resp.json().await.map_err(|e| anyhow!(e))
    }

    /// Catalog List Services
    /// This endpoint returns the services registered in a given datacenter.
    pub async fn catalog_list_services(
        &self,
        q: &CatalogListServicesQuery,
    ) -> Result<::std::collections::HashMap<String, Vec<String>>> {
        let resp = self
            .execute_request(Method::GET, "/catalog/services", q, None, &())
            .await?;

        resp.json().await.map_err(|e| anyhow!(e))
    }

    /// Catalog List Nodes for Service
    /// This endpoint returns the nodes providing a service in a given
    /// datacenter.
    pub async fn catalog_list_nodes_for_service<S: Into<String>>(
        &self,
        service_name: S,
        q: &CatalogListNodesForServiceQuery,
    ) -> Result<Vec<ServiceNode>> {
        let p = format!("/catalog/service/{}", service_name.into());

        let resp = self.execute_request(Method::GET, &p, q, None, &()).await?;

        resp.json().await.map_err(|e| anyhow!(e))
    }

    /// List Nodes for Mesh-capable Service
    /// This endpoint returns the nodes providing a mesh-capable service in a
    /// given datacenter. This will include both proxies and native
    /// integrations. A service may register both mesh-capable and incapable
    /// services at the same time, so this endpoint may be used to filter only
    /// the mesh-capable endpoints.
    pub async fn catalog_list_nodes_for_mesh_capable_service<S: Into<String>>(
        &self,
        service: S,
        q: &CatalogListNodesForServiceQuery,
    ) -> Result<Vec<ServiceNode>> {
        let p = format!("/catalog/connect/{}", service.into());

        let resp = self.execute_request(Method::GET, &p, q, None, &()).await?;

        resp.json().await.map_err(|e| anyhow!(e))
    }

    /// Retrieve Map of Services for a Node
    /// This endpoint returns the node's registered services.
    pub async fn catalog_node_services<S: Into<String>>(
        &self,
        node_name: S,
        q: &CatalogNodeServicesQuery,
    ) -> Result<Option<NodeServices>> {
        let p = format!("/catalog/node/{}", node_name.into());

        let resp = self.execute_request(Method::GET, &p, q, None, &()).await?;

        if resp.status() == StatusCode::NOT_FOUND {
            return Ok(None);
        }

        resp.json().await.map_err(|e| anyhow!(e))
    }

    /// List Services for Gateway
    /// This endpoint returns the services associated with an ingress gateway
    /// or terminating gateway.
    pub async fn catalog_gateway_services<S: Into<String>>(
        &self,
        gateway: S,
        q: &CatalogGatewayServicesQuery,
    ) -> Result<Vec<GatewayService>> {
        let p = format!("/catalog/gateway-services/{}", gateway.into());

        let resp = self.execute_request(Method::GET, &p, q, None, &()).await?;

        resp.json().await.map_err(|e| anyhow!(e))
    }

    /// Fire Event
    /// This endpoint triggers a new user event.
    pub async fn event_fire<S: Into<String>>(
        &self,
        name: S,
        body: Option<Vec<u8>>,
        q: &EventFireQuery,
    ) -> Result<bool> {
        let p = format!("/event/fire/{}", name.into());

        let resp = self.execute_request(Method::PUT, &p, q, body, &()).await?;

        Ok(resp.status() == StatusCode::OK)
    }

    /// List Events
    /// This endpoint returns the most recent events (up to 256) known by the
    /// agent. As a consequence of how the event command works, each agent may
    /// have a different view of the events. Events are broadcast using the
    /// gossip protocol, so they have no global ordering nor do they make a
    /// promise of delivery.
    pub async fn event_list(&self, q: &EventListQuery) -> Result<Vec<UserEvent>> {
        let resp = self
            .execute_request(Method::GET, "/event/list", q, None, &())
            .await?;

        let mut list: Vec<UserEvent> = resp.json().await.map_err(|e| anyhow!(e))?;

        for item in list.iter_mut() {
            item.payload = item.payload.clone().map_or(None, |v| {
                // 'bnVsbA==' is null
                if v.0 == "bnVsbA==" {
                    None
                } else {
                    Some(v)
                }
            })
        }

        Ok(list)
    }

    /// List Checks for Node
    /// This endpoint returns the checks specific to the node provided on the
    /// path.
    pub async fn health_list_nodes<S: Into<String>>(
        &self,
        node: S,
        q: &HealthListNodesQuery,
    ) -> Result<Vec<HealthCheck>> {
        let p = format!("/health/node/{}", node.into());

        let resp = self.execute_request(Method::GET, &p, q, None, &()).await?;

        resp.json().await.map_err(|e| anyhow!(e))
    }

    /// List Checks for Service
    /// This endpoint returns the checks associated with the service provided
    /// on the path.
    pub async fn health_list_services<S: Into<String>>(
        &self,
        service: S,
        q: &HealthListServicesQuery,
    ) -> Result<Vec<HealthCheck>> {
        let p = format!("/health/checks/{}", service.into());

        let resp = self.execute_request(Method::GET, &p, q, None, &()).await?;

        resp.json().await.map_err(|e| anyhow!(e))
    }

    /// List Service Instances for Service
    /// This endpoint returns the service instances providing the service
    /// indicated on the path. Users can also build in support for dynamic load
    /// balancing and other features by incorporating the use of health checks.
    pub async fn health_list_service_instances<S: Into<String>>(
        &self,
        service: S,
        q: &HealthListServiceInstancesQuery,
    ) -> Result<Vec<CheckServiceNode>> {
        let p = format!("/health/service/{}", service.into());

        let resp = self.execute_request(Method::GET, &p, q, None, &()).await?;

        resp.json().await.map_err(|e| anyhow!(e))
    }

    /// List Service Instances for Mesh-enabled Service
    ///
    /// This endpoint returns the service instances providing a mesh-capable
    /// service in a given datacenter. This will include both proxies and
    /// native integrations. A service may register both mesh-capable and
    /// incapable services at the same time, so this endpoint may be used to
    /// filter only the mesh-capable endpoints.
    ///
    pub async fn health_list_service_instances_for_mesh_capable<S: Into<String>>(
        &self,
        service: S,
        q: &HealthListServiceInstancesQuery,
    ) -> Result<Vec<CheckServiceNode>> {
        let p = format!("/health/connect/{}", service.into());

        let resp = self.execute_request(Method::GET, &p, q, None, &()).await?;

        resp.json().await.map_err(|e| anyhow!(e))
    }

    /// List Service Instances for Ingress Gateways Associated with a Service
    ///
    /// This API is available in Consul versions 1.8.0 and later.
    ///
    /// This endpoint returns the service instances providing an ingress
    /// gateway for a service in a given datacenter.
    ///
    pub async fn health_list_service_instances_for_ingress_gateways<S: Into<String>>(
        &self,
        service: S,
        q: &HealthListServiceInstancesQuery,
    ) -> Result<Vec<CheckServiceNode>> {
        let p = format!("/health/ingress/{}", service.into());

        let resp = self.execute_request(Method::GET, &p, q, None, &()).await?;

        resp.json().await.map_err(|e| anyhow!(e))
    }

    /// List Checks in State
    ///
    /// This endpoint returns the checks in the state provided on the path.
    ///
    pub async fn health_list_state(
        &self,
        state: Health,
        q: &HealthListStateQuery,
    ) -> Result<Vec<HealthCheck>> {
        let p = format!("/health/state/{}", state);

        let resp = self.execute_request(Method::GET, &p, q, None, &()).await?;

        resp.json().await.map_err(|e| anyhow!(e))
    }

    /// Read Key
    /// This endpoint returns the specified key. If no key exists at the given
    /// path, a 404 is returned instead of a 200 response.
    pub async fn kv_read_key<S: Into<String>>(
        &self,
        key: S,
        q: &KVReadKeyQuery,
    ) -> Result<Option<Vec<u8>>> {
        let path = format!("/kv/{}", key.into());
        let resp = self
            .execute_request(Method::GET, &path, q, None, &())
            .await?;

        if resp.status() == StatusCode::NOT_FOUND {
            return Ok(None);
        }

        let full = resp.bytes().await?;

        if full.is_empty() {
            return Ok(Some(vec![]));
        }

        Ok(Some(full.to_vec()))
    }

    /// Create/Update Key
    /// This endpoint updates the value of the specified key. If no key exists
    /// at the given path, the key will be created.
    pub async fn kv_create_or_update_key<S: Into<String>>(
        &self,
        key: S,
        b: Vec<u8>,
        q: &KVCreateOrUpdateKeyQuery,
    ) -> Result<bool> {
        let path = format!("/kv/{}", key.into());
        let resp = self
            .execute_request(Method::PUT, &path, q, Some(b), &())
            .await?;
        resp.json().await.map_err(|e| anyhow!(e))
    }

    /// Delete Key
    /// This endpoint deletes a single key or all keys sharing a prefix.
    pub async fn kv_delete_key<S: Into<String>>(
        &self,
        key: S,
        q: &KVDeleteKeyQuery,
    ) -> Result<bool> {
        let path = format!("/kv/{}", key.into());
        let resp = self
            .execute_request(Method::DELETE, &path, q, None, &())
            .await?;
        resp.json().await.map_err(|e| anyhow!(e))
    }

    /// Create a Namespace
    ///
    /// This feature requires Consul Enterprise.
    ///
    /// This endpoint creates a new Namespace.
    ///
    #[cfg(feature = "enterprise")]
    pub async fn namespace_create(&self, b: &NamespaceCreateBody) -> Result<NamespaceDetail> {
        let resp = self
            .execute_request(Method::PUT, "/namespace", &(), None, b)
            .await?;
        resp.json().await.map_err(|e| anyhow!(e))
    }

    /// Read a Namespace
    ///
    /// This feature requires Consul Enterprise.
    ///
    /// This endpoint reads a Namespace with the given name.
    ///
    #[cfg(feature = "enterprise")]
    pub async fn namespace_read<S: Into<String>>(
        &self,
        name: S,
        q: &NamespaceReadQuery,
    ) -> Result<Option<NamespaceDetail>> {
        let p = format!("/namespace/{}", name.into());

        let resp = self.execute_request(Method::GET, &p, &q, None, &()).await?;

        if resp.status() == StatusCode::NOT_FOUND {
            return Ok(None);
        }

        Ok(Some(resp.json().await.map_err(|e| anyhow!(e))?))
    }

    /// Update a Namespace
    ///
    /// This feature requires Consul Enterprise.
    ///
    /// This endpoint reads a Namespace with the given name.
    ///
    #[cfg(feature = "enterprise")]
    pub async fn namespace_update<S: Into<String>>(
        &self,
        name: S,
        b: &NamespaceUpdateBody,
    ) -> Result<NamespaceDetail> {
        let p = format!("/namespace/{}", name.into());

        let resp = self.execute_request(Method::PUT, &p, &(), None, &b).await?;

        resp.json().await.map_err(|e| anyhow!(e))
    }

    /// Get Raft Leader
    ///
    /// This endpoint returns the Raft leader for the datacenter in which the
    /// agent is running.
    ///
    pub async fn status_leader(&self, q: &StatusQuery) -> Result<String> {
        let resp = self
            .execute_request(Method::GET, "/status/leader", q, None, &())
            .await?;

        resp.text_with_charset("utf-8")
            .await
            .map_err(|e| anyhow!(e))
    }

    /// List Raft Peers
    ///
    /// This endpoint retrieves the Raft peers for the datacenter in which the
    /// agent is running. This list of peers is strongly consistent and can be
    /// useful in determining when a given server has successfully joined the
    /// cluster.
    ///
    pub async fn status_peers(&self, q: &StatusQuery) -> Result<Vec<String>> {
        let resp = self
            .execute_request(Method::GET, "/status/peers", q, None, &())
            .await?;

        resp.json().await.map_err(|e| anyhow!(e))
    }

    async fn execute_request<Q, B>(
        &self,
        method: Method,
        path: &str,
        query: &Q,
        raw_body: Option<Vec<u8>>,
        json_body: &B,
    ) -> Result<Response>
    where
        Q: Serialize,
        B: Serialize,
    {
        let path = format!("{}{}{}", self.cfg.address, self.prefix, path);
        let mut b = self.http.request(method.clone(), &path);

        b = b.query(query);

        if method == Method::PUT || method == Method::POST {
            if let Some(body) = raw_body {
                b = b.body(body)
            } else {
                b = b.json(json_body);
            }
        }

        let resp = b.send().await?;
        Ok(resp)
    }
}

#[inline]
fn read_env_or_default(key: &str, default: &str) -> String {
    std::env::var(key).unwrap_or_else(|_| default.to_string())
}

#[cfg(test)]
mod tests {
    use super::*;

    #[test]
    fn create_client() {
        let _ = Client::new();
    }
}