removing beta docs

This commit is contained in:
darrell-thobe-sp
2025-01-23 23:30:59 -05:00
parent 7194b934e8
commit befdd82384
999 changed files with 0 additions and 70946 deletions

View File

@@ -1,39 +0,0 @@
---
id: attribute-change
title: AttributeChange
pagination_label: AttributeChange
sidebar_label: AttributeChange
sidebar_class_name: powershellsdk
keywords: ['powershell', 'PowerShell', 'sdk', 'AttributeChange']
slug: /tools/sdk/powershell/beta/models/attribute-change
tags: ['SDK', 'Software Development Kit', 'AttributeChange']
---
# AttributeChange
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Name** | Pointer to **String** | the attribute name | [optional]
**PreviousValue** | Pointer to **String** | the old value of attribute | [optional]
**NewValue** | Pointer to **String** | the new value of attribute | [optional]
## Examples
- Prepare the resource
```powershell
$AttributeChange = Initialize-PSSailpoint.BetaAttributeChange -Name null `
-PreviousValue null `
-NewValue null
```
- Convert the resource to JSON
```powershell
$AttributeChange | ConvertTo-JSON
```
[[Back to top]](#)