Skip to main content

CreateSourceSubtypeV1Request

Properties

NameTypeDescriptionNotes
source_idstrID of the source where subtype is created.[required]
technical_namestrTechnical name of the subtype.[required]
display_namestrDisplay name of the subtype.[required]
descriptionstrDescription of the subtype.[required]
typestrType of the subtype.[optional]
}

Example

from sailpoint.machine_account_subtypes.models.create_source_subtype_v1_request import CreateSourceSubtypeV1Request

create_source_subtype_v1_request = CreateSourceSubtypeV1Request(
source_id='6d0458373bec4b4b80460992b76016da',
technical_name='foo',
display_name='Mr Foo',
description='fighters',
type='MACHINE'
)

[Back to top]