Files
developer.sailpoint.com/docs/tools/sdk/python/Reference/V2025/Models/MachineIdentityDtoOwners.md
2025-06-09 06:40:10 +00:00

1.5 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-machine-identity-dto-owners MachineIdentityDtoOwners MachineIdentityDtoOwners MachineIdentityDtoOwners pythonsdk
python
Python
sdk
MachineIdentityDtoOwners
V2025MachineIdentityDtoOwners
/tools/sdk/python/v2025/models/machine-identity-dto-owners
SDK
Software Development Kit
MachineIdentityDtoOwners
V2025MachineIdentityDtoOwners

MachineIdentityDtoOwners

The owner configuration associated to the machine identity

Properties

Name Type Description Notes
primary_identity object Defines the identity which is selected as the primary owner [required]
secondary_identities []BaseReferenceDto Defines the identities which are selected as secondary owners [required]
}

Example

from sailpoint.v2025.models.machine_identity_dto_owners import MachineIdentityDtoOwners

machine_identity_dto_owners = MachineIdentityDtoOwners(
primary_identity=sailpoint.v2025.models.machine_identity_dto_owners_primary_identity.MachineIdentityDto_owners_primaryIdentity(),
secondary_identities=[
                    sailpoint.v2025.models.base_reference_dto.BaseReferenceDto(
                        type = 'IDENTITY', 
                        id = '2c91808568c529c60168cca6f90c1313', 
                        name = 'William Wilson', )
                    ]
)

[Back to top]