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,39 @@
---
id: source-schemas-inner
title: SourceSchemasInner
pagination_label: SourceSchemasInner
sidebar_label: SourceSchemasInner
sidebar_class_name: powershellsdk
keywords: ['powershell', 'PowerShell', 'sdk', 'SourceSchemasInner', 'SourceSchemasInner']
slug: /tools/sdk/powershell/v3/models/source-schemas-inner
tags: ['SDK', 'Software Development Kit', 'SourceSchemasInner', 'SourceSchemasInner']
---
# SourceSchemasInner
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Type** | Pointer to **Enum** [ "CONNECTOR_SCHEMA" ] | Type of object being referenced. | [optional]
**Id** | Pointer to **String** | Schema ID. | [optional]
**Name** | Pointer to **String** | Schema's human-readable display name. | [optional]
## Examples
- Prepare the resource
```powershell
$SourceSchemasInner = Initialize-PSSailpoint.V3SourceSchemasInner -Type CONNECTOR_SCHEMA `
-Id 2c91808568c529c60168cca6f90c1777 `
-Name MySchema
```
- Convert the resource to JSON
```powershell
$SourceSchemasInner | ConvertTo-JSON
```
[[Back to top]](#)