add method and model docs for powershell and python v2025

This commit is contained in:
darrell-thobe-sp
2025-04-01 09:23:12 -04:00
parent c12ffb7efc
commit 5d8f458a33
2414 changed files with 191212 additions and 0 deletions

View File

@@ -0,0 +1,37 @@
---
id: v2025-static
title: Static
pagination_label: Static
sidebar_label: Static
sidebar_class_name: powershellsdk
keywords: ['powershell', 'PowerShell', 'sdk', 'Static', 'V2025Static']
slug: /tools/sdk/powershell/v2025/models/static
tags: ['SDK', 'Software Development Kit', 'Static', 'V2025Static']
---
# 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** | **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.V2025Static -Values string$variable `
-RequiresPeriodicRefresh false
```
- Convert the resource to JSON
```powershell
$Static | ConvertTo-JSON
```
[[Back to top]](#)