@@ -214,19 +214,19 @@ pub enum UpdateAWSAccountError {
214214}
215215
216216#[ derive( Debug , Clone ) ]
217- pub struct AwsIntegrationAPI {
217+ pub struct AWSIntegrationAPI {
218218 config : configuration:: Configuration ,
219219}
220220
221- impl Default for AwsIntegrationAPI {
221+ impl Default for AWSIntegrationAPI {
222222 fn default ( ) -> Self {
223223 Self {
224224 config : configuration:: Configuration :: new ( ) ,
225225 }
226226 }
227227}
228228
229- impl AwsIntegrationAPI {
229+ impl AWSIntegrationAPI {
230230 pub fn new ( ) -> Self {
231231 Self :: default ( )
232232 }
@@ -411,7 +411,7 @@ impl AwsIntegrationAPI {
411411 & self ,
412412 params : CreateAWSTagFilterParams ,
413413 ) -> Result <
414- Option < std:: collections:: HashMap < String , serde_json:: Value > > ,
414+ Option < std:: collections:: BTreeMap < String , serde_json:: Value > > ,
415415 Error < CreateAWSTagFilterError > ,
416416 > {
417417 match self . create_aws_tag_filter_with_http_info ( params) . await {
@@ -425,7 +425,7 @@ impl AwsIntegrationAPI {
425425 & self ,
426426 params : CreateAWSTagFilterParams ,
427427 ) -> Result <
428- ResponseContent < std:: collections:: HashMap < String , serde_json:: Value > > ,
428+ ResponseContent < std:: collections:: BTreeMap < String , serde_json:: Value > > ,
429429 Error < CreateAWSTagFilterError > ,
430430 > {
431431 let local_configuration = & self . config ;
@@ -470,7 +470,7 @@ impl AwsIntegrationAPI {
470470 let local_content = local_resp. text ( ) . await ?;
471471
472472 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 > > =
474474 serde_json:: from_str ( & local_content) . ok ( ) ;
475475 Ok ( ResponseContent {
476476 status : local_status,
@@ -577,7 +577,7 @@ impl AwsIntegrationAPI {
577577 & self ,
578578 params : DeleteAWSAccountParams ,
579579 ) -> Result <
580- Option < std:: collections:: HashMap < String , serde_json:: Value > > ,
580+ Option < std:: collections:: BTreeMap < String , serde_json:: Value > > ,
581581 Error < DeleteAWSAccountError > ,
582582 > {
583583 match self . delete_aws_account_with_http_info ( params) . await {
@@ -591,7 +591,7 @@ impl AwsIntegrationAPI {
591591 & self ,
592592 params : DeleteAWSAccountParams ,
593593 ) -> Result <
594- ResponseContent < std:: collections:: HashMap < String , serde_json:: Value > > ,
594+ ResponseContent < std:: collections:: BTreeMap < String , serde_json:: Value > > ,
595595 Error < DeleteAWSAccountError > ,
596596 > {
597597 let local_configuration = & self . config ;
@@ -633,7 +633,7 @@ impl AwsIntegrationAPI {
633633 let local_content = local_resp. text ( ) . await ?;
634634
635635 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 > > =
637637 serde_json:: from_str ( & local_content) . ok ( ) ;
638638 Ok ( ResponseContent {
639639 status : local_status,
@@ -743,7 +743,7 @@ impl AwsIntegrationAPI {
743743 & self ,
744744 params : DeleteAWSTagFilterParams ,
745745 ) -> Result <
746- Option < std:: collections:: HashMap < String , serde_json:: Value > > ,
746+ Option < std:: collections:: BTreeMap < String , serde_json:: Value > > ,
747747 Error < DeleteAWSTagFilterError > ,
748748 > {
749749 match self . delete_aws_tag_filter_with_http_info ( params) . await {
@@ -757,7 +757,7 @@ impl AwsIntegrationAPI {
757757 & self ,
758758 params : DeleteAWSTagFilterParams ,
759759 ) -> Result <
760- ResponseContent < std:: collections:: HashMap < String , serde_json:: Value > > ,
760+ ResponseContent < std:: collections:: BTreeMap < String , serde_json:: Value > > ,
761761 Error < DeleteAWSTagFilterError > ,
762762 > {
763763 let local_configuration = & self . config ;
@@ -802,7 +802,7 @@ impl AwsIntegrationAPI {
802802 let local_content = local_resp. text ( ) . await ?;
803803
804804 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 > > =
806806 serde_json:: from_str ( & local_content) . ok ( ) ;
807807 Ok ( ResponseContent {
808808 status : local_status,
@@ -1127,7 +1127,7 @@ impl AwsIntegrationAPI {
11271127 & self ,
11281128 params : UpdateAWSAccountParams ,
11291129 ) -> Result <
1130- Option < std:: collections:: HashMap < String , serde_json:: Value > > ,
1130+ Option < std:: collections:: BTreeMap < String , serde_json:: Value > > ,
11311131 Error < UpdateAWSAccountError > ,
11321132 > {
11331133 match self . update_aws_account_with_http_info ( params) . await {
@@ -1141,7 +1141,7 @@ impl AwsIntegrationAPI {
11411141 & self ,
11421142 params : UpdateAWSAccountParams ,
11431143 ) -> Result <
1144- ResponseContent < std:: collections:: HashMap < String , serde_json:: Value > > ,
1144+ ResponseContent < std:: collections:: BTreeMap < String , serde_json:: Value > > ,
11451145 Error < UpdateAWSAccountError > ,
11461146 > {
11471147 let local_configuration = & self . config ;
@@ -1197,7 +1197,7 @@ impl AwsIntegrationAPI {
11971197 let local_content = local_resp. text ( ) . await ?;
11981198
11991199 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 > > =
12011201 serde_json:: from_str ( & local_content) . ok ( ) ;
12021202 Ok ( ResponseContent {
12031203 status : local_status,
0 commit comments