Skip to main content

MachineAccountCreateAccessDtoSubtypesInner

Properties

NameTypeDescriptionNotes
subtype_idstrSubtype ID.[optional]
entitlement_idstrEntitlement ID.[optional]
subtype_display_namestrSubtype display name.[optional]
subtype_technical_namestrSubtype technical name.[optional]
}

Example

from sailpoint.machine_account_creation_request.models.machine_account_create_access_dto_subtypes_inner import MachineAccountCreateAccessDtoSubtypesInner

machine_account_create_access_dto_subtypes_inner = MachineAccountCreateAccessDtoSubtypesInner(
subtype_id='d7ae9ea3-507f-4d00-9d4f-b4464b344b88',
entitlement_id='a03caa629a624cee90f94048252034cf',
subtype_display_name='Subtype Display Name',
subtype_technical_name='Subtype Technical Name'
)

[Back to top]