cartography 0.103.0__py3-none-any.whl → 0.104.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.
- cartography/_version.py +2 -2
- cartography/cli.py +21 -3
- cartography/config.py +4 -0
- cartography/intel/anthropic/__init__.py +62 -0
- cartography/intel/anthropic/apikeys.py +72 -0
- cartography/intel/anthropic/users.py +75 -0
- cartography/intel/anthropic/util.py +51 -0
- cartography/intel/anthropic/workspaces.py +95 -0
- cartography/intel/aws/ec2/load_balancer_v2s.py +4 -1
- cartography/intel/aws/secretsmanager.py +136 -3
- cartography/intel/aws/ssm.py +71 -0
- cartography/intel/openai/adminapikeys.py +1 -2
- cartography/intel/openai/apikeys.py +1 -1
- cartography/intel/openai/projects.py +4 -1
- cartography/intel/openai/serviceaccounts.py +1 -1
- cartography/intel/openai/users.py +0 -3
- cartography/intel/openai/util.py +17 -1
- cartography/models/anthropic/__init__.py +0 -0
- cartography/models/anthropic/apikey.py +90 -0
- cartography/models/anthropic/organization.py +19 -0
- cartography/models/anthropic/user.py +48 -0
- cartography/models/anthropic/workspace.py +90 -0
- cartography/models/aws/secretsmanager/__init__.py +0 -0
- cartography/models/aws/secretsmanager/secret_version.py +116 -0
- cartography/models/aws/ssm/parameters.py +84 -0
- cartography/models/openai/project.py +20 -1
- cartography/sync.py +2 -0
- {cartography-0.103.0.dist-info → cartography-0.104.0rc1.dist-info}/METADATA +4 -4
- {cartography-0.103.0.dist-info → cartography-0.104.0rc1.dist-info}/RECORD +33 -20
- {cartography-0.103.0.dist-info → cartography-0.104.0rc1.dist-info}/WHEEL +1 -1
- {cartography-0.103.0.dist-info → cartography-0.104.0rc1.dist-info}/entry_points.txt +0 -0
- {cartography-0.103.0.dist-info → cartography-0.104.0rc1.dist-info}/licenses/LICENSE +0 -0
- {cartography-0.103.0.dist-info → cartography-0.104.0rc1.dist-info}/top_level.txt +0 -0
|
@@ -58,6 +58,25 @@ class OpenAIProjectToUserRel(CartographyRelSchema):
|
|
|
58
58
|
properties: OpenAIProjectToUserRelProperties = OpenAIProjectToUserRelProperties()
|
|
59
59
|
|
|
60
60
|
|
|
61
|
+
@dataclass(frozen=True)
|
|
62
|
+
class OpenAIProjectToUserAdminRelProperties(CartographyRelProperties):
|
|
63
|
+
lastupdated: PropertyRef = PropertyRef("lastupdated", set_in_kwargs=True)
|
|
64
|
+
|
|
65
|
+
|
|
66
|
+
@dataclass(frozen=True)
|
|
67
|
+
# (:OpenAIUser)-[:ADMIN_OF]->(:OpenAIProject)
|
|
68
|
+
class OpenAIProjectToUserAdminRel(CartographyRelSchema):
|
|
69
|
+
target_node_label: str = "OpenAIUser"
|
|
70
|
+
target_node_matcher: TargetNodeMatcher = make_target_node_matcher(
|
|
71
|
+
{"id": PropertyRef("admins", one_to_many=True)},
|
|
72
|
+
)
|
|
73
|
+
direction: LinkDirection = LinkDirection.INWARD
|
|
74
|
+
rel_label: str = "ADMIN_OF"
|
|
75
|
+
properties: OpenAIProjectToUserAdminRelProperties = (
|
|
76
|
+
OpenAIProjectToUserAdminRelProperties()
|
|
77
|
+
)
|
|
78
|
+
|
|
79
|
+
|
|
61
80
|
@dataclass(frozen=True)
|
|
62
81
|
class OpenAIProjectSchema(CartographyNodeSchema):
|
|
63
82
|
label: str = "OpenAIProject"
|
|
@@ -66,5 +85,5 @@ class OpenAIProjectSchema(CartographyNodeSchema):
|
|
|
66
85
|
OpenAIProjectToOrganizationRel()
|
|
67
86
|
)
|
|
68
87
|
other_relationships: OtherRelationships = OtherRelationships(
|
|
69
|
-
[OpenAIProjectToUserRel()],
|
|
88
|
+
[OpenAIProjectToUserRel(), OpenAIProjectToUserAdminRel()],
|
|
70
89
|
)
|
cartography/sync.py
CHANGED
|
@@ -14,6 +14,7 @@ from neo4j import GraphDatabase
|
|
|
14
14
|
from statsd import StatsClient
|
|
15
15
|
|
|
16
16
|
import cartography.intel.analysis
|
|
17
|
+
import cartography.intel.anthropic
|
|
17
18
|
import cartography.intel.aws
|
|
18
19
|
import cartography.intel.azure
|
|
19
20
|
import cartography.intel.bigfix
|
|
@@ -47,6 +48,7 @@ logger = logging.getLogger(__name__)
|
|
|
47
48
|
TOP_LEVEL_MODULES = OrderedDict(
|
|
48
49
|
{ # preserve order so that the default sync always runs `analysis` at the very end
|
|
49
50
|
"create-indexes": cartography.intel.create_indexes.run,
|
|
51
|
+
"anthropic": cartography.intel.anthropic.start_anthropic_ingestion,
|
|
50
52
|
"aws": cartography.intel.aws.start_aws_ingestion,
|
|
51
53
|
"azure": cartography.intel.azure.start_azure_ingestion,
|
|
52
54
|
"entra": cartography.intel.entra.start_entra_ingestion,
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: cartography
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.104.0rc1
|
|
4
4
|
Summary: Explore assets and their relationships across your technical infrastructure.
|
|
5
5
|
Maintainer: Cartography Contributors
|
|
6
6
|
License: apache2
|
|
@@ -80,8 +80,7 @@ You can learn more about the story behind Cartography in our [presentation at BS
|
|
|
80
80
|
|
|
81
81
|
|
|
82
82
|
## Supported platforms
|
|
83
|
-
|
|
84
|
-
- [Amazon Web Services](https://cartography-cncf.github.io/cartography/modules/aws/index.html) - API Gateway, CloudWatch, Config, EC2, ECS, ECR, Elasticsearch, Elastic Kubernetes Service (EKS), DynamoDB, IAM, Inspector, KMS, Lambda, RDS, Redshift, Route53, S3, Secrets Manager, Security Hub, SQS, SSM, STS, Tags
|
|
83
|
+
- [Amazon Web Services](https://cartography-cncf.github.io/cartography/modules/aws/index.html) - 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
|
|
85
84
|
- [Google Cloud Platform](https://cartography-cncf.github.io/cartography/modules/gcp/index.html) - Cloud Resource Manager, Compute, DNS, Storage, Google Kubernetes Engine
|
|
86
85
|
- [Google GSuite](https://cartography-cncf.github.io/cartography/modules/gsuite/index.html) - users, groups
|
|
87
86
|
- [Oracle Cloud Infrastructure](https://cartography-cncf.github.io/cartography/modules/oci/index.html) - IAM
|
|
@@ -101,7 +100,8 @@ You can learn more about the story behind Cartography in our [presentation at BS
|
|
|
101
100
|
- [SnipeIT](https://cartography-cncf.github.io/cartography/modules/snipeit/index.html) - Users, Assets
|
|
102
101
|
- [Tailscale](https://cartography-cncf.github.io/cartography/modules/tailscale/index.html) - Tailnet, Users, Devices, Groups, Tags, PostureIntegrations
|
|
103
102
|
- [Cloudflare](https://cartography-cncf.github.io/cartography/modules/cloudflare/index.html) - Account, Role, Member, Zone, DNSRecord
|
|
104
|
-
- [OpenAI](https://cartography-cncf.github.io/cartography/modules/openai/index.html) -
|
|
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
105
|
|
|
106
106
|
|
|
107
107
|
## Philosophy
|
|
@@ -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=
|
|
4
|
-
cartography/cli.py,sha256=
|
|
5
|
-
cartography/config.py,sha256=
|
|
3
|
+
cartography/_version.py,sha256=zfL3dJycki-k3Ae2V6nX64kPLH950t57mMQTL3JpQR4,525
|
|
4
|
+
cartography/cli.py,sha256=FCm81J7u_yjOuyuaXiXmZ-7v2i-rl3T6nS_xvnX5ndQ,40226
|
|
5
|
+
cartography/config.py,sha256=WlvHWN9zHYNcytMsqgCB2yvR4Llvx-PPFoj-TTUN-DA,13906
|
|
6
6
|
cartography/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
7
7
|
cartography/stats.py,sha256=N95prYlSzY8U52VFgKIDgOWOawu5Mig4N7GcVp3binQ,4420
|
|
8
|
-
cartography/sync.py,sha256=
|
|
8
|
+
cartography/sync.py,sha256=eeiIShkhjcAKd3WGvXMn8VQwKOdE0Gq1p3J2QxJTt1Q,13306
|
|
9
9
|
cartography/util.py,sha256=F1-sQrU3x8HdDV2JDTllJvYNy7CKBNg7W93GMqXSjFU,15281
|
|
10
10
|
cartography/client/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
11
11
|
cartography/client/aws/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -139,6 +139,11 @@ 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/anthropic/__init__.py,sha256=KnpHLIfj1X60P3tOIscJRjOie_DGlQ6lNuLfkDLUkfU,1613
|
|
143
|
+
cartography/intel/anthropic/apikeys.py,sha256=wdXnjPuZ1VaO0X96E6rk-tIhMSnXWNNPeUOQxgIQNok,1773
|
|
144
|
+
cartography/intel/anthropic/users.py,sha256=8tE18LVlweG2BhdMPdicEw-_WCmFs5AR6cyFABE3pvs,1948
|
|
145
|
+
cartography/intel/anthropic/util.py,sha256=m2OopxCC6chCwOxUXmc9nWW--nOlYyBL_Nc3Kd4CEwY,1847
|
|
146
|
+
cartography/intel/anthropic/workspaces.py,sha256=_t2kdGIFceDziC_BqIJa9-nLWIoWJbPoFNX1JYqbQ-w,2544
|
|
142
147
|
cartography/intel/aws/__init__.py,sha256=ZF59ftkFFnGKXxKvm0ONg3YNQGc38xhDxAH78DufoXE,12130
|
|
143
148
|
cartography/intel/aws/apigateway.py,sha256=hOYVSY70DbrEfhi9gkX7PAMtg9WiPE0Pbp2wqGes7Vs,12198
|
|
144
149
|
cartography/intel/aws/cloudtrail.py,sha256=5PwogjaraliVB7pgy-eCk5AD_OjJtRPUKdM0vzZ9M8Q,3579
|
|
@@ -167,11 +172,11 @@ cartography/intel/aws/resources.py,sha256=79alRrmn-T3G9uRKxUVAwxdWPMWV32ncUPb5Kb
|
|
|
167
172
|
cartography/intel/aws/route53.py,sha256=-AZDD4zVR5pQ_c1bx87UZuzbC0mDiI-YS_8llFMZkwI,14424
|
|
168
173
|
cartography/intel/aws/s3.py,sha256=2mLYIPwyZu2oBxP_zFbTi713cgjuOkjIjjwxxCDE7mo,27581
|
|
169
174
|
cartography/intel/aws/s3accountpublicaccessblock.py,sha256=XkqHnbj9ODRcc7Rbl4swi03qvw_T-7Bnx3BHpTmlxio,4688
|
|
170
|
-
cartography/intel/aws/secretsmanager.py,sha256=
|
|
175
|
+
cartography/intel/aws/secretsmanager.py,sha256=WnHA7QQVJgD_2Q9eFl0YfJvTM2S34srkHSymLe7gzkc,7272
|
|
171
176
|
cartography/intel/aws/securityhub.py,sha256=oR808vrEAHsHH79u8hf-hkVTBcdNd6ZObCeNGD_xnSo,2324
|
|
172
177
|
cartography/intel/aws/sns.py,sha256=R92aSStNxr8Qu3iVFShSXeTBXOOkebiQMXNoQM9HjCc,4793
|
|
173
178
|
cartography/intel/aws/sqs.py,sha256=HUZZlNdyjt1ZIkSaTEDUXsWuIVxGxTC0ypNSsRvXKVQ,6519
|
|
174
|
-
cartography/intel/aws/ssm.py,sha256=
|
|
179
|
+
cartography/intel/aws/ssm.py,sha256=fHcx929my-Lb6fgJavyWLTBtPV6onaY7_GPnhKsv8hk,8173
|
|
175
180
|
cartography/intel/aws/ec2/__init__.py,sha256=Lh_keh8WH-GNxxT4-Gw5MNiZFhDHe2kr3AChPgELa9w,346
|
|
176
181
|
cartography/intel/aws/ec2/auto_scaling_groups.py,sha256=s2XP1HPEWYg752trj_bwH9kB5zsRORErD9VFqfU6c1s,9141
|
|
177
182
|
cartography/intel/aws/ec2/elastic_ip_addresses.py,sha256=7y4hwNXZTeo3lKX9cNrk9HvBTb5RXRD9GDU7dnDSYwg,4148
|
|
@@ -180,7 +185,7 @@ cartography/intel/aws/ec2/instances.py,sha256=AkbFynkP8L06wKry118czGZJpoYNXSuQli
|
|
|
180
185
|
cartography/intel/aws/ec2/internet_gateways.py,sha256=oALj-_nv91Otnxlp9R_vrMwbLWPEUFZLRRy60LFBqgM,3103
|
|
181
186
|
cartography/intel/aws/ec2/key_pairs.py,sha256=494IxQac8XCbxhVWQKBHrkWnoKq8WXZ_D3bqR8DGRg0,2828
|
|
182
187
|
cartography/intel/aws/ec2/launch_templates.py,sha256=d7QRmEd2IYxRJH7mQVv8ugVqRJYWmN6SEfIwqoNnNX4,6938
|
|
183
|
-
cartography/intel/aws/ec2/load_balancer_v2s.py,sha256=
|
|
188
|
+
cartography/intel/aws/ec2/load_balancer_v2s.py,sha256=t_ut_uvkrUB3B16vAJGqG3PsnJy7fTR7Vv2lsg7hyXM,9396
|
|
184
189
|
cartography/intel/aws/ec2/load_balancers.py,sha256=SRdsSIUvq8zhLMqa1hpFv7bio2wtpLKmkfbZl9XNCFY,6321
|
|
185
190
|
cartography/intel/aws/ec2/network_acls.py,sha256=UqAYCA6uA7UWbJVjC9wRBM8W0410j-boOSgyZ79UnfA,6873
|
|
186
191
|
cartography/intel/aws/ec2/network_interfaces.py,sha256=3-3TFjDOQ4sFTNdjFkkFrxcxntN5KK_dE7nkVLqAswU,9553
|
|
@@ -278,12 +283,12 @@ cartography/intel/okta/sync_state.py,sha256=GYtAJlbEObiZKPihcIzVzB6APdI_TwUYzhyc
|
|
|
278
283
|
cartography/intel/okta/users.py,sha256=bZ6pDMqmAdh0p3eD0YiNHDTzOi7sWVx-ZRYMfGH4Mqs,6517
|
|
279
284
|
cartography/intel/okta/utils.py,sha256=sALSL4hf2PJe-_Nu-RR4qremp0bneXTxJGvwQvI2Fh0,2196
|
|
280
285
|
cartography/intel/openai/__init__.py,sha256=zbs9cpWVd6Gl-5P7ntwRUj2wl2rxQnhsiQqYjbH2Vxk,2494
|
|
281
|
-
cartography/intel/openai/adminapikeys.py,sha256=
|
|
282
|
-
cartography/intel/openai/apikeys.py,sha256=
|
|
283
|
-
cartography/intel/openai/projects.py,sha256=
|
|
284
|
-
cartography/intel/openai/serviceaccounts.py,sha256=
|
|
285
|
-
cartography/intel/openai/users.py,sha256=
|
|
286
|
-
cartography/intel/openai/util.py,sha256=
|
|
286
|
+
cartography/intel/openai/adminapikeys.py,sha256=SvKZsMsJ-B5GV7sT48mOVMmyxaRu-yogl6L2BI_7T84,2290
|
|
287
|
+
cartography/intel/openai/apikeys.py,sha256=cYgH8Druyb1qJNaqA39X-VGUMQUnFL8Xce0_5C5z5wQ,2414
|
|
288
|
+
cartography/intel/openai/projects.py,sha256=zWJIey6uDkJTofZXrfwYZ0ktcRqz2VCdG5es1qBMI9Y,2448
|
|
289
|
+
cartography/intel/openai/serviceaccounts.py,sha256=1vIvXt57HV9AUPAs8141zsjnI8TjVGrjCEZSHL4MwMU,2042
|
|
290
|
+
cartography/intel/openai/users.py,sha256=ibP3F1w0NP3lDMVkufKCBOLlW-FRCNEq4tzXlicU_Dc,1884
|
|
291
|
+
cartography/intel/openai/util.py,sha256=ug_wyahclnpGFvj280xKwvvIGRZ7epuL0hG0a9vpdCM,1524
|
|
287
292
|
cartography/intel/pagerduty/__init__.py,sha256=5ZAFrh9jujgfNKCk_hEX8YxZasjBFOoB365o9HBpdXM,2182
|
|
288
293
|
cartography/intel/pagerduty/escalation_policies.py,sha256=qJbKlDoyLxZKCLhhG9ZD90NTO0JWCCDNdqdo7gKIg1Y,6503
|
|
289
294
|
cartography/intel/pagerduty/schedules.py,sha256=ULpbeHEHbA050ErW_eY3tI_3NaRSQws8FL-d2OWetGg,4817
|
|
@@ -307,6 +312,11 @@ cartography/intel/tailscale/tailnets.py,sha256=Ooc4XSOArWWFJoKykJDrk_tm2OKK1BHwf
|
|
|
307
312
|
cartography/intel/tailscale/users.py,sha256=kjHAdIVGUwx28RRQ0KwLsdsZT9L-HlfwTph9dis7grc,1820
|
|
308
313
|
cartography/intel/tailscale/utils.py,sha256=Xhwcb_31LWQy4MhoFWre_fX8gvddFVt13jjk5p0TPH4,4828
|
|
309
314
|
cartography/models/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
315
|
+
cartography/models/anthropic/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
316
|
+
cartography/models/anthropic/apikey.py,sha256=eDaaXBHkZtRrKCDgeBD5BYR4jVUH-5QTi7Ji9uEpd-0,3578
|
|
317
|
+
cartography/models/anthropic/organization.py,sha256=3Jr9dplEF57Jn50YKn_Jy7LMpDfSydudtiy3_Pismgc,669
|
|
318
|
+
cartography/models/anthropic/user.py,sha256=SJWrQoL-RGiC7uBuJ72vstnCXbOj2umcgypHKT-F3AA,1995
|
|
319
|
+
cartography/models/anthropic/workspace.py,sha256=I7-UkDhXr75b9KFA_WeuIhbTUikOP22RSEsuEQh8ppM,3684
|
|
310
320
|
cartography/models/aws/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
311
321
|
cartography/models/aws/apigateway.py,sha256=qwb-NQzw47qu3zH6SdGicrDfClYn19wZFYASaF_6GWo,2312
|
|
312
322
|
cartography/models/aws/apigatewaycertificate.py,sha256=vFKip_EeOws3Ke-77xI6eyUMDJK2ZgB0XWHytIuesKA,3019
|
|
@@ -361,11 +371,14 @@ cartography/models/aws/inspector/findings.py,sha256=z6fVygv8rmlYB1huX64jDgrCEjoT
|
|
|
361
371
|
cartography/models/aws/inspector/packages.py,sha256=4TWu9EiS8aOR-n5z0FqG7564t-GKS4zrD4THX_2NKRo,3348
|
|
362
372
|
cartography/models/aws/s3/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
363
373
|
cartography/models/aws/s3/account_public_access_block.py,sha256=L6AS0OncfSOWHP4pOXshnJFDPwnWqywzUIeUppJcw-Q,2256
|
|
374
|
+
cartography/models/aws/secretsmanager/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
375
|
+
cartography/models/aws/secretsmanager/secret_version.py,sha256=y-iSOkbTZjHKw4RMW6B2W5l-5g_ndYz24N-4myHScC0,4271
|
|
364
376
|
cartography/models/aws/sns/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
365
377
|
cartography/models/aws/sns/topic.py,sha256=_Lcu7_c_UCUcPKEo5-kCdX3fAOkar_YKZbLmonX3BR8,2349
|
|
366
378
|
cartography/models/aws/ssm/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
367
379
|
cartography/models/aws/ssm/instance_information.py,sha256=URlqoum2ZSKrd2BYgqFRwqJxW8mdgzjNhlvzM02v2_4,4149
|
|
368
380
|
cartography/models/aws/ssm/instance_patch.py,sha256=03eHkwLaCXDv5LR9yJXH8DYfUYH6O6uZcGtaI9PV5B0,3158
|
|
381
|
+
cartography/models/aws/ssm/parameters.py,sha256=pKwDhG7yFwshUCQC24SSQw9MjIJ2KE1VIoESw2fASTs,3307
|
|
369
382
|
cartography/models/bigfix/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
370
383
|
cartography/models/bigfix/bigfix_computer.py,sha256=ep96YTcXXEJEIvHt3KZBYt5LaA4INRu7Awl_uiyWdFE,3552
|
|
371
384
|
cartography/models/bigfix/bigfix_root.py,sha256=MngCXiibyoLrOv3ADTV0iQKX0pYBr-oQAhQvN2o-M1E,598
|
|
@@ -415,7 +428,7 @@ cartography/models/openai/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJW
|
|
|
415
428
|
cartography/models/openai/adminapikey.py,sha256=Hu-_EK60FvO_7uCd_5Sh_LXs2RcJVEmIeat1s0ns_e0,3574
|
|
416
429
|
cartography/models/openai/apikey.py,sha256=kj9tmbjhNElu6vhHD048Fac-uNqmDxYMHr5H7OFmWwE,3370
|
|
417
430
|
cartography/models/openai/organization.py,sha256=wkqjzApro3pv3Tq5IztXr2AbZdjbLmBXH9XK5r6qD_A,638
|
|
418
|
-
cartography/models/openai/project.py,sha256=
|
|
431
|
+
cartography/models/openai/project.py,sha256=DnZ8Mwp514pP3ieCfZGYmYo6aAn2W9JSGbPwT4nblNA,3564
|
|
419
432
|
cartography/models/openai/serviceaccount.py,sha256=Hzrqw-w8jlJGy_I-TW3pct4lQW0Lcnl32uv_Pht-oLQ,2041
|
|
420
433
|
cartography/models/openai/user.py,sha256=FsleyvdUZXpI3XUKDMYOpsbun6fpmTNXabDBhS1BfaM,2001
|
|
421
434
|
cartography/models/semgrep/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -434,9 +447,9 @@ cartography/models/tailscale/postureintegration.py,sha256=nwyzYoCZn9PPaChVxCL7ib
|
|
|
434
447
|
cartography/models/tailscale/tag.py,sha256=7a8SidgsBI8f_ZzoHo3NPAA83JSXgS785VxlDeU2cBs,3955
|
|
435
448
|
cartography/models/tailscale/tailnet.py,sha256=QE7Wl_JEthqZbfUK9fgURERnd91i-a3VIchxi6H7Css,1341
|
|
436
449
|
cartography/models/tailscale/user.py,sha256=i3skB3IYQgRSuHkP3SUWEyv3QnyPwnXjdBUkhwQBWko,2299
|
|
437
|
-
cartography-0.
|
|
438
|
-
cartography-0.
|
|
439
|
-
cartography-0.
|
|
440
|
-
cartography-0.
|
|
441
|
-
cartography-0.
|
|
442
|
-
cartography-0.
|
|
450
|
+
cartography-0.104.0rc1.dist-info/licenses/LICENSE,sha256=kvLEBRYaQ1RvUni6y7Ti9uHeooqnjPoo6n_-0JO1ETc,11351
|
|
451
|
+
cartography-0.104.0rc1.dist-info/METADATA,sha256=e0s_Zkn32f5TdI8cOccbwbSWOcrCkSoLAENNiMkt1g0,12296
|
|
452
|
+
cartography-0.104.0rc1.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
453
|
+
cartography-0.104.0rc1.dist-info/entry_points.txt,sha256=GVIAWD0o0_K077qMA_k1oZU4v-M0a8GLKGJR8tZ-qH8,112
|
|
454
|
+
cartography-0.104.0rc1.dist-info/top_level.txt,sha256=BHqsNJQiI6Q72DeypC1IINQJE59SLhU4nllbQjgJi9g,12
|
|
455
|
+
cartography-0.104.0rc1.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|