Files
developer.sailpoint.com/docs/tools/sdk/python/Reference/Beta/Models/TenantConfigurationResponse.md
2025-02-20 12:59:19 -05:00

1.7 KiB

id, title, pagination_label, sidebar_label, sidebar_class_name, keywords, slug, tags
id title pagination_label sidebar_label sidebar_class_name keywords slug tags
beta-tenant-configuration-response TenantConfigurationResponse TenantConfigurationResponse TenantConfigurationResponse pythonsdk
python
Python
sdk
TenantConfigurationResponse
BetaTenantConfigurationResponse
/tools/sdk/python/beta/models/tenant-configuration-response
SDK
Software Development Kit
TenantConfigurationResponse
BetaTenantConfigurationResponse

TenantConfigurationResponse

Tenant-wide Reassignment Configuration settings

Properties

Name Type Description Notes
audit_details AuditDetails [optional]
config_details TenantConfigurationDetails [optional]
}

Example

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]