Files
developer.sailpoint.com/docs/tools/sdk/powershell/Reference/V3/Models/MetricAggregation.md
2025-01-28 13:29:29 -05:00

1.2 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
metric-aggregation MetricAggregation MetricAggregation MetricAggregation powershellsdk
powershell
PowerShell
sdk
MetricAggregation
MetricAggregation
/tools/sdk/powershell/v3/models/metric-aggregation
SDK
Software Development Kit
MetricAggregation
MetricAggregation

MetricAggregation

Properties

Name Type Description Notes
Name String The name of the metric aggregate to be included in the result. If the metric aggregation is omitted, the resulting aggregation will be a count of the documents in the search results. [required]
Type Pointer to MetricType [optional]
Field String The field the calculation is performed on. Prefix the field name with '@' to reference a nested object. [required]

Examples

  • Prepare the resource
$MetricAggregation = Initialize-PSSailpoint.V3MetricAggregation  -Name Access Name Count `
 -Type null `
 -Field @access.name
  • Convert the resource to JSON
$MetricAggregation | ConvertTo-JSON

[Back to top]