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

1.1 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-multi-host-integrations-owner MultiHostIntegrationsOwner MultiHostIntegrationsOwner MultiHostIntegrationsOwner pythonsdk
python
Python
sdk
MultiHostIntegrationsOwner
BetaMultiHostIntegrationsOwner
/tools/sdk/python/beta/models/multi-host-integrations-owner
SDK
Software Development Kit
MultiHostIntegrationsOwner
BetaMultiHostIntegrationsOwner

MultiHostIntegrationsOwner

Reference to identity object who owns the source.

Properties

Name Type Description Notes
type Enum [ 'IDENTITY' ] Type of object being referenced. [optional]
id str Owner identity's ID. [optional]
name str Owner identity's human-readable display name. [optional]
}

Example

from sailpoint.beta.models.multi_host_integrations_owner import MultiHostIntegrationsOwner

multi_host_integrations_owner = MultiHostIntegrationsOwner(
type='IDENTITY',
id='2c91808568c529c60168cca6f90c1313',
name='MyName'
)

[Back to top]