Skip to main content

Intelblastradiussummary

Properties

NameTypeDescriptionNotes
ImpactedSources[]StringSource systems that may be impacted if compromised.[required]
ImpactedAccountsInt32Linked machine accounts that may be impacted if compromised.[required]
ImpactedHumansInt32Unique owners and authorized humans potentially impacted if compromised.[required]
HasEntitlementsBooleanWhether this NHI holds entitlements included in summary.[optional] [default to $false]
Environments[]StringEnvironment labels for impacted access in this summary.[optional]
AccessTypes[]StringAccess type labels for impacted access in this summary.[optional]

Examples

  • Prepare the resource
$Intelblastradiussummary = Initialize-Intelblastradiussummary  -ImpactedSources ["Example AWS Source"] `
-ImpactedAccounts 1 `
-ImpactedHumans 1 `
-HasEntitlements true `
-Environments ["production"] `
-AccessTypes ["entitlement"]
  • Convert the resource to JSON
$Intelblastradiussummary | ConvertTo-JSON

[Back to top]