adding powershell sdk docs back

This commit is contained in:
darrell-thobe-sp
2025-01-28 13:29:29 -05:00
parent 248e4afe6b
commit c69a78b807
2822 changed files with 201703 additions and 0 deletions

View File

@@ -0,0 +1,39 @@
---
id: v2024-sod-violation-context-check-completed
title: SodViolationContextCheckCompleted
pagination_label: SodViolationContextCheckCompleted
sidebar_label: SodViolationContextCheckCompleted
sidebar_class_name: powershellsdk
keywords: ['powershell', 'PowerShell', 'sdk', 'SodViolationContextCheckCompleted', 'V2024SodViolationContextCheckCompleted']
slug: /tools/sdk/powershell/v2024/models/sod-violation-context-check-completed
tags: ['SDK', 'Software Development Kit', 'SodViolationContextCheckCompleted', 'V2024SodViolationContextCheckCompleted']
---
# SodViolationContextCheckCompleted
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**State** | Pointer to **Enum** [ "SUCCESS", "ERROR" ] | The status of SOD violation check | [optional]
**Uuid** | Pointer to **String** | The id of the Violation check event | [optional]
**ViolationCheckResult** | Pointer to [**SodViolationCheckResult**](sod-violation-check-result) | | [optional]
## Examples
- Prepare the resource
```powershell
$SodViolationContextCheckCompleted = Initialize-PSSailpoint.V2024SodViolationContextCheckCompleted -State SUCCESS `
-Uuid f73d16e9-a038-46c5-b217-1246e15fdbdd `
-ViolationCheckResult null
```
- Convert the resource to JSON
```powershell
$SodViolationContextCheckCompleted | ConvertTo-JSON
```
[[Back to top]](#)