Skip to main content

Sourcesubtypewithsource

Properties

NameTypeDescriptionNotes
idstrUnique identifier for the subtype.[optional]
source_idstrThe ID of the source.[optional] [readonly]
technical_namestrTechnical name of the subtype.[optional]
display_namestrDisplay name of the subtype.[optional]
descriptionstrDescription of the subtype.[optional]
createddatetimeCreation timestamp.[optional]
modifieddatetimeLast modified timestamp.[optional]
typestrType of the subtype. Either MACHINE OR null.[optional]
sourceSourcesubtypewithsourceSource[optional]
system_managedboolIndicates if the subtype is managed by the system.[optional] [default to False]
}

Example

from sailpoint.machine_account_subtypes.models.sourcesubtypewithsource import Sourcesubtypewithsource

sourcesubtypewithsource = Sourcesubtypewithsource(
id='38453251-6be2-5f8f-df93-5ce19e295838',
source_id='',
technical_name='foo',
display_name='Mr Foo',
description='fighters',
created='2025-07-28T16:13:42.801300Z',
modified='2025-07-28T16:13:42.750850Z',
type='MACHINE',
source=sailpoint.machine_account_subtypes.models.sourcesubtypewithsource_source.sourcesubtypewithsource_source(
type = 'SOURCE',
id = '6d0458373bec4b4b80460992b76016da',
name = 'Test Source', ),
system_managed=True
)

[Back to top]