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,43 @@
---
id: v2025-sub-search-aggregation-specification
title: SubSearchAggregationSpecification
pagination_label: SubSearchAggregationSpecification
sidebar_label: SubSearchAggregationSpecification
sidebar_class_name: powershellsdk
keywords: ['powershell', 'PowerShell', 'sdk', 'SubSearchAggregationSpecification', 'V2025SubSearchAggregationSpecification']
slug: /tools/sdk/powershell/v2025/models/sub-search-aggregation-specification
tags: ['SDK', 'Software Development Kit', 'SubSearchAggregationSpecification', 'V2025SubSearchAggregationSpecification']
---
# SubSearchAggregationSpecification
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Nested** | [**NestedAggregation**](nested-aggregation) | | [optional]
**Metric** | [**MetricAggregation**](metric-aggregation) | | [optional]
**VarFilter** | [**FilterAggregation**](filter-aggregation) | | [optional]
**Bucket** | [**BucketAggregation**](bucket-aggregation) | | [optional]
**SubAggregation** | [**Aggregations**](aggregations) | | [optional]
## Examples
- Prepare the resource
```powershell
$SubSearchAggregationSpecification = Initialize-PSSailpoint.V2025SubSearchAggregationSpecification -Nested null `
-Metric null `
-VarFilter null `
-Bucket null `
-SubAggregation null
```
- Convert the resource to JSON
```powershell
$SubSearchAggregationSpecification | ConvertTo-JSON
```
[[Back to top]](#)