Files
developer.sailpoint.com/docs/tools/sdk/powershell/Reference/V2024/Models/SodPolicySchedule.md
2025-05-07 14:37:48 +00:00

1.8 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
v2024-sod-policy-schedule SodPolicySchedule SodPolicySchedule SodPolicySchedule powershellsdk
powershell
PowerShell
sdk
SodPolicySchedule
V2024SodPolicySchedule
/tools/sdk/powershell/v2024/models/sod-policy-schedule
SDK
Software Development Kit
SodPolicySchedule
V2024SodPolicySchedule

SodPolicySchedule

Properties

Name Type Description Notes
Name String SOD Policy schedule name [optional]
Created System.DateTime The time when this SOD policy schedule is created. [optional] [readonly]
Modified System.DateTime The time when this SOD policy schedule is modified. [optional] [readonly]
Description String SOD Policy schedule description [optional]
Schedule Schedule2 [optional]
Recipients []SodRecipient [optional]
EmailEmptyResults Boolean Indicates if empty results need to be emailed [optional] [default to $false]
CreatorId String Policy's creator ID [optional] [readonly]
ModifierId String Policy's modifier ID [optional] [readonly]

Examples

  • Prepare the resource
$SodPolicySchedule = Initialize-V2024SodPolicySchedule  -Name SCH-1584312283015 `
 -Created 2020-01-01T00:00Z `
 -Modified 2020-01-01T00:00Z `
 -Description Schedule for policy xyz `
 -Schedule null `
 -Recipients null `
 -EmailEmptyResults false `
 -CreatorId 0f11f2a47c944bf3a2bd742580fe3bde `
 -ModifierId 0f11f2a47c944bf3a2bd742580fe3bde
  • Convert the resource to JSON
$SodPolicySchedule | ConvertTo-JSON

[Back to top]