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,51 @@
---
id: beta-remediation-items
title: RemediationItems
pagination_label: RemediationItems
sidebar_label: RemediationItems
sidebar_class_name: powershellsdk
keywords: ['powershell', 'PowerShell', 'sdk', 'RemediationItems', 'BetaRemediationItems']
slug: /tools/sdk/powershell/beta/models/remediation-items
tags: ['SDK', 'Software Development Kit', 'RemediationItems', 'BetaRemediationItems']
---
# RemediationItems
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Id** | Pointer to **String** | The ID of the certification | [optional]
**TargetId** | Pointer to **String** | The ID of the certification target | [optional]
**TargetName** | Pointer to **String** | The name of the certification target | [optional]
**TargetDisplayName** | Pointer to **String** | The display name of the certification target | [optional]
**ApplicationName** | Pointer to **String** | The name of the application/source | [optional]
**AttributeName** | Pointer to **String** | The name of the attribute being certified | [optional]
**AttributeOperation** | Pointer to **String** | The operation of the certification on the attribute | [optional]
**AttributeValue** | Pointer to **String** | The value of the attribute being certified | [optional]
**NativeIdentity** | Pointer to **String** | The native identity of the target | [optional]
## Examples
- Prepare the resource
```powershell
$RemediationItems = Initialize-PSSailpoint.BetaRemediationItems -Id 2c9180835d2e5168015d32f890ca1581 `
-TargetId 2c9180835d2e5168015d32f890ca1581 `
-TargetName john.smith `
-TargetDisplayName emailAddress `
-ApplicationName Active Directory `
-AttributeName phoneNumber `
-AttributeOperation update `
-AttributeValue 512-555-1212 `
-NativeIdentity jason.smith2
```
- Convert the resource to JSON
```powershell
$RemediationItems | ConvertTo-JSON
```
[[Back to top]](#)