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: beta-password-sync-group
title: PasswordSyncGroup
pagination_label: PasswordSyncGroup
sidebar_label: PasswordSyncGroup
sidebar_class_name: powershellsdk
keywords: ['powershell', 'PowerShell', 'sdk', 'PasswordSyncGroup', 'BetaPasswordSyncGroup']
slug: /tools/sdk/powershell/beta/models/password-sync-group
tags: ['SDK', 'Software Development Kit', 'PasswordSyncGroup', 'BetaPasswordSyncGroup']
---
# PasswordSyncGroup
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Id** | Pointer to **String** | ID of the sync group | [optional]
**Name** | Pointer to **String** | Name of the sync group | [optional]
**PasswordPolicyId** | Pointer to **String** | ID of the password policy | [optional]
**SourceIds** | Pointer to **[]String** | List of password managed sources IDs | [optional]
**Created** | Pointer to **System.DateTime** | The date and time this sync group was created | [optional]
**Modified** | Pointer to **System.DateTime** | The date and time this sync group was last modified | [optional]
## Examples
- Prepare the resource
```powershell
$PasswordSyncGroup = Initialize-PSSailpoint.BetaPasswordSyncGroup -Id 6881f631-3bd5-4213-9c75-8e05cc3e35dd `
-Name Password Sync Group 1 `
-PasswordPolicyId 2c91808d744ba0ce01746f93b6204501 `
-SourceIds [2c918084660f45d6016617daa9210584, 2c918084660f45d6016617daa9210500] `
-Created 2023-03-16T04:00Z `
-Modified 2023-03-16T04:00Z
```
- Convert the resource to JSON
```powershell
$PasswordSyncGroup | ConvertTo-JSON
```
[[Back to top]](#)