mirror of
https://github.com/LukeHagar/developer.sailpoint.com.git
synced 2025-12-09 04:19:37 +00:00
add method and model docs for powershell and python v2025
This commit is contained in:
@@ -0,0 +1,37 @@
|
||||
---
|
||||
id: v2025-source-app-bulk-update-request
|
||||
title: SourceAppBulkUpdateRequest
|
||||
pagination_label: SourceAppBulkUpdateRequest
|
||||
sidebar_label: SourceAppBulkUpdateRequest
|
||||
sidebar_class_name: powershellsdk
|
||||
keywords: ['powershell', 'PowerShell', 'sdk', 'SourceAppBulkUpdateRequest', 'V2025SourceAppBulkUpdateRequest']
|
||||
slug: /tools/sdk/powershell/v2025/models/source-app-bulk-update-request
|
||||
tags: ['SDK', 'Software Development Kit', 'SourceAppBulkUpdateRequest', 'V2025SourceAppBulkUpdateRequest']
|
||||
---
|
||||
|
||||
|
||||
# SourceAppBulkUpdateRequest
|
||||
|
||||
## Properties
|
||||
|
||||
Name | Type | Description | Notes
|
||||
------------ | ------------- | ------------- | -------------
|
||||
**AppIds** | **[]String** | List of source app ids to update | [required]
|
||||
**JsonPatch** | [**[]JsonPatchOperation**](json-patch-operation) | The JSONPatch payload used to update the source app. | [required]
|
||||
|
||||
## Examples
|
||||
|
||||
- Prepare the resource
|
||||
```powershell
|
||||
$SourceAppBulkUpdateRequest = Initialize-PSSailpoint.V2025SourceAppBulkUpdateRequest -AppIds [2c91808a7624751a01762f19d665220d, 2c91808a7624751a01762f19d67c220e, 2c91808a7624751a01762f19d692220f] `
|
||||
-JsonPatch [{op=replace, path=/enabled, value=false}, {op=replace, path=/matchAllAccounts, value=false}]
|
||||
```
|
||||
|
||||
- Convert the resource to JSON
|
||||
```powershell
|
||||
$SourceAppBulkUpdateRequest | ConvertTo-JSON
|
||||
```
|
||||
|
||||
|
||||
[[Back to top]](#)
|
||||
|
||||
Reference in New Issue
Block a user