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,35 @@
---
id: beta-source-usage-status
title: SourceUsageStatus
pagination_label: SourceUsageStatus
sidebar_label: SourceUsageStatus
sidebar_class_name: powershellsdk
keywords: ['powershell', 'PowerShell', 'sdk', 'SourceUsageStatus', 'BetaSourceUsageStatus']
slug: /tools/sdk/powershell/beta/models/source-usage-status
tags: ['SDK', 'Software Development Kit', 'SourceUsageStatus', 'BetaSourceUsageStatus']
---
# SourceUsageStatus
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Status** | Pointer to **Enum** [ "COMPLETE", "INCOMPLETE" ] | Source Usage Status. Acceptable values are: - COMPLETE - This status means that an activity data source has been setup and usage insights are available for the source. - INCOMPLETE - This status means that an activity data source has not been setup and usage insights are not available for the source. | [optional]
## Examples
- Prepare the resource
```powershell
$SourceUsageStatus = Initialize-PSSailpoint.BetaSourceUsageStatus -Status COMPLETE
```
- Convert the resource to JSON
```powershell
$SourceUsageStatus | ConvertTo-JSON
```
[[Back to top]](#)