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

798 B

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-target Target Target Target pythonsdk
python
Python
sdk
Target
V2024Target
/tools/sdk/python/v2024/models/target
SDK
Software Development Kit
Target
V2024Target

Target

Properties

Name Type Description Notes
id str Target ID [optional]
type Enum [ 'APPLICATION', 'IDENTITY' ] Target type [optional]
name str Target name [optional]
}

Example

from sailpoint.v2024.models.target import Target

target = Target(
id='c6dc37bf508149b28ce5b7d90ca4bbf9',
type='APPLICATION',
name='Active Directory [source]'
)

[Back to top]