starting point for adding python sdk docs

This commit is contained in:
darrell-thobe-sp
2025-02-20 12:59:19 -05:00
parent 3b9e39ca19
commit c18583ede4
2726 changed files with 370294 additions and 5 deletions

View File

@@ -0,0 +1,43 @@
---
id: beta-password-sync-group
title: PasswordSyncGroup
pagination_label: PasswordSyncGroup
sidebar_label: PasswordSyncGroup
sidebar_class_name: pythonsdk
keywords: ['python', 'Python', 'sdk', 'PasswordSyncGroup', 'BetaPasswordSyncGroup']
slug: /tools/sdk/python/beta/models/password-sync-group
tags: ['SDK', 'Software Development Kit', 'PasswordSyncGroup', 'BetaPasswordSyncGroup']
---
# PasswordSyncGroup
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**id** | **str** | ID of the sync group | [optional]
**name** | **str** | Name of the sync group | [optional]
**password_policy_id** | **str** | ID of the password policy | [optional]
**source_ids** | **[]str** | List of password managed sources IDs | [optional]
**created** | **datetime** | The date and time this sync group was created | [optional]
**modified** | **datetime** | The date and time this sync group was last modified | [optional]
}
## Example
```python
from sailpoint.beta.models.password_sync_group import PasswordSyncGroup
password_sync_group = PasswordSyncGroup(
id='6881f631-3bd5-4213-9c75-8e05cc3e35dd',
name='Password Sync Group 1',
password_policy_id='2c91808d744ba0ce01746f93b6204501',
source_ids=[2c918084660f45d6016617daa9210584, 2c918084660f45d6016617daa9210500],
created='2023-03-16T04:00Z',
modified='2023-03-16T04:00Z'
)
```
[[Back to top]](#)