superposition-sdk 0.93.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")),
@@ -720,39 +737,68 @@ AUDIT_LOG_FULL = Schema.collection(
720
737
  id=ShapeID("io.superposition#AuditLogFull"),
721
738
 
722
739
  members={
723
- "table_name": {
740
+ "id": {
724
741
  "target": STRING,
725
742
  "index": 0,
743
+ "traits": [
744
+ Trait.new(id=ShapeID("smithy.api#required")),
745
+
746
+ ],
726
747
  },
727
748
 
728
- "user_name": {
749
+ "table_name": {
729
750
  "target": STRING,
730
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
+ ],
731
765
  },
732
766
 
733
767
  "timestamp": {
734
768
  "target": DATE_TIME,
735
- "index": 2,
769
+ "index": 3,
770
+ "traits": [
771
+ Trait.new(id=ShapeID("smithy.api#required")),
772
+
773
+ ],
736
774
  },
737
775
 
738
776
  "action": {
739
- "target": STRING,
740
- "index": 3,
777
+ "target": AUDIT_ACTION,
778
+ "index": 4,
779
+ "traits": [
780
+ Trait.new(id=ShapeID("smithy.api#required")),
781
+
782
+ ],
741
783
  },
742
784
 
743
785
  "original_data": {
744
786
  "target": DOCUMENT,
745
- "index": 4,
787
+ "index": 5,
746
788
  },
747
789
 
748
790
  "new_data": {
749
791
  "target": DOCUMENT,
750
- "index": 5,
792
+ "index": 6,
751
793
  },
752
794
 
753
795
  "query": {
754
796
  "target": STRING,
755
- "index": 6,
797
+ "index": 7,
798
+ "traits": [
799
+ Trait.new(id=ShapeID("smithy.api#required")),
800
+
801
+ ],
756
802
  },
757
803
 
758
804
  }
@@ -781,16 +827,28 @@ LIST_AUDIT_LOGS_OUTPUT = Schema.collection(
781
827
  "total_pages": {
782
828
  "target": INTEGER,
783
829
  "index": 0,
830
+ "traits": [
831
+ Trait.new(id=ShapeID("smithy.api#required")),
832
+
833
+ ],
784
834
  },
785
835
 
786
836
  "total_items": {
787
837
  "target": INTEGER,
788
838
  "index": 1,
839
+ "traits": [
840
+ Trait.new(id=ShapeID("smithy.api#required")),
841
+
842
+ ],
789
843
  },
790
844
 
791
845
  "data": {
792
846
  "target": AUDIT_LOG_LIST,
793
847
  "index": 2,
848
+ "traits": [
849
+ Trait.new(id=ShapeID("smithy.api#required")),
850
+
851
+ ],
794
852
  },
795
853
 
796
854
  }
@@ -820,16 +878,28 @@ AUTOCOMPLETE_FUNCTION_REQUEST = Schema.collection(
820
878
  "name": {
821
879
  "target": STRING,
822
880
  "index": 0,
881
+ "traits": [
882
+ Trait.new(id=ShapeID("smithy.api#required")),
883
+
884
+ ],
823
885
  },
824
886
 
825
887
  "prefix": {
826
888
  "target": STRING,
827
889
  "index": 1,
890
+ "traits": [
891
+ Trait.new(id=ShapeID("smithy.api#required")),
892
+
893
+ ],
828
894
  },
829
895
 
830
896
  "environment": {
831
897
  "target": DOCUMENT,
832
898
  "index": 2,
899
+ "traits": [
900
+ Trait.new(id=ShapeID("smithy.api#required")),
901
+
902
+ ],
833
903
  },
834
904
 
835
905
  }
@@ -839,14 +909,9 @@ CONTEXT_MOVE = Schema.collection(
839
909
  id=ShapeID("io.superposition#ContextMove"),
840
910
 
841
911
  members={
842
- "id": {
843
- "target": STRING,
844
- "index": 0,
845
- },
846
-
847
912
  "context": {
848
913
  "target": CONDITION,
849
- "index": 1,
914
+ "index": 0,
850
915
  "traits": [
851
916
  Trait.new(id=ShapeID("smithy.api#required")),
852
917
 
@@ -855,12 +920,12 @@ CONTEXT_MOVE = Schema.collection(
855
920
 
856
921
  "description": {
857
922
  "target": STRING,
858
- "index": 2,
923
+ "index": 1,
859
924
  },
860
925
 
861
926
  "change_reason": {
862
927
  "target": STRING,
863
- "index": 3,
928
+ "index": 2,
864
929
  "traits": [
865
930
  Trait.new(id=ShapeID("smithy.api#required")),
866
931
 
@@ -870,18 +935,26 @@ CONTEXT_MOVE = Schema.collection(
870
935
  }
871
936
  )
872
937
 
873
- OVERRIDES = Schema.collection(
874
- id=ShapeID("io.superposition#Overrides"),
875
- shape_type=ShapeType.MAP,
938
+ CONTEXT_MOVE_BULK_REQUEST = Schema.collection(
939
+ id=ShapeID("io.superposition#ContextMoveBulkRequest"),
940
+
876
941
  members={
877
- "key": {
942
+ "id": {
878
943
  "target": STRING,
879
944
  "index": 0,
945
+ "traits": [
946
+ Trait.new(id=ShapeID("smithy.api#required")),
947
+
948
+ ],
880
949
  },
881
950
 
882
- "value": {
883
- "target": DOCUMENT,
951
+ "request": {
952
+ "target": CONTEXT_MOVE,
884
953
  "index": 1,
954
+ "traits": [
955
+ Trait.new(id=ShapeID("smithy.api#required")),
956
+
957
+ ],
885
958
  },
886
959
 
887
960
  }
@@ -1002,7 +1075,7 @@ CONTEXT_ACTION = Schema.collection(
1002
1075
  },
1003
1076
 
1004
1077
  "MOVE": {
1005
- "target": CONTEXT_MOVE,
1078
+ "target": CONTEXT_MOVE_BULK_REQUEST,
1006
1079
  "index": 3,
1007
1080
  },
1008
1081
 
@@ -1021,18 +1094,6 @@ BULK_OPERATION_LIST = Schema.collection(
1021
1094
  }
1022
1095
  )
1023
1096
 
1024
- BULK_OPERATION_REQ = Schema.collection(
1025
- id=ShapeID("io.superposition#BulkOperationReq"),
1026
-
1027
- members={
1028
- "operations": {
1029
- "target": BULK_OPERATION_LIST,
1030
- "index": 0,
1031
- },
1032
-
1033
- }
1034
- )
1035
-
1036
1097
  BULK_OPERATION_INPUT = Schema.collection(
1037
1098
  id=ShapeID("io.superposition#BulkOperationInput"),
1038
1099
 
@@ -1071,13 +1132,12 @@ BULK_OPERATION_INPUT = Schema.collection(
1071
1132
  ],
1072
1133
  },
1073
1134
 
1074
- "bulk_operation": {
1075
- "target": BULK_OPERATION_REQ,
1135
+ "operations": {
1136
+ "target": BULK_OPERATION_LIST,
1076
1137
  "index": 3,
1077
1138
  "traits": [
1078
1139
  Trait.new(id=ShapeID("smithy.api#notProperty")),
1079
1140
  Trait.new(id=ShapeID("smithy.api#required")),
1080
- Trait.new(id=ShapeID("smithy.api#httpPayload")),
1081
1141
 
1082
1142
  ],
1083
1143
  },
@@ -1107,51 +1167,91 @@ CONTEXT_RESPONSE = Schema.collection(
1107
1167
  "value": {
1108
1168
  "target": CONDITION,
1109
1169
  "index": 1,
1170
+ "traits": [
1171
+ Trait.new(id=ShapeID("smithy.api#required")),
1172
+
1173
+ ],
1110
1174
  },
1111
1175
 
1112
1176
  "override": {
1113
1177
  "target": OVERRIDES,
1114
1178
  "index": 2,
1179
+ "traits": [
1180
+ Trait.new(id=ShapeID("smithy.api#required")),
1181
+
1182
+ ],
1115
1183
  },
1116
1184
 
1117
1185
  "override_id": {
1118
1186
  "target": STRING,
1119
1187
  "index": 3,
1188
+ "traits": [
1189
+ Trait.new(id=ShapeID("smithy.api#required")),
1190
+
1191
+ ],
1120
1192
  },
1121
1193
 
1122
1194
  "weight": {
1123
1195
  "target": WEIGHT,
1124
1196
  "index": 4,
1197
+ "traits": [
1198
+ Trait.new(id=ShapeID("smithy.api#required")),
1199
+
1200
+ ],
1125
1201
  },
1126
1202
 
1127
1203
  "description": {
1128
1204
  "target": STRING,
1129
1205
  "index": 5,
1206
+ "traits": [
1207
+ Trait.new(id=ShapeID("smithy.api#required")),
1208
+
1209
+ ],
1130
1210
  },
1131
1211
 
1132
1212
  "change_reason": {
1133
1213
  "target": STRING,
1134
1214
  "index": 6,
1215
+ "traits": [
1216
+ Trait.new(id=ShapeID("smithy.api#required")),
1217
+
1218
+ ],
1135
1219
  },
1136
1220
 
1137
1221
  "created_at": {
1138
1222
  "target": DATE_TIME,
1139
1223
  "index": 7,
1224
+ "traits": [
1225
+ Trait.new(id=ShapeID("smithy.api#required")),
1226
+
1227
+ ],
1140
1228
  },
1141
1229
 
1142
1230
  "created_by": {
1143
1231
  "target": STRING,
1144
1232
  "index": 8,
1233
+ "traits": [
1234
+ Trait.new(id=ShapeID("smithy.api#required")),
1235
+
1236
+ ],
1145
1237
  },
1146
1238
 
1147
1239
  "last_modified_at": {
1148
1240
  "target": DATE_TIME,
1149
1241
  "index": 9,
1242
+ "traits": [
1243
+ Trait.new(id=ShapeID("smithy.api#required")),
1244
+
1245
+ ],
1150
1246
  },
1151
1247
 
1152
1248
  "last_modified_by": {
1153
1249
  "target": STRING,
1154
1250
  "index": 10,
1251
+ "traits": [
1252
+ Trait.new(id=ShapeID("smithy.api#required")),
1253
+
1254
+ ],
1155
1255
  },
1156
1256
 
1157
1257
  }
@@ -1196,18 +1296,6 @@ BULK_OPERATION_OUT_LIST = Schema.collection(
1196
1296
  }
1197
1297
  )
1198
1298
 
1199
- BULK_OPERATION_OUT = Schema.collection(
1200
- id=ShapeID("io.superposition#BulkOperationOut"),
1201
-
1202
- members={
1203
- "output": {
1204
- "target": BULK_OPERATION_OUT_LIST,
1205
- "index": 0,
1206
- },
1207
-
1208
- }
1209
- )
1210
-
1211
1299
  BULK_OPERATION_OUTPUT = Schema.collection(
1212
1300
  id=ShapeID("io.superposition#BulkOperationOutput"),
1213
1301
 
@@ -1216,12 +1304,11 @@ BULK_OPERATION_OUTPUT = Schema.collection(
1216
1304
 
1217
1305
  ],
1218
1306
  members={
1219
- "bulk_operation_output": {
1220
- "target": BULK_OPERATION_OUT,
1307
+ "output": {
1308
+ "target": BULK_OPERATION_OUT_LIST,
1221
1309
  "index": 0,
1222
1310
  "traits": [
1223
- Trait.new(id=ShapeID("smithy.api#notProperty")),
1224
- Trait.new(id=ShapeID("smithy.api#httpPayload")),
1311
+ Trait.new(id=ShapeID("smithy.api#required")),
1225
1312
 
1226
1313
  ],
1227
1314
  },
@@ -1686,26 +1773,46 @@ CONTEXT_PARTIAL = Schema.collection(
1686
1773
  "id": {
1687
1774
  "target": STRING,
1688
1775
  "index": 0,
1776
+ "traits": [
1777
+ Trait.new(id=ShapeID("smithy.api#required")),
1778
+
1779
+ ],
1689
1780
  },
1690
1781
 
1691
1782
  "condition": {
1692
1783
  "target": CONDITION,
1693
1784
  "index": 1,
1785
+ "traits": [
1786
+ Trait.new(id=ShapeID("smithy.api#required")),
1787
+
1788
+ ],
1694
1789
  },
1695
1790
 
1696
1791
  "priority": {
1697
1792
  "target": INTEGER,
1698
1793
  "index": 2,
1794
+ "traits": [
1795
+ Trait.new(id=ShapeID("smithy.api#required")),
1796
+
1797
+ ],
1699
1798
  },
1700
1799
 
1701
1800
  "weight": {
1702
1801
  "target": INTEGER,
1703
1802
  "index": 3,
1803
+ "traits": [
1804
+ Trait.new(id=ShapeID("smithy.api#required")),
1805
+
1806
+ ],
1704
1807
  },
1705
1808
 
1706
1809
  "override_with_keys": {
1707
1810
  "target": OVERRIDE_WITH_KEYS,
1708
1811
  "index": 4,
1812
+ "traits": [
1813
+ Trait.new(id=ShapeID("smithy.api#required")),
1814
+
1815
+ ],
1709
1816
  },
1710
1817
 
1711
1818
  }
@@ -1740,8 +1847,8 @@ OBJECT = Schema.collection(
1740
1847
  }
1741
1848
  )
1742
1849
 
1743
- DEPEDENDENCY_GRAPH = Schema.collection(
1744
- id=ShapeID("io.superposition#DepedendencyGraph"),
1850
+ DEPENDENCY_GRAPH = Schema.collection(
1851
+ id=ShapeID("io.superposition#DependencyGraph"),
1745
1852
  shape_type=ShapeType.MAP,
1746
1853
  members={
1747
1854
  "key": {
@@ -1786,21 +1893,37 @@ DIMENSION_INFO = Schema.collection(
1786
1893
  "schema": {
1787
1894
  "target": OBJECT,
1788
1895
  "index": 0,
1896
+ "traits": [
1897
+ Trait.new(id=ShapeID("smithy.api#required")),
1898
+
1899
+ ],
1789
1900
  },
1790
1901
 
1791
1902
  "position": {
1792
1903
  "target": INTEGER,
1793
1904
  "index": 1,
1905
+ "traits": [
1906
+ Trait.new(id=ShapeID("smithy.api#required")),
1907
+
1908
+ ],
1794
1909
  },
1795
1910
 
1796
1911
  "dimension_type": {
1797
1912
  "target": DIMENSION_TYPE,
1798
1913
  "index": 2,
1914
+ "traits": [
1915
+ Trait.new(id=ShapeID("smithy.api#required")),
1916
+
1917
+ ],
1799
1918
  },
1800
1919
 
1801
1920
  "dependency_graph": {
1802
- "target": DEPEDENDENCY_GRAPH,
1921
+ "target": DEPENDENCY_GRAPH,
1803
1922
  "index": 3,
1923
+ "traits": [
1924
+ Trait.new(id=ShapeID("smithy.api#required")),
1925
+
1926
+ ],
1804
1927
  },
1805
1928
 
1806
1929
  }
@@ -1853,6 +1976,7 @@ GET_CONFIG_OUTPUT = Schema.collection(
1853
1976
  "index": 0,
1854
1977
  "traits": [
1855
1978
  Trait.new(id=ShapeID("smithy.api#notProperty")),
1979
+ Trait.new(id=ShapeID("smithy.api#required")),
1856
1980
 
1857
1981
  ],
1858
1982
  },
@@ -1862,6 +1986,7 @@ GET_CONFIG_OUTPUT = Schema.collection(
1862
1986
  "index": 1,
1863
1987
  "traits": [
1864
1988
  Trait.new(id=ShapeID("smithy.api#notProperty")),
1989
+ Trait.new(id=ShapeID("smithy.api#required")),
1865
1990
 
1866
1991
  ],
1867
1992
  },
@@ -1871,6 +1996,7 @@ GET_CONFIG_OUTPUT = Schema.collection(
1871
1996
  "index": 2,
1872
1997
  "traits": [
1873
1998
  Trait.new(id=ShapeID("smithy.api#notProperty")),
1999
+ Trait.new(id=ShapeID("smithy.api#required")),
1874
2000
 
1875
2001
  ],
1876
2002
  },
@@ -1880,6 +2006,7 @@ GET_CONFIG_OUTPUT = Schema.collection(
1880
2006
  "index": 3,
1881
2007
  "traits": [
1882
2008
  Trait.new(id=ShapeID("smithy.api#notProperty")),
2009
+ Trait.new(id=ShapeID("smithy.api#required")),
1883
2010
 
1884
2011
  ],
1885
2012
  },
@@ -1889,6 +2016,7 @@ GET_CONFIG_OUTPUT = Schema.collection(
1889
2016
  "index": 4,
1890
2017
  "traits": [
1891
2018
  Trait.new(id=ShapeID("smithy.api#httpHeader"), value="x-config-version"),
2019
+ Trait.new(id=ShapeID("smithy.api#required")),
1892
2020
 
1893
2021
  ],
1894
2022
  },
@@ -1898,6 +2026,7 @@ GET_CONFIG_OUTPUT = Schema.collection(
1898
2026
  "index": 5,
1899
2027
  "traits": [
1900
2028
  Trait.new(id=ShapeID("smithy.api#httpHeader"), value="last-modified"),
2029
+ Trait.new(id=ShapeID("smithy.api#required")),
1901
2030
 
1902
2031
  ],
1903
2032
  },
@@ -2154,6 +2283,7 @@ GET_RESOLVED_CONFIG_OUTPUT = Schema.collection(
2154
2283
  "target": DOCUMENT,
2155
2284
  "index": 0,
2156
2285
  "traits": [
2286
+ Trait.new(id=ShapeID("smithy.api#required")),
2157
2287
  Trait.new(id=ShapeID("smithy.api#httpPayload")),
2158
2288
 
2159
2289
  ],
@@ -2164,6 +2294,7 @@ GET_RESOLVED_CONFIG_OUTPUT = Schema.collection(
2164
2294
  "index": 1,
2165
2295
  "traits": [
2166
2296
  Trait.new(id=ShapeID("smithy.api#httpHeader"), value="x-config-version"),
2297
+ Trait.new(id=ShapeID("smithy.api#required")),
2167
2298
 
2168
2299
  ],
2169
2300
  },
@@ -2173,6 +2304,7 @@ GET_RESOLVED_CONFIG_OUTPUT = Schema.collection(
2173
2304
  "index": 2,
2174
2305
  "traits": [
2175
2306
  Trait.new(id=ShapeID("smithy.api#httpHeader"), value="last-modified"),
2307
+ Trait.new(id=ShapeID("smithy.api#required")),
2176
2308
 
2177
2309
  ],
2178
2310
  },
@@ -2448,16 +2580,28 @@ LIST_VERSIONS_OUTPUT = Schema.collection(
2448
2580
  "total_pages": {
2449
2581
  "target": INTEGER,
2450
2582
  "index": 0,
2583
+ "traits": [
2584
+ Trait.new(id=ShapeID("smithy.api#required")),
2585
+
2586
+ ],
2451
2587
  },
2452
2588
 
2453
2589
  "total_items": {
2454
2590
  "target": INTEGER,
2455
2591
  "index": 1,
2592
+ "traits": [
2593
+ Trait.new(id=ShapeID("smithy.api#required")),
2594
+
2595
+ ],
2456
2596
  },
2457
2597
 
2458
2598
  "data": {
2459
2599
  "target": LIST_VERSIONS_OUT,
2460
2600
  "index": 2,
2601
+ "traits": [
2602
+ Trait.new(id=ShapeID("smithy.api#required")),
2603
+
2604
+ ],
2461
2605
  },
2462
2606
 
2463
2607
  }
@@ -2508,19 +2652,9 @@ CREATE_CONTEXT_INPUT = Schema.collection(
2508
2652
  ],
2509
2653
  },
2510
2654
 
2511
- "context": {
2512
- "target": CONDITION,
2513
- "index": 2,
2514
- "traits": [
2515
- Trait.new(id=ShapeID("smithy.api#notProperty")),
2516
- Trait.new(id=ShapeID("smithy.api#required")),
2517
-
2518
- ],
2519
- },
2520
-
2521
2655
  "config_tags": {
2522
2656
  "target": STRING,
2523
- "index": 3,
2657
+ "index": 2,
2524
2658
  "traits": [
2525
2659
  Trait.new(id=ShapeID("smithy.api#httpHeader"), value="x-config-tags"),
2526
2660
  Trait.new(id=ShapeID("smithy.api#notProperty")),
@@ -2528,25 +2662,13 @@ CREATE_CONTEXT_INPUT = Schema.collection(
2528
2662
  ],
2529
2663
  },
2530
2664
 
2531
- "override": {
2532
- "target": OVERRIDES,
2533
- "index": 4,
2534
- "traits": [
2535
- Trait.new(id=ShapeID("smithy.api#required")),
2536
-
2537
- ],
2538
- },
2539
-
2540
- "description": {
2541
- "target": STRING,
2542
- "index": 5,
2543
- },
2544
-
2545
- "change_reason": {
2546
- "target": STRING,
2547
- "index": 6,
2665
+ "request": {
2666
+ "target": CONTEXT_PUT,
2667
+ "index": 3,
2548
2668
  "traits": [
2669
+ Trait.new(id=ShapeID("smithy.api#notProperty")),
2549
2670
  Trait.new(id=ShapeID("smithy.api#required")),
2671
+ Trait.new(id=ShapeID("smithy.api#httpPayload")),
2550
2672
 
2551
2673
  ],
2552
2674
  },
@@ -2575,51 +2697,91 @@ CREATE_CONTEXT_OUTPUT = Schema.collection(
2575
2697
  "value": {
2576
2698
  "target": CONDITION,
2577
2699
  "index": 1,
2700
+ "traits": [
2701
+ Trait.new(id=ShapeID("smithy.api#required")),
2702
+
2703
+ ],
2578
2704
  },
2579
2705
 
2580
2706
  "override": {
2581
2707
  "target": OVERRIDES,
2582
2708
  "index": 2,
2709
+ "traits": [
2710
+ Trait.new(id=ShapeID("smithy.api#required")),
2711
+
2712
+ ],
2583
2713
  },
2584
2714
 
2585
2715
  "override_id": {
2586
2716
  "target": STRING,
2587
2717
  "index": 3,
2718
+ "traits": [
2719
+ Trait.new(id=ShapeID("smithy.api#required")),
2720
+
2721
+ ],
2588
2722
  },
2589
2723
 
2590
2724
  "weight": {
2591
2725
  "target": WEIGHT,
2592
2726
  "index": 4,
2727
+ "traits": [
2728
+ Trait.new(id=ShapeID("smithy.api#required")),
2729
+
2730
+ ],
2593
2731
  },
2594
2732
 
2595
2733
  "description": {
2596
2734
  "target": STRING,
2597
2735
  "index": 5,
2736
+ "traits": [
2737
+ Trait.new(id=ShapeID("smithy.api#required")),
2738
+
2739
+ ],
2598
2740
  },
2599
2741
 
2600
2742
  "change_reason": {
2601
2743
  "target": STRING,
2602
2744
  "index": 6,
2745
+ "traits": [
2746
+ Trait.new(id=ShapeID("smithy.api#required")),
2747
+
2748
+ ],
2603
2749
  },
2604
2750
 
2605
2751
  "created_at": {
2606
2752
  "target": DATE_TIME,
2607
2753
  "index": 7,
2754
+ "traits": [
2755
+ Trait.new(id=ShapeID("smithy.api#required")),
2756
+
2757
+ ],
2608
2758
  },
2609
2759
 
2610
2760
  "created_by": {
2611
2761
  "target": STRING,
2612
2762
  "index": 8,
2763
+ "traits": [
2764
+ Trait.new(id=ShapeID("smithy.api#required")),
2765
+
2766
+ ],
2613
2767
  },
2614
2768
 
2615
2769
  "last_modified_at": {
2616
2770
  "target": DATE_TIME,
2617
2771
  "index": 9,
2772
+ "traits": [
2773
+ Trait.new(id=ShapeID("smithy.api#required")),
2774
+
2775
+ ],
2618
2776
  },
2619
2777
 
2620
2778
  "last_modified_by": {
2621
2779
  "target": STRING,
2622
2780
  "index": 10,
2781
+ "traits": [
2782
+ Trait.new(id=ShapeID("smithy.api#required")),
2783
+
2784
+ ],
2623
2785
  },
2624
2786
 
2625
2787
  }
@@ -2715,7 +2877,7 @@ DELETE_CONTEXT = Schema(
2715
2877
  Trait.new(id=ShapeID("smithy.api#http"), value=MappingProxyType({
2716
2878
  "method": "DELETE",
2717
2879
  "uri": "/context/{id}",
2718
- "code": 201,
2880
+ "code": 204,
2719
2881
  })),
2720
2882
 
2721
2883
  ],
@@ -2784,51 +2946,91 @@ GET_CONTEXT_OUTPUT = Schema.collection(
2784
2946
  "value": {
2785
2947
  "target": CONDITION,
2786
2948
  "index": 1,
2949
+ "traits": [
2950
+ Trait.new(id=ShapeID("smithy.api#required")),
2951
+
2952
+ ],
2787
2953
  },
2788
2954
 
2789
2955
  "override": {
2790
2956
  "target": OVERRIDES,
2791
2957
  "index": 2,
2958
+ "traits": [
2959
+ Trait.new(id=ShapeID("smithy.api#required")),
2960
+
2961
+ ],
2792
2962
  },
2793
2963
 
2794
2964
  "override_id": {
2795
2965
  "target": STRING,
2796
2966
  "index": 3,
2967
+ "traits": [
2968
+ Trait.new(id=ShapeID("smithy.api#required")),
2969
+
2970
+ ],
2797
2971
  },
2798
2972
 
2799
2973
  "weight": {
2800
2974
  "target": WEIGHT,
2801
2975
  "index": 4,
2976
+ "traits": [
2977
+ Trait.new(id=ShapeID("smithy.api#required")),
2978
+
2979
+ ],
2802
2980
  },
2803
2981
 
2804
2982
  "description": {
2805
2983
  "target": STRING,
2806
2984
  "index": 5,
2985
+ "traits": [
2986
+ Trait.new(id=ShapeID("smithy.api#required")),
2987
+
2988
+ ],
2807
2989
  },
2808
2990
 
2809
2991
  "change_reason": {
2810
2992
  "target": STRING,
2811
2993
  "index": 6,
2994
+ "traits": [
2995
+ Trait.new(id=ShapeID("smithy.api#required")),
2996
+
2997
+ ],
2812
2998
  },
2813
2999
 
2814
3000
  "created_at": {
2815
3001
  "target": DATE_TIME,
2816
3002
  "index": 7,
3003
+ "traits": [
3004
+ Trait.new(id=ShapeID("smithy.api#required")),
3005
+
3006
+ ],
2817
3007
  },
2818
3008
 
2819
3009
  "created_by": {
2820
3010
  "target": STRING,
2821
3011
  "index": 8,
3012
+ "traits": [
3013
+ Trait.new(id=ShapeID("smithy.api#required")),
3014
+
3015
+ ],
2822
3016
  },
2823
3017
 
2824
3018
  "last_modified_at": {
2825
3019
  "target": DATE_TIME,
2826
3020
  "index": 9,
3021
+ "traits": [
3022
+ Trait.new(id=ShapeID("smithy.api#required")),
3023
+
3024
+ ],
2827
3025
  },
2828
3026
 
2829
3027
  "last_modified_by": {
2830
3028
  "target": STRING,
2831
3029
  "index": 10,
3030
+ "traits": [
3031
+ Trait.new(id=ShapeID("smithy.api#required")),
3032
+
3033
+ ],
2832
3034
  },
2833
3035
 
2834
3036
  }
@@ -2913,51 +3115,91 @@ GET_CONTEXT_FROM_CONDITION_OUTPUT = Schema.collection(
2913
3115
  "value": {
2914
3116
  "target": CONDITION,
2915
3117
  "index": 1,
3118
+ "traits": [
3119
+ Trait.new(id=ShapeID("smithy.api#required")),
3120
+
3121
+ ],
2916
3122
  },
2917
3123
 
2918
3124
  "override": {
2919
3125
  "target": OVERRIDES,
2920
3126
  "index": 2,
3127
+ "traits": [
3128
+ Trait.new(id=ShapeID("smithy.api#required")),
3129
+
3130
+ ],
2921
3131
  },
2922
3132
 
2923
3133
  "override_id": {
2924
3134
  "target": STRING,
2925
3135
  "index": 3,
3136
+ "traits": [
3137
+ Trait.new(id=ShapeID("smithy.api#required")),
3138
+
3139
+ ],
2926
3140
  },
2927
3141
 
2928
3142
  "weight": {
2929
3143
  "target": WEIGHT,
2930
3144
  "index": 4,
3145
+ "traits": [
3146
+ Trait.new(id=ShapeID("smithy.api#required")),
3147
+
3148
+ ],
2931
3149
  },
2932
3150
 
2933
3151
  "description": {
2934
3152
  "target": STRING,
2935
3153
  "index": 5,
3154
+ "traits": [
3155
+ Trait.new(id=ShapeID("smithy.api#required")),
3156
+
3157
+ ],
2936
3158
  },
2937
3159
 
2938
3160
  "change_reason": {
2939
3161
  "target": STRING,
2940
3162
  "index": 6,
3163
+ "traits": [
3164
+ Trait.new(id=ShapeID("smithy.api#required")),
3165
+
3166
+ ],
2941
3167
  },
2942
3168
 
2943
3169
  "created_at": {
2944
3170
  "target": DATE_TIME,
2945
3171
  "index": 7,
3172
+ "traits": [
3173
+ Trait.new(id=ShapeID("smithy.api#required")),
3174
+
3175
+ ],
2946
3176
  },
2947
3177
 
2948
3178
  "created_by": {
2949
3179
  "target": STRING,
2950
3180
  "index": 8,
3181
+ "traits": [
3182
+ Trait.new(id=ShapeID("smithy.api#required")),
3183
+
3184
+ ],
2951
3185
  },
2952
3186
 
2953
3187
  "last_modified_at": {
2954
3188
  "target": DATE_TIME,
2955
3189
  "index": 9,
3190
+ "traits": [
3191
+ Trait.new(id=ShapeID("smithy.api#required")),
3192
+
3193
+ ],
2956
3194
  },
2957
3195
 
2958
3196
  "last_modified_by": {
2959
3197
  "target": STRING,
2960
3198
  "index": 10,
3199
+ "traits": [
3200
+ Trait.new(id=ShapeID("smithy.api#required")),
3201
+
3202
+ ],
2961
3203
  },
2962
3204
 
2963
3205
  }
@@ -3189,16 +3431,28 @@ LIST_CONTEXTS_OUTPUT = Schema.collection(
3189
3431
  "total_pages": {
3190
3432
  "target": INTEGER,
3191
3433
  "index": 0,
3434
+ "traits": [
3435
+ Trait.new(id=ShapeID("smithy.api#required")),
3436
+
3437
+ ],
3192
3438
  },
3193
3439
 
3194
3440
  "total_items": {
3195
3441
  "target": INTEGER,
3196
3442
  "index": 1,
3443
+ "traits": [
3444
+ Trait.new(id=ShapeID("smithy.api#required")),
3445
+
3446
+ ],
3197
3447
  },
3198
3448
 
3199
3449
  "data": {
3200
3450
  "target": LIST_CONTEXT_OUT,
3201
3451
  "index": 2,
3452
+ "traits": [
3453
+ Trait.new(id=ShapeID("smithy.api#required")),
3454
+
3455
+ ],
3202
3456
  },
3203
3457
 
3204
3458
  }
@@ -3259,26 +3513,13 @@ MOVE_CONTEXT_INPUT = Schema.collection(
3259
3513
  ],
3260
3514
  },
3261
3515
 
3262
- "context": {
3263
- "target": CONDITION,
3516
+ "request": {
3517
+ "target": CONTEXT_MOVE,
3264
3518
  "index": 3,
3265
3519
  "traits": [
3266
3520
  Trait.new(id=ShapeID("smithy.api#notProperty")),
3267
3521
  Trait.new(id=ShapeID("smithy.api#required")),
3268
-
3269
- ],
3270
- },
3271
-
3272
- "description": {
3273
- "target": STRING,
3274
- "index": 4,
3275
- },
3276
-
3277
- "change_reason": {
3278
- "target": STRING,
3279
- "index": 5,
3280
- "traits": [
3281
- Trait.new(id=ShapeID("smithy.api#required")),
3522
+ Trait.new(id=ShapeID("smithy.api#httpPayload")),
3282
3523
 
3283
3524
  ],
3284
3525
  },
@@ -3307,51 +3548,91 @@ MOVE_CONTEXT_OUTPUT = Schema.collection(
3307
3548
  "value": {
3308
3549
  "target": CONDITION,
3309
3550
  "index": 1,
3551
+ "traits": [
3552
+ Trait.new(id=ShapeID("smithy.api#required")),
3553
+
3554
+ ],
3310
3555
  },
3311
3556
 
3312
3557
  "override": {
3313
3558
  "target": OVERRIDES,
3314
3559
  "index": 2,
3560
+ "traits": [
3561
+ Trait.new(id=ShapeID("smithy.api#required")),
3562
+
3563
+ ],
3315
3564
  },
3316
3565
 
3317
3566
  "override_id": {
3318
3567
  "target": STRING,
3319
3568
  "index": 3,
3569
+ "traits": [
3570
+ Trait.new(id=ShapeID("smithy.api#required")),
3571
+
3572
+ ],
3320
3573
  },
3321
3574
 
3322
3575
  "weight": {
3323
3576
  "target": WEIGHT,
3324
3577
  "index": 4,
3578
+ "traits": [
3579
+ Trait.new(id=ShapeID("smithy.api#required")),
3580
+
3581
+ ],
3325
3582
  },
3326
3583
 
3327
3584
  "description": {
3328
3585
  "target": STRING,
3329
3586
  "index": 5,
3587
+ "traits": [
3588
+ Trait.new(id=ShapeID("smithy.api#required")),
3589
+
3590
+ ],
3330
3591
  },
3331
3592
 
3332
3593
  "change_reason": {
3333
3594
  "target": STRING,
3334
3595
  "index": 6,
3596
+ "traits": [
3597
+ Trait.new(id=ShapeID("smithy.api#required")),
3598
+
3599
+ ],
3335
3600
  },
3336
3601
 
3337
3602
  "created_at": {
3338
3603
  "target": DATE_TIME,
3339
3604
  "index": 7,
3605
+ "traits": [
3606
+ Trait.new(id=ShapeID("smithy.api#required")),
3607
+
3608
+ ],
3340
3609
  },
3341
3610
 
3342
3611
  "created_by": {
3343
3612
  "target": STRING,
3344
3613
  "index": 8,
3614
+ "traits": [
3615
+ Trait.new(id=ShapeID("smithy.api#required")),
3616
+
3617
+ ],
3345
3618
  },
3346
3619
 
3347
3620
  "last_modified_at": {
3348
3621
  "target": DATE_TIME,
3349
3622
  "index": 9,
3623
+ "traits": [
3624
+ Trait.new(id=ShapeID("smithy.api#required")),
3625
+
3626
+ ],
3350
3627
  },
3351
3628
 
3352
3629
  "last_modified_by": {
3353
3630
  "target": STRING,
3354
3631
  "index": 10,
3632
+ "traits": [
3633
+ Trait.new(id=ShapeID("smithy.api#required")),
3634
+
3635
+ ],
3355
3636
  },
3356
3637
 
3357
3638
  }
@@ -3446,51 +3727,91 @@ UPDATE_OVERRIDE_OUTPUT = Schema.collection(
3446
3727
  "value": {
3447
3728
  "target": CONDITION,
3448
3729
  "index": 1,
3730
+ "traits": [
3731
+ Trait.new(id=ShapeID("smithy.api#required")),
3732
+
3733
+ ],
3449
3734
  },
3450
3735
 
3451
3736
  "override": {
3452
3737
  "target": OVERRIDES,
3453
3738
  "index": 2,
3739
+ "traits": [
3740
+ Trait.new(id=ShapeID("smithy.api#required")),
3741
+
3742
+ ],
3454
3743
  },
3455
3744
 
3456
3745
  "override_id": {
3457
3746
  "target": STRING,
3458
3747
  "index": 3,
3748
+ "traits": [
3749
+ Trait.new(id=ShapeID("smithy.api#required")),
3750
+
3751
+ ],
3459
3752
  },
3460
3753
 
3461
3754
  "weight": {
3462
3755
  "target": WEIGHT,
3463
3756
  "index": 4,
3757
+ "traits": [
3758
+ Trait.new(id=ShapeID("smithy.api#required")),
3759
+
3760
+ ],
3464
3761
  },
3465
3762
 
3466
3763
  "description": {
3467
3764
  "target": STRING,
3468
3765
  "index": 5,
3766
+ "traits": [
3767
+ Trait.new(id=ShapeID("smithy.api#required")),
3768
+
3769
+ ],
3469
3770
  },
3470
3771
 
3471
3772
  "change_reason": {
3472
3773
  "target": STRING,
3473
3774
  "index": 6,
3775
+ "traits": [
3776
+ Trait.new(id=ShapeID("smithy.api#required")),
3777
+
3778
+ ],
3474
3779
  },
3475
3780
 
3476
3781
  "created_at": {
3477
3782
  "target": DATE_TIME,
3478
3783
  "index": 7,
3784
+ "traits": [
3785
+ Trait.new(id=ShapeID("smithy.api#required")),
3786
+
3787
+ ],
3479
3788
  },
3480
3789
 
3481
3790
  "created_by": {
3482
3791
  "target": STRING,
3483
3792
  "index": 8,
3793
+ "traits": [
3794
+ Trait.new(id=ShapeID("smithy.api#required")),
3795
+
3796
+ ],
3484
3797
  },
3485
3798
 
3486
3799
  "last_modified_at": {
3487
3800
  "target": DATE_TIME,
3488
3801
  "index": 9,
3802
+ "traits": [
3803
+ Trait.new(id=ShapeID("smithy.api#required")),
3804
+
3805
+ ],
3489
3806
  },
3490
3807
 
3491
3808
  "last_modified_by": {
3492
3809
  "target": STRING,
3493
3810
  "index": 10,
3811
+ "traits": [
3812
+ Trait.new(id=ShapeID("smithy.api#required")),
3813
+
3814
+ ],
3494
3815
  },
3495
3816
 
3496
3817
  }
@@ -3504,7 +3825,7 @@ UPDATE_OVERRIDE = Schema(
3504
3825
  "Context Management",
3505
3826
  )),
3506
3827
  Trait.new(id=ShapeID("smithy.api#http"), value=MappingProxyType({
3507
- "method": "PUT",
3828
+ "method": "PATCH",
3508
3829
  "uri": "/context/overrides",
3509
3830
  })),
3510
3831
 
@@ -3629,21 +3950,37 @@ WEIGHT_RECOMPUTE_RESPONSE = Schema.collection(
3629
3950
  "id": {
3630
3951
  "target": STRING,
3631
3952
  "index": 0,
3953
+ "traits": [
3954
+ Trait.new(id=ShapeID("smithy.api#required")),
3955
+
3956
+ ],
3632
3957
  },
3633
3958
 
3634
3959
  "condition": {
3635
3960
  "target": CONDITION,
3636
3961
  "index": 1,
3962
+ "traits": [
3963
+ Trait.new(id=ShapeID("smithy.api#required")),
3964
+
3965
+ ],
3637
3966
  },
3638
3967
 
3639
3968
  "old_weight": {
3640
3969
  "target": WEIGHT,
3641
3970
  "index": 2,
3971
+ "traits": [
3972
+ Trait.new(id=ShapeID("smithy.api#required")),
3973
+
3974
+ ],
3642
3975
  },
3643
3976
 
3644
3977
  "new_weight": {
3645
3978
  "target": WEIGHT,
3646
3979
  "index": 3,
3980
+ "traits": [
3981
+ Trait.new(id=ShapeID("smithy.api#required")),
3982
+
3983
+ ],
3647
3984
  },
3648
3985
 
3649
3986
  }
@@ -3787,7 +4124,7 @@ CREATE_DEFAULT_CONFIG_OUTPUT = Schema.collection(
3787
4124
  id=ShapeID("io.superposition#CreateDefaultConfigOutput"),
3788
4125
 
3789
4126
  traits=[
3790
- Trait.new(id=ShapeID("smithy.synthetic#originalShapeId"), value="io.superposition#DefaultConfigFull"),
4127
+ Trait.new(id=ShapeID("smithy.synthetic#originalShapeId"), value="io.superposition#DefaultConfigResponse"),
3791
4128
  Trait.new(id=ShapeID("smithy.api#output")),
3792
4129
 
3793
4130
  ],
@@ -3997,7 +4334,7 @@ CREATE_DIMENSION_OUTPUT = Schema.collection(
3997
4334
  id=ShapeID("io.superposition#CreateDimensionOutput"),
3998
4335
 
3999
4336
  traits=[
4000
- Trait.new(id=ShapeID("smithy.synthetic#originalShapeId"), value="io.superposition#DimensionExt"),
4337
+ Trait.new(id=ShapeID("smithy.synthetic#originalShapeId"), value="io.superposition#DimensionResponse"),
4001
4338
  Trait.new(id=ShapeID("smithy.api#output")),
4002
4339
 
4003
4340
  ],
@@ -4089,7 +4426,7 @@ CREATE_DIMENSION_OUTPUT = Schema.collection(
4089
4426
  },
4090
4427
 
4091
4428
  "dependency_graph": {
4092
- "target": DEPEDENDENCY_GRAPH,
4429
+ "target": DEPENDENCY_GRAPH,
4093
4430
  "index": 10,
4094
4431
  "traits": [
4095
4432
  Trait.new(id=ShapeID("smithy.api#required")),
@@ -4116,6 +4453,7 @@ CREATE_DIMENSION_OUTPUT = Schema.collection(
4116
4453
  "index": 13,
4117
4454
  "traits": [
4118
4455
  Trait.new(id=ShapeID("smithy.api#notProperty")),
4456
+ Trait.new(id=ShapeID("smithy.api#required")),
4119
4457
 
4120
4458
  ],
4121
4459
  },
@@ -5865,6 +6203,10 @@ CREATE_WORKSPACE_OUTPUT = Schema.collection(
5865
6203
  "metrics": {
5866
6204
  "target": DOCUMENT,
5867
6205
  "index": 13,
6206
+ "traits": [
6207
+ Trait.new(id=ShapeID("smithy.api#required")),
6208
+
6209
+ ],
5868
6210
  },
5869
6211
 
5870
6212
  "allow_experiment_self_approval": {
@@ -5967,7 +6309,7 @@ DELETE_DEFAULT_CONFIG = Schema(
5967
6309
  Trait.new(id=ShapeID("smithy.api#http"), value=MappingProxyType({
5968
6310
  "method": "DELETE",
5969
6311
  "uri": "/default-config/{key}",
5970
- "code": 201,
6312
+ "code": 204,
5971
6313
  })),
5972
6314
 
5973
6315
  ],
@@ -6019,7 +6361,7 @@ GET_DEFAULT_CONFIG_OUTPUT = Schema.collection(
6019
6361
  id=ShapeID("io.superposition#GetDefaultConfigOutput"),
6020
6362
 
6021
6363
  traits=[
6022
- Trait.new(id=ShapeID("smithy.synthetic#originalShapeId"), value="io.superposition#DefaultConfigFull"),
6364
+ Trait.new(id=ShapeID("smithy.synthetic#originalShapeId"), value="io.superposition#DefaultConfigResponse"),
6023
6365
  Trait.new(id=ShapeID("smithy.api#output")),
6024
6366
 
6025
6367
  ],
@@ -6203,8 +6545,8 @@ LIST_DEFAULT_CONFIGS_INPUT = Schema.collection(
6203
6545
  }
6204
6546
  )
6205
6547
 
6206
- DEFAULT_CONFIG_FULL = Schema.collection(
6207
- id=ShapeID("io.superposition#DefaultConfigFull"),
6548
+ DEFAULT_CONFIG_RESPONSE = Schema.collection(
6549
+ id=ShapeID("io.superposition#DefaultConfigResponse"),
6208
6550
 
6209
6551
  members={
6210
6552
  "key": {
@@ -6306,7 +6648,7 @@ LIST_DEFAULT_CONFIG_OUT = Schema.collection(
6306
6648
  shape_type=ShapeType.LIST,
6307
6649
  members={
6308
6650
  "member": {
6309
- "target": DEFAULT_CONFIG_FULL,
6651
+ "target": DEFAULT_CONFIG_RESPONSE,
6310
6652
  "index": 0,
6311
6653
  },
6312
6654
 
@@ -6324,16 +6666,28 @@ LIST_DEFAULT_CONFIGS_OUTPUT = Schema.collection(
6324
6666
  "total_pages": {
6325
6667
  "target": INTEGER,
6326
6668
  "index": 0,
6669
+ "traits": [
6670
+ Trait.new(id=ShapeID("smithy.api#required")),
6671
+
6672
+ ],
6327
6673
  },
6328
6674
 
6329
6675
  "total_items": {
6330
6676
  "target": INTEGER,
6331
6677
  "index": 1,
6678
+ "traits": [
6679
+ Trait.new(id=ShapeID("smithy.api#required")),
6680
+
6681
+ ],
6332
6682
  },
6333
6683
 
6334
6684
  "data": {
6335
6685
  "target": LIST_DEFAULT_CONFIG_OUT,
6336
6686
  "index": 2,
6687
+ "traits": [
6688
+ Trait.new(id=ShapeID("smithy.api#required")),
6689
+
6690
+ ],
6337
6691
  },
6338
6692
 
6339
6693
  }
@@ -6435,7 +6789,7 @@ UPDATE_DEFAULT_CONFIG_OUTPUT = Schema.collection(
6435
6789
  id=ShapeID("io.superposition#UpdateDefaultConfigOutput"),
6436
6790
 
6437
6791
  traits=[
6438
- Trait.new(id=ShapeID("smithy.synthetic#originalShapeId"), value="io.superposition#DefaultConfigFull"),
6792
+ Trait.new(id=ShapeID("smithy.synthetic#originalShapeId"), value="io.superposition#DefaultConfigResponse"),
6439
6793
  Trait.new(id=ShapeID("smithy.api#output")),
6440
6794
 
6441
6795
  ],
@@ -6614,7 +6968,7 @@ DELETE_DIMENSION = Schema(
6614
6968
  Trait.new(id=ShapeID("smithy.api#http"), value=MappingProxyType({
6615
6969
  "method": "DELETE",
6616
6970
  "uri": "/dimension/{dimension}",
6617
- "code": 201,
6971
+ "code": 204,
6618
6972
  })),
6619
6973
 
6620
6974
  ],
@@ -6884,6 +7238,7 @@ DELETE_FUNCTION = Schema(
6884
7238
  Trait.new(id=ShapeID("smithy.api#http"), value=MappingProxyType({
6885
7239
  "method": "DELETE",
6886
7240
  "uri": "/function/{function_name}",
7241
+ "code": 204,
6887
7242
  })),
6888
7243
 
6889
7244
  ],
@@ -7095,7 +7450,7 @@ DELETE_WEBHOOK = Schema(
7095
7450
  Trait.new(id=ShapeID("smithy.api#http"), value=MappingProxyType({
7096
7451
  "method": "DELETE",
7097
7452
  "uri": "/webhook/{name}",
7098
- "code": 201,
7453
+ "code": 204,
7099
7454
  })),
7100
7455
 
7101
7456
  ],
@@ -7147,7 +7502,7 @@ GET_DIMENSION_OUTPUT = Schema.collection(
7147
7502
  id=ShapeID("io.superposition#GetDimensionOutput"),
7148
7503
 
7149
7504
  traits=[
7150
- Trait.new(id=ShapeID("smithy.synthetic#originalShapeId"), value="io.superposition#DimensionExt"),
7505
+ Trait.new(id=ShapeID("smithy.synthetic#originalShapeId"), value="io.superposition#DimensionResponse"),
7151
7506
  Trait.new(id=ShapeID("smithy.api#output")),
7152
7507
 
7153
7508
  ],
@@ -7239,7 +7594,7 @@ GET_DIMENSION_OUTPUT = Schema.collection(
7239
7594
  },
7240
7595
 
7241
7596
  "dependency_graph": {
7242
- "target": DEPEDENDENCY_GRAPH,
7597
+ "target": DEPENDENCY_GRAPH,
7243
7598
  "index": 10,
7244
7599
  "traits": [
7245
7600
  Trait.new(id=ShapeID("smithy.api#required")),
@@ -7266,6 +7621,7 @@ GET_DIMENSION_OUTPUT = Schema.collection(
7266
7621
  "index": 13,
7267
7622
  "traits": [
7268
7623
  Trait.new(id=ShapeID("smithy.api#notProperty")),
7624
+ Trait.new(id=ShapeID("smithy.api#required")),
7269
7625
 
7270
7626
  ],
7271
7627
  },
@@ -7348,8 +7704,8 @@ LIST_DIMENSIONS_INPUT = Schema.collection(
7348
7704
  }
7349
7705
  )
7350
7706
 
7351
- DIMENSION_EXT = Schema.collection(
7352
- id=ShapeID("io.superposition#DimensionExt"),
7707
+ DIMENSION_RESPONSE = Schema.collection(
7708
+ id=ShapeID("io.superposition#DimensionResponse"),
7353
7709
 
7354
7710
  members={
7355
7711
  "dimension": {
@@ -7439,7 +7795,7 @@ DIMENSION_EXT = Schema.collection(
7439
7795
  },
7440
7796
 
7441
7797
  "dependency_graph": {
7442
- "target": DEPEDENDENCY_GRAPH,
7798
+ "target": DEPENDENCY_GRAPH,
7443
7799
  "index": 10,
7444
7800
  "traits": [
7445
7801
  Trait.new(id=ShapeID("smithy.api#required")),
@@ -7466,6 +7822,7 @@ DIMENSION_EXT = Schema.collection(
7466
7822
  "index": 13,
7467
7823
  "traits": [
7468
7824
  Trait.new(id=ShapeID("smithy.api#notProperty")),
7825
+ Trait.new(id=ShapeID("smithy.api#required")),
7469
7826
 
7470
7827
  ],
7471
7828
  },
@@ -7473,12 +7830,12 @@ DIMENSION_EXT = Schema.collection(
7473
7830
  }
7474
7831
  )
7475
7832
 
7476
- DIMENSION_EXT_LIST = Schema.collection(
7477
- id=ShapeID("io.superposition#DimensionExtList"),
7833
+ DIMENSION_LIST = Schema.collection(
7834
+ id=ShapeID("io.superposition#DimensionList"),
7478
7835
  shape_type=ShapeType.LIST,
7479
7836
  members={
7480
7837
  "member": {
7481
- "target": DIMENSION_EXT,
7838
+ "target": DIMENSION_RESPONSE,
7482
7839
  "index": 0,
7483
7840
  },
7484
7841
 
@@ -7496,16 +7853,28 @@ LIST_DIMENSIONS_OUTPUT = Schema.collection(
7496
7853
  "total_pages": {
7497
7854
  "target": INTEGER,
7498
7855
  "index": 0,
7856
+ "traits": [
7857
+ Trait.new(id=ShapeID("smithy.api#required")),
7858
+
7859
+ ],
7499
7860
  },
7500
7861
 
7501
7862
  "total_items": {
7502
7863
  "target": INTEGER,
7503
7864
  "index": 1,
7865
+ "traits": [
7866
+ Trait.new(id=ShapeID("smithy.api#required")),
7867
+
7868
+ ],
7504
7869
  },
7505
7870
 
7506
7871
  "data": {
7507
- "target": DIMENSION_EXT_LIST,
7872
+ "target": DIMENSION_LIST,
7508
7873
  "index": 2,
7874
+ "traits": [
7875
+ Trait.new(id=ShapeID("smithy.api#required")),
7876
+
7877
+ ],
7509
7878
  },
7510
7879
 
7511
7880
  }
@@ -7607,7 +7976,7 @@ UPDATE_DIMENSION_OUTPUT = Schema.collection(
7607
7976
  id=ShapeID("io.superposition#UpdateDimensionOutput"),
7608
7977
 
7609
7978
  traits=[
7610
- Trait.new(id=ShapeID("smithy.synthetic#originalShapeId"), value="io.superposition#DimensionExt"),
7979
+ Trait.new(id=ShapeID("smithy.synthetic#originalShapeId"), value="io.superposition#DimensionResponse"),
7611
7980
  Trait.new(id=ShapeID("smithy.api#output")),
7612
7981
 
7613
7982
  ],
@@ -7699,7 +8068,7 @@ UPDATE_DIMENSION_OUTPUT = Schema.collection(
7699
8068
  },
7700
8069
 
7701
8070
  "dependency_graph": {
7702
- "target": DEPEDENDENCY_GRAPH,
8071
+ "target": DEPENDENCY_GRAPH,
7703
8072
  "index": 10,
7704
8073
  "traits": [
7705
8074
  Trait.new(id=ShapeID("smithy.api#required")),
@@ -7726,6 +8095,7 @@ UPDATE_DIMENSION_OUTPUT = Schema.collection(
7726
8095
  "index": 13,
7727
8096
  "traits": [
7728
8097
  Trait.new(id=ShapeID("smithy.api#notProperty")),
8098
+ Trait.new(id=ShapeID("smithy.api#required")),
7729
8099
 
7730
8100
  ],
7731
8101
  },
@@ -8505,16 +8875,28 @@ LIST_EXPERIMENT_GROUPS_OUTPUT = Schema.collection(
8505
8875
  "total_pages": {
8506
8876
  "target": INTEGER,
8507
8877
  "index": 0,
8878
+ "traits": [
8879
+ Trait.new(id=ShapeID("smithy.api#required")),
8880
+
8881
+ ],
8508
8882
  },
8509
8883
 
8510
8884
  "total_items": {
8511
8885
  "target": INTEGER,
8512
8886
  "index": 1,
8887
+ "traits": [
8888
+ Trait.new(id=ShapeID("smithy.api#required")),
8889
+
8890
+ ],
8513
8891
  },
8514
8892
 
8515
8893
  "data": {
8516
8894
  "target": EXPERIMENT_GROUP_LIST,
8517
8895
  "index": 2,
8896
+ "traits": [
8897
+ Trait.new(id=ShapeID("smithy.api#required")),
8898
+
8899
+ ],
8518
8900
  },
8519
8901
 
8520
8902
  }
@@ -9598,16 +9980,28 @@ LIST_EXPERIMENT_OUTPUT = Schema.collection(
9598
9980
  "total_pages": {
9599
9981
  "target": INTEGER,
9600
9982
  "index": 0,
9983
+ "traits": [
9984
+ Trait.new(id=ShapeID("smithy.api#required")),
9985
+
9986
+ ],
9601
9987
  },
9602
9988
 
9603
9989
  "total_items": {
9604
9990
  "target": INTEGER,
9605
9991
  "index": 1,
9992
+ "traits": [
9993
+ Trait.new(id=ShapeID("smithy.api#required")),
9994
+
9995
+ ],
9606
9996
  },
9607
9997
 
9608
9998
  "data": {
9609
9999
  "target": EXPERIMENT_LIST,
9610
10000
  "index": 2,
10001
+ "traits": [
10002
+ Trait.new(id=ShapeID("smithy.api#required")),
10003
+
10004
+ ],
9611
10005
  },
9612
10006
 
9613
10007
  }
@@ -10358,7 +10752,7 @@ VARIANT_UPDATE_REQUEST = Schema.collection(
10358
10752
  },
10359
10753
 
10360
10754
  "overrides": {
10361
- "target": DOCUMENT,
10755
+ "target": OVERRIDES,
10362
10756
  "index": 1,
10363
10757
  "traits": [
10364
10758
  Trait.new(id=ShapeID("smithy.api#required")),
@@ -11040,16 +11434,28 @@ LIST_FUNCTION_OUTPUT = Schema.collection(
11040
11434
  "total_pages": {
11041
11435
  "target": INTEGER,
11042
11436
  "index": 0,
11437
+ "traits": [
11438
+ Trait.new(id=ShapeID("smithy.api#required")),
11439
+
11440
+ ],
11043
11441
  },
11044
11442
 
11045
11443
  "total_items": {
11046
11444
  "target": INTEGER,
11047
11445
  "index": 1,
11446
+ "traits": [
11447
+ Trait.new(id=ShapeID("smithy.api#required")),
11448
+
11449
+ ],
11048
11450
  },
11049
11451
 
11050
11452
  "data": {
11051
11453
  "target": FUNCTION_LIST_RESPONSE,
11052
11454
  "index": 2,
11455
+ "traits": [
11456
+ Trait.new(id=ShapeID("smithy.api#required")),
11457
+
11458
+ ],
11053
11459
  },
11054
11460
 
11055
11461
  }
@@ -11268,11 +11674,19 @@ VALIDATE_FUNCTION_REQUEST = Schema.collection(
11268
11674
  "key": {
11269
11675
  "target": STRING,
11270
11676
  "index": 0,
11677
+ "traits": [
11678
+ Trait.new(id=ShapeID("smithy.api#required")),
11679
+
11680
+ ],
11271
11681
  },
11272
11682
 
11273
11683
  "value": {
11274
11684
  "target": DOCUMENT,
11275
11685
  "index": 1,
11686
+ "traits": [
11687
+ Trait.new(id=ShapeID("smithy.api#required")),
11688
+
11689
+ ],
11276
11690
  },
11277
11691
 
11278
11692
  }
@@ -11500,7 +11914,6 @@ UPDATE_FUNCTION_INPUT = Schema.collection(
11500
11914
  "index": 5,
11501
11915
  "traits": [
11502
11916
  Trait.new(id=ShapeID("smithy.api#notProperty")),
11503
- Trait.new(id=ShapeID("smithy.api#required")),
11504
11917
 
11505
11918
  ],
11506
11919
  },
@@ -11510,7 +11923,6 @@ UPDATE_FUNCTION_INPUT = Schema.collection(
11510
11923
  "index": 6,
11511
11924
  "traits": [
11512
11925
  Trait.new(id=ShapeID("smithy.api#notProperty")),
11513
- Trait.new(id=ShapeID("smithy.api#required")),
11514
11926
 
11515
11927
  ],
11516
11928
  },
@@ -12101,16 +12513,28 @@ GET_TYPE_TEMPLATES_LIST_OUTPUT = Schema.collection(
12101
12513
  "total_pages": {
12102
12514
  "target": INTEGER,
12103
12515
  "index": 0,
12516
+ "traits": [
12517
+ Trait.new(id=ShapeID("smithy.api#required")),
12518
+
12519
+ ],
12104
12520
  },
12105
12521
 
12106
12522
  "total_items": {
12107
12523
  "target": INTEGER,
12108
12524
  "index": 1,
12525
+ "traits": [
12526
+ Trait.new(id=ShapeID("smithy.api#required")),
12527
+
12528
+ ],
12109
12529
  },
12110
12530
 
12111
12531
  "data": {
12112
12532
  "target": TYPE_TEMPLATES_LIST,
12113
12533
  "index": 2,
12534
+ "traits": [
12535
+ Trait.new(id=ShapeID("smithy.api#required")),
12536
+
12537
+ ],
12114
12538
  },
12115
12539
 
12116
12540
  }
@@ -12679,6 +13103,10 @@ GET_WORKSPACE_OUTPUT = Schema.collection(
12679
13103
  "metrics": {
12680
13104
  "target": DOCUMENT,
12681
13105
  "index": 13,
13106
+ "traits": [
13107
+ Trait.new(id=ShapeID("smithy.api#required")),
13108
+
13109
+ ],
12682
13110
  },
12683
13111
 
12684
13112
  "allow_experiment_self_approval": {
@@ -12879,16 +13307,28 @@ LIST_ORGANISATION_OUTPUT = Schema.collection(
12879
13307
  "total_pages": {
12880
13308
  "target": INTEGER,
12881
13309
  "index": 0,
13310
+ "traits": [
13311
+ Trait.new(id=ShapeID("smithy.api#required")),
13312
+
13313
+ ],
12882
13314
  },
12883
13315
 
12884
13316
  "total_items": {
12885
13317
  "target": INTEGER,
12886
13318
  "index": 1,
13319
+ "traits": [
13320
+ Trait.new(id=ShapeID("smithy.api#required")),
13321
+
13322
+ ],
12887
13323
  },
12888
13324
 
12889
13325
  "data": {
12890
13326
  "target": ORGANISATION_LIST,
12891
13327
  "index": 2,
13328
+ "traits": [
13329
+ Trait.new(id=ShapeID("smithy.api#required")),
13330
+
13331
+ ],
12892
13332
  },
12893
13333
 
12894
13334
  }
@@ -13126,16 +13566,28 @@ LIST_WEBHOOK_OUTPUT = Schema.collection(
13126
13566
  "total_pages": {
13127
13567
  "target": INTEGER,
13128
13568
  "index": 0,
13569
+ "traits": [
13570
+ Trait.new(id=ShapeID("smithy.api#required")),
13571
+
13572
+ ],
13129
13573
  },
13130
13574
 
13131
13575
  "total_items": {
13132
13576
  "target": INTEGER,
13133
13577
  "index": 1,
13578
+ "traits": [
13579
+ Trait.new(id=ShapeID("smithy.api#required")),
13580
+
13581
+ ],
13134
13582
  },
13135
13583
 
13136
13584
  "data": {
13137
13585
  "target": WEBHOOK_LIST,
13138
13586
  "index": 2,
13587
+ "traits": [
13588
+ Trait.new(id=ShapeID("smithy.api#required")),
13589
+
13590
+ ],
13139
13591
  },
13140
13592
 
13141
13593
  }
@@ -13322,6 +13774,10 @@ WORKSPACE_RESPONSE = Schema.collection(
13322
13774
  "metrics": {
13323
13775
  "target": DOCUMENT,
13324
13776
  "index": 13,
13777
+ "traits": [
13778
+ Trait.new(id=ShapeID("smithy.api#required")),
13779
+
13780
+ ],
13325
13781
  },
13326
13782
 
13327
13783
  "allow_experiment_self_approval": {
@@ -13368,16 +13824,28 @@ LIST_WORKSPACE_OUTPUT = Schema.collection(
13368
13824
  "total_pages": {
13369
13825
  "target": INTEGER,
13370
13826
  "index": 0,
13827
+ "traits": [
13828
+ Trait.new(id=ShapeID("smithy.api#required")),
13829
+
13830
+ ],
13371
13831
  },
13372
13832
 
13373
13833
  "total_items": {
13374
13834
  "target": INTEGER,
13375
13835
  "index": 1,
13836
+ "traits": [
13837
+ Trait.new(id=ShapeID("smithy.api#required")),
13838
+
13839
+ ],
13376
13840
  },
13377
13841
 
13378
13842
  "data": {
13379
13843
  "target": WORKSPACE_LIST,
13380
13844
  "index": 2,
13845
+ "traits": [
13846
+ Trait.new(id=ShapeID("smithy.api#required")),
13847
+
13848
+ ],
13381
13849
  },
13382
13850
 
13383
13851
  }
@@ -13553,6 +14021,10 @@ MIGRATE_WORKSPACE_SCHEMA_OUTPUT = Schema.collection(
13553
14021
  "metrics": {
13554
14022
  "target": DOCUMENT,
13555
14023
  "index": 13,
14024
+ "traits": [
14025
+ Trait.new(id=ShapeID("smithy.api#required")),
14026
+
14027
+ ],
13556
14028
  },
13557
14029
 
13558
14030
  "allow_experiment_self_approval": {
@@ -13973,37 +14445,21 @@ UPDATE_WEBHOOK_INPUT = Schema.collection(
13973
14445
  "description": {
13974
14446
  "target": STRING,
13975
14447
  "index": 3,
13976
- "traits": [
13977
- Trait.new(id=ShapeID("smithy.api#required")),
13978
-
13979
- ],
13980
14448
  },
13981
14449
 
13982
14450
  "enabled": {
13983
14451
  "target": BOOLEAN,
13984
14452
  "index": 4,
13985
- "traits": [
13986
- Trait.new(id=ShapeID("smithy.api#required")),
13987
-
13988
- ],
13989
14453
  },
13990
14454
 
13991
14455
  "url": {
13992
14456
  "target": STRING,
13993
14457
  "index": 5,
13994
- "traits": [
13995
- Trait.new(id=ShapeID("smithy.api#required")),
13996
-
13997
- ],
13998
14458
  },
13999
14459
 
14000
14460
  "method": {
14001
14461
  "target": HTTP_METHOD,
14002
14462
  "index": 6,
14003
- "traits": [
14004
- Trait.new(id=ShapeID("smithy.api#required")),
14005
-
14006
- ],
14007
14463
  },
14008
14464
 
14009
14465
  "version": {
@@ -14019,10 +14475,6 @@ UPDATE_WEBHOOK_INPUT = Schema.collection(
14019
14475
  "events": {
14020
14476
  "target": EVENTS,
14021
14477
  "index": 9,
14022
- "traits": [
14023
- Trait.new(id=ShapeID("smithy.api#required")),
14024
-
14025
- ],
14026
14478
  },
14027
14479
 
14028
14480
  "change_reason": {
@@ -14385,6 +14837,10 @@ UPDATE_WORKSPACE_OUTPUT = Schema.collection(
14385
14837
  "metrics": {
14386
14838
  "target": DOCUMENT,
14387
14839
  "index": 13,
14840
+ "traits": [
14841
+ Trait.new(id=ShapeID("smithy.api#required")),
14842
+
14843
+ ],
14388
14844
  },
14389
14845
 
14390
14846
  "allow_experiment_self_approval": {