Skip to main content

Intelblastradiussummary

Fast SOC view of impact across sources, accounts, and humans.

Properties

NameTypeDescriptionNotes
impacted_sources[]strSource systems that may be impacted if compromised.[required]
impacted_accountsintLinked machine accounts that may be impacted if compromised.[required]
impacted_humansintUnique owners and authorized humans potentially impacted if compromised.[required]
has_entitlementsboolWhether this NHI holds entitlements included in summary.[optional] [default to False]
environments[]strEnvironment labels for impacted access in this summary.[optional]
access_types[]strAccess type labels for impacted access in this summary.[optional]
}

Example

from sailpoint.intelligence.models.intelblastradiussummary import Intelblastradiussummary

intelblastradiussummary = Intelblastradiussummary(
impacted_sources=["Example AWS Source"],
impacted_accounts=1,
impacted_humans=1,
has_entitlements=True,
environments=["production"],
access_types=["entitlement"]
)

[Back to top]