add method and model docs for powershell and python v2025

This commit is contained in:
darrell-thobe-sp
2025-04-01 09:23:12 -04:00
parent c12ffb7efc
commit 5d8f458a33
2414 changed files with 191212 additions and 0 deletions

View File

@@ -0,0 +1,41 @@
---
id: v2025-sod-violation-check-result
title: SodViolationCheckResult
pagination_label: SodViolationCheckResult
sidebar_label: SodViolationCheckResult
sidebar_class_name: powershellsdk
keywords: ['powershell', 'PowerShell', 'sdk', 'SodViolationCheckResult', 'V2025SodViolationCheckResult']
slug: /tools/sdk/powershell/v2025/models/sod-violation-check-result
tags: ['SDK', 'Software Development Kit', 'SodViolationCheckResult', 'V2025SodViolationCheckResult']
---
# SodViolationCheckResult
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Message** | [**ErrorMessageDto**](error-message-dto) | | [optional]
**ClientMetadata** | **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** | [**[]SodViolationContext**](sod-violation-context) | | [optional]
**ViolatedPolicies** | [**[]SodPolicyDto**](sod-policy-dto) | A list of the SOD policies that were violated. | [optional]
## Examples
- Prepare the resource
```powershell
$SodViolationCheckResult = Initialize-PSSailpoint.V2025SodViolationCheckResult -Message null `
-ClientMetadata {requestedAppName=test-app, requestedAppId=2c91808f7892918f0178b78da4a305a1} `
-ViolationContexts null `
-ViolatedPolicies null
```
- Convert the resource to JSON
```powershell
$SodViolationCheckResult | ConvertTo-JSON
```
[[Back to top]](#)