zscaler-sdk-python 0.1.0__py2.py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (76) hide show
  1. zscaler/__init__.py +26 -0
  2. zscaler/cache/__init__.py +0 -0
  3. zscaler/cache/cache.py +105 -0
  4. zscaler/cache/no_op_cache.py +68 -0
  5. zscaler/cache/zscaler_cache.py +161 -0
  6. zscaler/constants.py +26 -0
  7. zscaler/errors/__init__.py +0 -0
  8. zscaler/errors/error.py +10 -0
  9. zscaler/errors/http_error.py +20 -0
  10. zscaler/errors/zscaler_api_error.py +24 -0
  11. zscaler/exceptions/__init__.py +1 -0
  12. zscaler/exceptions/exceptions.py +101 -0
  13. zscaler/logger.py +57 -0
  14. zscaler/ratelimiter/__init__.py +0 -0
  15. zscaler/ratelimiter/ratelimiter.py +39 -0
  16. zscaler/user_agent.py +23 -0
  17. zscaler/utils.py +577 -0
  18. zscaler/zia/__init__.py +657 -0
  19. zscaler/zia/activate.py +51 -0
  20. zscaler/zia/admin_and_role_management.py +342 -0
  21. zscaler/zia/apptotal.py +71 -0
  22. zscaler/zia/audit_logs.py +95 -0
  23. zscaler/zia/authentication_settings.py +98 -0
  24. zscaler/zia/client.py +88 -0
  25. zscaler/zia/cloud_apps.py +406 -0
  26. zscaler/zia/device_management.py +90 -0
  27. zscaler/zia/dlp.py +784 -0
  28. zscaler/zia/errors.py +37 -0
  29. zscaler/zia/firewall.py +1104 -0
  30. zscaler/zia/forwarding_control.py +271 -0
  31. zscaler/zia/isolation_profile.py +83 -0
  32. zscaler/zia/labels.py +180 -0
  33. zscaler/zia/locations.py +661 -0
  34. zscaler/zia/sandbox.py +180 -0
  35. zscaler/zia/security.py +236 -0
  36. zscaler/zia/ssl_inspection.py +175 -0
  37. zscaler/zia/traffic.py +853 -0
  38. zscaler/zia/url_categories.py +442 -0
  39. zscaler/zia/url_filtering.py +310 -0
  40. zscaler/zia/users.py +386 -0
  41. zscaler/zia/web_dlp.py +295 -0
  42. zscaler/zia/workload_groups.py +58 -0
  43. zscaler/zia/zpa_gateway.py +187 -0
  44. zscaler/zpa/README.md +40 -0
  45. zscaler/zpa/__init__.py +683 -0
  46. zscaler/zpa/app_segments.py +331 -0
  47. zscaler/zpa/app_segments_inspection.py +311 -0
  48. zscaler/zpa/app_segments_pra.py +310 -0
  49. zscaler/zpa/certificates.py +234 -0
  50. zscaler/zpa/client.py +113 -0
  51. zscaler/zpa/cloud_connector_groups.py +75 -0
  52. zscaler/zpa/connectors.py +518 -0
  53. zscaler/zpa/emergency_access.py +178 -0
  54. zscaler/zpa/errors.py +37 -0
  55. zscaler/zpa/idp.py +83 -0
  56. zscaler/zpa/inspection.py +1012 -0
  57. zscaler/zpa/isolation_profile.py +87 -0
  58. zscaler/zpa/lss.py +568 -0
  59. zscaler/zpa/machine_groups.py +79 -0
  60. zscaler/zpa/policies.py +848 -0
  61. zscaler/zpa/posture_profiles.py +122 -0
  62. zscaler/zpa/privileged_remote_access.py +867 -0
  63. zscaler/zpa/provisioning.py +271 -0
  64. zscaler/zpa/saml_attributes.py +100 -0
  65. zscaler/zpa/scim_attributes.py +117 -0
  66. zscaler/zpa/scim_groups.py +135 -0
  67. zscaler/zpa/segment_groups.py +191 -0
  68. zscaler/zpa/server_groups.py +217 -0
  69. zscaler/zpa/servers.py +202 -0
  70. zscaler/zpa/service_edges.py +404 -0
  71. zscaler/zpa/trusted_networks.py +127 -0
  72. zscaler_sdk_python-0.1.0.dist-info/LICENSE.md +21 -0
  73. zscaler_sdk_python-0.1.0.dist-info/METADATA +262 -0
  74. zscaler_sdk_python-0.1.0.dist-info/RECORD +76 -0
  75. zscaler_sdk_python-0.1.0.dist-info/WHEEL +6 -0
  76. zscaler_sdk_python-0.1.0.dist-info/top_level.txt +1 -0
@@ -0,0 +1,262 @@
1
+ Metadata-Version: 2.1
2
+ Name: zscaler-sdk-python
3
+ Version: 0.1.0
4
+ Summary: Official Python SDK for the Zscaler Products
5
+ Home-page: https://github.com/zscaler/zscaler-sdk-python
6
+ Author: Zscaler Technology Alliances
7
+ Author-email: devrel@zscaler.com
8
+ Requires-Python: >=3.8,<4.0
9
+ Description-Content-Type: text/markdown
10
+ License-File: LICENSE.md
11
+ Requires-Dist: arrow
12
+ Requires-Dist: certifi
13
+ Requires-Dist: charset-normalizer
14
+ Requires-Dist: idna
15
+ Requires-Dist: python-box
16
+ Requires-Dist: python-dateutil
17
+ Requires-Dist: requests
18
+ Requires-Dist: responses
19
+ Requires-Dist: restfly
20
+ Requires-Dist: six
21
+ Requires-Dist: urllib3
22
+ Requires-Dist: flatdict
23
+ Requires-Dist: pyyaml
24
+ Requires-Dist: xmltodict
25
+ Requires-Dist: yarl
26
+ Requires-Dist: pycryptodomex
27
+ Requires-Dist: aenum
28
+ Requires-Dist: pydash
29
+ Requires-Dist: flake8
30
+
31
+ # Official Python SDK for the Zscaler Products
32
+
33
+ [![CI/CD](https://github.com/zscaler/zscaler-sdk-python/actions/workflows/ci.yml/badge.svg)](https://github.com/zscaler/zscaler-sdk-python/actions/workflows/ci.yml)
34
+ [![Documentation Status](https://readthedocs.org/projects/zscaler-sdk-python/badge/?version=latest)](https://zscaler-sdk-python.readthedocs.io/en/latest/?badge=latest)
35
+ [![License](https://img.shields.io/github/license/zscaler/zscaler-sdk-python.svg)](https://github.com/zscaler/zscaler-sdk-python)
36
+ [![Latest version released on PyPi](https://img.shields.io/pypi/v/zscaler-sdk-python.svg)](https://pypi.org/project/zscaler-sdk-python)
37
+ [![PyPI pyversions](https://img.shields.io/pypi/pyversions/zscaler-sdk-python.svg)](https://pypi.python.org/pypi/zscaler-sdk-python/)
38
+ [![GitHub Release](https://img.shields.io/github/release/zscaler/zscaler-sdk-python.svg)](https://github.com/zscaler/zscaler-sdk-python/releases/)
39
+ [![Zscaler Community](https://img.shields.io/badge/zscaler-community-blue)](https://community.zscaler.com/)
40
+
41
+ ## Support Disclaimer
42
+
43
+ -> **Disclaimer:** Please refer to our [General Support Statement](docs/guides/support.md) before proceeding with the use of this provider. You can also refer to our [troubleshooting guide](docs/guides/troubleshooting.md) for guidance on typical problems.
44
+
45
+ ## Zscaler Python SDK Overview
46
+
47
+ This repository contains the Zscaler SDK for Python. This SDK can be used to interact with several Zscaler services such as:
48
+
49
+ * Zscaler Private Access (ZPA)
50
+ * Zscaler Internet Access (ZIA)
51
+ * [Documentation](http://zscaler-sdk-python.readthedocs.io)
52
+
53
+ -----
54
+
55
+ Each Zscaler product has separate developer documentation and authentication methods. This SDK aims to simplify
56
+ software development using the Zscaler API for both customers and partners.
57
+
58
+ - [Release Status](#release-status)
59
+ - [Need help?](#need-help)
60
+ - [Getting Started](#getting-started)
61
+ - [Pagination](#pagination)
62
+ - [Logging](#logging)
63
+ - [Rate Limiting](#rate-limiting)
64
+ - [Environment variables](#environment-variables)
65
+ - [Building the SDK](#building-the-sdk)
66
+ - [Contributing](#contributing)
67
+
68
+ > Requires Python version 3.8.0 or higher.
69
+
70
+ ## Need help?
71
+
72
+ If you run into problems using the SDK, you can:
73
+
74
+ - Ask questions on the [Zenith Community][zenith]
75
+ - Post [issues on GitHub][github-issues] (for code errors)
76
+ - Support [customer support portal][zscaler-support]
77
+
78
+ ## Getting started
79
+
80
+ To install the Zscaler Python SDK in your project:
81
+
82
+ ```sh
83
+ pip install zscaler-sdk-python
84
+ ```
85
+
86
+ ## Usage
87
+
88
+ Before you can interact with any of the Zscaler APIs, you need to generate API keys or retrieve tenancy information for each product that you are interfacing with. Once you have the requirements and you have installed Zscaler SDK Python, you're ready to go.
89
+
90
+ ### Quick ZIA Example
91
+
92
+ ```python
93
+ from zscaler import ZIAClientHelper
94
+ from pprint import pprint
95
+
96
+ zia = ZIAClientHelper(username='ZIA_USERNAME', password='ZIA_PASSWORD', api_key='ZIA_API_KEY', cloud='ZIA_CLOUD')
97
+ for user in zia.users.list_users():
98
+ pprint(user)
99
+ ```
100
+
101
+ ### Quick ZPA Example
102
+
103
+ ```python
104
+ from zscaler import ZPAClientHelper
105
+ from pprint import pprint
106
+
107
+ zpa = ZPAClientHelper(client_id='ZPA_CLIENT_ID', client_secret='ZPA_CLIENT_SECRET', customer_id='ZPA_CUSTOMER_ID', cloud='ZPA_CLOUD')
108
+ for app_segment in zpa.app_segments.list_segments():
109
+ pprint(app_segment)
110
+ ```
111
+
112
+ ~> **NOTE** The `ZPA_CLOUD` environment variable is optional and only required if your project needs to interact with any other ZPA cloud other than production cloud. In this case, use the `ZPA_CLOUD` environment variable followed by the name of the corresponding environment: `ZPA_CLOUD=BETA`, `ZPA_CLOUD=ZPATWO`, `ZPA_CLOUD=GOV`, `ZPA_CLOUD=GOVUS`, `ZPA_CLOUD=PREVIEW`, `ZPA_CLOUD=DEV`.
113
+
114
+ ## Pagination
115
+
116
+ This SDK provides methods that retrieve a list of resources from the API, which return paginated results due to the volume of data. Each method capable of returning paginated data is prefixed as `list_` and handles the pagination internally by providing an easy interface to iterate through pages. The user does not need to manually fetch each page; instead, they can process items as they iterate through them.
117
+
118
+ ### Example of Iterating Over Paginated Results
119
+
120
+ The following example shows how you can list ZPA items using this SDK, processing each item one at a time. This pattern is useful for operations that need to handle large datasets efficiently.
121
+
122
+ ```python
123
+ from zscaler import ZPAClientHelper
124
+ from pprint import pprint
125
+
126
+ # Initialize the client
127
+ zpa = ZPAClientHelper(client_id=CLIENT_ID, client_secret=CLIENT_SECRET, customer_id=CUSTOMER_ID, cloud=CLOUD)
128
+
129
+ for apps in zpa.app_segments.list_segments():
130
+ pprint(apps)
131
+ ```
132
+
133
+ ### Customizing Pagination Parameters
134
+
135
+ While pagination is handled automatically, you can also customize pagination behavior by specifying parameters such as data_per_page and max_items. These parameters give you control over the volume of data fetched per request and the total amount of data to process. This is useful for limiting the scope of data fetched
136
+
137
+ * `max_pages`: controls the number of items fetched per API call (per page).
138
+ * `max_items`: controls the total number of items to retrieve across all pages.
139
+
140
+ ```python
141
+ from zscaler import ZPAClientHelper
142
+ from pprint import pprint
143
+
144
+ # Initialize the client
145
+ zpa = ZPAClientHelper(client_id=CLIENT_ID, client_secret=CLIENT_SECRET, customer_id=CUSTOMER_ID, cloud=CLOUD)
146
+
147
+ pagination_params = {
148
+ 'max_pages': 1,
149
+ 'max_items': 5
150
+ }
151
+
152
+ # Fetch data using custom pagination settings
153
+ segments = zpa.app_segments.list_segments(**pagination_params)
154
+ for segment in segments:
155
+ pprint(segment)
156
+ ```
157
+
158
+ ### Efficient Pagination Handling
159
+
160
+ For more details on each pagination parameter see:
161
+ [ZPA Pagination Parameters](zscaler/zpa/README.md)
162
+ [ZIA Pagination Parameters](zscaler/zia/README.md)
163
+
164
+ ## Logging
165
+
166
+ The Zscaler SDK Python, provides robust logging for debug purposes.
167
+ Logs are disabled by default and should be enabled explicitly via custom environment variable:
168
+
169
+ * `ZSCALER_SDK_LOG` - Turn on logging
170
+ * `ZSCALER_SDK_VERBOSE` - Turn on logging in verbose mode
171
+
172
+ ```sh
173
+ export ZSCALER_SDK_LOG=true
174
+ export ZSCALER_SDK_VERBOSE=true
175
+ ```
176
+
177
+ **NOTE**: DO NOT SET DEBUG LEVEL IN PRODUCTION!
178
+
179
+ You should now see logs in your console. Notice that API tokens are **NOT** logged to the console; however, we still advise to use caution and never use `DEBUG` level logging in production.
180
+
181
+ What it being logged? `requests`, `responses`, `http errors`, `caching responses`.
182
+
183
+ ### Environment variables
184
+
185
+ Each one of the configuration values above can be turned into an environment variable name with the `_` (underscore) character and UPPERCASE characters. The following are accepted:
186
+
187
+ - `ZSCALER_CLIENT_CACHE_ENABLED` - Enable or disable the caching mechanism within the clien
188
+ - `ZSCALER_CLIENT_CACHE_DEFAULT_TTL` - Duration (in seconds) that cached data remains valid. By default data is cached in memory for `3600` seconds.
189
+ - `ZSCALER_CLIENT_CACHE_DEFAULT_TTI` - This environment variable sets the maximum amount of time (in seconds) that cached data can remain in the cache without being accessed. If the cached data is not accessed within this timeframe, it is removed from the cache, regardless of its TTL. The default TTI is `1800` seconds (`30 minutes`)
190
+ - `ZSCALER_SDK_LOG` - Turn on logging
191
+ - `ZSCALER_SDK_VERBOSE` - Turn on logging in verbose mode
192
+
193
+ ## Rate Limiting
194
+
195
+ Zscaler provides unique rate limiting numbers for each individual product. Regardless of the product, a 429 response will be returned if too many requests are made within a given time.
196
+ Please see:
197
+ * [ZPA Rate Limiting][rate-limiting-zpa] for rate limiting requirements.
198
+ * [ZIA Rate Limiting][rate-limiting-zia] for a complete list of which endpoints are rate limited.
199
+
200
+ When a 429 error is received, the `Retry-After` header will tell you the time at which you can retry. This section discusses the method for handling rate limiting with this SDK.
201
+
202
+ ### Built-In Retry
203
+
204
+ This SDK uses the built-in retry strategy to automatically retry on 429 errors. The default Maximum Retry Attempts for both ZIA and ZPA explicitly limits the number of retry attempts to a maximum of `5`.
205
+
206
+ Retry Conditions: The client for both ZPA and ZIA retries a request under the following conditions:
207
+
208
+ * HTTP status code 429 (Too Many Requests): This indicates that the rate limit has been exceeded. The client waits for a duration specified by the `Retry-After` header, if present, or a default of `2 ` seconds, before retrying.
209
+
210
+ * Exceptions during request execution: Any requests.RequestException encountered during the request triggers a retry, except on the last attempt, where the exception is raised.
211
+
212
+ ## Building the SDK
213
+
214
+ In most cases, you won't need to build the SDK from source. If you want to build it yourself, you'll need these prerequisites:
215
+
216
+ - Clone the repo
217
+ - Run `make build:dist` from the root of the project (assuming Python is installed)
218
+ - Ensure tests run succesfully.
219
+ - Install `tox` if not installed already using: `pip install tox`.
220
+ - Run tests using `tox` in the root directory of the project.
221
+
222
+ ## Contributing
223
+
224
+ At this moment we are not accepting contributions, but we welcome suggestions on how to improve this SDK or feature requests, which can then be added in future releases.
225
+
226
+ [zenith]: https://community.zscaler.com/
227
+ [zscaler-support]: https://help.zscaler.com/contact-support
228
+ [github-issues]: https://github.com/zscaler/zscaler-sdk-python/issues
229
+ [rate-limiting-zpa]: https://help.zscaler.com/zpa/understanding-rate-limiting
230
+ [rate-limiting-zia]: https://help.zscaler.com/zia/understanding-rate-limiting
231
+
232
+ Contributors
233
+ ------------
234
+
235
+ - William Guilherme - [willguibr](https://github.com/willguibr)
236
+ - Eddie Parra - [eparra](https://github.com/eparra)
237
+ - Paul Abbot - [abbottp](https://github.com/abbottp)
238
+
239
+ ## License
240
+ MIT License
241
+
242
+ =======
243
+
244
+ Copyright (c) 2023 [Zscaler](https://github.com/zscaler)
245
+
246
+ Permission is hereby granted, free of charge, to any person obtaining a copy
247
+ of this software and associated documentation files (the "Software"), to deal
248
+ in the Software without restriction, including without limitation the rights
249
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
250
+ copies of the Software, and to permit persons to whom the Software is
251
+ furnished to do so, subject to the following conditions:
252
+
253
+ The above copyright notice and this permission notice shall be included in all
254
+ copies or substantial portions of the Software.
255
+
256
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
257
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
258
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
259
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
260
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
261
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
262
+ SOFTWARE.
@@ -0,0 +1,76 @@
1
+ zscaler/__init__.py,sha256=xWGZNnzL2M1PdCrMt4-6X9abNA1vfWjHHYq-m92zi2M,1028
2
+ zscaler/constants.py,sha256=WDclU-MTk3MfJw6qZePPTuvQF7hFRy1VGGrLdFU0Ss0,738
3
+ zscaler/logger.py,sha256=Xfhuv1adJ0p0QknCUqw55i7HRER1Aq2JSwrBsZuA3Xw,2099
4
+ zscaler/user_agent.py,sha256=IDJ1OM8RqOD6V8NkU8o6U5smU-GsJyshKoMDf-94iUw,663
5
+ zscaler/utils.py,sha256=A_WQMA0rCGJkxLCfyfZx-xhH60S72ZwKnACyg4mlfYk,19443
6
+ zscaler/cache/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
7
+ zscaler/cache/cache.py,sha256=tsDhf-SSF6MRA68CVIyjMdjaK9XndoSPf8qRqTTXsAw,3195
8
+ zscaler/cache/no_op_cache.py,sha256=GxtlCSLrkDaNrsAFQvpj0QkoqwCUK1tGO8tfbrXFvU8,1485
9
+ zscaler/cache/zscaler_cache.py,sha256=WbUmlRqffH3hvEPpHL48vSA0zt80gODiPnMc5QI2jL4,4997
10
+ zscaler/errors/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
11
+ zscaler/errors/error.py,sha256=A9W-WYfvXQShRqFZXYT_VXKYboAMMNPajtUUcPCPOrI,172
12
+ zscaler/errors/http_error.py,sha256=sPz9jyyb8_zd1OegNYxqwkWZfjCLsI_M-kjf2CJ5vPY,638
13
+ zscaler/errors/zscaler_api_error.py,sha256=NwWVbUcByW17CLqmC7855md7wduNCs1FiJMYnYuK2YU,664
14
+ zscaler/exceptions/__init__.py,sha256=NnbvMschucQKxWiuwtFtRQIZx2o0uwnoAmGo_YqF_-E,63
15
+ zscaler/exceptions/exceptions.py,sha256=G5P8eOiiOsk940_K4AwKYVZ4qYZMkX9OzMmpSGWqxB4,2025
16
+ zscaler/ratelimiter/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
17
+ zscaler/ratelimiter/ratelimiter.py,sha256=rMWQYx9q0l-IssnkITMXceMjAkByH3oLA59JGpCOTUs,1487
18
+ zscaler/zia/__init__.py,sha256=OToQVbSkLs2ml892RJgIj2WpnqPtUlmsVnLhe3Ri3sg,22024
19
+ zscaler/zia/activate.py,sha256=TtUs0q8ZzQMR-wuEz5m8Y1x1On4v28PBufFakonbfDk,1534
20
+ zscaler/zia/admin_and_role_management.py,sha256=axB-zqTmGfgKsm6mmrwcNWddSlIf9zCQpWn_z2L_D7Q,14276
21
+ zscaler/zia/apptotal.py,sha256=fIKAHvKITfAE7oAQ5KF_lACswVguSNVzo7TLs2kMo1I,2372
22
+ zscaler/zia/audit_logs.py,sha256=HwsqfisMsrUVPRdKkIyfXMyf_gitpxrQAPtcbv2qIEA,3014
23
+ zscaler/zia/authentication_settings.py,sha256=C0jws_aV1A0W5PLRaIZdI6fb68-PCPG0AaxSSeuO3uQ,3184
24
+ zscaler/zia/client.py,sha256=ULSYnpoOa3Bl0cOXEcB3B4NcTd24LzZKpFVwYTImpeI,2754
25
+ zscaler/zia/cloud_apps.py,sha256=gHp0svgL5J-Vwu2QUSihJq8NDzey8rVykBC8fqiEfoU,18549
26
+ zscaler/zia/device_management.py,sha256=kO6ZTQwedOCKwcpO52RnF_oZRmTbvz3J8xO80jclsE8,2872
27
+ zscaler/zia/dlp.py,sha256=thuVfLW5datF8bTV2N4oqbI-ms2V-InmuQBJnUuXcSA,27588
28
+ zscaler/zia/errors.py,sha256=UyDWvN39SBImtlE6HumYLC3D7jaTQ_KtZr5DJ3dWV6E,794
29
+ zscaler/zia/firewall.py,sha256=ZbMVOrRM2jcOv8FYTDSIYpZaAiKtSElKjptCCwsaWs4,40386
30
+ zscaler/zia/forwarding_control.py,sha256=puetg5ciOXxcXd595DoVomkl3Adqd2yGggarGg2vcEc,11754
31
+ zscaler/zia/isolation_profile.py,sha256=APlSi-mkI8WrXxBWBr5c0LLiv7rPKQ1sd1LEFik6i90,2909
32
+ zscaler/zia/labels.py,sha256=skrusuigbeYKX-GiNEEgf-VlfZlzKuUDbpsKO3jwB_U,5865
33
+ zscaler/zia/locations.py,sha256=s2UQUWYW9P4mb8mqc5ENTMzmU6daOp2pUQuqMJ7KIwM,30972
34
+ zscaler/zia/sandbox.py,sha256=WFjQy7OmGsZcxqv9FqOpViFoa8NmbPrWROtzcxVnOGA,5796
35
+ zscaler/zia/security.py,sha256=tgGTE16LwUFHLEEzjiU8Q-SOvskpNijVEs2jL1vA7VY,6846
36
+ zscaler/zia/ssl_inspection.py,sha256=Z_BSy1zXFnsyRmrer9tu1UcvE0aLjwG86zwmcwkW7hg,5364
37
+ zscaler/zia/traffic.py,sha256=7pjfqiXuVT28UJkt5u1UCXnDvdrQQB8NDEl9isjZ7cw,31279
38
+ zscaler/zia/url_categories.py,sha256=FeiNf4wJ25e1W5F6Xak0BDiaLSRlrVeszr5CQ_0YGhk,14744
39
+ zscaler/zia/url_filtering.py,sha256=qr5pwJrpj4mr7Uatf13yqoRfWntYgoR-ikerODG7Zpg,14387
40
+ zscaler/zia/users.py,sha256=OPVNi5DXo_RSyzJb2zp-zCorhKgo6FM69DtOkjTxs-k,13841
41
+ zscaler/zia/web_dlp.py,sha256=smbIwJdzNjlzPxm5TyoDdu035SZShrtzlQqdnQUsobk,12436
42
+ zscaler/zia/workload_groups.py,sha256=kB246OyIZZEr2NEzg_xSWpKhFRsvphoIDFslJFJXrng,1897
43
+ zscaler/zia/zpa_gateway.py,sha256=HLa6vchAbS5O06D5qMO9OLgsSPl3gsjL5wuof1KdWJ4,6972
44
+ zscaler/zpa/README.md,sha256=4F5fCBho60D8ROfmIXaIh8XTryfesBHlH-jR2Z54B2w,2709
45
+ zscaler/zpa/__init__.py,sha256=IWq7A9vKWpoINUX9lBRAeRmmsSMKvHBYcM24HZLIYOI,24790
46
+ zscaler/zpa/app_segments.py,sha256=GjGdB6db_eYFjiaF05C14wAYYcT5BYJ1ZT6RmNsCGHs,13393
47
+ zscaler/zpa/app_segments_inspection.py,sha256=cN08Clf-20_W0FFEjt1evjXSIFnm_2wwzwiRVMsyJ-c,12657
48
+ zscaler/zpa/app_segments_pra.py,sha256=qzbt6bC-ByLxtGhDmY7HfhIVjKw4vL4FVRU9vMiOeoQ,12217
49
+ zscaler/zpa/certificates.py,sha256=KGLyFPILonqO70GCzVwmRyRqMM8ydy6P9GWTD-Vh8vw,7986
50
+ zscaler/zpa/client.py,sha256=zYNerhB5Zw5eVsJKM4ZDKc3RXYkvWuUsdKwaE9YJ_sY,3804
51
+ zscaler/zpa/cloud_connector_groups.py,sha256=hl0WPu-FWjF4Qjm8EMPIw72O8EtZw7XBNiSTmv_q01c,2667
52
+ zscaler/zpa/connectors.py,sha256=bjnQuFl7iNxRQttPDv-Z6lnfGyskto_9NDFIcIJLS-s,20602
53
+ zscaler/zpa/emergency_access.py,sha256=a769aIg0d-eL7UImZfkcCIxCrO3jVuIrh35BISXfEbA,6293
54
+ zscaler/zpa/errors.py,sha256=Hj_ACGQTUJDJmOZXlQnpbh9kldNeX2_SLkJV1xtMI8k,844
55
+ zscaler/zpa/idp.py,sha256=5aWh2fzd0Mc8Ctm07IfBfy3p5i7TW4Gsq28cc_jNyMg,2764
56
+ zscaler/zpa/inspection.py,sha256=IvICQWanzfY5XermKr46ZnmkDkGmSd0kxp6QQ7dKihs,34889
57
+ zscaler/zpa/isolation_profile.py,sha256=A8m2zeoxfXVkAAvaC6Hq5V9YOXYJi6nqUt-YeKgKgw8,3206
58
+ zscaler/zpa/lss.py,sha256=YW88W6CZZoHTeX7KdGSxhNabBeRpgO9dURPaTx7izTI,21471
59
+ zscaler/zpa/machine_groups.py,sha256=wtagZaftkxkDof-FuHvhSc0shPKSGcEK2lRdCSjF0DI,2734
60
+ zscaler/zpa/policies.py,sha256=6BUQFwr8XaHJoEuRq4Lt212s9vAD8eOzpJIyPunuqNc,30654
61
+ zscaler/zpa/posture_profiles.py,sha256=N6IZarDVV51Uk12Pk0-uTUGuHBBXYyfv2Afo-sAh0D0,4339
62
+ zscaler/zpa/privileged_remote_access.py,sha256=L2K77jjcE88fH6yXjIPy1i79j8KgIsTU8fPi622rqxc,32581
63
+ zscaler/zpa/provisioning.py,sha256=9ydpSnYCNkk6zUxiH1nOJ8NxEIe0rWrctN8J1CT-vs4,9995
64
+ zscaler/zpa/saml_attributes.py,sha256=kin_p-Fw-xTM8meutJ50qByP3oXYwJo4LutVib_zEYQ,3678
65
+ zscaler/zpa/scim_attributes.py,sha256=3nmQg2xi1NSEKvvlGortizcTuJPgrZAW8Sx5diufHVA,4194
66
+ zscaler/zpa/scim_groups.py,sha256=n8fbkFI6ySLfxXzDcEc1B8_Qg19Ssx-nxzphgDXkoCM,5063
67
+ zscaler/zpa/segment_groups.py,sha256=PEvS0GVPuHbFsxuXRkbmsQaowKP_WkjTPwB1Usw0CPg,6215
68
+ zscaler/zpa/server_groups.py,sha256=zKTBIX4ZBYOecyIFjsrLexZrg8c3Px7c6QHV5_GNPRc,7858
69
+ zscaler/zpa/servers.py,sha256=n9JX7Re71j_aqcd9k4Q9FwTwd4WKyte-kbwfMKZXaFI,6513
70
+ zscaler/zpa/service_edges.py,sha256=38xjarYV-EYMeFLSWkvugHFleKLTgXiNECksIKoN82g,15606
71
+ zscaler/zpa/trusted_networks.py,sha256=lGEVi_NHJUkwM3SJbK4jLRSFAElBLxAnmbiJCsBRSpA,4399
72
+ zscaler_sdk_python-0.1.0.dist-info/LICENSE.md,sha256=PsKhqhGwHHCdmu9iI_4vmqcfXY0bJJi8rgpgGaNOhR8,1113
73
+ zscaler_sdk_python-0.1.0.dist-info/METADATA,sha256=eQ_BIdKtq_PG-jMBJ0RNkpA1hVsJGYzua5p3Di7cNI0,11700
74
+ zscaler_sdk_python-0.1.0.dist-info/WHEEL,sha256=DZajD4pwLWue70CAfc7YaxT1wLUciNBvN_TTcvXpltE,110
75
+ zscaler_sdk_python-0.1.0.dist-info/top_level.txt,sha256=lqy3vKlb4AKAJL5UkTmOk6CIGGBa1WGpJIRNP-3_8Xw,8
76
+ zscaler_sdk_python-0.1.0.dist-info/RECORD,,
@@ -0,0 +1,6 @@
1
+ Wheel-Version: 1.0
2
+ Generator: bdist_wheel (0.43.0)
3
+ Root-Is-Purelib: true
4
+ Tag: py2-none-any
5
+ Tag: py3-none-any
6
+
@@ -0,0 +1 @@
1
+ zscaler