Files
developer.sailpoint.com/docs/tools/sdk/python/Reference/V2025/Models/DependantAppConnections.md
2025-07-25 19:23:51 +00:00

2.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
v2025-dependant-app-connections DependantAppConnections DependantAppConnections DependantAppConnections pythonsdk
python
Python
sdk
DependantAppConnections
V2025DependantAppConnections
/tools/sdk/python/v2025/models/dependant-app-connections
SDK
Software Development Kit
DependantAppConnections
V2025DependantAppConnections

DependantAppConnections

Properties

Name Type Description Notes
cloud_app_id str Id of the connected Application [optional]
description str Description of the connected Application [optional]
enabled bool Is the Application enabled [optional] [default to True]
provision_request_enabled bool Is Provisioning enabled for connected Application [optional] [default to True]
account_source DependantAppConnectionsAccountSource [optional]
launcher_count int The amount of launchers for connected Application (long type) [optional]
match_all_account bool Is Provisioning enabled for connected Application [optional] [default to False]
owner []BaseReferenceDto The owner of the connected Application [optional]
app_center_enabled bool Is App Center enabled for connected Application [optional] [default to False]
}

Example

from sailpoint.v2025.models.dependant_app_connections import DependantAppConnections

dependant_app_connections = DependantAppConnections(
cloud_app_id='9e3cdd80edf84f119327df8bbd5bb5ac',
description='This is a Sailpoint application',
enabled=True,
provision_request_enabled=True,
account_source=sailpoint.v2025.models.dependant_app_connections_account_source.DependantAppConnections_accountSource(
                    use_for_password_management = False, 
                    password_policies = [
                        sailpoint.v2025.models.dependant_app_connections_account_source_password_policies_inner.DependantAppConnections_accountSource_passwordPolicies_inner(
                            type = 'PASSWORD_POLICY', 
                            id = '2c91808568c529c60168cca6f90c1313', 
                            name = 'Policy ODS', )
                        ], ),
launcher_count=100,
match_all_account=True,
owner=[
                    sailpoint.v2025.models.base_reference_dto.Base Reference Dto(
                        type = 'IDENTITY', 
                        id = '2c91808568c529c60168cca6f90c1313', 
                        name = 'William Wilson', )
                    ],
app_center_enabled=False
)

[Back to top]