cartography 0.105.0__py3-none-any.whl → 0.106.0rc1__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 cartography might be problematic. Click here for more details.

Files changed (45) hide show
  1. cartography/_version.py +2 -2
  2. cartography/data/indexes.cypher +0 -34
  3. cartography/intel/aws/ecs.py +228 -380
  4. cartography/intel/aws/efs.py +181 -0
  5. cartography/intel/aws/identitycenter.py +14 -3
  6. cartography/intel/aws/inspector.py +106 -53
  7. cartography/intel/aws/rds.py +2 -1
  8. cartography/intel/aws/resources.py +2 -0
  9. cartography/intel/entra/__init__.py +11 -0
  10. cartography/intel/entra/applications.py +366 -0
  11. cartography/intel/kubernetes/__init__.py +30 -14
  12. cartography/intel/kubernetes/clusters.py +86 -0
  13. cartography/intel/kubernetes/namespaces.py +59 -57
  14. cartography/intel/kubernetes/pods.py +140 -77
  15. cartography/intel/kubernetes/secrets.py +95 -45
  16. cartography/intel/kubernetes/services.py +131 -67
  17. cartography/intel/kubernetes/util.py +125 -14
  18. cartography/models/aws/ecs/__init__.py +0 -0
  19. cartography/models/aws/ecs/clusters.py +64 -0
  20. cartography/models/aws/ecs/container_definitions.py +93 -0
  21. cartography/models/aws/ecs/container_instances.py +84 -0
  22. cartography/models/aws/ecs/containers.py +80 -0
  23. cartography/models/aws/ecs/services.py +117 -0
  24. cartography/models/aws/ecs/task_definitions.py +97 -0
  25. cartography/models/aws/ecs/tasks.py +110 -0
  26. cartography/models/aws/efs/__init__.py +0 -0
  27. cartography/models/aws/efs/file_system.py +60 -0
  28. cartography/models/aws/efs/mount_target.py +79 -0
  29. cartography/models/entra/app_role_assignment.py +115 -0
  30. cartography/models/entra/application.py +47 -0
  31. cartography/models/kubernetes/__init__.py +0 -0
  32. cartography/models/kubernetes/clusters.py +26 -0
  33. cartography/models/kubernetes/containers.py +108 -0
  34. cartography/models/kubernetes/namespaces.py +51 -0
  35. cartography/models/kubernetes/pods.py +80 -0
  36. cartography/models/kubernetes/secrets.py +79 -0
  37. cartography/models/kubernetes/services.py +108 -0
  38. cartography/util.py +15 -10
  39. {cartography-0.105.0.dist-info → cartography-0.106.0rc1.dist-info}/METADATA +1 -1
  40. {cartography-0.105.0.dist-info → cartography-0.106.0rc1.dist-info}/RECORD +44 -22
  41. cartography/data/jobs/cleanup/kubernetes_import_cleanup.json +0 -70
  42. {cartography-0.105.0.dist-info → cartography-0.106.0rc1.dist-info}/WHEEL +0 -0
  43. {cartography-0.105.0.dist-info → cartography-0.106.0rc1.dist-info}/entry_points.txt +0 -0
  44. {cartography-0.105.0.dist-info → cartography-0.106.0rc1.dist-info}/licenses/LICENSE +0 -0
  45. {cartography-0.105.0.dist-info → cartography-0.106.0rc1.dist-info}/top_level.txt +0 -0
cartography/_version.py CHANGED
@@ -17,5 +17,5 @@ __version__: str
17
17
  __version_tuple__: VERSION_TUPLE
18
18
  version_tuple: VERSION_TUPLE
19
19
 
20
- __version__ = version = '0.105.0'
21
- __version_tuple__ = version_tuple = (0, 105, 0)
20
+ __version__ = version = '0.106.0rc1'
21
+ __version_tuple__ = version_tuple = (0, 106, 0, 'rc1')
@@ -99,21 +99,6 @@ CREATE INDEX IF NOT EXISTS FOR (n:ECRRepositoryImage) ON (n.tag);
99
99
  CREATE INDEX IF NOT EXISTS FOR (n:ECRRepositoryImage) ON (n.lastupdated);
100
100
  CREATE INDEX IF NOT EXISTS FOR (n:ECRScanFinding) ON (n.id);
101
101
  CREATE INDEX IF NOT EXISTS FOR (n:ECRScanFinding) ON (n.lastupdated);
102
- CREATE INDEX IF NOT EXISTS FOR (n:ECSCluster) ON (n.id);
103
- CREATE INDEX IF NOT EXISTS FOR (n:ECSCluster) ON (n.lastupdated);
104
- CREATE INDEX IF NOT EXISTS FOR (n:ECSContainerInstance) ON (n.id);
105
- CREATE INDEX IF NOT EXISTS FOR (n:ECSContainerInstance) ON (n.lastupdated);
106
- CREATE INDEX IF NOT EXISTS FOR (n:ECSService) ON (n.id);
107
- CREATE INDEX IF NOT EXISTS FOR (n:ECSService) ON (n.lastupdated);
108
- CREATE INDEX IF NOT EXISTS FOR (n:ECSTaskDefinition) ON (n.id);
109
- CREATE INDEX IF NOT EXISTS FOR (n:ECSTaskDefinition) ON (n.arn);
110
- CREATE INDEX IF NOT EXISTS FOR (n:ECSTaskDefinition) ON (n.lastupdated);
111
- CREATE INDEX IF NOT EXISTS FOR (n:ECSTask) ON (n.id);
112
- CREATE INDEX IF NOT EXISTS FOR (n:ECSTask) ON (n.lastupdated);
113
- CREATE INDEX IF NOT EXISTS FOR (n:ECSContainerDefinition) ON (n.id);
114
- CREATE INDEX IF NOT EXISTS FOR (n:ECSContainerDefinition) ON (n.lastupdated);
115
- CREATE INDEX IF NOT EXISTS FOR (n:ECSContainer) ON (n.id);
116
- CREATE INDEX IF NOT EXISTS FOR (n:ECSContainer) ON (n.lastupdated);
117
102
  CREATE INDEX IF NOT EXISTS FOR (n:ElasticacheCluster) ON (n.id);
118
103
  CREATE INDEX IF NOT EXISTS FOR (n:ElasticacheCluster) ON (n.arn);
119
104
  CREATE INDEX IF NOT EXISTS FOR (n:ElasticacheCluster) ON (n.lastupdated);
@@ -375,22 +360,3 @@ CREATE INDEX IF NOT EXISTS FOR (n:AzureDisk) ON (n.id);
375
360
  CREATE INDEX IF NOT EXISTS FOR (n:AzureDisk) ON (n.lastupdated);
376
361
  CREATE INDEX IF NOT EXISTS FOR (n:AzureSnapshot) ON (n.id);
377
362
  CREATE INDEX IF NOT EXISTS FOR (n:AzureSnapshot) ON (n.lastupdated);
378
- CREATE INDEX IF NOT EXISTS FOR (n:KubernetesCluster) ON (n.id);
379
- CREATE INDEX IF NOT EXISTS FOR (n:KubernetesCluster) ON (n.name);
380
- CREATE INDEX IF NOT EXISTS FOR (n:KubernetesCluster) ON (n.lastupdated);
381
- CREATE INDEX IF NOT EXISTS FOR (n:KubernetesNamespace) ON (n.id);
382
- CREATE INDEX IF NOT EXISTS FOR (n:KubernetesNamespace) ON (n.name);
383
- CREATE INDEX IF NOT EXISTS FOR (n:KubernetesNamespace) ON (n.lastupdated);
384
- CREATE INDEX IF NOT EXISTS FOR (n:KubernetesPod) ON (n.id);
385
- CREATE INDEX IF NOT EXISTS FOR (n:KubernetesPod) ON (n.name);
386
- CREATE INDEX IF NOT EXISTS FOR (n:KubernetesPod) ON (n.lastupdated);
387
- CREATE INDEX IF NOT EXISTS FOR (n:KubernetesContainer) ON (n.id);
388
- CREATE INDEX IF NOT EXISTS FOR (n:KubernetesContainer) ON (n.name);
389
- CREATE INDEX IF NOT EXISTS FOR (n:KubernetesContainer) ON (n.image);
390
- CREATE INDEX IF NOT EXISTS FOR (n:KubernetesContainer) ON (n.lastupdated);
391
- CREATE INDEX IF NOT EXISTS FOR (n:KubernetesSecret) ON (n.id);
392
- CREATE INDEX IF NOT EXISTS FOR (n:KubernetesSecret) ON (n.name);
393
- CREATE INDEX IF NOT EXISTS FOR (n:KubernetesSecret) ON (n.lastupdated);
394
- CREATE INDEX IF NOT EXISTS FOR (n:KubernetesService) ON (n.id);
395
- CREATE INDEX IF NOT EXISTS FOR (n:KubernetesService) ON (n.name);
396
- CREATE INDEX IF NOT EXISTS FOR (n:KubernetesService) ON (n.lastupdated);