iamdata 0.1.202508291__py3-none-any.whl → 0.1.202508301__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.
@@ -451,6 +451,21 @@
451
451
  "conditionKeys": [],
452
452
  "dependentActions": []
453
453
  },
454
+ "describecaenrollmentpolicy": {
455
+ "name": "DescribeCAEnrollmentPolicy",
456
+ "description": "Grants permission to describe the ca enrollment status of a specified directory",
457
+ "accessLevel": "Read",
458
+ "resourceTypes": [
459
+ {
460
+ "name": "directory",
461
+ "required": true,
462
+ "conditionKeys": [],
463
+ "dependentActions": []
464
+ }
465
+ ],
466
+ "conditionKeys": [],
467
+ "dependentActions": []
468
+ },
454
469
  "describecertificate": {
455
470
  "name": "DescribeCertificate",
456
471
  "description": "Grants permission to display information about the certificate registered for a secured LDAP connection",
@@ -655,6 +670,21 @@
655
670
  "conditionKeys": [],
656
671
  "dependentActions": []
657
672
  },
673
+ "disablecaenrollmentpolicy": {
674
+ "name": "DisableCAEnrollmentPolicy",
675
+ "description": "Grants permission to disable the ca enrollment of a specified directory",
676
+ "accessLevel": "Write",
677
+ "resourceTypes": [
678
+ {
679
+ "name": "directory",
680
+ "required": true,
681
+ "conditionKeys": [],
682
+ "dependentActions": []
683
+ }
684
+ ],
685
+ "conditionKeys": [],
686
+ "dependentActions": []
687
+ },
658
688
  "disableclientauthentication": {
659
689
  "name": "DisableClientAuthentication",
660
690
  "description": "Grants permission to disable alternative client authentication methods for the specified directory",
@@ -746,6 +776,24 @@
746
776
  "conditionKeys": [],
747
777
  "dependentActions": []
748
778
  },
779
+ "enablecaenrollmentpolicy": {
780
+ "name": "EnableCAEnrollmentPolicy",
781
+ "description": "Grants permission to enable the ca enrollment of a specified directory",
782
+ "accessLevel": "Write",
783
+ "resourceTypes": [
784
+ {
785
+ "name": "directory",
786
+ "required": true,
787
+ "conditionKeys": [],
788
+ "dependentActions": []
789
+ }
790
+ ],
791
+ "conditionKeys": [],
792
+ "dependentActions": [
793
+ "acm-pca:DescribeCertificateAuthority",
794
+ "pca-connector-ad:GetConnector"
795
+ ]
796
+ },
749
797
  "enableclientauthentication": {
750
798
  "name": "EnableClientAuthentication",
751
799
  "description": "Grants permission to enable alternative client authentication methods for the specified directory",
@@ -11,7 +11,7 @@
11
11
  "createbatch": {
12
12
  "name": "CreateBatch",
13
13
  "isPermissionOnly": true,
14
- "description": "Grants permission to create a GT Batch",
14
+ "description": "Grants permission to create a GT+ Batch",
15
15
  "accessLevel": "Write",
16
16
  "resourceTypes": [],
17
17
  "conditionKeys": [],
@@ -29,7 +29,7 @@
29
29
  "createproject": {
30
30
  "name": "CreateProject",
31
31
  "isPermissionOnly": true,
32
- "description": "Grants permission to create a GT Project",
32
+ "description": "Grants permission to create a GT+ Project",
33
33
  "accessLevel": "Write",
34
34
  "resourceTypes": [],
35
35
  "conditionKeys": [],
@@ -38,7 +38,7 @@
38
38
  "createworkflowdefinition": {
39
39
  "name": "CreateWorkflowDefinition",
40
40
  "isPermissionOnly": true,
41
- "description": "Grants permission to create a GT Workflow Definition",
41
+ "description": "Grants permission to create a GT+ Workflow Definition",
42
42
  "accessLevel": "Write",
43
43
  "resourceTypes": [],
44
44
  "conditionKeys": [],
@@ -65,7 +65,7 @@
65
65
  "getbatch": {
66
66
  "name": "GetBatch",
67
67
  "isPermissionOnly": true,
68
- "description": "Grants permission to get a GT Batch",
68
+ "description": "Grants permission to get a GT+ Batch",
69
69
  "accessLevel": "Read",
70
70
  "resourceTypes": [],
71
71
  "conditionKeys": [],
@@ -83,7 +83,7 @@
83
83
  "listbatches": {
84
84
  "name": "ListBatches",
85
85
  "isPermissionOnly": true,
86
- "description": "Grants permission to list a GT Batchs",
86
+ "description": "Grants permission to list a GT+ Batchs",
87
87
  "accessLevel": "Read",
88
88
  "resourceTypes": [],
89
89
  "conditionKeys": [],
@@ -101,7 +101,7 @@
101
101
  "listprojects": {
102
102
  "name": "ListProjects",
103
103
  "isPermissionOnly": true,
104
- "description": "Grants permission to list a GT Projects",
104
+ "description": "Grants permission to list a GT+ Projects",
105
105
  "accessLevel": "Read",
106
106
  "resourceTypes": [],
107
107
  "conditionKeys": [],
@@ -137,7 +137,7 @@
137
137
  "updatebatch": {
138
138
  "name": "UpdateBatch",
139
139
  "isPermissionOnly": true,
140
- "description": "Grants permission to update a GT Batch",
140
+ "description": "Grants permission to update a GT+ Batch",
141
141
  "accessLevel": "Write",
142
142
  "resourceTypes": [],
143
143
  "conditionKeys": [],
@@ -594,6 +594,26 @@
594
594
  ],
595
595
  "dependentActions": []
596
596
  },
597
+ "startgraph": {
598
+ "name": "StartGraph",
599
+ "description": "Grants permission to start a graph",
600
+ "accessLevel": "Write",
601
+ "resourceTypes": [
602
+ {
603
+ "name": "graph",
604
+ "required": true,
605
+ "conditionKeys": [],
606
+ "dependentActions": [
607
+ "kms:Decrypt",
608
+ "kms:DescribeKey"
609
+ ]
610
+ }
611
+ ],
612
+ "conditionKeys": [
613
+ "aws:ResourceTag/${TagKey}"
614
+ ],
615
+ "dependentActions": []
616
+ },
597
617
  "startimporttask": {
598
618
  "name": "StartImportTask",
599
619
  "description": "Grants permission to import data into an existing graph",
@@ -617,6 +637,23 @@
617
637
  "conditionKeys": [],
618
638
  "dependentActions": []
619
639
  },
640
+ "stopgraph": {
641
+ "name": "StopGraph",
642
+ "description": "Grants permission to stop a graph",
643
+ "accessLevel": "Write",
644
+ "resourceTypes": [
645
+ {
646
+ "name": "graph",
647
+ "required": true,
648
+ "conditionKeys": [],
649
+ "dependentActions": []
650
+ }
651
+ ],
652
+ "conditionKeys": [
653
+ "aws:ResourceTag/${TagKey}"
654
+ ],
655
+ "dependentActions": []
656
+ },
620
657
  "tagresource": {
621
658
  "name": "TagResource",
622
659
  "description": "Grants permission to tag a Neptune Analytics resource",
@@ -1,4 +1,4 @@
1
1
  {
2
- "version": "0.1.202508291",
3
- "updatedAt": "2025-08-29T04:46:37.167Z"
2
+ "version": "0.1.202508301",
3
+ "updatedAt": "2025-08-30T04:44:58.676Z"
4
4
  }
@@ -403,21 +403,21 @@
403
403
  },
404
404
  "privatebasepathmapping": {
405
405
  "key": "PrivateBasePathMapping",
406
- "arn": "arn:${Partition}:apigateway:${Region}::/domainnames/${DomainName} ${DomainIdentifier}/basepathmappings/${BasePath}",
406
+ "arn": "arn:${Partition}:apigateway:${Region}::/domainnames/${DomainName}+${DomainIdentifier}/basepathmappings/${BasePath}",
407
407
  "conditionKeys": [
408
408
  "aws:ResourceTag/${TagKey}"
409
409
  ]
410
410
  },
411
411
  "privatebasepathmappings": {
412
412
  "key": "PrivateBasePathMappings",
413
- "arn": "arn:${Partition}:apigateway:${Region}::/domainnames/${DomainName} ${DomainIdentifier}/basepathmappings",
413
+ "arn": "arn:${Partition}:apigateway:${Region}::/domainnames/${DomainName}+${DomainIdentifier}/basepathmappings",
414
414
  "conditionKeys": [
415
415
  "aws:ResourceTag/${TagKey}"
416
416
  ]
417
417
  },
418
418
  "privatedomainname": {
419
419
  "key": "PrivateDomainName",
420
- "arn": "arn:${Partition}:apigateway:${Region}:${Account}:/domainnames/${DomainName} ${DomainIdentifier}",
420
+ "arn": "arn:${Partition}:apigateway:${Region}:${Account}:/domainnames/${DomainName}+${DomainIdentifier}",
421
421
  "conditionKeys": [
422
422
  "apigateway:Request/EndpointType",
423
423
  "apigateway:Resource/EndpointType",
@@ -8,6 +8,6 @@
8
8
  },
9
9
  "execute-api-domain": {
10
10
  "key": "execute-api-domain",
11
- "arn": "arn:${Partition}:execute-api:${Region}:${Account}:/domainnames/${DomainName} ${DomainIdentifier}"
11
+ "arn": "arn:${Partition}:execute-api:${Region}:${Account}:/domainnames/${DomainName}+${DomainIdentifier}"
12
12
  }
13
13
  }
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: iamdata
3
- Version: 0.1.202508291
3
+ Version: 0.1.202508301
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=P9HsaINcVmdhSX3Pzys8EoKXJs7j_Kaxqkht58TdS6E,76
8
+ iamdata/data/metadata.json,sha256=pnWyhc8pn-TlOQjNCCR86TqKHc-R7H4H-ONcIFpKmuI,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
@@ -139,7 +139,7 @@ iamdata/data/actions/dms.json,sha256=lX-AFxvAuArkB6UILm_E6CElJBrEzg6B2csCc_INoQk
139
139
  iamdata/data/actions/docdb-elastic.json,sha256=fjk8kUH9ZuYqv_1ZhLfIuwPAtzsuFaZBiX3iuVsSdBA,12056
140
140
  iamdata/data/actions/drs.json,sha256=La78bLQy39JRhXMEYt9fmEyh6EAIDDjeiOfKBH8z14w,43861
141
141
  iamdata/data/actions/ds-data.json,sha256=bwZGtvuBi74oVFJVoHDd0_3kGGltbZewiKZVPfYoEpE,8399
142
- iamdata/data/actions/ds.json,sha256=DRlipRdauA5yMk7rg3-fptUuizjQ_NtZrN_2VHEMnWI,39409
142
+ iamdata/data/actions/ds.json,sha256=4Czo1fZDcYiGTQoP6SIZMI-8S7nse37CHJ19URvI3LI,40746
143
143
  iamdata/data/actions/dsql.json,sha256=MVw7c8YazAUxWx_uDfmj0W6fDMJi5VxFDxKnD6tLQdk,9001
144
144
  iamdata/data/actions/dynamodb.json,sha256=HC_vieSNmlSQa76UtXupbynM7M1-lbyHalRalbxs8hw,32519
145
145
  iamdata/data/actions/ebs.json,sha256=_0xfCEoPjX78Qukewk2vVObn4QA7iH_1Kw2qAfqUh2U,2892
@@ -191,7 +191,7 @@ iamdata/data/actions/glue.json,sha256=k7gPAtNIgw0YyT90xass1rhs-uD0Yl0VEYgyhH7fr9
191
191
  iamdata/data/actions/grafana.json,sha256=g4Ct_18oZiEXYdFz-mk6EDCMA9p79JpU9_PEiEwbVA4,10379
192
192
  iamdata/data/actions/greengrass.json,sha256=yR-vVgkpuNhtC-5zSSMAv_nnJ_cc1FL7Bbsyuh8fOB8,49899
193
193
  iamdata/data/actions/groundstation.json,sha256=YuT4x1t4zipFo08zIgW_CSdfkhknPPrhx-EwZOZbz5A,12250
194
- iamdata/data/actions/groundtruthlabeling.json,sha256=bffA8wNCdXfilflIV658-pzShDy7N9ikCFcBiWtZ4sg,4503
194
+ iamdata/data/actions/groundtruthlabeling.json,sha256=aDBtvIDWBDxV1JLzxH5XzPSq9-2OwOcaH2VuKjkQQWQ,4503
195
195
  iamdata/data/actions/guardduty.json,sha256=kcWUNgOzdIcy9NlGmlBfwvM8mKXJs9WiQ-MVI-LhBoA,30514
196
196
  iamdata/data/actions/health.json,sha256=STB5wgp2_Gz4Y1lXGAUoPGJbhAx2pTlkQ1AAvDjXk0E,5296
197
197
  iamdata/data/actions/healthlake.json,sha256=iQPh4dXfChtbNwTFnecuo8gfAgBCOPcmgUBfL2KLTyY,11445
@@ -273,7 +273,7 @@ iamdata/data/actions/monitron.json,sha256=kO8R-chIFGhGC5_fQjBCi6BH_Lxl0CRXOE1obW
273
273
  iamdata/data/actions/mpa.json,sha256=OkJXt0YYAGzc5oQDhKTeoThOrg80hGRW-xFLMUmDbSk,8323
274
274
  iamdata/data/actions/mq.json,sha256=zhybxIfW7F1v8u9IppBNogL4v6617gSQDHVTspuoR34,10055
275
275
  iamdata/data/actions/neptune-db.json,sha256=h1XoLU76_YFyFTG5JYPMHsxo2HRNwishnAggEjLe6r8,12891
276
- iamdata/data/actions/neptune-graph.json,sha256=zTrtjGrznKZ0r6jlXI8DqU7YvlwEyRkzOUA1-uYn-g8,17467
276
+ iamdata/data/actions/neptune-graph.json,sha256=7UWo_z9O_SEy0wEcsoP07MIjicBoRWEE6CixNrnBUwI,18290
277
277
  iamdata/data/actions/network-firewall.json,sha256=7vJgYYUHGEOOdjjKloTM9xsLx1-P4GESsyUkeySAk_Y,29829
278
278
  iamdata/data/actions/network-security-director.json,sha256=1xMCvjyLdW-PSN-yUhDvda5CfN87B14FMcRcC_SRHGk,2098
279
279
  iamdata/data/actions/networkflowmonitor.json,sha256=oXvUqH12HIWhqfBDyRy2J9zoOhXqdH_j8teJsF42OSc,10696
@@ -880,7 +880,7 @@ iamdata/data/resourceTypes/amplify.json,sha256=bJr4KhDsGuGtIiicAe_hZIl3CL8TJ5r6W
880
880
  iamdata/data/resourceTypes/amplifybackend.json,sha256=Wk3JE8-TLwO6BWe04dGA4JHGpwhPX7ZZpwru-r90zEE,1192
881
881
  iamdata/data/resourceTypes/amplifyuibuilder.json,sha256=52cbSAEw_ZIlRD6I1fNOxng7eAP7VsmuY0M3zKfplac,1591
882
882
  iamdata/data/resourceTypes/aoss.json,sha256=Cg2pVJzoEEfsh5TavTe5M7DcTpFkn3fFDbonTRl4JdQ,320
883
- iamdata/data/resourceTypes/apigateway.json,sha256=wSsVbIohKqHh9yyEssc89gbM2Nzi5oFRQlgnjPny940,17642
883
+ iamdata/data/resourceTypes/apigateway.json,sha256=l81kEROPYAbKLRhsQjfDJKhgvtqjri63f3yG6QEeNQQ,17642
884
884
  iamdata/data/resourceTypes/app-integrations.json,sha256=Q5ufBUKtRQkauGbD3GKS-titpO1_HAmFPjzQ6u4B_RI,1520
885
885
  iamdata/data/resourceTypes/appconfig.json,sha256=ErfluuMMqnqL_31EfNNr_c2fnWiYHQ_yu5BQYfk6xfU,2202
886
886
  iamdata/data/resourceTypes/appfabric.json,sha256=1sBG-Q6qTJbs4oO3sAhTDCrQQNX7ZXyKImIG-4BFuF4,998
@@ -1026,7 +1026,7 @@ iamdata/data/resourceTypes/es.json,sha256=47_z_Czok3nPYwg_4Yogm2RJuMJRSLxG4GEwhQ
1026
1026
  iamdata/data/resourceTypes/events.json,sha256=vSf1qTmWYUYRWeZQPA2D_CkWoV2VhhFOPoCDEUPn2is,2203
1027
1027
  iamdata/data/resourceTypes/evidently.json,sha256=RsiBy5YinOKEFz-pwB2LYWv_nylCfQIPaJKSo2vgWzg,1029
1028
1028
  iamdata/data/resourceTypes/evs.json,sha256=g7XxBN8VgWxxiZHTXF5W3N3C6XZxrhjimB_MSA3oTMQ,208
1029
- iamdata/data/resourceTypes/execute-api.json,sha256=5URRWElVaXd-JqKsgyHn9d8i1WpgeCO0QyqhknMUsEQ,423
1029
+ iamdata/data/resourceTypes/execute-api.json,sha256=deWgNO9wCNkwRuCLSBwNFWXMgVBy6c9laKUnbVeUgwI,423
1030
1030
  iamdata/data/resourceTypes/finspace-api.json,sha256=kzXgO4IoK2BBEeipoFd6CDokfWGcqM42dAEJVUNuJoI,140
1031
1031
  iamdata/data/resourceTypes/finspace.json,sha256=IMftn0F6p-wywzwnEKcwQyc7uaf951bBJ7Qk63tOOQs,1972
1032
1032
  iamdata/data/resourceTypes/firehose.json,sha256=WhLv6NzT3fGGL2c3lvOvI_SU9J-qqN8_6NxgZDWj8KM,219
@@ -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.202508291.dist-info/METADATA,sha256=MRhnuCY_juF7emSQ_KLok7LUEiq3FXLP-rFGa6brLPE,3491
1304
- iamdata-0.1.202508291.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
1305
- iamdata-0.1.202508291.dist-info/licenses/LICENSE.txt,sha256=f7okslHWZM8fVIaucefW0FUlap5UxIqOrAWqzSCoeZA,1069
1306
- iamdata-0.1.202508291.dist-info/RECORD,,
1303
+ iamdata-0.1.202508301.dist-info/METADATA,sha256=kBbjIbwii4pxLHgcgkY0N4-e_tmfU0bDpGfvnX18uBw,3491
1304
+ iamdata-0.1.202508301.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
1305
+ iamdata-0.1.202508301.dist-info/licenses/LICENSE.txt,sha256=f7okslHWZM8fVIaucefW0FUlap5UxIqOrAWqzSCoeZA,1069
1306
+ iamdata-0.1.202508301.dist-info/RECORD,,