mirror of
https://github.com/LukeHagar/developer.sailpoint.com.git
synced 2025-12-09 20:37:47 +00:00
add method and model docs for powershell and python v2025
This commit is contained in:
53
docs/tools/sdk/python/Reference/V2025/Models/Aggregations.md
Normal file
53
docs/tools/sdk/python/Reference/V2025/Models/Aggregations.md
Normal file
@@ -0,0 +1,53 @@
|
||||
---
|
||||
id: v2025-aggregations
|
||||
title: Aggregations
|
||||
pagination_label: Aggregations
|
||||
sidebar_label: Aggregations
|
||||
sidebar_class_name: pythonsdk
|
||||
keywords: ['python', 'Python', 'sdk', 'Aggregations', 'V2025Aggregations']
|
||||
slug: /tools/sdk/python/v2025/models/aggregations
|
||||
tags: ['SDK', 'Software Development Kit', 'Aggregations', 'V2025Aggregations']
|
||||
---
|
||||
|
||||
# Aggregations
|
||||
|
||||
|
||||
## Properties
|
||||
|
||||
Name | Type | Description | Notes
|
||||
------------ | ------------- | ------------- | -------------
|
||||
**nested** | [**NestedAggregation**](nested-aggregation) | | [optional]
|
||||
**metric** | [**MetricAggregation**](metric-aggregation) | | [optional]
|
||||
**filter** | [**FilterAggregation**](filter-aggregation) | | [optional]
|
||||
**bucket** | [**BucketAggregation**](bucket-aggregation) | | [optional]
|
||||
}
|
||||
|
||||
## Example
|
||||
|
||||
```python
|
||||
from sailpoint.v2025.models.aggregations import Aggregations
|
||||
|
||||
aggregations = Aggregations(
|
||||
nested=sailpoint.v2025.models.nested_aggregation.NestedAggregation(
|
||||
name = 'id',
|
||||
type = 'access', ),
|
||||
metric=sailpoint.v2025.models.metric_aggregation.MetricAggregation(
|
||||
name = 'Access Name Count',
|
||||
type = 'UNIQUE_COUNT',
|
||||
field = '@access.name', ),
|
||||
filter=sailpoint.v2025.models.filter_aggregation.FilterAggregation(
|
||||
name = 'Entitlements',
|
||||
type = 'TERM',
|
||||
field = 'access.type',
|
||||
value = 'ENTITLEMENT', ),
|
||||
bucket=sailpoint.v2025.models.bucket_aggregation.BucketAggregation(
|
||||
name = 'Identity Locations',
|
||||
type = 'TERMS',
|
||||
field = 'attributes.city',
|
||||
size = 100,
|
||||
min_doc_count = 2, )
|
||||
)
|
||||
|
||||
```
|
||||
[[Back to top]](#)
|
||||
|
||||
Reference in New Issue
Block a user