Skip to main content

ResourceV2

The source resource a machine identity is derived from.

Properties

NameTypeDescriptionNotes
idstrThe source resource identifier.[optional]
typestrThe type of the source resource.[optional]
namestrThe display name of the source resource.[optional]
features[]strThe set of features supported by the source resource.[optional]
}

Example

from sailpoint.machine_identities.models.resource_v2 import ResourceV2

resource_v2 = ResourceV2(
id='8886e5e3-63d0-462f-a195-d98da885b8dc',
type='aws:iam-role',
name='nightly-batch-role',
features=["PROVISIONING","AUTHENTICATION"]
)

[Back to top]