Skip to content

Commit

Permalink
added note
Browse files Browse the repository at this point in the history
  • Loading branch information
moishce committed Nov 4, 2024
1 parent eca2930 commit 67ce2cb
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 5 deletions.
6 changes: 4 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,10 @@
[PyPI History](https://pypi.org/project/demisto-py/#history)

## 3.2.16
* Added `upload_custom_packs` to upload zipped custom packs to marketplace.
and the `upload_content_packs` will be deprecated from XSOAR 8.9 and XSIAM 2.5
* Added support `upload_custom_packs` to upload zipped custom packs to the marketplace.

Note: `upload_content_packs` will be deprecated from XSOAR 8.9 and XSIAM 2.5.

## 3.2.14
* Added support for Python versions 3.11 and 3.12.

Expand Down
4 changes: 2 additions & 2 deletions demisto_client/demisto_api/api/default_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -7265,7 +7265,7 @@ def update_entry_tags_op_with_http_info(self, **kwargs): # noqa: E501
def upload_content_packs(self, file, **kwargs): # noqa: E501
"""Upload a Pack as zip file. The zip file maybe a single Pack or a zip containing multiple zipped Packs (a zip of zips) # noqa: E501
Upload a Pack to the marketplace in the Server. Can be used to upload a Pack for an offline scenario or a Pack that hasn't been released. # noqa: E501
Upload a Pack to the marketplace in the Server. Can be used to upload a Pack for an offline scenario or a Pack that hasn't been released. (will be deprecated from XSOAR 8.9 and XSIAM 2.5) # noqa: E501
This method makes a synchronous HTTP request by default. To make an
asynchronous HTTP request, please pass async_req=True
>>> thread = api.upload_content_packs(file, async_req=True)
Expand All @@ -7289,7 +7289,7 @@ def upload_content_packs(self, file, **kwargs): # noqa: E501
def upload_content_packs_with_http_info(self, file, **kwargs): # noqa: E501
"""Upload a Pack as zip file. The zip file maybe a single Pack or a zip containing multiple zipped Packs (a zip of zips) # noqa: E501
Upload a Pack to the marketplace in the Server. Can be used to upload a Pack for an offline scenario or a Pack that hasn't been released. # noqa: E501
Upload a Pack to the marketplace in the Server. Can be used to upload a Pack for an offline scenario or a Pack that hasn't been released. (will be deprecated from XSOAR 8.9 and XSIAM 2.5) # noqa: E501
This method makes a synchronous HTTP request by default. To make an
asynchronous HTTP request, please pass async_req=True
>>> thread = api.upload_content_packs_with_http_info(file, async_req=True)
Expand Down
2 changes: 1 addition & 1 deletion docs/DefaultApi.md
Original file line number Diff line number Diff line change
Expand Up @@ -3616,7 +3616,7 @@ Name | Type | Description | Notes
Upload a Pack as zip file. The zip file maybe a single Pack or a zip containing multiple zipped Packs (a zip of zips)

Upload a Pack to the marketplace in the Server. Can be used to upload a Pack for an offline scenario or a Pack that hasn't been released.
Upload a Pack to the marketplace in the Server. Can be used to upload a Pack for an offline scenario or a Pack that hasn't been released. (will be deprecated from XSOAR 8.9 and XSIAM 2.5)

### Example
```python
Expand Down

0 comments on commit 67ce2cb

Please sign in to comment.