superposition-sdk 0.92.0__py3-none-any.whl → 0.93.1__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of superposition-sdk might be problematic. Click here for more details.

@@ -409,6 +409,23 @@ APPLICABLE_VARIANTS_INPUT = Schema.collection(
409
409
  }
410
410
  )
411
411
 
412
+ OVERRIDES = Schema.collection(
413
+ id=ShapeID("io.superposition#Overrides"),
414
+ shape_type=ShapeType.MAP,
415
+ members={
416
+ "key": {
417
+ "target": STRING,
418
+ "index": 0,
419
+ },
420
+
421
+ "value": {
422
+ "target": DOCUMENT,
423
+ "index": 1,
424
+ },
425
+
426
+ }
427
+ )
428
+
412
429
  VARIANT_TYPE = Schema.collection(
413
430
  id=ShapeID("io.superposition#VariantType"),
414
431
  shape_type=ShapeType.ENUM,
@@ -467,7 +484,7 @@ VARIANT = Schema.collection(
467
484
  },
468
485
 
469
486
  "overrides": {
470
- "target": DOCUMENT,
487
+ "target": OVERRIDES,
471
488
  "index": 4,
472
489
  "traits": [
473
490
  Trait.new(id=ShapeID("smithy.api#required")),
@@ -527,11 +544,57 @@ APPLICABLE_VARIANTS = Schema(
527
544
 
528
545
  )
529
546
 
547
+ AUDIT_ACTION = Schema.collection(
548
+ id=ShapeID("io.superposition#AuditAction"),
549
+ shape_type=ShapeType.ENUM,
550
+ members={
551
+ "INSERT": {
552
+ "target": UNIT,
553
+ "index": 0,
554
+ "traits": [
555
+ Trait.new(id=ShapeID("smithy.api#enumValue"), value="INSERT"),
556
+
557
+ ],
558
+ },
559
+
560
+ "UPDATE": {
561
+ "target": UNIT,
562
+ "index": 1,
563
+ "traits": [
564
+ Trait.new(id=ShapeID("smithy.api#enumValue"), value="UPDATE"),
565
+
566
+ ],
567
+ },
568
+
569
+ "DELETE": {
570
+ "target": UNIT,
571
+ "index": 2,
572
+ "traits": [
573
+ Trait.new(id=ShapeID("smithy.api#enumValue"), value="DELETE"),
574
+
575
+ ],
576
+ },
577
+
578
+ }
579
+ )
580
+
581
+ AUDIT_ACTION_LIST = Schema.collection(
582
+ id=ShapeID("io.superposition#AuditActionList"),
583
+ shape_type=ShapeType.LIST,
584
+ members={
585
+ "member": {
586
+ "target": AUDIT_ACTION,
587
+ "index": 0,
588
+ },
589
+
590
+ }
591
+ )
592
+
530
593
  SORT_BY = Schema.collection(
531
594
  id=ShapeID("io.superposition#SortBy"),
532
595
  shape_type=ShapeType.ENUM,
533
596
  members={
534
- "Desc": {
597
+ "DESC": {
535
598
  "target": UNIT,
536
599
  "index": 0,
537
600
  "traits": [
@@ -540,7 +603,7 @@ SORT_BY = Schema.collection(
540
603
  ],
541
604
  },
542
605
 
543
- "Asc": {
606
+ "ASC": {
544
607
  "target": UNIT,
545
608
  "index": 1,
546
609
  "traits": [
@@ -628,7 +691,7 @@ LIST_AUDIT_LOGS_INPUT = Schema.collection(
628
691
  },
629
692
 
630
693
  "tables": {
631
- "target": STRING,
694
+ "target": STRING_LIST,
632
695
  "index": 7,
633
696
  "traits": [
634
697
  Trait.new(id=ShapeID("smithy.api#notProperty")),
@@ -638,7 +701,7 @@ LIST_AUDIT_LOGS_INPUT = Schema.collection(
638
701
  },
639
702
 
640
703
  "action": {
641
- "target": STRING,
704
+ "target": AUDIT_ACTION_LIST,
642
705
  "index": 8,
643
706
  "traits": [
644
707
  Trait.new(id=ShapeID("smithy.api#notProperty")),
@@ -674,39 +737,68 @@ AUDIT_LOG_FULL = Schema.collection(
674
737
  id=ShapeID("io.superposition#AuditLogFull"),
675
738
 
676
739
  members={
677
- "table_name": {
740
+ "id": {
678
741
  "target": STRING,
679
742
  "index": 0,
743
+ "traits": [
744
+ Trait.new(id=ShapeID("smithy.api#required")),
745
+
746
+ ],
680
747
  },
681
748
 
682
- "user_name": {
749
+ "table_name": {
683
750
  "target": STRING,
684
751
  "index": 1,
752
+ "traits": [
753
+ Trait.new(id=ShapeID("smithy.api#required")),
754
+
755
+ ],
756
+ },
757
+
758
+ "user_name": {
759
+ "target": STRING,
760
+ "index": 2,
761
+ "traits": [
762
+ Trait.new(id=ShapeID("smithy.api#required")),
763
+
764
+ ],
685
765
  },
686
766
 
687
767
  "timestamp": {
688
768
  "target": DATE_TIME,
689
- "index": 2,
769
+ "index": 3,
770
+ "traits": [
771
+ Trait.new(id=ShapeID("smithy.api#required")),
772
+
773
+ ],
690
774
  },
691
775
 
692
776
  "action": {
693
- "target": STRING,
694
- "index": 3,
777
+ "target": AUDIT_ACTION,
778
+ "index": 4,
779
+ "traits": [
780
+ Trait.new(id=ShapeID("smithy.api#required")),
781
+
782
+ ],
695
783
  },
696
784
 
697
785
  "original_data": {
698
786
  "target": DOCUMENT,
699
- "index": 4,
787
+ "index": 5,
700
788
  },
701
789
 
702
790
  "new_data": {
703
791
  "target": DOCUMENT,
704
- "index": 5,
792
+ "index": 6,
705
793
  },
706
794
 
707
795
  "query": {
708
796
  "target": STRING,
709
- "index": 6,
797
+ "index": 7,
798
+ "traits": [
799
+ Trait.new(id=ShapeID("smithy.api#required")),
800
+
801
+ ],
710
802
  },
711
803
 
712
804
  }
@@ -735,16 +827,28 @@ LIST_AUDIT_LOGS_OUTPUT = Schema.collection(
735
827
  "total_pages": {
736
828
  "target": INTEGER,
737
829
  "index": 0,
830
+ "traits": [
831
+ Trait.new(id=ShapeID("smithy.api#required")),
832
+
833
+ ],
738
834
  },
739
835
 
740
836
  "total_items": {
741
837
  "target": INTEGER,
742
838
  "index": 1,
839
+ "traits": [
840
+ Trait.new(id=ShapeID("smithy.api#required")),
841
+
842
+ ],
743
843
  },
744
844
 
745
845
  "data": {
746
846
  "target": AUDIT_LOG_LIST,
747
847
  "index": 2,
848
+ "traits": [
849
+ Trait.new(id=ShapeID("smithy.api#required")),
850
+
851
+ ],
748
852
  },
749
853
 
750
854
  }
@@ -774,16 +878,28 @@ AUTOCOMPLETE_FUNCTION_REQUEST = Schema.collection(
774
878
  "name": {
775
879
  "target": STRING,
776
880
  "index": 0,
881
+ "traits": [
882
+ Trait.new(id=ShapeID("smithy.api#required")),
883
+
884
+ ],
777
885
  },
778
886
 
779
887
  "prefix": {
780
888
  "target": STRING,
781
889
  "index": 1,
890
+ "traits": [
891
+ Trait.new(id=ShapeID("smithy.api#required")),
892
+
893
+ ],
782
894
  },
783
895
 
784
896
  "environment": {
785
897
  "target": DOCUMENT,
786
898
  "index": 2,
899
+ "traits": [
900
+ Trait.new(id=ShapeID("smithy.api#required")),
901
+
902
+ ],
787
903
  },
788
904
 
789
905
  }
@@ -793,14 +909,9 @@ CONTEXT_MOVE = Schema.collection(
793
909
  id=ShapeID("io.superposition#ContextMove"),
794
910
 
795
911
  members={
796
- "id": {
797
- "target": STRING,
798
- "index": 0,
799
- },
800
-
801
912
  "context": {
802
913
  "target": CONDITION,
803
- "index": 1,
914
+ "index": 0,
804
915
  "traits": [
805
916
  Trait.new(id=ShapeID("smithy.api#required")),
806
917
 
@@ -809,12 +920,12 @@ CONTEXT_MOVE = Schema.collection(
809
920
 
810
921
  "description": {
811
922
  "target": STRING,
812
- "index": 2,
923
+ "index": 1,
813
924
  },
814
925
 
815
926
  "change_reason": {
816
927
  "target": STRING,
817
- "index": 3,
928
+ "index": 2,
818
929
  "traits": [
819
930
  Trait.new(id=ShapeID("smithy.api#required")),
820
931
 
@@ -824,18 +935,26 @@ CONTEXT_MOVE = Schema.collection(
824
935
  }
825
936
  )
826
937
 
827
- OVERRIDES = Schema.collection(
828
- id=ShapeID("io.superposition#Overrides"),
829
- shape_type=ShapeType.MAP,
938
+ CONTEXT_MOVE_BULK_REQUEST = Schema.collection(
939
+ id=ShapeID("io.superposition#ContextMoveBulkRequest"),
940
+
830
941
  members={
831
- "key": {
942
+ "id": {
832
943
  "target": STRING,
833
944
  "index": 0,
945
+ "traits": [
946
+ Trait.new(id=ShapeID("smithy.api#required")),
947
+
948
+ ],
834
949
  },
835
950
 
836
- "value": {
837
- "target": DOCUMENT,
951
+ "request": {
952
+ "target": CONTEXT_MOVE,
838
953
  "index": 1,
954
+ "traits": [
955
+ Trait.new(id=ShapeID("smithy.api#required")),
956
+
957
+ ],
839
958
  },
840
959
 
841
960
  }
@@ -956,7 +1075,7 @@ CONTEXT_ACTION = Schema.collection(
956
1075
  },
957
1076
 
958
1077
  "MOVE": {
959
- "target": CONTEXT_MOVE,
1078
+ "target": CONTEXT_MOVE_BULK_REQUEST,
960
1079
  "index": 3,
961
1080
  },
962
1081
 
@@ -975,18 +1094,6 @@ BULK_OPERATION_LIST = Schema.collection(
975
1094
  }
976
1095
  )
977
1096
 
978
- BULK_OPERATION_REQ = Schema.collection(
979
- id=ShapeID("io.superposition#BulkOperationReq"),
980
-
981
- members={
982
- "operations": {
983
- "target": BULK_OPERATION_LIST,
984
- "index": 0,
985
- },
986
-
987
- }
988
- )
989
-
990
1097
  BULK_OPERATION_INPUT = Schema.collection(
991
1098
  id=ShapeID("io.superposition#BulkOperationInput"),
992
1099
 
@@ -1025,13 +1132,12 @@ BULK_OPERATION_INPUT = Schema.collection(
1025
1132
  ],
1026
1133
  },
1027
1134
 
1028
- "bulk_operation": {
1029
- "target": BULK_OPERATION_REQ,
1135
+ "operations": {
1136
+ "target": BULK_OPERATION_LIST,
1030
1137
  "index": 3,
1031
1138
  "traits": [
1032
1139
  Trait.new(id=ShapeID("smithy.api#notProperty")),
1033
1140
  Trait.new(id=ShapeID("smithy.api#required")),
1034
- Trait.new(id=ShapeID("smithy.api#httpPayload")),
1035
1141
 
1036
1142
  ],
1037
1143
  },
@@ -1061,51 +1167,91 @@ CONTEXT_RESPONSE = Schema.collection(
1061
1167
  "value": {
1062
1168
  "target": CONDITION,
1063
1169
  "index": 1,
1170
+ "traits": [
1171
+ Trait.new(id=ShapeID("smithy.api#required")),
1172
+
1173
+ ],
1064
1174
  },
1065
1175
 
1066
1176
  "override": {
1067
1177
  "target": OVERRIDES,
1068
1178
  "index": 2,
1179
+ "traits": [
1180
+ Trait.new(id=ShapeID("smithy.api#required")),
1181
+
1182
+ ],
1069
1183
  },
1070
1184
 
1071
1185
  "override_id": {
1072
1186
  "target": STRING,
1073
1187
  "index": 3,
1188
+ "traits": [
1189
+ Trait.new(id=ShapeID("smithy.api#required")),
1190
+
1191
+ ],
1074
1192
  },
1075
1193
 
1076
1194
  "weight": {
1077
1195
  "target": WEIGHT,
1078
1196
  "index": 4,
1197
+ "traits": [
1198
+ Trait.new(id=ShapeID("smithy.api#required")),
1199
+
1200
+ ],
1079
1201
  },
1080
1202
 
1081
1203
  "description": {
1082
1204
  "target": STRING,
1083
1205
  "index": 5,
1206
+ "traits": [
1207
+ Trait.new(id=ShapeID("smithy.api#required")),
1208
+
1209
+ ],
1084
1210
  },
1085
1211
 
1086
1212
  "change_reason": {
1087
1213
  "target": STRING,
1088
1214
  "index": 6,
1215
+ "traits": [
1216
+ Trait.new(id=ShapeID("smithy.api#required")),
1217
+
1218
+ ],
1089
1219
  },
1090
1220
 
1091
1221
  "created_at": {
1092
1222
  "target": DATE_TIME,
1093
1223
  "index": 7,
1224
+ "traits": [
1225
+ Trait.new(id=ShapeID("smithy.api#required")),
1226
+
1227
+ ],
1094
1228
  },
1095
1229
 
1096
1230
  "created_by": {
1097
1231
  "target": STRING,
1098
1232
  "index": 8,
1233
+ "traits": [
1234
+ Trait.new(id=ShapeID("smithy.api#required")),
1235
+
1236
+ ],
1099
1237
  },
1100
1238
 
1101
1239
  "last_modified_at": {
1102
1240
  "target": DATE_TIME,
1103
1241
  "index": 9,
1242
+ "traits": [
1243
+ Trait.new(id=ShapeID("smithy.api#required")),
1244
+
1245
+ ],
1104
1246
  },
1105
1247
 
1106
1248
  "last_modified_by": {
1107
1249
  "target": STRING,
1108
1250
  "index": 10,
1251
+ "traits": [
1252
+ Trait.new(id=ShapeID("smithy.api#required")),
1253
+
1254
+ ],
1109
1255
  },
1110
1256
 
1111
1257
  }
@@ -1150,18 +1296,6 @@ BULK_OPERATION_OUT_LIST = Schema.collection(
1150
1296
  }
1151
1297
  )
1152
1298
 
1153
- BULK_OPERATION_OUT = Schema.collection(
1154
- id=ShapeID("io.superposition#BulkOperationOut"),
1155
-
1156
- members={
1157
- "output": {
1158
- "target": BULK_OPERATION_OUT_LIST,
1159
- "index": 0,
1160
- },
1161
-
1162
- }
1163
- )
1164
-
1165
1299
  BULK_OPERATION_OUTPUT = Schema.collection(
1166
1300
  id=ShapeID("io.superposition#BulkOperationOutput"),
1167
1301
 
@@ -1170,12 +1304,11 @@ BULK_OPERATION_OUTPUT = Schema.collection(
1170
1304
 
1171
1305
  ],
1172
1306
  members={
1173
- "bulk_operation_output": {
1174
- "target": BULK_OPERATION_OUT,
1307
+ "output": {
1308
+ "target": BULK_OPERATION_OUT_LIST,
1175
1309
  "index": 0,
1176
1310
  "traits": [
1177
- Trait.new(id=ShapeID("smithy.api#notProperty")),
1178
- Trait.new(id=ShapeID("smithy.api#httpPayload")),
1311
+ Trait.new(id=ShapeID("smithy.api#required")),
1179
1312
 
1180
1313
  ],
1181
1314
  },
@@ -1583,7 +1716,7 @@ GET_CONFIG_INPUT = Schema.collection(
1583
1716
  },
1584
1717
 
1585
1718
  "prefix": {
1586
- "target": STRING,
1719
+ "target": STRING_LIST,
1587
1720
  "index": 2,
1588
1721
  "traits": [
1589
1722
  Trait.new(id=ShapeID("smithy.api#notProperty")),
@@ -1640,26 +1773,46 @@ CONTEXT_PARTIAL = Schema.collection(
1640
1773
  "id": {
1641
1774
  "target": STRING,
1642
1775
  "index": 0,
1776
+ "traits": [
1777
+ Trait.new(id=ShapeID("smithy.api#required")),
1778
+
1779
+ ],
1643
1780
  },
1644
1781
 
1645
1782
  "condition": {
1646
1783
  "target": CONDITION,
1647
1784
  "index": 1,
1785
+ "traits": [
1786
+ Trait.new(id=ShapeID("smithy.api#required")),
1787
+
1788
+ ],
1648
1789
  },
1649
1790
 
1650
1791
  "priority": {
1651
1792
  "target": INTEGER,
1652
1793
  "index": 2,
1794
+ "traits": [
1795
+ Trait.new(id=ShapeID("smithy.api#required")),
1796
+
1797
+ ],
1653
1798
  },
1654
1799
 
1655
1800
  "weight": {
1656
1801
  "target": INTEGER,
1657
1802
  "index": 3,
1803
+ "traits": [
1804
+ Trait.new(id=ShapeID("smithy.api#required")),
1805
+
1806
+ ],
1658
1807
  },
1659
1808
 
1660
1809
  "override_with_keys": {
1661
1810
  "target": OVERRIDE_WITH_KEYS,
1662
1811
  "index": 4,
1812
+ "traits": [
1813
+ Trait.new(id=ShapeID("smithy.api#required")),
1814
+
1815
+ ],
1663
1816
  },
1664
1817
 
1665
1818
  }
@@ -1694,8 +1847,8 @@ OBJECT = Schema.collection(
1694
1847
  }
1695
1848
  )
1696
1849
 
1697
- DEPEDENDENCY_GRAPH = Schema.collection(
1698
- id=ShapeID("io.superposition#DepedendencyGraph"),
1850
+ DEPENDENCY_GRAPH = Schema.collection(
1851
+ id=ShapeID("io.superposition#DependencyGraph"),
1699
1852
  shape_type=ShapeType.MAP,
1700
1853
  members={
1701
1854
  "key": {
@@ -1740,21 +1893,37 @@ DIMENSION_INFO = Schema.collection(
1740
1893
  "schema": {
1741
1894
  "target": OBJECT,
1742
1895
  "index": 0,
1896
+ "traits": [
1897
+ Trait.new(id=ShapeID("smithy.api#required")),
1898
+
1899
+ ],
1743
1900
  },
1744
1901
 
1745
1902
  "position": {
1746
1903
  "target": INTEGER,
1747
1904
  "index": 1,
1905
+ "traits": [
1906
+ Trait.new(id=ShapeID("smithy.api#required")),
1907
+
1908
+ ],
1748
1909
  },
1749
1910
 
1750
1911
  "dimension_type": {
1751
1912
  "target": DIMENSION_TYPE,
1752
1913
  "index": 2,
1753
- },
1914
+ "traits": [
1915
+ Trait.new(id=ShapeID("smithy.api#required")),
1916
+
1917
+ ],
1918
+ },
1754
1919
 
1755
1920
  "dependency_graph": {
1756
- "target": DEPEDENDENCY_GRAPH,
1921
+ "target": DEPENDENCY_GRAPH,
1757
1922
  "index": 3,
1923
+ "traits": [
1924
+ Trait.new(id=ShapeID("smithy.api#required")),
1925
+
1926
+ ],
1758
1927
  },
1759
1928
 
1760
1929
  }
@@ -1807,6 +1976,7 @@ GET_CONFIG_OUTPUT = Schema.collection(
1807
1976
  "index": 0,
1808
1977
  "traits": [
1809
1978
  Trait.new(id=ShapeID("smithy.api#notProperty")),
1979
+ Trait.new(id=ShapeID("smithy.api#required")),
1810
1980
 
1811
1981
  ],
1812
1982
  },
@@ -1816,6 +1986,7 @@ GET_CONFIG_OUTPUT = Schema.collection(
1816
1986
  "index": 1,
1817
1987
  "traits": [
1818
1988
  Trait.new(id=ShapeID("smithy.api#notProperty")),
1989
+ Trait.new(id=ShapeID("smithy.api#required")),
1819
1990
 
1820
1991
  ],
1821
1992
  },
@@ -1825,6 +1996,7 @@ GET_CONFIG_OUTPUT = Schema.collection(
1825
1996
  "index": 2,
1826
1997
  "traits": [
1827
1998
  Trait.new(id=ShapeID("smithy.api#notProperty")),
1999
+ Trait.new(id=ShapeID("smithy.api#required")),
1828
2000
 
1829
2001
  ],
1830
2002
  },
@@ -1834,6 +2006,7 @@ GET_CONFIG_OUTPUT = Schema.collection(
1834
2006
  "index": 3,
1835
2007
  "traits": [
1836
2008
  Trait.new(id=ShapeID("smithy.api#notProperty")),
2009
+ Trait.new(id=ShapeID("smithy.api#required")),
1837
2010
 
1838
2011
  ],
1839
2012
  },
@@ -1843,6 +2016,7 @@ GET_CONFIG_OUTPUT = Schema.collection(
1843
2016
  "index": 4,
1844
2017
  "traits": [
1845
2018
  Trait.new(id=ShapeID("smithy.api#httpHeader"), value="x-config-version"),
2019
+ Trait.new(id=ShapeID("smithy.api#required")),
1846
2020
 
1847
2021
  ],
1848
2022
  },
@@ -1852,6 +2026,7 @@ GET_CONFIG_OUTPUT = Schema.collection(
1852
2026
  "index": 5,
1853
2027
  "traits": [
1854
2028
  Trait.new(id=ShapeID("smithy.api#httpHeader"), value="last-modified"),
2029
+ Trait.new(id=ShapeID("smithy.api#required")),
1855
2030
 
1856
2031
  ],
1857
2032
  },
@@ -2035,7 +2210,7 @@ GET_RESOLVED_CONFIG_INPUT = Schema.collection(
2035
2210
  },
2036
2211
 
2037
2212
  "prefix": {
2038
- "target": STRING,
2213
+ "target": STRING_LIST,
2039
2214
  "index": 2,
2040
2215
  "traits": [
2041
2216
  Trait.new(id=ShapeID("smithy.api#notProperty")),
@@ -2108,6 +2283,7 @@ GET_RESOLVED_CONFIG_OUTPUT = Schema.collection(
2108
2283
  "target": DOCUMENT,
2109
2284
  "index": 0,
2110
2285
  "traits": [
2286
+ Trait.new(id=ShapeID("smithy.api#required")),
2111
2287
  Trait.new(id=ShapeID("smithy.api#httpPayload")),
2112
2288
 
2113
2289
  ],
@@ -2118,6 +2294,7 @@ GET_RESOLVED_CONFIG_OUTPUT = Schema.collection(
2118
2294
  "index": 1,
2119
2295
  "traits": [
2120
2296
  Trait.new(id=ShapeID("smithy.api#httpHeader"), value="x-config-version"),
2297
+ Trait.new(id=ShapeID("smithy.api#required")),
2121
2298
 
2122
2299
  ],
2123
2300
  },
@@ -2127,6 +2304,7 @@ GET_RESOLVED_CONFIG_OUTPUT = Schema.collection(
2127
2304
  "index": 2,
2128
2305
  "traits": [
2129
2306
  Trait.new(id=ShapeID("smithy.api#httpHeader"), value="last-modified"),
2307
+ Trait.new(id=ShapeID("smithy.api#required")),
2130
2308
 
2131
2309
  ],
2132
2310
  },
@@ -2402,16 +2580,28 @@ LIST_VERSIONS_OUTPUT = Schema.collection(
2402
2580
  "total_pages": {
2403
2581
  "target": INTEGER,
2404
2582
  "index": 0,
2583
+ "traits": [
2584
+ Trait.new(id=ShapeID("smithy.api#required")),
2585
+
2586
+ ],
2405
2587
  },
2406
2588
 
2407
2589
  "total_items": {
2408
2590
  "target": INTEGER,
2409
2591
  "index": 1,
2592
+ "traits": [
2593
+ Trait.new(id=ShapeID("smithy.api#required")),
2594
+
2595
+ ],
2410
2596
  },
2411
2597
 
2412
2598
  "data": {
2413
2599
  "target": LIST_VERSIONS_OUT,
2414
2600
  "index": 2,
2601
+ "traits": [
2602
+ Trait.new(id=ShapeID("smithy.api#required")),
2603
+
2604
+ ],
2415
2605
  },
2416
2606
 
2417
2607
  }
@@ -2462,19 +2652,9 @@ CREATE_CONTEXT_INPUT = Schema.collection(
2462
2652
  ],
2463
2653
  },
2464
2654
 
2465
- "context": {
2466
- "target": CONDITION,
2467
- "index": 2,
2468
- "traits": [
2469
- Trait.new(id=ShapeID("smithy.api#notProperty")),
2470
- Trait.new(id=ShapeID("smithy.api#required")),
2471
-
2472
- ],
2473
- },
2474
-
2475
2655
  "config_tags": {
2476
2656
  "target": STRING,
2477
- "index": 3,
2657
+ "index": 2,
2478
2658
  "traits": [
2479
2659
  Trait.new(id=ShapeID("smithy.api#httpHeader"), value="x-config-tags"),
2480
2660
  Trait.new(id=ShapeID("smithy.api#notProperty")),
@@ -2482,25 +2662,13 @@ CREATE_CONTEXT_INPUT = Schema.collection(
2482
2662
  ],
2483
2663
  },
2484
2664
 
2485
- "override": {
2486
- "target": OVERRIDES,
2487
- "index": 4,
2488
- "traits": [
2489
- Trait.new(id=ShapeID("smithy.api#required")),
2490
-
2491
- ],
2492
- },
2493
-
2494
- "description": {
2495
- "target": STRING,
2496
- "index": 5,
2497
- },
2498
-
2499
- "change_reason": {
2500
- "target": STRING,
2501
- "index": 6,
2665
+ "request": {
2666
+ "target": CONTEXT_PUT,
2667
+ "index": 3,
2502
2668
  "traits": [
2669
+ Trait.new(id=ShapeID("smithy.api#notProperty")),
2503
2670
  Trait.new(id=ShapeID("smithy.api#required")),
2671
+ Trait.new(id=ShapeID("smithy.api#httpPayload")),
2504
2672
 
2505
2673
  ],
2506
2674
  },
@@ -2529,51 +2697,91 @@ CREATE_CONTEXT_OUTPUT = Schema.collection(
2529
2697
  "value": {
2530
2698
  "target": CONDITION,
2531
2699
  "index": 1,
2700
+ "traits": [
2701
+ Trait.new(id=ShapeID("smithy.api#required")),
2702
+
2703
+ ],
2532
2704
  },
2533
2705
 
2534
2706
  "override": {
2535
2707
  "target": OVERRIDES,
2536
2708
  "index": 2,
2709
+ "traits": [
2710
+ Trait.new(id=ShapeID("smithy.api#required")),
2711
+
2712
+ ],
2537
2713
  },
2538
2714
 
2539
2715
  "override_id": {
2540
2716
  "target": STRING,
2541
2717
  "index": 3,
2718
+ "traits": [
2719
+ Trait.new(id=ShapeID("smithy.api#required")),
2720
+
2721
+ ],
2542
2722
  },
2543
2723
 
2544
2724
  "weight": {
2545
2725
  "target": WEIGHT,
2546
2726
  "index": 4,
2727
+ "traits": [
2728
+ Trait.new(id=ShapeID("smithy.api#required")),
2729
+
2730
+ ],
2547
2731
  },
2548
2732
 
2549
2733
  "description": {
2550
2734
  "target": STRING,
2551
2735
  "index": 5,
2736
+ "traits": [
2737
+ Trait.new(id=ShapeID("smithy.api#required")),
2738
+
2739
+ ],
2552
2740
  },
2553
2741
 
2554
2742
  "change_reason": {
2555
2743
  "target": STRING,
2556
2744
  "index": 6,
2745
+ "traits": [
2746
+ Trait.new(id=ShapeID("smithy.api#required")),
2747
+
2748
+ ],
2557
2749
  },
2558
2750
 
2559
2751
  "created_at": {
2560
2752
  "target": DATE_TIME,
2561
2753
  "index": 7,
2754
+ "traits": [
2755
+ Trait.new(id=ShapeID("smithy.api#required")),
2756
+
2757
+ ],
2562
2758
  },
2563
2759
 
2564
2760
  "created_by": {
2565
2761
  "target": STRING,
2566
2762
  "index": 8,
2763
+ "traits": [
2764
+ Trait.new(id=ShapeID("smithy.api#required")),
2765
+
2766
+ ],
2567
2767
  },
2568
2768
 
2569
2769
  "last_modified_at": {
2570
2770
  "target": DATE_TIME,
2571
2771
  "index": 9,
2772
+ "traits": [
2773
+ Trait.new(id=ShapeID("smithy.api#required")),
2774
+
2775
+ ],
2572
2776
  },
2573
2777
 
2574
2778
  "last_modified_by": {
2575
2779
  "target": STRING,
2576
2780
  "index": 10,
2781
+ "traits": [
2782
+ Trait.new(id=ShapeID("smithy.api#required")),
2783
+
2784
+ ],
2577
2785
  },
2578
2786
 
2579
2787
  }
@@ -2669,7 +2877,7 @@ DELETE_CONTEXT = Schema(
2669
2877
  Trait.new(id=ShapeID("smithy.api#http"), value=MappingProxyType({
2670
2878
  "method": "DELETE",
2671
2879
  "uri": "/context/{id}",
2672
- "code": 201,
2880
+ "code": 204,
2673
2881
  })),
2674
2882
 
2675
2883
  ],
@@ -2738,51 +2946,91 @@ GET_CONTEXT_OUTPUT = Schema.collection(
2738
2946
  "value": {
2739
2947
  "target": CONDITION,
2740
2948
  "index": 1,
2949
+ "traits": [
2950
+ Trait.new(id=ShapeID("smithy.api#required")),
2951
+
2952
+ ],
2741
2953
  },
2742
2954
 
2743
2955
  "override": {
2744
2956
  "target": OVERRIDES,
2745
2957
  "index": 2,
2958
+ "traits": [
2959
+ Trait.new(id=ShapeID("smithy.api#required")),
2960
+
2961
+ ],
2746
2962
  },
2747
2963
 
2748
2964
  "override_id": {
2749
2965
  "target": STRING,
2750
2966
  "index": 3,
2967
+ "traits": [
2968
+ Trait.new(id=ShapeID("smithy.api#required")),
2969
+
2970
+ ],
2751
2971
  },
2752
2972
 
2753
2973
  "weight": {
2754
2974
  "target": WEIGHT,
2755
2975
  "index": 4,
2976
+ "traits": [
2977
+ Trait.new(id=ShapeID("smithy.api#required")),
2978
+
2979
+ ],
2756
2980
  },
2757
2981
 
2758
2982
  "description": {
2759
2983
  "target": STRING,
2760
2984
  "index": 5,
2985
+ "traits": [
2986
+ Trait.new(id=ShapeID("smithy.api#required")),
2987
+
2988
+ ],
2761
2989
  },
2762
2990
 
2763
2991
  "change_reason": {
2764
2992
  "target": STRING,
2765
2993
  "index": 6,
2994
+ "traits": [
2995
+ Trait.new(id=ShapeID("smithy.api#required")),
2996
+
2997
+ ],
2766
2998
  },
2767
2999
 
2768
3000
  "created_at": {
2769
3001
  "target": DATE_TIME,
2770
3002
  "index": 7,
3003
+ "traits": [
3004
+ Trait.new(id=ShapeID("smithy.api#required")),
3005
+
3006
+ ],
2771
3007
  },
2772
3008
 
2773
3009
  "created_by": {
2774
3010
  "target": STRING,
2775
3011
  "index": 8,
3012
+ "traits": [
3013
+ Trait.new(id=ShapeID("smithy.api#required")),
3014
+
3015
+ ],
2776
3016
  },
2777
3017
 
2778
3018
  "last_modified_at": {
2779
3019
  "target": DATE_TIME,
2780
3020
  "index": 9,
3021
+ "traits": [
3022
+ Trait.new(id=ShapeID("smithy.api#required")),
3023
+
3024
+ ],
2781
3025
  },
2782
3026
 
2783
3027
  "last_modified_by": {
2784
3028
  "target": STRING,
2785
3029
  "index": 10,
3030
+ "traits": [
3031
+ Trait.new(id=ShapeID("smithy.api#required")),
3032
+
3033
+ ],
2786
3034
  },
2787
3035
 
2788
3036
  }
@@ -2867,51 +3115,91 @@ GET_CONTEXT_FROM_CONDITION_OUTPUT = Schema.collection(
2867
3115
  "value": {
2868
3116
  "target": CONDITION,
2869
3117
  "index": 1,
3118
+ "traits": [
3119
+ Trait.new(id=ShapeID("smithy.api#required")),
3120
+
3121
+ ],
2870
3122
  },
2871
3123
 
2872
3124
  "override": {
2873
3125
  "target": OVERRIDES,
2874
3126
  "index": 2,
3127
+ "traits": [
3128
+ Trait.new(id=ShapeID("smithy.api#required")),
3129
+
3130
+ ],
2875
3131
  },
2876
3132
 
2877
3133
  "override_id": {
2878
3134
  "target": STRING,
2879
3135
  "index": 3,
3136
+ "traits": [
3137
+ Trait.new(id=ShapeID("smithy.api#required")),
3138
+
3139
+ ],
2880
3140
  },
2881
3141
 
2882
3142
  "weight": {
2883
3143
  "target": WEIGHT,
2884
3144
  "index": 4,
3145
+ "traits": [
3146
+ Trait.new(id=ShapeID("smithy.api#required")),
3147
+
3148
+ ],
2885
3149
  },
2886
3150
 
2887
3151
  "description": {
2888
3152
  "target": STRING,
2889
3153
  "index": 5,
3154
+ "traits": [
3155
+ Trait.new(id=ShapeID("smithy.api#required")),
3156
+
3157
+ ],
2890
3158
  },
2891
3159
 
2892
3160
  "change_reason": {
2893
3161
  "target": STRING,
2894
3162
  "index": 6,
3163
+ "traits": [
3164
+ Trait.new(id=ShapeID("smithy.api#required")),
3165
+
3166
+ ],
2895
3167
  },
2896
3168
 
2897
3169
  "created_at": {
2898
3170
  "target": DATE_TIME,
2899
3171
  "index": 7,
3172
+ "traits": [
3173
+ Trait.new(id=ShapeID("smithy.api#required")),
3174
+
3175
+ ],
2900
3176
  },
2901
3177
 
2902
3178
  "created_by": {
2903
3179
  "target": STRING,
2904
3180
  "index": 8,
3181
+ "traits": [
3182
+ Trait.new(id=ShapeID("smithy.api#required")),
3183
+
3184
+ ],
2905
3185
  },
2906
3186
 
2907
3187
  "last_modified_at": {
2908
3188
  "target": DATE_TIME,
2909
3189
  "index": 9,
3190
+ "traits": [
3191
+ Trait.new(id=ShapeID("smithy.api#required")),
3192
+
3193
+ ],
2910
3194
  },
2911
3195
 
2912
3196
  "last_modified_by": {
2913
3197
  "target": STRING,
2914
3198
  "index": 10,
3199
+ "traits": [
3200
+ Trait.new(id=ShapeID("smithy.api#required")),
3201
+
3202
+ ],
2915
3203
  },
2916
3204
 
2917
3205
  }
@@ -2937,7 +3225,7 @@ DIMENSION_MATCH_STRATEGY = Schema.collection(
2937
3225
  id=ShapeID("io.superposition#DimensionMatchStrategy"),
2938
3226
  shape_type=ShapeType.ENUM,
2939
3227
  members={
2940
- "Exact": {
3228
+ "EXACT": {
2941
3229
  "target": UNIT,
2942
3230
  "index": 0,
2943
3231
  "traits": [
@@ -2946,7 +3234,7 @@ DIMENSION_MATCH_STRATEGY = Schema.collection(
2946
3234
  ],
2947
3235
  },
2948
3236
 
2949
- "Subset": {
3237
+ "SUBSET": {
2950
3238
  "target": UNIT,
2951
3239
  "index": 1,
2952
3240
  "traits": [
@@ -2962,7 +3250,7 @@ CONTEXT_FILTER_SORT_ON = Schema.collection(
2962
3250
  id=ShapeID("io.superposition#ContextFilterSortOn"),
2963
3251
  shape_type=ShapeType.ENUM,
2964
3252
  members={
2965
- "LastModifiedAt": {
3253
+ "LAST_MODIFIED_AT": {
2966
3254
  "target": UNIT,
2967
3255
  "index": 0,
2968
3256
  "traits": [
@@ -2971,7 +3259,7 @@ CONTEXT_FILTER_SORT_ON = Schema.collection(
2971
3259
  ],
2972
3260
  },
2973
3261
 
2974
- "CreatedAt": {
3262
+ "CREATED_AT": {
2975
3263
  "target": UNIT,
2976
3264
  "index": 1,
2977
3265
  "traits": [
@@ -2980,7 +3268,7 @@ CONTEXT_FILTER_SORT_ON = Schema.collection(
2980
3268
  ],
2981
3269
  },
2982
3270
 
2983
- "Weight": {
3271
+ "WEIGHT": {
2984
3272
  "target": UNIT,
2985
3273
  "index": 2,
2986
3274
  "traits": [
@@ -3048,7 +3336,7 @@ LIST_CONTEXTS_INPUT = Schema.collection(
3048
3336
  },
3049
3337
 
3050
3338
  "prefix": {
3051
- "target": STRING,
3339
+ "target": STRING_LIST,
3052
3340
  "index": 5,
3053
3341
  "traits": [
3054
3342
  Trait.new(id=ShapeID("smithy.api#notProperty")),
@@ -3078,7 +3366,7 @@ LIST_CONTEXTS_INPUT = Schema.collection(
3078
3366
  },
3079
3367
 
3080
3368
  "created_by": {
3081
- "target": STRING,
3369
+ "target": STRING_LIST,
3082
3370
  "index": 8,
3083
3371
  "traits": [
3084
3372
  Trait.new(id=ShapeID("smithy.api#notProperty")),
@@ -3088,7 +3376,7 @@ LIST_CONTEXTS_INPUT = Schema.collection(
3088
3376
  },
3089
3377
 
3090
3378
  "last_modified_by": {
3091
- "target": STRING,
3379
+ "target": STRING_LIST,
3092
3380
  "index": 9,
3093
3381
  "traits": [
3094
3382
  Trait.new(id=ShapeID("smithy.api#notProperty")),
@@ -3143,16 +3431,28 @@ LIST_CONTEXTS_OUTPUT = Schema.collection(
3143
3431
  "total_pages": {
3144
3432
  "target": INTEGER,
3145
3433
  "index": 0,
3434
+ "traits": [
3435
+ Trait.new(id=ShapeID("smithy.api#required")),
3436
+
3437
+ ],
3146
3438
  },
3147
3439
 
3148
3440
  "total_items": {
3149
3441
  "target": INTEGER,
3150
3442
  "index": 1,
3443
+ "traits": [
3444
+ Trait.new(id=ShapeID("smithy.api#required")),
3445
+
3446
+ ],
3151
3447
  },
3152
3448
 
3153
3449
  "data": {
3154
3450
  "target": LIST_CONTEXT_OUT,
3155
3451
  "index": 2,
3452
+ "traits": [
3453
+ Trait.new(id=ShapeID("smithy.api#required")),
3454
+
3455
+ ],
3156
3456
  },
3157
3457
 
3158
3458
  }
@@ -3213,26 +3513,13 @@ MOVE_CONTEXT_INPUT = Schema.collection(
3213
3513
  ],
3214
3514
  },
3215
3515
 
3216
- "context": {
3217
- "target": CONDITION,
3516
+ "request": {
3517
+ "target": CONTEXT_MOVE,
3218
3518
  "index": 3,
3219
3519
  "traits": [
3220
3520
  Trait.new(id=ShapeID("smithy.api#notProperty")),
3221
3521
  Trait.new(id=ShapeID("smithy.api#required")),
3222
-
3223
- ],
3224
- },
3225
-
3226
- "description": {
3227
- "target": STRING,
3228
- "index": 4,
3229
- },
3230
-
3231
- "change_reason": {
3232
- "target": STRING,
3233
- "index": 5,
3234
- "traits": [
3235
- Trait.new(id=ShapeID("smithy.api#required")),
3522
+ Trait.new(id=ShapeID("smithy.api#httpPayload")),
3236
3523
 
3237
3524
  ],
3238
3525
  },
@@ -3261,51 +3548,91 @@ MOVE_CONTEXT_OUTPUT = Schema.collection(
3261
3548
  "value": {
3262
3549
  "target": CONDITION,
3263
3550
  "index": 1,
3551
+ "traits": [
3552
+ Trait.new(id=ShapeID("smithy.api#required")),
3553
+
3554
+ ],
3264
3555
  },
3265
3556
 
3266
3557
  "override": {
3267
3558
  "target": OVERRIDES,
3268
3559
  "index": 2,
3560
+ "traits": [
3561
+ Trait.new(id=ShapeID("smithy.api#required")),
3562
+
3563
+ ],
3269
3564
  },
3270
3565
 
3271
3566
  "override_id": {
3272
3567
  "target": STRING,
3273
3568
  "index": 3,
3569
+ "traits": [
3570
+ Trait.new(id=ShapeID("smithy.api#required")),
3571
+
3572
+ ],
3274
3573
  },
3275
3574
 
3276
3575
  "weight": {
3277
3576
  "target": WEIGHT,
3278
3577
  "index": 4,
3578
+ "traits": [
3579
+ Trait.new(id=ShapeID("smithy.api#required")),
3580
+
3581
+ ],
3279
3582
  },
3280
3583
 
3281
3584
  "description": {
3282
3585
  "target": STRING,
3283
3586
  "index": 5,
3587
+ "traits": [
3588
+ Trait.new(id=ShapeID("smithy.api#required")),
3589
+
3590
+ ],
3284
3591
  },
3285
3592
 
3286
3593
  "change_reason": {
3287
3594
  "target": STRING,
3288
3595
  "index": 6,
3596
+ "traits": [
3597
+ Trait.new(id=ShapeID("smithy.api#required")),
3598
+
3599
+ ],
3289
3600
  },
3290
3601
 
3291
3602
  "created_at": {
3292
3603
  "target": DATE_TIME,
3293
3604
  "index": 7,
3605
+ "traits": [
3606
+ Trait.new(id=ShapeID("smithy.api#required")),
3607
+
3608
+ ],
3294
3609
  },
3295
3610
 
3296
3611
  "created_by": {
3297
3612
  "target": STRING,
3298
3613
  "index": 8,
3614
+ "traits": [
3615
+ Trait.new(id=ShapeID("smithy.api#required")),
3616
+
3617
+ ],
3299
3618
  },
3300
3619
 
3301
3620
  "last_modified_at": {
3302
3621
  "target": DATE_TIME,
3303
3622
  "index": 9,
3623
+ "traits": [
3624
+ Trait.new(id=ShapeID("smithy.api#required")),
3625
+
3626
+ ],
3304
3627
  },
3305
3628
 
3306
3629
  "last_modified_by": {
3307
3630
  "target": STRING,
3308
3631
  "index": 10,
3632
+ "traits": [
3633
+ Trait.new(id=ShapeID("smithy.api#required")),
3634
+
3635
+ ],
3309
3636
  },
3310
3637
 
3311
3638
  }
@@ -3400,51 +3727,91 @@ UPDATE_OVERRIDE_OUTPUT = Schema.collection(
3400
3727
  "value": {
3401
3728
  "target": CONDITION,
3402
3729
  "index": 1,
3730
+ "traits": [
3731
+ Trait.new(id=ShapeID("smithy.api#required")),
3732
+
3733
+ ],
3403
3734
  },
3404
3735
 
3405
3736
  "override": {
3406
3737
  "target": OVERRIDES,
3407
3738
  "index": 2,
3739
+ "traits": [
3740
+ Trait.new(id=ShapeID("smithy.api#required")),
3741
+
3742
+ ],
3408
3743
  },
3409
3744
 
3410
3745
  "override_id": {
3411
3746
  "target": STRING,
3412
3747
  "index": 3,
3748
+ "traits": [
3749
+ Trait.new(id=ShapeID("smithy.api#required")),
3750
+
3751
+ ],
3413
3752
  },
3414
3753
 
3415
3754
  "weight": {
3416
3755
  "target": WEIGHT,
3417
3756
  "index": 4,
3757
+ "traits": [
3758
+ Trait.new(id=ShapeID("smithy.api#required")),
3759
+
3760
+ ],
3418
3761
  },
3419
3762
 
3420
3763
  "description": {
3421
3764
  "target": STRING,
3422
3765
  "index": 5,
3766
+ "traits": [
3767
+ Trait.new(id=ShapeID("smithy.api#required")),
3768
+
3769
+ ],
3423
3770
  },
3424
3771
 
3425
3772
  "change_reason": {
3426
3773
  "target": STRING,
3427
3774
  "index": 6,
3775
+ "traits": [
3776
+ Trait.new(id=ShapeID("smithy.api#required")),
3777
+
3778
+ ],
3428
3779
  },
3429
3780
 
3430
3781
  "created_at": {
3431
3782
  "target": DATE_TIME,
3432
3783
  "index": 7,
3784
+ "traits": [
3785
+ Trait.new(id=ShapeID("smithy.api#required")),
3786
+
3787
+ ],
3433
3788
  },
3434
3789
 
3435
3790
  "created_by": {
3436
3791
  "target": STRING,
3437
3792
  "index": 8,
3793
+ "traits": [
3794
+ Trait.new(id=ShapeID("smithy.api#required")),
3795
+
3796
+ ],
3438
3797
  },
3439
3798
 
3440
3799
  "last_modified_at": {
3441
3800
  "target": DATE_TIME,
3442
3801
  "index": 9,
3802
+ "traits": [
3803
+ Trait.new(id=ShapeID("smithy.api#required")),
3804
+
3805
+ ],
3443
3806
  },
3444
3807
 
3445
3808
  "last_modified_by": {
3446
3809
  "target": STRING,
3447
3810
  "index": 10,
3811
+ "traits": [
3812
+ Trait.new(id=ShapeID("smithy.api#required")),
3813
+
3814
+ ],
3448
3815
  },
3449
3816
 
3450
3817
  }
@@ -3458,7 +3825,7 @@ UPDATE_OVERRIDE = Schema(
3458
3825
  "Context Management",
3459
3826
  )),
3460
3827
  Trait.new(id=ShapeID("smithy.api#http"), value=MappingProxyType({
3461
- "method": "PUT",
3828
+ "method": "PATCH",
3462
3829
  "uri": "/context/overrides",
3463
3830
  })),
3464
3831
 
@@ -3583,21 +3950,37 @@ WEIGHT_RECOMPUTE_RESPONSE = Schema.collection(
3583
3950
  "id": {
3584
3951
  "target": STRING,
3585
3952
  "index": 0,
3953
+ "traits": [
3954
+ Trait.new(id=ShapeID("smithy.api#required")),
3955
+
3956
+ ],
3586
3957
  },
3587
3958
 
3588
3959
  "condition": {
3589
3960
  "target": CONDITION,
3590
3961
  "index": 1,
3962
+ "traits": [
3963
+ Trait.new(id=ShapeID("smithy.api#required")),
3964
+
3965
+ ],
3591
3966
  },
3592
3967
 
3593
3968
  "old_weight": {
3594
3969
  "target": WEIGHT,
3595
3970
  "index": 2,
3971
+ "traits": [
3972
+ Trait.new(id=ShapeID("smithy.api#required")),
3973
+
3974
+ ],
3596
3975
  },
3597
3976
 
3598
3977
  "new_weight": {
3599
3978
  "target": WEIGHT,
3600
3979
  "index": 3,
3980
+ "traits": [
3981
+ Trait.new(id=ShapeID("smithy.api#required")),
3982
+
3983
+ ],
3601
3984
  },
3602
3985
 
3603
3986
  }
@@ -3741,7 +4124,7 @@ CREATE_DEFAULT_CONFIG_OUTPUT = Schema.collection(
3741
4124
  id=ShapeID("io.superposition#CreateDefaultConfigOutput"),
3742
4125
 
3743
4126
  traits=[
3744
- Trait.new(id=ShapeID("smithy.synthetic#originalShapeId"), value="io.superposition#DefaultConfigFull"),
4127
+ Trait.new(id=ShapeID("smithy.synthetic#originalShapeId"), value="io.superposition#DefaultConfigResponse"),
3745
4128
  Trait.new(id=ShapeID("smithy.api#output")),
3746
4129
 
3747
4130
  ],
@@ -3951,7 +4334,7 @@ CREATE_DIMENSION_OUTPUT = Schema.collection(
3951
4334
  id=ShapeID("io.superposition#CreateDimensionOutput"),
3952
4335
 
3953
4336
  traits=[
3954
- Trait.new(id=ShapeID("smithy.synthetic#originalShapeId"), value="io.superposition#DimensionExt"),
4337
+ Trait.new(id=ShapeID("smithy.synthetic#originalShapeId"), value="io.superposition#DimensionResponse"),
3955
4338
  Trait.new(id=ShapeID("smithy.api#output")),
3956
4339
 
3957
4340
  ],
@@ -4043,7 +4426,7 @@ CREATE_DIMENSION_OUTPUT = Schema.collection(
4043
4426
  },
4044
4427
 
4045
4428
  "dependency_graph": {
4046
- "target": DEPEDENDENCY_GRAPH,
4429
+ "target": DEPENDENCY_GRAPH,
4047
4430
  "index": 10,
4048
4431
  "traits": [
4049
4432
  Trait.new(id=ShapeID("smithy.api#required")),
@@ -4070,6 +4453,7 @@ CREATE_DIMENSION_OUTPUT = Schema.collection(
4070
4453
  "index": 13,
4071
4454
  "traits": [
4072
4455
  Trait.new(id=ShapeID("smithy.api#notProperty")),
4456
+ Trait.new(id=ShapeID("smithy.api#required")),
4073
4457
 
4074
4458
  ],
4075
4459
  },
@@ -4617,7 +5001,7 @@ FUNCTION_TYPES = Schema.collection(
4617
5001
  id=ShapeID("io.superposition#FunctionTypes"),
4618
5002
  shape_type=ShapeType.ENUM,
4619
5003
  members={
4620
- "Validation": {
5004
+ "VALIDATION": {
4621
5005
  "target": UNIT,
4622
5006
  "index": 0,
4623
5007
  "traits": [
@@ -4626,7 +5010,7 @@ FUNCTION_TYPES = Schema.collection(
4626
5010
  ],
4627
5011
  },
4628
5012
 
4629
- "Autocomplete": {
5013
+ "AUTOCOMPLETE": {
4630
5014
  "target": UNIT,
4631
5015
  "index": 1,
4632
5016
  "traits": [
@@ -4918,7 +5302,7 @@ ORG_STATUS = Schema.collection(
4918
5302
  id=ShapeID("io.superposition#OrgStatus"),
4919
5303
  shape_type=ShapeType.ENUM,
4920
5304
  members={
4921
- "Active": {
5305
+ "ACTIVE": {
4922
5306
  "target": UNIT,
4923
5307
  "index": 0,
4924
5308
  "traits": [
@@ -4927,7 +5311,7 @@ ORG_STATUS = Schema.collection(
4927
5311
  ],
4928
5312
  },
4929
5313
 
4930
- "Inactive": {
5314
+ "INACTIVE": {
4931
5315
  "target": UNIT,
4932
5316
  "index": 1,
4933
5317
  "traits": [
@@ -4936,7 +5320,7 @@ ORG_STATUS = Schema.collection(
4936
5320
  ],
4937
5321
  },
4938
5322
 
4939
- "PendingKyb": {
5323
+ "PENDING_KYB": {
4940
5324
  "target": UNIT,
4941
5325
  "index": 2,
4942
5326
  "traits": [
@@ -5819,6 +6203,10 @@ CREATE_WORKSPACE_OUTPUT = Schema.collection(
5819
6203
  "metrics": {
5820
6204
  "target": DOCUMENT,
5821
6205
  "index": 13,
6206
+ "traits": [
6207
+ Trait.new(id=ShapeID("smithy.api#required")),
6208
+
6209
+ ],
5822
6210
  },
5823
6211
 
5824
6212
  "allow_experiment_self_approval": {
@@ -5921,7 +6309,7 @@ DELETE_DEFAULT_CONFIG = Schema(
5921
6309
  Trait.new(id=ShapeID("smithy.api#http"), value=MappingProxyType({
5922
6310
  "method": "DELETE",
5923
6311
  "uri": "/default-config/{key}",
5924
- "code": 201,
6312
+ "code": 204,
5925
6313
  })),
5926
6314
 
5927
6315
  ],
@@ -5973,7 +6361,7 @@ GET_DEFAULT_CONFIG_OUTPUT = Schema.collection(
5973
6361
  id=ShapeID("io.superposition#GetDefaultConfigOutput"),
5974
6362
 
5975
6363
  traits=[
5976
- Trait.new(id=ShapeID("smithy.synthetic#originalShapeId"), value="io.superposition#DefaultConfigFull"),
6364
+ Trait.new(id=ShapeID("smithy.synthetic#originalShapeId"), value="io.superposition#DefaultConfigResponse"),
5977
6365
  Trait.new(id=ShapeID("smithy.api#output")),
5978
6366
 
5979
6367
  ],
@@ -6157,8 +6545,8 @@ LIST_DEFAULT_CONFIGS_INPUT = Schema.collection(
6157
6545
  }
6158
6546
  )
6159
6547
 
6160
- DEFAULT_CONFIG_FULL = Schema.collection(
6161
- id=ShapeID("io.superposition#DefaultConfigFull"),
6548
+ DEFAULT_CONFIG_RESPONSE = Schema.collection(
6549
+ id=ShapeID("io.superposition#DefaultConfigResponse"),
6162
6550
 
6163
6551
  members={
6164
6552
  "key": {
@@ -6260,7 +6648,7 @@ LIST_DEFAULT_CONFIG_OUT = Schema.collection(
6260
6648
  shape_type=ShapeType.LIST,
6261
6649
  members={
6262
6650
  "member": {
6263
- "target": DEFAULT_CONFIG_FULL,
6651
+ "target": DEFAULT_CONFIG_RESPONSE,
6264
6652
  "index": 0,
6265
6653
  },
6266
6654
 
@@ -6278,16 +6666,28 @@ LIST_DEFAULT_CONFIGS_OUTPUT = Schema.collection(
6278
6666
  "total_pages": {
6279
6667
  "target": INTEGER,
6280
6668
  "index": 0,
6669
+ "traits": [
6670
+ Trait.new(id=ShapeID("smithy.api#required")),
6671
+
6672
+ ],
6281
6673
  },
6282
6674
 
6283
6675
  "total_items": {
6284
6676
  "target": INTEGER,
6285
6677
  "index": 1,
6678
+ "traits": [
6679
+ Trait.new(id=ShapeID("smithy.api#required")),
6680
+
6681
+ ],
6286
6682
  },
6287
6683
 
6288
6684
  "data": {
6289
6685
  "target": LIST_DEFAULT_CONFIG_OUT,
6290
6686
  "index": 2,
6687
+ "traits": [
6688
+ Trait.new(id=ShapeID("smithy.api#required")),
6689
+
6690
+ ],
6291
6691
  },
6292
6692
 
6293
6693
  }
@@ -6389,7 +6789,7 @@ UPDATE_DEFAULT_CONFIG_OUTPUT = Schema.collection(
6389
6789
  id=ShapeID("io.superposition#UpdateDefaultConfigOutput"),
6390
6790
 
6391
6791
  traits=[
6392
- Trait.new(id=ShapeID("smithy.synthetic#originalShapeId"), value="io.superposition#DefaultConfigFull"),
6792
+ Trait.new(id=ShapeID("smithy.synthetic#originalShapeId"), value="io.superposition#DefaultConfigResponse"),
6393
6793
  Trait.new(id=ShapeID("smithy.api#output")),
6394
6794
 
6395
6795
  ],
@@ -6568,7 +6968,7 @@ DELETE_DIMENSION = Schema(
6568
6968
  Trait.new(id=ShapeID("smithy.api#http"), value=MappingProxyType({
6569
6969
  "method": "DELETE",
6570
6970
  "uri": "/dimension/{dimension}",
6571
- "code": 201,
6971
+ "code": 204,
6572
6972
  })),
6573
6973
 
6574
6974
  ],
@@ -6838,6 +7238,7 @@ DELETE_FUNCTION = Schema(
6838
7238
  Trait.new(id=ShapeID("smithy.api#http"), value=MappingProxyType({
6839
7239
  "method": "DELETE",
6840
7240
  "uri": "/function/{function_name}",
7241
+ "code": 204,
6841
7242
  })),
6842
7243
 
6843
7244
  ],
@@ -7049,7 +7450,7 @@ DELETE_WEBHOOK = Schema(
7049
7450
  Trait.new(id=ShapeID("smithy.api#http"), value=MappingProxyType({
7050
7451
  "method": "DELETE",
7051
7452
  "uri": "/webhook/{name}",
7052
- "code": 201,
7453
+ "code": 204,
7053
7454
  })),
7054
7455
 
7055
7456
  ],
@@ -7101,7 +7502,7 @@ GET_DIMENSION_OUTPUT = Schema.collection(
7101
7502
  id=ShapeID("io.superposition#GetDimensionOutput"),
7102
7503
 
7103
7504
  traits=[
7104
- Trait.new(id=ShapeID("smithy.synthetic#originalShapeId"), value="io.superposition#DimensionExt"),
7505
+ Trait.new(id=ShapeID("smithy.synthetic#originalShapeId"), value="io.superposition#DimensionResponse"),
7105
7506
  Trait.new(id=ShapeID("smithy.api#output")),
7106
7507
 
7107
7508
  ],
@@ -7193,7 +7594,7 @@ GET_DIMENSION_OUTPUT = Schema.collection(
7193
7594
  },
7194
7595
 
7195
7596
  "dependency_graph": {
7196
- "target": DEPEDENDENCY_GRAPH,
7597
+ "target": DEPENDENCY_GRAPH,
7197
7598
  "index": 10,
7198
7599
  "traits": [
7199
7600
  Trait.new(id=ShapeID("smithy.api#required")),
@@ -7220,6 +7621,7 @@ GET_DIMENSION_OUTPUT = Schema.collection(
7220
7621
  "index": 13,
7221
7622
  "traits": [
7222
7623
  Trait.new(id=ShapeID("smithy.api#notProperty")),
7624
+ Trait.new(id=ShapeID("smithy.api#required")),
7223
7625
 
7224
7626
  ],
7225
7627
  },
@@ -7302,8 +7704,8 @@ LIST_DIMENSIONS_INPUT = Schema.collection(
7302
7704
  }
7303
7705
  )
7304
7706
 
7305
- DIMENSION_EXT = Schema.collection(
7306
- id=ShapeID("io.superposition#DimensionExt"),
7707
+ DIMENSION_RESPONSE = Schema.collection(
7708
+ id=ShapeID("io.superposition#DimensionResponse"),
7307
7709
 
7308
7710
  members={
7309
7711
  "dimension": {
@@ -7393,7 +7795,7 @@ DIMENSION_EXT = Schema.collection(
7393
7795
  },
7394
7796
 
7395
7797
  "dependency_graph": {
7396
- "target": DEPEDENDENCY_GRAPH,
7798
+ "target": DEPENDENCY_GRAPH,
7397
7799
  "index": 10,
7398
7800
  "traits": [
7399
7801
  Trait.new(id=ShapeID("smithy.api#required")),
@@ -7420,6 +7822,7 @@ DIMENSION_EXT = Schema.collection(
7420
7822
  "index": 13,
7421
7823
  "traits": [
7422
7824
  Trait.new(id=ShapeID("smithy.api#notProperty")),
7825
+ Trait.new(id=ShapeID("smithy.api#required")),
7423
7826
 
7424
7827
  ],
7425
7828
  },
@@ -7427,12 +7830,12 @@ DIMENSION_EXT = Schema.collection(
7427
7830
  }
7428
7831
  )
7429
7832
 
7430
- DIMENSION_EXT_LIST = Schema.collection(
7431
- id=ShapeID("io.superposition#DimensionExtList"),
7833
+ DIMENSION_LIST = Schema.collection(
7834
+ id=ShapeID("io.superposition#DimensionList"),
7432
7835
  shape_type=ShapeType.LIST,
7433
7836
  members={
7434
7837
  "member": {
7435
- "target": DIMENSION_EXT,
7838
+ "target": DIMENSION_RESPONSE,
7436
7839
  "index": 0,
7437
7840
  },
7438
7841
 
@@ -7450,16 +7853,28 @@ LIST_DIMENSIONS_OUTPUT = Schema.collection(
7450
7853
  "total_pages": {
7451
7854
  "target": INTEGER,
7452
7855
  "index": 0,
7856
+ "traits": [
7857
+ Trait.new(id=ShapeID("smithy.api#required")),
7858
+
7859
+ ],
7453
7860
  },
7454
7861
 
7455
7862
  "total_items": {
7456
7863
  "target": INTEGER,
7457
7864
  "index": 1,
7865
+ "traits": [
7866
+ Trait.new(id=ShapeID("smithy.api#required")),
7867
+
7868
+ ],
7458
7869
  },
7459
7870
 
7460
7871
  "data": {
7461
- "target": DIMENSION_EXT_LIST,
7872
+ "target": DIMENSION_LIST,
7462
7873
  "index": 2,
7874
+ "traits": [
7875
+ Trait.new(id=ShapeID("smithy.api#required")),
7876
+
7877
+ ],
7463
7878
  },
7464
7879
 
7465
7880
  }
@@ -7561,7 +7976,7 @@ UPDATE_DIMENSION_OUTPUT = Schema.collection(
7561
7976
  id=ShapeID("io.superposition#UpdateDimensionOutput"),
7562
7977
 
7563
7978
  traits=[
7564
- Trait.new(id=ShapeID("smithy.synthetic#originalShapeId"), value="io.superposition#DimensionExt"),
7979
+ Trait.new(id=ShapeID("smithy.synthetic#originalShapeId"), value="io.superposition#DimensionResponse"),
7565
7980
  Trait.new(id=ShapeID("smithy.api#output")),
7566
7981
 
7567
7982
  ],
@@ -7653,7 +8068,7 @@ UPDATE_DIMENSION_OUTPUT = Schema.collection(
7653
8068
  },
7654
8069
 
7655
8070
  "dependency_graph": {
7656
- "target": DEPEDENDENCY_GRAPH,
8071
+ "target": DEPENDENCY_GRAPH,
7657
8072
  "index": 10,
7658
8073
  "traits": [
7659
8074
  Trait.new(id=ShapeID("smithy.api#required")),
@@ -7680,6 +8095,7 @@ UPDATE_DIMENSION_OUTPUT = Schema.collection(
7680
8095
  "index": 13,
7681
8096
  "traits": [
7682
8097
  Trait.new(id=ShapeID("smithy.api#notProperty")),
8098
+ Trait.new(id=ShapeID("smithy.api#required")),
7683
8099
 
7684
8100
  ],
7685
8101
  },
@@ -8139,11 +8555,23 @@ GET_EXPERIMENT_GROUP = Schema(
8139
8555
 
8140
8556
  )
8141
8557
 
8558
+ GROUP_TYPE_LIST = Schema.collection(
8559
+ id=ShapeID("io.superposition#GroupTypeList"),
8560
+ shape_type=ShapeType.LIST,
8561
+ members={
8562
+ "member": {
8563
+ "target": GROUP_TYPE,
8564
+ "index": 0,
8565
+ },
8566
+
8567
+ }
8568
+ )
8569
+
8142
8570
  EXPERIMENT_GROUP_SORT_ON = Schema.collection(
8143
8571
  id=ShapeID("io.superposition#ExperimentGroupSortOn"),
8144
8572
  shape_type=ShapeType.ENUM,
8145
8573
  members={
8146
- "Name": {
8574
+ "NAME": {
8147
8575
  "target": UNIT,
8148
8576
  "index": 0,
8149
8577
  "traits": [
@@ -8152,7 +8580,7 @@ EXPERIMENT_GROUP_SORT_ON = Schema.collection(
8152
8580
  ],
8153
8581
  },
8154
8582
 
8155
- "CreatedAt": {
8583
+ "CREATED_AT": {
8156
8584
  "target": UNIT,
8157
8585
  "index": 1,
8158
8586
  "traits": [
@@ -8161,7 +8589,7 @@ EXPERIMENT_GROUP_SORT_ON = Schema.collection(
8161
8589
  ],
8162
8590
  },
8163
8591
 
8164
- "LastModifiedAt": {
8592
+ "LAST_MODIFIED_AT": {
8165
8593
  "target": UNIT,
8166
8594
  "index": 2,
8167
8595
  "traits": [
@@ -8276,7 +8704,7 @@ LIST_EXPERIMENT_GROUPS_INPUT = Schema.collection(
8276
8704
  },
8277
8705
 
8278
8706
  "group_type": {
8279
- "target": GROUP_TYPE,
8707
+ "target": GROUP_TYPE_LIST,
8280
8708
  "index": 10,
8281
8709
  "traits": [
8282
8710
  Trait.new(id=ShapeID("smithy.api#httpQuery"), value="group_type"),
@@ -8447,16 +8875,28 @@ LIST_EXPERIMENT_GROUPS_OUTPUT = Schema.collection(
8447
8875
  "total_pages": {
8448
8876
  "target": INTEGER,
8449
8877
  "index": 0,
8878
+ "traits": [
8879
+ Trait.new(id=ShapeID("smithy.api#required")),
8880
+
8881
+ ],
8450
8882
  },
8451
8883
 
8452
8884
  "total_items": {
8453
8885
  "target": INTEGER,
8454
8886
  "index": 1,
8887
+ "traits": [
8888
+ Trait.new(id=ShapeID("smithy.api#required")),
8889
+
8890
+ ],
8455
8891
  },
8456
8892
 
8457
8893
  "data": {
8458
8894
  "target": EXPERIMENT_GROUP_LIST,
8459
8895
  "index": 2,
8896
+ "traits": [
8897
+ Trait.new(id=ShapeID("smithy.api#required")),
8898
+
8899
+ ],
8460
8900
  },
8461
8901
 
8462
8902
  }
@@ -9329,7 +9769,7 @@ EXPERIMENT_SORT_ON = Schema.collection(
9329
9769
  id=ShapeID("io.superposition#ExperimentSortOn"),
9330
9770
  shape_type=ShapeType.ENUM,
9331
9771
  members={
9332
- "LastModifiedAt": {
9772
+ "LAST_MODIFIED_AT": {
9333
9773
  "target": UNIT,
9334
9774
  "index": 0,
9335
9775
  "traits": [
@@ -9338,7 +9778,7 @@ EXPERIMENT_SORT_ON = Schema.collection(
9338
9778
  ],
9339
9779
  },
9340
9780
 
9341
- "CreatedAt": {
9781
+ "CREATED_AT": {
9342
9782
  "target": UNIT,
9343
9783
  "index": 1,
9344
9784
  "traits": [
@@ -9350,6 +9790,18 @@ EXPERIMENT_SORT_ON = Schema.collection(
9350
9790
  }
9351
9791
  )
9352
9792
 
9793
+ EXPERIMENT_STATUS_TYPE_LIST = Schema.collection(
9794
+ id=ShapeID("io.superposition#ExperimentStatusTypeList"),
9795
+ shape_type=ShapeType.LIST,
9796
+ members={
9797
+ "member": {
9798
+ "target": EXPERIMENT_STATUS_TYPE,
9799
+ "index": 0,
9800
+ },
9801
+
9802
+ }
9803
+ )
9804
+
9353
9805
  LIST_EXPERIMENT_INPUT = Schema.collection(
9354
9806
  id=ShapeID("io.superposition#ListExperimentInput"),
9355
9807
 
@@ -9406,7 +9858,7 @@ LIST_EXPERIMENT_INPUT = Schema.collection(
9406
9858
  },
9407
9859
 
9408
9860
  "status": {
9409
- "target": EXPERIMENT_STATUS_TYPE,
9861
+ "target": EXPERIMENT_STATUS_TYPE_LIST,
9410
9862
  "index": 5,
9411
9863
  "traits": [
9412
9864
  Trait.new(id=ShapeID("smithy.api#httpQuery"), value="status"),
@@ -9445,7 +9897,7 @@ LIST_EXPERIMENT_INPUT = Schema.collection(
9445
9897
  },
9446
9898
 
9447
9899
  "experiment_ids": {
9448
- "target": STRING,
9900
+ "target": STRING_LIST,
9449
9901
  "index": 9,
9450
9902
  "traits": [
9451
9903
  Trait.new(id=ShapeID("smithy.api#notProperty")),
@@ -9455,7 +9907,7 @@ LIST_EXPERIMENT_INPUT = Schema.collection(
9455
9907
  },
9456
9908
 
9457
9909
  "experiment_group_ids": {
9458
- "target": STRING,
9910
+ "target": STRING_LIST,
9459
9911
  "index": 10,
9460
9912
  "traits": [
9461
9913
  Trait.new(id=ShapeID("smithy.api#notProperty")),
@@ -9465,7 +9917,7 @@ LIST_EXPERIMENT_INPUT = Schema.collection(
9465
9917
  },
9466
9918
 
9467
9919
  "created_by": {
9468
- "target": STRING,
9920
+ "target": STRING_LIST,
9469
9921
  "index": 11,
9470
9922
  "traits": [
9471
9923
  Trait.new(id=ShapeID("smithy.api#notProperty")),
@@ -9528,16 +9980,28 @@ LIST_EXPERIMENT_OUTPUT = Schema.collection(
9528
9980
  "total_pages": {
9529
9981
  "target": INTEGER,
9530
9982
  "index": 0,
9983
+ "traits": [
9984
+ Trait.new(id=ShapeID("smithy.api#required")),
9985
+
9986
+ ],
9531
9987
  },
9532
9988
 
9533
9989
  "total_items": {
9534
9990
  "target": INTEGER,
9535
9991
  "index": 1,
9992
+ "traits": [
9993
+ Trait.new(id=ShapeID("smithy.api#required")),
9994
+
9995
+ ],
9536
9996
  },
9537
9997
 
9538
9998
  "data": {
9539
9999
  "target": EXPERIMENT_LIST,
9540
10000
  "index": 2,
10001
+ "traits": [
10002
+ Trait.new(id=ShapeID("smithy.api#required")),
10003
+
10004
+ ],
9541
10005
  },
9542
10006
 
9543
10007
  }
@@ -10288,7 +10752,7 @@ VARIANT_UPDATE_REQUEST = Schema.collection(
10288
10752
  },
10289
10753
 
10290
10754
  "overrides": {
10291
- "target": DOCUMENT,
10755
+ "target": OVERRIDES,
10292
10756
  "index": 1,
10293
10757
  "traits": [
10294
10758
  Trait.new(id=ShapeID("smithy.api#required")),
@@ -10751,6 +11215,18 @@ GET_FUNCTION = Schema(
10751
11215
 
10752
11216
  )
10753
11217
 
11218
+ FUNCTION_TYPES_LIST = Schema.collection(
11219
+ id=ShapeID("io.superposition#FunctionTypesList"),
11220
+ shape_type=ShapeType.LIST,
11221
+ members={
11222
+ "member": {
11223
+ "target": FUNCTION_TYPES,
11224
+ "index": 0,
11225
+ },
11226
+
11227
+ }
11228
+ )
11229
+
10754
11230
  LIST_FUNCTION_INPUT = Schema.collection(
10755
11231
  id=ShapeID("io.superposition#ListFunctionInput"),
10756
11232
 
@@ -10806,6 +11282,15 @@ LIST_FUNCTION_INPUT = Schema.collection(
10806
11282
  ],
10807
11283
  },
10808
11284
 
11285
+ "function_type": {
11286
+ "target": FUNCTION_TYPES_LIST,
11287
+ "index": 5,
11288
+ "traits": [
11289
+ Trait.new(id=ShapeID("smithy.api#httpQuery"), value="function_type"),
11290
+
11291
+ ],
11292
+ },
11293
+
10809
11294
  }
10810
11295
  )
10811
11296
 
@@ -10949,16 +11434,28 @@ LIST_FUNCTION_OUTPUT = Schema.collection(
10949
11434
  "total_pages": {
10950
11435
  "target": INTEGER,
10951
11436
  "index": 0,
11437
+ "traits": [
11438
+ Trait.new(id=ShapeID("smithy.api#required")),
11439
+
11440
+ ],
10952
11441
  },
10953
11442
 
10954
11443
  "total_items": {
10955
11444
  "target": INTEGER,
10956
11445
  "index": 1,
11446
+ "traits": [
11447
+ Trait.new(id=ShapeID("smithy.api#required")),
11448
+
11449
+ ],
10957
11450
  },
10958
11451
 
10959
11452
  "data": {
10960
11453
  "target": FUNCTION_LIST_RESPONSE,
10961
11454
  "index": 2,
11455
+ "traits": [
11456
+ Trait.new(id=ShapeID("smithy.api#required")),
11457
+
11458
+ ],
10962
11459
  },
10963
11460
 
10964
11461
  }
@@ -11177,11 +11674,19 @@ VALIDATE_FUNCTION_REQUEST = Schema.collection(
11177
11674
  "key": {
11178
11675
  "target": STRING,
11179
11676
  "index": 0,
11677
+ "traits": [
11678
+ Trait.new(id=ShapeID("smithy.api#required")),
11679
+
11680
+ ],
11180
11681
  },
11181
11682
 
11182
11683
  "value": {
11183
11684
  "target": DOCUMENT,
11184
11685
  "index": 1,
11686
+ "traits": [
11687
+ Trait.new(id=ShapeID("smithy.api#required")),
11688
+
11689
+ ],
11185
11690
  },
11186
11691
 
11187
11692
  }
@@ -11409,7 +11914,6 @@ UPDATE_FUNCTION_INPUT = Schema.collection(
11409
11914
  "index": 5,
11410
11915
  "traits": [
11411
11916
  Trait.new(id=ShapeID("smithy.api#notProperty")),
11412
- Trait.new(id=ShapeID("smithy.api#required")),
11413
11917
 
11414
11918
  ],
11415
11919
  },
@@ -11419,7 +11923,6 @@ UPDATE_FUNCTION_INPUT = Schema.collection(
11419
11923
  "index": 6,
11420
11924
  "traits": [
11421
11925
  Trait.new(id=ShapeID("smithy.api#notProperty")),
11422
- Trait.new(id=ShapeID("smithy.api#required")),
11423
11926
 
11424
11927
  ],
11425
11928
  },
@@ -12010,16 +12513,28 @@ GET_TYPE_TEMPLATES_LIST_OUTPUT = Schema.collection(
12010
12513
  "total_pages": {
12011
12514
  "target": INTEGER,
12012
12515
  "index": 0,
12516
+ "traits": [
12517
+ Trait.new(id=ShapeID("smithy.api#required")),
12518
+
12519
+ ],
12013
12520
  },
12014
12521
 
12015
12522
  "total_items": {
12016
12523
  "target": INTEGER,
12017
12524
  "index": 1,
12525
+ "traits": [
12526
+ Trait.new(id=ShapeID("smithy.api#required")),
12527
+
12528
+ ],
12018
12529
  },
12019
12530
 
12020
12531
  "data": {
12021
12532
  "target": TYPE_TEMPLATES_LIST,
12022
12533
  "index": 2,
12534
+ "traits": [
12535
+ Trait.new(id=ShapeID("smithy.api#required")),
12536
+
12537
+ ],
12023
12538
  },
12024
12539
 
12025
12540
  }
@@ -12588,6 +13103,10 @@ GET_WORKSPACE_OUTPUT = Schema.collection(
12588
13103
  "metrics": {
12589
13104
  "target": DOCUMENT,
12590
13105
  "index": 13,
13106
+ "traits": [
13107
+ Trait.new(id=ShapeID("smithy.api#required")),
13108
+
13109
+ ],
12591
13110
  },
12592
13111
 
12593
13112
  "allow_experiment_self_approval": {
@@ -12788,16 +13307,28 @@ LIST_ORGANISATION_OUTPUT = Schema.collection(
12788
13307
  "total_pages": {
12789
13308
  "target": INTEGER,
12790
13309
  "index": 0,
13310
+ "traits": [
13311
+ Trait.new(id=ShapeID("smithy.api#required")),
13312
+
13313
+ ],
12791
13314
  },
12792
13315
 
12793
13316
  "total_items": {
12794
13317
  "target": INTEGER,
12795
13318
  "index": 1,
13319
+ "traits": [
13320
+ Trait.new(id=ShapeID("smithy.api#required")),
13321
+
13322
+ ],
12796
13323
  },
12797
13324
 
12798
13325
  "data": {
12799
13326
  "target": ORGANISATION_LIST,
12800
13327
  "index": 2,
13328
+ "traits": [
13329
+ Trait.new(id=ShapeID("smithy.api#required")),
13330
+
13331
+ ],
12801
13332
  },
12802
13333
 
12803
13334
  }
@@ -13035,16 +13566,28 @@ LIST_WEBHOOK_OUTPUT = Schema.collection(
13035
13566
  "total_pages": {
13036
13567
  "target": INTEGER,
13037
13568
  "index": 0,
13569
+ "traits": [
13570
+ Trait.new(id=ShapeID("smithy.api#required")),
13571
+
13572
+ ],
13038
13573
  },
13039
13574
 
13040
13575
  "total_items": {
13041
13576
  "target": INTEGER,
13042
13577
  "index": 1,
13578
+ "traits": [
13579
+ Trait.new(id=ShapeID("smithy.api#required")),
13580
+
13581
+ ],
13043
13582
  },
13044
13583
 
13045
13584
  "data": {
13046
13585
  "target": WEBHOOK_LIST,
13047
13586
  "index": 2,
13587
+ "traits": [
13588
+ Trait.new(id=ShapeID("smithy.api#required")),
13589
+
13590
+ ],
13048
13591
  },
13049
13592
 
13050
13593
  }
@@ -13231,6 +13774,10 @@ WORKSPACE_RESPONSE = Schema.collection(
13231
13774
  "metrics": {
13232
13775
  "target": DOCUMENT,
13233
13776
  "index": 13,
13777
+ "traits": [
13778
+ Trait.new(id=ShapeID("smithy.api#required")),
13779
+
13780
+ ],
13234
13781
  },
13235
13782
 
13236
13783
  "allow_experiment_self_approval": {
@@ -13277,16 +13824,28 @@ LIST_WORKSPACE_OUTPUT = Schema.collection(
13277
13824
  "total_pages": {
13278
13825
  "target": INTEGER,
13279
13826
  "index": 0,
13827
+ "traits": [
13828
+ Trait.new(id=ShapeID("smithy.api#required")),
13829
+
13830
+ ],
13280
13831
  },
13281
13832
 
13282
13833
  "total_items": {
13283
13834
  "target": INTEGER,
13284
13835
  "index": 1,
13836
+ "traits": [
13837
+ Trait.new(id=ShapeID("smithy.api#required")),
13838
+
13839
+ ],
13285
13840
  },
13286
13841
 
13287
13842
  "data": {
13288
13843
  "target": WORKSPACE_LIST,
13289
13844
  "index": 2,
13845
+ "traits": [
13846
+ Trait.new(id=ShapeID("smithy.api#required")),
13847
+
13848
+ ],
13290
13849
  },
13291
13850
 
13292
13851
  }
@@ -13462,6 +14021,10 @@ MIGRATE_WORKSPACE_SCHEMA_OUTPUT = Schema.collection(
13462
14021
  "metrics": {
13463
14022
  "target": DOCUMENT,
13464
14023
  "index": 13,
14024
+ "traits": [
14025
+ Trait.new(id=ShapeID("smithy.api#required")),
14026
+
14027
+ ],
13465
14028
  },
13466
14029
 
13467
14030
  "allow_experiment_self_approval": {
@@ -13882,37 +14445,21 @@ UPDATE_WEBHOOK_INPUT = Schema.collection(
13882
14445
  "description": {
13883
14446
  "target": STRING,
13884
14447
  "index": 3,
13885
- "traits": [
13886
- Trait.new(id=ShapeID("smithy.api#required")),
13887
-
13888
- ],
13889
14448
  },
13890
14449
 
13891
14450
  "enabled": {
13892
14451
  "target": BOOLEAN,
13893
14452
  "index": 4,
13894
- "traits": [
13895
- Trait.new(id=ShapeID("smithy.api#required")),
13896
-
13897
- ],
13898
14453
  },
13899
14454
 
13900
14455
  "url": {
13901
14456
  "target": STRING,
13902
14457
  "index": 5,
13903
- "traits": [
13904
- Trait.new(id=ShapeID("smithy.api#required")),
13905
-
13906
- ],
13907
14458
  },
13908
14459
 
13909
14460
  "method": {
13910
14461
  "target": HTTP_METHOD,
13911
14462
  "index": 6,
13912
- "traits": [
13913
- Trait.new(id=ShapeID("smithy.api#required")),
13914
-
13915
- ],
13916
14463
  },
13917
14464
 
13918
14465
  "version": {
@@ -13928,10 +14475,6 @@ UPDATE_WEBHOOK_INPUT = Schema.collection(
13928
14475
  "events": {
13929
14476
  "target": EVENTS,
13930
14477
  "index": 9,
13931
- "traits": [
13932
- Trait.new(id=ShapeID("smithy.api#required")),
13933
-
13934
- ],
13935
14478
  },
13936
14479
 
13937
14480
  "change_reason": {
@@ -14294,6 +14837,10 @@ UPDATE_WORKSPACE_OUTPUT = Schema.collection(
14294
14837
  "metrics": {
14295
14838
  "target": DOCUMENT,
14296
14839
  "index": 13,
14840
+ "traits": [
14841
+ Trait.new(id=ShapeID("smithy.api#required")),
14842
+
14843
+ ],
14297
14844
  },
14298
14845
 
14299
14846
  "allow_experiment_self_approval": {