Skip to content

Commit

Permalink
feat: Added support the zpa policy set v2 endpoints (#96)
Browse files Browse the repository at this point in the history
* feat: Added support the zpa policy set v2 endpoints
  • Loading branch information
willguibr authored May 25, 2024
1 parent 9c5a1f8 commit f144d90
Show file tree
Hide file tree
Showing 9 changed files with 1,941 additions and 68 deletions.
10 changes: 5 additions & 5 deletions docsrc/dev_requirements.txt
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
furo==2023.5.20
furo==2024.5.6
pre-commit==3.7.1
pytest==8.2.1
python-box==7.0.1
pytest==8.2.0
python-box==7.1.1
restfly==1.4.7
requests==2.32.1
responses==0.23.1
requests==2.31.0
responses==0.25.0
sphinx==7.0.1
toml==0.10.2
urllib3<2
Expand Down
13 changes: 13 additions & 0 deletions docsrc/zs/zpa/policiesv2.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
policiesv2
------------------

The following methods allow for interaction with the ZPA Policy Sets V2 API endpoints.

Methods are accessible via ``zpa.policiesv2``

.. _zpa-policiesv2:

.. automodule:: zscaler.zpa.policiesv2
:members:
:undoc-members:
:show-inheritance:
84 changes: 42 additions & 42 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

13 changes: 6 additions & 7 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "zscaler-sdk-python"
version = "0.2.0"
version = "0.30.0"
description = "Official Python SDK for the Zscaler Products (Beta)"
authors = ["Zscaler, Inc. <devrel@zscaler.com>"]
license = "MIT"
Expand Down Expand Up @@ -35,11 +35,10 @@ charset-normalizer = "*"
idna = "*"
python-box = "^7.1.1"
python-dateutil = "*"
requests = "*"
requests = ">=2.32.0"
responses = "*"
restfly = "*"
six = "*"
urllib3 = "*"
flatdict = "*"
pyyaml = "*"
xmltodict = "*"
Expand All @@ -49,13 +48,13 @@ aenum = "*"
pydash = "*"
flake8 = "*"
pytz = "*"
black = "^24.4.1"
black = "*"
cryptography = ">=3.4,<43.0"

[tool.poetry.dev-dependencies]
black = "*"
pytest = "*"
pytest-asyncio = "*"
black = "24.3.0"
pytest = "^8.2.1"
pytest-asyncio = ">=0.23.7"
pytest-mock = "*"
pytest-recording = "*"
pytest-cov = "*"
Expand Down
Loading

0 comments on commit f144d90

Please sign in to comment.