only beta

This commit is contained in:
darrell-thobe-sp
2025-01-28 08:57:33 -05:00
parent fb685431b3
commit ca4e98517f
444 changed files with 0 additions and 18963 deletions

View File

@@ -1,39 +0,0 @@
---
id: v2024-sp-config-rules
title: SpConfigRules
pagination_label: SpConfigRules
sidebar_label: SpConfigRules
sidebar_class_name: powershellsdk
keywords: ['powershell', 'PowerShell', 'sdk', 'SpConfigRules']
slug: /tools/sdk/powershell/v2024/models/sp-config-rules
tags: ['SDK', 'Software Development Kit', 'SpConfigRules']
---
# SpConfigRules
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**TakeFromTargetRules** | Pointer to [**[]SpConfigRule**](sp-config-rule) | | [optional]
**DefaultRules** | Pointer to [**[]SpConfigRule**](sp-config-rule) | | [optional]
**Editable** | Pointer to **Boolean** | Whether this object can be edited | [optional] [default to $false]
## Examples
- Prepare the resource
```powershell
$SpConfigRules = Initialize-PSSailpoint.V2024SpConfigRules -TakeFromTargetRules null `
-DefaultRules null `
-Editable true
```
- Convert the resource to JSON
```powershell
$SpConfigRules | ConvertTo-JSON
```
[[Back to top]](#)