adding powershell sdk docs back

This commit is contained in:
darrell-thobe-sp
2025-01-28 13:29:29 -05:00
parent 248e4afe6b
commit c69a78b807
2822 changed files with 201703 additions and 0 deletions

View File

@@ -0,0 +1,37 @@
---
id: v2024-inner-hit
title: InnerHit
pagination_label: InnerHit
sidebar_label: InnerHit
sidebar_class_name: powershellsdk
keywords: ['powershell', 'PowerShell', 'sdk', 'InnerHit', 'V2024InnerHit']
slug: /tools/sdk/powershell/v2024/models/inner-hit
tags: ['SDK', 'Software Development Kit', 'InnerHit', 'V2024InnerHit']
---
# InnerHit
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Query** | **String** | The search query using the Elasticsearch [Query String Query](https://www.elastic.co/guide/en/elasticsearch/reference/5.2/query-dsl-query-string-query.html#query-string) 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](https://www.elastic.co/guide/en/elasticsearch/reference/current/nested.html) 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
```powershell
$InnerHit = Initialize-PSSailpoint.V2024InnerHit -Query source.name:\"Active Directory\" `
-Type access
```
- Convert the resource to JSON
```powershell
$InnerHit | ConvertTo-JSON
```
[[Back to top]](#)