@cloud-copilot/iam-data 0.8.202411131 → 0.8.202411161
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.
- package/data/actions/access-analyzer.json +15 -0
- package/data/actions/arc-zonal-shift.json +8 -0
- package/data/actions/b2bi.json +15 -0
- package/data/actions/billing.json +1 -2
- package/data/actions/cleanrooms-ml.json +583 -0
- package/data/actions/cloudtrail.json +20 -0
- package/data/actions/controltower.json +15 -0
- package/data/actions/deepracer.json +24 -0
- package/data/actions/elasticache.json +4 -0
- package/data/actions/gamelift.json +270 -28
- package/data/actions/iam.json +40 -0
- package/data/actions/iot.json +15 -0
- package/data/actions/license-manager-user-subscriptions.json +236 -10
- package/data/actions/partnercentral.json +242 -0
- package/data/actions/q.json +153 -0
- package/data/actions/sts.json +17 -0
- package/data/actions/wisdom.json +225 -0
- package/data/conditionKeys/arc-zonal-shift.json +5 -0
- package/data/conditionKeys/cleanrooms-ml.json +1 -1
- package/data/conditionKeys/deepracer.json +3 -3
- package/data/conditionKeys/elasticache.json +11 -1
- package/data/conditionKeys/firehose.json +3 -3
- package/data/conditionKeys/license-manager-user-subscriptions.json +17 -1
- package/data/conditionKeys/partnercentral.json +12 -0
- package/data/conditionKeys/q.json +15 -0
- package/data/conditionKeys/sts.json +5 -0
- package/data/resourceTypes/arc-zonal-shift.json +2 -0
- package/data/resourceTypes/cleanrooms-ml.json +35 -0
- package/data/resourceTypes/elasticache.json +2 -0
- package/data/resourceTypes/gamelift.json +7 -0
- package/data/resourceTypes/license-manager-user-subscriptions.json +30 -1
- package/data/resourceTypes/partnercentral.json +22 -0
- package/data/resourceTypes/q.json +7 -0
- package/data/resourceTypes/sts.json +4 -0
- package/data/resourceTypes/wisdom.json +7 -0
- package/data/serviceNames.json +2 -1
- package/data/services.json +1 -0
- package/package.json +2 -2
|
@@ -18,6 +18,18 @@
|
|
|
18
18
|
],
|
|
19
19
|
"dependentActions": []
|
|
20
20
|
},
|
|
21
|
+
"admindescribeaccountkey": {
|
|
22
|
+
"name": "AdminDescribeAccountKey",
|
|
23
|
+
"isPermissionOnly": true,
|
|
24
|
+
"description": "Grants permission to retrieve information of the KMS key that the user currently has assigned to their account",
|
|
25
|
+
"accessLevel": "Read",
|
|
26
|
+
"resourceTypes": [],
|
|
27
|
+
"conditionKeys": [
|
|
28
|
+
"deepracer:UserToken",
|
|
29
|
+
"deepracer:MultiUser"
|
|
30
|
+
],
|
|
31
|
+
"dependentActions": []
|
|
32
|
+
},
|
|
21
33
|
"admingetaccountconfig": {
|
|
22
34
|
"name": "AdminGetAccountConfig",
|
|
23
35
|
"isPermissionOnly": true,
|
|
@@ -63,6 +75,18 @@
|
|
|
63
75
|
"conditionKeys": [],
|
|
64
76
|
"dependentActions": []
|
|
65
77
|
},
|
|
78
|
+
"adminupdateaccountkey": {
|
|
79
|
+
"name": "AdminUpdateAccountKey",
|
|
80
|
+
"isPermissionOnly": true,
|
|
81
|
+
"description": "Grants permission to update the KMS key that is assigned to the user's account",
|
|
82
|
+
"accessLevel": "Write",
|
|
83
|
+
"resourceTypes": [],
|
|
84
|
+
"conditionKeys": [
|
|
85
|
+
"deepracer:UserToken",
|
|
86
|
+
"deepracer:MultiUser"
|
|
87
|
+
],
|
|
88
|
+
"dependentActions": []
|
|
89
|
+
},
|
|
66
90
|
"clonereinforcementlearningmodel": {
|
|
67
91
|
"name": "CloneReinforcementLearningModel",
|
|
68
92
|
"isPermissionOnly": true,
|
|
@@ -523,8 +523,10 @@
|
|
|
523
523
|
"elasticache:EngineVersion",
|
|
524
524
|
"elasticache:SnapshotRetentionLimit",
|
|
525
525
|
"elasticache:KmsKeyId",
|
|
526
|
+
"elasticache:MinimumDataStorage",
|
|
526
527
|
"elasticache:MaximumDataStorage",
|
|
527
528
|
"elasticache:DataStorageUnit",
|
|
529
|
+
"elasticache:MinimumECPUPerSecond",
|
|
528
530
|
"elasticache:MaximumECPUPerSecond"
|
|
529
531
|
],
|
|
530
532
|
"dependentActions": [
|
|
@@ -1632,8 +1634,10 @@
|
|
|
1632
1634
|
"aws:ResourceTag/${TagKey}",
|
|
1633
1635
|
"elasticache:EngineVersion",
|
|
1634
1636
|
"elasticache:SnapshotRetentionLimit",
|
|
1637
|
+
"elasticache:MinimumDataStorage",
|
|
1635
1638
|
"elasticache:MaximumDataStorage",
|
|
1636
1639
|
"elasticache:DataStorageUnit",
|
|
1640
|
+
"elasticache:MinimumECPUPerSecond",
|
|
1637
1641
|
"elasticache:MaximumECPUPerSecond"
|
|
1638
1642
|
],
|
|
1639
1643
|
"dependentActions": [
|
|
@@ -50,9 +50,25 @@
|
|
|
50
50
|
"s3:GetObject"
|
|
51
51
|
]
|
|
52
52
|
},
|
|
53
|
+
"createcontainerfleet": {
|
|
54
|
+
"name": "CreateContainerFleet",
|
|
55
|
+
"description": "Grants permission to create a new container fleet of computing resources to run your game servers",
|
|
56
|
+
"accessLevel": "Write",
|
|
57
|
+
"resourceTypes": [],
|
|
58
|
+
"conditionKeys": [
|
|
59
|
+
"aws:RequestTag/${TagKey}",
|
|
60
|
+
"aws:TagKeys"
|
|
61
|
+
],
|
|
62
|
+
"dependentActions": [
|
|
63
|
+
"ec2:DescribeAvailabilityZones",
|
|
64
|
+
"ec2:DescribeRegions",
|
|
65
|
+
"gamelift:TagResource",
|
|
66
|
+
"iam:PassRole"
|
|
67
|
+
]
|
|
68
|
+
},
|
|
53
69
|
"createcontainergroupdefinition": {
|
|
54
70
|
"name": "CreateContainerGroupDefinition",
|
|
55
|
-
"description": "Grants permission to create a new container group definition
|
|
71
|
+
"description": "Grants permission to create a new container group definition using images stored in an Amazon ECR repository",
|
|
56
72
|
"accessLevel": "Write",
|
|
57
73
|
"resourceTypes": [],
|
|
58
74
|
"conditionKeys": [
|
|
@@ -62,6 +78,7 @@
|
|
|
62
78
|
"dependentActions": [
|
|
63
79
|
"ecr:BatchGetImage",
|
|
64
80
|
"ecr:DescribeImages",
|
|
81
|
+
"ecr:GetAuthorizationToken",
|
|
65
82
|
"ecr:GetDownloadUrlForLayer",
|
|
66
83
|
"gamelift:TagResource"
|
|
67
84
|
]
|
|
@@ -87,18 +104,24 @@
|
|
|
87
104
|
"description": "Grants permission to specify additional locations for a fleet",
|
|
88
105
|
"accessLevel": "Write",
|
|
89
106
|
"resourceTypes": [
|
|
107
|
+
{
|
|
108
|
+
"name": "containerFleet",
|
|
109
|
+
"required": false,
|
|
110
|
+
"conditionKeys": [],
|
|
111
|
+
"dependentActions": [
|
|
112
|
+
"ec2:DescribeAvailabilityZones",
|
|
113
|
+
"ec2:DescribeRegions"
|
|
114
|
+
]
|
|
115
|
+
},
|
|
90
116
|
{
|
|
91
117
|
"name": "fleet",
|
|
92
|
-
"required":
|
|
118
|
+
"required": false,
|
|
93
119
|
"conditionKeys": [],
|
|
94
120
|
"dependentActions": []
|
|
95
121
|
}
|
|
96
122
|
],
|
|
97
123
|
"conditionKeys": [],
|
|
98
|
-
"dependentActions": [
|
|
99
|
-
"ec2:DescribeAvailabilityZones",
|
|
100
|
-
"ec2:DescribeRegions"
|
|
101
|
-
]
|
|
124
|
+
"dependentActions": []
|
|
102
125
|
},
|
|
103
126
|
"creategameservergroup": {
|
|
104
127
|
"name": "CreateGameServerGroup",
|
|
@@ -269,9 +292,24 @@
|
|
|
269
292
|
"conditionKeys": [],
|
|
270
293
|
"dependentActions": []
|
|
271
294
|
},
|
|
295
|
+
"deletecontainerfleet": {
|
|
296
|
+
"name": "DeleteContainerFleet",
|
|
297
|
+
"description": "Grants permission to delete a container fleet",
|
|
298
|
+
"accessLevel": "Write",
|
|
299
|
+
"resourceTypes": [
|
|
300
|
+
{
|
|
301
|
+
"name": "containerFleet",
|
|
302
|
+
"required": true,
|
|
303
|
+
"conditionKeys": [],
|
|
304
|
+
"dependentActions": []
|
|
305
|
+
}
|
|
306
|
+
],
|
|
307
|
+
"conditionKeys": [],
|
|
308
|
+
"dependentActions": []
|
|
309
|
+
},
|
|
272
310
|
"deletecontainergroupdefinition": {
|
|
273
311
|
"name": "DeleteContainerGroupDefinition",
|
|
274
|
-
"description": "Grants permission to delete a container group definition
|
|
312
|
+
"description": "Grants permission to delete a container group definition",
|
|
275
313
|
"accessLevel": "Write",
|
|
276
314
|
"resourceTypes": [
|
|
277
315
|
{
|
|
@@ -304,9 +342,15 @@
|
|
|
304
342
|
"description": "Grants permission to delete locations for a fleet",
|
|
305
343
|
"accessLevel": "Write",
|
|
306
344
|
"resourceTypes": [
|
|
345
|
+
{
|
|
346
|
+
"name": "containerFleet",
|
|
347
|
+
"required": false,
|
|
348
|
+
"conditionKeys": [],
|
|
349
|
+
"dependentActions": []
|
|
350
|
+
},
|
|
307
351
|
{
|
|
308
352
|
"name": "fleet",
|
|
309
|
-
"required":
|
|
353
|
+
"required": false,
|
|
310
354
|
"conditionKeys": [],
|
|
311
355
|
"dependentActions": []
|
|
312
356
|
}
|
|
@@ -401,9 +445,15 @@
|
|
|
401
445
|
"description": "Grants permission to delete a set of auto-scaling rules",
|
|
402
446
|
"accessLevel": "Write",
|
|
403
447
|
"resourceTypes": [
|
|
448
|
+
{
|
|
449
|
+
"name": "containerFleet",
|
|
450
|
+
"required": false,
|
|
451
|
+
"conditionKeys": [],
|
|
452
|
+
"dependentActions": []
|
|
453
|
+
},
|
|
404
454
|
{
|
|
405
455
|
"name": "fleet",
|
|
406
|
-
"required":
|
|
456
|
+
"required": false,
|
|
407
457
|
"conditionKeys": [],
|
|
408
458
|
"dependentActions": []
|
|
409
459
|
}
|
|
@@ -504,11 +554,32 @@
|
|
|
504
554
|
},
|
|
505
555
|
"describecompute": {
|
|
506
556
|
"name": "DescribeCompute",
|
|
507
|
-
"description": "Grants permission to retrieve
|
|
557
|
+
"description": "Grants permission to retrieve information for a compute in a fleet",
|
|
508
558
|
"accessLevel": "Read",
|
|
509
559
|
"resourceTypes": [
|
|
560
|
+
{
|
|
561
|
+
"name": "containerFleet",
|
|
562
|
+
"required": false,
|
|
563
|
+
"conditionKeys": [],
|
|
564
|
+
"dependentActions": []
|
|
565
|
+
},
|
|
510
566
|
{
|
|
511
567
|
"name": "fleet",
|
|
568
|
+
"required": false,
|
|
569
|
+
"conditionKeys": [],
|
|
570
|
+
"dependentActions": []
|
|
571
|
+
}
|
|
572
|
+
],
|
|
573
|
+
"conditionKeys": [],
|
|
574
|
+
"dependentActions": []
|
|
575
|
+
},
|
|
576
|
+
"describecontainerfleet": {
|
|
577
|
+
"name": "DescribeContainerFleet",
|
|
578
|
+
"description": "Grants permission to retrieve the properties of an existing container fleet",
|
|
579
|
+
"accessLevel": "Read",
|
|
580
|
+
"resourceTypes": [
|
|
581
|
+
{
|
|
582
|
+
"name": "containerFleet",
|
|
512
583
|
"required": true,
|
|
513
584
|
"conditionKeys": [],
|
|
514
585
|
"dependentActions": []
|
|
@@ -519,7 +590,7 @@
|
|
|
519
590
|
},
|
|
520
591
|
"describecontainergroupdefinition": {
|
|
521
592
|
"name": "DescribeContainerGroupDefinition",
|
|
522
|
-
"description": "Grants permission to retrieve
|
|
593
|
+
"description": "Grants permission to retrieve the properties of an existing container group definition",
|
|
523
594
|
"accessLevel": "Read",
|
|
524
595
|
"resourceTypes": [
|
|
525
596
|
{
|
|
@@ -550,20 +621,41 @@
|
|
|
550
621
|
},
|
|
551
622
|
"describefleetcapacity": {
|
|
552
623
|
"name": "DescribeFleetCapacity",
|
|
553
|
-
"description": "Grants permission to retrieve the current capacity
|
|
624
|
+
"description": "Grants permission to retrieve the current capacity settings for managed fleets",
|
|
554
625
|
"accessLevel": "Read",
|
|
555
626
|
"resourceTypes": [],
|
|
556
627
|
"conditionKeys": [],
|
|
557
628
|
"dependentActions": []
|
|
558
629
|
},
|
|
630
|
+
"describefleetdeployment": {
|
|
631
|
+
"name": "DescribeFleetDeployment",
|
|
632
|
+
"description": "Grants permission to retrieve the properties of an existing fleet deployment",
|
|
633
|
+
"accessLevel": "Read",
|
|
634
|
+
"resourceTypes": [
|
|
635
|
+
{
|
|
636
|
+
"name": "containerFleet",
|
|
637
|
+
"required": true,
|
|
638
|
+
"conditionKeys": [],
|
|
639
|
+
"dependentActions": []
|
|
640
|
+
}
|
|
641
|
+
],
|
|
642
|
+
"conditionKeys": [],
|
|
643
|
+
"dependentActions": []
|
|
644
|
+
},
|
|
559
645
|
"describefleetevents": {
|
|
560
646
|
"name": "DescribeFleetEvents",
|
|
561
647
|
"description": "Grants permission to retrieve entries from a fleet's event log",
|
|
562
648
|
"accessLevel": "Read",
|
|
563
649
|
"resourceTypes": [
|
|
650
|
+
{
|
|
651
|
+
"name": "containerFleet",
|
|
652
|
+
"required": false,
|
|
653
|
+
"conditionKeys": [],
|
|
654
|
+
"dependentActions": []
|
|
655
|
+
},
|
|
564
656
|
{
|
|
565
657
|
"name": "fleet",
|
|
566
|
-
"required":
|
|
658
|
+
"required": false,
|
|
567
659
|
"conditionKeys": [],
|
|
568
660
|
"dependentActions": []
|
|
569
661
|
}
|
|
@@ -576,9 +668,15 @@
|
|
|
576
668
|
"description": "Grants permission to retrieve general properties, including statuses, for a fleet's locations",
|
|
577
669
|
"accessLevel": "Read",
|
|
578
670
|
"resourceTypes": [
|
|
671
|
+
{
|
|
672
|
+
"name": "containerFleet",
|
|
673
|
+
"required": false,
|
|
674
|
+
"conditionKeys": [],
|
|
675
|
+
"dependentActions": []
|
|
676
|
+
},
|
|
579
677
|
{
|
|
580
678
|
"name": "fleet",
|
|
581
|
-
"required":
|
|
679
|
+
"required": false,
|
|
582
680
|
"conditionKeys": [],
|
|
583
681
|
"dependentActions": []
|
|
584
682
|
}
|
|
@@ -591,9 +689,15 @@
|
|
|
591
689
|
"description": "Grants permission to retrieve the current capacity setting for a fleet's location",
|
|
592
690
|
"accessLevel": "Read",
|
|
593
691
|
"resourceTypes": [
|
|
692
|
+
{
|
|
693
|
+
"name": "containerFleet",
|
|
694
|
+
"required": false,
|
|
695
|
+
"conditionKeys": [],
|
|
696
|
+
"dependentActions": []
|
|
697
|
+
},
|
|
594
698
|
{
|
|
595
699
|
"name": "fleet",
|
|
596
|
-
"required":
|
|
700
|
+
"required": false,
|
|
597
701
|
"conditionKeys": [],
|
|
598
702
|
"dependentActions": []
|
|
599
703
|
}
|
|
@@ -718,12 +822,18 @@
|
|
|
718
822
|
},
|
|
719
823
|
"describeinstances": {
|
|
720
824
|
"name": "DescribeInstances",
|
|
721
|
-
"description": "Grants permission to retrieve information about instances in a fleet",
|
|
825
|
+
"description": "Grants permission to retrieve information about instances in a managed fleet",
|
|
722
826
|
"accessLevel": "Read",
|
|
723
827
|
"resourceTypes": [
|
|
828
|
+
{
|
|
829
|
+
"name": "containerFleet",
|
|
830
|
+
"required": false,
|
|
831
|
+
"conditionKeys": [],
|
|
832
|
+
"dependentActions": []
|
|
833
|
+
},
|
|
724
834
|
{
|
|
725
835
|
"name": "fleet",
|
|
726
|
-
"required":
|
|
836
|
+
"required": false,
|
|
727
837
|
"conditionKeys": [],
|
|
728
838
|
"dependentActions": []
|
|
729
839
|
}
|
|
@@ -783,9 +893,15 @@
|
|
|
783
893
|
"description": "Grants permission to retrieve all scaling policies that are applied to a fleet",
|
|
784
894
|
"accessLevel": "Read",
|
|
785
895
|
"resourceTypes": [
|
|
896
|
+
{
|
|
897
|
+
"name": "containerFleet",
|
|
898
|
+
"required": false,
|
|
899
|
+
"conditionKeys": [],
|
|
900
|
+
"dependentActions": []
|
|
901
|
+
},
|
|
786
902
|
{
|
|
787
903
|
"name": "fleet",
|
|
788
|
-
"required":
|
|
904
|
+
"required": false,
|
|
789
905
|
"conditionKeys": [],
|
|
790
906
|
"dependentActions": []
|
|
791
907
|
}
|
|
@@ -826,12 +942,18 @@
|
|
|
826
942
|
},
|
|
827
943
|
"getcomputeaccess": {
|
|
828
944
|
"name": "GetComputeAccess",
|
|
829
|
-
"description": "Grants permission to retrieve access
|
|
945
|
+
"description": "Grants permission to retrieve credentials to remotely access a compute in a managed fleet",
|
|
830
946
|
"accessLevel": "Read",
|
|
831
947
|
"resourceTypes": [
|
|
948
|
+
{
|
|
949
|
+
"name": "containerFleet",
|
|
950
|
+
"required": false,
|
|
951
|
+
"conditionKeys": [],
|
|
952
|
+
"dependentActions": []
|
|
953
|
+
},
|
|
832
954
|
{
|
|
833
955
|
"name": "fleet",
|
|
834
|
-
"required":
|
|
956
|
+
"required": false,
|
|
835
957
|
"conditionKeys": [],
|
|
836
958
|
"dependentActions": []
|
|
837
959
|
}
|
|
@@ -841,12 +963,18 @@
|
|
|
841
963
|
},
|
|
842
964
|
"getcomputeauthtoken": {
|
|
843
965
|
"name": "GetComputeAuthToken",
|
|
844
|
-
"description": "Grants permission to retrieve an
|
|
966
|
+
"description": "Grants permission to retrieve an authentication token that allows processes on a compute to send requests to the Amazon GameLift service",
|
|
845
967
|
"accessLevel": "Read",
|
|
846
968
|
"resourceTypes": [
|
|
969
|
+
{
|
|
970
|
+
"name": "containerFleet",
|
|
971
|
+
"required": false,
|
|
972
|
+
"conditionKeys": [],
|
|
973
|
+
"dependentActions": []
|
|
974
|
+
},
|
|
847
975
|
{
|
|
848
976
|
"name": "fleet",
|
|
849
|
-
"required":
|
|
977
|
+
"required": false,
|
|
850
978
|
"conditionKeys": [],
|
|
851
979
|
"dependentActions": []
|
|
852
980
|
}
|
|
@@ -898,8 +1026,37 @@
|
|
|
898
1026
|
"description": "Grants permission to retrieve all compute resources in the current Region",
|
|
899
1027
|
"accessLevel": "List",
|
|
900
1028
|
"resourceTypes": [
|
|
1029
|
+
{
|
|
1030
|
+
"name": "containerFleet",
|
|
1031
|
+
"required": false,
|
|
1032
|
+
"conditionKeys": [],
|
|
1033
|
+
"dependentActions": []
|
|
1034
|
+
},
|
|
901
1035
|
{
|
|
902
1036
|
"name": "fleet",
|
|
1037
|
+
"required": false,
|
|
1038
|
+
"conditionKeys": [],
|
|
1039
|
+
"dependentActions": []
|
|
1040
|
+
}
|
|
1041
|
+
],
|
|
1042
|
+
"conditionKeys": [],
|
|
1043
|
+
"dependentActions": []
|
|
1044
|
+
},
|
|
1045
|
+
"listcontainerfleets": {
|
|
1046
|
+
"name": "ListContainerFleets",
|
|
1047
|
+
"description": "Grants permission to retrieve the properties of all existing container fleets in the current Region",
|
|
1048
|
+
"accessLevel": "List",
|
|
1049
|
+
"resourceTypes": [],
|
|
1050
|
+
"conditionKeys": [],
|
|
1051
|
+
"dependentActions": []
|
|
1052
|
+
},
|
|
1053
|
+
"listcontainergroupdefinitionversions": {
|
|
1054
|
+
"name": "ListContainerGroupDefinitionVersions",
|
|
1055
|
+
"description": "Grants permission to retrieve the properties of all versions of an existing container group definition",
|
|
1056
|
+
"accessLevel": "List",
|
|
1057
|
+
"resourceTypes": [
|
|
1058
|
+
{
|
|
1059
|
+
"name": "containerGroupDefinition",
|
|
903
1060
|
"required": true,
|
|
904
1061
|
"conditionKeys": [],
|
|
905
1062
|
"dependentActions": []
|
|
@@ -910,7 +1067,15 @@
|
|
|
910
1067
|
},
|
|
911
1068
|
"listcontainergroupdefinitions": {
|
|
912
1069
|
"name": "ListContainerGroupDefinitions",
|
|
913
|
-
"description": "Grants permission to retrieve
|
|
1070
|
+
"description": "Grants permission to retrieve the properties of all existing container group definitions in the current Region",
|
|
1071
|
+
"accessLevel": "List",
|
|
1072
|
+
"resourceTypes": [],
|
|
1073
|
+
"conditionKeys": [],
|
|
1074
|
+
"dependentActions": []
|
|
1075
|
+
},
|
|
1076
|
+
"listfleetdeployments": {
|
|
1077
|
+
"name": "ListFleetDeployments",
|
|
1078
|
+
"description": "Grants permission to retrieve the properties of all existing fleet deployments in the current Region",
|
|
914
1079
|
"accessLevel": "List",
|
|
915
1080
|
"resourceTypes": [],
|
|
916
1081
|
"conditionKeys": [],
|
|
@@ -980,6 +1145,12 @@
|
|
|
980
1145
|
"conditionKeys": [],
|
|
981
1146
|
"dependentActions": []
|
|
982
1147
|
},
|
|
1148
|
+
{
|
|
1149
|
+
"name": "containerFleet",
|
|
1150
|
+
"required": false,
|
|
1151
|
+
"conditionKeys": [],
|
|
1152
|
+
"dependentActions": []
|
|
1153
|
+
},
|
|
983
1154
|
{
|
|
984
1155
|
"name": "containerGroupDefinition",
|
|
985
1156
|
"required": false,
|
|
@@ -1037,9 +1208,15 @@
|
|
|
1037
1208
|
"description": "Grants permission to create or update a fleet auto-scaling policy",
|
|
1038
1209
|
"accessLevel": "Write",
|
|
1039
1210
|
"resourceTypes": [
|
|
1211
|
+
{
|
|
1212
|
+
"name": "containerFleet",
|
|
1213
|
+
"required": false,
|
|
1214
|
+
"conditionKeys": [],
|
|
1215
|
+
"dependentActions": []
|
|
1216
|
+
},
|
|
1040
1217
|
{
|
|
1041
1218
|
"name": "fleet",
|
|
1042
|
-
"required":
|
|
1219
|
+
"required": false,
|
|
1043
1220
|
"conditionKeys": [],
|
|
1044
1221
|
"dependentActions": []
|
|
1045
1222
|
}
|
|
@@ -1135,9 +1312,15 @@
|
|
|
1135
1312
|
"description": "Grants permission to resume auto-scaling activity on a fleet after it was suspended with StopFleetActions()",
|
|
1136
1313
|
"accessLevel": "Write",
|
|
1137
1314
|
"resourceTypes": [
|
|
1315
|
+
{
|
|
1316
|
+
"name": "containerFleet",
|
|
1317
|
+
"required": false,
|
|
1318
|
+
"conditionKeys": [],
|
|
1319
|
+
"dependentActions": []
|
|
1320
|
+
},
|
|
1138
1321
|
{
|
|
1139
1322
|
"name": "fleet",
|
|
1140
|
-
"required":
|
|
1323
|
+
"required": false,
|
|
1141
1324
|
"conditionKeys": [],
|
|
1142
1325
|
"dependentActions": []
|
|
1143
1326
|
}
|
|
@@ -1181,9 +1364,15 @@
|
|
|
1181
1364
|
"description": "Grants permission to suspend auto-scaling activity on a fleet",
|
|
1182
1365
|
"accessLevel": "Write",
|
|
1183
1366
|
"resourceTypes": [
|
|
1367
|
+
{
|
|
1368
|
+
"name": "containerFleet",
|
|
1369
|
+
"required": false,
|
|
1370
|
+
"conditionKeys": [],
|
|
1371
|
+
"dependentActions": []
|
|
1372
|
+
},
|
|
1184
1373
|
{
|
|
1185
1374
|
"name": "fleet",
|
|
1186
|
-
"required":
|
|
1375
|
+
"required": false,
|
|
1187
1376
|
"conditionKeys": [],
|
|
1188
1377
|
"dependentActions": []
|
|
1189
1378
|
}
|
|
@@ -1239,6 +1428,12 @@
|
|
|
1239
1428
|
"conditionKeys": [],
|
|
1240
1429
|
"dependentActions": []
|
|
1241
1430
|
},
|
|
1431
|
+
{
|
|
1432
|
+
"name": "containerFleet",
|
|
1433
|
+
"required": false,
|
|
1434
|
+
"conditionKeys": [],
|
|
1435
|
+
"dependentActions": []
|
|
1436
|
+
},
|
|
1242
1437
|
{
|
|
1243
1438
|
"name": "containerGroupDefinition",
|
|
1244
1439
|
"required": false,
|
|
@@ -1311,6 +1506,12 @@
|
|
|
1311
1506
|
"conditionKeys": [],
|
|
1312
1507
|
"dependentActions": []
|
|
1313
1508
|
},
|
|
1509
|
+
{
|
|
1510
|
+
"name": "containerFleet",
|
|
1511
|
+
"required": false,
|
|
1512
|
+
"conditionKeys": [],
|
|
1513
|
+
"dependentActions": []
|
|
1514
|
+
},
|
|
1314
1515
|
{
|
|
1315
1516
|
"name": "containerGroupDefinition",
|
|
1316
1517
|
"required": false,
|
|
@@ -1395,6 +1596,41 @@
|
|
|
1395
1596
|
"conditionKeys": [],
|
|
1396
1597
|
"dependentActions": []
|
|
1397
1598
|
},
|
|
1599
|
+
"updatecontainerfleet": {
|
|
1600
|
+
"name": "UpdateContainerFleet",
|
|
1601
|
+
"description": "Grants permission to update an existing container fleet",
|
|
1602
|
+
"accessLevel": "Write",
|
|
1603
|
+
"resourceTypes": [
|
|
1604
|
+
{
|
|
1605
|
+
"name": "containerFleet",
|
|
1606
|
+
"required": true,
|
|
1607
|
+
"conditionKeys": [],
|
|
1608
|
+
"dependentActions": []
|
|
1609
|
+
}
|
|
1610
|
+
],
|
|
1611
|
+
"conditionKeys": [],
|
|
1612
|
+
"dependentActions": []
|
|
1613
|
+
},
|
|
1614
|
+
"updatecontainergroupdefinition": {
|
|
1615
|
+
"name": "UpdateContainerGroupDefinition",
|
|
1616
|
+
"description": "Grants permission to update the properties of an existing container group definition",
|
|
1617
|
+
"accessLevel": "Write",
|
|
1618
|
+
"resourceTypes": [
|
|
1619
|
+
{
|
|
1620
|
+
"name": "containerGroupDefinition",
|
|
1621
|
+
"required": true,
|
|
1622
|
+
"conditionKeys": [],
|
|
1623
|
+
"dependentActions": []
|
|
1624
|
+
}
|
|
1625
|
+
],
|
|
1626
|
+
"conditionKeys": [],
|
|
1627
|
+
"dependentActions": [
|
|
1628
|
+
"ecr:BatchGetImage",
|
|
1629
|
+
"ecr:DescribeImages",
|
|
1630
|
+
"ecr:GetAuthorizationToken",
|
|
1631
|
+
"ecr:GetDownloadUrlForLayer"
|
|
1632
|
+
]
|
|
1633
|
+
},
|
|
1398
1634
|
"updatefleetattributes": {
|
|
1399
1635
|
"name": "UpdateFleetAttributes",
|
|
1400
1636
|
"description": "Grants permission to update the general properties of an existing fleet",
|
|
@@ -1412,12 +1648,18 @@
|
|
|
1412
1648
|
},
|
|
1413
1649
|
"updatefleetcapacity": {
|
|
1414
1650
|
"name": "UpdateFleetCapacity",
|
|
1415
|
-
"description": "Grants permission to adjust a fleet's capacity settings",
|
|
1651
|
+
"description": "Grants permission to adjust a managed fleet's capacity settings",
|
|
1416
1652
|
"accessLevel": "Write",
|
|
1417
1653
|
"resourceTypes": [
|
|
1654
|
+
{
|
|
1655
|
+
"name": "containerFleet",
|
|
1656
|
+
"required": false,
|
|
1657
|
+
"conditionKeys": [],
|
|
1658
|
+
"dependentActions": []
|
|
1659
|
+
},
|
|
1418
1660
|
{
|
|
1419
1661
|
"name": "fleet",
|
|
1420
|
-
"required":
|
|
1662
|
+
"required": false,
|
|
1421
1663
|
"conditionKeys": [],
|
|
1422
1664
|
"dependentActions": []
|
|
1423
1665
|
}
|
package/data/actions/iam.json
CHANGED
|
@@ -763,6 +763,22 @@
|
|
|
763
763
|
],
|
|
764
764
|
"dependentActions": []
|
|
765
765
|
},
|
|
766
|
+
"disableorganizationsrootcredentialsmanagement": {
|
|
767
|
+
"name": "DisableOrganizationsRootCredentialsManagement",
|
|
768
|
+
"description": "Grants permission to disable the management of member account root user credentials for an organization managed under the current account",
|
|
769
|
+
"accessLevel": "Write",
|
|
770
|
+
"resourceTypes": [],
|
|
771
|
+
"conditionKeys": [],
|
|
772
|
+
"dependentActions": []
|
|
773
|
+
},
|
|
774
|
+
"disableorganizationsrootsessions": {
|
|
775
|
+
"name": "DisableOrganizationsRootSessions",
|
|
776
|
+
"description": "Grants permission to disable privileged root actions in member accounts for an organization managed under the current account",
|
|
777
|
+
"accessLevel": "Write",
|
|
778
|
+
"resourceTypes": [],
|
|
779
|
+
"conditionKeys": [],
|
|
780
|
+
"dependentActions": []
|
|
781
|
+
},
|
|
766
782
|
"enablemfadevice": {
|
|
767
783
|
"name": "EnableMFADevice",
|
|
768
784
|
"description": "Grants permission to enable an MFA device and associate it with the specified IAM user",
|
|
@@ -783,6 +799,22 @@
|
|
|
783
799
|
],
|
|
784
800
|
"dependentActions": []
|
|
785
801
|
},
|
|
802
|
+
"enableorganizationsrootcredentialsmanagement": {
|
|
803
|
+
"name": "EnableOrganizationsRootCredentialsManagement",
|
|
804
|
+
"description": "Grants permission to enable the management of member account root user credentials for an organization managed under the current account",
|
|
805
|
+
"accessLevel": "Write",
|
|
806
|
+
"resourceTypes": [],
|
|
807
|
+
"conditionKeys": [],
|
|
808
|
+
"dependentActions": []
|
|
809
|
+
},
|
|
810
|
+
"enableorganizationsrootsessions": {
|
|
811
|
+
"name": "EnableOrganizationsRootSessions",
|
|
812
|
+
"description": "Grants permission to enable privileged root actions in member accounts for an organization managed under the current account",
|
|
813
|
+
"accessLevel": "Write",
|
|
814
|
+
"resourceTypes": [],
|
|
815
|
+
"conditionKeys": [],
|
|
816
|
+
"dependentActions": []
|
|
817
|
+
},
|
|
786
818
|
"generatecredentialreport": {
|
|
787
819
|
"name": "GenerateCredentialReport",
|
|
788
820
|
"description": "Grants permission to generate a credential report for the AWS account",
|
|
@@ -1438,6 +1470,14 @@
|
|
|
1438
1470
|
"conditionKeys": [],
|
|
1439
1471
|
"dependentActions": []
|
|
1440
1472
|
},
|
|
1473
|
+
"listorganizationsfeatures": {
|
|
1474
|
+
"name": "ListOrganizationsFeatures",
|
|
1475
|
+
"description": "Grants permission to list the centralized root access features enabled for your organization",
|
|
1476
|
+
"accessLevel": "List",
|
|
1477
|
+
"resourceTypes": [],
|
|
1478
|
+
"conditionKeys": [],
|
|
1479
|
+
"dependentActions": []
|
|
1480
|
+
},
|
|
1441
1481
|
"listpolicies": {
|
|
1442
1482
|
"name": "ListPolicies",
|
|
1443
1483
|
"description": "Grants permission to list all managed policies",
|
package/data/actions/iot.json
CHANGED
|
@@ -4204,6 +4204,21 @@
|
|
|
4204
4204
|
"conditionKeys": [],
|
|
4205
4205
|
"dependentActions": []
|
|
4206
4206
|
},
|
|
4207
|
+
"updatethingtype": {
|
|
4208
|
+
"name": "UpdateThingType",
|
|
4209
|
+
"description": "Grants permission to update information associated with the specified thing type",
|
|
4210
|
+
"accessLevel": "Write",
|
|
4211
|
+
"resourceTypes": [
|
|
4212
|
+
{
|
|
4213
|
+
"name": "thingtype",
|
|
4214
|
+
"required": true,
|
|
4215
|
+
"conditionKeys": [],
|
|
4216
|
+
"dependentActions": []
|
|
4217
|
+
}
|
|
4218
|
+
],
|
|
4219
|
+
"conditionKeys": [],
|
|
4220
|
+
"dependentActions": []
|
|
4221
|
+
},
|
|
4207
4222
|
"updatetopicruledestination": {
|
|
4208
4223
|
"name": "UpdateTopicRuleDestination",
|
|
4209
4224
|
"description": "Grants permission to update a TopicRuleDestination",
|