add method and model docs for powershell and python v2025

This commit is contained in:
darrell-thobe-sp
2025-04-01 09:23:12 -04:00
parent c12ffb7efc
commit 5d8f458a33
2414 changed files with 191212 additions and 0 deletions

View File

@@ -0,0 +1,36 @@
---
id: v2025-inner-hit
title: InnerHit
pagination_label: InnerHit
sidebar_label: InnerHit
sidebar_class_name: pythonsdk
keywords: ['python', 'Python', 'sdk', 'InnerHit', 'V2025InnerHit']
slug: /tools/sdk/python/v2025/models/inner-hit
tags: ['SDK', 'Software Development Kit', 'InnerHit', 'V2025InnerHit']
---
# 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](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** | **str** | 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]
}
## Example
```python
from sailpoint.v2025.models.inner_hit import InnerHit
inner_hit = InnerHit(
query='source.name:\"Active Directory\"',
type='access'
)
```
[[Back to top]](#)