Files
developer.sailpoint.com/docs/tools/sdk/python/Reference/V3/Models/InnerHit.md
2025-02-20 12:59:19 -05:00

1.3 KiB

id, title, pagination_label, sidebar_label, sidebar_class_name, keywords, slug, tags
id title pagination_label sidebar_label sidebar_class_name keywords slug tags
inner-hit InnerHit InnerHit InnerHit pythonsdk
python
Python
sdk
InnerHit
InnerHit
/tools/sdk/python/v3/models/inner-hit
SDK
Software Development Kit
InnerHit
InnerHit

InnerHit

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

Properties

Name Type Description Notes
query str The search query using the Elasticsearch Query String Query syntax from the Query DSL extended by SailPoint to support Nested queries. [required]
type str The 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.v3.models.inner_hit import InnerHit

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

[Back to top]