Skip to main content

DependantAppConnections

Properties

NameTypeDescriptionNotes
cloud_app_idstrId of the connected Application[optional]
descriptionstrDescription of the connected Application[optional]
enabledboolIs the Application enabled[optional] [default to True]
provision_request_enabledboolIs Provisioning enabled for connected Application[optional] [default to True]
account_sourceDependantAppConnectionsAccountSource[optional]
launcher_countintThe amount of launchers for connected Application (long type)[optional]
match_all_accountboolIs Provisioning enabled for connected Application[optional] [default to False]
owner[]BaseReferenceDtoThe owner of the connected Application[optional]
app_center_enabledboolIs App Center enabled for connected Application[optional] [default to False]
}

Example

from sailpoint.v2024.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.v2024.models.dependant_app_connections_account_source.DependantAppConnections_accountSource(
use_for_password_management = False,
password_policies = [
sailpoint.v2024.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.v2024.models.base_reference_dto.BaseReferenceDto(
type = 'IDENTITY',
id = '2c91808568c529c60168cca6f90c1313',
name = 'William Wilson', )
],
app_center_enabled=False
)

[Back to top]