cartography 0.106.0rc2__py3-none-any.whl → 0.107.0__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 (92) hide show
  1. cartography/_version.py +2 -2
  2. cartography/cli.py +131 -2
  3. cartography/config.py +42 -0
  4. cartography/driftdetect/cli.py +3 -2
  5. cartography/intel/airbyte/__init__.py +105 -0
  6. cartography/intel/airbyte/connections.py +120 -0
  7. cartography/intel/airbyte/destinations.py +81 -0
  8. cartography/intel/airbyte/organizations.py +59 -0
  9. cartography/intel/airbyte/sources.py +78 -0
  10. cartography/intel/airbyte/tags.py +64 -0
  11. cartography/intel/airbyte/users.py +106 -0
  12. cartography/intel/airbyte/util.py +122 -0
  13. cartography/intel/airbyte/workspaces.py +63 -0
  14. cartography/intel/aws/__init__.py +1 -0
  15. cartography/intel/aws/cloudtrail_management_events.py +364 -0
  16. cartography/intel/aws/cloudwatch.py +77 -0
  17. cartography/intel/aws/codebuild.py +132 -0
  18. cartography/intel/aws/ec2/subnets.py +1 -1
  19. cartography/intel/aws/ecs.py +17 -0
  20. cartography/intel/aws/inspector.py +77 -48
  21. cartography/intel/aws/resources.py +4 -0
  22. cartography/intel/aws/sns.py +62 -2
  23. cartography/intel/entra/users.py +84 -42
  24. cartography/intel/scaleway/__init__.py +127 -0
  25. cartography/intel/scaleway/iam/__init__.py +0 -0
  26. cartography/intel/scaleway/iam/apikeys.py +71 -0
  27. cartography/intel/scaleway/iam/applications.py +71 -0
  28. cartography/intel/scaleway/iam/groups.py +71 -0
  29. cartography/intel/scaleway/iam/users.py +71 -0
  30. cartography/intel/scaleway/instances/__init__.py +0 -0
  31. cartography/intel/scaleway/instances/flexibleips.py +86 -0
  32. cartography/intel/scaleway/instances/instances.py +92 -0
  33. cartography/intel/scaleway/projects.py +79 -0
  34. cartography/intel/scaleway/storage/__init__.py +0 -0
  35. cartography/intel/scaleway/storage/snapshots.py +86 -0
  36. cartography/intel/scaleway/storage/volumes.py +84 -0
  37. cartography/intel/scaleway/utils.py +37 -0
  38. cartography/intel/sentinelone/__init__.py +69 -0
  39. cartography/intel/sentinelone/account.py +140 -0
  40. cartography/intel/sentinelone/agent.py +139 -0
  41. cartography/intel/sentinelone/api.py +113 -0
  42. cartography/intel/sentinelone/application.py +248 -0
  43. cartography/intel/sentinelone/utils.py +28 -0
  44. cartography/models/airbyte/__init__.py +0 -0
  45. cartography/models/airbyte/connection.py +138 -0
  46. cartography/models/airbyte/destination.py +75 -0
  47. cartography/models/airbyte/organization.py +19 -0
  48. cartography/models/airbyte/source.py +75 -0
  49. cartography/models/airbyte/stream.py +74 -0
  50. cartography/models/airbyte/tag.py +69 -0
  51. cartography/models/airbyte/user.py +111 -0
  52. cartography/models/airbyte/workspace.py +46 -0
  53. cartography/models/aws/cloudtrail/management_events.py +64 -0
  54. cartography/models/aws/cloudwatch/log_metric_filter.py +79 -0
  55. cartography/models/aws/codebuild/__init__.py +0 -0
  56. cartography/models/aws/codebuild/project.py +49 -0
  57. cartography/models/aws/ec2/networkinterfaces.py +2 -0
  58. cartography/models/aws/ec2/subnet_instance.py +2 -0
  59. cartography/models/aws/ec2/subnet_networkinterface.py +2 -0
  60. cartography/models/aws/ecs/containers.py +19 -0
  61. cartography/models/aws/ecs/task_definitions.py +38 -0
  62. cartography/models/aws/ecs/tasks.py +24 -1
  63. cartography/models/aws/inspector/findings.py +37 -0
  64. cartography/models/aws/inspector/packages.py +1 -31
  65. cartography/models/aws/sns/topic_subscription.py +74 -0
  66. cartography/models/entra/user.py +17 -51
  67. cartography/models/scaleway/__init__.py +0 -0
  68. cartography/models/scaleway/iam/__init__.py +0 -0
  69. cartography/models/scaleway/iam/apikey.py +96 -0
  70. cartography/models/scaleway/iam/application.py +52 -0
  71. cartography/models/scaleway/iam/group.py +95 -0
  72. cartography/models/scaleway/iam/user.py +60 -0
  73. cartography/models/scaleway/instance/__init__.py +0 -0
  74. cartography/models/scaleway/instance/flexibleip.py +52 -0
  75. cartography/models/scaleway/instance/instance.py +118 -0
  76. cartography/models/scaleway/organization.py +19 -0
  77. cartography/models/scaleway/project.py +48 -0
  78. cartography/models/scaleway/storage/__init__.py +0 -0
  79. cartography/models/scaleway/storage/snapshot.py +78 -0
  80. cartography/models/scaleway/storage/volume.py +51 -0
  81. cartography/models/sentinelone/__init__.py +1 -0
  82. cartography/models/sentinelone/account.py +40 -0
  83. cartography/models/sentinelone/agent.py +50 -0
  84. cartography/models/sentinelone/application.py +44 -0
  85. cartography/models/sentinelone/application_version.py +96 -0
  86. cartography/sync.py +11 -4
  87. {cartography-0.106.0rc2.dist-info → cartography-0.107.0.dist-info}/METADATA +20 -16
  88. {cartography-0.106.0rc2.dist-info → cartography-0.107.0.dist-info}/RECORD +92 -28
  89. {cartography-0.106.0rc2.dist-info → cartography-0.107.0.dist-info}/WHEEL +0 -0
  90. {cartography-0.106.0rc2.dist-info → cartography-0.107.0.dist-info}/entry_points.txt +0 -0
  91. {cartography-0.106.0rc2.dist-info → cartography-0.107.0.dist-info}/licenses/LICENSE +0 -0
  92. {cartography-0.106.0rc2.dist-info → cartography-0.107.0.dist-info}/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: cartography
3
- Version: 0.106.0rc2
3
+ Version: 0.107.0
4
4
  Summary: Explore assets and their relationships across your technical infrastructure.
5
5
  Maintainer: Cartography Contributors
6
6
  License: apache2
@@ -55,6 +55,7 @@ Requires-Dist: python-dateutil
55
55
  Requires-Dist: xmltodict
56
56
  Requires-Dist: duo-client
57
57
  Requires-Dist: cloudflare<5.0.0,>=4.1.0
58
+ Requires-Dist: scaleway>=2.9.0
58
59
  Dynamic: license-file
59
60
 
60
61
  ![Cartography](docs/root/images/logo-horizontal.png)
@@ -80,28 +81,31 @@ You can learn more about the story behind Cartography in our [presentation at BS
80
81
 
81
82
 
82
83
  ## Supported platforms
83
- - [Amazon Web Services](https://cartography-cncf.github.io/cartography/modules/aws/index.html) - ACM, API Gateway, CloudWatch, Config, EC2, ECS, ECR, Elasticsearch, Elastic Kubernetes Service (EKS), DynamoDB, IAM, Inspector, KMS, Lambda, RDS, Redshift, Route53, S3, Secrets Manager(Secret Versions), Security Hub, SQS, SSM, STS, Tags
84
+ - [Airbyte](https://cartography-cncf.github.io/cartography/modules/airbyte/index.html) - Organization, Workspace, User, Source, Destination, Connection, Tag, Stream
85
+ - [Amazon Web Services](https://cartography-cncf.github.io/cartography/modules/aws/index.html) - ACM, API Gateway, CloudWatch, CodeBuild, Config, EC2, ECS, ECR, Elasticsearch, Elastic Kubernetes Service (EKS), DynamoDB, IAM, Inspector, KMS, Lambda, RDS, Redshift, Route53, S3, Secrets Manager(Secret Versions), Security Hub, SQS, SSM, STS, Tags
86
+ - [Anthropic](https://cartography-cncf.github.io/cartography/modules/anthropic/index.html) - Organization, ApiKey, User, Workspace
87
+ - [BigFix](https://cartography-cncf.github.io/cartography/modules/bigfix/index.html) - Computers
88
+ - [Cloudflare](https://cartography-cncf.github.io/cartography/modules/cloudflare/index.html) - Account, Role, Member, Zone, DNSRecord
89
+ - [Crowdstrike Falcon](https://cartography-cncf.github.io/cartography/modules/crowdstrike/index.html) - Hosts, Spotlight vulnerabilities, CVEs
90
+ - [DigitalOcean](https://cartography-cncf.github.io/cartography/modules/digitalocean/index.html)
91
+ - [Duo](https://cartography-cncf.github.io/cartography/modules/duo/index.html) - Users, Groups, Endpoints
92
+ - [GitHub](https://cartography-cncf.github.io/cartography/modules/github/index.html) - repos, branches, users, teams
84
93
  - [Google Cloud Platform](https://cartography-cncf.github.io/cartography/modules/gcp/index.html) - Cloud Resource Manager, Compute, DNS, Storage, Google Kubernetes Engine
85
94
  - [Google GSuite](https://cartography-cncf.github.io/cartography/modules/gsuite/index.html) - users, groups
86
- - [Oracle Cloud Infrastructure](https://cartography-cncf.github.io/cartography/modules/oci/index.html) - IAM
87
- - [Okta](https://cartography-cncf.github.io/cartography/modules/okta/index.html) - users, groups, organizations, roles, applications, factors, trusted origins, reply URIs
88
- - [GitHub](https://cartography-cncf.github.io/cartography/modules/github/index.html) - repos, branches, users, teams
89
- - [DigitalOcean](https://cartography-cncf.github.io/cartography/modules/digitalocean/index.html)
95
+ - [Kandji](https://cartography-cncf.github.io/cartography/modules/kandji/index.html) - Devices
96
+ - [Kubernetes](https://cartography-cncf.github.io/cartography/modules/kubernetes/index.html) - Cluster, Namespace, Service, Pod, Container
97
+ - [Lastpass](https://cartography-cncf.github.io/cartography/modules/lastpass/index.html) - users
90
98
  - [Microsoft Azure](https://cartography-cncf.github.io/cartography/modules/azure/index.html) - CosmosDB, SQL, Storage, Virtual Machine
91
99
  - [Microsoft Entra ID](https://cartography-cncf.github.io/cartography/modules/entra/index.html) - Users
92
- - [Kubernetes](https://cartography-cncf.github.io/cartography/modules/kubernetes/index.html) - Cluster, Namespace, Service, Pod, Container
93
- - [PagerDuty](https://cartography-cncf.github.io/cartography/modules/pagerduty/index.html) - Users, teams, services, schedules, escalation policies, integrations, vendors
94
- - [Crowdstrike Falcon](https://cartography-cncf.github.io/cartography/modules/crowdstrike/index.html) - Hosts, Spotlight vulnerabilities, CVEs
95
100
  - [NIST CVE](https://cartography-cncf.github.io/cartography/modules/cve/index.html) - Common Vulnerabilities and Exposures (CVE) data from NIST database
96
- - [Lastpass](https://cartography-cncf.github.io/cartography/modules/lastpass/index.html) - users
97
- - [BigFix](https://cartography-cncf.github.io/cartography/modules/bigfix/index.html) - Computers
98
- - [Duo](https://cartography-cncf.github.io/cartography/modules/duo/index.html) - Users, Groups, Endpoints
99
- - [Kandji](https://cartography-cncf.github.io/cartography/modules/kandji/index.html) - Devices
101
+ - [Okta](https://cartography-cncf.github.io/cartography/modules/okta/index.html) - users, groups, organizations, roles, applications, factors, trusted origins, reply URIs
102
+ - [OpenAI](https://cartography-cncf.github.io/cartography/modules/openai/index.html) - Organization, AdminApiKey, User, Project, ServiceAccount, ApiKey
103
+ - [Oracle Cloud Infrastructure](https://cartography-cncf.github.io/cartography/modules/oci/index.html) - IAM
104
+ - [PagerDuty](https://cartography-cncf.github.io/cartography/modules/pagerduty/index.html) - Users, teams, services, schedules, escalation policies, integrations, vendors
105
+ - [Scaleway](https://cartography-cncf.github.io/cartography/modules/scaleway/index.html) - Projects, IAM, Local Storage, Instances
106
+ - [SentinelOne](https://cartography-cncf.github.io/cartography/modules/sentinelone/index.html) - Accounts, Agents
100
107
  - [SnipeIT](https://cartography-cncf.github.io/cartography/modules/snipeit/index.html) - Users, Assets
101
108
  - [Tailscale](https://cartography-cncf.github.io/cartography/modules/tailscale/index.html) - Tailnet, Users, Devices, Groups, Tags, PostureIntegrations
102
- - [Cloudflare](https://cartography-cncf.github.io/cartography/modules/cloudflare/index.html) - Account, Role, Member, Zone, DNSRecord
103
- - [OpenAI](https://cartography-cncf.github.io/cartography/modules/openai/index.html) - Organization, AdminApiKey, User, Project, ServiceAccount, ApiKey
104
- - [Anthropic](https://cartography-cncf.github.io/cartography/modules/anthropic/index.html) - Organization, ApiKey, User, Workspace
105
109
  - [Trivy Scanner](https://cartography-cncf.github.io/cartography/modules/trivy/index.html) - AWS ECR Images
106
110
 
107
111
 
@@ -1,11 +1,11 @@
1
1
  cartography/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
2
2
  cartography/__main__.py,sha256=y5iqUrj4BmqZfjeDT-9balzpXeMARgHeIedRMRI1gr8,100
3
- cartography/_version.py,sha256=axH1PjcS4osdPi0BaK-npCXNnQPC_1rYG4YGAn2aH60,525
4
- cartography/cli.py,sha256=LIH9uY6LyctL8VDsrllxFvU17f1vAAhXQVsQ83wGvRI,41072
5
- cartography/config.py,sha256=Magq4iNynKdIl3hYjrxlikXfVLxryf73t41L2bAyUPI,14298
3
+ cartography/_version.py,sha256=SohjD9RhvbzNhDDoTdxVqNxLutTKTRJvYX1zou24Z6s,515
4
+ cartography/cli.py,sha256=e5F9239v_JoLR293JMZI1toYg43li2RX_F-qOHTB-HA,46054
5
+ cartography/config.py,sha256=mM7Frg8maGB4a0Oad2nvktM38uC7zgrwSmofO5l4Aus,16492
6
6
  cartography/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
7
7
  cartography/stats.py,sha256=N95prYlSzY8U52VFgKIDgOWOawu5Mig4N7GcVp3binQ,4420
8
- cartography/sync.py,sha256=y9ByjTesFr7VY4EsAO4C9nZ9uXdWK3H_zmg4Au9e9EQ,13401
8
+ cartography/sync.py,sha256=-WsU6tGUKpfxPRndm1QU_0HQyE20Q7fexQWRHWFrnQI,13867
9
9
  cartography/util.py,sha256=YYynw4hblAf7xglGzS7vuHTJXxf7u4WjAiLVM4MiOLU,15535
10
10
  cartography/client/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
11
11
  cartography/client/aws/__init__.py,sha256=Zj7nX21QQELwPLZlpldm_22IiXZ1VFsEFQbWX_e4okU,558
@@ -119,7 +119,7 @@ cartography/data/jobs/scoped_analysis/semgrep_sca_risk_analysis.json,sha256=eIYx
119
119
  cartography/driftdetect/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
120
120
  cartography/driftdetect/__main__.py,sha256=Eb9cVDp4eu0yrAiOmo5oSGTriCgxza8nA__NQk4SKgA,124
121
121
  cartography/driftdetect/add_shortcut.py,sha256=12VEJB5xJX2mG9YCtBo3OePULgH56MlHWpgcCYs925M,2471
122
- cartography/driftdetect/cli.py,sha256=ph7kDh3WLDzPNQGPhfMgqCG4z7E8n3DUkKXKtLDkG-g,9092
122
+ cartography/driftdetect/cli.py,sha256=ieYJhVpgpkVi6RYu3K72ZX3r29ryg1Srh6NA41UaBZM,9225
123
123
  cartography/driftdetect/config.py,sha256=wHx1RmKRU3fJ9xD8Nf62uIFGOoaohgyqrFIAy-Fc_xM,2974
124
124
  cartography/driftdetect/detect_deviations.py,sha256=5e8qL1D6lIeZEqUBFPpfdcO0nBdDLSAXg7RrU9djL20,4404
125
125
  cartography/driftdetect/get_states.py,sha256=-p5FvqbHdCM6W5JBR8xAjwjD7Lod7wir3U5IDNJn_Ao,6183
@@ -139,20 +139,31 @@ cartography/intel/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU
139
139
  cartography/intel/analysis.py,sha256=uWIpmrk2hezkqjfepqz1VV2BopT7VZ-alBj2YekfE_c,1546
140
140
  cartography/intel/create_indexes.py,sha256=6G43Rko8oXsAhHdSb2RbSVMvGMLi_YALlyUQE77jPVw,742
141
141
  cartography/intel/dns.py,sha256=-qdPLy195GKSXjiutdjnNBh8LXjot3lc8pVQTa9HQMU,5777
142
+ cartography/intel/airbyte/__init__.py,sha256=1j5Rh7iW0TI9O9oLRq1XZd7LIO1t6NctOpcpd_E9urU,3097
143
+ cartography/intel/airbyte/connections.py,sha256=yMgKUqoq_68_bfC6OMthVmddhndAX1FQxmOc8AqQJrw,3630
144
+ cartography/intel/airbyte/destinations.py,sha256=6cnn6b3NHHQQA-JibtoY-H24e_k_J8Pc3qAzyO5bcwU,2152
145
+ cartography/intel/airbyte/organizations.py,sha256=WkgwwN8zDqUprUPEEBbAebznux9kq-VDfhtzQXMMJCA,1432
146
+ cartography/intel/airbyte/sources.py,sha256=8QBjF3H1OFl4_9VVYkHPWAIds6nJmDSxCpTTyfsdeWg,2022
147
+ cartography/intel/airbyte/tags.py,sha256=28ibBENyVdhJxXb_aur3elgjiyqWPflxkO3Mp-EOFTw,1537
148
+ cartography/intel/airbyte/users.py,sha256=QnZPmZNWiEk3HrSjQ1tUV5XjaO9hOHovQAK3PWlGvT0,2935
149
+ cartography/intel/airbyte/util.py,sha256=-YQKXhYGwx3k640Xj7KE1pRYLsdOl-z3JcTpiEmWM98,4941
150
+ cartography/intel/airbyte/workspaces.py,sha256=sUSwXNKNR8TukLrlpzMR0LBh-G1QV5laFvTAbFAisbw,1534
142
151
  cartography/intel/anthropic/__init__.py,sha256=KnpHLIfj1X60P3tOIscJRjOie_DGlQ6lNuLfkDLUkfU,1613
143
152
  cartography/intel/anthropic/apikeys.py,sha256=wdXnjPuZ1VaO0X96E6rk-tIhMSnXWNNPeUOQxgIQNok,1773
144
153
  cartography/intel/anthropic/users.py,sha256=8tE18LVlweG2BhdMPdicEw-_WCmFs5AR6cyFABE3pvs,1948
145
154
  cartography/intel/anthropic/util.py,sha256=m2OopxCC6chCwOxUXmc9nWW--nOlYyBL_Nc3Kd4CEwY,1847
146
155
  cartography/intel/anthropic/workspaces.py,sha256=_t2kdGIFceDziC_BqIJa9-nLWIoWJbPoFNX1JYqbQ-w,2544
147
- cartography/intel/aws/__init__.py,sha256=ZF59ftkFFnGKXxKvm0ONg3YNQGc38xhDxAH78DufoXE,12130
156
+ cartography/intel/aws/__init__.py,sha256=GOMkWtprFPZmPPe5ZfVPLLWovTo_Wj1271_rCCyCYyc,12245
148
157
  cartography/intel/aws/acm.py,sha256=a_i2pYPpocjlL8itwlcrmg8KrSLfjcmrkhcrPP-Omj8,3827
149
158
  cartography/intel/aws/apigateway.py,sha256=hOYVSY70DbrEfhi9gkX7PAMtg9WiPE0Pbp2wqGes7Vs,12198
150
159
  cartography/intel/aws/cloudtrail.py,sha256=kip3O39ulRmuo9RpfkofzUcGnkNnF8ksD7hP0Qe75-A,2441
151
- cartography/intel/aws/cloudwatch.py,sha256=k9A8h__dE8N2LeF0o8lpJcNqNAaTCG1Ip3PgAF9mnlQ,2488
160
+ cartography/intel/aws/cloudtrail_management_events.py,sha256=_kJR3N4eHm1c1OgObsUgAdB11UQjN91B9B0U3kuk0_o,13036
161
+ cartography/intel/aws/cloudwatch.py,sha256=Irocf84_n-JqFIbTf9tPkpJe5cpKSubd5daE7G8298Q,5107
162
+ cartography/intel/aws/codebuild.py,sha256=8I-Xzm_c5-ixnGOOHIQLYYpClnaGjjHrEMjQ0-DGsgM,3958
152
163
  cartography/intel/aws/config.py,sha256=IIICicLQ0OTT3H3o8LDakIkA1BPUMwSyzpKonet-PaY,7658
153
164
  cartography/intel/aws/dynamodb.py,sha256=VvvjeUgi1ZrqY9flXIQnfhhaSVSEqXXHW6T9917VLBk,5728
154
165
  cartography/intel/aws/ecr.py,sha256=7a9EHZru6AUIGE_6MJ4h4_ZmrvBxsXaerCHtGr59lJ0,8393
155
- cartography/intel/aws/ecs.py,sha256=-RPYdc6KC5fbaosaGsgWRkuLoHnE71euud4ZC1wGJI8,13464
166
+ cartography/intel/aws/ecs.py,sha256=h5Nn09MzqPftbXV46jybjsxnYVYW1Vit41kCkaFIq_4,14105
156
167
  cartography/intel/aws/efs.py,sha256=6ZvFmVHLfZlyo8xx2dlRsC1IoVOpBOtsij_AdFczkDo,7884
157
168
  cartography/intel/aws/eks.py,sha256=bPItyEj5q0nSDltJrr0S5MIrTPV0fK3xkqF6EV8fcqA,3759
158
169
  cartography/intel/aws/elasticache.py,sha256=dpRJCYxgUW2ImgGMt4L54xFil8apUoJxZq6hpewXxAE,4590
@@ -161,7 +172,7 @@ cartography/intel/aws/emr.py,sha256=EJoKjHQP7-F_A1trUNU05Sb42yNR1i0C9VIpGcCfAXw,
161
172
  cartography/intel/aws/iam.py,sha256=bkyIzWw2OC4MHxuoCvTiZ5eEGEQhz2asiUgY_tkX2GY,34322
162
173
  cartography/intel/aws/iam_instance_profiles.py,sha256=QUyu30xid60BFaemp-q0y9FgNsHaIQyQnQ8gHUzWC4k,2211
163
174
  cartography/intel/aws/identitycenter.py,sha256=C2EOfwQO1zBjePAXtreUcJIy7RU__ior3liRT4SpGO8,9544
164
- cartography/intel/aws/inspector.py,sha256=rD_O3DUGv5-GSMNqDzb11Ps5bX1sIo_JDq3UTAGvUpE,11168
175
+ cartography/intel/aws/inspector.py,sha256=G8a60uuFCuENvR2DNJ9VmWEJwG9UDENaC1buULvuSZc,12415
165
176
  cartography/intel/aws/kms.py,sha256=RtCxNG-Den-f4Il-NO3YL_-BFUmg1qFt4lNucue9SQM,12130
166
177
  cartography/intel/aws/lambda_function.py,sha256=cutCsMnvyJB8vKUP0fHORrhijw944cXSoLKOHYdi6SM,10389
167
178
  cartography/intel/aws/organizations.py,sha256=m5qk60N6pe7iKLN-Rtfg9aYv7OozoloSkcsuePd-RGs,4680
@@ -169,13 +180,13 @@ cartography/intel/aws/permission_relationships.py,sha256=LTmnHS6zk9hcdL548V5ka3E
169
180
  cartography/intel/aws/rds.py,sha256=9TQsoUQAJXj3x7laqJp06N9TQIN9ARyRiImBW9lQKOI,26574
170
181
  cartography/intel/aws/redshift.py,sha256=FGcCzcnm1OOrbJvLqtR1DwWVn1pt4Y6_eKkTUERT7Ws,7108
171
182
  cartography/intel/aws/resourcegroupstaggingapi.py,sha256=CebHaVLh8cr4CDYz54p5MGANPuE5Ni-_nFC78Znh4uU,10807
172
- cartography/intel/aws/resources.py,sha256=PPXh-rSCDxP-R-9-35R8m0RCzLQvaywzld3k0rU5AmE,4010
183
+ cartography/intel/aws/resources.py,sha256=q0YTxhrFbD9ELamRNYhf4oAtvSlP0Y4xVjVVZUqU2rw,4181
173
184
  cartography/intel/aws/route53.py,sha256=-AZDD4zVR5pQ_c1bx87UZuzbC0mDiI-YS_8llFMZkwI,14424
174
185
  cartography/intel/aws/s3.py,sha256=Da_5NYvQ7MN1AIN7CK9XXlVZo0fPdNHkqBZY1JWnHH4,33598
175
186
  cartography/intel/aws/s3accountpublicaccessblock.py,sha256=XkqHnbj9ODRcc7Rbl4swi03qvw_T-7Bnx3BHpTmlxio,4688
176
187
  cartography/intel/aws/secretsmanager.py,sha256=TelS5Th0Yooj-cv243VHWu-xEadhfyP9x7B1sjPWDIM,7606
177
188
  cartography/intel/aws/securityhub.py,sha256=oR808vrEAHsHH79u8hf-hkVTBcdNd6ZObCeNGD_xnSo,2324
178
- cartography/intel/aws/sns.py,sha256=R92aSStNxr8Qu3iVFShSXeTBXOOkebiQMXNoQM9HjCc,4793
189
+ cartography/intel/aws/sns.py,sha256=UlBvYzEjjXDgxN_dihqRatIcAt-NivNp_YsZPasVuT4,6377
179
190
  cartography/intel/aws/sqs.py,sha256=RUR8chO1oU5esZbHzKyhOO4L7LXmH78G6kGGtUCqB5Q,4096
180
191
  cartography/intel/aws/ssm.py,sha256=fHcx929my-Lb6fgJavyWLTBtPV6onaY7_GPnhKsv8hk,8173
181
192
  cartography/intel/aws/ec2/__init__.py,sha256=Lh_keh8WH-GNxxT4-Gw5MNiZFhDHe2kr3AChPgELa9w,346
@@ -194,7 +205,7 @@ cartography/intel/aws/ec2/reserved_instances.py,sha256=BsshVUzkuOstbidYEGq0By2Y-
194
205
  cartography/intel/aws/ec2/route_tables.py,sha256=NSW7B-4wII4mf5ClX5F1q4cKfSNAjxBSnrdk4EhxXz0,10465
195
206
  cartography/intel/aws/ec2/security_groups.py,sha256=JT3UFD-LgcdH85bel0GomHDEkCntPjvH0IXl9-ELMqI,6447
196
207
  cartography/intel/aws/ec2/snapshots.py,sha256=BiTvxR8ibt7wdBTNNpz75zRqc1Iiy6ksmowBSyBUhEU,5685
197
- cartography/intel/aws/ec2/subnets.py,sha256=R7qr4h0HQvwybjnKr9NN5UmY0tV6NovuJGOhEtHymPM,4141
208
+ cartography/intel/aws/ec2/subnets.py,sha256=LDuWdkQH-2O8TmqYlvyIn3STUgP6vlhKjG8o8XNMuGE,4142
198
209
  cartography/intel/aws/ec2/tgw.py,sha256=FcXWgLkr4EcD9DRXJMeyWQIgIHidaq40UrZneKhvnuE,9621
199
210
  cartography/intel/aws/ec2/util.py,sha256=t6oJX9nCTejvp0D9ihxfhmCoD1aoOXQB0cuvz0pMCe0,226
200
211
  cartography/intel/aws/ec2/volumes.py,sha256=C5V9LRE41REU4siHMAaE9yAjtbpLi8yTkaqLEw1uXMg,3726
@@ -242,7 +253,7 @@ cartography/intel/entra/__init__.py,sha256=c4zkMFKRem8aRDUqjAvcNw8UwBvAv24Xq8yed
242
253
  cartography/intel/entra/applications.py,sha256=RAvUxk_hwsKbf64ohhg3f-QuTzsT7zb8q13d9nQuyqg,13625
243
254
  cartography/intel/entra/groups.py,sha256=PiXW28jWv1zoAYsTy_6ntAUDdQWdO2-AZvH5BfGytvg,5026
244
255
  cartography/intel/entra/ou.py,sha256=iv5UgRcPIaUZ8DdveKTmMkz0thEPYichpL9XntbHiPo,3803
245
- cartography/intel/entra/users.py,sha256=Zk9k8A3XeE-ZgUhY9fwN7GYhzbguGE-nHNOm6kvOCpo,7557
256
+ cartography/intel/entra/users.py,sha256=LiQuvpzPefRWvW1o07l-8TYrr6sUmpiYFli_4ROKJEw,8491
246
257
  cartography/intel/gcp/__init__.py,sha256=PtzheGqf2otRVmDe3Ai1n6JFq3_OtS2hmJrRfj8_BnQ,18896
247
258
  cartography/intel/gcp/compute.py,sha256=BShmgIhv_9E4rYfDe2ER3XIWZmU1NJIyZWIAvZY0uh0,49805
248
259
  cartography/intel/gcp/crm.py,sha256=BoVBKthjviOD7WSGhXdKtBhrk4TR9qTxMQX6xsmEedw,12682
@@ -300,10 +311,30 @@ cartography/intel/pagerduty/services.py,sha256=LRatlKI9VzincZC5Jci9sEonhGS1svbae
300
311
  cartography/intel/pagerduty/teams.py,sha256=1MUsb0GW1jaKA-T9K94JhkvcwTR_PrTIyC08Z2zH7qM,2518
301
312
  cartography/intel/pagerduty/users.py,sha256=bOO4TBkIfRe2MdQHgwQ6E4CFOnRty32u1U9Hz2DypuQ,1631
302
313
  cartography/intel/pagerduty/vendors.py,sha256=mTF7KiVfvrajC3pZkZnKZCm9gqlAZa7zmx8eAXSmL14,1567
314
+ cartography/intel/scaleway/__init__.py,sha256=vxKJIGr6dWz1GH4wQzheE94CJoFBR9IGZGHLThf0ETg,3665
315
+ cartography/intel/scaleway/projects.py,sha256=dWunbXaCu59ZQ_X-jxA8RlNMAy7o5Lk5LifgkkLQ434,2076
316
+ cartography/intel/scaleway/utils.py,sha256=436m9TdJcd8SKMKt2f2LHH35VoFZDasy3ghiDRCEE1U,1285
317
+ cartography/intel/scaleway/iam/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
318
+ cartography/intel/scaleway/iam/apikeys.py,sha256=Fo6iEavcbIlFZ-mv6Iedoc2amrSkc5zsCKGlUUY_iYU,1800
319
+ cartography/intel/scaleway/iam/applications.py,sha256=EBOtdskGW3Uj0ATJgpTZUKIcqLu6A5pDz35U3CMxmO8,1919
320
+ cartography/intel/scaleway/iam/groups.py,sha256=OvDwK_Or9rfJzudfUlSWDu-e-Yq29nO5L7HSBL7FAW0,1775
321
+ cartography/intel/scaleway/iam/users.py,sha256=UDdPEgCcQwcXB_o_iTcBn7Rkr8aDPYBK6h68UkCcAwM,1751
322
+ cartography/intel/scaleway/instances/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
323
+ cartography/intel/scaleway/instances/flexibleips.py,sha256=jLVSa887yyC89yS6bDTPgUgtCMy2MgY0tQYTjE6cvBo,2472
324
+ cartography/intel/scaleway/instances/instances.py,sha256=myWaw2UScVp9VnFjmCD9yZoGZit3I1Ie7dNT7o46Ugc,2708
325
+ cartography/intel/scaleway/storage/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
326
+ cartography/intel/scaleway/storage/snapshots.py,sha256=6OIQOZHHu-aBNgQXSUmpbfgtjM1iXpeETRPUK4ShkT4,2471
327
+ cartography/intel/scaleway/storage/volumes.py,sha256=VHhyptEv3QoVYb7R2ubjbpJs1BaXgnlhocag_uPagsE,2392
303
328
  cartography/intel/semgrep/__init__.py,sha256=zNAH5iDbLeLeQex2L5RZytGVFY4OHYvfGuEsSpdBF9s,1353
304
329
  cartography/intel/semgrep/dependencies.py,sha256=C_gAVOx8wN70sqvFUQD9fZ3ijv_D4W_-EiLrZ4qsvHY,8429
305
330
  cartography/intel/semgrep/deployment.py,sha256=RdLuTxSyKiIaAuposppp7Vjjq4w9M9QFSXmHgGmSWkY,2020
306
331
  cartography/intel/semgrep/findings.py,sha256=EtNwK__L1Af45xilyQPnMzu40mjWVfiCaw4WL-MWH7c,10036
332
+ cartography/intel/sentinelone/__init__.py,sha256=P6XGOQNNyjXp465rNOAXBbWMfEElPym-vLnayup8jM8,2174
333
+ cartography/intel/sentinelone/account.py,sha256=FHWAl6iqpVUKTSNr0u6iAoZ7HgZezvY5JaNzYLs6GdY,4404
334
+ cartography/intel/sentinelone/agent.py,sha256=7ZAG1D6X-7LkhZ2Yjatm84VvFybfNEmILqky0XsYGwQ,4386
335
+ cartography/intel/sentinelone/api.py,sha256=2SUD5ukrUt8-JcMkJ6e0_ZUwh68DwBDssbUZMYInDR0,3042
336
+ cartography/intel/sentinelone/application.py,sha256=11V57OtQqcW6_K6NxIjQQVKfU-91qbQhDxxBu30RBAI,7951
337
+ cartography/intel/sentinelone/utils.py,sha256=asKaF2aHNcoutu89z_aXqG7lOmZ55TJJTNd90FJtBW8,1112
307
338
  cartography/intel/snipeit/__init__.py,sha256=XIBEduCoQirs1NuOJ02XKvcBAc0pyeFMJNJsn4iJfXc,1102
308
339
  cartography/intel/snipeit/asset.py,sha256=kQQQwYPM6Pm7bJRSMguKmFLg0s6AD6RG1nU5LLLbhVk,2043
309
340
  cartography/intel/snipeit/user.py,sha256=qO-uwbwyM_Ft95-q-yWUxOL9UdtGpxSn4XM5T-evdNs,1987
@@ -318,6 +349,15 @@ cartography/intel/tailscale/utils.py,sha256=Xhwcb_31LWQy4MhoFWre_fX8gvddFVt13jjk
318
349
  cartography/intel/trivy/__init__.py,sha256=hYroW2ewXRiTPYC7QqxFBaakUgk6j7U66bCSh8cgrGY,5277
319
350
  cartography/intel/trivy/scanner.py,sha256=u9b5ORpVXaqR6owO6QXjNh9Nz1Vx1nn-rsYfcyrSlx8,12021
320
351
  cartography/models/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
352
+ cartography/models/airbyte/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
353
+ cartography/models/airbyte/connection.py,sha256=_tQSLqOwSU5tplBmLj331Knrv3n_czcvWWWHKpFuirg,5401
354
+ cartography/models/airbyte/destination.py,sha256=Ac1JTzzInkbsrn0t0nisGl3VTo9ZHbF9BaT3w54CGd0,3251
355
+ cartography/models/airbyte/organization.py,sha256=RdgMgHjDdUyS6S32lReYHBcijBEXvOx_HgtRUwgVVcg,757
356
+ cartography/models/airbyte/source.py,sha256=VImW8CRp_qe6M-I-_nxo7EFfzjkiD4p_kIxev7i4S4Q,3151
357
+ cartography/models/airbyte/stream.py,sha256=LenZqTLi7VdfnfGfDUpMXOrn1jiWpEzFgsZM7MUzjC8,3040
358
+ cartography/models/airbyte/tag.py,sha256=1CnWGauKtAwRQMkoogb2TFNiKlEA7D5bo8cHXGm86AQ,2682
359
+ cartography/models/airbyte/user.py,sha256=i31QLWUybtQZDe68wFOYb6zqyLdEGtFKGPR1Da_WiCU,4329
360
+ cartography/models/airbyte/workspace.py,sha256=HcoSsvyQEY04JL1ekgnX5Qie2d9CRsH0T3jDkiKaZa4,1939
321
361
  cartography/models/anthropic/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
322
362
  cartography/models/anthropic/apikey.py,sha256=eDaaXBHkZtRrKCDgeBD5BYR4jVUH-5QTi7Ji9uEpd-0,3578
323
363
  cartography/models/anthropic/organization.py,sha256=3Jr9dplEF57Jn50YKn_Jy7LMpDfSydudtiy3_Pismgc,669
@@ -332,9 +372,13 @@ cartography/models/aws/emr.py,sha256=iZPzyqFrDsyRSRZqjCHlyDkO91H__6iszJq5hkNpOLU
332
372
  cartography/models/aws/acm/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
333
373
  cartography/models/aws/acm/certificate.py,sha256=GvB7xKBCoPmLsV9LnqAUg8x8sGTsDDsr7WIaqh4Sc-M,3141
334
374
  cartography/models/aws/cloudtrail/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
375
+ cartography/models/aws/cloudtrail/management_events.py,sha256=RKAHm6RGVJBaOS90Csa7Vg1LEgq4lXY9YnRIMD2iLwM,2816
335
376
  cartography/models/aws/cloudtrail/trail.py,sha256=qQnpqFypKef8E7-JOR83euAtI6_j2KdjzGGFiQa6xkA,3676
336
377
  cartography/models/aws/cloudwatch/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
378
+ cartography/models/aws/cloudwatch/log_metric_filter.py,sha256=hROU3pp_D_q21dAPTddm4lcAcCZaDV_UJ49QAZ6SCLc,3321
337
379
  cartography/models/aws/cloudwatch/loggroup.py,sha256=_MRpRvU_Vg2rVlUdzfae6vOpbpmYaYE1EVN5zWucFbE,2456
380
+ cartography/models/aws/codebuild/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
381
+ cartography/models/aws/codebuild/project.py,sha256=r_DMCtHlbG9FGUk_I8j_E1inIbFcGAXtL6HxHrcgg0U,2122
338
382
  cartography/models/aws/dynamodb/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
339
383
  cartography/models/aws/dynamodb/gsi.py,sha256=9bG1weq7vuEdt5sUDRqY5Rud9V1pZsohd8O08lZq7lc,3116
340
384
  cartography/models/aws/dynamodb/tables.py,sha256=_dUgNqJ3KGO85yFOwKQOy3pnUyb1nyZQ18pNS0OUuKY,2278
@@ -353,7 +397,7 @@ cartography/models/aws/ec2/loadbalancerv2.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRk
353
397
  cartography/models/aws/ec2/network_acl_rules.py,sha256=G2YJNOY67XQWfQbHQXkuquabiLQJp4smleLn_pdFrGY,4034
354
398
  cartography/models/aws/ec2/network_acls.py,sha256=HFInVqHmINe2kWnsbJe8rGng-UHsZDkhRXRnd1nI0v4,3532
355
399
  cartography/models/aws/ec2/networkinterface_instance.py,sha256=Gq2vGL7waocwsYRxMwOCV2vqBpUhtJDFilnylkMiKn4,4849
356
- cartography/models/aws/ec2/networkinterfaces.py,sha256=FJ9FCUlqKnmjTB5W7MK-iKtl3l5mB7Tik697mZ2riB4,4270
400
+ cartography/models/aws/ec2/networkinterfaces.py,sha256=Q1AodKLX7IJWp1Z6tP2uCl21uSjdtZiX8SZImBCIbWo,4404
357
401
  cartography/models/aws/ec2/privateip_networkinterface.py,sha256=8Dt2r0sELvTAYYsUX13X-SKLJ6LDpTGmoAyLdNVYcBY,3128
358
402
  cartography/models/aws/ec2/reservations.py,sha256=Lep6M-srupbAZZzCFmOpiwz22AafJLwKzSAuuxe3BlA,1980
359
403
  cartography/models/aws/ec2/route_table_associations.py,sha256=Rs9uG976zZazcUIGL5oGpLkB72gLxWHFNCUqrvjMTvg,3974
@@ -361,17 +405,17 @@ cartography/models/aws/ec2/route_tables.py,sha256=R0gcwaOsLXRjpuvL9Pq-uGosetZysH
361
405
  cartography/models/aws/ec2/routes.py,sha256=T_PR1-pf_ZiE_w3zNaHaksXI5sIsaDwmH3sRctlP4uc,3725
362
406
  cartography/models/aws/ec2/securitygroup_instance.py,sha256=j-g1CQHYFTb0D0YsLP5QLy-lBJ0IUc3xTtaX8r9nzIY,2974
363
407
  cartography/models/aws/ec2/securitygroup_networkinterface.py,sha256=2MBxYXxuq_L0COeC04SgFfwxeXw-pc4N4JAH9oZyWQE,2481
364
- cartography/models/aws/ec2/subnet_instance.py,sha256=gAw2TJIlBnBNWn83l60N_Pi5Ni4oNe2lbZpg-u39BU8,2818
365
- cartography/models/aws/ec2/subnet_networkinterface.py,sha256=YCfribtM4gEIb2Jan3xoBZke_IeNnejB95unfnIrX3Y,3739
408
+ cartography/models/aws/ec2/subnet_instance.py,sha256=6bgrWbFcCjBIjqd_6lcKv6rWyll-Zx1aA5TK68DcIhg,2952
409
+ cartography/models/aws/ec2/subnet_networkinterface.py,sha256=B60S1YvEopVWNlRL5W-hMby3-P06uaNcC_8oOLoRGik,3872
366
410
  cartography/models/aws/ec2/volumes.py,sha256=ITSJ_1HgrU5wTF1zZV8sYRZsI0QzktoHkvTgpnfM1hI,4547
367
411
  cartography/models/aws/ecs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
368
412
  cartography/models/aws/ecs/clusters.py,sha256=uu-UzkSbpLu4UG5I6NsFMaThrPYl6jYe71EX8baMy1Q,2845
369
413
  cartography/models/aws/ecs/container_definitions.py,sha256=ocJMyl6wfxbW3aPrR6xwzqP9VMpkanKA3ghqcM5BWL0,4169
370
414
  cartography/models/aws/ecs/container_instances.py,sha256=LhBkyEWfOSejD57AERoQYVECJxwUMF09zPhrGYvnqwk,3632
371
- cartography/models/aws/ecs/containers.py,sha256=9_aeKnd5ozHYTREIvfztCC_idUk7MFRRCQq2bUir724,3302
415
+ cartography/models/aws/ecs/containers.py,sha256=jmMdaonho4VI-TdZqBgTc1Ck-6XqI4O0hKRh1Ioerc4,3955
372
416
  cartography/models/aws/ecs/services.py,sha256=YPVTS0BB3X6tFCqIX3V1AZXcnHQEADusQkErd88oH7o,4964
373
- cartography/models/aws/ecs/task_definitions.py,sha256=zZh2SHXEAimp9YgYf1wRU-wNs_4LWNk7uNzDoms8Sy8,4182
374
- cartography/models/aws/ecs/tasks.py,sha256=6r2WZDc26LGR2j-U5s5v4d4PbMIvEDSkLAbTtpFdrUM,5013
417
+ cartography/models/aws/ecs/task_definitions.py,sha256=Wee44GZazQfZQ1TRRZr8bYXwSGgNNDuYxHRBhOmvWzg,5573
418
+ cartography/models/aws/ecs/tasks.py,sha256=E_wx1lwV0b9MMgFW-nBZFfq_AhFTV38-NC1LKGxs3lE,5809
375
419
  cartography/models/aws/efs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
376
420
  cartography/models/aws/efs/access_point.py,sha256=Auk8E0AoPjrCxch8bP8fhT3JZ2WxblTTfYSqamA_p8g,3185
377
421
  cartography/models/aws/efs/file_system.py,sha256=6BNzjQJKZ-rYlDLw1UvDBhVRKre07-9EkcW9xvR3Wh0,2842
@@ -385,8 +429,8 @@ cartography/models/aws/identitycenter/awsidentitycenter.py,sha256=-ybcEgdZjwF0RI
385
429
  cartography/models/aws/identitycenter/awspermissionset.py,sha256=12kDKzsJQOHg6d9dlX98sM9gKXGMQh7FaxzlJov7Dgo,3651
386
430
  cartography/models/aws/identitycenter/awsssouser.py,sha256=EWnyX5ev2aaK64YjKGuJSoknBF5b_kS5xc0kDf_0xfo,2886
387
431
  cartography/models/aws/inspector/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
388
- cartography/models/aws/inspector/findings.py,sha256=z6fVygv8rmlYB1huX64jDgrCEjoTdLkoeKIVeoMk9wI,6469
389
- cartography/models/aws/inspector/packages.py,sha256=4TWu9EiS8aOR-n5z0FqG7564t-GKS4zrD4THX_2NKRo,3348
432
+ cartography/models/aws/inspector/findings.py,sha256=ikm0vvjhGK_-BDt5VGyS4_0KwJsq81T6VgROq9HK2NE,8188
433
+ cartography/models/aws/inspector/packages.py,sha256=IoJT7w6n8Vx3vGGJPWKDgJLRpioqtOS5iMYZLnX7thg,2113
390
434
  cartography/models/aws/s3/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
391
435
  cartography/models/aws/s3/account_public_access_block.py,sha256=L6AS0OncfSOWHP4pOXshnJFDPwnWqywzUIeUppJcw-Q,2256
392
436
  cartography/models/aws/s3/notification.py,sha256=SF1VvCP_2WVh8K29d4ms8MUcg9AyO_MN8vCgzLFlGAs,1017
@@ -394,6 +438,7 @@ cartography/models/aws/secretsmanager/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCe
394
438
  cartography/models/aws/secretsmanager/secret_version.py,sha256=Ah4b9BjgL24MhmxRV-HarvmNs_uCRNVMkxgvzIEp9uk,4167
395
439
  cartography/models/aws/sns/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
396
440
  cartography/models/aws/sns/topic.py,sha256=_Lcu7_c_UCUcPKEo5-kCdX3fAOkar_YKZbLmonX3BR8,2349
441
+ cartography/models/aws/sns/topic_subscription.py,sha256=8R8Gxj4QuZhpokLOhb_VogrYR04NiFpcMJ58L16gxQc,2947
397
442
  cartography/models/aws/sqs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
398
443
  cartography/models/aws/sqs/queue.py,sha256=ELSbeeYXotmzku6KAeDt2i1qMTUsV4tOIVA5JaPgXEE,3992
399
444
  cartography/models/aws/ssm/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -436,7 +481,7 @@ cartography/models/entra/application.py,sha256=ZNVY0a0T2nmdoVj2i5Xri0J8oIR5d9HVc
436
481
  cartography/models/entra/group.py,sha256=d8QLBzqje4MkdN2uC4LXSxjUQ8_2T_cv4YbrPGfZ994,3809
437
482
  cartography/models/entra/ou.py,sha256=YmtW1Cp_XX29uzbunhEGl073AzV6PZsQtLs_MR-ACNU,2056
438
483
  cartography/models/entra/tenant.py,sha256=abpNTvOtXHgdrU-y7q6jt--odcq1eRsT2j5nMdVy_Gw,1793
439
- cartography/models/entra/user.py,sha256=YExHNKhHHhnwal0O12OCpvtdjcED5RONdBjMpPeMDBw,4877
484
+ cartography/models/entra/user.py,sha256=uVMOYhVMwnR1dqokhAzk1IlHpmKwGpz0H5osS_9ENBE,3144
440
485
  cartography/models/gcp/iam.py,sha256=k6egP-DHvMX18QcLuwklxqLZXd4YPMhAs5-qWWloqJ4,3071
441
486
  cartography/models/github/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
442
487
  cartography/models/github/orgs.py,sha256=cEG7yX56VzzI3OkQFjUum2LdrXCLWl4ExvNqSZ7Bmiw,1107
@@ -462,11 +507,30 @@ cartography/models/openai/organization.py,sha256=wkqjzApro3pv3Tq5IztXr2AbZdjbLmB
462
507
  cartography/models/openai/project.py,sha256=DnZ8Mwp514pP3ieCfZGYmYo6aAn2W9JSGbPwT4nblNA,3564
463
508
  cartography/models/openai/serviceaccount.py,sha256=Hzrqw-w8jlJGy_I-TW3pct4lQW0Lcnl32uv_Pht-oLQ,2041
464
509
  cartography/models/openai/user.py,sha256=FsleyvdUZXpI3XUKDMYOpsbun6fpmTNXabDBhS1BfaM,2001
510
+ cartography/models/scaleway/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
511
+ cartography/models/scaleway/organization.py,sha256=WyOwCz8EeDguvkL8uV_fwJ55PeC984OtEF4xeyTDdVk,664
512
+ cartography/models/scaleway/project.py,sha256=5iWOTRhtRqhnG33gNtheDFz865TNg8DeKfotNwSfzV4,2027
513
+ cartography/models/scaleway/iam/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
514
+ cartography/models/scaleway/iam/apikey.py,sha256=hg_5oUY_w0X417bbRh9a15oVgl_IEKOLHVewVaDKYXg,3846
515
+ cartography/models/scaleway/iam/application.py,sha256=rFbeHDb3DEh4N9iVyCViBvV4mHtJ5xTsnMVAoMqjae0,2275
516
+ cartography/models/scaleway/iam/group.py,sha256=7K--61bIASkNm25rhXgQqgAyGFF-3_FXYPBmJqtv51Q,3796
517
+ cartography/models/scaleway/iam/user.py,sha256=3B9n2aTj92QGToozTiAVMifbacBpn7-EJRt1u8hdvvg,2641
518
+ cartography/models/scaleway/instance/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
519
+ cartography/models/scaleway/instance/flexibleip.py,sha256=0c3s0RI79FShTulYkLh3kuxHGITWI9CX_teQ3Pi27qU,2177
520
+ cartography/models/scaleway/instance/instance.py,sha256=4rLttx75vu0EGXXGQn4-XR4ai_0SAUIXEFZWEnUK450,5020
521
+ cartography/models/scaleway/storage/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
522
+ cartography/models/scaleway/storage/snapshot.py,sha256=E46mkMhFsFSwMB_3EMDj8NyLLG3f74BNe8ahe8sCsTo,3270
523
+ cartography/models/scaleway/storage/volume.py,sha256=XrsgCIRshcX4ywKQbQOLn1fvV7MP5eaKmiElqOOJsks,2217
465
524
  cartography/models/semgrep/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
466
525
  cartography/models/semgrep/dependencies.py,sha256=8rC5VE9cCxz0HImY3xHg5tWmMcTkv-6FI2fZg5M2qkA,4038
467
526
  cartography/models/semgrep/deployment.py,sha256=n6bKyFPRfCDiMXaqZhv3SMAMS4Ba8XOBM7oawOfc-5Y,745
468
527
  cartography/models/semgrep/findings.py,sha256=QycDISvd7BduVkRCaGzVS-656htuP5FVxI1PSE4tQFE,5607
469
528
  cartography/models/semgrep/locations.py,sha256=uC0QCsqSWV0ZCvQuR3OPpecImbumNLpRqr3NC1PrnQ0,3079
529
+ cartography/models/sentinelone/__init__.py,sha256=DNFTywfYLRp-cX6S6zbVRkFmjud5MVtMM4Fro8PTU4Q,26
530
+ cartography/models/sentinelone/account.py,sha256=bUh07nyPXEMXVx8kCqT0-gX9tBH8-GufcQvC2TlHnP0,1370
531
+ cartography/models/sentinelone/agent.py,sha256=3FTJQQ_QRq9GGeIjuV0_8ZeJcnKWGHHC3exddZldqCY,2287
532
+ cartography/models/sentinelone/application.py,sha256=g77cmjuTmiX_AwgZ7-x5eP-DsKXoCjzeAQuYtuCAcyo,1811
533
+ cartography/models/sentinelone/application_version.py,sha256=ICxaz1rndwBpaJUgbdTshhn-cbcU_KbV7VeKyUqsdoQ,3829
470
534
  cartography/models/snipeit/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
471
535
  cartography/models/snipeit/asset.py,sha256=64Cq6ff0jemj_fvhQ_-B1xEHqsZ95RqtcbDSTzCI_00,3312
472
536
  cartography/models/snipeit/tenant.py,sha256=E6uaY3d2W3MmfuUqF2TLpRP3T1QZkoIXRtp9BGxxSxk,695
@@ -482,9 +546,9 @@ cartography/models/trivy/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZ
482
546
  cartography/models/trivy/findings.py,sha256=SgI_h1aRyR20uAHvuXIZ1T6r4IZJt6SVhxRaF2bTsm0,3085
483
547
  cartography/models/trivy/fix.py,sha256=ho9ENVl9HSXqyggyCwR6ilkOBKDxpQ7rGibo_j21NA4,2587
484
548
  cartography/models/trivy/package.py,sha256=IwO1RZZ-MFRtNbt8Cq6YFl6fdNJMFmULnJkkK8Q4rL4,2809
485
- cartography-0.106.0rc2.dist-info/licenses/LICENSE,sha256=kvLEBRYaQ1RvUni6y7Ti9uHeooqnjPoo6n_-0JO1ETc,11351
486
- cartography-0.106.0rc2.dist-info/METADATA,sha256=Y1-Ir7t90DLnZrn2Tq-ee9j6akBX_Ezyc8YeZejQFWY,12409
487
- cartography-0.106.0rc2.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
488
- cartography-0.106.0rc2.dist-info/entry_points.txt,sha256=GVIAWD0o0_K077qMA_k1oZU4v-M0a8GLKGJR8tZ-qH8,112
489
- cartography-0.106.0rc2.dist-info/top_level.txt,sha256=BHqsNJQiI6Q72DeypC1IINQJE59SLhU4nllbQjgJi9g,12
490
- cartography-0.106.0rc2.dist-info/RECORD,,
549
+ cartography-0.107.0.dist-info/licenses/LICENSE,sha256=kvLEBRYaQ1RvUni6y7Ti9uHeooqnjPoo6n_-0JO1ETc,11351
550
+ cartography-0.107.0.dist-info/METADATA,sha256=zGlsGEWekT42Znv2OXRiv8NlFa7NVZkpfxNZ2H5Jqbk,12858
551
+ cartography-0.107.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
552
+ cartography-0.107.0.dist-info/entry_points.txt,sha256=GVIAWD0o0_K077qMA_k1oZU4v-M0a8GLKGJR8tZ-qH8,112
553
+ cartography-0.107.0.dist-info/top_level.txt,sha256=BHqsNJQiI6Q72DeypC1IINQJE59SLhU4nllbQjgJi9g,12
554
+ cartography-0.107.0.dist-info/RECORD,,