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,37 @@
---
id: static
title: Static
pagination_label: Static
sidebar_label: Static
sidebar_class_name: powershellsdk
keywords: ['powershell', 'PowerShell', 'sdk', 'Static']
slug: /tools/sdk/powershell/v2024/models/static
tags: ['SDK', 'Software Development Kit', 'Static']
---
# Static
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Values** | **String** | This must evaluate to a JSON string, either through a fixed value or through conditional logic using the Apache Velocity Template Language. | [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] [default to $false]
## Examples
- Prepare the resource
```powershell
$Static = Initialize-PSSailpoint.V2024Static -Values string$variable `
-RequiresPeriodicRefresh false
```
- Convert the resource to JSON
```powershell
$Static | ConvertTo-JSON
```
[[Back to top]](#)