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,43 @@
---
id: beta-form-definition-dynamic-schema-request
title: FormDefinitionDynamicSchemaRequest
pagination_label: FormDefinitionDynamicSchemaRequest
sidebar_label: FormDefinitionDynamicSchemaRequest
sidebar_class_name: powershellsdk
keywords: ['powershell', 'PowerShell', 'sdk', 'FormDefinitionDynamicSchemaRequest', 'BetaFormDefinitionDynamicSchemaRequest']
slug: /tools/sdk/powershell/beta/models/form-definition-dynamic-schema-request
tags: ['SDK', 'Software Development Kit', 'FormDefinitionDynamicSchemaRequest', 'BetaFormDefinitionDynamicSchemaRequest']
---
# FormDefinitionDynamicSchemaRequest
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Attributes** | Pointer to [**FormDefinitionDynamicSchemaRequestAttributes**](form-definition-dynamic-schema-request-attributes) | | [optional]
**Description** | Pointer to **String** | Description is the form definition dynamic schema description text | [optional]
**Id** | Pointer to **String** | ID is a unique identifier | [optional]
**Type** | Pointer to **String** | Type is the form definition dynamic schema type | [optional]
**VersionNumber** | Pointer to **Int64** | VersionNumber is the form definition dynamic schema version number | [optional]
## Examples
- Prepare the resource
```powershell
$FormDefinitionDynamicSchemaRequest = Initialize-PSSailpoint.BetaFormDefinitionDynamicSchemaRequest -Attributes null `
-Description A description `
-Id 00000000-0000-0000-0000-000000000000 `
-Type action `
-VersionNumber 1
```
- Convert the resource to JSON
```powershell
$FormDefinitionDynamicSchemaRequest | ConvertTo-JSON
```
[[Back to top]](#)