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,47 @@
---
id: v2024-owns
title: Owns
pagination_label: Owns
sidebar_label: Owns
sidebar_class_name: powershellsdk
keywords: ['powershell', 'PowerShell', 'sdk', 'Owns']
slug: /tools/sdk/powershell/v2024/models/owns
tags: ['SDK', 'Software Development Kit', 'Owns']
---
# Owns
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Sources** | Pointer to [**[]Reference1**](reference1) | | [optional]
**Entitlements** | Pointer to [**[]Reference1**](reference1) | | [optional]
**AccessProfiles** | Pointer to [**[]Reference1**](reference1) | | [optional]
**Roles** | Pointer to [**[]Reference1**](reference1) | | [optional]
**Apps** | Pointer to [**[]Reference1**](reference1) | | [optional]
**GovernanceGroups** | Pointer to [**[]Reference1**](reference1) | | [optional]
**FallbackApprover** | Pointer to **Boolean** | | [optional]
## Examples
- Prepare the resource
```powershell
$Owns = Initialize-PSSailpoint.V2024Owns -Sources null `
-Entitlements null `
-AccessProfiles null `
-Roles null `
-Apps null `
-GovernanceGroups null `
-FallbackApprover false
```
- Convert the resource to JSON
```powershell
$Owns | ConvertTo-JSON
```
[[Back to top]](#)