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,34 @@
---
id: beta-tenant-configuration-details
title: TenantConfigurationDetails
pagination_label: TenantConfigurationDetails
sidebar_label: TenantConfigurationDetails
sidebar_class_name: pythonsdk
keywords: ['python', 'Python', 'sdk', 'TenantConfigurationDetails', 'BetaTenantConfigurationDetails']
slug: /tools/sdk/python/beta/models/tenant-configuration-details
tags: ['SDK', 'Software Development Kit', 'TenantConfigurationDetails', 'BetaTenantConfigurationDetails']
---
# TenantConfigurationDetails
Details of any tenant-wide Reassignment Configurations (eg. enabled/disabled)
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**disabled** | **bool** | Flag to determine if Reassignment Configuration is enabled or disabled for a tenant. When this flag is set to true, Reassignment Configuration is disabled. | [optional] [default to False]
}
## Example
```python
from sailpoint.beta.models.tenant_configuration_details import TenantConfigurationDetails
tenant_configuration_details = TenantConfigurationDetails(
disabled=True
)
```
[[Back to top]](#)