CreateMachineAccountSubtypeV1Request
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| technical_name | str | Technical name of the subtype. | [required] |
| display_name | str | Display name of the subtype. | [required] |
| description | str | Description of the subtype. | [required] |
| type | str | Type 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'
)