iamdata 0.1.202505061__py3-none-any.whl → 0.1.202505081__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.

@@ -30,6 +30,7 @@
30
30
  "resourceTypes": [],
31
31
  "conditionKeys": [
32
32
  "aws:RequestTag/${TagKey}",
33
+ "aws:ResourceTag/${TagKey}",
33
34
  "aws:TagKeys"
34
35
  ],
35
36
  "dependentActions": []
@@ -59,6 +60,7 @@
59
60
  "resourceTypes": [],
60
61
  "conditionKeys": [
61
62
  "aws:RequestTag/${TagKey}",
63
+ "aws:ResourceTag/${TagKey}",
62
64
  "aws:TagKeys"
63
65
  ],
64
66
  "dependentActions": [
@@ -73,6 +75,7 @@
73
75
  "resourceTypes": [],
74
76
  "conditionKeys": [
75
77
  "aws:RequestTag/${TagKey}",
78
+ "aws:ResourceTag/${TagKey}",
76
79
  "aws:TagKeys"
77
80
  ],
78
81
  "dependentActions": []
@@ -34,7 +34,11 @@
34
34
  "description": "Grants permission to create a Cedar policy and save it in the specified policy store",
35
35
  "accessLevel": "Write",
36
36
  "resourceTypes": [],
37
- "conditionKeys": [],
37
+ "conditionKeys": [
38
+ "aws:ResourceTag/${TagKey}",
39
+ "aws:RequestTag/${TagKey}",
40
+ "aws:TagKeys"
41
+ ],
38
42
  "dependentActions": []
39
43
  },
40
44
  "createpolicytemplate": {
@@ -155,7 +159,9 @@
155
159
  }
156
160
  ],
157
161
  "conditionKeys": [],
158
- "dependentActions": []
162
+ "dependentActions": [
163
+ "verifiedpermissions:ListTagsForResource"
164
+ ]
159
165
  },
160
166
  "getpolicytemplate": {
161
167
  "name": "GetPolicyTemplate",
@@ -270,6 +276,21 @@
270
276
  "conditionKeys": [],
271
277
  "dependentActions": []
272
278
  },
279
+ "listtagsforresource": {
280
+ "name": "ListTagsForResource",
281
+ "description": "Grants permission to view a list of resource tags for the specified policy store",
282
+ "accessLevel": "Read",
283
+ "resourceTypes": [
284
+ {
285
+ "name": "policy-store",
286
+ "required": true,
287
+ "conditionKeys": [],
288
+ "dependentActions": []
289
+ }
290
+ ],
291
+ "conditionKeys": [],
292
+ "dependentActions": []
293
+ },
273
294
  "putschema": {
274
295
  "name": "PutSchema",
275
296
  "description": "Grants permission to create or update the policy schema in the specified policy store",
@@ -285,6 +306,41 @@
285
306
  "conditionKeys": [],
286
307
  "dependentActions": []
287
308
  },
309
+ "tagresource": {
310
+ "name": "TagResource",
311
+ "description": "Grants permission to add tags to the specified policy store",
312
+ "accessLevel": "Tagging",
313
+ "resourceTypes": [
314
+ {
315
+ "name": "policy-store",
316
+ "required": true,
317
+ "conditionKeys": [],
318
+ "dependentActions": []
319
+ }
320
+ ],
321
+ "conditionKeys": [
322
+ "aws:RequestTag/${TagKey}",
323
+ "aws:TagKeys"
324
+ ],
325
+ "dependentActions": []
326
+ },
327
+ "untagresource": {
328
+ "name": "UntagResource",
329
+ "description": "Grants permission to remove tags from the specified policy store",
330
+ "accessLevel": "Tagging",
331
+ "resourceTypes": [
332
+ {
333
+ "name": "policy-store",
334
+ "required": true,
335
+ "conditionKeys": [],
336
+ "dependentActions": []
337
+ }
338
+ ],
339
+ "conditionKeys": [
340
+ "aws:TagKeys"
341
+ ],
342
+ "dependentActions": []
343
+ },
288
344
  "updateidentitysource": {
289
345
  "name": "UpdateIdentitySource",
290
346
  "description": "Grants permission to update the specified identity source to use a new identity provider (IdP) source, or to change the mapping of identities from the IdP to a different principal entity type",
@@ -16,7 +16,7 @@
16
16
  },
17
17
  "sso:applicationaccount": {
18
18
  "key": "sso:ApplicationAccount",
19
- "description": "Filters access by the account which creates the application",
19
+ "description": "Filters access by the account which creates the application. This condition key is not supported for customer managed SAML applications",
20
20
  "type": "String"
21
21
  }
22
22
  }
@@ -1 +1,17 @@
1
- {}
1
+ {
2
+ "aws:requesttag/${tagkey}": {
3
+ "key": "aws:RequestTag/${TagKey}",
4
+ "description": "Filters access by a tag key and value pair that is allowed in the request",
5
+ "type": "String"
6
+ },
7
+ "aws:resourcetag/${tagkey}": {
8
+ "key": "aws:ResourceTag/${TagKey}",
9
+ "description": "Filters access by a tag key and value pair of a resource",
10
+ "type": "String"
11
+ },
12
+ "aws:tagkeys": {
13
+ "key": "aws:TagKeys",
14
+ "description": "Filters access by a list of tag keys that are allowed in the request",
15
+ "type": "ArrayOfString"
16
+ }
17
+ }
@@ -1,4 +1,4 @@
1
1
  {
2
- "version": "0.1.202505061",
3
- "updatedAt": "2025-05-06T04:49:19.103Z"
2
+ "version": "0.1.202505081",
3
+ "updatedAt": "2025-05-08T04:49:10.275Z"
4
4
  }
@@ -1,6 +1,9 @@
1
1
  {
2
2
  "policy-store": {
3
3
  "key": "policy-store",
4
- "arn": "arn:${Partition}:verifiedpermissions::${Account}:policy-store/${PolicyStoreId}"
4
+ "arn": "arn:${Partition}:verifiedpermissions::${Account}:policy-store/${PolicyStoreId}",
5
+ "conditionKeys": [
6
+ "aws:ResourceTag/${TagKey}"
7
+ ]
5
8
  }
6
9
  }
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: iamdata
3
- Version: 0.1.202505061
3
+ Version: 0.1.202505081
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
@@ -4,7 +4,7 @@ iamdata/conditions.py,sha256=JmNyw26ux0SsUGRLctBpVZNi-A88rK9HwMy_e76vxTk,1127
4
4
  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
- iamdata/data/metadata.json,sha256=KjEf0a2Nn7imlh_Pyi1Hc16VPpPvPIfBYHw_snfgYd8,76
7
+ iamdata/data/metadata.json,sha256=CJLBY-7GLobzo9WfmjZL4iqL3F1xzl6nkEJggwjg1Cw,76
8
8
  iamdata/data/serviceNames.json,sha256=Wx4GhKx96LH3n5UZYsIDNYNYyG-0pFI_MWMVkoV2dXw,18380
9
9
  iamdata/data/services.json,sha256=0tkwVwsXZ7YNfVjg6S09bzI6yU8Tkd8wv1WEt9gtmYk,7130
10
10
  iamdata/data/actions/a2c.json,sha256=gdQce9wi9GkwSZX-kLklr_Pp3H6haDhGjpWHqWhYLW8,1032
@@ -185,7 +185,7 @@ iamdata/data/actions/grafana.json,sha256=g4Ct_18oZiEXYdFz-mk6EDCMA9p79JpU9_PEiEw
185
185
  iamdata/data/actions/greengrass.json,sha256=yR-vVgkpuNhtC-5zSSMAv_nnJ_cc1FL7Bbsyuh8fOB8,49899
186
186
  iamdata/data/actions/groundstation.json,sha256=YuT4x1t4zipFo08zIgW_CSdfkhknPPrhx-EwZOZbz5A,12250
187
187
  iamdata/data/actions/groundtruthlabeling.json,sha256=aDBtvIDWBDxV1JLzxH5XzPSq9-2OwOcaH2VuKjkQQWQ,4503
188
- iamdata/data/actions/guardduty.json,sha256=YaQbTkRjbubBYuBKJc_v2n1VYSf_zxXeINlS8CdP5gA,25796
188
+ iamdata/data/actions/guardduty.json,sha256=WVwYPRT64Takxy5cEwAnBQRY3q3TqDik1fn-j9HLqcA,25901
189
189
  iamdata/data/actions/health.json,sha256=STB5wgp2_Gz4Y1lXGAUoPGJbhAx2pTlkQ1AAvDjXk0E,5296
190
190
  iamdata/data/actions/healthlake.json,sha256=iQPh4dXfChtbNwTFnecuo8gfAgBCOPcmgUBfL2KLTyY,11445
191
191
  iamdata/data/actions/honeycode.json,sha256=BVtEU7xzGQ_QEm2BJW_j2NdNkVm9BWnG73y14LQV4Bs,9710
@@ -406,7 +406,7 @@ iamdata/data/actions/ts.json,sha256=GIZqbhh1J0-hPithINogkxbG0Zy20F1bT_yrTEh2gEM,
406
406
  iamdata/data/actions/user-subscriptions.json,sha256=P1UUUzK-bB8RwImjpKPH-QYqZ2cOurFRxHPP80bU6JI,1488
407
407
  iamdata/data/actions/vendor-insights.json,sha256=qEcP85B6_ucX10cqdt8Tu7hOh54Ittzw2qB2kJRQZyk,10434
408
408
  iamdata/data/actions/verified-access.json,sha256=RLtyTcTlf6ayUNPE9Dqa8gVsEf6kmUyf3Q7DLycttnA,279
409
- iamdata/data/actions/verifiedpermissions.json,sha256=yuPSlIEao3MPi9X0HMGkCOqx7zqi5896wBFioexMC_Y,9868
409
+ iamdata/data/actions/verifiedpermissions.json,sha256=biPfeXJ_VKFozahn5tUksrIsxrUUYcaqafSU1lNacls,11279
410
410
  iamdata/data/actions/voiceid.json,sha256=YlpLh3y1tWrjP_1Ng0GnVWVgOhtqWL3K_ZVsJipDkaI,11220
411
411
  iamdata/data/actions/vpc-lattice-svcs.json,sha256=hl45R6pufij-bcq3-wkSuk29S1GeNnFqvE16EpbR6Js,1233
412
412
  iamdata/data/actions/vpc-lattice.json,sha256=Sf0XnWvFF0qqUFLHheWOIF2aWlVLXiFE4h8LzsUbR1c,35761
@@ -797,7 +797,7 @@ iamdata/data/conditionKeys/ssm.json,sha256=uoLany3hXi11SH8KQdLHb6ACmQxfRjSDc3Xyz
797
797
  iamdata/data/conditionKeys/ssmmessages.json,sha256=Wj2FI88_ylE-MehRI2ouDKNCWnYP7AKTntm8_vJsOmw,576
798
798
  iamdata/data/conditionKeys/sso-directory.json,sha256=RBNvo1WzZ4oRRq0W9-hknpT7T8If536DEMBg9hyq_4o,2
799
799
  iamdata/data/conditionKeys/sso-oauth.json,sha256=RBNvo1WzZ4oRRq0W9-hknpT7T8If536DEMBg9hyq_4o,2
800
- iamdata/data/conditionKeys/sso.json,sha256=U26MDFtq4_XVS8oqRFeKl8xLh-_BzstU3SQDtgobPPI,693
800
+ iamdata/data/conditionKeys/sso.json,sha256=Kzn3rptUfOlPtp9ycqyMT_odUXeNkc-0Ay9XFvAt708,769
801
801
  iamdata/data/conditionKeys/states.json,sha256=q7gPzhC0bJmtcNnwVjK8Qpozo-cgVazQdd__HP86-uo,1099
802
802
  iamdata/data/conditionKeys/storagegateway.json,sha256=dldzYUchHPuUjVd91C9ti1H4fC65mmCXdOxYDVmd01k,528
803
803
  iamdata/data/conditionKeys/sts.json,sha256=Ly-lFGNyiO0orJve9KoqMLQfTGTWmMhYInPc3m2aJjk,9201
@@ -824,7 +824,7 @@ iamdata/data/conditionKeys/ts.json,sha256=dldzYUchHPuUjVd91C9ti1H4fC65mmCXdOxYDV
824
824
  iamdata/data/conditionKeys/user-subscriptions.json,sha256=KJP6ElzcMsR7B41e7wMBOZrV7PBjL-yvmxiShpBsmSE,219
825
825
  iamdata/data/conditionKeys/vendor-insights.json,sha256=czK0ZdIV-Qn0wfQx1WfJpq-k-QnO95TJEZ553HqF0Kw,506
826
826
  iamdata/data/conditionKeys/verified-access.json,sha256=RBNvo1WzZ4oRRq0W9-hknpT7T8If536DEMBg9hyq_4o,2
827
- iamdata/data/conditionKeys/verifiedpermissions.json,sha256=RBNvo1WzZ4oRRq0W9-hknpT7T8If536DEMBg9hyq_4o,2
827
+ iamdata/data/conditionKeys/verifiedpermissions.json,sha256=jiA_afWqChWCZFRSqtRhqJvFyLPaxcsANrzqzN2bos0,542
828
828
  iamdata/data/conditionKeys/voiceid.json,sha256=czK0ZdIV-Qn0wfQx1WfJpq-k-QnO95TJEZ553HqF0Kw,506
829
829
  iamdata/data/conditionKeys/vpc-lattice-svcs.json,sha256=aWxLSGW19XB8Rg76gUfZBSJh8maEJeFT_0M5tJwVQxE,1618
830
830
  iamdata/data/conditionKeys/vpc-lattice.json,sha256=80C2PfBLej7zZ4f3rWQAEHqcFk2ubIVDg_mizvje1GA,2064
@@ -1242,7 +1242,7 @@ iamdata/data/resourceTypes/ts.json,sha256=ENql7TaKgHFZzzjYQEASEjYy6V90Qm6fzXYvvm
1242
1242
  iamdata/data/resourceTypes/user-subscriptions.json,sha256=RBNvo1WzZ4oRRq0W9-hknpT7T8If536DEMBg9hyq_4o,2
1243
1243
  iamdata/data/resourceTypes/vendor-insights.json,sha256=pRahPHaE_3h1ZQZV-6qoz6Vmg17CISdqj6TulNvA9fE,499
1244
1244
  iamdata/data/resourceTypes/verified-access.json,sha256=RBNvo1WzZ4oRRq0W9-hknpT7T8If536DEMBg9hyq_4o,2
1245
- iamdata/data/resourceTypes/verifiedpermissions.json,sha256=Ef-5rZADZSrcfeCybG0I0n0Jef-yti02kH8gZl1F0Wo,146
1245
+ iamdata/data/resourceTypes/verifiedpermissions.json,sha256=GGQ_zt02YURgAgAwZn2hJbpYrOGCmPDu6sg6laJXbLY,210
1246
1246
  iamdata/data/resourceTypes/voiceid.json,sha256=-izzxihtFHWyd0Ar0C4j3jmPG6zoOfIP5g6kpHccFiw,184
1247
1247
  iamdata/data/resourceTypes/vpc-lattice-svcs.json,sha256=BD16-42FjzPFKaRGH3XeNuscI2jBom2ioS7jRagIFGI,277
1248
1248
  iamdata/data/resourceTypes/vpc-lattice.json,sha256=SOjx21xiUHRhuT1VNgEWs5t_r5gvc9z2r2xAHhoUysY,4114
@@ -1265,7 +1265,7 @@ iamdata/tests/actions.py,sha256=cg2f1KPOzBYvGf7kJC9OokOo9oP_hS55tvt0_UKZVMw,1071
1265
1265
  iamdata/tests/conditions.py,sha256=YbQZ_V7zQh4FkCp2wCBjw_NmNMVmwtcLAQrN7Iw2uJ0,1250
1266
1266
  iamdata/tests/resources.py,sha256=I9N-PHtu1wjrB-y9kBTvb1lFnvsDb03EipHRj2nIQl4,1177
1267
1267
  iamdata/tests/services.py,sha256=Kj1EQ9AeHHXYifvnybdH83xafXTxgYFt40KUghP_B8I,1016
1268
- iamdata-0.1.202505061.dist-info/METADATA,sha256=xVtzrCgv6y5uuSVgUhKFcfQooDcFclNakZMHZexCTPM,3491
1269
- iamdata-0.1.202505061.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
1270
- iamdata-0.1.202505061.dist-info/licenses/LICENSE.txt,sha256=f7okslHWZM8fVIaucefW0FUlap5UxIqOrAWqzSCoeZA,1069
1271
- iamdata-0.1.202505061.dist-info/RECORD,,
1268
+ iamdata-0.1.202505081.dist-info/METADATA,sha256=5Dn6usCCps-SWUYKlkku5C05DrbKEzBBAus7BxX0YTs,3491
1269
+ iamdata-0.1.202505081.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
1270
+ iamdata-0.1.202505081.dist-info/licenses/LICENSE.txt,sha256=f7okslHWZM8fVIaucefW0FUlap5UxIqOrAWqzSCoeZA,1069
1271
+ iamdata-0.1.202505081.dist-info/RECORD,,