aws-sdk 2.1396.0 → 2.1397.0

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.
Files changed (45) hide show
  1. package/CHANGELOG.md +14 -1
  2. package/README.md +1 -1
  3. package/apis/cloudtrail-2013-11-01.min.json +33 -33
  4. package/apis/codeguru-security-2018-05-10.examples.json +5 -0
  5. package/apis/codeguru-security-2018-05-10.min.json +703 -0
  6. package/apis/codeguru-security-2018-05-10.paginators.json +22 -0
  7. package/apis/drs-2020-02-26.min.json +392 -97
  8. package/apis/drs-2020-02-26.paginators.json +6 -0
  9. package/apis/ec2-2016-11-15.min.json +1178 -1013
  10. package/apis/ec2-2016-11-15.paginators.json +6 -0
  11. package/apis/lightsail-2016-11-28.min.json +4 -2
  12. package/apis/metadata.json +7 -0
  13. package/apis/s3-2006-03-01.examples.json +121 -121
  14. package/apis/securityhub-2018-10-26.examples.json +276 -0
  15. package/apis/securityhub-2018-10-26.min.json +957 -559
  16. package/apis/verifiedpermissions-2021-12-01.examples.json +5 -0
  17. package/apis/verifiedpermissions-2021-12-01.min.json +1215 -0
  18. package/apis/verifiedpermissions-2021-12-01.paginators.json +28 -0
  19. package/apis/verifiedpermissions-2021-12-01.waiters2.json +5 -0
  20. package/apis/wafv2-2019-07-29.min.json +241 -169
  21. package/apis/wellarchitected-2020-03-31.min.json +655 -75
  22. package/apis/wellarchitected-2020-03-31.paginators.json +15 -0
  23. package/clients/all.d.ts +2 -0
  24. package/clients/all.js +3 -1
  25. package/clients/cloudtrail.d.ts +28 -13
  26. package/clients/codegurusecurity.d.ts +761 -0
  27. package/clients/codegurusecurity.js +18 -0
  28. package/clients/drs.d.ts +354 -3
  29. package/clients/ec2.d.ts +225 -48
  30. package/clients/imagebuilder.d.ts +1 -1
  31. package/clients/lightsail.d.ts +12 -4
  32. package/clients/s3.d.ts +1 -1
  33. package/clients/securityhub.d.ts +470 -0
  34. package/clients/simspaceweaver.d.ts +2 -2
  35. package/clients/verifiedpermissions.d.ts +1392 -0
  36. package/clients/verifiedpermissions.js +19 -0
  37. package/clients/wafv2.d.ts +105 -27
  38. package/clients/wellarchitected.d.ts +533 -7
  39. package/dist/aws-sdk-core-react-native.js +2 -2
  40. package/dist/aws-sdk-react-native.js +95 -14
  41. package/dist/aws-sdk.js +1227 -1049
  42. package/dist/aws-sdk.min.js +80 -80
  43. package/lib/config_service_placeholders.d.ts +4 -0
  44. package/lib/core.js +1 -1
  45. package/package.json +1 -1
@@ -35,6 +35,28 @@
35
35
  }
36
36
  }
37
37
  },
38
+ "AssociateProfiles": {
39
+ "http": {
40
+ "method": "PATCH",
41
+ "requestUri": "/workloads/{WorkloadId}/associateProfiles"
42
+ },
43
+ "input": {
44
+ "type": "structure",
45
+ "required": [
46
+ "WorkloadId",
47
+ "ProfileArns"
48
+ ],
49
+ "members": {
50
+ "WorkloadId": {
51
+ "location": "uri",
52
+ "locationName": "WorkloadId"
53
+ },
54
+ "ProfileArns": {
55
+ "shape": "S6"
56
+ }
57
+ }
58
+ }
59
+ },
38
60
  "CreateLensShare": {
39
61
  "http": {
40
62
  "requestUri": "/lenses/{LensAlias}/shares"
@@ -129,6 +151,70 @@
129
151
  }
130
152
  }
131
153
  },
154
+ "CreateProfile": {
155
+ "http": {
156
+ "requestUri": "/profiles"
157
+ },
158
+ "input": {
159
+ "type": "structure",
160
+ "required": [
161
+ "ProfileName",
162
+ "ProfileDescription",
163
+ "ProfileQuestions",
164
+ "ClientRequestToken"
165
+ ],
166
+ "members": {
167
+ "ProfileName": {},
168
+ "ProfileDescription": {},
169
+ "ProfileQuestions": {
170
+ "shape": "Sp"
171
+ },
172
+ "ClientRequestToken": {
173
+ "idempotencyToken": true
174
+ },
175
+ "Tags": {
176
+ "shape": "Su"
177
+ }
178
+ }
179
+ },
180
+ "output": {
181
+ "type": "structure",
182
+ "members": {
183
+ "ProfileArn": {},
184
+ "ProfileVersion": {}
185
+ }
186
+ }
187
+ },
188
+ "CreateProfileShare": {
189
+ "http": {
190
+ "requestUri": "/profiles/{ProfileArn}/shares"
191
+ },
192
+ "input": {
193
+ "type": "structure",
194
+ "required": [
195
+ "ProfileArn",
196
+ "SharedWith",
197
+ "ClientRequestToken"
198
+ ],
199
+ "members": {
200
+ "ProfileArn": {
201
+ "location": "uri",
202
+ "locationName": "ProfileArn"
203
+ },
204
+ "SharedWith": {},
205
+ "ClientRequestToken": {
206
+ "idempotencyToken": true
207
+ }
208
+ }
209
+ },
210
+ "output": {
211
+ "type": "structure",
212
+ "members": {
213
+ "ShareId": {},
214
+ "ProfileArn": {}
215
+ }
216
+ }
217
+ },
132
218
  "CreateWorkload": {
133
219
  "http": {
134
220
  "requestUri": "/workloads"
@@ -147,36 +233,40 @@
147
233
  "Description": {},
148
234
  "Environment": {},
149
235
  "AccountIds": {
150
- "shape": "Sn"
236
+ "shape": "S15"
151
237
  },
152
238
  "AwsRegions": {
153
- "shape": "Sp"
239
+ "shape": "S17"
154
240
  },
155
241
  "NonAwsRegions": {
156
- "shape": "Sr"
242
+ "shape": "S19"
157
243
  },
158
244
  "PillarPriorities": {
159
- "shape": "St"
245
+ "shape": "S1b"
160
246
  },
161
247
  "ArchitecturalDesign": {},
162
248
  "ReviewOwner": {},
163
249
  "IndustryType": {},
164
250
  "Industry": {},
165
251
  "Lenses": {
166
- "shape": "Sz"
252
+ "shape": "S1h"
167
253
  },
168
254
  "Notes": {},
169
255
  "ClientRequestToken": {
170
256
  "idempotencyToken": true
171
257
  },
172
258
  "Tags": {
173
- "shape": "S11"
259
+ "shape": "Su"
174
260
  },
175
261
  "DiscoveryConfig": {
176
- "shape": "S14"
262
+ "shape": "S1j"
177
263
  },
178
264
  "Applications": {
179
- "shape": "S18"
265
+ "shape": "S1n"
266
+ },
267
+ "ProfileArns": {
268
+ "type": "list",
269
+ "member": {}
180
270
  }
181
271
  }
182
272
  },
@@ -278,6 +368,59 @@
278
368
  }
279
369
  }
280
370
  },
371
+ "DeleteProfile": {
372
+ "http": {
373
+ "method": "DELETE",
374
+ "requestUri": "/profiles/{ProfileArn}"
375
+ },
376
+ "input": {
377
+ "type": "structure",
378
+ "required": [
379
+ "ProfileArn",
380
+ "ClientRequestToken"
381
+ ],
382
+ "members": {
383
+ "ProfileArn": {
384
+ "location": "uri",
385
+ "locationName": "ProfileArn"
386
+ },
387
+ "ClientRequestToken": {
388
+ "idempotencyToken": true,
389
+ "location": "querystring",
390
+ "locationName": "ClientRequestToken"
391
+ }
392
+ }
393
+ }
394
+ },
395
+ "DeleteProfileShare": {
396
+ "http": {
397
+ "method": "DELETE",
398
+ "requestUri": "/profiles/{ProfileArn}/shares/{ShareId}"
399
+ },
400
+ "input": {
401
+ "type": "structure",
402
+ "required": [
403
+ "ShareId",
404
+ "ProfileArn",
405
+ "ClientRequestToken"
406
+ ],
407
+ "members": {
408
+ "ShareId": {
409
+ "location": "uri",
410
+ "locationName": "ShareId"
411
+ },
412
+ "ProfileArn": {
413
+ "location": "uri",
414
+ "locationName": "ProfileArn"
415
+ },
416
+ "ClientRequestToken": {
417
+ "idempotencyToken": true,
418
+ "location": "querystring",
419
+ "locationName": "ClientRequestToken"
420
+ }
421
+ }
422
+ }
423
+ },
281
424
  "DeleteWorkload": {
282
425
  "http": {
283
426
  "method": "DELETE",
@@ -353,6 +496,28 @@
353
496
  }
354
497
  }
355
498
  },
499
+ "DisassociateProfiles": {
500
+ "http": {
501
+ "method": "PATCH",
502
+ "requestUri": "/workloads/{WorkloadId}/disassociateProfiles"
503
+ },
504
+ "input": {
505
+ "type": "structure",
506
+ "required": [
507
+ "WorkloadId",
508
+ "ProfileArns"
509
+ ],
510
+ "members": {
511
+ "WorkloadId": {
512
+ "location": "uri",
513
+ "locationName": "WorkloadId"
514
+ },
515
+ "ProfileArns": {
516
+ "shape": "S6"
517
+ }
518
+ }
519
+ }
520
+ },
356
521
  "ExportLens": {
357
522
  "http": {
358
523
  "method": "GET",
@@ -423,7 +588,7 @@
423
588
  "LensAlias": {},
424
589
  "LensArn": {},
425
590
  "Answer": {
426
- "shape": "S1r"
591
+ "shape": "S29"
427
592
  }
428
593
  }
429
594
  }
@@ -469,7 +634,7 @@
469
634
  "members": {
470
635
  "MetricType": {},
471
636
  "RiskCounts": {
472
- "shape": "S2r"
637
+ "shape": "S38"
473
638
  },
474
639
  "WorkloadId": {},
475
640
  "WorkloadName": {},
@@ -490,7 +655,7 @@
490
655
  "members": {
491
656
  "PillarId": {},
492
657
  "RiskCounts": {
493
- "shape": "S2r"
658
+ "shape": "S38"
494
659
  },
495
660
  "Questions": {
496
661
  "type": "list",
@@ -516,7 +681,7 @@
516
681
  }
517
682
  },
518
683
  "RiskCounts": {
519
- "shape": "S2r"
684
+ "shape": "S38"
520
685
  }
521
686
  }
522
687
  }
@@ -566,7 +731,7 @@
566
731
  "Owner": {},
567
732
  "ShareInvitationId": {},
568
733
  "Tags": {
569
- "shape": "S11"
734
+ "shape": "Su"
570
735
  }
571
736
  }
572
737
  }
@@ -608,7 +773,7 @@
608
773
  "type": "integer"
609
774
  },
610
775
  "LensReview": {
611
- "shape": "S3d"
776
+ "shape": "S3u"
612
777
  }
613
778
  }
614
779
  }
@@ -759,7 +924,92 @@
759
924
  "type": "timestamp"
760
925
  },
761
926
  "Workload": {
762
- "shape": "S3w"
927
+ "shape": "S4f"
928
+ }
929
+ }
930
+ }
931
+ }
932
+ }
933
+ },
934
+ "GetProfile": {
935
+ "http": {
936
+ "method": "GET",
937
+ "requestUri": "/profiles/{ProfileArn}"
938
+ },
939
+ "input": {
940
+ "type": "structure",
941
+ "required": [
942
+ "ProfileArn"
943
+ ],
944
+ "members": {
945
+ "ProfileArn": {
946
+ "location": "uri",
947
+ "locationName": "ProfileArn"
948
+ },
949
+ "ProfileVersion": {
950
+ "location": "querystring",
951
+ "locationName": "ProfileVersion"
952
+ }
953
+ }
954
+ },
955
+ "output": {
956
+ "type": "structure",
957
+ "members": {
958
+ "Profile": {
959
+ "shape": "S4k"
960
+ }
961
+ }
962
+ }
963
+ },
964
+ "GetProfileTemplate": {
965
+ "http": {
966
+ "method": "GET",
967
+ "requestUri": "/profileTemplate"
968
+ },
969
+ "input": {
970
+ "type": "structure",
971
+ "members": {}
972
+ },
973
+ "output": {
974
+ "type": "structure",
975
+ "members": {
976
+ "ProfileTemplate": {
977
+ "type": "structure",
978
+ "members": {
979
+ "TemplateName": {},
980
+ "TemplateQuestions": {
981
+ "type": "list",
982
+ "member": {
983
+ "type": "structure",
984
+ "members": {
985
+ "QuestionId": {},
986
+ "QuestionTitle": {},
987
+ "QuestionDescription": {},
988
+ "QuestionChoices": {
989
+ "type": "list",
990
+ "member": {
991
+ "type": "structure",
992
+ "members": {
993
+ "ChoiceId": {},
994
+ "ChoiceTitle": {},
995
+ "ChoiceDescription": {}
996
+ }
997
+ }
998
+ },
999
+ "MinSelectedChoices": {
1000
+ "type": "integer"
1001
+ },
1002
+ "MaxSelectedChoices": {
1003
+ "type": "integer"
1004
+ }
1005
+ }
1006
+ }
1007
+ },
1008
+ "CreatedAt": {
1009
+ "type": "timestamp"
1010
+ },
1011
+ "UpdatedAt": {
1012
+ "type": "timestamp"
763
1013
  }
764
1014
  }
765
1015
  }
@@ -787,7 +1037,7 @@
787
1037
  "type": "structure",
788
1038
  "members": {
789
1039
  "Workload": {
790
- "shape": "S3w"
1040
+ "shape": "S4f"
791
1041
  }
792
1042
  }
793
1043
  }
@@ -810,7 +1060,7 @@
810
1060
  "idempotencyToken": true
811
1061
  },
812
1062
  "Tags": {
813
- "shape": "S11"
1063
+ "shape": "Su"
814
1064
  }
815
1065
  }
816
1066
  },
@@ -859,6 +1109,10 @@
859
1109
  "location": "querystring",
860
1110
  "locationName": "MaxResults",
861
1111
  "type": "integer"
1112
+ },
1113
+ "QuestionPriority": {
1114
+ "location": "querystring",
1115
+ "locationName": "QuestionPriority"
862
1116
  }
863
1117
  }
864
1118
  },
@@ -880,10 +1134,10 @@
880
1134
  "PillarId": {},
881
1135
  "QuestionTitle": {},
882
1136
  "Choices": {
883
- "shape": "S1x"
1137
+ "shape": "S2f"
884
1138
  },
885
1139
  "SelectedChoices": {
886
- "shape": "S29"
1140
+ "shape": "S2q"
887
1141
  },
888
1142
  "ChoiceAnswerSummaries": {
889
1143
  "type": "list",
@@ -900,7 +1154,8 @@
900
1154
  "type": "boolean"
901
1155
  },
902
1156
  "Risk": {},
903
- "Reason": {}
1157
+ "Reason": {},
1158
+ "QuestionType": {}
904
1159
  }
905
1160
  }
906
1161
  },
@@ -1067,6 +1322,10 @@
1067
1322
  "location": "querystring",
1068
1323
  "locationName": "MaxResults",
1069
1324
  "type": "integer"
1325
+ },
1326
+ "QuestionPriority": {
1327
+ "location": "querystring",
1328
+ "locationName": "QuestionPriority"
1070
1329
  }
1071
1330
  }
1072
1331
  },
@@ -1159,7 +1418,13 @@
1159
1418
  "type": "timestamp"
1160
1419
  },
1161
1420
  "RiskCounts": {
1162
- "shape": "S2r"
1421
+ "shape": "S38"
1422
+ },
1423
+ "Profiles": {
1424
+ "shape": "S3z"
1425
+ },
1426
+ "PrioritizedRiskCounts": {
1427
+ "shape": "S38"
1163
1428
  }
1164
1429
  }
1165
1430
  }
@@ -1318,7 +1583,7 @@
1318
1583
  "type": "timestamp"
1319
1584
  },
1320
1585
  "WorkloadSummary": {
1321
- "shape": "S5l"
1586
+ "shape": "S6n"
1322
1587
  }
1323
1588
  }
1324
1589
  }
@@ -1368,6 +1633,157 @@
1368
1633
  }
1369
1634
  }
1370
1635
  },
1636
+ "ListProfileNotifications": {
1637
+ "http": {
1638
+ "method": "GET",
1639
+ "requestUri": "/profileNotifications/"
1640
+ },
1641
+ "input": {
1642
+ "type": "structure",
1643
+ "members": {
1644
+ "WorkloadId": {
1645
+ "location": "querystring",
1646
+ "locationName": "WorkloadId"
1647
+ },
1648
+ "NextToken": {
1649
+ "location": "querystring",
1650
+ "locationName": "NextToken"
1651
+ },
1652
+ "MaxResults": {
1653
+ "location": "querystring",
1654
+ "locationName": "MaxResults",
1655
+ "type": "integer"
1656
+ }
1657
+ }
1658
+ },
1659
+ "output": {
1660
+ "type": "structure",
1661
+ "members": {
1662
+ "NotificationSummaries": {
1663
+ "type": "list",
1664
+ "member": {
1665
+ "type": "structure",
1666
+ "members": {
1667
+ "CurrentProfileVersion": {},
1668
+ "LatestProfileVersion": {},
1669
+ "Type": {},
1670
+ "ProfileArn": {},
1671
+ "ProfileName": {},
1672
+ "WorkloadId": {},
1673
+ "WorkloadName": {}
1674
+ }
1675
+ }
1676
+ },
1677
+ "NextToken": {}
1678
+ }
1679
+ }
1680
+ },
1681
+ "ListProfileShares": {
1682
+ "http": {
1683
+ "method": "GET",
1684
+ "requestUri": "/profiles/{ProfileArn}/shares"
1685
+ },
1686
+ "input": {
1687
+ "type": "structure",
1688
+ "required": [
1689
+ "ProfileArn"
1690
+ ],
1691
+ "members": {
1692
+ "ProfileArn": {
1693
+ "location": "uri",
1694
+ "locationName": "ProfileArn"
1695
+ },
1696
+ "SharedWithPrefix": {
1697
+ "location": "querystring",
1698
+ "locationName": "SharedWithPrefix"
1699
+ },
1700
+ "NextToken": {
1701
+ "location": "querystring",
1702
+ "locationName": "NextToken"
1703
+ },
1704
+ "MaxResults": {
1705
+ "location": "querystring",
1706
+ "locationName": "MaxResults",
1707
+ "type": "integer"
1708
+ },
1709
+ "Status": {
1710
+ "location": "querystring",
1711
+ "locationName": "Status"
1712
+ }
1713
+ }
1714
+ },
1715
+ "output": {
1716
+ "type": "structure",
1717
+ "members": {
1718
+ "ProfileShareSummaries": {
1719
+ "type": "list",
1720
+ "member": {
1721
+ "type": "structure",
1722
+ "members": {
1723
+ "ShareId": {},
1724
+ "SharedWith": {},
1725
+ "Status": {},
1726
+ "StatusMessage": {}
1727
+ }
1728
+ }
1729
+ },
1730
+ "NextToken": {}
1731
+ }
1732
+ }
1733
+ },
1734
+ "ListProfiles": {
1735
+ "http": {
1736
+ "method": "GET",
1737
+ "requestUri": "/profileSummaries"
1738
+ },
1739
+ "input": {
1740
+ "type": "structure",
1741
+ "members": {
1742
+ "ProfileNamePrefix": {
1743
+ "location": "querystring",
1744
+ "locationName": "ProfileNamePrefix"
1745
+ },
1746
+ "ProfileOwnerType": {
1747
+ "location": "querystring",
1748
+ "locationName": "ProfileOwnerType"
1749
+ },
1750
+ "NextToken": {
1751
+ "location": "querystring",
1752
+ "locationName": "NextToken"
1753
+ },
1754
+ "MaxResults": {
1755
+ "location": "querystring",
1756
+ "locationName": "MaxResults",
1757
+ "type": "integer"
1758
+ }
1759
+ }
1760
+ },
1761
+ "output": {
1762
+ "type": "structure",
1763
+ "members": {
1764
+ "ProfileSummaries": {
1765
+ "type": "list",
1766
+ "member": {
1767
+ "type": "structure",
1768
+ "members": {
1769
+ "ProfileArn": {},
1770
+ "ProfileVersion": {},
1771
+ "ProfileName": {},
1772
+ "ProfileDescription": {},
1773
+ "Owner": {},
1774
+ "CreatedAt": {
1775
+ "type": "timestamp"
1776
+ },
1777
+ "UpdatedAt": {
1778
+ "type": "timestamp"
1779
+ }
1780
+ }
1781
+ }
1782
+ },
1783
+ "NextToken": {}
1784
+ }
1785
+ }
1786
+ },
1371
1787
  "ListShareInvitations": {
1372
1788
  "http": {
1373
1789
  "method": "GET",
@@ -1396,6 +1812,10 @@
1396
1812
  "location": "querystring",
1397
1813
  "locationName": "MaxResults",
1398
1814
  "type": "integer"
1815
+ },
1816
+ "ProfileNamePrefix": {
1817
+ "location": "querystring",
1818
+ "locationName": "ProfileNamePrefix"
1399
1819
  }
1400
1820
  }
1401
1821
  },
@@ -1415,7 +1835,9 @@
1415
1835
  "WorkloadName": {},
1416
1836
  "WorkloadId": {},
1417
1837
  "LensName": {},
1418
- "LensArn": {}
1838
+ "LensArn": {},
1839
+ "ProfileName": {},
1840
+ "ProfileArn": {}
1419
1841
  }
1420
1842
  }
1421
1843
  },
@@ -1444,7 +1866,7 @@
1444
1866
  "type": "structure",
1445
1867
  "members": {
1446
1868
  "Tags": {
1447
- "shape": "S11"
1869
+ "shape": "Su"
1448
1870
  }
1449
1871
  }
1450
1872
  }
@@ -1524,7 +1946,7 @@
1524
1946
  "WorkloadSummaries": {
1525
1947
  "type": "list",
1526
1948
  "member": {
1527
- "shape": "S5l"
1949
+ "shape": "S6n"
1528
1950
  }
1529
1951
  },
1530
1952
  "NextToken": {}
@@ -1547,7 +1969,7 @@
1547
1969
  "locationName": "WorkloadArn"
1548
1970
  },
1549
1971
  "Tags": {
1550
- "shape": "S11"
1972
+ "shape": "Su"
1551
1973
  }
1552
1974
  }
1553
1975
  },
@@ -1611,7 +2033,7 @@
1611
2033
  "locationName": "QuestionId"
1612
2034
  },
1613
2035
  "SelectedChoices": {
1614
- "shape": "S29"
2036
+ "shape": "S2q"
1615
2037
  },
1616
2038
  "ChoiceUpdates": {
1617
2039
  "type": "map",
@@ -1642,7 +2064,7 @@
1642
2064
  "LensAlias": {},
1643
2065
  "LensArn": {},
1644
2066
  "Answer": {
1645
- "shape": "S1r"
2067
+ "shape": "S29"
1646
2068
  }
1647
2069
  }
1648
2070
  }
@@ -1693,7 +2115,37 @@
1693
2115
  "members": {
1694
2116
  "WorkloadId": {},
1695
2117
  "LensReview": {
1696
- "shape": "S3d"
2118
+ "shape": "S3u"
2119
+ }
2120
+ }
2121
+ }
2122
+ },
2123
+ "UpdateProfile": {
2124
+ "http": {
2125
+ "method": "PATCH",
2126
+ "requestUri": "/profiles/{ProfileArn}"
2127
+ },
2128
+ "input": {
2129
+ "type": "structure",
2130
+ "required": [
2131
+ "ProfileArn"
2132
+ ],
2133
+ "members": {
2134
+ "ProfileArn": {
2135
+ "location": "uri",
2136
+ "locationName": "ProfileArn"
2137
+ },
2138
+ "ProfileDescription": {},
2139
+ "ProfileQuestions": {
2140
+ "shape": "Sp"
2141
+ }
2142
+ }
2143
+ },
2144
+ "output": {
2145
+ "type": "structure",
2146
+ "members": {
2147
+ "Profile": {
2148
+ "shape": "S4k"
1697
2149
  }
1698
2150
  }
1699
2151
  }
@@ -1727,7 +2179,8 @@
1727
2179
  "ShareResourceType": {},
1728
2180
  "WorkloadId": {},
1729
2181
  "LensAlias": {},
1730
- "LensArn": {}
2182
+ "LensArn": {},
2183
+ "ProfileArn": {}
1731
2184
  }
1732
2185
  }
1733
2186
  }
@@ -1752,16 +2205,16 @@
1752
2205
  "Description": {},
1753
2206
  "Environment": {},
1754
2207
  "AccountIds": {
1755
- "shape": "Sn"
2208
+ "shape": "S15"
1756
2209
  },
1757
2210
  "AwsRegions": {
1758
- "shape": "Sp"
2211
+ "shape": "S17"
1759
2212
  },
1760
2213
  "NonAwsRegions": {
1761
- "shape": "Sr"
2214
+ "shape": "S19"
1762
2215
  },
1763
2216
  "PillarPriorities": {
1764
- "shape": "St"
2217
+ "shape": "S1b"
1765
2218
  },
1766
2219
  "ArchitecturalDesign": {},
1767
2220
  "ReviewOwner": {},
@@ -1773,10 +2226,10 @@
1773
2226
  "Notes": {},
1774
2227
  "ImprovementStatus": {},
1775
2228
  "DiscoveryConfig": {
1776
- "shape": "S14"
2229
+ "shape": "S1j"
1777
2230
  },
1778
2231
  "Applications": {
1779
- "shape": "S18"
2232
+ "shape": "S1n"
1780
2233
  }
1781
2234
  }
1782
2235
  },
@@ -1784,7 +2237,7 @@
1784
2237
  "type": "structure",
1785
2238
  "members": {
1786
2239
  "Workload": {
1787
- "shape": "S3w"
2240
+ "shape": "S4f"
1788
2241
  }
1789
2242
  }
1790
2243
  }
@@ -1857,6 +2310,33 @@
1857
2310
  "ClientRequestToken": {}
1858
2311
  }
1859
2312
  }
2313
+ },
2314
+ "UpgradeProfileVersion": {
2315
+ "http": {
2316
+ "method": "PUT",
2317
+ "requestUri": "/workloads/{WorkloadId}/profiles/{ProfileArn}/upgrade"
2318
+ },
2319
+ "input": {
2320
+ "type": "structure",
2321
+ "required": [
2322
+ "WorkloadId",
2323
+ "ProfileArn"
2324
+ ],
2325
+ "members": {
2326
+ "WorkloadId": {
2327
+ "location": "uri",
2328
+ "locationName": "WorkloadId"
2329
+ },
2330
+ "ProfileArn": {
2331
+ "location": "uri",
2332
+ "locationName": "ProfileArn"
2333
+ },
2334
+ "MilestoneName": {},
2335
+ "ClientRequestToken": {
2336
+ "idempotencyToken": true
2337
+ }
2338
+ }
2339
+ }
1860
2340
  }
1861
2341
  },
1862
2342
  "shapes": {
@@ -1864,32 +2344,49 @@
1864
2344
  "type": "list",
1865
2345
  "member": {}
1866
2346
  },
1867
- "Sn": {
2347
+ "S6": {
1868
2348
  "type": "list",
1869
2349
  "member": {}
1870
2350
  },
1871
2351
  "Sp": {
2352
+ "type": "list",
2353
+ "member": {
2354
+ "type": "structure",
2355
+ "members": {
2356
+ "QuestionId": {},
2357
+ "SelectedChoiceIds": {
2358
+ "type": "list",
2359
+ "member": {}
2360
+ }
2361
+ }
2362
+ }
2363
+ },
2364
+ "Su": {
2365
+ "type": "map",
2366
+ "key": {},
2367
+ "value": {}
2368
+ },
2369
+ "S15": {
1872
2370
  "type": "list",
1873
2371
  "member": {}
1874
2372
  },
1875
- "Sr": {
2373
+ "S17": {
1876
2374
  "type": "list",
1877
2375
  "member": {}
1878
2376
  },
1879
- "St": {
2377
+ "S19": {
1880
2378
  "type": "list",
1881
2379
  "member": {}
1882
2380
  },
1883
- "Sz": {
2381
+ "S1b": {
1884
2382
  "type": "list",
1885
2383
  "member": {}
1886
2384
  },
1887
- "S11": {
1888
- "type": "map",
1889
- "key": {},
1890
- "value": {}
2385
+ "S1h": {
2386
+ "type": "list",
2387
+ "member": {}
1891
2388
  },
1892
- "S14": {
2389
+ "S1j": {
1893
2390
  "type": "structure",
1894
2391
  "members": {
1895
2392
  "TrustedAdvisorIntegrationStatus": {},
@@ -1899,11 +2396,11 @@
1899
2396
  }
1900
2397
  }
1901
2398
  },
1902
- "S18": {
2399
+ "S1n": {
1903
2400
  "type": "list",
1904
2401
  "member": {}
1905
2402
  },
1906
- "S1r": {
2403
+ "S29": {
1907
2404
  "type": "structure",
1908
2405
  "members": {
1909
2406
  "QuestionId": {},
@@ -1914,10 +2411,10 @@
1914
2411
  "HelpfulResourceUrl": {},
1915
2412
  "HelpfulResourceDisplayText": {},
1916
2413
  "Choices": {
1917
- "shape": "S1x"
2414
+ "shape": "S2f"
1918
2415
  },
1919
2416
  "SelectedChoices": {
1920
- "shape": "S29"
2417
+ "shape": "S2q"
1921
2418
  },
1922
2419
  "ChoiceAnswers": {
1923
2420
  "type": "list",
@@ -1939,7 +2436,7 @@
1939
2436
  "Reason": {}
1940
2437
  }
1941
2438
  },
1942
- "S1x": {
2439
+ "S2f": {
1943
2440
  "type": "list",
1944
2441
  "member": {
1945
2442
  "type": "structure",
@@ -1948,10 +2445,10 @@
1948
2445
  "Title": {},
1949
2446
  "Description": {},
1950
2447
  "HelpfulResource": {
1951
- "shape": "S22"
2448
+ "shape": "S2j"
1952
2449
  },
1953
2450
  "ImprovementPlan": {
1954
- "shape": "S22"
2451
+ "shape": "S2j"
1955
2452
  },
1956
2453
  "AdditionalResources": {
1957
2454
  "type": "list",
@@ -1962,7 +2459,7 @@
1962
2459
  "Content": {
1963
2460
  "type": "list",
1964
2461
  "member": {
1965
- "shape": "S22"
2462
+ "shape": "S2j"
1966
2463
  }
1967
2464
  }
1968
2465
  }
@@ -1971,25 +2468,25 @@
1971
2468
  }
1972
2469
  }
1973
2470
  },
1974
- "S22": {
2471
+ "S2j": {
1975
2472
  "type": "structure",
1976
2473
  "members": {
1977
2474
  "DisplayText": {},
1978
2475
  "Url": {}
1979
2476
  }
1980
2477
  },
1981
- "S29": {
2478
+ "S2q": {
1982
2479
  "type": "list",
1983
2480
  "member": {}
1984
2481
  },
1985
- "S2r": {
2482
+ "S38": {
1986
2483
  "type": "map",
1987
2484
  "key": {},
1988
2485
  "value": {
1989
2486
  "type": "integer"
1990
2487
  }
1991
2488
  },
1992
- "S3d": {
2489
+ "S3u": {
1993
2490
  "type": "structure",
1994
2491
  "members": {
1995
2492
  "LensAlias": {},
@@ -2006,7 +2503,10 @@
2006
2503
  "PillarName": {},
2007
2504
  "Notes": {},
2008
2505
  "RiskCounts": {
2009
- "shape": "S2r"
2506
+ "shape": "S38"
2507
+ },
2508
+ "PrioritizedRiskCounts": {
2509
+ "shape": "S38"
2010
2510
  }
2011
2511
  }
2012
2512
  }
@@ -2016,12 +2516,28 @@
2016
2516
  },
2017
2517
  "Notes": {},
2018
2518
  "RiskCounts": {
2019
- "shape": "S2r"
2519
+ "shape": "S38"
2020
2520
  },
2021
- "NextToken": {}
2521
+ "NextToken": {},
2522
+ "Profiles": {
2523
+ "shape": "S3z"
2524
+ },
2525
+ "PrioritizedRiskCounts": {
2526
+ "shape": "S38"
2527
+ }
2022
2528
  }
2023
2529
  },
2024
- "S3w": {
2530
+ "S3z": {
2531
+ "type": "list",
2532
+ "member": {
2533
+ "type": "structure",
2534
+ "members": {
2535
+ "ProfileArn": {},
2536
+ "ProfileVersion": {}
2537
+ }
2538
+ }
2539
+ },
2540
+ "S4f": {
2025
2541
  "type": "structure",
2026
2542
  "members": {
2027
2543
  "WorkloadId": {},
@@ -2033,13 +2549,13 @@
2033
2549
  "type": "timestamp"
2034
2550
  },
2035
2551
  "AccountIds": {
2036
- "shape": "Sn"
2552
+ "shape": "S15"
2037
2553
  },
2038
2554
  "AwsRegions": {
2039
- "shape": "Sp"
2555
+ "shape": "S17"
2040
2556
  },
2041
2557
  "NonAwsRegions": {
2042
- "shape": "Sr"
2558
+ "shape": "S19"
2043
2559
  },
2044
2560
  "ArchitecturalDesign": {},
2045
2561
  "ReviewOwner": {},
@@ -2054,28 +2570,86 @@
2054
2570
  "Notes": {},
2055
2571
  "ImprovementStatus": {},
2056
2572
  "RiskCounts": {
2057
- "shape": "S2r"
2573
+ "shape": "S38"
2058
2574
  },
2059
2575
  "PillarPriorities": {
2060
- "shape": "St"
2576
+ "shape": "S1b"
2061
2577
  },
2062
2578
  "Lenses": {
2063
- "shape": "Sz"
2579
+ "shape": "S1h"
2064
2580
  },
2065
2581
  "Owner": {},
2066
2582
  "ShareInvitationId": {},
2067
2583
  "Tags": {
2068
- "shape": "S11"
2584
+ "shape": "Su"
2069
2585
  },
2070
2586
  "DiscoveryConfig": {
2071
- "shape": "S14"
2587
+ "shape": "S1j"
2072
2588
  },
2073
2589
  "Applications": {
2074
- "shape": "S18"
2590
+ "shape": "S1n"
2591
+ },
2592
+ "Profiles": {
2593
+ "shape": "S3z"
2594
+ },
2595
+ "PrioritizedRiskCounts": {
2596
+ "shape": "S38"
2597
+ }
2598
+ }
2599
+ },
2600
+ "S4k": {
2601
+ "type": "structure",
2602
+ "members": {
2603
+ "ProfileArn": {},
2604
+ "ProfileVersion": {},
2605
+ "ProfileName": {},
2606
+ "ProfileDescription": {},
2607
+ "ProfileQuestions": {
2608
+ "type": "list",
2609
+ "member": {
2610
+ "type": "structure",
2611
+ "members": {
2612
+ "QuestionId": {},
2613
+ "QuestionTitle": {},
2614
+ "QuestionDescription": {},
2615
+ "QuestionChoices": {
2616
+ "type": "list",
2617
+ "member": {
2618
+ "type": "structure",
2619
+ "members": {
2620
+ "ChoiceId": {},
2621
+ "ChoiceTitle": {},
2622
+ "ChoiceDescription": {}
2623
+ }
2624
+ }
2625
+ },
2626
+ "SelectedChoiceIds": {
2627
+ "type": "list",
2628
+ "member": {}
2629
+ },
2630
+ "MinSelectedChoices": {
2631
+ "type": "integer"
2632
+ },
2633
+ "MaxSelectedChoices": {
2634
+ "type": "integer"
2635
+ }
2636
+ }
2637
+ }
2638
+ },
2639
+ "Owner": {},
2640
+ "CreatedAt": {
2641
+ "type": "timestamp"
2642
+ },
2643
+ "UpdatedAt": {
2644
+ "type": "timestamp"
2645
+ },
2646
+ "ShareInvitationId": {},
2647
+ "Tags": {
2648
+ "shape": "Su"
2075
2649
  }
2076
2650
  }
2077
2651
  },
2078
- "S5l": {
2652
+ "S6n": {
2079
2653
  "type": "structure",
2080
2654
  "members": {
2081
2655
  "WorkloadId": {},
@@ -2086,12 +2660,18 @@
2086
2660
  "type": "timestamp"
2087
2661
  },
2088
2662
  "Lenses": {
2089
- "shape": "Sz"
2663
+ "shape": "S1h"
2090
2664
  },
2091
2665
  "RiskCounts": {
2092
- "shape": "S2r"
2666
+ "shape": "S38"
2093
2667
  },
2094
- "ImprovementStatus": {}
2668
+ "ImprovementStatus": {},
2669
+ "Profiles": {
2670
+ "shape": "S3z"
2671
+ },
2672
+ "PrioritizedRiskCounts": {
2673
+ "shape": "S38"
2674
+ }
2095
2675
  }
2096
2676
  }
2097
2677
  }