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,37 @@
---
id: beta-source-usage
title: SourceUsage
pagination_label: SourceUsage
sidebar_label: SourceUsage
sidebar_class_name: powershellsdk
keywords: ['powershell', 'PowerShell', 'sdk', 'SourceUsage', 'BetaSourceUsage']
slug: /tools/sdk/powershell/beta/models/source-usage
tags: ['SDK', 'Software Development Kit', 'SourceUsage', 'BetaSourceUsage']
---
# SourceUsage
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Date** | Pointer to **System.DateTime** | The first day of the month for which activity is aggregated. | [optional]
**Count** | Pointer to **Double** | The average number of days that accounts were active within this source, for the month. | [optional]
## Examples
- Prepare the resource
```powershell
$SourceUsage = Initialize-PSSailpoint.BetaSourceUsage -Date Thu Apr 20 20:00:00 EDT 2023 `
-Count 10.45
```
- Convert the resource to JSON
```powershell
$SourceUsage | ConvertTo-JSON
```
[[Back to top]](#)