@@ -214,19 +214,19 @@ pub enum UpdateAWSAccountError {
214
214
}
215
215
216
216
#[ derive( Debug , Clone ) ]
217
- pub struct AwsIntegrationAPI {
217
+ pub struct AWSIntegrationAPI {
218
218
config : configuration:: Configuration ,
219
219
}
220
220
221
- impl Default for AwsIntegrationAPI {
221
+ impl Default for AWSIntegrationAPI {
222
222
fn default ( ) -> Self {
223
223
Self {
224
224
config : configuration:: Configuration :: new ( ) ,
225
225
}
226
226
}
227
227
}
228
228
229
- impl AwsIntegrationAPI {
229
+ impl AWSIntegrationAPI {
230
230
pub fn new ( ) -> Self {
231
231
Self :: default ( )
232
232
}
@@ -411,7 +411,7 @@ impl AwsIntegrationAPI {
411
411
& self ,
412
412
params : CreateAWSTagFilterParams ,
413
413
) -> Result <
414
- Option < std:: collections:: HashMap < String , serde_json:: Value > > ,
414
+ Option < std:: collections:: BTreeMap < String , serde_json:: Value > > ,
415
415
Error < CreateAWSTagFilterError > ,
416
416
> {
417
417
match self . create_aws_tag_filter_with_http_info ( params) . await {
@@ -425,7 +425,7 @@ impl AwsIntegrationAPI {
425
425
& self ,
426
426
params : CreateAWSTagFilterParams ,
427
427
) -> Result <
428
- ResponseContent < std:: collections:: HashMap < String , serde_json:: Value > > ,
428
+ ResponseContent < std:: collections:: BTreeMap < String , serde_json:: Value > > ,
429
429
Error < CreateAWSTagFilterError > ,
430
430
> {
431
431
let local_configuration = & self . config ;
@@ -470,7 +470,7 @@ impl AwsIntegrationAPI {
470
470
let local_content = local_resp. text ( ) . await ?;
471
471
472
472
if !local_status. is_client_error ( ) && !local_status. is_server_error ( ) {
473
- let local_entity: Option < std:: collections:: HashMap < String , serde_json:: Value > > =
473
+ let local_entity: Option < std:: collections:: BTreeMap < String , serde_json:: Value > > =
474
474
serde_json:: from_str ( & local_content) . ok ( ) ;
475
475
Ok ( ResponseContent {
476
476
status : local_status,
@@ -577,7 +577,7 @@ impl AwsIntegrationAPI {
577
577
& self ,
578
578
params : DeleteAWSAccountParams ,
579
579
) -> Result <
580
- Option < std:: collections:: HashMap < String , serde_json:: Value > > ,
580
+ Option < std:: collections:: BTreeMap < String , serde_json:: Value > > ,
581
581
Error < DeleteAWSAccountError > ,
582
582
> {
583
583
match self . delete_aws_account_with_http_info ( params) . await {
@@ -591,7 +591,7 @@ impl AwsIntegrationAPI {
591
591
& self ,
592
592
params : DeleteAWSAccountParams ,
593
593
) -> Result <
594
- ResponseContent < std:: collections:: HashMap < String , serde_json:: Value > > ,
594
+ ResponseContent < std:: collections:: BTreeMap < String , serde_json:: Value > > ,
595
595
Error < DeleteAWSAccountError > ,
596
596
> {
597
597
let local_configuration = & self . config ;
@@ -633,7 +633,7 @@ impl AwsIntegrationAPI {
633
633
let local_content = local_resp. text ( ) . await ?;
634
634
635
635
if !local_status. is_client_error ( ) && !local_status. is_server_error ( ) {
636
- let local_entity: Option < std:: collections:: HashMap < String , serde_json:: Value > > =
636
+ let local_entity: Option < std:: collections:: BTreeMap < String , serde_json:: Value > > =
637
637
serde_json:: from_str ( & local_content) . ok ( ) ;
638
638
Ok ( ResponseContent {
639
639
status : local_status,
@@ -743,7 +743,7 @@ impl AwsIntegrationAPI {
743
743
& self ,
744
744
params : DeleteAWSTagFilterParams ,
745
745
) -> Result <
746
- Option < std:: collections:: HashMap < String , serde_json:: Value > > ,
746
+ Option < std:: collections:: BTreeMap < String , serde_json:: Value > > ,
747
747
Error < DeleteAWSTagFilterError > ,
748
748
> {
749
749
match self . delete_aws_tag_filter_with_http_info ( params) . await {
@@ -757,7 +757,7 @@ impl AwsIntegrationAPI {
757
757
& self ,
758
758
params : DeleteAWSTagFilterParams ,
759
759
) -> Result <
760
- ResponseContent < std:: collections:: HashMap < String , serde_json:: Value > > ,
760
+ ResponseContent < std:: collections:: BTreeMap < String , serde_json:: Value > > ,
761
761
Error < DeleteAWSTagFilterError > ,
762
762
> {
763
763
let local_configuration = & self . config ;
@@ -802,7 +802,7 @@ impl AwsIntegrationAPI {
802
802
let local_content = local_resp. text ( ) . await ?;
803
803
804
804
if !local_status. is_client_error ( ) && !local_status. is_server_error ( ) {
805
- let local_entity: Option < std:: collections:: HashMap < String , serde_json:: Value > > =
805
+ let local_entity: Option < std:: collections:: BTreeMap < String , serde_json:: Value > > =
806
806
serde_json:: from_str ( & local_content) . ok ( ) ;
807
807
Ok ( ResponseContent {
808
808
status : local_status,
@@ -1127,7 +1127,7 @@ impl AwsIntegrationAPI {
1127
1127
& self ,
1128
1128
params : UpdateAWSAccountParams ,
1129
1129
) -> Result <
1130
- Option < std:: collections:: HashMap < String , serde_json:: Value > > ,
1130
+ Option < std:: collections:: BTreeMap < String , serde_json:: Value > > ,
1131
1131
Error < UpdateAWSAccountError > ,
1132
1132
> {
1133
1133
match self . update_aws_account_with_http_info ( params) . await {
@@ -1141,7 +1141,7 @@ impl AwsIntegrationAPI {
1141
1141
& self ,
1142
1142
params : UpdateAWSAccountParams ,
1143
1143
) -> Result <
1144
- ResponseContent < std:: collections:: HashMap < String , serde_json:: Value > > ,
1144
+ ResponseContent < std:: collections:: BTreeMap < String , serde_json:: Value > > ,
1145
1145
Error < UpdateAWSAccountError > ,
1146
1146
> {
1147
1147
let local_configuration = & self . config ;
@@ -1197,7 +1197,7 @@ impl AwsIntegrationAPI {
1197
1197
let local_content = local_resp. text ( ) . await ?;
1198
1198
1199
1199
if !local_status. is_client_error ( ) && !local_status. is_server_error ( ) {
1200
- let local_entity: Option < std:: collections:: HashMap < String , serde_json:: Value > > =
1200
+ let local_entity: Option < std:: collections:: BTreeMap < String , serde_json:: Value > > =
1201
1201
serde_json:: from_str ( & local_content) . ok ( ) ;
1202
1202
Ok ( ResponseContent {
1203
1203
status : local_status,
0 commit comments