zscaler-sdk-python 0.1.3__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 (75) hide show
  1. zscaler/__init__.py +35 -0
  2. zscaler/cache/__init__.py +0 -0
  3. zscaler/cache/cache.py +105 -0
  4. zscaler/cache/no_op_cache.py +66 -0
  5. zscaler/cache/zscaler_cache.py +159 -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 +21 -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 +37 -0
  16. zscaler/user_agent.py +21 -0
  17. zscaler/utils.py +546 -0
  18. zscaler/zia/__init__.py +629 -0
  19. zscaler/zia/activate.py +51 -0
  20. zscaler/zia/admin_and_role_management.py +336 -0
  21. zscaler/zia/apptotal.py +71 -0
  22. zscaler/zia/audit_logs.py +93 -0
  23. zscaler/zia/authentication_settings.py +94 -0
  24. zscaler/zia/client.py +88 -0
  25. zscaler/zia/cloud_apps.py +402 -0
  26. zscaler/zia/device_management.py +90 -0
  27. zscaler/zia/dlp.py +772 -0
  28. zscaler/zia/errors.py +37 -0
  29. zscaler/zia/firewall.py +1064 -0
  30. zscaler/zia/forwarding_control.py +267 -0
  31. zscaler/zia/isolation_profile.py +83 -0
  32. zscaler/zia/labels.py +178 -0
  33. zscaler/zia/locations.py +645 -0
  34. zscaler/zia/sandbox.py +201 -0
  35. zscaler/zia/security.py +232 -0
  36. zscaler/zia/ssl_inspection.py +169 -0
  37. zscaler/zia/traffic.py +819 -0
  38. zscaler/zia/url_categories.py +422 -0
  39. zscaler/zia/url_filtering.py +306 -0
  40. zscaler/zia/users.py +378 -0
  41. zscaler/zia/web_dlp.py +291 -0
  42. zscaler/zia/workload_groups.py +58 -0
  43. zscaler/zia/zpa_gateway.py +179 -0
  44. zscaler/zpa/README.md +40 -0
  45. zscaler/zpa/__init__.py +655 -0
  46. zscaler/zpa/app_segments.py +317 -0
  47. zscaler/zpa/app_segments_inspection.py +295 -0
  48. zscaler/zpa/app_segments_pra.py +296 -0
  49. zscaler/zpa/certificates.py +230 -0
  50. zscaler/zpa/client.py +113 -0
  51. zscaler/zpa/cloud_connector_groups.py +75 -0
  52. zscaler/zpa/connectors.py +500 -0
  53. zscaler/zpa/emergency_access.py +170 -0
  54. zscaler/zpa/errors.py +37 -0
  55. zscaler/zpa/idp.py +83 -0
  56. zscaler/zpa/inspection.py +968 -0
  57. zscaler/zpa/isolation_profile.py +85 -0
  58. zscaler/zpa/lss.py +544 -0
  59. zscaler/zpa/machine_groups.py +79 -0
  60. zscaler/zpa/policies.py +824 -0
  61. zscaler/zpa/posture_profiles.py +120 -0
  62. zscaler/zpa/privileged_remote_access.py +827 -0
  63. zscaler/zpa/provisioning.py +262 -0
  64. zscaler/zpa/saml_attributes.py +96 -0
  65. zscaler/zpa/scim_attributes.py +115 -0
  66. zscaler/zpa/scim_groups.py +133 -0
  67. zscaler/zpa/segment_groups.py +183 -0
  68. zscaler/zpa/server_groups.py +211 -0
  69. zscaler/zpa/servers.py +198 -0
  70. zscaler/zpa/service_edges.py +388 -0
  71. zscaler/zpa/trusted_networks.py +125 -0
  72. zscaler_sdk_python-0.1.3.dist-info/LICENSE.md +21 -0
  73. zscaler_sdk_python-0.1.3.dist-info/METADATA +362 -0
  74. zscaler_sdk_python-0.1.3.dist-info/RECORD +75 -0
  75. zscaler_sdk_python-0.1.3.dist-info/WHEEL +4 -0
@@ -0,0 +1,362 @@
1
+ Metadata-Version: 2.1
2
+ Name: zscaler-sdk-python
3
+ Version: 0.1.3
4
+ Summary: Official Python SDK for the Zscaler Products (Beta)
5
+ Home-page: https://github.com/zscaler/zscaler-sdk-python
6
+ License: MIT
7
+ Keywords: zscaler,sdk,zpa,zia,zdx,zcc,zcon
8
+ Author: Zscaler, Inc.
9
+ Author-email: devrel@zscaler.com
10
+ Requires-Python: >=3.8,<4.0
11
+ Classifier: Development Status :: 4 - Beta
12
+ Classifier: Intended Audience :: Developers
13
+ Classifier: License :: OSI Approved :: MIT License
14
+ Classifier: Operating System :: OS Independent
15
+ Classifier: Programming Language :: Python :: 3
16
+ Classifier: Programming Language :: Python :: 3.8
17
+ Classifier: Programming Language :: Python :: 3.9
18
+ Classifier: Programming Language :: Python :: 3.10
19
+ Classifier: Programming Language :: Python :: 3.11
20
+ Classifier: Programming Language :: Python :: 3.12
21
+ Classifier: Topic :: Security
22
+ Classifier: Topic :: Software Development :: Libraries :: Python Modules
23
+ Provides-Extra: dev
24
+ Requires-Dist: aenum ; extra == "dev"
25
+ Requires-Dist: arrow
26
+ Requires-Dist: black (>=24.4.1,<25.0.0) ; extra == "dev"
27
+ Requires-Dist: certifi
28
+ Requires-Dist: charset-normalizer
29
+ Requires-Dist: flake8
30
+ Requires-Dist: flatdict
31
+ Requires-Dist: idna
32
+ Requires-Dist: pycryptodomex
33
+ Requires-Dist: pydash ; extra == "dev"
34
+ Requires-Dist: python-box (>=5.4,<6.0)
35
+ Requires-Dist: python-dateutil
36
+ Requires-Dist: pytz
37
+ Requires-Dist: pyyaml
38
+ Requires-Dist: requests
39
+ Requires-Dist: responses
40
+ Requires-Dist: restfly
41
+ Requires-Dist: six
42
+ Requires-Dist: urllib3
43
+ Requires-Dist: xmltodict
44
+ Requires-Dist: yarl
45
+ Project-URL: Bug Tracker, https://github.com/zscaler/zscaler-sdk-python/issues
46
+ Project-URL: Documentation, https://zscaler-sdk-python.readthedocs.io
47
+ Project-URL: Repository, https://github.com/zscaler/zscaler-sdk-python
48
+ Description-Content-Type: text/markdown
49
+
50
+ # Official Python SDK for the Zscaler Products (Beta)
51
+
52
+ [![PyPI - Downloads](https://img.shields.io/pypi/dw/zscaler-sdk-python)](https://pypistats.org/packages/zscaler-sdk-python)
53
+ [![License](https://img.shields.io/github/license/zscaler/zscaler-sdk-python.svg)](https://github.com/zscaler/zscaler-sdk-python)
54
+ [![Documentation Status](https://readthedocs.org/projects/zscaler-sdk-python/badge/?version=latest)](https://zscaler-sdk-python.readthedocs.io/en/latest/?badge=latest)
55
+ [![Latest version released on PyPi](https://img.shields.io/pypi/v/zscaler-sdk-python.svg)](https://pypi.org/project/zscaler-sdk-python)
56
+ [![PyPI pyversions](https://img.shields.io/pypi/pyversions/zscaler-sdk-python.svg)](https://pypi.python.org/pypi/zscaler-sdk-python/)
57
+ [![Zscaler Community](https://img.shields.io/badge/zscaler-community-blue)](https://community.zscaler.com/)
58
+
59
+ ## Support Disclaimer
60
+
61
+ -> **Disclaimer:** Please refer to our [General Support Statement](docsrc/zs/guides/support.rst) before proceeding with the use of this provider. You can also refer to our [troubleshooting guide](docsrc/zs/guides/troubleshooting.rst) for guidance on typical problems.
62
+
63
+ ## Zscaler Python SDK Overview
64
+
65
+ The Zscaler SDK for Python includes functionality to accelerate development with [Python](https://www.python.org/) several Zscaler services such as:
66
+
67
+ * [Zscaler Internet Access (ZIA)](https://help.zscaler.com/zia/getting-started-zia-api)
68
+ * [Zscaler Private Access (ZPA)](https://help.zscaler.com/zpa/getting-started-zpa-api)
69
+ * [Documentation](http://zscaler-sdk-python.readthedocs.io)
70
+
71
+ Each package is supportedd by an individual and robust HTTP client designed to handle failures on different levels by performing intelligent retries.
72
+
73
+ **Beta:** This SDK is supported for production use cases, but we do expect future releases to have some interface changes; see [Interface stability](#interface-stability).
74
+ We are keen to hear feedback from you on these SDKs. Please [file issues](https://github.com/zscaler/zscaler-sdk-python/issues), and we will address them.
75
+
76
+ ## Contents
77
+
78
+ - [Getting Started](#getting-started)
79
+ - [Usage](#usage)
80
+ - [Authentication](#authentication)
81
+ - [Pagination](#pagination)
82
+ - [Logging](#logging)
83
+ - [Rate Limiting](#rate-limiting)
84
+ - [Environment variables](#environment-variables)
85
+ - [Building the SDK](#building-the-sdk)
86
+ - [Interface stability](#interface-stability)
87
+ - [Need help?](#need-help)
88
+ - [Contributing](#contributing)
89
+
90
+ > Requires Python version 3.8.0 or higher.
91
+
92
+ ## Getting started<a id="getting-started"></a>
93
+
94
+ To install the Zscaler Python SDK in your project:
95
+ 1. Please install Zscaler SDK for Python via `pip install zscaler-sdk-python` and instantiate the respective client based on your project usage:
96
+ - `ZIAClientHelper`
97
+ - `ZPAClientHelper`
98
+
99
+ Zscaler SDK for Python is compatible with Python 3.7 _(until [June 2023](https://devguide.python.org/versions/))_, 3.8, 3.9, 3.10, and 3.11.
100
+
101
+ The upgrade to the latest version of this SDK can be done by executing the following command:
102
+ ```python
103
+ %pip install --upgrade zscaler-sdk-python
104
+ ```
105
+ followed by
106
+ ```python
107
+ dbutils.library.restartPython()
108
+ ```
109
+
110
+ ## Authentication<a id="authentication"></a>
111
+
112
+ Each Zscaler product has separate developer documentation and authentication methods. In this section you will find
113
+
114
+ 1. Credentials that are hard-coded into configuration arguments.
115
+
116
+ :warning: **Caution**: Zscaler does not recommend hard-coding credentials into arguments, as they can be exposed in plain text in version control systems. Use environment variables instead.
117
+
118
+ ### ZIA native authentication
119
+
120
+ - For authentication via Zscaler Internet Access, you must provide `username`, `password`, `api_key` and `cloud`
121
+
122
+ The ZIA Cloud is identified by several cloud name prefixes, which determines which API endpoint the requests should be sent to. The following cloud environments are supported:
123
+
124
+ * `zscaler`
125
+ * `zscalerone`
126
+ * `zscalertwo`
127
+ * `zscalerthree`
128
+ * `zscloud`
129
+ * `zscalerbeta`
130
+ * `zscalergov`
131
+ * `zscalerten`
132
+ * `zspreview`
133
+
134
+ ### Environment variables
135
+
136
+ You can provide credentials via the `ZIA_USERNAME`, `ZIA_PASSWORD`, `ZIA_API_KEY`, `ZIA_CLOUD` environment variables, representing your ZIA `username`, `password`, `api_key` and `cloud` respectively.
137
+
138
+ | Argument | Description | Environment variable |
139
+ |--------------|-------------|-------------------|
140
+ | `username` | _(String)_ A string that contains the email ID of the API admin.| `ZIA_USERNAME` |
141
+ | `password` | _(String)_ A string that contains the password for the API admin.| `ZIA_PASSWORD` |
142
+ | `api_key` | _(String)_ A string that contains the obfuscated API key (i.e., the return value of the obfuscateApiKey() method).| `ZIA_API_KEY` |
143
+ | `cloud` | _(String)_ The host and basePath for the cloud services API is `$zsapi.<Zscaler Cloud Name>/api/v1`.| `ZIA_CLOUD` |
144
+
145
+ ### ZPA native authentication
146
+
147
+ - For authentication via Zscaler Private Access, you must provide `client_id`, `client_secret`, `customer_id` and `cloud`
148
+
149
+ The ZPA Cloud is identified by several cloud name prefixes, which determines which API endpoint the requests should be sent to. The following cloud environments are supported:
150
+
151
+ * `PRODUCTION`
152
+ * `ZPATWO`
153
+ * `BETA`
154
+ * `GOV`
155
+ * `GOVUS`
156
+
157
+ ### Environment variables
158
+
159
+ You can provide credentials via the `ZPA_CLIENT_ID`, `ZPA_CLIENT_SECRET`, `ZPA_CUSTOMER_ID`, `ZPA_CLOUD` environment variables, representing your ZPA `client_id`, `client_secret`, `customer_id` and `cloud` of your ZPA account, respectively.
160
+
161
+ ~> **NOTE** `ZPA_CLOUD` environment variable is required, and is used to identify the correct API gateway where the API requests should be forwarded to.
162
+
163
+ | Argument | Description | Environment variable |
164
+ |--------------|-------------|-------------------|
165
+ | `client_id` | _(String)_ The ZPA API client ID generated from the ZPA console.| `ZPA_CLIENT_ID` |
166
+ | `client_secret` | _(String)_ The ZPA API client secret generated from the ZPA console.| `ZPA_CLIENT_SECRET` |
167
+ | `customer_id` | _(String)_ The ZPA tenant ID found in the Administration > Company menu in the ZPA console.| `ZPA_CUSTOMER_ID` |
168
+ | `cloud` | _(String)_ The Zscaler cloud for your tenancy.| `ZPA_CLOUD` |
169
+
170
+ ## Usage<a id="usage"></a>
171
+
172
+ 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.
173
+
174
+ ### Quick ZIA Example
175
+
176
+ ```python
177
+ from zscaler import ZIAClientHelper
178
+ from pprint import pprint
179
+
180
+ zia = ZIAClientHelper(username='ZIA_USERNAME', password='ZIA_PASSWORD', api_key='ZIA_API_KEY', cloud='ZIA_CLOUD')
181
+ for user in zia.users.list_users():
182
+ pprint(user)
183
+ ```
184
+
185
+ ### Quick ZPA Example
186
+
187
+ ```python
188
+ from zscaler import ZPAClientHelper
189
+ from pprint import pprint
190
+
191
+ zpa = ZPAClientHelper(client_id='ZPA_CLIENT_ID', client_secret='ZPA_CLIENT_SECRET', customer_id='ZPA_CUSTOMER_ID', cloud='ZPA_CLOUD')
192
+ for app_segment in zpa.app_segments.list_segments():
193
+ pprint(app_segment)
194
+ ```
195
+
196
+ ~> **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`.
197
+
198
+ ## Pagination<a id="pagination"></a>
199
+
200
+ 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.
201
+
202
+ ### Example of Iterating Over Paginated Results
203
+
204
+ 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.
205
+
206
+ ```python
207
+ from zscaler import ZPAClientHelper
208
+ from pprint import pprint
209
+
210
+ # Initialize the client
211
+ zpa = ZPAClientHelper(client_id=CLIENT_ID, client_secret=CLIENT_SECRET, customer_id=CUSTOMER_ID, cloud=CLOUD)
212
+
213
+ for apps in zpa.app_segments.list_segments():
214
+ pprint(apps)
215
+ ```
216
+
217
+ ### Customizing Pagination Parameters
218
+
219
+ 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
220
+
221
+ * `max_pages`: controls the number of items fetched per API call (per page).
222
+ * `max_items`: controls the total number of items to retrieve across all pages.
223
+
224
+ ```python
225
+ from zscaler import ZPAClientHelper
226
+ from pprint import pprint
227
+
228
+ # Initialize the client
229
+ zpa = ZPAClientHelper(client_id=CLIENT_ID, client_secret=CLIENT_SECRET, customer_id=CUSTOMER_ID, cloud=CLOUD)
230
+
231
+ pagination_params = {
232
+ 'max_pages': 1,
233
+ 'max_items': 5
234
+ }
235
+
236
+ # Fetch data using custom pagination settings
237
+ segments = zpa.app_segments.list_segments(**pagination_params)
238
+ for segment in segments:
239
+ pprint(segment)
240
+ ```
241
+
242
+ ### Efficient Pagination Handling
243
+
244
+ For more details on each pagination parameter see:
245
+ [ZPA Pagination Parameters](zscaler/zpa/README.md)
246
+ [ZIA Pagination Parameters](zscaler/zia/README.md)
247
+
248
+ ## Logging<a id="logging"></a>
249
+
250
+ The Zscaler SDK Python, provides robust logging for debug purposes.
251
+ Logs are disabled by default and should be enabled explicitly via custom environment variable:
252
+
253
+ * `ZSCALER_SDK_LOG` - Turn on logging
254
+ * `ZSCALER_SDK_VERBOSE` - Turn on logging in verbose mode
255
+
256
+ ```sh
257
+ export ZSCALER_SDK_LOG=true
258
+ export ZSCALER_SDK_VERBOSE=true
259
+ ```
260
+
261
+ **NOTE**: DO NOT SET DEBUG LEVEL IN PRODUCTION!
262
+
263
+ 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.
264
+
265
+ What it being logged? `requests`, `responses`, `http errors`, `caching responses`.
266
+
267
+ ## Environment variables<a id="environment-variables"></a>
268
+
269
+ 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:
270
+
271
+ - `ZSCALER_CLIENT_CACHE_ENABLED` - Enable or disable the caching mechanism within the clien
272
+ - `ZSCALER_CLIENT_CACHE_DEFAULT_TTL` - Duration (in seconds) that cached data remains valid. By default data is cached in memory for `3600` seconds.
273
+ - `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`)
274
+ - `ZSCALER_SDK_LOG` - Turn on logging
275
+ - `ZSCALER_SDK_VERBOSE` - Turn on logging in verbose mode
276
+
277
+ ## Rate Limiting<a id="rate-limiting"></a>
278
+
279
+ 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.
280
+ Please see:
281
+ * [ZPA Rate Limiting][rate-limiting-zpa] for rate limiting requirements.
282
+ * [ZIA Rate Limiting][rate-limiting-zia] for a complete list of which endpoints are rate limited.
283
+
284
+ 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.
285
+
286
+ ### Built-In Retry
287
+
288
+ 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`.
289
+
290
+ Retry Conditions: The client for both ZPA and ZIA retries a request under the following conditions:
291
+
292
+ * 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.
293
+
294
+ * Exceptions during request execution: Any requests.RequestException encountered during the request triggers a retry, except on the last attempt, where the exception is raised.
295
+
296
+ ## Building the SDK<a id="building-the-sdk"></a>
297
+
298
+ 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:
299
+
300
+ - Clone the repo
301
+ - Run `make build:dist` from the root of the project (assuming Python is installed)
302
+ - Ensure tests run succesfully by executing `make test-simple`
303
+ - Install `tox` if not installed already using: `pip install tox`.
304
+ - Run tests using `tox` in the root directory of the project.
305
+
306
+ ## Interface stability<a id="interface-stability"></a>
307
+
308
+ Zscaler is actively working on stabilizing the Zscaler SDK for Python's interfaces.
309
+ You are highly encouraged to pin the exact dependency version and read the [changelog](https://github.com/zscaler/zscaler-sdk-python/blob/master/CHANGELOG.md)
310
+ where Zscaler documents the changes. Zscaler may have minor [documented](https://github.com/zscaler/zscaler-sdk-python/blob/master/CHANGELOG.md)
311
+ backward-incompatible changes, such as renaming some type names to bring more consistency.
312
+
313
+ ## Contributing<a id="contributing"></a>
314
+
315
+ 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.
316
+
317
+ [zenith]: https://community.zscaler.com/
318
+ [zscaler-support]: https://help.zscaler.com/contact-support
319
+ [github-issues]: https://github.com/zscaler/zscaler-sdk-python/issues
320
+ [rate-limiting-zpa]: https://help.zscaler.com/zpa/understanding-rate-limiting
321
+ [rate-limiting-zia]: https://help.zscaler.com/zia/understanding-rate-limiting
322
+
323
+ ## Need help?<a id="need-help"></a>
324
+
325
+ If you run into problems using the SDK, you can:
326
+
327
+ - Ask questions on the [Zenith Community][zenith]
328
+ - Post [issues on GitHub][github-issues] (for code errors)
329
+ - Support [customer support portal][zscaler-support]
330
+
331
+ Contributors
332
+ ------------
333
+
334
+ - William Guilherme - [willguibr](https://github.com/willguibr)
335
+ - Eddie Parra - [eparra](https://github.com/eparra)
336
+ - Paul Abbot - [abbottp](https://github.com/abbottp)
337
+
338
+ ## License
339
+ MIT License
340
+
341
+ =======
342
+
343
+ Copyright (c) 2023 [Zscaler](https://github.com/zscaler)
344
+
345
+ Permission is hereby granted, free of charge, to any person obtaining a copy
346
+ of this software and associated documentation files (the "Software"), to deal
347
+ in the Software without restriction, including without limitation the rights
348
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
349
+ copies of the Software, and to permit persons to whom the Software is
350
+ furnished to do so, subject to the following conditions:
351
+
352
+ The above copyright notice and this permission notice shall be included in all
353
+ copies or substantial portions of the Software.
354
+
355
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
356
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
357
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
358
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
359
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
360
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
361
+ SOFTWARE.
362
+
@@ -0,0 +1,75 @@
1
+ zscaler/__init__.py,sha256=7OwLaxj8-W99vLbekVrTTrYUeQwQru1WyV_HgN17Q-4,1278
2
+ zscaler/cache/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
3
+ zscaler/cache/cache.py,sha256=tsDhf-SSF6MRA68CVIyjMdjaK9XndoSPf8qRqTTXsAw,3195
4
+ zscaler/cache/no_op_cache.py,sha256=CQu_61XhP9VhPj1Z9qLUyvDOkqpnyPAXMcLPf3hMoxM,1479
5
+ zscaler/cache/zscaler_cache.py,sha256=YwEK8lNzijix0-rkOsLvMPfjh_x1tCF30VU_KWHX_ug,4967
6
+ zscaler/constants.py,sha256=WDclU-MTk3MfJw6qZePPTuvQF7hFRy1VGGrLdFU0Ss0,738
7
+ zscaler/errors/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
8
+ zscaler/errors/error.py,sha256=A9W-WYfvXQShRqFZXYT_VXKYboAMMNPajtUUcPCPOrI,172
9
+ zscaler/errors/http_error.py,sha256=sPz9jyyb8_zd1OegNYxqwkWZfjCLsI_M-kjf2CJ5vPY,638
10
+ zscaler/errors/zscaler_api_error.py,sha256=d7z4V6_8c24k9GW24NI-FkXayH1D6zv--atSwj9AjoM,628
11
+ zscaler/exceptions/__init__.py,sha256=NnbvMschucQKxWiuwtFtRQIZx2o0uwnoAmGo_YqF_-E,63
12
+ zscaler/exceptions/exceptions.py,sha256=G5P8eOiiOsk940_K4AwKYVZ4qYZMkX9OzMmpSGWqxB4,2025
13
+ zscaler/logger.py,sha256=Xfhuv1adJ0p0QknCUqw55i7HRER1Aq2JSwrBsZuA3Xw,2099
14
+ zscaler/ratelimiter/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
15
+ zscaler/ratelimiter/ratelimiter.py,sha256=9iq4fmvLk5t2Q37FvAXzUXXMGllClcdydKqd1AHhyJo,1473
16
+ zscaler/user_agent.py,sha256=QIK9j4zCdAuhu5YYQ78MbE7Iem0cV6jd3hJor7J2cMY,639
17
+ zscaler/utils.py,sha256=9i_pS55ujGjseCjGg7G2WSu3gDxTcuGnnYPd90tefro,19073
18
+ zscaler/zia/__init__.py,sha256=nLEmyYH2uS5H5-ExhtrSVO8w-fK_RfbD7b-HNAojT1s,21568
19
+ zscaler/zia/activate.py,sha256=TtUs0q8ZzQMR-wuEz5m8Y1x1On4v28PBufFakonbfDk,1534
20
+ zscaler/zia/admin_and_role_management.py,sha256=TqSsSF2G0lrW0xl3KuoqARhskDivRY4ozXJQOUOIBB0,14194
21
+ zscaler/zia/apptotal.py,sha256=fIKAHvKITfAE7oAQ5KF_lACswVguSNVzo7TLs2kMo1I,2372
22
+ zscaler/zia/audit_logs.py,sha256=ee4X5ljstcOzsQT7cJK7QN-aykP2p7HuODuLMSfrBA0,2992
23
+ zscaler/zia/authentication_settings.py,sha256=w5qJq-xFfaNgxjNnqlZ99lN8rxumscCNN0otMOgJY3o,3140
24
+ zscaler/zia/client.py,sha256=ULSYnpoOa3Bl0cOXEcB3B4NcTd24LzZKpFVwYTImpeI,2754
25
+ zscaler/zia/cloud_apps.py,sha256=n-flnYNN6WwvkesfayolR2xmQHxYU_FrqQETGYnmCW8,18513
26
+ zscaler/zia/device_management.py,sha256=kO6ZTQwedOCKwcpO52RnF_oZRmTbvz3J8xO80jclsE8,2872
27
+ zscaler/zia/dlp.py,sha256=UKmtliTfTtQee1I71PVWT4E983mkbCOp0P7HaU_yAY8,27473
28
+ zscaler/zia/errors.py,sha256=UyDWvN39SBImtlE6HumYLC3D7jaTQ_KtZr5DJ3dWV6E,794
29
+ zscaler/zia/firewall.py,sha256=W50V5cEP6-Ly65x3ofpdS3GqOr_WcBr9aG97rof4jWs,39908
30
+ zscaler/zia/forwarding_control.py,sha256=Cf6BJxfcbkqI1ZzIPaVHPDGKsYY1hatEJSvz-GyJ_BU,11686
31
+ zscaler/zia/isolation_profile.py,sha256=APlSi-mkI8WrXxBWBr5c0LLiv7rPKQ1sd1LEFik6i90,2909
32
+ zscaler/zia/labels.py,sha256=JAeZy4VgB5ogFS_5x0N3A3znyEryuT2vMriICAeMOBg,5835
33
+ zscaler/zia/locations.py,sha256=El31sfBYGIRLbofZ2Dv11IIWXNGMASmC9x1ON8-w5dU,30762
34
+ zscaler/zia/sandbox.py,sha256=hfDEzoWesmfPW7GhUOX5nn_defizur_Sm6plT4w-ysU,6724
35
+ zscaler/zia/security.py,sha256=a2W1w3hRKn90iGdtmI4VVuZhYIKrhnDCm-10uinjSvU,6792
36
+ zscaler/zia/ssl_inspection.py,sha256=Qrq0rxYx4M1GVKVBJJjA41U-08-OQKpO2Rwi_QXBPPQ,5298
37
+ zscaler/zia/traffic.py,sha256=wcEZRPwNgtJm9hzb5mT0ic7MaoVuLUPJ4MUkq2tyvPo,30729
38
+ zscaler/zia/url_categories.py,sha256=Yk7AcxUB7_eWXwmYGCesR2Qx8sj3g74RRjUIxV9Xr10,14484
39
+ zscaler/zia/url_filtering.py,sha256=-d66Q_69jWdVfBJ7CCt3YSI6deq5fpsEPE5Cwfzi2YA,14319
40
+ zscaler/zia/users.py,sha256=M5spzt7cmlY50sDjH3Rpkf9peYJuX15hjoSMG1oz0ac,13735
41
+ zscaler/zia/web_dlp.py,sha256=IzCc2s_qvnwGqKk-TG3FtkRpGlsqPMC4UVeIhIwXnnM,12376
42
+ zscaler/zia/workload_groups.py,sha256=kB246OyIZZEr2NEzg_xSWpKhFRsvphoIDFslJFJXrng,1897
43
+ zscaler/zia/zpa_gateway.py,sha256=A7FNyRugND9e6FpuAqbKKjIBQW6sW_q0W9MhtqxPYF8,6842
44
+ zscaler/zpa/README.md,sha256=4F5fCBho60D8ROfmIXaIh8XTryfesBHlH-jR2Z54B2w,2709
45
+ zscaler/zpa/__init__.py,sha256=oeDgh-np_GZw_If-ABeU8f652ewgpjWfzQ2-HKFfM00,24300
46
+ zscaler/zpa/app_segments.py,sha256=lwv9iHzBw61zZwJrsnWdaSWaRpjGDEkqqQVfpqV66Og,13187
47
+ zscaler/zpa/app_segments_inspection.py,sha256=B8dumFwUQchQ2JfpzSFvCyZAPml6YQSCgIG14M02xSE,12445
48
+ zscaler/zpa/app_segments_pra.py,sha256=AkSpkvespW_u2jVUsAR0ppBT8YVh-7TUWvWT1VM2OPE,12019
49
+ zscaler/zpa/certificates.py,sha256=Gurd7dITc7sFvYtWRryilH7W3ke7DrSUHCIfvzvAKUo,7942
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=fvCTLFTK1hxm63J4xnp4wk_8h_YugkgbNcOkNJYiyNw,20370
53
+ zscaler/zpa/emergency_access.py,sha256=1oSeq6EeKCTT02C_wblyjS7MZhODPT4-jmKSwDAI4rk,6189
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=ZNCi0M26He3U47DphMHyzvjzWkcylLCuzIN7EMZJQNM,34309
57
+ zscaler/zpa/isolation_profile.py,sha256=JlrRe_S2ylOC8fqMqlsHaZNwijOF1qHFoGNC5uARj1U,3176
58
+ zscaler/zpa/lss.py,sha256=LTrEPbV94MAPQ2O91aZQLjuKBZ3f4o1BIK0qx3mZfaQ,21113
59
+ zscaler/zpa/machine_groups.py,sha256=wtagZaftkxkDof-FuHvhSc0shPKSGcEK2lRdCSjF0DI,2734
60
+ zscaler/zpa/policies.py,sha256=tRqs-xGHcqIUYHNqPUj_IvFIl_icUoTnGcFPnHffH9I,30350
61
+ zscaler/zpa/posture_profiles.py,sha256=A2uKDJR_iBZRKwCDAlS7t62SxTQw_vZCGieujUBrPnw,4317
62
+ zscaler/zpa/privileged_remote_access.py,sha256=8tAzfO5DmyH2NhmeZTDQmX4-Cy-NzqyvdrbiIWTREGU,32017
63
+ zscaler/zpa/provisioning.py,sha256=g2T2J4FSRJM4TOzEUdZyHd3z28i0uZ7nCjRbBhT4yk0,9887
64
+ zscaler/zpa/saml_attributes.py,sha256=egUwEPGR0FJCh9jbWlxdXstAF0UreuWWWKvPQMI_Ytc,3632
65
+ zscaler/zpa/scim_attributes.py,sha256=j_MKgLyb_VIxcf7li9H0iale4NXC5bi9RepgndKmTC0,4172
66
+ zscaler/zpa/scim_groups.py,sha256=1kYUaKWAfSw8H3b1q3ZsbtFguV-_Q2X2C8Ja_vEdOGQ,5041
67
+ zscaler/zpa/segment_groups.py,sha256=RaihEua40VeD3KGH0iSpkmylEfewRGjikH64Ea1ujjc,6103
68
+ zscaler/zpa/server_groups.py,sha256=Pdq4zgzbpmgoDpObEkr9aHjnVmmyxi_mqCdg15PZiqw,7776
69
+ zscaler/zpa/servers.py,sha256=-_lHxlT6UOuA9zF-ptFYmlxVNZhK9p8GIx6PsboBTyk,6477
70
+ zscaler/zpa/service_edges.py,sha256=RVeTZ5zWgWGtgH_TRdrSWy7v2uhPXb2oc-aN0wiQZHo,15428
71
+ zscaler/zpa/trusted_networks.py,sha256=z9z2Usr3TdcxFvOBN9rYpKh5tE6EGHTIjKbvS3E09Ew,4377
72
+ zscaler_sdk_python-0.1.3.dist-info/LICENSE.md,sha256=PsKhqhGwHHCdmu9iI_4vmqcfXY0bJJi8rgpgGaNOhR8,1113
73
+ zscaler_sdk_python-0.1.3.dist-info/METADATA,sha256=1hV_4tw4rFCcDsWBjCPHtnEwL8vADxX8MBv_usb6_5Y,17368
74
+ zscaler_sdk_python-0.1.3.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
75
+ zscaler_sdk_python-0.1.3.dist-info/RECORD,,
@@ -0,0 +1,4 @@
1
+ Wheel-Version: 1.0
2
+ Generator: poetry-core 1.9.0
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any