update to doc files

This commit is contained in:
darrell-thobe-sp
2025-01-24 14:40:05 -05:00
parent 19e073b551
commit 39d2297259
1001 changed files with 70946 additions and 0 deletions

View File

@@ -0,0 +1,39 @@
---
id: multi-host-integrations-owner
title: MultiHostIntegrationsOwner
pagination_label: MultiHostIntegrationsOwner
sidebar_label: MultiHostIntegrationsOwner
sidebar_class_name: powershellsdk
keywords: ['powershell', 'PowerShell', 'sdk', 'MultiHostIntegrationsOwner']
slug: /tools/sdk/powershell/beta/models/multi-host-integrations-owner
tags: ['SDK', 'Software Development Kit', 'MultiHostIntegrationsOwner']
---
# MultiHostIntegrationsOwner
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Type** | Pointer to **Enum** [ "IDENTITY" ] | Type of object being referenced. | [optional]
**Id** | Pointer to **String** | Owner identity's ID. | [optional]
**Name** | Pointer to **String** | Owner identity's human-readable display name. | [optional]
## Examples
- Prepare the resource
```powershell
$MultiHostIntegrationsOwner = Initialize-PSSailpoint.BetaMultiHostIntegrationsOwner -Type IDENTITY `
-Id 2c91808568c529c60168cca6f90c1313 `
-Name MyName
```
- Convert the resource to JSON
```powershell
$MultiHostIntegrationsOwner | ConvertTo-JSON
```
[[Back to top]](#)