Skip to main content

CreateMachineAccountSubtypeV1Request

Properties

NameTypeDescriptionNotes
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_accounts.models.create_machine_account_subtype_v1_request import CreateMachineAccountSubtypeV1Request

create_machine_account_subtype_v1_request = CreateMachineAccountSubtypeV1Request(
technical_name='foo',
display_name='Mr Foo',
description='fighters',
type='MACHINE'
)

[Back to top]