Skip to main content

InnerHit

Inner Hit query object that will cause the specified nested type to be returned as the result matching the supplied query.

Properties

NameTypeDescriptionNotes
querystrThe search query using the Elasticsearch Query String Query syntax from the Query DSL extended by SailPoint to support Nested queries.[required]
typestrThe nested type to use in the inner hits query. The nested type Nested Type refers to a document "nested" within another document. For example, an identity can have nested documents for access, accounts, and apps.[required]
}

Example

from sailpoint.v2024.models.inner_hit import InnerHit

inner_hit = InnerHit(
query='source.name:\"Active Directory\"',
type='access'
)

[Back to top]