cartography 0.108.0rc1__py3-none-any.whl → 0.108.0rc2__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.

@@ -0,0 +1,53 @@
1
+ from dataclasses import dataclass
2
+
3
+ from cartography.models.core.common import PropertyRef
4
+ from cartography.models.core.nodes import CartographyNodeProperties
5
+ from cartography.models.core.nodes import CartographyNodeSchema
6
+ from cartography.models.core.relationships import CartographyRelProperties
7
+ from cartography.models.core.relationships import CartographyRelSchema
8
+ from cartography.models.core.relationships import LinkDirection
9
+ from cartography.models.core.relationships import make_target_node_matcher
10
+ from cartography.models.core.relationships import TargetNodeMatcher
11
+
12
+
13
+ @dataclass(frozen=True)
14
+ class CloudWatchMetricAlarmNodeProperties(CartographyNodeProperties):
15
+ id: PropertyRef = PropertyRef("AlarmArn")
16
+ arn: PropertyRef = PropertyRef("AlarmArn", extra_index=True)
17
+ alarm_name: PropertyRef = PropertyRef("AlarmName")
18
+ alarm_description: PropertyRef = PropertyRef("AlarmDescription")
19
+ state_value: PropertyRef = PropertyRef("StateValue")
20
+ state_reason: PropertyRef = PropertyRef("StateReason")
21
+ actions_enabled: PropertyRef = PropertyRef("ActionsEnabled")
22
+ comparison_operator: PropertyRef = PropertyRef("ComparisonOperator")
23
+ region: PropertyRef = PropertyRef("Region", set_in_kwargs=True)
24
+ lastupdated: PropertyRef = PropertyRef("lastupdated", set_in_kwargs=True)
25
+
26
+
27
+ @dataclass(frozen=True)
28
+ class CloudWatchMetricAlarmToAwsAccountRelProperties(CartographyRelProperties):
29
+ lastupdated: PropertyRef = PropertyRef("lastupdated", set_in_kwargs=True)
30
+
31
+
32
+ @dataclass(frozen=True)
33
+ class CloudWatchMetricAlarmToAWSAccountRel(CartographyRelSchema):
34
+ target_node_label: str = "AWSAccount"
35
+ target_node_matcher: TargetNodeMatcher = make_target_node_matcher(
36
+ {"id": PropertyRef("AWS_ID", set_in_kwargs=True)},
37
+ )
38
+ direction: LinkDirection = LinkDirection.INWARD
39
+ rel_label: str = "RESOURCE"
40
+ properties: CloudWatchMetricAlarmToAwsAccountRelProperties = (
41
+ CloudWatchMetricAlarmToAwsAccountRelProperties()
42
+ )
43
+
44
+
45
+ @dataclass(frozen=True)
46
+ class CloudWatchMetricAlarmSchema(CartographyNodeSchema):
47
+ label: str = "CloudWatchMetricAlarm"
48
+ properties: CloudWatchMetricAlarmNodeProperties = (
49
+ CloudWatchMetricAlarmNodeProperties()
50
+ )
51
+ sub_resource_relationship: CloudWatchMetricAlarmToAWSAccountRel = (
52
+ CloudWatchMetricAlarmToAWSAccountRel()
53
+ )
@@ -0,0 +1,65 @@
1
+ from dataclasses import dataclass
2
+
3
+ from cartography.models.aws.ec2.auto_scaling_groups import EC2SubnetToAWSAccountRel
4
+ from cartography.models.core.common import PropertyRef
5
+ from cartography.models.core.nodes import CartographyNodeProperties
6
+ from cartography.models.core.nodes import CartographyNodeSchema
7
+ from cartography.models.core.relationships import CartographyRelProperties
8
+ from cartography.models.core.relationships import CartographyRelSchema
9
+ from cartography.models.core.relationships import LinkDirection
10
+ from cartography.models.core.relationships import make_target_node_matcher
11
+ from cartography.models.core.relationships import OtherRelationships
12
+ from cartography.models.core.relationships import TargetNodeMatcher
13
+
14
+
15
+ @dataclass(frozen=True)
16
+ class EC2SubnetNodeProperties(CartographyNodeProperties):
17
+ id: PropertyRef = PropertyRef("SubnetId")
18
+ subnetid: PropertyRef = PropertyRef("SubnetId", extra_index=True)
19
+ subnet_id: PropertyRef = PropertyRef("SubnetId", extra_index=True)
20
+ subnet_arn: PropertyRef = PropertyRef("SubnetArn")
21
+ name: PropertyRef = PropertyRef("CidrBlock")
22
+ cidr_block: PropertyRef = PropertyRef("CidrBlock")
23
+ available_ip_address_count: PropertyRef = PropertyRef("AvailableIpAddressCount")
24
+ default_for_az: PropertyRef = PropertyRef("DefaultForAz")
25
+ map_customer_owned_ip_on_launch: PropertyRef = PropertyRef(
26
+ "MapCustomerOwnedIpOnLaunch"
27
+ )
28
+ state: PropertyRef = PropertyRef("State")
29
+ assignipv6addressoncreation: PropertyRef = PropertyRef(
30
+ "AssignIpv6AddressOnCreation"
31
+ )
32
+ map_public_ip_on_launch: PropertyRef = PropertyRef("MapPublicIpOnLaunch")
33
+ availability_zone: PropertyRef = PropertyRef("AvailabilityZone")
34
+ availability_zone_id: PropertyRef = PropertyRef("AvailabilityZoneId")
35
+ vpc_id: PropertyRef = PropertyRef("VpcId")
36
+ region: PropertyRef = PropertyRef("Region", set_in_kwargs=True)
37
+ lastupdated: PropertyRef = PropertyRef("lastupdated", set_in_kwargs=True)
38
+
39
+
40
+ @dataclass(frozen=True)
41
+ class EC2SubnetToVpcRelProperties(CartographyRelProperties):
42
+ lastupdated: PropertyRef = PropertyRef("lastupdated", set_in_kwargs=True)
43
+
44
+
45
+ @dataclass(frozen=True)
46
+ class EC2SubnetToVpcRel(CartographyRelSchema):
47
+ target_node_label: str = "AWSVpc"
48
+ target_node_matcher: TargetNodeMatcher = make_target_node_matcher(
49
+ {"id": PropertyRef("VpcId")}
50
+ )
51
+ direction: LinkDirection = LinkDirection.OUTWARD
52
+ rel_label: str = "MEMBER_OF_AWS_VPC"
53
+ properties: EC2SubnetToVpcRelProperties = EC2SubnetToVpcRelProperties()
54
+
55
+
56
+ @dataclass(frozen=True)
57
+ class EC2SubnetSchema(CartographyNodeSchema):
58
+ label: str = "EC2Subnet"
59
+ properties: EC2SubnetNodeProperties = EC2SubnetNodeProperties()
60
+ sub_resource_relationship: EC2SubnetToAWSAccountRel = EC2SubnetToAWSAccountRel()
61
+ other_relationships: OtherRelationships = OtherRelationships(
62
+ [
63
+ EC2SubnetToVpcRel(),
64
+ ]
65
+ )
File without changes
@@ -0,0 +1,65 @@
1
+ from dataclasses import dataclass
2
+
3
+ from cartography.models.core.common import PropertyRef
4
+ from cartography.models.core.nodes import CartographyNodeProperties
5
+ from cartography.models.core.nodes import CartographyNodeSchema
6
+ from cartography.models.core.relationships import CartographyRelProperties
7
+ from cartography.models.core.relationships import CartographyRelSchema
8
+ from cartography.models.core.relationships import LinkDirection
9
+ from cartography.models.core.relationships import make_target_node_matcher
10
+ from cartography.models.core.relationships import TargetNodeMatcher
11
+
12
+
13
+ @dataclass(frozen=True)
14
+ class ElasticacheClusterNodeProperties(CartographyNodeProperties):
15
+ id: PropertyRef = PropertyRef("ARN")
16
+ arn: PropertyRef = PropertyRef("ARN", extra_index=True)
17
+ cache_cluster_id: PropertyRef = PropertyRef("CacheClusterId")
18
+ cache_node_type: PropertyRef = PropertyRef("CacheNodeType")
19
+ engine: PropertyRef = PropertyRef("Engine")
20
+ engine_version: PropertyRef = PropertyRef("EngineVersion")
21
+ cache_cluster_status: PropertyRef = PropertyRef("CacheClusterStatus")
22
+ num_cache_nodes: PropertyRef = PropertyRef("NumCacheNodes")
23
+ preferred_availability_zone: PropertyRef = PropertyRef("PreferredAvailabilityZone")
24
+ preferred_maintenance_window: PropertyRef = PropertyRef(
25
+ "PreferredMaintenanceWindow"
26
+ )
27
+ cache_cluster_create_time: PropertyRef = PropertyRef("CacheClusterCreateTime")
28
+ cache_subnet_group_name: PropertyRef = PropertyRef("CacheSubnetGroupName")
29
+ auto_minor_version_upgrade: PropertyRef = PropertyRef("AutoMinorVersionUpgrade")
30
+ replication_group_id: PropertyRef = PropertyRef("ReplicationGroupId")
31
+ snapshot_retention_limit: PropertyRef = PropertyRef("SnapshotRetentionLimit")
32
+ snapshot_window: PropertyRef = PropertyRef("SnapshotWindow")
33
+ auth_token_enabled: PropertyRef = PropertyRef("AuthTokenEnabled")
34
+ transit_encryption_enabled: PropertyRef = PropertyRef("TransitEncryptionEnabled")
35
+ at_rest_encryption_enabled: PropertyRef = PropertyRef("AtRestEncryptionEnabled")
36
+ topic_arn: PropertyRef = PropertyRef("TopicArn")
37
+ region: PropertyRef = PropertyRef("Region", set_in_kwargs=True)
38
+ lastupdated: PropertyRef = PropertyRef("lastupdated", set_in_kwargs=True)
39
+
40
+
41
+ @dataclass(frozen=True)
42
+ class ElasticacheClusterToAWSAccountRelProperties(CartographyRelProperties):
43
+ lastupdated: PropertyRef = PropertyRef("lastupdated", set_in_kwargs=True)
44
+
45
+
46
+ @dataclass(frozen=True)
47
+ class ElasticacheClusterToAWSAccountRel(CartographyRelSchema):
48
+ target_node_label: str = "AWSAccount"
49
+ target_node_matcher: TargetNodeMatcher = make_target_node_matcher(
50
+ {"id": PropertyRef("AWS_ID", set_in_kwargs=True)}
51
+ )
52
+ direction: LinkDirection = LinkDirection.INWARD
53
+ rel_label: str = "RESOURCE"
54
+ properties: ElasticacheClusterToAWSAccountRelProperties = (
55
+ ElasticacheClusterToAWSAccountRelProperties()
56
+ )
57
+
58
+
59
+ @dataclass(frozen=True)
60
+ class ElasticacheClusterSchema(CartographyNodeSchema):
61
+ label: str = "ElasticacheCluster"
62
+ properties: ElasticacheClusterNodeProperties = ElasticacheClusterNodeProperties()
63
+ sub_resource_relationship: ElasticacheClusterToAWSAccountRel = (
64
+ ElasticacheClusterToAWSAccountRel()
65
+ )
@@ -0,0 +1,67 @@
1
+ from dataclasses import dataclass
2
+
3
+ from cartography.models.core.common import PropertyRef
4
+ from cartography.models.core.nodes import CartographyNodeProperties
5
+ from cartography.models.core.nodes import CartographyNodeSchema
6
+ from cartography.models.core.relationships import CartographyRelProperties
7
+ from cartography.models.core.relationships import CartographyRelSchema
8
+ from cartography.models.core.relationships import LinkDirection
9
+ from cartography.models.core.relationships import make_target_node_matcher
10
+ from cartography.models.core.relationships import OtherRelationships
11
+ from cartography.models.core.relationships import TargetNodeMatcher
12
+
13
+
14
+ @dataclass(frozen=True)
15
+ class ElasticacheTopicNodeProperties(CartographyNodeProperties):
16
+ id: PropertyRef = PropertyRef("TopicArn")
17
+ arn: PropertyRef = PropertyRef("TopicArn", extra_index=True)
18
+ status: PropertyRef = PropertyRef("TopicStatus")
19
+ lastupdated: PropertyRef = PropertyRef("lastupdated", set_in_kwargs=True)
20
+
21
+
22
+ @dataclass(frozen=True)
23
+ class ElasticacheTopicToAWSAccountRelProperties(CartographyRelProperties):
24
+ lastupdated: PropertyRef = PropertyRef("lastupdated", set_in_kwargs=True)
25
+
26
+
27
+ @dataclass(frozen=True)
28
+ class ElasticacheTopicToAWSAccountRel(CartographyRelSchema):
29
+ target_node_label: str = "AWSAccount"
30
+ target_node_matcher: TargetNodeMatcher = make_target_node_matcher(
31
+ {"id": PropertyRef("AWS_ID", set_in_kwargs=True)}
32
+ )
33
+ direction: LinkDirection = LinkDirection.INWARD
34
+ rel_label: str = "RESOURCE"
35
+ properties: ElasticacheTopicToAWSAccountRelProperties = (
36
+ ElasticacheTopicToAWSAccountRelProperties()
37
+ )
38
+
39
+
40
+ @dataclass(frozen=True)
41
+ class ElasticacheTopicToElasticacheClusterRelProperties(CartographyRelProperties):
42
+ lastupdated: PropertyRef = PropertyRef("lastupdated", set_in_kwargs=True)
43
+
44
+
45
+ @dataclass(frozen=True)
46
+ class ElasticacheTopicToElasticacheClusterRel(CartographyRelSchema):
47
+ target_node_label: str = "ElasticacheCluster"
48
+ target_node_matcher: TargetNodeMatcher = make_target_node_matcher(
49
+ {"id": PropertyRef("cluster_arns", one_to_many=True)}
50
+ )
51
+ direction: LinkDirection = LinkDirection.OUTWARD
52
+ rel_label: str = "CACHE_CLUSTER"
53
+ properties: ElasticacheTopicToElasticacheClusterRelProperties = (
54
+ ElasticacheTopicToElasticacheClusterRelProperties()
55
+ )
56
+
57
+
58
+ @dataclass(frozen=True)
59
+ class ElasticacheTopicSchema(CartographyNodeSchema):
60
+ label: str = "ElasticacheTopic"
61
+ properties: ElasticacheTopicNodeProperties = ElasticacheTopicNodeProperties()
62
+ sub_resource_relationship: ElasticacheTopicToAWSAccountRel = (
63
+ ElasticacheTopicToAWSAccountRel()
64
+ )
65
+ other_relationships: OtherRelationships = OtherRelationships(
66
+ [ElasticacheTopicToElasticacheClusterRel()]
67
+ )
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: cartography
3
- Version: 0.108.0rc1
3
+ Version: 0.108.0rc2
4
4
  Summary: Explore assets and their relationships across your technical infrastructure.
5
5
  Maintainer: Cartography Contributors
6
6
  License: apache2
@@ -1,6 +1,6 @@
1
1
  cartography/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
2
2
  cartography/__main__.py,sha256=y5iqUrj4BmqZfjeDT-9balzpXeMARgHeIedRMRI1gr8,100
3
- cartography/_version.py,sha256=eEqrH1vh8eixiAKTF8j2rZx8PgqciWc7qQgFtyY-itY,525
3
+ cartography/_version.py,sha256=-jKkLBIUcqBMjSG7IeuKsEuUS2MiMWFfQ_YKmiQ1zTE,525
4
4
  cartography/cli.py,sha256=qOu3nSIKWsuDbuPe5XrKBoAArFQKZP8jSjK8OtI69_E,46595
5
5
  cartography/config.py,sha256=q-fVcWJH9ida_cAII9RcOT0FUpFFify7W6NMvmC3kGk,16873
6
6
  cartography/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -154,9 +154,9 @@ cartography/intel/anthropic/workspaces.py,sha256=_t2kdGIFceDziC_BqIJa9-nLWIoWJbP
154
154
  cartography/intel/aws/__init__.py,sha256=lgu0kxERg_dJGuktEDU0ImpHuNGHJharoLEpirKWPZM,12330
155
155
  cartography/intel/aws/acm.py,sha256=a_i2pYPpocjlL8itwlcrmg8KrSLfjcmrkhcrPP-Omj8,3827
156
156
  cartography/intel/aws/apigateway.py,sha256=hOYVSY70DbrEfhi9gkX7PAMtg9WiPE0Pbp2wqGes7Vs,12198
157
- cartography/intel/aws/cloudtrail.py,sha256=kip3O39ulRmuo9RpfkofzUcGnkNnF8ksD7hP0Qe75-A,2441
158
- cartography/intel/aws/cloudtrail_management_events.py,sha256=_kJR3N4eHm1c1OgObsUgAdB11UQjN91B9B0U3kuk0_o,13036
159
- cartography/intel/aws/cloudwatch.py,sha256=Irocf84_n-JqFIbTf9tPkpJe5cpKSubd5daE7G8298Q,5107
157
+ cartography/intel/aws/cloudtrail.py,sha256=LCqf3pQMiMY4h1Wehb_OjwXst2fMIEnNOD8HbXsK4X4,2753
158
+ cartography/intel/aws/cloudtrail_management_events.py,sha256=cNVJkjenr4J9Cec8PGykdEFDcJaK2wmKPv7yiQC5Cd0,33792
159
+ cartography/intel/aws/cloudwatch.py,sha256=bBPlx5W15nun-jhYs-UAZQpo9Qm7FcBs4gBQevTqmi4,7246
160
160
  cartography/intel/aws/codebuild.py,sha256=8I-Xzm_c5-ixnGOOHIQLYYpClnaGjjHrEMjQ0-DGsgM,3958
161
161
  cartography/intel/aws/config.py,sha256=IIICicLQ0OTT3H3o8LDakIkA1BPUMwSyzpKonet-PaY,7658
162
162
  cartography/intel/aws/dynamodb.py,sha256=VvvjeUgi1ZrqY9flXIQnfhhaSVSEqXXHW6T9917VLBk,5728
@@ -164,7 +164,7 @@ cartography/intel/aws/ecr.py,sha256=7a9EHZru6AUIGE_6MJ4h4_ZmrvBxsXaerCHtGr59lJ0,
164
164
  cartography/intel/aws/ecs.py,sha256=h5Nn09MzqPftbXV46jybjsxnYVYW1Vit41kCkaFIq_4,14105
165
165
  cartography/intel/aws/efs.py,sha256=6ZvFmVHLfZlyo8xx2dlRsC1IoVOpBOtsij_AdFczkDo,7884
166
166
  cartography/intel/aws/eks.py,sha256=bPItyEj5q0nSDltJrr0S5MIrTPV0fK3xkqF6EV8fcqA,3759
167
- cartography/intel/aws/elasticache.py,sha256=dpRJCYxgUW2ImgGMt4L54xFil8apUoJxZq6hpewXxAE,4590
167
+ cartography/intel/aws/elasticache.py,sha256=ePTi-49Lbw94L6m7id5dUk1cG6FZRizFxojxKZBk8XY,5552
168
168
  cartography/intel/aws/elasticsearch.py,sha256=8X_Rp1zejkvXho0Zz_Cr4g-w9IpompdYRc-YS595Aso,8645
169
169
  cartography/intel/aws/emr.py,sha256=EJoKjHQP7-F_A1trUNU05Sb42yNR1i0C9VIpGcCfAXw,3662
170
170
  cartography/intel/aws/guardduty.py,sha256=QpwWisz3TzbOxkRKNjByk4WWDCCMXr8jgNOgOdjQM5g,8532
@@ -204,7 +204,7 @@ cartography/intel/aws/ec2/reserved_instances.py,sha256=BsshVUzkuOstbidYEGq0By2Y-
204
204
  cartography/intel/aws/ec2/route_tables.py,sha256=NSW7B-4wII4mf5ClX5F1q4cKfSNAjxBSnrdk4EhxXz0,10465
205
205
  cartography/intel/aws/ec2/security_groups.py,sha256=VAa4Cp0PJtjLrl95MIudXdF8VR4ZafY3bOjuyrlPnmc,6582
206
206
  cartography/intel/aws/ec2/snapshots.py,sha256=X7J9xmhrvPILFEt7yS6yiQFElvddjkhZj2V8b9KaGRM,4460
207
- cartography/intel/aws/ec2/subnets.py,sha256=LDuWdkQH-2O8TmqYlvyIn3STUgP6vlhKjG8o8XNMuGE,4142
207
+ cartography/intel/aws/ec2/subnets.py,sha256=uzZ_YyRY2zycKXsGS05qmT6cHHi4SNbN2v1y-r4MgLY,2828
208
208
  cartography/intel/aws/ec2/tgw.py,sha256=FcXWgLkr4EcD9DRXJMeyWQIgIHidaq40UrZneKhvnuE,9621
209
209
  cartography/intel/aws/ec2/util.py,sha256=t6oJX9nCTejvp0D9ihxfhmCoD1aoOXQB0cuvz0pMCe0,226
210
210
  cartography/intel/aws/ec2/volumes.py,sha256=C5V9LRE41REU4siHMAaE9yAjtbpLi8yTkaqLEw1uXMg,3726
@@ -371,11 +371,12 @@ cartography/models/aws/emr.py,sha256=iZPzyqFrDsyRSRZqjCHlyDkO91H__6iszJq5hkNpOLU
371
371
  cartography/models/aws/acm/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
372
372
  cartography/models/aws/acm/certificate.py,sha256=GvB7xKBCoPmLsV9LnqAUg8x8sGTsDDsr7WIaqh4Sc-M,3141
373
373
  cartography/models/aws/cloudtrail/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
374
- cartography/models/aws/cloudtrail/management_events.py,sha256=RKAHm6RGVJBaOS90Csa7Vg1LEgq4lXY9YnRIMD2iLwM,2816
375
- cartography/models/aws/cloudtrail/trail.py,sha256=qQnpqFypKef8E7-JOR83euAtI6_j2KdjzGGFiQa6xkA,3676
374
+ cartography/models/aws/cloudtrail/management_events.py,sha256=b-p_SoZsumJggaD3CfmSHRfIfW1G_29uFwgFIJdW0lw,6634
375
+ cartography/models/aws/cloudtrail/trail.py,sha256=dQi5txRQBnpdoHLFSl8VaWVI2Bx5tPDevGCbT7RIr0o,4452
376
376
  cartography/models/aws/cloudwatch/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
377
377
  cartography/models/aws/cloudwatch/log_metric_filter.py,sha256=hROU3pp_D_q21dAPTddm4lcAcCZaDV_UJ49QAZ6SCLc,3321
378
378
  cartography/models/aws/cloudwatch/loggroup.py,sha256=_MRpRvU_Vg2rVlUdzfae6vOpbpmYaYE1EVN5zWucFbE,2456
379
+ cartography/models/aws/cloudwatch/metric_alarm.py,sha256=_I-ZZLYpIVKLWntMH9X53LNyfWgr302MAeP4oeSehAE,2332
379
380
  cartography/models/aws/codebuild/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
380
381
  cartography/models/aws/codebuild/project.py,sha256=r_DMCtHlbG9FGUk_I8j_E1inIbFcGAXtL6HxHrcgg0U,2122
381
382
  cartography/models/aws/dynamodb/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -409,6 +410,7 @@ cartography/models/aws/ec2/securitygroup_networkinterface.py,sha256=2MBxYXxuq_L0
409
410
  cartography/models/aws/ec2/snapshots.py,sha256=2J5bAwW6ZK2R7NW_zGGkQe64bxr2uBvQckBK0yjtGmM,2597
410
411
  cartography/models/aws/ec2/subnet_instance.py,sha256=6bgrWbFcCjBIjqd_6lcKv6rWyll-Zx1aA5TK68DcIhg,2952
411
412
  cartography/models/aws/ec2/subnet_networkinterface.py,sha256=B60S1YvEopVWNlRL5W-hMby3-P06uaNcC_8oOLoRGik,3872
413
+ cartography/models/aws/ec2/subnets.py,sha256=BtlFgf03IaD9XFesv5uzHBCm6xr71LT435m9t4MHkY8,2915
412
414
  cartography/models/aws/ec2/volumes.py,sha256=spAi4QjoYjp5G-qNuFJdW4b-oZg7by5g5FEaqJv1mZo,5242
413
415
  cartography/models/aws/ecs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
414
416
  cartography/models/aws/ecs/clusters.py,sha256=uu-UzkSbpLu4UG5I6NsFMaThrPYl6jYe71EX8baMy1Q,2845
@@ -424,6 +426,9 @@ cartography/models/aws/efs/file_system.py,sha256=6BNzjQJKZ-rYlDLw1UvDBhVRKre07-9
424
426
  cartography/models/aws/efs/mount_target.py,sha256=Bdd2zgWp9HtsK9EmEAgoIYpT9AOTs5wzH3sgCq4HLMU,3347
425
427
  cartography/models/aws/eks/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
426
428
  cartography/models/aws/eks/clusters.py,sha256=OthI554MrYNSl-p6ArMJsSH43xKPRDSnEmvJEmXwLeU,2327
429
+ cartography/models/aws/elasticache/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
430
+ cartography/models/aws/elasticache/cluster.py,sha256=3tx3fL3FPSp4QX3pd42sV71t6kYRl-IfvU_56S7WmGo,3227
431
+ cartography/models/aws/elasticache/topic.py,sha256=Rq-Hj6xo9xouRLw2NRNU1cmmVUlOP0ieRA8fT5GlZ2w,2757
427
432
  cartography/models/aws/guardduty/__init__.py,sha256=ILQhP6R9RLgXzPKdmPzuGqhOgAXeIReUEyqKS-ZXS3k,19
428
433
  cartography/models/aws/guardduty/findings.py,sha256=LwUE1DbDyl9c3g5fUSZxsYKQ8U44wDS4Pps-QPMyr3Y,4184
429
434
  cartography/models/aws/iam/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -552,9 +557,9 @@ cartography/models/trivy/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZ
552
557
  cartography/models/trivy/findings.py,sha256=SgI_h1aRyR20uAHvuXIZ1T6r4IZJt6SVhxRaF2bTsm0,3085
553
558
  cartography/models/trivy/fix.py,sha256=ho9ENVl9HSXqyggyCwR6ilkOBKDxpQ7rGibo_j21NA4,2587
554
559
  cartography/models/trivy/package.py,sha256=IwO1RZZ-MFRtNbt8Cq6YFl6fdNJMFmULnJkkK8Q4rL4,2809
555
- cartography-0.108.0rc1.dist-info/licenses/LICENSE,sha256=kvLEBRYaQ1RvUni6y7Ti9uHeooqnjPoo6n_-0JO1ETc,11351
556
- cartography-0.108.0rc1.dist-info/METADATA,sha256=Px6J_NNZibJQ4mUuBGy5e24Gl97Dfe9FNx0QyPIC9fw,12914
557
- cartography-0.108.0rc1.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
558
- cartography-0.108.0rc1.dist-info/entry_points.txt,sha256=GVIAWD0o0_K077qMA_k1oZU4v-M0a8GLKGJR8tZ-qH8,112
559
- cartography-0.108.0rc1.dist-info/top_level.txt,sha256=BHqsNJQiI6Q72DeypC1IINQJE59SLhU4nllbQjgJi9g,12
560
- cartography-0.108.0rc1.dist-info/RECORD,,
560
+ cartography-0.108.0rc2.dist-info/licenses/LICENSE,sha256=kvLEBRYaQ1RvUni6y7Ti9uHeooqnjPoo6n_-0JO1ETc,11351
561
+ cartography-0.108.0rc2.dist-info/METADATA,sha256=r1dvNQTpsRcZZeMToOuD39Nb6RUDfKt8EMpEWjFfSIU,12914
562
+ cartography-0.108.0rc2.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
563
+ cartography-0.108.0rc2.dist-info/entry_points.txt,sha256=GVIAWD0o0_K077qMA_k1oZU4v-M0a8GLKGJR8tZ-qH8,112
564
+ cartography-0.108.0rc2.dist-info/top_level.txt,sha256=BHqsNJQiI6Q72DeypC1IINQJE59SLhU4nllbQjgJi9g,12
565
+ cartography-0.108.0rc2.dist-info/RECORD,,