Update to powershell SDK docs: 14132734151

This commit is contained in:
developer-relations-sp
2025-03-28 15:47:21 +00:00
parent 74a9e68543
commit 505a2245eb
31 changed files with 3035 additions and 226 deletions

View File

@@ -0,0 +1,39 @@
---
id: v2024-multi-host-integrations-before-provisioning-rule
title: MultiHostIntegrationsBeforeProvisioningRule
pagination_label: MultiHostIntegrationsBeforeProvisioningRule
sidebar_label: MultiHostIntegrationsBeforeProvisioningRule
sidebar_class_name: powershellsdk
keywords: ['powershell', 'PowerShell', 'sdk', 'MultiHostIntegrationsBeforeProvisioningRule', 'V2024MultiHostIntegrationsBeforeProvisioningRule']
slug: /tools/sdk/powershell/v2024/models/multi-host-integrations-before-provisioning-rule
tags: ['SDK', 'Software Development Kit', 'MultiHostIntegrationsBeforeProvisioningRule', 'V2024MultiHostIntegrationsBeforeProvisioningRule']
---
# MultiHostIntegrationsBeforeProvisioningRule
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Type** | **Enum** [ "RULE" ] | Type of object being referenced. | [optional]
**Id** | **String** | Rule ID. | [optional]
**Name** | **String** | Rule's human-readable display name. | [optional]
## Examples
- Prepare the resource
```powershell
$MultiHostIntegrationsBeforeProvisioningRule = Initialize-PSSailpoint.V2024MultiHostIntegrationsBeforeProvisioningRule -Type RULE `
-Id 2c918085708c274401708c2a8a760001 `
-Name Example Rule
```
- Convert the resource to JSON
```powershell
$MultiHostIntegrationsBeforeProvisioningRule | ConvertTo-JSON
```
[[Back to top]](#)