Update PowerShell SDK docs: 16529915541

This commit is contained in:
developer-relations-sp
2025-07-25 19:22:56 +00:00
parent 96e808b98b
commit 456f1a8b11
35 changed files with 1367 additions and 26 deletions

View File

@@ -0,0 +1,39 @@
---
id: sod-policy-dto1
title: SodPolicyDto1
pagination_label: SodPolicyDto1
sidebar_label: SodPolicyDto1
sidebar_class_name: powershellsdk
keywords: ['powershell', 'PowerShell', 'sdk', 'SodPolicyDto1', 'SodPolicyDto1']
slug: /tools/sdk/powershell/v3/models/sod-policy-dto1
tags: ['SDK', 'Software Development Kit', 'SodPolicyDto1', 'SodPolicyDto1']
---
# SodPolicyDto1
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Type** | **Enum** [ "SOD_POLICY" ] | SOD policy DTO type. | [optional]
**Id** | **String** | SOD policy ID. | [optional]
**Name** | **String** | SOD policy display name. | [optional]
## Examples
- Prepare the resource
```powershell
$SodPolicyDto1 = Initialize-SodPolicyDto1 -Type SOD_POLICY `
-Id 0f11f2a4-7c94-4bf3-a2bd-742580fe3bde `
-Name Business SOD Policy
```
- Convert the resource to JSON
```powershell
$SodPolicyDto1 | ConvertTo-JSON
```
[[Back to top]](#)

View File

@@ -19,7 +19,7 @@ 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]
**ViolatedPolicies** | [**[]SodPolicyDto1**](sod-policy-dto1) | A list of the SOD policies that were violated. | [optional]
## Examples

View File

@@ -16,7 +16,7 @@ tags: ['SDK', 'Software Development Kit', 'SodViolationContext', 'SodViolationCo
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Policy** | [**SodPolicyDto**](sod-policy-dto) | | [optional]
**Policy** | [**SodPolicyDto1**](sod-policy-dto1) | | [optional]
**ConflictingAccessCriteria** | [**SodViolationContextConflictingAccessCriteria**](sod-violation-context-conflicting-access-criteria) | | [optional]
## Examples