Skip to content

Commit

Permalink
fix: Added missing property resource to ZIA package. (#235)
Browse files Browse the repository at this point in the history
  • Loading branch information
willguibr authored Jan 8, 2025
1 parent 6beaa04 commit 946106a
Show file tree
Hide file tree
Showing 3 changed files with 30 additions and 1 deletion.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# Zscaler Python SDK Changelog

## 0.10.3 (January,8 2024)

### Notes

- Python Versions: **v3.8, v3.9, v3.10, v3.11**

### Bug Fix:

* ([#235](https://github.com/zscaler/zscaler-sdk-python/pull/235)) - Added missing `cloud_apps` property resource to ZIA package.

## 0.10.2 (January,6 2024)

### Notes
Expand Down
12 changes: 11 additions & 1 deletion docsrc/zs/guides/release_notes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,16 @@ Release Notes
Zscaler Python SDK Changelog
----------------------------

## 0.10.3 (January,8 2024)

### Notes

- Python Versions: **v3.8, v3.9, v3.10, v3.11**

### Bug Fix:

* Added missing `cloud_apps` property resource to ZIA package. (`235 <https://github.com/zscaler/zscaler-sdk-python/pull/235>`_).

## 0.10.2 (January,6 2024)

### Notes
Expand All @@ -17,7 +27,7 @@ Bug Fixes

* Fixed behavior where `pagesize` was being ignored, defaulting to 100. The SDK now respects the user-specified `pagesize` value within API limits (100-10,000). (`231 <https://github.com/zscaler/zscaler-sdk-python/pull/231>`_).
* Added explicit handling for the `page` parameter. When provided, the SDK fetches data from only the specified page without iterating through all pages. (`231 <https://github.com/zscaler/zscaler-sdk-python/pull/231>`_).
* Updated docstrings and documentation to clarify the correct usage of `page` and `pagesize` parameters.. (`231 <https://github.com/zscaler/zscaler-sdk-python/pull/231>`_).
* Updated docstrings and documentation to clarify the correct usage of `page` and `pagesize` parameters. (`231 <https://github.com/zscaler/zscaler-sdk-python/pull/231>`_).


## 0.10.1 (December,18 2024)
Expand Down
9 changes: 9 additions & 0 deletions zscaler/zia/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@
from zscaler.zia.apptotal import AppTotalAPI
from zscaler.zia.audit_logs import AuditLogsAPI
from zscaler.zia.authentication_settings import AuthenticationSettingsAPI
from zscaler.zia.cloud_apps import CloudAppsAPI
from zscaler.zia.device_management import DeviceManagementAPI
from zscaler.zia.dlp import DLPAPI
from zscaler.zia.firewall import FirewallPolicyAPI
Expand Down Expand Up @@ -709,6 +710,14 @@ def activate(self):
"""
return ActivationAPI(self)

@property
def cloud_apps(self):
"""
The interface object for the :ref:`ZIA Cloud Applications interface <zia-cloud_apps>`.
"""
return CloudAppsAPI(self)

@property
def dlp(self):
"""
Expand Down

0 comments on commit 946106a

Please sign in to comment.