Skip to main content

Intelnonhumanidentityownedslice

One paged ownership role bucket (primaryOwned or secondaryOwned) embedded on the human aggregate. Embeds the first page of owned non-human identities; totalCount when items is non-empty. Continuation next carries limit and offset.

Properties

NameTypeDescriptionNotes
items[]IntelnonhumanidentityownershipitemFirst page of owned non-human identities for this role.[required]
total_countintTotal number of owned non-human identities in this role; omitted when items is empty.[optional]
nextstrAbsolute URL to the next page for this category and ownership role; present when totalCount exceeds the items returned on this page. Includes ownershipRole, limit, offset, and count=true.[optional]
}

Example

from sailpoint.intelligence.models.intelnonhumanidentityownedslice import Intelnonhumanidentityownedslice

intelnonhumanidentityownedslice = Intelnonhumanidentityownedslice(
items=[
sailpoint.intelligence.models.intelnonhumanidentityownershipitem.Intelnonhumanidentityownershipitem(
id = '2c91808874ff91550175097daaec161e',
display_name = 'Example AI Agent',
source = sailpoint.intelligence.models.source.source(), )
],
total_count=11,
next='https://tenant.example.api.cloud.sailpoint.com/intelligence/v1/identities/ef38f94347e94562b5bb8424a56397d8/non-human-identity-ownership/agents?ownershipRole=primary&limit=10&offset=10&count=true'
)

[Back to top]