@cloud-copilot/iam-data 0.9.202411251 → 0.9.202412071
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/aiops.json +384 -0
- package/data/actions/aoss.json +9 -2
- package/data/actions/bedrock.json +576 -2
- package/data/actions/chime.json +95 -1
- package/data/actions/cleanrooms.json +1 -0
- package/data/actions/config.json +146 -14
- package/data/actions/connect-campaigns.json +15 -0
- package/data/actions/connect.json +40 -1
- package/data/actions/datazone.json +0 -5
- package/data/actions/dsql.json +191 -0
- package/data/actions/eks.json +8 -2
- package/data/actions/es.json +99 -3
- package/data/actions/glue.json +75 -0
- package/data/actions/imagebuilder.json +15 -0
- package/data/actions/invoicing.json +136 -0
- package/data/actions/logs.json +32 -0
- package/data/actions/memorydb.json +162 -0
- package/data/actions/networkflowmonitor.json +393 -0
- package/data/actions/networkmanager.json +59 -0
- package/data/actions/observabilityadmin.json +66 -0
- package/data/actions/opensearch.json +60 -0
- package/data/actions/partnercentral.json +256 -0
- package/data/actions/qapps.json +0 -4
- package/data/actions/qbusiness.json +377 -0
- package/data/actions/quicksight.json +79 -0
- package/data/actions/redshift-data.json +19 -2
- package/data/actions/redshift-serverless.json +23 -0
- package/data/actions/redshift.json +16 -0
- package/data/actions/rekognition.json +58 -11
- package/data/actions/s3.json +71 -0
- package/data/actions/s3tables.json +461 -0
- package/data/actions/sagemaker-data-science-assistant.json +11 -0
- package/data/actions/sagemaker.json +371 -9
- package/data/actions/security-ir.json +344 -0
- package/data/actions/transfer.json +127 -0
- package/data/actions/vpc-lattice.json +423 -44
- package/data/actions/vpce.json +11 -0
- package/data/conditionKeys/aiops.json +17 -0
- package/data/conditionKeys/bedrock.json +5 -0
- package/data/conditionKeys/config.json +5 -0
- package/data/conditionKeys/dsql.json +22 -0
- package/data/conditionKeys/eks.json +15 -0
- package/data/conditionKeys/invoicing.json +17 -1
- package/data/conditionKeys/networkflowmonitor.json +17 -0
- package/data/conditionKeys/networkmanager.json +10 -0
- package/data/conditionKeys/observabilityadmin.json +1 -0
- package/data/conditionKeys/redshift-data.json +5 -0
- package/data/conditionKeys/redshift-serverless.json +5 -0
- package/data/conditionKeys/s3express.json +5 -0
- package/data/conditionKeys/s3tables.json +12 -0
- package/data/conditionKeys/sagemaker-data-science-assistant.json +1 -0
- package/data/conditionKeys/security-ir.json +17 -0
- package/data/conditionKeys/vpc-lattice.json +10 -0
- package/data/conditionKeys/vpce.json +1 -0
- package/data/resourceTypes/aiops.json +9 -0
- package/data/resourceTypes/bedrock.json +27 -0
- package/data/resourceTypes/config.json +7 -0
- package/data/resourceTypes/dsql.json +9 -0
- package/data/resourceTypes/es.json +7 -0
- package/data/resourceTypes/invoicing.json +9 -1
- package/data/resourceTypes/memorydb.json +12 -0
- package/data/resourceTypes/networkflowmonitor.json +16 -0
- package/data/resourceTypes/observabilityadmin.json +1 -0
- package/data/resourceTypes/opensearch.json +4 -0
- package/data/resourceTypes/partnercentral.json +12 -0
- package/data/resourceTypes/personalize.json +3 -3
- package/data/resourceTypes/qbusiness.json +14 -0
- package/data/resourceTypes/redshift-data.json +4 -0
- package/data/resourceTypes/redshift-serverless.json +4 -0
- package/data/resourceTypes/rekognition.json +8 -2
- package/data/resourceTypes/s3tables.json +14 -0
- package/data/resourceTypes/sagemaker-data-science-assistant.json +1 -0
- package/data/resourceTypes/sagemaker.json +32 -0
- package/data/resourceTypes/security-ir.json +16 -0
- package/data/resourceTypes/transfer.json +7 -0
- package/data/resourceTypes/vpc-lattice.json +76 -35
- package/data/resourceTypes/vpce.json +1 -0
- package/data/serviceNames.json +8 -0
- package/data/services.json +8 -0
- package/package.json +2 -2
|
@@ -0,0 +1,191 @@
|
|
|
1
|
+
{
|
|
2
|
+
"createcluster": {
|
|
3
|
+
"name": "CreateCluster",
|
|
4
|
+
"description": "Grants permission to create new clusters",
|
|
5
|
+
"accessLevel": "Write",
|
|
6
|
+
"resourceTypes": [
|
|
7
|
+
{
|
|
8
|
+
"name": "Cluster",
|
|
9
|
+
"required": true,
|
|
10
|
+
"conditionKeys": [],
|
|
11
|
+
"dependentActions": [
|
|
12
|
+
"iam:CreateServiceLinkedRole"
|
|
13
|
+
]
|
|
14
|
+
}
|
|
15
|
+
],
|
|
16
|
+
"conditionKeys": [
|
|
17
|
+
"aws:RequestTag/${TagKey}",
|
|
18
|
+
"aws:TagKeys"
|
|
19
|
+
],
|
|
20
|
+
"dependentActions": []
|
|
21
|
+
},
|
|
22
|
+
"createmultiregionclusters": {
|
|
23
|
+
"name": "CreateMultiRegionClusters",
|
|
24
|
+
"description": "Grants permission to create multi-Region clusters. Creating multi-Region clusters also requires CreateCluster permission in each specified Region",
|
|
25
|
+
"accessLevel": "Write",
|
|
26
|
+
"resourceTypes": [
|
|
27
|
+
{
|
|
28
|
+
"name": "Cluster",
|
|
29
|
+
"required": true,
|
|
30
|
+
"conditionKeys": [],
|
|
31
|
+
"dependentActions": [
|
|
32
|
+
"dsql:CreateCluster"
|
|
33
|
+
]
|
|
34
|
+
}
|
|
35
|
+
],
|
|
36
|
+
"conditionKeys": [
|
|
37
|
+
"dsql:WitnessRegion"
|
|
38
|
+
],
|
|
39
|
+
"dependentActions": []
|
|
40
|
+
},
|
|
41
|
+
"dbconnect": {
|
|
42
|
+
"name": "DbConnect",
|
|
43
|
+
"description": "Grants permission to connect to the database",
|
|
44
|
+
"accessLevel": "Write",
|
|
45
|
+
"resourceTypes": [
|
|
46
|
+
{
|
|
47
|
+
"name": "Cluster",
|
|
48
|
+
"required": true,
|
|
49
|
+
"conditionKeys": [],
|
|
50
|
+
"dependentActions": []
|
|
51
|
+
}
|
|
52
|
+
],
|
|
53
|
+
"conditionKeys": [],
|
|
54
|
+
"dependentActions": []
|
|
55
|
+
},
|
|
56
|
+
"dbconnectadmin": {
|
|
57
|
+
"name": "DbConnectAdmin",
|
|
58
|
+
"description": "Grants permission to connect to the database with admin role. Connecting with any other role requires DbConnect permission",
|
|
59
|
+
"accessLevel": "Write",
|
|
60
|
+
"resourceTypes": [
|
|
61
|
+
{
|
|
62
|
+
"name": "Cluster",
|
|
63
|
+
"required": true,
|
|
64
|
+
"conditionKeys": [],
|
|
65
|
+
"dependentActions": []
|
|
66
|
+
}
|
|
67
|
+
],
|
|
68
|
+
"conditionKeys": [],
|
|
69
|
+
"dependentActions": []
|
|
70
|
+
},
|
|
71
|
+
"deletecluster": {
|
|
72
|
+
"name": "DeleteCluster",
|
|
73
|
+
"description": "Grants permission to delete a cluster and all of its data",
|
|
74
|
+
"accessLevel": "Write",
|
|
75
|
+
"resourceTypes": [
|
|
76
|
+
{
|
|
77
|
+
"name": "Cluster",
|
|
78
|
+
"required": true,
|
|
79
|
+
"conditionKeys": [],
|
|
80
|
+
"dependentActions": []
|
|
81
|
+
}
|
|
82
|
+
],
|
|
83
|
+
"conditionKeys": [],
|
|
84
|
+
"dependentActions": []
|
|
85
|
+
},
|
|
86
|
+
"deletemultiregionclusters": {
|
|
87
|
+
"name": "DeleteMultiRegionClusters",
|
|
88
|
+
"description": "Grants permission to delete multi-Region clusters. Deleting multi-Region clusters also requires DeleteCluster permission in each specified Region",
|
|
89
|
+
"accessLevel": "Write",
|
|
90
|
+
"resourceTypes": [
|
|
91
|
+
{
|
|
92
|
+
"name": "Cluster",
|
|
93
|
+
"required": true,
|
|
94
|
+
"conditionKeys": [],
|
|
95
|
+
"dependentActions": []
|
|
96
|
+
}
|
|
97
|
+
],
|
|
98
|
+
"conditionKeys": [],
|
|
99
|
+
"dependentActions": [
|
|
100
|
+
"dsql:DeleteCluster"
|
|
101
|
+
]
|
|
102
|
+
},
|
|
103
|
+
"getcluster": {
|
|
104
|
+
"name": "GetCluster",
|
|
105
|
+
"description": "Grants permission to get information about a cluster",
|
|
106
|
+
"accessLevel": "Read",
|
|
107
|
+
"resourceTypes": [
|
|
108
|
+
{
|
|
109
|
+
"name": "Cluster",
|
|
110
|
+
"required": true,
|
|
111
|
+
"conditionKeys": [],
|
|
112
|
+
"dependentActions": []
|
|
113
|
+
}
|
|
114
|
+
],
|
|
115
|
+
"conditionKeys": [],
|
|
116
|
+
"dependentActions": []
|
|
117
|
+
},
|
|
118
|
+
"listclusters": {
|
|
119
|
+
"name": "ListClusters",
|
|
120
|
+
"description": "Grants permission to retrieve a list of clusters",
|
|
121
|
+
"accessLevel": "List",
|
|
122
|
+
"resourceTypes": [],
|
|
123
|
+
"conditionKeys": [],
|
|
124
|
+
"dependentActions": []
|
|
125
|
+
},
|
|
126
|
+
"listtagsforresource": {
|
|
127
|
+
"name": "ListTagsForResource",
|
|
128
|
+
"description": "Grants permission to list all tags on an Aurora DSQL resource",
|
|
129
|
+
"accessLevel": "Read",
|
|
130
|
+
"resourceTypes": [
|
|
131
|
+
{
|
|
132
|
+
"name": "Cluster",
|
|
133
|
+
"required": true,
|
|
134
|
+
"conditionKeys": [],
|
|
135
|
+
"dependentActions": []
|
|
136
|
+
}
|
|
137
|
+
],
|
|
138
|
+
"conditionKeys": [],
|
|
139
|
+
"dependentActions": []
|
|
140
|
+
},
|
|
141
|
+
"tagresource": {
|
|
142
|
+
"name": "TagResource",
|
|
143
|
+
"description": "Grants permission to add tags to Aurora DSQL resources",
|
|
144
|
+
"accessLevel": "Tagging",
|
|
145
|
+
"resourceTypes": [
|
|
146
|
+
{
|
|
147
|
+
"name": "Cluster",
|
|
148
|
+
"required": true,
|
|
149
|
+
"conditionKeys": [],
|
|
150
|
+
"dependentActions": []
|
|
151
|
+
}
|
|
152
|
+
],
|
|
153
|
+
"conditionKeys": [
|
|
154
|
+
"aws:RequestTag/${TagKey}",
|
|
155
|
+
"aws:TagKeys"
|
|
156
|
+
],
|
|
157
|
+
"dependentActions": []
|
|
158
|
+
},
|
|
159
|
+
"untagresource": {
|
|
160
|
+
"name": "UntagResource",
|
|
161
|
+
"description": "Grants permission to remove tags from Aurora DSQL resources",
|
|
162
|
+
"accessLevel": "Tagging",
|
|
163
|
+
"resourceTypes": [
|
|
164
|
+
{
|
|
165
|
+
"name": "Cluster",
|
|
166
|
+
"required": true,
|
|
167
|
+
"conditionKeys": [],
|
|
168
|
+
"dependentActions": []
|
|
169
|
+
}
|
|
170
|
+
],
|
|
171
|
+
"conditionKeys": [
|
|
172
|
+
"aws:TagKeys"
|
|
173
|
+
],
|
|
174
|
+
"dependentActions": []
|
|
175
|
+
},
|
|
176
|
+
"updatecluster": {
|
|
177
|
+
"name": "UpdateCluster",
|
|
178
|
+
"description": "Grants permission to modify cluster attributes",
|
|
179
|
+
"accessLevel": "Write",
|
|
180
|
+
"resourceTypes": [
|
|
181
|
+
{
|
|
182
|
+
"name": "Cluster",
|
|
183
|
+
"required": true,
|
|
184
|
+
"conditionKeys": [],
|
|
185
|
+
"dependentActions": []
|
|
186
|
+
}
|
|
187
|
+
],
|
|
188
|
+
"conditionKeys": [],
|
|
189
|
+
"dependentActions": []
|
|
190
|
+
}
|
|
191
|
+
}
|
package/data/actions/eks.json
CHANGED
|
@@ -126,7 +126,10 @@
|
|
|
126
126
|
"eks:bootstrapClusterCreatorAdminPermissions",
|
|
127
127
|
"eks:bootstrapSelfManagedAddons",
|
|
128
128
|
"eks:authenticationMode",
|
|
129
|
-
"eks:supportType"
|
|
129
|
+
"eks:supportType",
|
|
130
|
+
"eks:computeConfigEnabled",
|
|
131
|
+
"eks:elasticLoadBalancingEnabled",
|
|
132
|
+
"eks:blockStorageEnabled"
|
|
130
133
|
],
|
|
131
134
|
"dependentActions": []
|
|
132
135
|
},
|
|
@@ -929,7 +932,10 @@
|
|
|
929
932
|
],
|
|
930
933
|
"conditionKeys": [
|
|
931
934
|
"eks:authenticationMode",
|
|
932
|
-
"eks:supportType"
|
|
935
|
+
"eks:supportType",
|
|
936
|
+
"eks:computeConfigEnabled",
|
|
937
|
+
"eks:elasticLoadBalancingEnabled",
|
|
938
|
+
"eks:blockStorageEnabled"
|
|
933
939
|
],
|
|
934
940
|
"dependentActions": []
|
|
935
941
|
},
|
package/data/actions/es.json
CHANGED
|
@@ -30,9 +30,27 @@
|
|
|
30
30
|
"conditionKeys": [],
|
|
31
31
|
"dependentActions": []
|
|
32
32
|
},
|
|
33
|
+
"adddirectquerydatasource": {
|
|
34
|
+
"name": "AddDirectQueryDataSource",
|
|
35
|
+
"description": "Grants permission to add the data source for the provided OpenSearch arns",
|
|
36
|
+
"accessLevel": "Write",
|
|
37
|
+
"resourceTypes": [
|
|
38
|
+
{
|
|
39
|
+
"name": "datasource",
|
|
40
|
+
"required": true,
|
|
41
|
+
"conditionKeys": [],
|
|
42
|
+
"dependentActions": []
|
|
43
|
+
}
|
|
44
|
+
],
|
|
45
|
+
"conditionKeys": [
|
|
46
|
+
"aws:RequestTag/${TagKey}",
|
|
47
|
+
"aws:TagKeys"
|
|
48
|
+
],
|
|
49
|
+
"dependentActions": []
|
|
50
|
+
},
|
|
33
51
|
"addtags": {
|
|
34
52
|
"name": "AddTags",
|
|
35
|
-
"description": "Grants permission to attach resource tags to an OpenSearch Service domain",
|
|
53
|
+
"description": "Grants permission to attach resource tags to an OpenSearch Service domain, data source, or application",
|
|
36
54
|
"accessLevel": "Tagging",
|
|
37
55
|
"resourceTypes": [
|
|
38
56
|
{
|
|
@@ -41,6 +59,12 @@
|
|
|
41
59
|
"conditionKeys": [],
|
|
42
60
|
"dependentActions": []
|
|
43
61
|
},
|
|
62
|
+
{
|
|
63
|
+
"name": "datasource",
|
|
64
|
+
"required": true,
|
|
65
|
+
"conditionKeys": [],
|
|
66
|
+
"dependentActions": []
|
|
67
|
+
},
|
|
44
68
|
{
|
|
45
69
|
"name": "domain",
|
|
46
70
|
"required": true,
|
|
@@ -276,6 +300,21 @@
|
|
|
276
300
|
"conditionKeys": [],
|
|
277
301
|
"dependentActions": []
|
|
278
302
|
},
|
|
303
|
+
"deletedirectquerydatasource": {
|
|
304
|
+
"name": "DeleteDirectQueryDataSource",
|
|
305
|
+
"description": "Grants permission to delete the data source for the provided OpenSearch arns",
|
|
306
|
+
"accessLevel": "Write",
|
|
307
|
+
"resourceTypes": [
|
|
308
|
+
{
|
|
309
|
+
"name": "datasource",
|
|
310
|
+
"required": true,
|
|
311
|
+
"conditionKeys": [],
|
|
312
|
+
"dependentActions": []
|
|
313
|
+
}
|
|
314
|
+
],
|
|
315
|
+
"conditionKeys": [],
|
|
316
|
+
"dependentActions": []
|
|
317
|
+
},
|
|
279
318
|
"deletedomain": {
|
|
280
319
|
"name": "DeleteDomain",
|
|
281
320
|
"description": "Grants permission to delete an Amazon OpenSearch Service domain and all of its data",
|
|
@@ -818,6 +857,21 @@
|
|
|
818
857
|
"conditionKeys": [],
|
|
819
858
|
"dependentActions": []
|
|
820
859
|
},
|
|
860
|
+
"getdirectquerydatasource": {
|
|
861
|
+
"name": "GetDirectQueryDataSource",
|
|
862
|
+
"description": "Grants permission to get the data source for the provided OpenSearch arns",
|
|
863
|
+
"accessLevel": "Read",
|
|
864
|
+
"resourceTypes": [
|
|
865
|
+
{
|
|
866
|
+
"name": "datasource",
|
|
867
|
+
"required": true,
|
|
868
|
+
"conditionKeys": [],
|
|
869
|
+
"dependentActions": []
|
|
870
|
+
}
|
|
871
|
+
],
|
|
872
|
+
"conditionKeys": [],
|
|
873
|
+
"dependentActions": []
|
|
874
|
+
},
|
|
821
875
|
"getdomainmaintenancestatus": {
|
|
822
876
|
"name": "GetDomainMaintenanceStatus",
|
|
823
877
|
"description": "Grants permission to retrieve the status of maintenance action for the node",
|
|
@@ -901,6 +955,21 @@
|
|
|
901
955
|
"conditionKeys": [],
|
|
902
956
|
"dependentActions": []
|
|
903
957
|
},
|
|
958
|
+
"listdirectquerydatasources": {
|
|
959
|
+
"name": "ListDirectQueryDataSources",
|
|
960
|
+
"description": "Grants permission to retrieve a list of data source for the provided OpenSearch arns",
|
|
961
|
+
"accessLevel": "List",
|
|
962
|
+
"resourceTypes": [
|
|
963
|
+
{
|
|
964
|
+
"name": "datasource",
|
|
965
|
+
"required": true,
|
|
966
|
+
"conditionKeys": [],
|
|
967
|
+
"dependentActions": []
|
|
968
|
+
}
|
|
969
|
+
],
|
|
970
|
+
"conditionKeys": [],
|
|
971
|
+
"dependentActions": []
|
|
972
|
+
},
|
|
904
973
|
"listdomainmaintenances": {
|
|
905
974
|
"name": "ListDomainMaintenances",
|
|
906
975
|
"description": "Grants permission to retrieve a list of maintenance actions for the OpenSearch Service domain",
|
|
@@ -996,7 +1065,7 @@
|
|
|
996
1065
|
},
|
|
997
1066
|
"listtags": {
|
|
998
1067
|
"name": "ListTags",
|
|
999
|
-
"description": "Grants permission to display all resource tags for an OpenSearch Service domain",
|
|
1068
|
+
"description": "Grants permission to display all resource tags for an OpenSearch Service domain, data source, or application",
|
|
1000
1069
|
"accessLevel": "Read",
|
|
1001
1070
|
"resourceTypes": [
|
|
1002
1071
|
{
|
|
@@ -1005,6 +1074,12 @@
|
|
|
1005
1074
|
"conditionKeys": [],
|
|
1006
1075
|
"dependentActions": []
|
|
1007
1076
|
},
|
|
1077
|
+
{
|
|
1078
|
+
"name": "datasource",
|
|
1079
|
+
"required": true,
|
|
1080
|
+
"conditionKeys": [],
|
|
1081
|
+
"dependentActions": []
|
|
1082
|
+
},
|
|
1008
1083
|
{
|
|
1009
1084
|
"name": "domain",
|
|
1010
1085
|
"required": true,
|
|
@@ -1081,7 +1156,7 @@
|
|
|
1081
1156
|
},
|
|
1082
1157
|
"removetags": {
|
|
1083
1158
|
"name": "RemoveTags",
|
|
1084
|
-
"description": "Grants permission to remove resource tags from an OpenSearch Service domain",
|
|
1159
|
+
"description": "Grants permission to remove resource tags from an OpenSearch Service domain, data source, or application",
|
|
1085
1160
|
"accessLevel": "Tagging",
|
|
1086
1161
|
"resourceTypes": [
|
|
1087
1162
|
{
|
|
@@ -1090,6 +1165,12 @@
|
|
|
1090
1165
|
"conditionKeys": [],
|
|
1091
1166
|
"dependentActions": []
|
|
1092
1167
|
},
|
|
1168
|
+
{
|
|
1169
|
+
"name": "datasource",
|
|
1170
|
+
"required": true,
|
|
1171
|
+
"conditionKeys": [],
|
|
1172
|
+
"dependentActions": []
|
|
1173
|
+
},
|
|
1093
1174
|
{
|
|
1094
1175
|
"name": "domain",
|
|
1095
1176
|
"required": true,
|
|
@@ -1185,6 +1266,21 @@
|
|
|
1185
1266
|
"conditionKeys": [],
|
|
1186
1267
|
"dependentActions": []
|
|
1187
1268
|
},
|
|
1269
|
+
"updatedirectquerydatasource": {
|
|
1270
|
+
"name": "UpdateDirectQueryDataSource",
|
|
1271
|
+
"description": "Grants permission to update the data source for the provided OpenSearch arns",
|
|
1272
|
+
"accessLevel": "Write",
|
|
1273
|
+
"resourceTypes": [
|
|
1274
|
+
{
|
|
1275
|
+
"name": "datasource",
|
|
1276
|
+
"required": true,
|
|
1277
|
+
"conditionKeys": [],
|
|
1278
|
+
"dependentActions": []
|
|
1279
|
+
}
|
|
1280
|
+
],
|
|
1281
|
+
"conditionKeys": [],
|
|
1282
|
+
"dependentActions": []
|
|
1283
|
+
},
|
|
1188
1284
|
"updatedomainconfig": {
|
|
1189
1285
|
"name": "UpdateDomainConfig",
|
|
1190
1286
|
"description": "Grants permission to modify the configuration of an OpenSearch Service domain, such as the instance type or number of instances",
|
package/data/actions/glue.json
CHANGED
|
@@ -2438,6 +2438,21 @@
|
|
|
2438
2438
|
"conditionKeys": [],
|
|
2439
2439
|
"dependentActions": []
|
|
2440
2440
|
},
|
|
2441
|
+
"getjobupgradeanalysis": {
|
|
2442
|
+
"name": "GetJobUpgradeAnalysis",
|
|
2443
|
+
"description": "Grants permission to retrieve an upgrade analysis for a job",
|
|
2444
|
+
"accessLevel": "Read",
|
|
2445
|
+
"resourceTypes": [
|
|
2446
|
+
{
|
|
2447
|
+
"name": "job",
|
|
2448
|
+
"required": true,
|
|
2449
|
+
"conditionKeys": [],
|
|
2450
|
+
"dependentActions": []
|
|
2451
|
+
}
|
|
2452
|
+
],
|
|
2453
|
+
"conditionKeys": [],
|
|
2454
|
+
"dependentActions": []
|
|
2455
|
+
},
|
|
2441
2456
|
"getjobs": {
|
|
2442
2457
|
"name": "GetJobs",
|
|
2443
2458
|
"description": "Grants permission to retrieve all current jobs",
|
|
@@ -3450,6 +3465,21 @@
|
|
|
3450
3465
|
"conditionKeys": [],
|
|
3451
3466
|
"dependentActions": []
|
|
3452
3467
|
},
|
|
3468
|
+
"listjobupgradeanalyses": {
|
|
3469
|
+
"name": "ListJobUpgradeAnalyses",
|
|
3470
|
+
"description": "Grants permission to list upgrade analyses for a job",
|
|
3471
|
+
"accessLevel": "List",
|
|
3472
|
+
"resourceTypes": [
|
|
3473
|
+
{
|
|
3474
|
+
"name": "job",
|
|
3475
|
+
"required": true,
|
|
3476
|
+
"conditionKeys": [],
|
|
3477
|
+
"dependentActions": []
|
|
3478
|
+
}
|
|
3479
|
+
],
|
|
3480
|
+
"conditionKeys": [],
|
|
3481
|
+
"dependentActions": []
|
|
3482
|
+
},
|
|
3453
3483
|
"listjobs": {
|
|
3454
3484
|
"name": "ListJobs",
|
|
3455
3485
|
"description": "Grants permission to retrieve all current jobs",
|
|
@@ -4118,6 +4148,21 @@
|
|
|
4118
4148
|
"conditionKeys": [],
|
|
4119
4149
|
"dependentActions": []
|
|
4120
4150
|
},
|
|
4151
|
+
"startjobupgradeanalysis": {
|
|
4152
|
+
"name": "StartJobUpgradeAnalysis",
|
|
4153
|
+
"description": "Grants permission to start running upgrade analysis for a job",
|
|
4154
|
+
"accessLevel": "Write",
|
|
4155
|
+
"resourceTypes": [
|
|
4156
|
+
{
|
|
4157
|
+
"name": "job",
|
|
4158
|
+
"required": true,
|
|
4159
|
+
"conditionKeys": [],
|
|
4160
|
+
"dependentActions": []
|
|
4161
|
+
}
|
|
4162
|
+
],
|
|
4163
|
+
"conditionKeys": [],
|
|
4164
|
+
"dependentActions": []
|
|
4165
|
+
},
|
|
4121
4166
|
"startmlevaluationtaskrun": {
|
|
4122
4167
|
"name": "StartMLEvaluationTaskRun",
|
|
4123
4168
|
"description": "Grants permission to start an Evaluation ML Task Run",
|
|
@@ -4251,6 +4296,21 @@
|
|
|
4251
4296
|
"conditionKeys": [],
|
|
4252
4297
|
"dependentActions": []
|
|
4253
4298
|
},
|
|
4299
|
+
"stopjobupgradeanalysis": {
|
|
4300
|
+
"name": "StopJobUpgradeAnalysis",
|
|
4301
|
+
"description": "Grants permission to stop an on-going upgrade analysis for a job",
|
|
4302
|
+
"accessLevel": "Write",
|
|
4303
|
+
"resourceTypes": [
|
|
4304
|
+
{
|
|
4305
|
+
"name": "job",
|
|
4306
|
+
"required": true,
|
|
4307
|
+
"conditionKeys": [],
|
|
4308
|
+
"dependentActions": []
|
|
4309
|
+
}
|
|
4310
|
+
],
|
|
4311
|
+
"conditionKeys": [],
|
|
4312
|
+
"dependentActions": []
|
|
4313
|
+
},
|
|
4254
4314
|
"stopsession": {
|
|
4255
4315
|
"name": "StopSession",
|
|
4256
4316
|
"description": "Grants permission to stop an interactive session",
|
|
@@ -5074,6 +5134,21 @@
|
|
|
5074
5134
|
"conditionKeys": [],
|
|
5075
5135
|
"dependentActions": []
|
|
5076
5136
|
},
|
|
5137
|
+
"upgradejob": {
|
|
5138
|
+
"name": "UpgradeJob",
|
|
5139
|
+
"description": "Grants permission to upgrade a job to the latest version",
|
|
5140
|
+
"accessLevel": "Write",
|
|
5141
|
+
"resourceTypes": [
|
|
5142
|
+
{
|
|
5143
|
+
"name": "job",
|
|
5144
|
+
"required": true,
|
|
5145
|
+
"conditionKeys": [],
|
|
5146
|
+
"dependentActions": []
|
|
5147
|
+
}
|
|
5148
|
+
],
|
|
5149
|
+
"conditionKeys": [],
|
|
5150
|
+
"dependentActions": []
|
|
5151
|
+
},
|
|
5077
5152
|
"usegluestudio": {
|
|
5078
5153
|
"name": "UseGlueStudio",
|
|
5079
5154
|
"description": "Grants permission to use Glue Studio and access its internal APIs",
|
|
@@ -588,6 +588,21 @@
|
|
|
588
588
|
"conditionKeys": [],
|
|
589
589
|
"dependentActions": []
|
|
590
590
|
},
|
|
591
|
+
"getmarketplaceresource": {
|
|
592
|
+
"name": "GetMarketplaceResource",
|
|
593
|
+
"description": "Grants permission to retrieve Marketplace provided resource",
|
|
594
|
+
"accessLevel": "Read",
|
|
595
|
+
"resourceTypes": [
|
|
596
|
+
{
|
|
597
|
+
"name": "component",
|
|
598
|
+
"required": true,
|
|
599
|
+
"conditionKeys": [],
|
|
600
|
+
"dependentActions": []
|
|
601
|
+
}
|
|
602
|
+
],
|
|
603
|
+
"conditionKeys": [],
|
|
604
|
+
"dependentActions": []
|
|
605
|
+
},
|
|
591
606
|
"getworkflow": {
|
|
592
607
|
"name": "GetWorkflow",
|
|
593
608
|
"description": "Grants permission to view details about a workflow",
|
|
@@ -1,4 +1,43 @@
|
|
|
1
1
|
{
|
|
2
|
+
"batchgetinvoiceprofile": {
|
|
3
|
+
"name": "BatchGetInvoiceProfile",
|
|
4
|
+
"isPermissionOnly": true,
|
|
5
|
+
"description": "Grants permission to get invoice profile details for an account in your organization",
|
|
6
|
+
"accessLevel": "Read",
|
|
7
|
+
"resourceTypes": [],
|
|
8
|
+
"conditionKeys": [],
|
|
9
|
+
"dependentActions": []
|
|
10
|
+
},
|
|
11
|
+
"createinvoiceunit": {
|
|
12
|
+
"name": "CreateInvoiceUnit",
|
|
13
|
+
"isPermissionOnly": true,
|
|
14
|
+
"description": "Grants permission to create an invoice unit for your organization",
|
|
15
|
+
"accessLevel": "Write",
|
|
16
|
+
"resourceTypes": [],
|
|
17
|
+
"conditionKeys": [
|
|
18
|
+
"aws:RequestTag/${TagKey}",
|
|
19
|
+
"aws:TagKeys"
|
|
20
|
+
],
|
|
21
|
+
"dependentActions": []
|
|
22
|
+
},
|
|
23
|
+
"deleteinvoiceunit": {
|
|
24
|
+
"name": "DeleteInvoiceUnit",
|
|
25
|
+
"isPermissionOnly": true,
|
|
26
|
+
"description": "Grants permission to update an invoice unit for your organization",
|
|
27
|
+
"accessLevel": "Write",
|
|
28
|
+
"resourceTypes": [
|
|
29
|
+
{
|
|
30
|
+
"name": "invoice-unit",
|
|
31
|
+
"required": true,
|
|
32
|
+
"conditionKeys": [],
|
|
33
|
+
"dependentActions": []
|
|
34
|
+
}
|
|
35
|
+
],
|
|
36
|
+
"conditionKeys": [
|
|
37
|
+
"aws:ResourceTag/${TagKey}"
|
|
38
|
+
],
|
|
39
|
+
"dependentActions": []
|
|
40
|
+
},
|
|
2
41
|
"getinvoiceemaildeliverypreferences": {
|
|
3
42
|
"name": "GetInvoiceEmailDeliveryPreferences",
|
|
4
43
|
"isPermissionOnly": true,
|
|
@@ -17,6 +56,22 @@
|
|
|
17
56
|
"conditionKeys": [],
|
|
18
57
|
"dependentActions": []
|
|
19
58
|
},
|
|
59
|
+
"getinvoiceunit": {
|
|
60
|
+
"name": "GetInvoiceUnit",
|
|
61
|
+
"isPermissionOnly": true,
|
|
62
|
+
"description": "Grants permission to get invoice units for your organization",
|
|
63
|
+
"accessLevel": "Read",
|
|
64
|
+
"resourceTypes": [
|
|
65
|
+
{
|
|
66
|
+
"name": "invoice-unit",
|
|
67
|
+
"required": true,
|
|
68
|
+
"conditionKeys": [],
|
|
69
|
+
"dependentActions": []
|
|
70
|
+
}
|
|
71
|
+
],
|
|
72
|
+
"conditionKeys": [],
|
|
73
|
+
"dependentActions": []
|
|
74
|
+
},
|
|
20
75
|
"listinvoicesummaries": {
|
|
21
76
|
"name": "ListInvoiceSummaries",
|
|
22
77
|
"isPermissionOnly": true,
|
|
@@ -26,6 +81,32 @@
|
|
|
26
81
|
"conditionKeys": [],
|
|
27
82
|
"dependentActions": []
|
|
28
83
|
},
|
|
84
|
+
"listinvoiceunits": {
|
|
85
|
+
"name": "ListInvoiceUnits",
|
|
86
|
+
"isPermissionOnly": true,
|
|
87
|
+
"description": "Grants permission to list invoice units for your organization",
|
|
88
|
+
"accessLevel": "List",
|
|
89
|
+
"resourceTypes": [],
|
|
90
|
+
"conditionKeys": [],
|
|
91
|
+
"dependentActions": []
|
|
92
|
+
},
|
|
93
|
+
"listtagsforresource": {
|
|
94
|
+
"name": "ListTagsForResource",
|
|
95
|
+
"description": "Grants permission to list tags for a resource",
|
|
96
|
+
"accessLevel": "Read",
|
|
97
|
+
"resourceTypes": [
|
|
98
|
+
{
|
|
99
|
+
"name": "invoice-unit",
|
|
100
|
+
"required": true,
|
|
101
|
+
"conditionKeys": [],
|
|
102
|
+
"dependentActions": []
|
|
103
|
+
}
|
|
104
|
+
],
|
|
105
|
+
"conditionKeys": [
|
|
106
|
+
"aws:ResourceTag/${TagKey}"
|
|
107
|
+
],
|
|
108
|
+
"dependentActions": []
|
|
109
|
+
},
|
|
29
110
|
"putinvoiceemaildeliverypreferences": {
|
|
30
111
|
"name": "PutInvoiceEmailDeliveryPreferences",
|
|
31
112
|
"isPermissionOnly": true,
|
|
@@ -34,5 +115,60 @@
|
|
|
34
115
|
"resourceTypes": [],
|
|
35
116
|
"conditionKeys": [],
|
|
36
117
|
"dependentActions": []
|
|
118
|
+
},
|
|
119
|
+
"tagresource": {
|
|
120
|
+
"name": "TagResource",
|
|
121
|
+
"description": "Grants permission to tag a resource",
|
|
122
|
+
"accessLevel": "Tagging",
|
|
123
|
+
"resourceTypes": [
|
|
124
|
+
{
|
|
125
|
+
"name": "invoice-unit",
|
|
126
|
+
"required": true,
|
|
127
|
+
"conditionKeys": [],
|
|
128
|
+
"dependentActions": []
|
|
129
|
+
}
|
|
130
|
+
],
|
|
131
|
+
"conditionKeys": [
|
|
132
|
+
"aws:TagKeys",
|
|
133
|
+
"aws:RequestTag/${TagKey}",
|
|
134
|
+
"aws:ResourceTag/${TagKey}"
|
|
135
|
+
],
|
|
136
|
+
"dependentActions": []
|
|
137
|
+
},
|
|
138
|
+
"untagresource": {
|
|
139
|
+
"name": "UntagResource",
|
|
140
|
+
"description": "Grants permission to untag a resource",
|
|
141
|
+
"accessLevel": "Tagging",
|
|
142
|
+
"resourceTypes": [
|
|
143
|
+
{
|
|
144
|
+
"name": "invoice-unit",
|
|
145
|
+
"required": true,
|
|
146
|
+
"conditionKeys": [],
|
|
147
|
+
"dependentActions": []
|
|
148
|
+
}
|
|
149
|
+
],
|
|
150
|
+
"conditionKeys": [
|
|
151
|
+
"aws:TagKeys",
|
|
152
|
+
"aws:ResourceTag/${TagKey}"
|
|
153
|
+
],
|
|
154
|
+
"dependentActions": []
|
|
155
|
+
},
|
|
156
|
+
"updateinvoiceunit": {
|
|
157
|
+
"name": "UpdateInvoiceUnit",
|
|
158
|
+
"isPermissionOnly": true,
|
|
159
|
+
"description": "Grants permission to update an invoice unit for your organization",
|
|
160
|
+
"accessLevel": "Write",
|
|
161
|
+
"resourceTypes": [
|
|
162
|
+
{
|
|
163
|
+
"name": "invoice-unit",
|
|
164
|
+
"required": true,
|
|
165
|
+
"conditionKeys": [],
|
|
166
|
+
"dependentActions": []
|
|
167
|
+
}
|
|
168
|
+
],
|
|
169
|
+
"conditionKeys": [
|
|
170
|
+
"aws:ResourceTag/${TagKey}"
|
|
171
|
+
],
|
|
172
|
+
"dependentActions": []
|
|
37
173
|
}
|
|
38
174
|
}
|