Files
developer.sailpoint.com/docs/tools/sdk/python/Reference/V2024/Models/DependantConnectionsMissingDto.md
2025-03-13 19:55:38 +00:00

1.3 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
v2024-dependant-connections-missing-dto DependantConnectionsMissingDto DependantConnectionsMissingDto DependantConnectionsMissingDto pythonsdk
python
Python
sdk
DependantConnectionsMissingDto
V2024DependantConnectionsMissingDto
/tools/sdk/python/v2024/models/dependant-connections-missing-dto
SDK
Software Development Kit
DependantConnectionsMissingDto
V2024DependantConnectionsMissingDto

DependantConnectionsMissingDto

Properties

Name Type Description Notes
dependency_type Enum [ 'identityProfiles', 'credentialProfiles', 'mappingProfiles', 'sourceAttributes', 'dependantCustomTransforms', 'dependantApps' ] The type of dependency type that is missing in the SourceConnections [optional]
reason str The reason why this dependency is missing [optional]
}

Example

from sailpoint.v2024.models.dependant_connections_missing_dto import DependantConnectionsMissingDto

dependant_connections_missing_dto = DependantConnectionsMissingDto(
dependency_type='dependantApps',
reason='If there was an error retrieving any dependencies, it would lbe listed here'
)

[Back to top]