adding powershell sdk docs back

This commit is contained in:
darrell-thobe-sp
2025-01-28 13:29:29 -05:00
parent 248e4afe6b
commit c69a78b807
2822 changed files with 201703 additions and 0 deletions

View File

@@ -0,0 +1,43 @@
---
id: beta-outlier-summary
title: OutlierSummary
pagination_label: OutlierSummary
sidebar_label: OutlierSummary
sidebar_class_name: powershellsdk
keywords: ['powershell', 'PowerShell', 'sdk', 'OutlierSummary', 'BetaOutlierSummary']
slug: /tools/sdk/powershell/beta/models/outlier-summary
tags: ['SDK', 'Software Development Kit', 'OutlierSummary', 'BetaOutlierSummary']
---
# OutlierSummary
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Type** | Pointer to **Enum** [ "LOW_SIMILARITY", "STRUCTURAL" ] | The type of outlier summary | [optional]
**SnapshotDate** | Pointer to **System.DateTime** | The date the bulk outlier detection ran/snapshot was created | [optional]
**TotalOutliers** | Pointer to **Int32** | Total number of outliers for the customer making the request | [optional]
**TotalIdentities** | Pointer to **Int32** | Total number of identities for the customer making the request | [optional]
**TotalIgnored** | Pointer to **Int32** | | [optional] [default to 0]
## Examples
- Prepare the resource
```powershell
$OutlierSummary = Initialize-PSSailpoint.BetaOutlierSummary -Type LOW_SIMILARITY `
-SnapshotDate 2021-05-01T18:40:35.772Z `
-TotalOutliers 50 `
-TotalIdentities 5000 `
-TotalIgnored 0
```
- Convert the resource to JSON
```powershell
$OutlierSummary | ConvertTo-JSON
```
[[Back to top]](#)