mirror of
https://github.com/LukeHagar/developer.sailpoint.com.git
synced 2025-12-08 20:37:46 +00:00
1.2 KiB
1.2 KiB
id, title, pagination_label, sidebar_label, sidebar_class_name, keywords, slug, tags
| id | title | pagination_label | sidebar_label | sidebar_class_name | keywords | slug | tags | |||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| v2024-source-app-bulk-update-request | SourceAppBulkUpdateRequest | SourceAppBulkUpdateRequest | SourceAppBulkUpdateRequest | pythonsdk |
|
/tools/sdk/python/v2024/models/source-app-bulk-update-request |
|
SourceAppBulkUpdateRequest
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| app_ids | []str | List of source app ids to update | [required] |
| json_patch | []JsonPatchOperation | The JSONPatch payload used to update the source app. | [required] |
| } |
Example
from sailpoint.v2024.models.source_app_bulk_update_request import SourceAppBulkUpdateRequest
source_app_bulk_update_request = SourceAppBulkUpdateRequest(
app_ids=[2c91808a7624751a01762f19d665220d, 2c91808a7624751a01762f19d67c220e, 2c91808a7624751a01762f19d692220f],
json_patch=[{op=replace, path=/enabled, value=false}, {op=replace, path=/matchAllAccounts, value=false}]
)