Skip to main content

Appliedcontrol

Properties

NameTypeDescriptionNotes
IdStringThe system-generated unique identifier of the applied control record.[required]
ViolationStringThe unique identifier of the policy violation the control was applied to.[required]
ControlReferenceresponse[required]
ApplierReferenceresponse[required]
AppliedDateSystem.DateTimeThe date and time when the control was applied to the violation.[required][readonly]
ExpirationSystem.DateTimeThe date and time when the applied control expires.[required][readonly]
CommentsStringOptional comments captured when the control was applied.[optional]
StatusAppliedcontrolstatus[optional]
WorkflowIdStringThe identifier of the workflow triggered when the control was applied.[optional]

Examples

  • Prepare the resource
$Appliedcontrol = Initialize-Appliedcontrol  -Id null `
-Violation null `
-Control null `
-Applier null `
-AppliedDate 2025-01-01T00:00-05:00 `
-Expiration 2025-01-01T02:00-05:00 `
-Comments Some comments about the applied control `
-Status null `
-WorkflowId 82044924-daff-4b0b-9dcb-17e64de4d25b
  • Convert the resource to JSON
$Appliedcontrol | ConvertTo-JSON

[Back to top]