adding v3 docs back in

This commit is contained in:
darrell-thobe-sp
2025-01-23 20:41:57 -05:00
parent f36c734ca4
commit 7194b934e8
658 changed files with 47533 additions and 0 deletions

View File

@@ -0,0 +1,47 @@
---
id: owns
title: Owns
pagination_label: Owns
sidebar_label: Owns
sidebar_class_name: powershellsdk
keywords: ['powershell', 'PowerShell', 'sdk', 'Owns']
slug: /tools/sdk/powershell/v3/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.V3Owns -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]](#)