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
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
#![allow(unused_mut)]
#![allow(unused_variables)]
#![allow(unused_imports)]
#![allow(clippy::redundant_clone)]
pub mod models;
#[derive(Clone)]
pub struct Client {
endpoint: String,
credential: crate::Credential,
scopes: Vec<String>,
pipeline: azure_core::Pipeline,
}
#[derive(Clone)]
pub struct ClientBuilder {
credential: crate::Credential,
endpoint: Option<String>,
scopes: Option<Vec<String>>,
options: azure_core::ClientOptions,
}
pub const DEFAULT_ENDPOINT: &str = "https://vstmr.dev.azure.com";
impl ClientBuilder {
#[doc = "Create a new instance of `ClientBuilder`."]
#[must_use]
pub fn new(credential: crate::Credential) -> Self {
Self {
credential,
endpoint: None,
scopes: None,
options: azure_core::ClientOptions::default(),
}
}
#[doc = "Set the endpoint."]
#[must_use]
pub fn endpoint(mut self, endpoint: impl Into<String>) -> Self {
self.endpoint = Some(endpoint.into());
self
}
#[doc = "Set the scopes."]
#[must_use]
pub fn scopes(mut self, scopes: &[&str]) -> Self {
self.scopes = Some(scopes.iter().map(|scope| (*scope).to_owned()).collect());
self
}
#[doc = "Set the retry options."]
#[must_use]
pub fn retry(mut self, retry: impl Into<azure_core::RetryOptions>) -> Self {
self.options = self.options.retry(retry);
self
}
#[doc = "Set the transport options."]
#[must_use]
pub fn transport(mut self, transport: impl Into<azure_core::TransportOptions>) -> Self {
self.options = self.options.transport(transport);
self
}
#[doc = "Set per-call policies."]
#[must_use]
pub fn per_call_policies(
mut self,
policies: impl Into<Vec<std::sync::Arc<dyn azure_core::Policy>>>,
) -> Self {
self.options = self.options.per_call_policies(policies);
self
}
#[doc = "Convert the builder into a `Client` instance."]
#[must_use]
pub fn build(self) -> Client {
let endpoint = self.endpoint.unwrap_or_else(|| DEFAULT_ENDPOINT.to_owned());
let scopes = self
.scopes
.unwrap_or_else(|| vec![format!("{}/", endpoint)]);
Client::new(endpoint, self.credential, scopes, self.options)
}
}
impl Client {
pub(crate) fn endpoint(&self) -> &str {
self.endpoint.as_str()
}
pub(crate) fn token_credential(&self) -> &crate::Credential {
&self.credential
}
#[allow(dead_code)]
pub(crate) fn scopes(&self) -> Vec<&str> {
self.scopes.iter().map(String::as_str).collect()
}
pub(crate) async fn send(
&self,
request: &mut azure_core::Request,
) -> azure_core::Result<azure_core::Response> {
let mut context = azure_core::Context::default();
self.pipeline.send(&mut context, request).await
}
#[doc = "Create a new `ClientBuilder`."]
#[must_use]
pub fn builder(credential: crate::Credential) -> ClientBuilder {
ClientBuilder::new(credential)
}
#[doc = "Create a new `Client`."]
#[must_use]
pub fn new(
endpoint: impl Into<String>,
credential: crate::Credential,
scopes: Vec<String>,
options: azure_core::ClientOptions,
) -> Self {
let endpoint = endpoint.into();
let pipeline = azure_core::Pipeline::new(
option_env!("CARGO_PKG_NAME"),
option_env!("CARGO_PKG_VERSION"),
options,
Vec::new(),
Vec::new(),
);
Self {
endpoint,
credential,
scopes,
pipeline,
}
}
pub fn result_meta_data_client(&self) -> result_meta_data::Client {
result_meta_data::Client(self.clone())
}
pub fn testlog_client(&self) -> testlog::Client {
testlog::Client(self.clone())
}
pub fn testlogstoreendpoint_client(&self) -> testlogstoreendpoint::Client {
testlogstoreendpoint::Client(self.clone())
}
}
pub mod testlog {
use super::models;
pub struct Client(pub(crate) super::Client);
impl Client {
#[doc = "Get list of test subresult attachments reference"]
#[doc = ""]
#[doc = "Arguments:"]
#[doc = "* `organization`: The name of the Azure DevOps organization."]
#[doc = "* `project`: Project ID or project name"]
#[doc = "* `run_id`: Id of the test run that contains the results"]
#[doc = "* `result_id`: Id of the test result that contains subresult"]
#[doc = "* `sub_result_id`: Id of the test subresult"]
#[doc = "* `type_`: type of the attachments to get"]
pub fn get_test_sub_result_logs(
&self,
organization: impl Into<String>,
project: impl Into<String>,
run_id: i32,
result_id: i32,
sub_result_id: i32,
type_: impl Into<String>,
) -> get_test_sub_result_logs::Builder {
get_test_sub_result_logs::Builder {
client: self.0.clone(),
organization: organization.into(),
project: project.into(),
run_id,
result_id,
sub_result_id,
type_: type_.into(),
directory_path: None,
file_name_prefix: None,
fetch_meta_data: None,
top: None,
continuation_token: None,
}
}
#[doc = "Get list of test result attachments reference"]
#[doc = ""]
#[doc = "Arguments:"]
#[doc = "* `organization`: The name of the Azure DevOps organization."]
#[doc = "* `project`: Project ID or project name"]
#[doc = "* `run_id`: Id of the test run that contains the result"]
#[doc = "* `result_id`: Id of the test result"]
#[doc = "* `type_`: type of attachments to get"]
pub fn get_test_result_logs(
&self,
organization: impl Into<String>,
project: impl Into<String>,
run_id: i32,
result_id: i32,
type_: impl Into<String>,
) -> get_test_result_logs::Builder {
get_test_result_logs::Builder {
client: self.0.clone(),
organization: organization.into(),
project: project.into(),
run_id,
result_id,
type_: type_.into(),
directory_path: None,
file_name_prefix: None,
fetch_meta_data: None,
top: None,
continuation_token: None,
}
}
#[doc = "Get list of test run attachments reference"]
#[doc = ""]
#[doc = "Arguments:"]
#[doc = "* `organization`: The name of the Azure DevOps organization."]
#[doc = "* `project`: Project ID or project name"]
#[doc = "* `run_id`: Id of the test run"]
#[doc = "* `type_`: type of the attachments to get"]
pub fn get_test_run_logs(
&self,
organization: impl Into<String>,
project: impl Into<String>,
run_id: i32,
type_: impl Into<String>,
) -> get_test_run_logs::Builder {
get_test_run_logs::Builder {
client: self.0.clone(),
organization: organization.into(),
project: project.into(),
run_id,
type_: type_.into(),
directory_path: None,
file_name_prefix: None,
fetch_meta_data: None,
top: None,
continuation_token: None,
}
}
}
pub mod get_test_sub_result_logs {
use super::models;
type Response = models::TestLogList;
#[derive(Clone)]
pub struct Builder {
pub(crate) client: super::super::Client,
pub(crate) organization: String,
pub(crate) project: String,
pub(crate) run_id: i32,
pub(crate) result_id: i32,
pub(crate) sub_result_id: i32,
pub(crate) type_: String,
pub(crate) directory_path: Option<String>,
pub(crate) file_name_prefix: Option<String>,
pub(crate) fetch_meta_data: Option<bool>,
pub(crate) top: Option<i32>,
pub(crate) continuation_token: Option<String>,
}
impl Builder {
#[doc = "directory path of the attachment to get"]
pub fn directory_path(mut self, directory_path: impl Into<String>) -> Self {
self.directory_path = Some(directory_path.into());
self
}
#[doc = "Filename prefix to filter the list of attachmentss"]
pub fn file_name_prefix(mut self, file_name_prefix: impl Into<String>) -> Self {
self.file_name_prefix = Some(file_name_prefix.into());
self
}
#[doc = "Default is false, set if metadata is needed"]
pub fn fetch_meta_data(mut self, fetch_meta_data: bool) -> Self {
self.fetch_meta_data = Some(fetch_meta_data);
self
}
#[doc = "Number of attachment references to return"]
pub fn top(mut self, top: i32) -> Self {
self.top = Some(top);
self
}
#[doc = "Header to pass the continuation token"]
pub fn continuation_token(mut self, continuation_token: impl Into<String>) -> Self {
self.continuation_token = Some(continuation_token.into());
self
}
pub fn into_future(
self,
) -> futures::future::BoxFuture<'static, azure_core::Result<Response>> {
Box::pin({
let this = self.clone();
async move {
let url = azure_core :: Url :: parse (& format ! ("{}/{}/{}/_apis/testresults/runs/{}/results/{}/testlog?subResultId={}&type={}" , this . client . endpoint () , & this . organization , & this . project , & this . run_id , & this . result_id , & this . sub_result_id , & this . type_)) ? ;
let mut req = azure_core::Request::new(url, azure_core::Method::Get);
if let Some(auth_header) = this
.client
.token_credential()
.http_authorization_header(&this.client.scopes)
.await?
{
req.insert_header(azure_core::headers::AUTHORIZATION, auth_header);
}
req.url_mut()
.query_pairs_mut()
.append_pair(azure_core::query_param::API_VERSION, "7.1-preview");
let sub_result_id = &this.sub_result_id;
req.url_mut()
.query_pairs_mut()
.append_pair("subResultId", &sub_result_id.to_string());
let type_ = &this.type_;
req.url_mut().query_pairs_mut().append_pair("type", type_);
if let Some(directory_path) = &this.directory_path {
req.url_mut()
.query_pairs_mut()
.append_pair("directoryPath", directory_path);
}
if let Some(file_name_prefix) = &this.file_name_prefix {
req.url_mut()
.query_pairs_mut()
.append_pair("fileNamePrefix", file_name_prefix);
}
if let Some(fetch_meta_data) = &this.fetch_meta_data {
req.url_mut()
.query_pairs_mut()
.append_pair("fetchMetaData", &fetch_meta_data.to_string());
}
if let Some(top) = &this.top {
req.url_mut()
.query_pairs_mut()
.append_pair("top", &top.to_string());
}
if let Some(continuation_token) = &this.continuation_token {
req.insert_header("continuationtoken", continuation_token);
}
let req_body = azure_core::EMPTY_BODY;
req.set_body(req_body);
let rsp = this.client.send(&mut req).await?;
let (rsp_status, rsp_headers, rsp_stream) = rsp.deconstruct();
match rsp_status {
azure_core::StatusCode::Ok => {
let rsp_body = rsp_stream.collect().await?;
let rsp_value: models::TestLogList =
serde_json::from_slice(&rsp_body).map_err(|e| {
azure_core::error::Error::full(
azure_core::error::ErrorKind::DataConversion,
e,
format!(
"Failed to deserialize response:\n{}",
String::from_utf8_lossy(&rsp_body)
),
)
})?;
Ok(rsp_value)
}
status_code => Err(azure_core::error::Error::from(
azure_core::error::ErrorKind::HttpResponse {
status: status_code,
error_code: None,
},
)),
}
}
})
}
}
}
pub mod get_test_result_logs {
use super::models;
type Response = models::TestLogList;
#[derive(Clone)]
pub struct Builder {
pub(crate) client: super::super::Client,
pub(crate) organization: String,
pub(crate) project: String,
pub(crate) run_id: i32,
pub(crate) result_id: i32,
pub(crate) type_: String,
pub(crate) directory_path: Option<String>,
pub(crate) file_name_prefix: Option<String>,
pub(crate) fetch_meta_data: Option<bool>,
pub(crate) top: Option<i32>,
pub(crate) continuation_token: Option<String>,
}
impl Builder {
#[doc = "Directory path of attachments to get"]
pub fn directory_path(mut self, directory_path: impl Into<String>) -> Self {
self.directory_path = Some(directory_path.into());
self
}
#[doc = "Filename prefix to filter the list of attachments"]
pub fn file_name_prefix(mut self, file_name_prefix: impl Into<String>) -> Self {
self.file_name_prefix = Some(file_name_prefix.into());
self
}
#[doc = "Default is false, set if metadata is needed"]
pub fn fetch_meta_data(mut self, fetch_meta_data: bool) -> Self {
self.fetch_meta_data = Some(fetch_meta_data);
self
}
#[doc = "Number of attachment references to return"]
pub fn top(mut self, top: i32) -> Self {
self.top = Some(top);
self
}
#[doc = "Header to pass the continuation token"]
pub fn continuation_token(mut self, continuation_token: impl Into<String>) -> Self {
self.continuation_token = Some(continuation_token.into());
self
}
pub fn into_future(
self,
) -> futures::future::BoxFuture<'static, azure_core::Result<Response>> {
Box::pin({
let this = self.clone();
async move {
let url = azure_core::Url::parse(&format!(
"{}/{}/{}/_apis/testresults/runs/{}/results/{}/testlog",
this.client.endpoint(),
&this.organization,
&this.project,
&this.run_id,
&this.result_id
))?;
let mut req = azure_core::Request::new(url, azure_core::Method::Get);
if let Some(auth_header) = this
.client
.token_credential()
.http_authorization_header(&this.client.scopes)
.await?
{
req.insert_header(azure_core::headers::AUTHORIZATION, auth_header);
}
req.url_mut()
.query_pairs_mut()
.append_pair(azure_core::query_param::API_VERSION, "7.1-preview");
let type_ = &this.type_;
req.url_mut().query_pairs_mut().append_pair("type", type_);
if let Some(directory_path) = &this.directory_path {
req.url_mut()
.query_pairs_mut()
.append_pair("directoryPath", directory_path);
}
if let Some(file_name_prefix) = &this.file_name_prefix {
req.url_mut()
.query_pairs_mut()
.append_pair("fileNamePrefix", file_name_prefix);
}
if let Some(fetch_meta_data) = &this.fetch_meta_data {
req.url_mut()
.query_pairs_mut()
.append_pair("fetchMetaData", &fetch_meta_data.to_string());
}
if let Some(top) = &this.top {
req.url_mut()
.query_pairs_mut()
.append_pair("top", &top.to_string());
}
if let Some(continuation_token) = &this.continuation_token {
req.insert_header("continuationtoken", continuation_token);
}
let req_body = azure_core::EMPTY_BODY;
req.set_body(req_body);
let rsp = this.client.send(&mut req).await?;
let (rsp_status, rsp_headers, rsp_stream) = rsp.deconstruct();
match rsp_status {
azure_core::StatusCode::Ok => {
let rsp_body = rsp_stream.collect().await?;
let rsp_value: models::TestLogList =
serde_json::from_slice(&rsp_body).map_err(|e| {
azure_core::error::Error::full(
azure_core::error::ErrorKind::DataConversion,
e,
format!(
"Failed to deserialize response:\n{}",
String::from_utf8_lossy(&rsp_body)
),
)
})?;
Ok(rsp_value)
}
status_code => Err(azure_core::error::Error::from(
azure_core::error::ErrorKind::HttpResponse {
status: status_code,
error_code: None,
},
)),
}
}
})
}
}
}
pub mod get_test_run_logs {
use super::models;
type Response = models::TestLogList;
#[derive(Clone)]
pub struct Builder {
pub(crate) client: super::super::Client,
pub(crate) organization: String,
pub(crate) project: String,
pub(crate) run_id: i32,
pub(crate) type_: String,
pub(crate) directory_path: Option<String>,
pub(crate) file_name_prefix: Option<String>,
pub(crate) fetch_meta_data: Option<bool>,
pub(crate) top: Option<i32>,
pub(crate) continuation_token: Option<String>,
}
impl Builder {
#[doc = "directory path for which attachments are needed"]
pub fn directory_path(mut self, directory_path: impl Into<String>) -> Self {
self.directory_path = Some(directory_path.into());
self
}
#[doc = "Filename prefix to filter the list of attachments"]
pub fn file_name_prefix(mut self, file_name_prefix: impl Into<String>) -> Self {
self.file_name_prefix = Some(file_name_prefix.into());
self
}
#[doc = "Default is false, set if metadata is needed"]
pub fn fetch_meta_data(mut self, fetch_meta_data: bool) -> Self {
self.fetch_meta_data = Some(fetch_meta_data);
self
}
#[doc = "Number of attachment references to return"]
pub fn top(mut self, top: i32) -> Self {
self.top = Some(top);
self
}
#[doc = "Header to pass the continuation token"]
pub fn continuation_token(mut self, continuation_token: impl Into<String>) -> Self {
self.continuation_token = Some(continuation_token.into());
self
}
pub fn into_future(
self,
) -> futures::future::BoxFuture<'static, azure_core::Result<Response>> {
Box::pin({
let this = self.clone();
async move {
let url = azure_core::Url::parse(&format!(
"{}/{}/{}/_apis/testresults/runs/{}/testlog",
this.client.endpoint(),
&this.organization,
&this.project,
&this.run_id
))?;
let mut req = azure_core::Request::new(url, azure_core::Method::Get);
if let Some(auth_header) = this
.client
.token_credential()
.http_authorization_header(&this.client.scopes)
.await?
{
req.insert_header(azure_core::headers::AUTHORIZATION, auth_header);
}
req.url_mut()
.query_pairs_mut()
.append_pair(azure_core::query_param::API_VERSION, "7.1-preview");
let type_ = &this.type_;
req.url_mut().query_pairs_mut().append_pair("type", type_);
if let Some(directory_path) = &this.directory_path {
req.url_mut()
.query_pairs_mut()
.append_pair("directoryPath", directory_path);
}
if let Some(file_name_prefix) = &this.file_name_prefix {
req.url_mut()
.query_pairs_mut()
.append_pair("fileNamePrefix", file_name_prefix);
}
if let Some(fetch_meta_data) = &this.fetch_meta_data {
req.url_mut()
.query_pairs_mut()
.append_pair("fetchMetaData", &fetch_meta_data.to_string());
}
if let Some(top) = &this.top {
req.url_mut()
.query_pairs_mut()
.append_pair("top", &top.to_string());
}
if let Some(continuation_token) = &this.continuation_token {
req.insert_header("continuationtoken", continuation_token);
}
let req_body = azure_core::EMPTY_BODY;
req.set_body(req_body);
let rsp = this.client.send(&mut req).await?;
let (rsp_status, rsp_headers, rsp_stream) = rsp.deconstruct();
match rsp_status {
azure_core::StatusCode::Ok => {
let rsp_body = rsp_stream.collect().await?;
let rsp_value: models::TestLogList =
serde_json::from_slice(&rsp_body).map_err(|e| {
azure_core::error::Error::full(
azure_core::error::ErrorKind::DataConversion,
e,
format!(
"Failed to deserialize response:\n{}",
String::from_utf8_lossy(&rsp_body)
),
)
})?;
Ok(rsp_value)
}
status_code => Err(azure_core::error::Error::from(
azure_core::error::ErrorKind::HttpResponse {
status: status_code,
error_code: None,
},
)),
}
}
})
}
}
}
}
pub mod testlogstoreendpoint {
use super::models;
pub struct Client(pub(crate) super::Client);
impl Client {
#[doc = "Get SAS Uri of a test subresults attachment"]
#[doc = ""]
#[doc = "Arguments:"]
#[doc = "* `organization`: The name of the Azure DevOps organization."]
#[doc = "* `project`: Project ID or project name"]
#[doc = "* `run_id`: Id of the test run that contains result"]
#[doc = "* `result_id`: Id of the test result that contains subresult"]
#[doc = "* `sub_result_id`: Id of the test subresult whose file sas uri is needed"]
#[doc = "* `type_`: type of the file"]
#[doc = "* `file_path`: filePath for which sas uri is needed"]
pub fn get_test_log_store_endpoint_details_for_sub_result_log(
&self,
organization: impl Into<String>,
project: impl Into<String>,
run_id: i32,
result_id: i32,
sub_result_id: i32,
type_: impl Into<String>,
file_path: impl Into<String>,
) -> get_test_log_store_endpoint_details_for_sub_result_log::Builder {
get_test_log_store_endpoint_details_for_sub_result_log::Builder {
client: self.0.clone(),
organization: organization.into(),
project: project.into(),
run_id,
result_id,
sub_result_id,
type_: type_.into(),
file_path: file_path.into(),
}
}
#[doc = "Get SAS Uri of a test results attachment"]
#[doc = ""]
#[doc = "Arguments:"]
#[doc = "* `organization`: The name of the Azure DevOps organization."]
#[doc = "* `project`: Project ID or project name"]
#[doc = "* `run_id`: Id of the test run that contains result"]
#[doc = "* `result_id`: Id of the test result whose files need to be downloaded"]
#[doc = "* `type_`: type of the file"]
#[doc = "* `file_path`: filePath for which sas uri is needed"]
pub fn get_test_log_store_endpoint_details_for_result_log(
&self,
organization: impl Into<String>,
project: impl Into<String>,
run_id: i32,
result_id: i32,
type_: impl Into<String>,
file_path: impl Into<String>,
) -> get_test_log_store_endpoint_details_for_result_log::Builder {
get_test_log_store_endpoint_details_for_result_log::Builder {
client: self.0.clone(),
organization: organization.into(),
project: project.into(),
run_id,
result_id,
type_: type_.into(),
file_path: file_path.into(),
}
}
#[doc = "Create empty file for a result and Get Sas uri for the file"]
#[doc = ""]
#[doc = "Arguments:"]
#[doc = "* `organization`: The name of the Azure DevOps organization."]
#[doc = "* `project`: Project ID or project name"]
#[doc = "* `run_id`: Id of the test run that contains the result"]
#[doc = "* `result_id`: Id of the test results that contains sub result"]
#[doc = "* `sub_result_id`: Id of the test sub result whose file sas uri is needed"]
#[doc = "* `file_path`: file path inside the sub result for which sas uri is needed"]
#[doc = "* `type_`: Type of the file for download"]
pub fn test_log_store_endpoint_details_for_result(
&self,
organization: impl Into<String>,
project: impl Into<String>,
run_id: i32,
result_id: i32,
sub_result_id: i32,
file_path: impl Into<String>,
type_: impl Into<String>,
) -> test_log_store_endpoint_details_for_result::Builder {
test_log_store_endpoint_details_for_result::Builder {
client: self.0.clone(),
organization: organization.into(),
project: project.into(),
run_id,
result_id,
sub_result_id,
file_path: file_path.into(),
type_: type_.into(),
}
}
#[doc = "Get SAS Uri of a test run attachment"]
#[doc = ""]
#[doc = "Arguments:"]
#[doc = "* `organization`: The name of the Azure DevOps organization."]
#[doc = "* `project`: Project ID or project name"]
#[doc = "* `run_id`: Id of the test run whose file has to be downloaded"]
#[doc = "* `type_`: type of the file"]
#[doc = "* `file_path`: filePath for which sas uri is needed"]
pub fn get_test_log_store_endpoint_details_for_run_log(
&self,
organization: impl Into<String>,
project: impl Into<String>,
run_id: i32,
type_: impl Into<String>,
file_path: impl Into<String>,
) -> get_test_log_store_endpoint_details_for_run_log::Builder {
get_test_log_store_endpoint_details_for_run_log::Builder {
client: self.0.clone(),
organization: organization.into(),
project: project.into(),
run_id,
type_: type_.into(),
file_path: file_path.into(),
}
}
#[doc = "Create empty file for a run and Get Sas uri for the file"]
#[doc = ""]
#[doc = "Arguments:"]
#[doc = "* `organization`: The name of the Azure DevOps organization."]
#[doc = "* `project`: Project ID or project name"]
#[doc = "* `run_id`: Id of the run to get endpoint details"]
#[doc = "* `test_log_store_operation_type`: Type of operation to perform using sas uri"]
pub fn test_log_store_endpoint_details_for_run(
&self,
organization: impl Into<String>,
project: impl Into<String>,
run_id: i32,
test_log_store_operation_type: impl Into<String>,
) -> test_log_store_endpoint_details_for_run::Builder {
test_log_store_endpoint_details_for_run::Builder {
client: self.0.clone(),
organization: organization.into(),
project: project.into(),
run_id,
test_log_store_operation_type: test_log_store_operation_type.into(),
file_path: None,
type_: None,
}
}
}
pub mod get_test_log_store_endpoint_details_for_sub_result_log {
use super::models;
type Response = models::TestLogStoreEndpointDetails;
#[derive(Clone)]
pub struct Builder {
pub(crate) client: super::super::Client,
pub(crate) organization: String,
pub(crate) project: String,
pub(crate) run_id: i32,
pub(crate) result_id: i32,
pub(crate) sub_result_id: i32,
pub(crate) type_: String,
pub(crate) file_path: String,
}
impl Builder {
pub fn into_future(
self,
) -> futures::future::BoxFuture<'static, azure_core::Result<Response>> {
Box::pin({
let this = self.clone();
async move {
let url = azure_core :: Url :: parse (& format ! ("{}/{}/{}/_apis/testresults/runs/{}/results/{}/testlogstoreendpoint?subResultId={}&type={}&filePath={}" , this . client . endpoint () , & this . organization , & this . project , & this . run_id , & this . result_id , & this . sub_result_id , & this . type_ , & this . file_path)) ? ;
let mut req = azure_core::Request::new(url, azure_core::Method::Get);
if let Some(auth_header) = this
.client
.token_credential()
.http_authorization_header(&this.client.scopes)
.await?
{
req.insert_header(azure_core::headers::AUTHORIZATION, auth_header);
}
req.url_mut()
.query_pairs_mut()
.append_pair(azure_core::query_param::API_VERSION, "7.1-preview");
let sub_result_id = &this.sub_result_id;
req.url_mut()
.query_pairs_mut()
.append_pair("subResultId", &sub_result_id.to_string());
let type_ = &this.type_;
req.url_mut().query_pairs_mut().append_pair("type", type_);
let file_path = &this.file_path;
req.url_mut()
.query_pairs_mut()
.append_pair("filePath", file_path);
let req_body = azure_core::EMPTY_BODY;
req.set_body(req_body);
let rsp = this.client.send(&mut req).await?;
let (rsp_status, rsp_headers, rsp_stream) = rsp.deconstruct();
match rsp_status {
azure_core::StatusCode::Ok => {
let rsp_body = rsp_stream.collect().await?;
let rsp_value: models::TestLogStoreEndpointDetails =
serde_json::from_slice(&rsp_body).map_err(|e| {
azure_core::error::Error::full(
azure_core::error::ErrorKind::DataConversion,
e,
format!(
"Failed to deserialize response:\n{}",
String::from_utf8_lossy(&rsp_body)
),
)
})?;
Ok(rsp_value)
}
status_code => Err(azure_core::error::Error::from(
azure_core::error::ErrorKind::HttpResponse {
status: status_code,
error_code: None,
},
)),
}
}
})
}
}
}
pub mod get_test_log_store_endpoint_details_for_result_log {
use super::models;
type Response = models::TestLogStoreEndpointDetails;
#[derive(Clone)]
pub struct Builder {
pub(crate) client: super::super::Client,
pub(crate) organization: String,
pub(crate) project: String,
pub(crate) run_id: i32,
pub(crate) result_id: i32,
pub(crate) type_: String,
pub(crate) file_path: String,
}
impl Builder {
pub fn into_future(
self,
) -> futures::future::BoxFuture<'static, azure_core::Result<Response>> {
Box::pin({
let this = self.clone();
async move {
let url = azure_core::Url::parse(&format!(
"{}/{}/{}/_apis/testresults/runs/{}/results/{}/testlogstoreendpoint",
this.client.endpoint(),
&this.organization,
&this.project,
&this.run_id,
&this.result_id
))?;
let mut req = azure_core::Request::new(url, azure_core::Method::Get);
if let Some(auth_header) = this
.client
.token_credential()
.http_authorization_header(&this.client.scopes)
.await?
{
req.insert_header(azure_core::headers::AUTHORIZATION, auth_header);
}
req.url_mut()
.query_pairs_mut()
.append_pair(azure_core::query_param::API_VERSION, "7.1-preview");
let type_ = &this.type_;
req.url_mut().query_pairs_mut().append_pair("type", type_);
let file_path = &this.file_path;
req.url_mut()
.query_pairs_mut()
.append_pair("filePath", file_path);
let req_body = azure_core::EMPTY_BODY;
req.set_body(req_body);
let rsp = this.client.send(&mut req).await?;
let (rsp_status, rsp_headers, rsp_stream) = rsp.deconstruct();
match rsp_status {
azure_core::StatusCode::Ok => {
let rsp_body = rsp_stream.collect().await?;
let rsp_value: models::TestLogStoreEndpointDetails =
serde_json::from_slice(&rsp_body).map_err(|e| {
azure_core::error::Error::full(
azure_core::error::ErrorKind::DataConversion,
e,
format!(
"Failed to deserialize response:\n{}",
String::from_utf8_lossy(&rsp_body)
),
)
})?;
Ok(rsp_value)
}
status_code => Err(azure_core::error::Error::from(
azure_core::error::ErrorKind::HttpResponse {
status: status_code,
error_code: None,
},
)),
}
}
})
}
}
}
pub mod test_log_store_endpoint_details_for_result {
use super::models;
type Response = models::TestLogStoreEndpointDetails;
#[derive(Clone)]
pub struct Builder {
pub(crate) client: super::super::Client,
pub(crate) organization: String,
pub(crate) project: String,
pub(crate) run_id: i32,
pub(crate) result_id: i32,
pub(crate) sub_result_id: i32,
pub(crate) file_path: String,
pub(crate) type_: String,
}
impl Builder {
pub fn into_future(
self,
) -> futures::future::BoxFuture<'static, azure_core::Result<Response>> {
Box::pin({
let this = self.clone();
async move {
let url = azure_core::Url::parse(&format!(
"{}/{}/{}/_apis/testresults/runs/{}/results/{}/testlogstoreendpoint",
this.client.endpoint(),
&this.organization,
&this.project,
&this.run_id,
&this.result_id
))?;
let mut req = azure_core::Request::new(url, azure_core::Method::Post);
if let Some(auth_header) = this
.client
.token_credential()
.http_authorization_header(&this.client.scopes)
.await?
{
req.insert_header(azure_core::headers::AUTHORIZATION, auth_header);
}
req.url_mut()
.query_pairs_mut()
.append_pair(azure_core::query_param::API_VERSION, "7.1-preview");
let sub_result_id = &this.sub_result_id;
req.url_mut()
.query_pairs_mut()
.append_pair("subResultId", &sub_result_id.to_string());
let file_path = &this.file_path;
req.url_mut()
.query_pairs_mut()
.append_pair("filePath", file_path);
let type_ = &this.type_;
req.url_mut().query_pairs_mut().append_pair("type", type_);
let req_body = azure_core::EMPTY_BODY;
req.insert_header(azure_core::headers::CONTENT_LENGTH, "0");
req.set_body(req_body);
let rsp = this.client.send(&mut req).await?;
let (rsp_status, rsp_headers, rsp_stream) = rsp.deconstruct();
match rsp_status {
azure_core::StatusCode::Ok => {
let rsp_body = rsp_stream.collect().await?;
let rsp_value: models::TestLogStoreEndpointDetails =
serde_json::from_slice(&rsp_body).map_err(|e| {
azure_core::error::Error::full(
azure_core::error::ErrorKind::DataConversion,
e,
format!(
"Failed to deserialize response:\n{}",
String::from_utf8_lossy(&rsp_body)
),
)
})?;
Ok(rsp_value)
}
status_code => Err(azure_core::error::Error::from(
azure_core::error::ErrorKind::HttpResponse {
status: status_code,
error_code: None,
},
)),
}
}
})
}
}
}
pub mod get_test_log_store_endpoint_details_for_run_log {
use super::models;
type Response = models::TestLogStoreEndpointDetails;
#[derive(Clone)]
pub struct Builder {
pub(crate) client: super::super::Client,
pub(crate) organization: String,
pub(crate) project: String,
pub(crate) run_id: i32,
pub(crate) type_: String,
pub(crate) file_path: String,
}
impl Builder {
pub fn into_future(
self,
) -> futures::future::BoxFuture<'static, azure_core::Result<Response>> {
Box::pin({
let this = self.clone();
async move {
let url = azure_core::Url::parse(&format!(
"{}/{}/{}/_apis/testresults/runs/{}/testlogstoreendpoint",
this.client.endpoint(),
&this.organization,
&this.project,
&this.run_id
))?;
let mut req = azure_core::Request::new(url, azure_core::Method::Get);
if let Some(auth_header) = this
.client
.token_credential()
.http_authorization_header(&this.client.scopes)
.await?
{
req.insert_header(azure_core::headers::AUTHORIZATION, auth_header);
}
req.url_mut()
.query_pairs_mut()
.append_pair(azure_core::query_param::API_VERSION, "7.1-preview");
let type_ = &this.type_;
req.url_mut().query_pairs_mut().append_pair("type", type_);
let file_path = &this.file_path;
req.url_mut()
.query_pairs_mut()
.append_pair("filePath", file_path);
let req_body = azure_core::EMPTY_BODY;
req.set_body(req_body);
let rsp = this.client.send(&mut req).await?;
let (rsp_status, rsp_headers, rsp_stream) = rsp.deconstruct();
match rsp_status {
azure_core::StatusCode::Ok => {
let rsp_body = rsp_stream.collect().await?;
let rsp_value: models::TestLogStoreEndpointDetails =
serde_json::from_slice(&rsp_body).map_err(|e| {
azure_core::error::Error::full(
azure_core::error::ErrorKind::DataConversion,
e,
format!(
"Failed to deserialize response:\n{}",
String::from_utf8_lossy(&rsp_body)
),
)
})?;
Ok(rsp_value)
}
status_code => Err(azure_core::error::Error::from(
azure_core::error::ErrorKind::HttpResponse {
status: status_code,
error_code: None,
},
)),
}
}
})
}
}
}
pub mod test_log_store_endpoint_details_for_run {
use super::models;
type Response = models::TestLogStoreEndpointDetails;
#[derive(Clone)]
pub struct Builder {
pub(crate) client: super::super::Client,
pub(crate) organization: String,
pub(crate) project: String,
pub(crate) run_id: i32,
pub(crate) test_log_store_operation_type: String,
pub(crate) file_path: Option<String>,
pub(crate) type_: Option<String>,
}
impl Builder {
#[doc = "file path to create an empty file"]
pub fn file_path(mut self, file_path: impl Into<String>) -> Self {
self.file_path = Some(file_path.into());
self
}
#[doc = "Default is GeneralAttachment, type of empty file to be created"]
pub fn type_(mut self, type_: impl Into<String>) -> Self {
self.type_ = Some(type_.into());
self
}
pub fn into_future(
self,
) -> futures::future::BoxFuture<'static, azure_core::Result<Response>> {
Box::pin({
let this = self.clone();
async move {
let url = azure_core::Url::parse(&format!(
"{}/{}/{}/_apis/testresults/runs/{}/testlogstoreendpoint",
this.client.endpoint(),
&this.organization,
&this.project,
&this.run_id
))?;
let mut req = azure_core::Request::new(url, azure_core::Method::Post);
if let Some(auth_header) = this
.client
.token_credential()
.http_authorization_header(&this.client.scopes)
.await?
{
req.insert_header(azure_core::headers::AUTHORIZATION, auth_header);
}
req.url_mut()
.query_pairs_mut()
.append_pair(azure_core::query_param::API_VERSION, "7.1-preview");
let test_log_store_operation_type = &this.test_log_store_operation_type;
req.url_mut().query_pairs_mut().append_pair(
"testLogStoreOperationType",
test_log_store_operation_type,
);
if let Some(file_path) = &this.file_path {
req.url_mut()
.query_pairs_mut()
.append_pair("filePath", file_path);
}
if let Some(type_) = &this.type_ {
req.url_mut().query_pairs_mut().append_pair("type", type_);
}
let req_body = azure_core::EMPTY_BODY;
req.insert_header(azure_core::headers::CONTENT_LENGTH, "0");
req.set_body(req_body);
let rsp = this.client.send(&mut req).await?;
let (rsp_status, rsp_headers, rsp_stream) = rsp.deconstruct();
match rsp_status {
azure_core::StatusCode::Ok => {
let rsp_body = rsp_stream.collect().await?;
let rsp_value: models::TestLogStoreEndpointDetails =
serde_json::from_slice(&rsp_body).map_err(|e| {
azure_core::error::Error::full(
azure_core::error::ErrorKind::DataConversion,
e,
format!(
"Failed to deserialize response:\n{}",
String::from_utf8_lossy(&rsp_body)
),
)
})?;
Ok(rsp_value)
}
status_code => Err(azure_core::error::Error::from(
azure_core::error::ErrorKind::HttpResponse {
status: status_code,
error_code: None,
},
)),
}
}
})
}
}
}
}
pub mod result_meta_data {
use super::models;
pub struct Client(pub(crate) super::Client);
impl Client {
#[doc = "Get list of test Result meta data details for corresponding testcasereferenceId"]
#[doc = ""]
#[doc = "Arguments:"]
#[doc = "* `organization`: The name of the Azure DevOps organization."]
#[doc = "* `body`: TestCaseReference Ids of the test Result to be queried, comma separated list of valid ids (limit no. of ids 200)."]
#[doc = "* `project`: Project ID or project name"]
pub fn query(
&self,
organization: impl Into<String>,
body: Vec<String>,
project: impl Into<String>,
) -> query::Builder {
query::Builder {
client: self.0.clone(),
organization: organization.into(),
body,
project: project.into(),
details_to_include: None,
}
}
#[doc = "Update properties of test result meta data"]
#[doc = ""]
#[doc = "Arguments:"]
#[doc = "* `organization`: The name of the Azure DevOps organization."]
#[doc = "* `body`: TestResultMetaData update input TestResultMetaDataUpdateInput"]
#[doc = "* `project`: Project ID or project name"]
#[doc = "* `test_case_reference_id`: TestCaseReference Id of Test Result to be updated."]
pub fn update(
&self,
organization: impl Into<String>,
body: impl Into<models::TestResultMetaDataUpdateInput>,
project: impl Into<String>,
test_case_reference_id: i32,
) -> update::Builder {
update::Builder {
client: self.0.clone(),
organization: organization.into(),
body: body.into(),
project: project.into(),
test_case_reference_id,
}
}
}
pub mod query {
use super::models;
type Response = models::TestResultMetaDataList;
#[derive(Clone)]
pub struct Builder {
pub(crate) client: super::super::Client,
pub(crate) organization: String,
pub(crate) body: Vec<String>,
pub(crate) project: String,
pub(crate) details_to_include: Option<String>,
}
impl Builder {
#[doc = "Details to include with test results metadata. Default is None. Other values are FlakyIdentifiers."]
pub fn details_to_include(mut self, details_to_include: impl Into<String>) -> Self {
self.details_to_include = Some(details_to_include.into());
self
}
pub fn into_future(
self,
) -> futures::future::BoxFuture<'static, azure_core::Result<Response>> {
Box::pin({
let this = self.clone();
async move {
let url = azure_core::Url::parse(&format!(
"{}/{}/{}/_apis/testresults/results/resultmetadata",
this.client.endpoint(),
&this.organization,
&this.project
))?;
let mut req = azure_core::Request::new(url, azure_core::Method::Post);
if let Some(auth_header) = this
.client
.token_credential()
.http_authorization_header(&this.client.scopes)
.await?
{
req.insert_header(azure_core::headers::AUTHORIZATION, auth_header);
}
req.url_mut()
.query_pairs_mut()
.append_pair(azure_core::query_param::API_VERSION, "7.1-preview");
req.insert_header("content-type", "application/json");
let req_body = azure_core::to_json(&this.body)?;
if let Some(details_to_include) = &this.details_to_include {
req.url_mut()
.query_pairs_mut()
.append_pair("detailsToInclude", details_to_include);
}
req.set_body(req_body);
let rsp = this.client.send(&mut req).await?;
let (rsp_status, rsp_headers, rsp_stream) = rsp.deconstruct();
match rsp_status {
azure_core::StatusCode::Ok => {
let rsp_body = rsp_stream.collect().await?;
let rsp_value: models::TestResultMetaDataList =
serde_json::from_slice(&rsp_body).map_err(|e| {
azure_core::error::Error::full(
azure_core::error::ErrorKind::DataConversion,
e,
format!(
"Failed to deserialize response:\n{}",
String::from_utf8_lossy(&rsp_body)
),
)
})?;
Ok(rsp_value)
}
status_code => Err(azure_core::error::Error::from(
azure_core::error::ErrorKind::HttpResponse {
status: status_code,
error_code: None,
},
)),
}
}
})
}
}
}
pub mod update {
use super::models;
type Response = models::TestResultMetaData;
#[derive(Clone)]
pub struct Builder {
pub(crate) client: super::super::Client,
pub(crate) organization: String,
pub(crate) body: models::TestResultMetaDataUpdateInput,
pub(crate) project: String,
pub(crate) test_case_reference_id: i32,
}
impl Builder {
pub fn into_future(
self,
) -> futures::future::BoxFuture<'static, azure_core::Result<Response>> {
Box::pin({
let this = self.clone();
async move {
let url = azure_core::Url::parse(&format!(
"{}/{}/{}/_apis/testresults/results/resultmetadata/{}",
this.client.endpoint(),
&this.organization,
&this.project,
&this.test_case_reference_id
))?;
let mut req = azure_core::Request::new(url, azure_core::Method::Patch);
if let Some(auth_header) = this
.client
.token_credential()
.http_authorization_header(&this.client.scopes)
.await?
{
req.insert_header(azure_core::headers::AUTHORIZATION, auth_header);
}
req.url_mut()
.query_pairs_mut()
.append_pair(azure_core::query_param::API_VERSION, "7.1-preview");
req.insert_header("content-type", "application/json");
let req_body = azure_core::to_json(&this.body)?;
req.set_body(req_body);
let rsp = this.client.send(&mut req).await?;
let (rsp_status, rsp_headers, rsp_stream) = rsp.deconstruct();
match rsp_status {
azure_core::StatusCode::Ok => {
let rsp_body = rsp_stream.collect().await?;
let rsp_value: models::TestResultMetaData =
serde_json::from_slice(&rsp_body).map_err(|e| {
azure_core::error::Error::full(
azure_core::error::ErrorKind::DataConversion,
e,
format!(
"Failed to deserialize response:\n{}",
String::from_utf8_lossy(&rsp_body)
),
)
})?;
Ok(rsp_value)
}
status_code => Err(azure_core::error::Error::from(
azure_core::error::ErrorKind::HttpResponse {
status: status_code,
error_code: None,
},
)),
}
}
})
}
}
}
}