Files
developer.sailpoint.com/docs/tools/sdk/powershell/Reference/Beta/Models/SodViolationCheckResult.md
2025-01-28 13:29:29 -05:00

1.5 KiB

id, title, pagination_label, sidebar_label, sidebar_class_name, keywords, slug, tags
id title pagination_label sidebar_label sidebar_class_name keywords slug tags
beta-sod-violation-check-result SodViolationCheckResult SodViolationCheckResult SodViolationCheckResult powershellsdk
powershell
PowerShell
sdk
SodViolationCheckResult
BetaSodViolationCheckResult
/tools/sdk/powershell/beta/models/sod-violation-check-result
SDK
Software Development Kit
SodViolationCheckResult
BetaSodViolationCheckResult

SodViolationCheckResult

Properties

Name Type Description Notes
Message Pointer to ErrorMessageDto [optional]
ClientMetadata Pointer to map[string]String Arbitrary key-value pairs. They will never be processed by the IdentityNow system but will be returned on completion of the violation check. [optional]
ViolationContexts Pointer to []SodViolationContext [optional]
ViolatedPolicies Pointer to []SodPolicyDto A list of the SOD policies that were violated. [optional]

Examples

  • Prepare the resource
$SodViolationCheckResult = Initialize-PSSailpoint.BetaSodViolationCheckResult  -Message null `
 -ClientMetadata {requestedAppName=test-app, requestedAppId=2c91808f7892918f0178b78da4a305a1} `
 -ViolationContexts null `
 -ViolatedPolicies null
  • Convert the resource to JSON
$SodViolationCheckResult | ConvertTo-JSON

[Back to top]