Skip to main content

Additionalownerref

Reference to an additional owner (identity or governance group).

Properties

NameTypeDescriptionNotes
typeEnum [ 'IDENTITY', 'GOVERNANCE_GROUP' ]Type of the additional owner; IDENTITY for an identity, GOVERNANCE_GROUP for a governance group.[optional]
idstrID of the identity or governance group.[optional]
namestrDisplay name. It may be left null or omitted on input. If set, it must match the current display name of the identity or governance group, otherwise a 400 Bad Request error may result.[optional]
}

Example

from sailpoint.dimensions.models.additionalownerref import Additionalownerref

additionalownerref = Additionalownerref(
type='IDENTITY',
id='2c9180a46faadee4016fb4e018c20639',
name='support'
)

[Back to top]