Files
developer.sailpoint.com/docs/tools/sdk/powershell/Reference/V3/Models/InnerHit.md
2025-05-07 14:37:48 +00: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 powershellsdk
powershell
PowerShell
sdk
InnerHit
InnerHit
/tools/sdk/powershell/v3/models/inner-hit
SDK
Software Development Kit
InnerHit
InnerHit

InnerHit

Properties

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

Examples

  • Prepare the resource
$InnerHit = Initialize-InnerHit  -Query source.name:\"Active Directory\" `
 -Type access
  • Convert the resource to JSON
$InnerHit | ConvertTo-JSON

[Back to top]