Files
developer.sailpoint.com/docs/tools/sdk/powershell/Reference/V2024/Models/SearchAggregationSpecification.md
2025-05-07 14:37:48 +00:00

1.4 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
v2024-search-aggregation-specification SearchAggregationSpecification SearchAggregationSpecification SearchAggregationSpecification powershellsdk
powershell
PowerShell
sdk
SearchAggregationSpecification
V2024SearchAggregationSpecification
/tools/sdk/powershell/v2024/models/search-aggregation-specification
SDK
Software Development Kit
SearchAggregationSpecification
V2024SearchAggregationSpecification

SearchAggregationSpecification

Properties

Name Type Description Notes
Nested NestedAggregation [optional]
Metric MetricAggregation [optional]
VarFilter FilterAggregation [optional]
Bucket BucketAggregation [optional]
SubAggregation SubSearchAggregationSpecification [optional]

Examples

  • Prepare the resource
$SearchAggregationSpecification = Initialize-V2024SearchAggregationSpecification  -Nested null `
 -Metric null `
 -VarFilter null `
 -Bucket null `
 -SubAggregation null
  • Convert the resource to JSON
$SearchAggregationSpecification | ConvertTo-JSON

[Back to top]