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,45 @@
---
id: beta-tenant-configuration-response
title: TenantConfigurationResponse
pagination_label: TenantConfigurationResponse
sidebar_label: TenantConfigurationResponse
sidebar_class_name: pythonsdk
keywords: ['python', 'Python', 'sdk', 'TenantConfigurationResponse', 'BetaTenantConfigurationResponse']
slug: /tools/sdk/python/beta/models/tenant-configuration-response
tags: ['SDK', 'Software Development Kit', 'TenantConfigurationResponse', 'BetaTenantConfigurationResponse']
---
# TenantConfigurationResponse
Tenant-wide Reassignment Configuration settings
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**audit_details** | [**AuditDetails**](audit-details) | | [optional]
**config_details** | [**TenantConfigurationDetails**](tenant-configuration-details) | | [optional]
}
## Example
```python
from sailpoint.beta.models.tenant_configuration_response import TenantConfigurationResponse
tenant_configuration_response = TenantConfigurationResponse(
audit_details=sailpoint.beta.models.audit_details.AuditDetails(
created = '2022-07-21T11:13:12.345Z',
created_by = sailpoint.beta.models.identity_1.Identity_1(
id = '2c91808380aa05580180aaaaf1940410',
name = 'William Wilson', ),
modified = '2022-07-21T11:13:12.345Z',
modified_by = sailpoint.beta.models.identity_1.Identity_1(
id = '2c91808380aa05580180aaaaf1940410',
name = 'William Wilson', ), ),
config_details=sailpoint.beta.models.tenant_configuration_details.TenantConfigurationDetails(
disabled = True, )
)
```
[[Back to top]](#)