mirror of
https://github.com/LukeHagar/developer.sailpoint.com.git
synced 2025-12-07 04:19:34 +00:00
Update to powershell SDK docs: 13552752526
This commit is contained in:
@@ -19,6 +19,7 @@ Name | Type | Description | Notes
|
||||
**ObjectType** | **String** | The object type this configuration is for. | [optional]
|
||||
**ReferenceExtractors** | **[]String** | List of json paths within an exported object of this type that represent references that need to be resolved. | [optional]
|
||||
**SignatureRequired** | **Boolean** | If true, this type of object will be JWS signed and cannot be modified before import. | [optional] [default to $false]
|
||||
**AlwaysResolveById** | **Boolean** | Whether this object type has to be resolved always by ID | [optional] [default to $false]
|
||||
**LegacyObject** | **Boolean** | Whether this is a legacy object | [optional] [default to $false]
|
||||
**OnePerTenant** | **Boolean** | Whether there is only one object of this type | [optional] [default to $false]
|
||||
**Exportable** | **Boolean** | Whether this object can be exported or it is just a reference object | [optional] [default to $false]
|
||||
@@ -31,6 +32,7 @@ Name | Type | Description | Notes
|
||||
$SpConfigObject = Initialize-PSSailpoint.BetaSpConfigObject -ObjectType TRIGGER_SUBSCRIPTION `
|
||||
-ReferenceExtractors [$.owner] `
|
||||
-SignatureRequired false `
|
||||
-AlwaysResolveById true `
|
||||
-LegacyObject false `
|
||||
-OnePerTenant false `
|
||||
-Exportable true `
|
||||
|
||||
@@ -17,8 +17,8 @@ tags: ['SDK', 'Software Development Kit', 'SpConfigRule', 'BetaSpConfigRule']
|
||||
Name | Type | Description | Notes
|
||||
------------ | ------------- | ------------- | -------------
|
||||
**Path** | **String** | JSONPath expression denoting the path within the object where a value substitution should be applied | [optional]
|
||||
**Value** | [**SystemCollectionsHashtable**]https://learn.microsoft.com/en-us/dotnet/api/system.collections.hashtable?view=net-9.0 | Value to be assigned at the jsonPath location within the object | [optional]
|
||||
**Mode** | **[]String** | Draft modes to which this rule will apply | [optional]
|
||||
**Value** | [**SpConfigRuleValue**](sp-config-rule-value) | | [optional]
|
||||
**Modes** | **[]String** | Draft modes to which this rule will apply | [optional]
|
||||
|
||||
## Examples
|
||||
|
||||
@@ -26,7 +26,7 @@ Name | Type | Description | Notes
|
||||
```powershell
|
||||
$SpConfigRule = Initialize-PSSailpoint.BetaSpConfigRule -Path $.enabled `
|
||||
-Value null `
|
||||
-Mode [RESTORE, PROMOTE]
|
||||
-Modes [RESTORE, PROMOTE]
|
||||
```
|
||||
|
||||
- Convert the resource to JSON
|
||||
|
||||
@@ -0,0 +1,34 @@
|
||||
---
|
||||
id: beta-sp-config-rule-value
|
||||
title: SpConfigRuleValue
|
||||
pagination_label: SpConfigRuleValue
|
||||
sidebar_label: SpConfigRuleValue
|
||||
sidebar_class_name: powershellsdk
|
||||
keywords: ['powershell', 'PowerShell', 'sdk', 'SpConfigRuleValue', 'BetaSpConfigRuleValue']
|
||||
slug: /tools/sdk/powershell/beta/models/sp-config-rule-value
|
||||
tags: ['SDK', 'Software Development Kit', 'SpConfigRuleValue', 'BetaSpConfigRuleValue']
|
||||
---
|
||||
|
||||
|
||||
# SpConfigRuleValue
|
||||
|
||||
## Properties
|
||||
|
||||
Name | Type | Description | Notes
|
||||
------------ | ------------- | ------------- | -------------
|
||||
|
||||
## Examples
|
||||
|
||||
- Prepare the resource
|
||||
```powershell
|
||||
$SpConfigRuleValue = Initialize-PSSailpoint.BetaSpConfigRuleValue
|
||||
```
|
||||
|
||||
- Convert the resource to JSON
|
||||
```powershell
|
||||
$SpConfigRuleValue | ConvertTo-JSON
|
||||
```
|
||||
|
||||
|
||||
[[Back to top]](#)
|
||||
|
||||
Reference in New Issue
Block a user