Model/ViolationAppliedControlStatus.ps1
|
# # Identity Security Cloud API - Triggers # Use these APIs to interact with the Identity Security Cloud platform to achieve repeatable, automated processes with greater scalability. We encourage you to join the SailPoint Developer Community forum at https://developer.sailpoint.com/discuss to connect with other developers using our APIs. # Version: v1 # Generated by OpenAPI Generator: https://openapi-generator.tech # <# .SYNOPSIS Enum ViolationAppliedControlStatus. .DESCRIPTION Lifecycle status of a compensating control application on a violation. **Pending** - not yet in effect; **Active** - currently mitigating the violation; **Completed** - finished successfully; **Canceled** - withdrawn before completion; **Failed** - could not be completed successfully. #> enum ViolationAppliedControlStatus { # enum value: "Pending" Pending # enum value: "Active" Active # enum value: "Completed" Completed # enum value: "Canceled" Canceled # enum value: "Failed" Failed } |