iamdata 0.1.202509151__py3-none-any.whl → 0.1.202509161__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 iamdata might be problematic. Click here for more details.
- iamdata/data/actions/cloudformation.json +10 -0
- iamdata/data/actions/datazone.json +0 -3
- iamdata/data/actions/identitystore.json +91 -19
- iamdata/data/actions/invoicing.json +27 -0
- iamdata/data/actions/observabilityadmin.json +114 -1
- iamdata/data/actions/s3.json +2 -1
- iamdata/data/actions/sso-directory.json +108 -36
- iamdata/data/actions/tax.json +48 -0
- iamdata/data/conditionKeys/cloudformation.json +5 -0
- iamdata/data/conditionKeys/observabilityadmin.json +15 -0
- iamdata/data/metadata.json +2 -2
- iamdata/data/resourceTypes/observabilityadmin.json +7 -0
- {iamdata-0.1.202509151.dist-info → iamdata-0.1.202509161.dist-info}/METADATA +1 -1
- {iamdata-0.1.202509151.dist-info → iamdata-0.1.202509161.dist-info}/RECORD +16 -16
- {iamdata-0.1.202509151.dist-info → iamdata-0.1.202509161.dist-info}/WHEEL +0 -0
- {iamdata-0.1.202509151.dist-info → iamdata-0.1.202509161.dist-info}/licenses/LICENSE.txt +0 -0
|
@@ -748,6 +748,16 @@
|
|
|
748
748
|
"conditionKeys": [],
|
|
749
749
|
"dependentActions": []
|
|
750
750
|
},
|
|
751
|
+
"listallhookresults": {
|
|
752
|
+
"name": "ListAllHookResults",
|
|
753
|
+
"description": "Grants permission to return Hook invocations result information for a specified Hook, a combination of Hook and status, or all Hooks",
|
|
754
|
+
"accessLevel": "List",
|
|
755
|
+
"resourceTypes": [],
|
|
756
|
+
"conditionKeys": [
|
|
757
|
+
"cloudformation:TypeArn"
|
|
758
|
+
],
|
|
759
|
+
"dependentActions": []
|
|
760
|
+
},
|
|
751
761
|
"listchangesets": {
|
|
752
762
|
"name": "ListChangeSets",
|
|
753
763
|
"description": "Grants permission to return the ID and status of each active change set for a stack. For example, AWS CloudFormation lists change sets that are in the CREATE_IN_PROGRESS or CREATE_PENDING state",
|
|
@@ -204,7 +204,6 @@
|
|
|
204
204
|
},
|
|
205
205
|
"createenvironmentblueprint": {
|
|
206
206
|
"name": "CreateEnvironmentBlueprint",
|
|
207
|
-
"isPermissionOnly": true,
|
|
208
207
|
"description": "Grants permission to create a custom Environment Blueprint that allow user to add Environments to their Project",
|
|
209
208
|
"accessLevel": "Write",
|
|
210
209
|
"resourceTypes": [],
|
|
@@ -429,7 +428,6 @@
|
|
|
429
428
|
},
|
|
430
429
|
"deleteenvironmentblueprint": {
|
|
431
430
|
"name": "DeleteEnvironmentBlueprint",
|
|
432
|
-
"isPermissionOnly": true,
|
|
433
431
|
"description": "Grants permission to delete Environment Blueprint",
|
|
434
432
|
"accessLevel": "Write",
|
|
435
433
|
"resourceTypes": [],
|
|
@@ -1524,7 +1522,6 @@
|
|
|
1524
1522
|
},
|
|
1525
1523
|
"updateenvironmentblueprint": {
|
|
1526
1524
|
"name": "UpdateEnvironmentBlueprint",
|
|
1527
|
-
"isPermissionOnly": true,
|
|
1528
1525
|
"description": "Grants permission to update Environment Blueprint settings",
|
|
1529
1526
|
"accessLevel": "Write",
|
|
1530
1527
|
"resourceTypes": [],
|
|
@@ -12,7 +12,9 @@
|
|
|
12
12
|
}
|
|
13
13
|
],
|
|
14
14
|
"conditionKeys": [],
|
|
15
|
-
"dependentActions": [
|
|
15
|
+
"dependentActions": [
|
|
16
|
+
"kms:Decrypt"
|
|
17
|
+
]
|
|
16
18
|
},
|
|
17
19
|
"creategroupmembership": {
|
|
18
20
|
"name": "CreateGroupMembership",
|
|
@@ -23,7 +25,9 @@
|
|
|
23
25
|
"name": "Group",
|
|
24
26
|
"required": true,
|
|
25
27
|
"conditionKeys": [],
|
|
26
|
-
"dependentActions": [
|
|
28
|
+
"dependentActions": [
|
|
29
|
+
"kms:Decrypt"
|
|
30
|
+
]
|
|
27
31
|
},
|
|
28
32
|
{
|
|
29
33
|
"name": "Identitystore",
|
|
@@ -41,6 +45,19 @@
|
|
|
41
45
|
"conditionKeys": [],
|
|
42
46
|
"dependentActions": []
|
|
43
47
|
},
|
|
48
|
+
"createidentitystore": {
|
|
49
|
+
"name": "CreateIdentityStore",
|
|
50
|
+
"description": "Grants permission to create a new IdentityStore in an AWS account",
|
|
51
|
+
"accessLevel": "Write",
|
|
52
|
+
"resourceTypes": [],
|
|
53
|
+
"conditionKeys": [],
|
|
54
|
+
"dependentActions": [
|
|
55
|
+
"kms:Decrypt",
|
|
56
|
+
"kms:DescribeKey",
|
|
57
|
+
"kms:Encrypt",
|
|
58
|
+
"kms:GenerateDataKeyWithoutPlaintext"
|
|
59
|
+
]
|
|
60
|
+
},
|
|
44
61
|
"createuser": {
|
|
45
62
|
"name": "CreateUser",
|
|
46
63
|
"description": "Grants permission to create a user in the specified IdentityStore",
|
|
@@ -54,7 +71,9 @@
|
|
|
54
71
|
}
|
|
55
72
|
],
|
|
56
73
|
"conditionKeys": [],
|
|
57
|
-
"dependentActions": [
|
|
74
|
+
"dependentActions": [
|
|
75
|
+
"kms:Decrypt"
|
|
76
|
+
]
|
|
58
77
|
},
|
|
59
78
|
"deletegroup": {
|
|
60
79
|
"name": "DeleteGroup",
|
|
@@ -65,7 +84,9 @@
|
|
|
65
84
|
"name": "Group",
|
|
66
85
|
"required": true,
|
|
67
86
|
"conditionKeys": [],
|
|
68
|
-
"dependentActions": [
|
|
87
|
+
"dependentActions": [
|
|
88
|
+
"kms:Decrypt"
|
|
89
|
+
]
|
|
69
90
|
},
|
|
70
91
|
{
|
|
71
92
|
"name": "Identitystore",
|
|
@@ -86,7 +107,9 @@
|
|
|
86
107
|
"name": "Group",
|
|
87
108
|
"required": true,
|
|
88
109
|
"conditionKeys": [],
|
|
89
|
-
"dependentActions": [
|
|
110
|
+
"dependentActions": [
|
|
111
|
+
"kms:Decrypt"
|
|
112
|
+
]
|
|
90
113
|
},
|
|
91
114
|
{
|
|
92
115
|
"name": "GroupMembership",
|
|
@@ -110,6 +133,14 @@
|
|
|
110
133
|
"conditionKeys": [],
|
|
111
134
|
"dependentActions": []
|
|
112
135
|
},
|
|
136
|
+
"deleteidentitystore": {
|
|
137
|
+
"name": "DeleteIdentityStore",
|
|
138
|
+
"description": "Grants permission to delete an IdentityStore",
|
|
139
|
+
"accessLevel": "Write",
|
|
140
|
+
"resourceTypes": [],
|
|
141
|
+
"conditionKeys": [],
|
|
142
|
+
"dependentActions": []
|
|
143
|
+
},
|
|
113
144
|
"deleteuser": {
|
|
114
145
|
"name": "DeleteUser",
|
|
115
146
|
"description": "Grants permission to delete a user in the specified IdentityStore",
|
|
@@ -119,7 +150,9 @@
|
|
|
119
150
|
"name": "Identitystore",
|
|
120
151
|
"required": true,
|
|
121
152
|
"conditionKeys": [],
|
|
122
|
-
"dependentActions": [
|
|
153
|
+
"dependentActions": [
|
|
154
|
+
"kms:Decrypt"
|
|
155
|
+
]
|
|
123
156
|
},
|
|
124
157
|
{
|
|
125
158
|
"name": "User",
|
|
@@ -140,7 +173,9 @@
|
|
|
140
173
|
"name": "Group",
|
|
141
174
|
"required": true,
|
|
142
175
|
"conditionKeys": [],
|
|
143
|
-
"dependentActions": [
|
|
176
|
+
"dependentActions": [
|
|
177
|
+
"kms:Decrypt"
|
|
178
|
+
]
|
|
144
179
|
},
|
|
145
180
|
{
|
|
146
181
|
"name": "Identitystore",
|
|
@@ -161,7 +196,9 @@
|
|
|
161
196
|
"name": "Group",
|
|
162
197
|
"required": true,
|
|
163
198
|
"conditionKeys": [],
|
|
164
|
-
"dependentActions": [
|
|
199
|
+
"dependentActions": [
|
|
200
|
+
"kms:Decrypt"
|
|
201
|
+
]
|
|
165
202
|
},
|
|
166
203
|
{
|
|
167
204
|
"name": "GroupMembership",
|
|
@@ -194,7 +231,9 @@
|
|
|
194
231
|
"name": "Identitystore",
|
|
195
232
|
"required": true,
|
|
196
233
|
"conditionKeys": [],
|
|
197
|
-
"dependentActions": [
|
|
234
|
+
"dependentActions": [
|
|
235
|
+
"kms:Decrypt"
|
|
236
|
+
]
|
|
198
237
|
},
|
|
199
238
|
{
|
|
200
239
|
"name": "User",
|
|
@@ -215,7 +254,9 @@
|
|
|
215
254
|
"name": "Group",
|
|
216
255
|
"required": true,
|
|
217
256
|
"conditionKeys": [],
|
|
218
|
-
"dependentActions": [
|
|
257
|
+
"dependentActions": [
|
|
258
|
+
"kms:Decrypt"
|
|
259
|
+
]
|
|
219
260
|
},
|
|
220
261
|
{
|
|
221
262
|
"name": "Identitystore",
|
|
@@ -236,7 +277,9 @@
|
|
|
236
277
|
"name": "Group",
|
|
237
278
|
"required": true,
|
|
238
279
|
"conditionKeys": [],
|
|
239
|
-
"dependentActions": [
|
|
280
|
+
"dependentActions": [
|
|
281
|
+
"kms:Decrypt"
|
|
282
|
+
]
|
|
240
283
|
},
|
|
241
284
|
{
|
|
242
285
|
"name": "GroupMembership",
|
|
@@ -269,7 +312,9 @@
|
|
|
269
312
|
"name": "Identitystore",
|
|
270
313
|
"required": true,
|
|
271
314
|
"conditionKeys": [],
|
|
272
|
-
"dependentActions": [
|
|
315
|
+
"dependentActions": [
|
|
316
|
+
"kms:Decrypt"
|
|
317
|
+
]
|
|
273
318
|
},
|
|
274
319
|
{
|
|
275
320
|
"name": "User",
|
|
@@ -290,7 +335,9 @@
|
|
|
290
335
|
"name": "AllGroupMemberships",
|
|
291
336
|
"required": true,
|
|
292
337
|
"conditionKeys": [],
|
|
293
|
-
"dependentActions": [
|
|
338
|
+
"dependentActions": [
|
|
339
|
+
"kms:Decrypt"
|
|
340
|
+
]
|
|
294
341
|
},
|
|
295
342
|
{
|
|
296
343
|
"name": "Group",
|
|
@@ -323,7 +370,9 @@
|
|
|
323
370
|
"name": "AllGroupMemberships",
|
|
324
371
|
"required": true,
|
|
325
372
|
"conditionKeys": [],
|
|
326
|
-
"dependentActions": [
|
|
373
|
+
"dependentActions": [
|
|
374
|
+
"kms:Decrypt"
|
|
375
|
+
]
|
|
327
376
|
},
|
|
328
377
|
{
|
|
329
378
|
"name": "Group",
|
|
@@ -350,7 +399,9 @@
|
|
|
350
399
|
"name": "AllGroupMemberships",
|
|
351
400
|
"required": true,
|
|
352
401
|
"conditionKeys": [],
|
|
353
|
-
"dependentActions": [
|
|
402
|
+
"dependentActions": [
|
|
403
|
+
"kms:Decrypt"
|
|
404
|
+
]
|
|
354
405
|
},
|
|
355
406
|
{
|
|
356
407
|
"name": "Identitystore",
|
|
@@ -377,7 +428,9 @@
|
|
|
377
428
|
"name": "AllGroups",
|
|
378
429
|
"required": true,
|
|
379
430
|
"conditionKeys": [],
|
|
380
|
-
"dependentActions": [
|
|
431
|
+
"dependentActions": [
|
|
432
|
+
"kms:Decrypt"
|
|
433
|
+
]
|
|
381
434
|
},
|
|
382
435
|
{
|
|
383
436
|
"name": "Identitystore",
|
|
@@ -398,7 +451,9 @@
|
|
|
398
451
|
"name": "AllUsers",
|
|
399
452
|
"required": true,
|
|
400
453
|
"conditionKeys": [],
|
|
401
|
-
"dependentActions": [
|
|
454
|
+
"dependentActions": [
|
|
455
|
+
"kms:Decrypt"
|
|
456
|
+
]
|
|
402
457
|
},
|
|
403
458
|
{
|
|
404
459
|
"name": "Identitystore",
|
|
@@ -419,7 +474,9 @@
|
|
|
419
474
|
"name": "Group",
|
|
420
475
|
"required": true,
|
|
421
476
|
"conditionKeys": [],
|
|
422
|
-
"dependentActions": [
|
|
477
|
+
"dependentActions": [
|
|
478
|
+
"kms:Decrypt"
|
|
479
|
+
]
|
|
423
480
|
},
|
|
424
481
|
{
|
|
425
482
|
"name": "Identitystore",
|
|
@@ -431,6 +488,19 @@
|
|
|
431
488
|
"conditionKeys": [],
|
|
432
489
|
"dependentActions": []
|
|
433
490
|
},
|
|
491
|
+
"updateidentitystore": {
|
|
492
|
+
"name": "UpdateIdentityStore",
|
|
493
|
+
"description": "Grants permission to update the configuration of an IdentityStore",
|
|
494
|
+
"accessLevel": "Write",
|
|
495
|
+
"resourceTypes": [],
|
|
496
|
+
"conditionKeys": [],
|
|
497
|
+
"dependentActions": [
|
|
498
|
+
"kms:Decrypt",
|
|
499
|
+
"kms:DescribeKey",
|
|
500
|
+
"kms:Encrypt",
|
|
501
|
+
"kms:GenerateDataKeyWithoutPlaintext"
|
|
502
|
+
]
|
|
503
|
+
},
|
|
434
504
|
"updateuser": {
|
|
435
505
|
"name": "UpdateUser",
|
|
436
506
|
"description": "Grants permission to update user information in the specified IdentityStore",
|
|
@@ -440,7 +510,9 @@
|
|
|
440
510
|
"name": "Identitystore",
|
|
441
511
|
"required": true,
|
|
442
512
|
"conditionKeys": [],
|
|
443
|
-
"dependentActions": [
|
|
513
|
+
"dependentActions": [
|
|
514
|
+
"kms:Decrypt"
|
|
515
|
+
]
|
|
444
516
|
},
|
|
445
517
|
{
|
|
446
518
|
"name": "User",
|
|
@@ -35,6 +35,15 @@
|
|
|
35
35
|
],
|
|
36
36
|
"dependentActions": []
|
|
37
37
|
},
|
|
38
|
+
"getinvoicecorrection": {
|
|
39
|
+
"name": "GetInvoiceCorrection",
|
|
40
|
+
"isPermissionOnly": true,
|
|
41
|
+
"description": "Grants permission to get Invoice Correction",
|
|
42
|
+
"accessLevel": "Read",
|
|
43
|
+
"resourceTypes": [],
|
|
44
|
+
"conditionKeys": [],
|
|
45
|
+
"dependentActions": []
|
|
46
|
+
},
|
|
38
47
|
"getinvoiceemaildeliverypreferences": {
|
|
39
48
|
"name": "GetInvoiceEmailDeliveryPreferences",
|
|
40
49
|
"isPermissionOnly": true,
|
|
@@ -68,6 +77,15 @@
|
|
|
68
77
|
"conditionKeys": [],
|
|
69
78
|
"dependentActions": []
|
|
70
79
|
},
|
|
80
|
+
"listinvoicecorrections": {
|
|
81
|
+
"name": "ListInvoiceCorrections",
|
|
82
|
+
"isPermissionOnly": true,
|
|
83
|
+
"description": "Grants permission to list Invoice Corrections",
|
|
84
|
+
"accessLevel": "List",
|
|
85
|
+
"resourceTypes": [],
|
|
86
|
+
"conditionKeys": [],
|
|
87
|
+
"dependentActions": []
|
|
88
|
+
},
|
|
71
89
|
"listinvoicesummaries": {
|
|
72
90
|
"name": "ListInvoiceSummaries",
|
|
73
91
|
"description": "Grants permission to get Invoice summary information for your account or linked account",
|
|
@@ -110,6 +128,15 @@
|
|
|
110
128
|
"conditionKeys": [],
|
|
111
129
|
"dependentActions": []
|
|
112
130
|
},
|
|
131
|
+
"startinvoicecorrection": {
|
|
132
|
+
"name": "StartInvoiceCorrection",
|
|
133
|
+
"isPermissionOnly": true,
|
|
134
|
+
"description": "Grants permission to start Invoice Correction",
|
|
135
|
+
"accessLevel": "Write",
|
|
136
|
+
"resourceTypes": [],
|
|
137
|
+
"conditionKeys": [],
|
|
138
|
+
"dependentActions": []
|
|
139
|
+
},
|
|
113
140
|
"tagresource": {
|
|
114
141
|
"name": "TagResource",
|
|
115
142
|
"description": "Grants permission to tag a resource",
|
|
@@ -1,4 +1,25 @@
|
|
|
1
1
|
{
|
|
2
|
+
"createcentralizationrulefororganization": {
|
|
3
|
+
"name": "CreateCentralizationRuleForOrganization",
|
|
4
|
+
"description": "Grants permission to create a new organization centralization rule with the specified name for the organization",
|
|
5
|
+
"accessLevel": "Write",
|
|
6
|
+
"resourceTypes": [
|
|
7
|
+
{
|
|
8
|
+
"name": "organization-centralization-rule",
|
|
9
|
+
"required": true,
|
|
10
|
+
"conditionKeys": [],
|
|
11
|
+
"dependentActions": []
|
|
12
|
+
}
|
|
13
|
+
],
|
|
14
|
+
"conditionKeys": [
|
|
15
|
+
"aws:TagKeys",
|
|
16
|
+
"aws:RequestTag/${TagKey}",
|
|
17
|
+
"observabilityadmin:CentralizationSourceRegions",
|
|
18
|
+
"observabilityadmin:CentralizationDestinationRegion",
|
|
19
|
+
"observabilityadmin:CentralizationBackupRegion"
|
|
20
|
+
],
|
|
21
|
+
"dependentActions": []
|
|
22
|
+
},
|
|
2
23
|
"createtelemetryrule": {
|
|
3
24
|
"name": "CreateTelemetryRule",
|
|
4
25
|
"description": "Grants permission to create a new telemetry rule with the specified name for the account",
|
|
@@ -35,6 +56,21 @@
|
|
|
35
56
|
],
|
|
36
57
|
"dependentActions": []
|
|
37
58
|
},
|
|
59
|
+
"deletecentralizationrulefororganization": {
|
|
60
|
+
"name": "DeleteCentralizationRuleForOrganization",
|
|
61
|
+
"description": "Grants permission to delete an organization centralization rule with the specified name for the organization",
|
|
62
|
+
"accessLevel": "Write",
|
|
63
|
+
"resourceTypes": [
|
|
64
|
+
{
|
|
65
|
+
"name": "organization-centralization-rule",
|
|
66
|
+
"required": true,
|
|
67
|
+
"conditionKeys": [],
|
|
68
|
+
"dependentActions": []
|
|
69
|
+
}
|
|
70
|
+
],
|
|
71
|
+
"conditionKeys": [],
|
|
72
|
+
"dependentActions": []
|
|
73
|
+
},
|
|
38
74
|
"deletetelemetryrule": {
|
|
39
75
|
"name": "DeleteTelemetryRule",
|
|
40
76
|
"description": "Grants permission to delete a telemetry rule with the specified name for the account",
|
|
@@ -65,6 +101,22 @@
|
|
|
65
101
|
"conditionKeys": [],
|
|
66
102
|
"dependentActions": []
|
|
67
103
|
},
|
|
104
|
+
"getcentralizationrulefororganization": {
|
|
105
|
+
"name": "GetCentralizationRuleForOrganization",
|
|
106
|
+
"description": "Grants permission to retrieve the specified organization centralization rule for the organization",
|
|
107
|
+
"accessLevel": "Read",
|
|
108
|
+
"resourceTypes": [],
|
|
109
|
+
"conditionKeys": [],
|
|
110
|
+
"dependentActions": []
|
|
111
|
+
},
|
|
112
|
+
"gettelemetryenrichmentstatus": {
|
|
113
|
+
"name": "GetTelemetryEnrichmentStatus",
|
|
114
|
+
"description": "Grants permission to retrieve the status of the Resource tags for telemetry feature for the account",
|
|
115
|
+
"accessLevel": "Read",
|
|
116
|
+
"resourceTypes": [],
|
|
117
|
+
"conditionKeys": [],
|
|
118
|
+
"dependentActions": []
|
|
119
|
+
},
|
|
68
120
|
"gettelemetryevaluationstatus": {
|
|
69
121
|
"name": "GetTelemetryEvaluationStatus",
|
|
70
122
|
"description": "Grants permission to retrieve the Telemetry Config feature status for the account",
|
|
@@ -97,6 +149,14 @@
|
|
|
97
149
|
"conditionKeys": [],
|
|
98
150
|
"dependentActions": []
|
|
99
151
|
},
|
|
152
|
+
"listcentralizationrulesfororganization": {
|
|
153
|
+
"name": "ListCentralizationRulesForOrganization",
|
|
154
|
+
"description": "Grants permission to list the centralization rules for the organization",
|
|
155
|
+
"accessLevel": "List",
|
|
156
|
+
"resourceTypes": [],
|
|
157
|
+
"conditionKeys": [],
|
|
158
|
+
"dependentActions": []
|
|
159
|
+
},
|
|
100
160
|
"listresourcetelemetry": {
|
|
101
161
|
"name": "ListResourceTelemetry",
|
|
102
162
|
"description": "Grants permission to retrieve telemetry configurations for resources associated with the account",
|
|
@@ -118,6 +178,12 @@
|
|
|
118
178
|
"description": "Grants permission to list the tags for the specified resource",
|
|
119
179
|
"accessLevel": "List",
|
|
120
180
|
"resourceTypes": [
|
|
181
|
+
{
|
|
182
|
+
"name": "organization-centralization-rule",
|
|
183
|
+
"required": false,
|
|
184
|
+
"conditionKeys": [],
|
|
185
|
+
"dependentActions": []
|
|
186
|
+
},
|
|
121
187
|
{
|
|
122
188
|
"name": "organization-telemetry-rule",
|
|
123
189
|
"required": false,
|
|
@@ -150,6 +216,14 @@
|
|
|
150
216
|
"conditionKeys": [],
|
|
151
217
|
"dependentActions": []
|
|
152
218
|
},
|
|
219
|
+
"starttelemetryenrichment": {
|
|
220
|
+
"name": "StartTelemetryEnrichment",
|
|
221
|
+
"description": "Grants permission to enable the Resource tags for telemetry feature for the account",
|
|
222
|
+
"accessLevel": "Write",
|
|
223
|
+
"resourceTypes": [],
|
|
224
|
+
"conditionKeys": [],
|
|
225
|
+
"dependentActions": []
|
|
226
|
+
},
|
|
153
227
|
"starttelemetryevaluation": {
|
|
154
228
|
"name": "StartTelemetryEvaluation",
|
|
155
229
|
"description": "Grants permission to start the Telemetry Config feature for the account",
|
|
@@ -166,6 +240,14 @@
|
|
|
166
240
|
"conditionKeys": [],
|
|
167
241
|
"dependentActions": []
|
|
168
242
|
},
|
|
243
|
+
"stoptelemetryenrichment": {
|
|
244
|
+
"name": "StopTelemetryEnrichment",
|
|
245
|
+
"description": "Grants permission to disable the Resource tags for telemetry feature for the account",
|
|
246
|
+
"accessLevel": "Write",
|
|
247
|
+
"resourceTypes": [],
|
|
248
|
+
"conditionKeys": [],
|
|
249
|
+
"dependentActions": []
|
|
250
|
+
},
|
|
169
251
|
"stoptelemetryevaluation": {
|
|
170
252
|
"name": "StopTelemetryEvaluation",
|
|
171
253
|
"description": "Grants permission to stop the Telemetry Config feature for the account",
|
|
@@ -187,6 +269,12 @@
|
|
|
187
269
|
"description": "Grants permission to add or update the specified tags for the specified resource",
|
|
188
270
|
"accessLevel": "Tagging",
|
|
189
271
|
"resourceTypes": [
|
|
272
|
+
{
|
|
273
|
+
"name": "organization-centralization-rule",
|
|
274
|
+
"required": false,
|
|
275
|
+
"conditionKeys": [],
|
|
276
|
+
"dependentActions": []
|
|
277
|
+
},
|
|
190
278
|
{
|
|
191
279
|
"name": "organization-telemetry-rule",
|
|
192
280
|
"required": false,
|
|
@@ -211,6 +299,12 @@
|
|
|
211
299
|
"description": "Grants permission to remove the specified tags from the specified resource",
|
|
212
300
|
"accessLevel": "Tagging",
|
|
213
301
|
"resourceTypes": [
|
|
302
|
+
{
|
|
303
|
+
"name": "organization-centralization-rule",
|
|
304
|
+
"required": false,
|
|
305
|
+
"conditionKeys": [],
|
|
306
|
+
"dependentActions": []
|
|
307
|
+
},
|
|
214
308
|
{
|
|
215
309
|
"name": "organization-telemetry-rule",
|
|
216
310
|
"required": false,
|
|
@@ -229,6 +323,25 @@
|
|
|
229
323
|
],
|
|
230
324
|
"dependentActions": []
|
|
231
325
|
},
|
|
326
|
+
"updatecentralizationrulefororganization": {
|
|
327
|
+
"name": "UpdateCentralizationRuleForOrganization",
|
|
328
|
+
"description": "Grants permission to update the specified centralization rule for the organization",
|
|
329
|
+
"accessLevel": "Write",
|
|
330
|
+
"resourceTypes": [
|
|
331
|
+
{
|
|
332
|
+
"name": "organization-centralization-rule",
|
|
333
|
+
"required": true,
|
|
334
|
+
"conditionKeys": [],
|
|
335
|
+
"dependentActions": []
|
|
336
|
+
}
|
|
337
|
+
],
|
|
338
|
+
"conditionKeys": [
|
|
339
|
+
"observabilityadmin:CentralizationSourceRegions",
|
|
340
|
+
"observabilityadmin:CentralizationDestinationRegion",
|
|
341
|
+
"observabilityadmin:CentralizationBackupRegion"
|
|
342
|
+
],
|
|
343
|
+
"dependentActions": []
|
|
344
|
+
},
|
|
232
345
|
"updatetelemetryrule": {
|
|
233
346
|
"name": "UpdateTelemetryRule",
|
|
234
347
|
"description": "Grants permission to update the specified telemetry rule for the account",
|
|
@@ -246,7 +359,7 @@
|
|
|
246
359
|
},
|
|
247
360
|
"updatetelemetryrulefororganization": {
|
|
248
361
|
"name": "UpdateTelemetryRuleForOrganization",
|
|
249
|
-
"description": "Grants permission to
|
|
362
|
+
"description": "Grants permission to update the specified telemetry rule for the organization",
|
|
250
363
|
"accessLevel": "Write",
|
|
251
364
|
"resourceTypes": [
|
|
252
365
|
{
|
iamdata/data/actions/s3.json
CHANGED
|
@@ -5,7 +5,9 @@
|
|
|
5
5
|
"accessLevel": "Write",
|
|
6
6
|
"resourceTypes": [],
|
|
7
7
|
"conditionKeys": [],
|
|
8
|
-
"dependentActions": [
|
|
8
|
+
"dependentActions": [
|
|
9
|
+
"kms:Decrypt"
|
|
10
|
+
]
|
|
9
11
|
},
|
|
10
12
|
"completevirtualmfadeviceregistration": {
|
|
11
13
|
"name": "CompleteVirtualMfaDeviceRegistration",
|
|
@@ -37,7 +39,9 @@
|
|
|
37
39
|
"accessLevel": "Write",
|
|
38
40
|
"resourceTypes": [],
|
|
39
41
|
"conditionKeys": [],
|
|
40
|
-
"dependentActions": [
|
|
42
|
+
"dependentActions": [
|
|
43
|
+
"kms:Decrypt"
|
|
44
|
+
]
|
|
41
45
|
},
|
|
42
46
|
"createexternalidpconfigurationfordirectory": {
|
|
43
47
|
"name": "CreateExternalIdPConfigurationForDirectory",
|
|
@@ -53,7 +57,9 @@
|
|
|
53
57
|
"accessLevel": "Write",
|
|
54
58
|
"resourceTypes": [],
|
|
55
59
|
"conditionKeys": [],
|
|
56
|
-
"dependentActions": [
|
|
60
|
+
"dependentActions": [
|
|
61
|
+
"kms:Decrypt"
|
|
62
|
+
]
|
|
57
63
|
},
|
|
58
64
|
"createprovisioningtenant": {
|
|
59
65
|
"name": "CreateProvisioningTenant",
|
|
@@ -61,7 +67,9 @@
|
|
|
61
67
|
"accessLevel": "Write",
|
|
62
68
|
"resourceTypes": [],
|
|
63
69
|
"conditionKeys": [],
|
|
64
|
-
"dependentActions": [
|
|
70
|
+
"dependentActions": [
|
|
71
|
+
"kms:Decrypt"
|
|
72
|
+
]
|
|
65
73
|
},
|
|
66
74
|
"createuser": {
|
|
67
75
|
"name": "CreateUser",
|
|
@@ -69,7 +77,9 @@
|
|
|
69
77
|
"accessLevel": "Write",
|
|
70
78
|
"resourceTypes": [],
|
|
71
79
|
"conditionKeys": [],
|
|
72
|
-
"dependentActions": [
|
|
80
|
+
"dependentActions": [
|
|
81
|
+
"kms:Decrypt"
|
|
82
|
+
]
|
|
73
83
|
},
|
|
74
84
|
"deletebearertoken": {
|
|
75
85
|
"name": "DeleteBearerToken",
|
|
@@ -77,7 +87,9 @@
|
|
|
77
87
|
"accessLevel": "Write",
|
|
78
88
|
"resourceTypes": [],
|
|
79
89
|
"conditionKeys": [],
|
|
80
|
-
"dependentActions": [
|
|
90
|
+
"dependentActions": [
|
|
91
|
+
"kms:Decrypt"
|
|
92
|
+
]
|
|
81
93
|
},
|
|
82
94
|
"deleteexternalidpcertificate": {
|
|
83
95
|
"name": "DeleteExternalIdPCertificate",
|
|
@@ -101,7 +113,9 @@
|
|
|
101
113
|
"accessLevel": "Write",
|
|
102
114
|
"resourceTypes": [],
|
|
103
115
|
"conditionKeys": [],
|
|
104
|
-
"dependentActions": [
|
|
116
|
+
"dependentActions": [
|
|
117
|
+
"kms:Decrypt"
|
|
118
|
+
]
|
|
105
119
|
},
|
|
106
120
|
"deletemfadeviceforuser": {
|
|
107
121
|
"name": "DeleteMfaDeviceForUser",
|
|
@@ -117,7 +131,9 @@
|
|
|
117
131
|
"accessLevel": "Write",
|
|
118
132
|
"resourceTypes": [],
|
|
119
133
|
"conditionKeys": [],
|
|
120
|
-
"dependentActions": [
|
|
134
|
+
"dependentActions": [
|
|
135
|
+
"kms:Decrypt"
|
|
136
|
+
]
|
|
121
137
|
},
|
|
122
138
|
"deleteuser": {
|
|
123
139
|
"name": "DeleteUser",
|
|
@@ -125,7 +141,9 @@
|
|
|
125
141
|
"accessLevel": "Write",
|
|
126
142
|
"resourceTypes": [],
|
|
127
143
|
"conditionKeys": [],
|
|
128
|
-
"dependentActions": [
|
|
144
|
+
"dependentActions": [
|
|
145
|
+
"kms:Decrypt"
|
|
146
|
+
]
|
|
129
147
|
},
|
|
130
148
|
"describedirectory": {
|
|
131
149
|
"name": "DescribeDirectory",
|
|
@@ -141,7 +159,9 @@
|
|
|
141
159
|
"accessLevel": "Read",
|
|
142
160
|
"resourceTypes": [],
|
|
143
161
|
"conditionKeys": [],
|
|
144
|
-
"dependentActions": [
|
|
162
|
+
"dependentActions": [
|
|
163
|
+
"kms:Decrypt"
|
|
164
|
+
]
|
|
145
165
|
},
|
|
146
166
|
"describegroups": {
|
|
147
167
|
"name": "DescribeGroups",
|
|
@@ -149,7 +169,9 @@
|
|
|
149
169
|
"accessLevel": "Read",
|
|
150
170
|
"resourceTypes": [],
|
|
151
171
|
"conditionKeys": [],
|
|
152
|
-
"dependentActions": [
|
|
172
|
+
"dependentActions": [
|
|
173
|
+
"kms:Decrypt"
|
|
174
|
+
]
|
|
153
175
|
},
|
|
154
176
|
"describeprovisioningtenant": {
|
|
155
177
|
"name": "DescribeProvisioningTenant",
|
|
@@ -157,7 +179,9 @@
|
|
|
157
179
|
"accessLevel": "Read",
|
|
158
180
|
"resourceTypes": [],
|
|
159
181
|
"conditionKeys": [],
|
|
160
|
-
"dependentActions": [
|
|
182
|
+
"dependentActions": [
|
|
183
|
+
"kms:Decrypt"
|
|
184
|
+
]
|
|
161
185
|
},
|
|
162
186
|
"describeuser": {
|
|
163
187
|
"name": "DescribeUser",
|
|
@@ -165,7 +189,9 @@
|
|
|
165
189
|
"accessLevel": "Read",
|
|
166
190
|
"resourceTypes": [],
|
|
167
191
|
"conditionKeys": [],
|
|
168
|
-
"dependentActions": [
|
|
192
|
+
"dependentActions": [
|
|
193
|
+
"kms:Decrypt"
|
|
194
|
+
]
|
|
169
195
|
},
|
|
170
196
|
"describeuserbyuniqueattribute": {
|
|
171
197
|
"name": "DescribeUserByUniqueAttribute",
|
|
@@ -173,7 +199,9 @@
|
|
|
173
199
|
"accessLevel": "Read",
|
|
174
200
|
"resourceTypes": [],
|
|
175
201
|
"conditionKeys": [],
|
|
176
|
-
"dependentActions": [
|
|
202
|
+
"dependentActions": [
|
|
203
|
+
"kms:Decrypt"
|
|
204
|
+
]
|
|
177
205
|
},
|
|
178
206
|
"describeusers": {
|
|
179
207
|
"name": "DescribeUsers",
|
|
@@ -181,7 +209,9 @@
|
|
|
181
209
|
"accessLevel": "Read",
|
|
182
210
|
"resourceTypes": [],
|
|
183
211
|
"conditionKeys": [],
|
|
184
|
-
"dependentActions": [
|
|
212
|
+
"dependentActions": [
|
|
213
|
+
"kms:Decrypt"
|
|
214
|
+
]
|
|
185
215
|
},
|
|
186
216
|
"disableexternalidpconfigurationfordirectory": {
|
|
187
217
|
"name": "DisableExternalIdPConfigurationForDirectory",
|
|
@@ -197,7 +227,9 @@
|
|
|
197
227
|
"accessLevel": "Write",
|
|
198
228
|
"resourceTypes": [],
|
|
199
229
|
"conditionKeys": [],
|
|
200
|
-
"dependentActions": [
|
|
230
|
+
"dependentActions": [
|
|
231
|
+
"kms:Decrypt"
|
|
232
|
+
]
|
|
201
233
|
},
|
|
202
234
|
"enableexternalidpconfigurationfordirectory": {
|
|
203
235
|
"name": "EnableExternalIdPConfigurationForDirectory",
|
|
@@ -213,7 +245,9 @@
|
|
|
213
245
|
"accessLevel": "Write",
|
|
214
246
|
"resourceTypes": [],
|
|
215
247
|
"conditionKeys": [],
|
|
216
|
-
"dependentActions": [
|
|
248
|
+
"dependentActions": [
|
|
249
|
+
"kms:Decrypt"
|
|
250
|
+
]
|
|
217
251
|
},
|
|
218
252
|
"getawsspconfigurationfordirectory": {
|
|
219
253
|
"name": "GetAWSSPConfigurationForDirectory",
|
|
@@ -229,7 +263,9 @@
|
|
|
229
263
|
"accessLevel": "Read",
|
|
230
264
|
"resourceTypes": [],
|
|
231
265
|
"conditionKeys": [],
|
|
232
|
-
"dependentActions": [
|
|
266
|
+
"dependentActions": [
|
|
267
|
+
"kms:Decrypt"
|
|
268
|
+
]
|
|
233
269
|
},
|
|
234
270
|
"getuserid": {
|
|
235
271
|
"name": "GetUserId",
|
|
@@ -237,7 +273,9 @@
|
|
|
237
273
|
"accessLevel": "Read",
|
|
238
274
|
"resourceTypes": [],
|
|
239
275
|
"conditionKeys": [],
|
|
240
|
-
"dependentActions": [
|
|
276
|
+
"dependentActions": [
|
|
277
|
+
"kms:Decrypt"
|
|
278
|
+
]
|
|
241
279
|
},
|
|
242
280
|
"getuserpoolinfo": {
|
|
243
281
|
"name": "GetUserPoolInfo",
|
|
@@ -261,7 +299,9 @@
|
|
|
261
299
|
"accessLevel": "Read",
|
|
262
300
|
"resourceTypes": [],
|
|
263
301
|
"conditionKeys": [],
|
|
264
|
-
"dependentActions": [
|
|
302
|
+
"dependentActions": [
|
|
303
|
+
"kms:Decrypt"
|
|
304
|
+
]
|
|
265
305
|
},
|
|
266
306
|
"ismemberingroups": {
|
|
267
307
|
"name": "IsMemberInGroups",
|
|
@@ -269,7 +309,9 @@
|
|
|
269
309
|
"accessLevel": "Read",
|
|
270
310
|
"resourceTypes": [],
|
|
271
311
|
"conditionKeys": [],
|
|
272
|
-
"dependentActions": [
|
|
312
|
+
"dependentActions": [
|
|
313
|
+
"kms:Decrypt"
|
|
314
|
+
]
|
|
273
315
|
},
|
|
274
316
|
"listbearertokens": {
|
|
275
317
|
"name": "ListBearerTokens",
|
|
@@ -277,7 +319,9 @@
|
|
|
277
319
|
"accessLevel": "Read",
|
|
278
320
|
"resourceTypes": [],
|
|
279
321
|
"conditionKeys": [],
|
|
280
|
-
"dependentActions": [
|
|
322
|
+
"dependentActions": [
|
|
323
|
+
"kms:Decrypt"
|
|
324
|
+
]
|
|
281
325
|
},
|
|
282
326
|
"listexternalidpcertificates": {
|
|
283
327
|
"name": "ListExternalIdPCertificates",
|
|
@@ -301,7 +345,9 @@
|
|
|
301
345
|
"accessLevel": "Read",
|
|
302
346
|
"resourceTypes": [],
|
|
303
347
|
"conditionKeys": [],
|
|
304
|
-
"dependentActions": [
|
|
348
|
+
"dependentActions": [
|
|
349
|
+
"kms:Decrypt"
|
|
350
|
+
]
|
|
305
351
|
},
|
|
306
352
|
"listgroupsformember": {
|
|
307
353
|
"name": "ListGroupsForMember",
|
|
@@ -309,7 +355,9 @@
|
|
|
309
355
|
"accessLevel": "Read",
|
|
310
356
|
"resourceTypes": [],
|
|
311
357
|
"conditionKeys": [],
|
|
312
|
-
"dependentActions": [
|
|
358
|
+
"dependentActions": [
|
|
359
|
+
"kms:Decrypt"
|
|
360
|
+
]
|
|
313
361
|
},
|
|
314
362
|
"listgroupsforuser": {
|
|
315
363
|
"name": "ListGroupsForUser",
|
|
@@ -317,7 +365,9 @@
|
|
|
317
365
|
"accessLevel": "Read",
|
|
318
366
|
"resourceTypes": [],
|
|
319
367
|
"conditionKeys": [],
|
|
320
|
-
"dependentActions": [
|
|
368
|
+
"dependentActions": [
|
|
369
|
+
"kms:Decrypt"
|
|
370
|
+
]
|
|
321
371
|
},
|
|
322
372
|
"listmembersingroup": {
|
|
323
373
|
"name": "ListMembersInGroup",
|
|
@@ -325,7 +375,9 @@
|
|
|
325
375
|
"accessLevel": "Read",
|
|
326
376
|
"resourceTypes": [],
|
|
327
377
|
"conditionKeys": [],
|
|
328
|
-
"dependentActions": [
|
|
378
|
+
"dependentActions": [
|
|
379
|
+
"kms:Decrypt"
|
|
380
|
+
]
|
|
329
381
|
},
|
|
330
382
|
"listmfadevicesforuser": {
|
|
331
383
|
"name": "ListMfaDevicesForUser",
|
|
@@ -341,7 +393,9 @@
|
|
|
341
393
|
"accessLevel": "Read",
|
|
342
394
|
"resourceTypes": [],
|
|
343
395
|
"conditionKeys": [],
|
|
344
|
-
"dependentActions": [
|
|
396
|
+
"dependentActions": [
|
|
397
|
+
"kms:Decrypt"
|
|
398
|
+
]
|
|
345
399
|
},
|
|
346
400
|
"listusers": {
|
|
347
401
|
"name": "ListUsers",
|
|
@@ -349,7 +403,9 @@
|
|
|
349
403
|
"accessLevel": "Read",
|
|
350
404
|
"resourceTypes": [],
|
|
351
405
|
"conditionKeys": [],
|
|
352
|
-
"dependentActions": [
|
|
406
|
+
"dependentActions": [
|
|
407
|
+
"kms:Decrypt"
|
|
408
|
+
]
|
|
353
409
|
},
|
|
354
410
|
"removememberfromgroup": {
|
|
355
411
|
"name": "RemoveMemberFromGroup",
|
|
@@ -357,7 +413,9 @@
|
|
|
357
413
|
"accessLevel": "Write",
|
|
358
414
|
"resourceTypes": [],
|
|
359
415
|
"conditionKeys": [],
|
|
360
|
-
"dependentActions": [
|
|
416
|
+
"dependentActions": [
|
|
417
|
+
"kms:Decrypt"
|
|
418
|
+
]
|
|
361
419
|
},
|
|
362
420
|
"searchgroups": {
|
|
363
421
|
"name": "SearchGroups",
|
|
@@ -365,7 +423,9 @@
|
|
|
365
423
|
"accessLevel": "Read",
|
|
366
424
|
"resourceTypes": [],
|
|
367
425
|
"conditionKeys": [],
|
|
368
|
-
"dependentActions": [
|
|
426
|
+
"dependentActions": [
|
|
427
|
+
"kms:Decrypt"
|
|
428
|
+
]
|
|
369
429
|
},
|
|
370
430
|
"searchusers": {
|
|
371
431
|
"name": "SearchUsers",
|
|
@@ -373,7 +433,9 @@
|
|
|
373
433
|
"accessLevel": "Read",
|
|
374
434
|
"resourceTypes": [],
|
|
375
435
|
"conditionKeys": [],
|
|
376
|
-
"dependentActions": [
|
|
436
|
+
"dependentActions": [
|
|
437
|
+
"kms:Decrypt"
|
|
438
|
+
]
|
|
377
439
|
},
|
|
378
440
|
"startvirtualmfadeviceregistration": {
|
|
379
441
|
"name": "StartVirtualMfaDeviceRegistration",
|
|
@@ -405,7 +467,9 @@
|
|
|
405
467
|
"accessLevel": "Write",
|
|
406
468
|
"resourceTypes": [],
|
|
407
469
|
"conditionKeys": [],
|
|
408
|
-
"dependentActions": [
|
|
470
|
+
"dependentActions": [
|
|
471
|
+
"kms:Decrypt"
|
|
472
|
+
]
|
|
409
473
|
},
|
|
410
474
|
"updategroupdisplayname": {
|
|
411
475
|
"name": "UpdateGroupDisplayName",
|
|
@@ -413,7 +477,9 @@
|
|
|
413
477
|
"accessLevel": "Write",
|
|
414
478
|
"resourceTypes": [],
|
|
415
479
|
"conditionKeys": [],
|
|
416
|
-
"dependentActions": [
|
|
480
|
+
"dependentActions": [
|
|
481
|
+
"kms:Decrypt"
|
|
482
|
+
]
|
|
417
483
|
},
|
|
418
484
|
"updatemfadeviceforuser": {
|
|
419
485
|
"name": "UpdateMfaDeviceForUser",
|
|
@@ -429,7 +495,9 @@
|
|
|
429
495
|
"accessLevel": "Write",
|
|
430
496
|
"resourceTypes": [],
|
|
431
497
|
"conditionKeys": [],
|
|
432
|
-
"dependentActions": [
|
|
498
|
+
"dependentActions": [
|
|
499
|
+
"kms:Decrypt"
|
|
500
|
+
]
|
|
433
501
|
},
|
|
434
502
|
"updateuser": {
|
|
435
503
|
"name": "UpdateUser",
|
|
@@ -437,7 +505,9 @@
|
|
|
437
505
|
"accessLevel": "Write",
|
|
438
506
|
"resourceTypes": [],
|
|
439
507
|
"conditionKeys": [],
|
|
440
|
-
"dependentActions": [
|
|
508
|
+
"dependentActions": [
|
|
509
|
+
"kms:Decrypt"
|
|
510
|
+
]
|
|
441
511
|
},
|
|
442
512
|
"updateusername": {
|
|
443
513
|
"name": "UpdateUserName",
|
|
@@ -445,7 +515,9 @@
|
|
|
445
515
|
"accessLevel": "Write",
|
|
446
516
|
"resourceTypes": [],
|
|
447
517
|
"conditionKeys": [],
|
|
448
|
-
"dependentActions": [
|
|
518
|
+
"dependentActions": [
|
|
519
|
+
"kms:Decrypt"
|
|
520
|
+
]
|
|
449
521
|
},
|
|
450
522
|
"verifyemail": {
|
|
451
523
|
"name": "VerifyEmail",
|
iamdata/data/actions/tax.json
CHANGED
|
@@ -15,6 +15,22 @@
|
|
|
15
15
|
"conditionKeys": [],
|
|
16
16
|
"dependentActions": []
|
|
17
17
|
},
|
|
18
|
+
"canceldocument": {
|
|
19
|
+
"name": "CancelDocument",
|
|
20
|
+
"description": "Grants permission to cancel documents such as withholding slips",
|
|
21
|
+
"accessLevel": "Write",
|
|
22
|
+
"resourceTypes": [],
|
|
23
|
+
"conditionKeys": [],
|
|
24
|
+
"dependentActions": []
|
|
25
|
+
},
|
|
26
|
+
"createdocument": {
|
|
27
|
+
"name": "CreateDocument",
|
|
28
|
+
"description": "Grants permission to upload new documents such as withholding slips",
|
|
29
|
+
"accessLevel": "Write",
|
|
30
|
+
"resourceTypes": [],
|
|
31
|
+
"conditionKeys": [],
|
|
32
|
+
"dependentActions": []
|
|
33
|
+
},
|
|
18
34
|
"deletesupplementaltaxregistration": {
|
|
19
35
|
"name": "DeleteSupplementalTaxRegistration",
|
|
20
36
|
"description": "Grants permission to delete supplemental tax registration data",
|
|
@@ -31,6 +47,22 @@
|
|
|
31
47
|
"conditionKeys": [],
|
|
32
48
|
"dependentActions": []
|
|
33
49
|
},
|
|
50
|
+
"getdocument": {
|
|
51
|
+
"name": "GetDocument",
|
|
52
|
+
"description": "Grants permission to retrieve documents such as withholding slips",
|
|
53
|
+
"accessLevel": "Read",
|
|
54
|
+
"resourceTypes": [],
|
|
55
|
+
"conditionKeys": [],
|
|
56
|
+
"dependentActions": []
|
|
57
|
+
},
|
|
58
|
+
"getdocumentuploadurl": {
|
|
59
|
+
"name": "GetDocumentUploadUrl",
|
|
60
|
+
"description": "Grants permission to retrieve a generated URL to upload documents",
|
|
61
|
+
"accessLevel": "Read",
|
|
62
|
+
"resourceTypes": [],
|
|
63
|
+
"conditionKeys": [],
|
|
64
|
+
"dependentActions": []
|
|
65
|
+
},
|
|
34
66
|
"getexemptions": {
|
|
35
67
|
"name": "GetExemptions",
|
|
36
68
|
"description": "Grants permission to view tax exemptions data",
|
|
@@ -81,6 +113,14 @@
|
|
|
81
113
|
"conditionKeys": [],
|
|
82
114
|
"dependentActions": []
|
|
83
115
|
},
|
|
116
|
+
"listdocuments": {
|
|
117
|
+
"name": "ListDocuments",
|
|
118
|
+
"description": "Grants permission to view documents such as withholding slips",
|
|
119
|
+
"accessLevel": "Read",
|
|
120
|
+
"resourceTypes": [],
|
|
121
|
+
"conditionKeys": [],
|
|
122
|
+
"dependentActions": []
|
|
123
|
+
},
|
|
84
124
|
"listsupplementaltaxregistrations": {
|
|
85
125
|
"name": "ListSupplementalTaxRegistrations",
|
|
86
126
|
"description": "Grants permission to view supplemental tax registrations",
|
|
@@ -97,6 +137,14 @@
|
|
|
97
137
|
"conditionKeys": [],
|
|
98
138
|
"dependentActions": []
|
|
99
139
|
},
|
|
140
|
+
"listwithholdingeligibleinvoices": {
|
|
141
|
+
"name": "ListWithholdingEligibleInvoices",
|
|
142
|
+
"description": "Grants permission to view eligible withholding invoices",
|
|
143
|
+
"accessLevel": "Read",
|
|
144
|
+
"resourceTypes": [],
|
|
145
|
+
"conditionKeys": [],
|
|
146
|
+
"dependentActions": []
|
|
147
|
+
},
|
|
100
148
|
"putsupplementaltaxregistration": {
|
|
101
149
|
"name": "PutSupplementalTaxRegistration",
|
|
102
150
|
"description": "Grants permission to update supplemental tax registrations data",
|
|
@@ -53,5 +53,10 @@
|
|
|
53
53
|
"key": "cloudformation:TemplateUrl",
|
|
54
54
|
"description": "Filters access by an Amazon S3 template URL. Use to control which templates IAM users can use when they create or update stacks",
|
|
55
55
|
"type": "String"
|
|
56
|
+
},
|
|
57
|
+
"cloudformation:typearn": {
|
|
58
|
+
"key": "cloudformation:TypeArn",
|
|
59
|
+
"description": "Filters access by the ARN of a CloudFormation extension",
|
|
60
|
+
"type": "ARN"
|
|
56
61
|
}
|
|
57
62
|
}
|
|
@@ -13,5 +13,20 @@
|
|
|
13
13
|
"key": "aws:TagKeys",
|
|
14
14
|
"description": "Filters access by the tag keys that are passed in the request",
|
|
15
15
|
"type": "ArrayOfString"
|
|
16
|
+
},
|
|
17
|
+
"observabilityadmin:centralizationbackupregion": {
|
|
18
|
+
"key": "observabilityadmin:CentralizationBackupRegion",
|
|
19
|
+
"description": "Filters access by the backup region that is passed in the request",
|
|
20
|
+
"type": "String"
|
|
21
|
+
},
|
|
22
|
+
"observabilityadmin:centralizationdestinationregion": {
|
|
23
|
+
"key": "observabilityadmin:CentralizationDestinationRegion",
|
|
24
|
+
"description": "Filters access by the destination region that is passed in the request",
|
|
25
|
+
"type": "String"
|
|
26
|
+
},
|
|
27
|
+
"observabilityadmin:centralizationsourceregions": {
|
|
28
|
+
"key": "observabilityadmin:CentralizationSourceRegions",
|
|
29
|
+
"description": "Filters access by the source regions that are passed in the request",
|
|
30
|
+
"type": "ArrayOfString"
|
|
16
31
|
}
|
|
17
32
|
}
|
iamdata/data/metadata.json
CHANGED
|
@@ -12,5 +12,12 @@
|
|
|
12
12
|
"conditionKeys": [
|
|
13
13
|
"aws:ResourceTag/${TagKey}"
|
|
14
14
|
]
|
|
15
|
+
},
|
|
16
|
+
"organization-centralization-rule": {
|
|
17
|
+
"key": "organization-centralization-rule",
|
|
18
|
+
"arn": "arn:${Partition}:observabilityadmin:${Region}:${Account}:organization-centralization-rule:${CentralizationRuleName}",
|
|
19
|
+
"conditionKeys": [
|
|
20
|
+
"aws:ResourceTag/${TagKey}"
|
|
21
|
+
]
|
|
15
22
|
}
|
|
16
23
|
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: iamdata
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.202509161
|
|
4
4
|
Summary: IAM data for AWS actions, resources, and conditions based on IAM policy documents. Checked for updates daily.
|
|
5
5
|
Project-URL: Homepage, https://github.com/cloud-copilot/iam-data-python
|
|
6
6
|
Project-URL: Issues, https://github.com/cloud-copilot/iam-data-python/issues
|
|
@@ -5,7 +5,7 @@ iamdata/resources.py,sha256=q55U8l74HnjnkHp1-i2-rZCe-IsZpZWmfGeMvQjf4xo,1166
|
|
|
5
5
|
iamdata/services.py,sha256=trEYZQnUb_vwEN-L29RY-vJFnEXDGrpppVpAeQazjgw,689
|
|
6
6
|
iamdata/utils.py,sha256=mwNqfgNO51L33Ag_K9VxaP85J6XRoZrN7rKz6Q_DJQk,398
|
|
7
7
|
iamdata/data/conditionPatterns.json,sha256=V5ku4ezJfk6znSFJ1_o-qjzjondyQIR66exDGblNmLY,6431
|
|
8
|
-
iamdata/data/metadata.json,sha256=
|
|
8
|
+
iamdata/data/metadata.json,sha256=lGdA4ChbW1ZF5oq5IU4ZLEugrfQKVxWvw8ng9ofSUTg,76
|
|
9
9
|
iamdata/data/serviceNames.json,sha256=7JeiQW8vW89qj2ZiUVKeeAi61Wo-DcxWwCCTKxPx888,18866
|
|
10
10
|
iamdata/data/services.json,sha256=bvvZkc0zB27LMZr4oER7-EXSQU1-r8DdPLK-cEg1DNo,7304
|
|
11
11
|
iamdata/data/unassociatedConditions.json,sha256=6EY1aU1vxuC97fhahdbkuy3FE_vxzxRewxDj8RPuC3U,244
|
|
@@ -78,7 +78,7 @@ iamdata/data/actions/cleanrooms-ml.json,sha256=X_4SPuOACo_4We5-3JYBIP1bPPJzdD4XR
|
|
|
78
78
|
iamdata/data/actions/cleanrooms.json,sha256=2zpewHmGNbqJA7d73sNoATGoDebpfyIRa4noV8wDRt8,51077
|
|
79
79
|
iamdata/data/actions/cloud9.json,sha256=hPRl1ah40UI913-gRC8Bo8hPAtAbe0nsytNy6lxTHqw,12969
|
|
80
80
|
iamdata/data/actions/clouddirectory.json,sha256=CH3QAtTSZb7UCWXCYkfddRG5rGNbIXupVatrFPKG4PM,29198
|
|
81
|
-
iamdata/data/actions/cloudformation.json,sha256=
|
|
81
|
+
iamdata/data/actions/cloudformation.json,sha256=_wCxP6k4zAaDQRbPQiDr3OJJ2-YfCoVWMk_WJ6cSN4Q,39265
|
|
82
82
|
iamdata/data/actions/cloudfront-keyvaluestore.json,sha256=hNTagDn1DcoTc-XDysrPaGQ3qjbddWwh2DkHt_4Cxws,2333
|
|
83
83
|
iamdata/data/actions/cloudfront.json,sha256=1Tsu9Jbp4CWGrN-xKcb0dc4pWPM_44Dl_HZrP2tQmAQ,58954
|
|
84
84
|
iamdata/data/actions/cloudhsm.json,sha256=0SZZuGsbD3xPP59CTdoe_RHwQ-PqYYRdwrITdAlCOMc,8105
|
|
@@ -123,7 +123,7 @@ iamdata/data/actions/databrew.json,sha256=dJ2MhTmcx_k9wnbzptyfoA3N4pfphvm86i06j8
|
|
|
123
123
|
iamdata/data/actions/dataexchange.json,sha256=tnNIB0P2Nd9KmBGi1F55lfIoBm2Mg0rAgJ5AZ2nx6x0,17264
|
|
124
124
|
iamdata/data/actions/datapipeline.json,sha256=nuwKEl4_jScwy_lv_al5404Oawtb9fKm0JqC1-FeuMg,9499
|
|
125
125
|
iamdata/data/actions/datasync.json,sha256=4S8jnNmT0XcIulQqwUIfF13dJ7DhxhROk0SoFQlDa1c,27099
|
|
126
|
-
iamdata/data/actions/datazone.json,sha256=
|
|
126
|
+
iamdata/data/actions/datazone.json,sha256=k4jqGhCelKly4gpcCAw8Y-vhFcA4yArEkak-8ZXS5VY,50637
|
|
127
127
|
iamdata/data/actions/dax.json,sha256=YlzIFQbFkDrgdZ7nB6wjOsGCRCqtzriZ8Izjok2ZFXo,10889
|
|
128
128
|
iamdata/data/actions/dbqms.json,sha256=EWysMBNi2wG7R8UZGlyQc6NAdy1WaML-die32lA8wwA,3105
|
|
129
129
|
iamdata/data/actions/deadline.json,sha256=Y7eebR7mdzS8LPpbyvnk62R7tkumpvqWlyovohgWB1o,55464
|
|
@@ -199,14 +199,14 @@ iamdata/data/actions/honeycode.json,sha256=BVtEU7xzGQ_QEm2BJW_j2NdNkVm9BWnG73y14
|
|
|
199
199
|
iamdata/data/actions/iam.json,sha256=I83uLhuZHku2Mx_9qj92pUdJmpTfik-7ZEVl3iPhrq8,72162
|
|
200
200
|
iamdata/data/actions/identity-sync.json,sha256=w2y9PcBgULyvcuf1Rk68KcSsyFpkklKSpkQ2HO-AOkE,5633
|
|
201
201
|
iamdata/data/actions/identitystore-auth.json,sha256=m2DQl4cOuoIGJgcStZ1WlYTJf5MxxsRhLumaxKBzhOM,866
|
|
202
|
-
iamdata/data/actions/identitystore.json,sha256=
|
|
202
|
+
iamdata/data/actions/identitystore.json,sha256=xJ_8jNBOEDYk0ig_H4Pg7Guyb7RQUfVUtD2JzMsDFh0,13008
|
|
203
203
|
iamdata/data/actions/imagebuilder.json,sha256=9Sa1bZgpX3fNZ0cmgBNyDg7gCbuf-q5_uQSVlW2DmkY,37832
|
|
204
204
|
iamdata/data/actions/importexport.json,sha256=h1-JuJoaK_SEIUsKjZlSpjdlQ86fyNwkHCvi13vysPM,1738
|
|
205
205
|
iamdata/data/actions/inspector-scan.json,sha256=JxxlHGqpy6IUkAwGOWcIbg7Od4yr12QG3-KaKEd1HPI,269
|
|
206
206
|
iamdata/data/actions/inspector.json,sha256=Ub-q2PoES3dnr4drOiK8r2OO0ZNM9r_JnhJ8zkGdlgU,11657
|
|
207
207
|
iamdata/data/actions/inspector2.json,sha256=2TwZdy2sLPteb07iuTz6O07EjqbsDEt1fbQpRP6-bvE,25325
|
|
208
208
|
iamdata/data/actions/internetmonitor.json,sha256=gulk0F9omlCMYcIKxfy1_OocDJrtNpyFxAjOQdNDpdY,6094
|
|
209
|
-
iamdata/data/actions/invoicing.json,sha256=
|
|
209
|
+
iamdata/data/actions/invoicing.json,sha256=LGKXSWA24J7mB56ZaiQhrOVgYVS1FnMMwjJtcXoyXBU,5366
|
|
210
210
|
iamdata/data/actions/iot-device-tester.json,sha256=p9FlOHY4s67o7q-FmGsFVndW4uvo67_fSn_o3PySkBw,1393
|
|
211
211
|
iamdata/data/actions/iot.json,sha256=AOArl4JFnrIl30ryuItAgrJtBhUP0632fnDCfpbcdEg,121008
|
|
212
212
|
iamdata/data/actions/iotanalytics.json,sha256=97BKV-eWEdhuEwkNBFS3ILrv8B8zK-hihuJIByp6YJg,12912
|
|
@@ -284,7 +284,7 @@ iamdata/data/actions/nimble.json,sha256=qbGuVK2E0ScfVvv8O2LJqzaa4vJomOED_wrsNxXB
|
|
|
284
284
|
iamdata/data/actions/notifications-contacts.json,sha256=JZ3Mq09FVDcfZcsYQgQN8OUgp60SHoRSnKRhg-1sRKo,3289
|
|
285
285
|
iamdata/data/actions/notifications.json,sha256=8zscd6PaDVjZc0RhJRPUmEtrymPyPciQPtm8zAkSQe8,15253
|
|
286
286
|
iamdata/data/actions/oam.json,sha256=A2X3P7Xoi5fgeAFzVUbgtMJ_AB80fGTBI84pQoQ6PDo,6568
|
|
287
|
-
iamdata/data/actions/observabilityadmin.json,sha256=
|
|
287
|
+
iamdata/data/actions/observabilityadmin.json,sha256=GaM0WaLTjl4E8Bz_jQGoP2o2-GyjMu675syEDpPF_4k,11940
|
|
288
288
|
iamdata/data/actions/odb.json,sha256=0MTgqoae5KAhg7DqlMkpDsUOSE2qqo8F8nw05bMd-oo,22259
|
|
289
289
|
iamdata/data/actions/omics.json,sha256=MBuT-Dp0aXrevfXSTBU5cEN4_0Ffdq3tm13etZk1PAA,39397
|
|
290
290
|
iamdata/data/actions/one.json,sha256=9Ww9qFomWyq4R_awQOIGVmhOEoXqgwlJSGj4gYsndAc,11248
|
|
@@ -345,7 +345,7 @@ iamdata/data/actions/route53resolver.json,sha256=c-Jrx6AKsdGmJxbfSbDiHWfkZTpDpRw
|
|
|
345
345
|
iamdata/data/actions/rum.json,sha256=2VetwUsiBrv5jiqU_ooNaLRqDNo2Un2XrbsHn36nvTQ,7807
|
|
346
346
|
iamdata/data/actions/s3-object-lambda.json,sha256=Ww7Q01cskGps7KOQBQoWDiNmtrgrizGpCm8uToRECTg,14214
|
|
347
347
|
iamdata/data/actions/s3-outposts.json,sha256=vwem_HDJo5SwZzQ-XfX6W5R2qA88fwQCp86KRZ4D6oI,29372
|
|
348
|
-
iamdata/data/actions/s3.json,sha256=
|
|
348
|
+
iamdata/data/actions/s3.json,sha256=XZ0whx9wQ201vBblmDEcYP8nOgwO1gEqXTGR23HWKoU,109785
|
|
349
349
|
iamdata/data/actions/s3express.json,sha256=yq9P22UjX4ndQlTaCT43R_SGwoO2UZGFHH5R86u4uPo,15950
|
|
350
350
|
iamdata/data/actions/s3tables.json,sha256=2vcdg7jf0oEWONiY3Gsf5C15h5BfaQ7lE7cr9bVXsO8,14025
|
|
351
351
|
iamdata/data/actions/s3vectors.json,sha256=BZhhEDAVEPP5ftF2fNOGuAEAtYcME_MPoYeGWR99Ef4,6337
|
|
@@ -387,7 +387,7 @@ iamdata/data/actions/ssm-quicksetup.json,sha256=uTX5lGIhFqIfqfTlJ4N_wgSm4hVywgLd
|
|
|
387
387
|
iamdata/data/actions/ssm-sap.json,sha256=jmiUval48vekNp4OVHVSB4RqtSnL-Z1kUnu2s2bjmbM,10546
|
|
388
388
|
iamdata/data/actions/ssm.json,sha256=9mTf108bWFFJHWmhpocqjUx57J9-9BDRW_SVPJFQ3q0,72148
|
|
389
389
|
iamdata/data/actions/ssmmessages.json,sha256=qgUMhrTZNlb0cktmE6j2kqt89c6pbknWMvXJ6g1XeCY,1321
|
|
390
|
-
iamdata/data/actions/sso-directory.json,sha256=
|
|
390
|
+
iamdata/data/actions/sso-directory.json,sha256=d_kgAAQaui8k4UDevqkhk3W2GkHHscq36667ppbHZXU,17404
|
|
391
391
|
iamdata/data/actions/sso-oauth.json,sha256=qvNNSnmRdrN-yqZsnRCTLULeva6ju_kXh3YC8RW2MLw,432
|
|
392
392
|
iamdata/data/actions/sso.json,sha256=fthvCl2Jl9TDo8Q34haAzvWU2NzZtKkzze7UqIZtrLA,51518
|
|
393
393
|
iamdata/data/actions/states.json,sha256=DNJWrTYPKKwY-qi9CINOI1Ajv9bkI0bIckSEA2E28w8,15468
|
|
@@ -401,7 +401,7 @@ iamdata/data/actions/sustainability.json,sha256=b8CNrtppR_4schwoRrlDz_ylztwLaNmv
|
|
|
401
401
|
iamdata/data/actions/swf.json,sha256=1iUenJtd4QkZ_1CprxmCYOEl84xuK1G9xgVg0fEZ2-s,23946
|
|
402
402
|
iamdata/data/actions/synthetics.json,sha256=_RDjrSsueamor4rfrx5uI-NmsYYYlxdCNv_TeNIADfU,9146
|
|
403
403
|
iamdata/data/actions/tag.json,sha256=tdQDgZqx6JbKFfIe07yrGpHqbbde2nnxgera-F1xElY,2364
|
|
404
|
-
iamdata/data/actions/tax.json,sha256=
|
|
404
|
+
iamdata/data/actions/tax.json,sha256=0X7__3ipuBfK82eYE3_GQgWz42VlVpqBIGkICkv1ODE,5868
|
|
405
405
|
iamdata/data/actions/textract.json,sha256=2rvvfLNuj7bTT7btlXT0_sVv2oH_xCc1_jMimTuA8m0,8725
|
|
406
406
|
iamdata/data/actions/thinclient.json,sha256=th_GOkqxk9v4EKXQxC7uE_pmQoc79jboyMMRDkDWuPE,7960
|
|
407
407
|
iamdata/data/actions/timestream-influxdb.json,sha256=hI-p6MRus7-K4aWB6RfhPnKHg9ZPjx8S-TR2AshnH7Y,7876
|
|
@@ -507,7 +507,7 @@ iamdata/data/conditionKeys/cleanrooms-ml.json,sha256=kb-CshNkSY0REH87rQTvkITdTQI
|
|
|
507
507
|
iamdata/data/conditionKeys/cleanrooms.json,sha256=bykLz99TDnMUiW3mYBFaOB8Dd0QuWAzWkxf97Dc1jnc,518
|
|
508
508
|
iamdata/data/conditionKeys/cloud9.json,sha256=_qgOoPNYDkbiGptpHNCclt-qXY_ANDXwJZ1ETKi2d-Q,1674
|
|
509
509
|
iamdata/data/conditionKeys/clouddirectory.json,sha256=RBNvo1WzZ4oRRq0W9-hknpT7T8If536DEMBg9hyq_4o,2
|
|
510
|
-
iamdata/data/conditionKeys/cloudformation.json,sha256=
|
|
510
|
+
iamdata/data/conditionKeys/cloudformation.json,sha256=u0iPOTu__DDtY7SDHEo-ObSgxxVNCwAYG3I2fqaV-RY,2889
|
|
511
511
|
iamdata/data/conditionKeys/cloudfront-keyvaluestore.json,sha256=RBNvo1WzZ4oRRq0W9-hknpT7T8If536DEMBg9hyq_4o,2
|
|
512
512
|
iamdata/data/conditionKeys/cloudfront.json,sha256=zEeikDtpevSe6WUIZCJdysI0GaQNr0mYlhp4HYRsED0,532
|
|
513
513
|
iamdata/data/conditionKeys/cloudhsm.json,sha256=zEeikDtpevSe6WUIZCJdysI0GaQNr0mYlhp4HYRsED0,532
|
|
@@ -713,7 +713,7 @@ iamdata/data/conditionKeys/nimble.json,sha256=mfndHQAvd-5McPeuM5WDoKHV5CZwKSYTW_
|
|
|
713
713
|
iamdata/data/conditionKeys/notifications-contacts.json,sha256=bykLz99TDnMUiW3mYBFaOB8Dd0QuWAzWkxf97Dc1jnc,518
|
|
714
714
|
iamdata/data/conditionKeys/notifications.json,sha256=bykLz99TDnMUiW3mYBFaOB8Dd0QuWAzWkxf97Dc1jnc,518
|
|
715
715
|
iamdata/data/conditionKeys/oam.json,sha256=DTRhl_m8MRuOaYlwkgmFSvoHeIqHNrAZIHo6lUlpk7s,708
|
|
716
|
-
iamdata/data/conditionKeys/observabilityadmin.json,sha256=
|
|
716
|
+
iamdata/data/conditionKeys/observabilityadmin.json,sha256=LriUjab7kHXvNIoNq2TdVOicZ_Nu0q3OzgeftO_zYs0,1225
|
|
717
717
|
iamdata/data/conditionKeys/odb.json,sha256=jiA_afWqChWCZFRSqtRhqJvFyLPaxcsANrzqzN2bos0,542
|
|
718
718
|
iamdata/data/conditionKeys/omics.json,sha256=w0KRgBATjKpVNc8xvvBy6Vt0YCl25swAjAX8T6FOXko,548
|
|
719
719
|
iamdata/data/conditionKeys/one.json,sha256=gMTfYvr8trF0nuLC-nihDc7UOxC4eFkKUIEF1UAU6eQ,532
|
|
@@ -1142,7 +1142,7 @@ iamdata/data/resourceTypes/nimble.json,sha256=mJooBiIMAsMh0LxaNB1wqfEZGd4Xxg8MyR
|
|
|
1142
1142
|
iamdata/data/resourceTypes/notifications-contacts.json,sha256=Wjo9mcgPWQcPFw59k6REhus-1aJRwTB4szoYxz_7nvg,230
|
|
1143
1143
|
iamdata/data/resourceTypes/notifications.json,sha256=InbA14Y_4ZB9CK2QgyA3g1ipH1Me5C5oHda9IKoWzW4,1385
|
|
1144
1144
|
iamdata/data/resourceTypes/oam.json,sha256=9jPxgQGszJPZS0cBLPt_nM8HtYpzwFemBiApguNJhtA,350
|
|
1145
|
-
iamdata/data/resourceTypes/observabilityadmin.json,sha256
|
|
1145
|
+
iamdata/data/resourceTypes/observabilityadmin.json,sha256=-xu0VpJ7X9narbgaMuyoy7jHYtJmofphnkDPAx2xa-s,778
|
|
1146
1146
|
iamdata/data/resourceTypes/odb.json,sha256=nfDB9Y76-iH6Vp6Rkc5ieWuokcTem4jk3xOzjycQ7k0,1359
|
|
1147
1147
|
iamdata/data/resourceTypes/omics.json,sha256=vkNM38NG5KSxncBDKznXYYQf6ezfWymEOSG_81olAOY,2731
|
|
1148
1148
|
iamdata/data/resourceTypes/one.json,sha256=o6TS-sCaSAdls2Hrs_TeJNWKR4auMHGLXF2luS68KkU,910
|
|
@@ -1300,7 +1300,7 @@ iamdata/tests/actions.py,sha256=cg2f1KPOzBYvGf7kJC9OokOo9oP_hS55tvt0_UKZVMw,1071
|
|
|
1300
1300
|
iamdata/tests/conditions.py,sha256=YbQZ_V7zQh4FkCp2wCBjw_NmNMVmwtcLAQrN7Iw2uJ0,1250
|
|
1301
1301
|
iamdata/tests/resources.py,sha256=I9N-PHtu1wjrB-y9kBTvb1lFnvsDb03EipHRj2nIQl4,1177
|
|
1302
1302
|
iamdata/tests/services.py,sha256=Kj1EQ9AeHHXYifvnybdH83xafXTxgYFt40KUghP_B8I,1016
|
|
1303
|
-
iamdata-0.1.
|
|
1304
|
-
iamdata-0.1.
|
|
1305
|
-
iamdata-0.1.
|
|
1306
|
-
iamdata-0.1.
|
|
1303
|
+
iamdata-0.1.202509161.dist-info/METADATA,sha256=A1Hd5rW0ZtcuYUgr4MQe_e7NIGNDaY8PUnfITbfs4mc,3491
|
|
1304
|
+
iamdata-0.1.202509161.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
1305
|
+
iamdata-0.1.202509161.dist-info/licenses/LICENSE.txt,sha256=f7okslHWZM8fVIaucefW0FUlap5UxIqOrAWqzSCoeZA,1069
|
|
1306
|
+
iamdata-0.1.202509161.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|