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-sources-before-provisioning-rule
title: MultiHostSourcesBeforeProvisioningRule
pagination_label: MultiHostSourcesBeforeProvisioningRule
sidebar_label: MultiHostSourcesBeforeProvisioningRule
sidebar_class_name: powershellsdk
keywords: ['powershell', 'PowerShell', 'sdk', 'MultiHostSourcesBeforeProvisioningRule']
slug: /tools/sdk/powershell/beta/models/multi-host-sources-before-provisioning-rule
tags: ['SDK', 'Software Development Kit', 'MultiHostSourcesBeforeProvisioningRule']
---
# MultiHostSourcesBeforeProvisioningRule
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Type** | Pointer to **Enum** [ "RULE" ] | Type of object being referenced. | [optional]
**Id** | Pointer to **String** | Rule ID. | [optional]
**Name** | Pointer to **String** | Rule's human-readable display name. | [optional]
## Examples
- Prepare the resource
```powershell
$MultiHostSourcesBeforeProvisioningRule = Initialize-PSSailpoint.BetaMultiHostSourcesBeforeProvisioningRule -Type RULE `
-Id 2c918085708c274401708c2a8a760001 `
-Name Example Rule
```
- Convert the resource to JSON
```powershell
$MultiHostSourcesBeforeProvisioningRule | ConvertTo-JSON
```
[[Back to top]](#)