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,45 @@
---
id: generate-random-string
title: GenerateRandomString
pagination_label: GenerateRandomString
sidebar_label: GenerateRandomString
sidebar_class_name: powershellsdk
keywords: ['powershell', 'PowerShell', 'sdk', 'GenerateRandomString', 'GenerateRandomString']
slug: /tools/sdk/powershell/v3/models/generate-random-string
tags: ['SDK', 'Software Development Kit', 'GenerateRandomString', 'GenerateRandomString']
---
# GenerateRandomString
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Name** | **String** | This must always be set to ""Cloud Services Deployment Utility"" | [required]
**Operation** | **String** | The operation to perform `generateRandomString` | [required]
**IncludeNumbers** | **Boolean** | This must be either ""true"" or ""false"" to indicate whether the generator logic should include numbers | [required]
**IncludeSpecialChars** | **Boolean** | This must be either ""true"" or ""false"" to indicate whether the generator logic should include special characters | [required]
**Length** | **String** | This specifies how long the randomly generated string needs to be >NOTE Due to identity attribute data constraints, the maximum allowable value is 450 characters | [required]
**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]
## Examples
- Prepare the resource
```powershell
$GenerateRandomString = Initialize-PSSailpoint.V3GenerateRandomString -Name Cloud Services Deployment Utility `
-Operation generateRandomString `
-IncludeNumbers true `
-IncludeSpecialChars true `
-Length 10 `
-RequiresPeriodicRefresh false
```
- Convert the resource to JSON
```powershell
$GenerateRandomString | ConvertTo-JSON
```
[[Back to top]](#)