mirror of
https://github.com/LukeHagar/developer.sailpoint.com.git
synced 2025-12-08 12:27:47 +00:00
starting point for adding python sdk docs
This commit is contained in:
@@ -0,0 +1,38 @@
|
||||
---
|
||||
id: beta-update-multi-host-sources-request-inner
|
||||
title: UpdateMultiHostSourcesRequestInner
|
||||
pagination_label: UpdateMultiHostSourcesRequestInner
|
||||
sidebar_label: UpdateMultiHostSourcesRequestInner
|
||||
sidebar_class_name: pythonsdk
|
||||
keywords: ['python', 'Python', 'sdk', 'UpdateMultiHostSourcesRequestInner', 'BetaUpdateMultiHostSourcesRequestInner']
|
||||
slug: /tools/sdk/python/beta/models/update-multi-host-sources-request-inner
|
||||
tags: ['SDK', 'Software Development Kit', 'UpdateMultiHostSourcesRequestInner', 'BetaUpdateMultiHostSourcesRequestInner']
|
||||
---
|
||||
|
||||
# UpdateMultiHostSourcesRequestInner
|
||||
|
||||
A JSONPatch Operation as defined by [RFC 6902 - JSON Patch](https://tools.ietf.org/html/rfc6902)
|
||||
|
||||
## Properties
|
||||
|
||||
Name | Type | Description | Notes
|
||||
------------ | ------------- | ------------- | -------------
|
||||
**op** | **Enum** [ 'add', 'replace' ] | The operation to be performed | [required]
|
||||
**path** | **str** | A string JSON Pointer representing the target path to an element to be affected by the operation | [required]
|
||||
**value** | [**UpdateMultiHostSourcesRequestInnerValue**](update-multi-host-sources-request-inner-value) | | [optional]
|
||||
}
|
||||
|
||||
## Example
|
||||
|
||||
```python
|
||||
from sailpoint.beta.models.update_multi_host_sources_request_inner import UpdateMultiHostSourcesRequestInner
|
||||
|
||||
update_multi_host_sources_request_inner = UpdateMultiHostSourcesRequestInner(
|
||||
op='replace',
|
||||
path='/description',
|
||||
value=New description
|
||||
)
|
||||
|
||||
```
|
||||
[[Back to top]](#)
|
||||
|
||||
Reference in New Issue
Block a user