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,35 @@
---
id: beta-uuid-generator
title: UUIDGenerator
pagination_label: UUIDGenerator
sidebar_label: UUIDGenerator
sidebar_class_name: powershellsdk
keywords: ['powershell', 'PowerShell', 'sdk', 'UUIDGenerator', 'BetaUUIDGenerator']
slug: /tools/sdk/powershell/beta/models/uuid-generator
tags: ['SDK', 'Software Development Kit', 'UUIDGenerator', 'BetaUUIDGenerator']
---
# UUIDGenerator
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**RequiresPeriodicRefresh** | Pointer to **Boolean** | A value that indicates whether the transform logic should be re-evaluated every evening as part of the identity refresh process | [optional] [default to $false]
## Examples
- Prepare the resource
```powershell
$UUIDGenerator = Initialize-PSSailpoint.BetaUUIDGenerator -RequiresPeriodicRefresh false
```
- Convert the resource to JSON
```powershell
$UUIDGenerator | ConvertTo-JSON
```
[[Back to top]](#)