mirror of
https://github.com/LukeHagar/developer.sailpoint.com.git
synced 2025-12-08 20:37:46 +00:00
starting point for adding python sdk docs
This commit is contained in:
39
docs/tools/sdk/python/Reference/Beta/Models/JsonPatch.md
Normal file
39
docs/tools/sdk/python/Reference/Beta/Models/JsonPatch.md
Normal file
@@ -0,0 +1,39 @@
|
||||
---
|
||||
id: beta-json-patch
|
||||
title: JsonPatch
|
||||
pagination_label: JsonPatch
|
||||
sidebar_label: JsonPatch
|
||||
sidebar_class_name: pythonsdk
|
||||
keywords: ['python', 'Python', 'sdk', 'JsonPatch', 'BetaJsonPatch']
|
||||
slug: /tools/sdk/python/beta/models/json-patch
|
||||
tags: ['SDK', 'Software Development Kit', 'JsonPatch', 'BetaJsonPatch']
|
||||
---
|
||||
|
||||
# JsonPatch
|
||||
|
||||
A JSONPatch document as defined by [RFC 6902 - JSON Patch](https://tools.ietf.org/html/rfc6902)
|
||||
|
||||
## Properties
|
||||
|
||||
Name | Type | Description | Notes
|
||||
------------ | ------------- | ------------- | -------------
|
||||
**operations** | [**[]JsonPatchOperation**](json-patch-operation) | Operations to be applied | [optional]
|
||||
}
|
||||
|
||||
## Example
|
||||
|
||||
```python
|
||||
from sailpoint.beta.models.json_patch import JsonPatch
|
||||
|
||||
json_patch = JsonPatch(
|
||||
operations=[
|
||||
sailpoint.beta.models.json_patch_operation.JsonPatchOperation(
|
||||
op = 'replace',
|
||||
path = '/description',
|
||||
value = New description, )
|
||||
]
|
||||
)
|
||||
|
||||
```
|
||||
[[Back to top]](#)
|
||||
|
||||
Reference in New Issue
Block a user