adding all powershell doc versions back

This commit is contained in:
darrell-thobe-sp
2025-01-28 09:59:02 -05:00
parent ca4e98517f
commit f71193e0d5
1823 changed files with 130757 additions and 0 deletions

View File

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