@@ -27,9 +27,9 @@ namespace Awstest
27
27
}
28
28
}
29
29
30
- Aws::Crt::String Product::s_getModelName () noexcept { return Aws::Crt::String ( " awstest#Product" ); }
30
+ const char * Product::MODEL_NAME = " awstest#Product" ;
31
31
32
- Aws::Crt::String Product::GetModelName () const noexcept { return Product::s_getModelName () ; }
32
+ Aws::Crt::String Product::GetModelName () const noexcept { return Product::MODEL_NAME ; }
33
33
34
34
Aws::Crt::ScopedResource<AbstractShapeBase> Product::s_allocateFromPayload (
35
35
Aws::Crt::StringView stringView,
@@ -83,9 +83,9 @@ namespace Awstest
83
83
}
84
84
}
85
85
86
- Aws::Crt::String Customer::s_getModelName () noexcept { return Aws::Crt::String ( " awstest#Customer" ); }
86
+ const char * Customer::MODEL_NAME = " awstest#Customer" ;
87
87
88
- Aws::Crt::String Customer::GetModelName () const noexcept { return Customer::s_getModelName () ; }
88
+ Aws::Crt::String Customer::GetModelName () const noexcept { return Customer::MODEL_NAME ; }
89
89
90
90
Aws::Crt::ScopedResource<AbstractShapeBase> Customer::s_allocateFromPayload (
91
91
Aws::Crt::StringView stringView,
@@ -131,9 +131,9 @@ namespace Awstest
131
131
}
132
132
}
133
133
134
- Aws::Crt::String Pair::s_getModelName () noexcept { return Aws::Crt::String ( " awstest#Pair" ); }
134
+ const char * Pair::MODEL_NAME = " awstest#Pair" ;
135
135
136
- Aws::Crt::String Pair::GetModelName () const noexcept { return Pair::s_getModelName () ; }
136
+ Aws::Crt::String Pair::GetModelName () const noexcept { return Pair::MODEL_NAME ; }
137
137
138
138
Aws::Crt::ScopedResource<AbstractShapeBase> Pair::s_allocateFromPayload (
139
139
Aws::Crt::StringView stringView,
@@ -334,9 +334,9 @@ namespace Awstest
334
334
return Aws::Crt::Optional<FruitEnum>();
335
335
}
336
336
337
- Aws::Crt::String MessageData::s_getModelName () noexcept { return Aws::Crt::String ( " awstest#MessageData" ); }
337
+ const char * MessageData::MODEL_NAME = " awstest#MessageData" ;
338
338
339
- Aws::Crt::String MessageData::GetModelName () const noexcept { return MessageData::s_getModelName () ; }
339
+ Aws::Crt::String MessageData::GetModelName () const noexcept { return MessageData::MODEL_NAME ; }
340
340
341
341
Aws::Crt::ScopedResource<AbstractShapeBase> MessageData::s_allocateFromPayload (
342
342
Aws::Crt::StringView stringView,
@@ -410,15 +410,9 @@ namespace Awstest
410
410
return *this ;
411
411
}
412
412
413
- Aws::Crt::String EchoStreamingMessage::s_getModelName () noexcept
414
- {
415
- return Aws::Crt::String (" awstest#EchoStreamingMessage" );
416
- }
413
+ const char *EchoStreamingMessage::MODEL_NAME = " awstest#EchoStreamingMessage" ;
417
414
418
- Aws::Crt::String EchoStreamingMessage::GetModelName () const noexcept
419
- {
420
- return EchoStreamingMessage::s_getModelName ();
421
- }
415
+ Aws::Crt::String EchoStreamingMessage::GetModelName () const noexcept { return EchoStreamingMessage::MODEL_NAME; }
422
416
423
417
Aws::Crt::ScopedResource<AbstractShapeBase> EchoStreamingMessage::s_allocateFromPayload (
424
418
Aws::Crt::StringView stringView,
@@ -473,14 +467,11 @@ namespace Awstest
473
467
}
474
468
}
475
469
476
- Aws::Crt::String GetAllProductsResponse::s_getModelName () noexcept
477
- {
478
- return Aws::Crt::String (" awstest#GetAllProductsResponse" );
479
- }
470
+ const char *GetAllProductsResponse::MODEL_NAME = " awstest#GetAllProductsResponse" ;
480
471
481
472
Aws::Crt::String GetAllProductsResponse::GetModelName () const noexcept
482
473
{
483
- return GetAllProductsResponse::s_getModelName () ;
474
+ return GetAllProductsResponse::MODEL_NAME ;
484
475
}
485
476
486
477
Aws::Crt::ScopedResource<AbstractShapeBase> GetAllProductsResponse::s_allocateFromPayload (
@@ -517,15 +508,9 @@ namespace Awstest
517
508
(void )jsonView;
518
509
}
519
510
520
- Aws::Crt::String GetAllProductsRequest::s_getModelName () noexcept
521
- {
522
- return Aws::Crt::String (" awstest#GetAllProductsRequest" );
523
- }
511
+ const char *GetAllProductsRequest::MODEL_NAME = " awstest#GetAllProductsRequest" ;
524
512
525
- Aws::Crt::String GetAllProductsRequest::GetModelName () const noexcept
526
- {
527
- return GetAllProductsRequest::s_getModelName ();
528
- }
513
+ Aws::Crt::String GetAllProductsRequest::GetModelName () const noexcept { return GetAllProductsRequest::MODEL_NAME; }
529
514
530
515
Aws::Crt::ScopedResource<AbstractShapeBase> GetAllProductsRequest::s_allocateFromPayload (
531
516
Aws::Crt::StringView stringView,
@@ -582,14 +567,11 @@ namespace Awstest
582
567
}
583
568
}
584
569
585
- Aws::Crt::String GetAllCustomersResponse::s_getModelName () noexcept
586
- {
587
- return Aws::Crt::String (" awstest#GetAllCustomersResponse" );
588
- }
570
+ const char *GetAllCustomersResponse::MODEL_NAME = " awstest#GetAllCustomersResponse" ;
589
571
590
572
Aws::Crt::String GetAllCustomersResponse::GetModelName () const noexcept
591
573
{
592
- return GetAllCustomersResponse::s_getModelName () ;
574
+ return GetAllCustomersResponse::MODEL_NAME ;
593
575
}
594
576
595
577
Aws::Crt::ScopedResource<AbstractShapeBase> GetAllCustomersResponse::s_allocateFromPayload (
@@ -626,14 +608,11 @@ namespace Awstest
626
608
(void )jsonView;
627
609
}
628
610
629
- Aws::Crt::String GetAllCustomersRequest::s_getModelName () noexcept
630
- {
631
- return Aws::Crt::String (" awstest#GetAllCustomersRequest" );
632
- }
611
+ const char *GetAllCustomersRequest::MODEL_NAME = " awstest#GetAllCustomersRequest" ;
633
612
634
613
Aws::Crt::String GetAllCustomersRequest::GetModelName () const noexcept
635
614
{
636
- return GetAllCustomersRequest::s_getModelName () ;
615
+ return GetAllCustomersRequest::MODEL_NAME ;
637
616
}
638
617
639
618
Aws::Crt::ScopedResource<AbstractShapeBase> GetAllCustomersRequest::s_allocateFromPayload (
@@ -678,15 +657,9 @@ namespace Awstest
678
657
}
679
658
}
680
659
681
- Aws::Crt::String EchoMessageResponse::s_getModelName () noexcept
682
- {
683
- return Aws::Crt::String (" awstest#EchoMessageResponse" );
684
- }
660
+ const char *EchoMessageResponse::MODEL_NAME = " awstest#EchoMessageResponse" ;
685
661
686
- Aws::Crt::String EchoMessageResponse::GetModelName () const noexcept
687
- {
688
- return EchoMessageResponse::s_getModelName ();
689
- }
662
+ Aws::Crt::String EchoMessageResponse::GetModelName () const noexcept { return EchoMessageResponse::MODEL_NAME; }
690
663
691
664
Aws::Crt::ScopedResource<AbstractShapeBase> EchoMessageResponse::s_allocateFromPayload (
692
665
Aws::Crt::StringView stringView,
@@ -730,12 +703,9 @@ namespace Awstest
730
703
}
731
704
}
732
705
733
- Aws::Crt::String EchoMessageRequest::s_getModelName () noexcept
734
- {
735
- return Aws::Crt::String (" awstest#EchoMessageRequest" );
736
- }
706
+ const char *EchoMessageRequest::MODEL_NAME = " awstest#EchoMessageRequest" ;
737
707
738
- Aws::Crt::String EchoMessageRequest::GetModelName () const noexcept { return EchoMessageRequest::s_getModelName () ; }
708
+ Aws::Crt::String EchoMessageRequest::GetModelName () const noexcept { return EchoMessageRequest::MODEL_NAME ; }
739
709
740
710
Aws::Crt::ScopedResource<AbstractShapeBase> EchoMessageRequest::s_allocateFromPayload (
741
711
Aws::Crt::StringView stringView,
@@ -771,15 +741,9 @@ namespace Awstest
771
741
(void )jsonView;
772
742
}
773
743
774
- Aws::Crt::String EchoStreamingResponse::s_getModelName () noexcept
775
- {
776
- return Aws::Crt::String (" awstest#EchoStreamingResponse" );
777
- }
744
+ const char *EchoStreamingResponse::MODEL_NAME = " awstest#EchoStreamingResponse" ;
778
745
779
- Aws::Crt::String EchoStreamingResponse::GetModelName () const noexcept
780
- {
781
- return EchoStreamingResponse::s_getModelName ();
782
- }
746
+ Aws::Crt::String EchoStreamingResponse::GetModelName () const noexcept { return EchoStreamingResponse::MODEL_NAME; }
783
747
784
748
Aws::Crt::ScopedResource<AbstractShapeBase> EchoStreamingResponse::s_allocateFromPayload (
785
749
Aws::Crt::StringView stringView,
@@ -815,15 +779,9 @@ namespace Awstest
815
779
(void )jsonView;
816
780
}
817
781
818
- Aws::Crt::String EchoStreamingRequest::s_getModelName () noexcept
819
- {
820
- return Aws::Crt::String (" awstest#EchoStreamingRequest" );
821
- }
782
+ const char *EchoStreamingRequest::MODEL_NAME = " awstest#EchoStreamingRequest" ;
822
783
823
- Aws::Crt::String EchoStreamingRequest::GetModelName () const noexcept
824
- {
825
- return EchoStreamingRequest::s_getModelName ();
826
- }
784
+ Aws::Crt::String EchoStreamingRequest::GetModelName () const noexcept { return EchoStreamingRequest::MODEL_NAME; }
827
785
828
786
Aws::Crt::ScopedResource<AbstractShapeBase> EchoStreamingRequest::s_allocateFromPayload (
829
787
Aws::Crt::StringView stringView,
@@ -870,9 +828,9 @@ namespace Awstest
870
828
}
871
829
}
872
830
873
- Aws::Crt::String ServiceError::s_getModelName () noexcept { return Aws::Crt::String ( " awstest#ServiceError" ); }
831
+ const char * ServiceError::MODEL_NAME = " awstest#ServiceError" ;
874
832
875
- Aws::Crt::String ServiceError::GetModelName () const noexcept { return ServiceError::s_getModelName () ; }
833
+ Aws::Crt::String ServiceError::GetModelName () const noexcept { return ServiceError::MODEL_NAME ; }
876
834
877
835
Aws::Crt::ScopedResource<OperationError> ServiceError::s_allocateFromPayload (
878
836
Aws::Crt::StringView stringView,
@@ -908,14 +866,11 @@ namespace Awstest
908
866
(void )jsonView;
909
867
}
910
868
911
- Aws::Crt::String CauseServiceErrorResponse::s_getModelName () noexcept
912
- {
913
- return Aws::Crt::String (" awstest#CauseServiceErrorResponse" );
914
- }
869
+ const char *CauseServiceErrorResponse::MODEL_NAME = " awstest#CauseServiceErrorResponse" ;
915
870
916
871
Aws::Crt::String CauseServiceErrorResponse::GetModelName () const noexcept
917
872
{
918
- return CauseServiceErrorResponse::s_getModelName () ;
873
+ return CauseServiceErrorResponse::MODEL_NAME ;
919
874
}
920
875
921
876
Aws::Crt::ScopedResource<AbstractShapeBase> CauseServiceErrorResponse::s_allocateFromPayload (
@@ -952,14 +907,11 @@ namespace Awstest
952
907
(void )jsonView;
953
908
}
954
909
955
- Aws::Crt::String CauseServiceErrorRequest::s_getModelName () noexcept
956
- {
957
- return Aws::Crt::String (" awstest#CauseServiceErrorRequest" );
958
- }
910
+ const char *CauseServiceErrorRequest::MODEL_NAME = " awstest#CauseServiceErrorRequest" ;
959
911
960
912
Aws::Crt::String CauseServiceErrorRequest::GetModelName () const noexcept
961
913
{
962
- return CauseServiceErrorRequest::s_getModelName () ;
914
+ return CauseServiceErrorRequest::MODEL_NAME ;
963
915
}
964
916
965
917
Aws::Crt::ScopedResource<AbstractShapeBase> CauseServiceErrorRequest::s_allocateFromPayload (
0 commit comments