Skip to content

Commit

Permalink
Add new ASPM service collection
Browse files Browse the repository at this point in the history
  • Loading branch information
jshcodes committed Oct 25, 2024
1 parent 3a589de commit 40ab829
Show file tree
Hide file tree
Showing 9 changed files with 3,131 additions and 5 deletions.
3 changes: 2 additions & 1 deletion src/falconpy/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,7 @@
from .alerts import Alerts
from .api_integrations import APIIntegrations
from .api_complete import APIHarness, APIHarnessV2
from .aspm import ASPM
from .certificate_based_exclusions import CertificateBasedExclusions
from .cloud_snapshots import CloudSnapshots
from .compliance_assessments import ComplianceAssessments
Expand Down Expand Up @@ -208,7 +209,7 @@
"ContainerVulnerabilities", "DriftIndicators", "UnidentifiedContainers",
"ImageAssessmentPolicies", "APIIntegrations", "ThreatGraph", "ExposureManagement",
"CertificateBasedExclusions", "ComplianceAssessments", "HostMigration", "QuickScanPro",
"DataScanner", "SensorUsage", "Downloads", "DeliverySettings"
"DataScanner", "SensorUsage", "Downloads", "DeliverySettings", "ASPM"
]
"""
This is free and unencumbered software released into the public domain.
Expand Down
2 changes: 2 additions & 0 deletions src/falconpy/_endpoint/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@

from ._alerts import _alerts_endpoints
from ._api_integrations import _api_integrations_endpoints
from ._aspm import _aspm_endpoints
from ._certificate_based_exclusions import _certificate_based_exclusions_endpoints
from ._cloud_connect_aws import _cloud_connect_aws_endpoints
from ._cloud_snapshots import _cloud_snapshots_endpoints
Expand Down Expand Up @@ -122,6 +123,7 @@
api_endpoints: List[Any] = []
api_endpoints.extend(_alerts_endpoints)
api_endpoints.extend(_api_integrations_endpoints)
api_endpoints.extend(_aspm_endpoints)
api_endpoints.extend(_certificate_based_exclusions_endpoints)
api_endpoints.extend(_cloud_connect_aws_endpoints)
api_endpoints.extend(_cloud_snapshots_endpoints)
Expand Down
Loading

0 comments on commit 40ab829

Please sign in to comment.