adding powershell sdk docs back

This commit is contained in:
darrell-thobe-sp
2025-01-28 13:29:29 -05:00
parent 248e4afe6b
commit c69a78b807
2822 changed files with 201703 additions and 0 deletions

View File

@@ -0,0 +1,39 @@
---
id: v2024-subscription-patch-request-inner
title: SubscriptionPatchRequestInner
pagination_label: SubscriptionPatchRequestInner
sidebar_label: SubscriptionPatchRequestInner
sidebar_class_name: powershellsdk
keywords: ['powershell', 'PowerShell', 'sdk', 'SubscriptionPatchRequestInner', 'V2024SubscriptionPatchRequestInner']
slug: /tools/sdk/powershell/v2024/models/subscription-patch-request-inner
tags: ['SDK', 'Software Development Kit', 'SubscriptionPatchRequestInner', 'V2024SubscriptionPatchRequestInner']
---
# SubscriptionPatchRequestInner
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Op** | **Enum** [ "add", "remove", "replace", "move", "copy" ] | The operation to be performed | [required]
**Path** | **String** | A string JSON Pointer representing the target path to an element to be affected by the operation | [required]
**Value** | Pointer to [**SubscriptionPatchRequestInnerValue**](subscription-patch-request-inner-value) | | [optional]
## Examples
- Prepare the resource
```powershell
$SubscriptionPatchRequestInner = Initialize-PSSailpoint.V2024SubscriptionPatchRequestInner -Op replace `
-Path /description `
-Value null
```
- Convert the resource to JSON
```powershell
$SubscriptionPatchRequestInner | ConvertTo-JSON
```
[[Back to top]](#)