adding docs back with new ids

This commit is contained in:
darrell-thobe-sp
2025-01-27 16:01:17 -05:00
parent 90087c5d3f
commit b4a279954e
2823 changed files with 130835 additions and 78 deletions

View File

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