adding all powershell doc versions back

This commit is contained in:
darrell-thobe-sp
2025-01-28 09:59:02 -05:00
parent ca4e98517f
commit f71193e0d5
1823 changed files with 130757 additions and 0 deletions

View File

@@ -0,0 +1,35 @@
---
id: v2024-source-usage-status
title: SourceUsageStatus
pagination_label: SourceUsageStatus
sidebar_label: SourceUsageStatus
sidebar_class_name: powershellsdk
keywords: ['powershell', 'PowerShell', 'sdk', 'SourceUsageStatus']
slug: /tools/sdk/powershell/v2024/models/source-usage-status
tags: ['SDK', 'Software Development Kit', 'SourceUsageStatus']
---
# 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.V2024SourceUsageStatus -Status COMPLETE
```
- Convert the resource to JSON
```powershell
$SourceUsageStatus | ConvertTo-JSON
```
[[Back to top]](#)