├── .flake8 ├── .github ├── ISSUE_TEMPLATE │ ├── PULL_REQUEST_TEMPLATE.md │ └── bug_report.md └── workflows │ └── build.yml ├── .pre-commit-config.yaml ├── .readthedocs.yaml ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── dev_requirements.txt ├── docs ├── .buildinfo ├── .nojekyll ├── _sources │ ├── index.rst.txt │ └── zs │ │ ├── zia │ │ ├── admins.rst.txt │ │ ├── audit_logs.rst.txt │ │ ├── config.rst.txt │ │ ├── index.rst.txt │ │ ├── locations.rst.txt │ │ ├── traffic.rst.txt │ │ └── users.rst.txt │ │ └── zpa │ │ ├── app_segments.rst.txt │ │ ├── certificates.rst.txt │ │ ├── cloud_connector_groups.rst.txt │ │ ├── connector_groups.rst.txt │ │ ├── idp.rst.txt │ │ ├── index.rst.txt │ │ ├── machine_groups.rst.txt │ │ ├── policies.rst.txt │ │ ├── posture_profiles.rst.txt │ │ ├── saml_attributes.rst.txt │ │ ├── scim_attributes.rst.txt │ │ ├── scim_groups.rst.txt │ │ ├── segment_groups.rst.txt │ │ ├── server_groups.rst.txt │ │ ├── servers.rst.txt │ │ └── trusted_networks.rst.txt ├── _static │ ├── alabaster.css │ ├── basic.css │ ├── css │ │ ├── badge_only.css │ │ ├── fonts │ │ │ ├── Roboto-Slab-Bold.woff │ │ │ ├── Roboto-Slab-Bold.woff2 │ │ │ ├── Roboto-Slab-Regular.woff │ │ │ ├── Roboto-Slab-Regular.woff2 │ │ │ ├── fontawesome-webfont.eot │ │ │ ├── fontawesome-webfont.svg │ │ │ ├── fontawesome-webfont.ttf │ │ │ ├── fontawesome-webfont.woff │ │ │ ├── fontawesome-webfont.woff2 │ │ │ ├── lato-bold-italic.woff │ │ │ ├── lato-bold-italic.woff2 │ │ │ ├── lato-bold.woff │ │ │ ├── lato-bold.woff2 │ │ │ ├── lato-normal-italic.woff │ │ │ ├── lato-normal-italic.woff2 │ │ │ ├── lato-normal.woff │ │ │ └── lato-normal.woff2 │ │ └── theme.css │ ├── custom.css │ ├── doctools.js │ ├── documentation_options.js │ ├── file.png │ ├── fonts │ │ ├── Inconsolata-Bold.ttf │ │ ├── Inconsolata-Regular.ttf │ │ ├── Inconsolata.ttf │ │ ├── Lato-Bold.ttf │ │ ├── Lato-Regular.ttf │ │ ├── Lato │ │ │ ├── lato-bold.eot │ │ │ ├── lato-bold.ttf │ │ │ ├── lato-bold.woff │ │ │ ├── lato-bold.woff2 │ │ │ ├── lato-bolditalic.eot │ │ │ ├── lato-bolditalic.ttf │ │ │ ├── lato-bolditalic.woff │ │ │ ├── lato-bolditalic.woff2 │ │ │ ├── lato-italic.eot │ │ │ ├── lato-italic.ttf │ │ │ ├── lato-italic.woff │ │ │ ├── lato-italic.woff2 │ │ │ ├── lato-regular.eot │ │ │ ├── lato-regular.ttf │ │ │ ├── lato-regular.woff │ │ │ └── lato-regular.woff2 │ │ ├── RobotoSlab-Bold.ttf │ │ ├── RobotoSlab-Regular.ttf │ │ ├── RobotoSlab │ │ │ ├── roboto-slab-v7-bold.eot │ │ │ ├── roboto-slab-v7-bold.ttf │ │ │ ├── roboto-slab-v7-bold.woff │ │ │ ├── roboto-slab-v7-bold.woff2 │ │ │ ├── roboto-slab-v7-regular.eot │ │ │ ├── roboto-slab-v7-regular.ttf │ │ │ ├── roboto-slab-v7-regular.woff │ │ │ └── roboto-slab-v7-regular.woff2 │ │ ├── fontawesome-webfont.eot │ │ ├── fontawesome-webfont.svg │ │ ├── fontawesome-webfont.ttf │ │ ├── fontawesome-webfont.woff │ │ └── fontawesome-webfont.woff2 │ ├── jquery-3.5.1.js │ ├── jquery.js │ ├── js │ │ ├── badge_only.js │ │ ├── html5shiv-printshiv.min.js │ │ ├── html5shiv.min.js │ │ ├── modernizr.min.js │ │ └── theme.js │ ├── language_data.js │ ├── minus.png │ ├── plus.png │ ├── pygments.css │ ├── searchtools.js │ ├── underscore-1.13.1.js │ └── underscore.js ├── genindex.html ├── google38a519c1999beafe.html ├── index.html ├── objects.inv ├── py-modindex.html ├── search.html ├── searchindex.js └── zs │ ├── zia │ ├── admins.html │ ├── audit_logs.html │ ├── config.html │ ├── index.html │ ├── locations.html │ ├── traffic.html │ └── users.html │ └── zpa │ ├── app_segments.html │ ├── certificates.html │ ├── cloud_connector_groups.html │ ├── connector_groups.html │ ├── idp.html │ ├── index.html │ ├── machine_groups.html │ ├── policies.html │ ├── posture_profiles.html │ ├── saml_attributes.html │ ├── scim_attributes.html │ ├── scim_groups.html │ ├── segment_groups.html │ ├── server_groups.html │ ├── servers.html │ └── trusted_networks.html ├── docsrc ├── Makefile ├── conf.py ├── index.rst ├── logo.svg └── zs │ ├── zcc │ ├── devices.rst │ ├── index.rst │ ├── secrets.rst │ └── session.rst │ ├── zcon │ ├── admin.rst │ ├── config.rst │ ├── connectors.rst │ ├── index.rst │ ├── locations.rst │ └── session.rst │ ├── zdx │ ├── admin.rst │ ├── apps.rst │ ├── devices.rst │ ├── index.rst │ ├── session.rst │ └── users.rst │ ├── zia │ ├── admin_and_role_management.rst │ ├── apptotal.rst │ ├── audit_logs.rst │ ├── cloud_apps.rst │ ├── config.rst │ ├── dlp.rst │ ├── firewall.rst │ ├── index.rst │ ├── locations.rst │ ├── rule_labels.rst │ ├── sandbox.rst │ ├── security.rst │ ├── session.rst │ ├── ssl_inspection.rst │ ├── traffic.rst │ ├── url_categories.rst │ ├── url_filters.rst │ ├── users.rst │ ├── vips.rst │ └── web_dlp.rst │ └── zpa │ ├── app_segments.rst │ ├── certificates.rst │ ├── cloud_connector_groups.rst │ ├── connectors.rst │ ├── idp.rst │ ├── index.rst │ ├── inspection.rst │ ├── lss.rst │ ├── machine_groups.rst │ ├── policies.rst │ ├── posture_profiles.rst │ ├── provisioning.rst │ ├── saml_attributes.rst │ ├── scim_attributes.rst │ ├── scim_groups.rst │ ├── segment_groups.rst │ ├── server_groups.rst │ ├── servers.rst │ ├── service_edges.rst │ ├── session.rst │ └── trusted_networks.rst ├── examples └── zia │ └── download_audit_logs │ └── zia_download_audit_logs.py ├── pyproject.toml ├── pyzscaler ├── __init__.py ├── utils.py ├── zcc │ ├── __init__.py │ ├── devices.py │ ├── secrets.py │ └── session.py ├── zcon │ ├── __init__.py │ ├── admin.py │ ├── config.py │ ├── connectors.py │ ├── locations.py │ └── session.py ├── zdx │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── devices.py │ ├── session.py │ └── users.py ├── zia │ ├── __init__.py │ ├── admin_and_role_management.py │ ├── apptotal.py │ ├── audit_logs.py │ ├── cloud_apps.py │ ├── config.py │ ├── dlp.py │ ├── firewall.py │ ├── labels.py │ ├── locations.py │ ├── sandbox.py │ ├── security.py │ ├── session.py │ ├── ssl_inspection.py │ ├── traffic.py │ ├── url_categories.py │ ├── url_filters.py │ ├── users.py │ ├── vips.py │ └── web_dlp.py └── zpa │ ├── __init__.py │ ├── app_segments.py │ ├── certificates.py │ ├── cloud_connector_groups.py │ ├── connectors.py │ ├── idp.py │ ├── inspection.py │ ├── lss.py │ ├── machine_groups.py │ ├── policies.py │ ├── posture_profiles.py │ ├── provisioning.py │ ├── saml_attributes.py │ ├── scim_attributes.py │ ├── scim_groups.py │ ├── segment_groups.py │ ├── server_groups.py │ ├── servers.py │ ├── service_edges.py │ ├── session.py │ └── trusted_networks.py ├── requirements.txt └── tests ├── __init__.py ├── conftest.py ├── test_pyzscaler.py ├── test_utils.py ├── zcc ├── conftest.py ├── test_zcc_devices.py ├── test_zcc_secrets.py └── test_zcc_session.py ├── zcon ├── conftest.py ├── test_zcon_admin.py ├── test_zcon_config.py ├── test_zcon_connectors.py ├── test_zcon_locations.py └── test_zcon_session.py ├── zdx ├── conftest.py ├── test_zdx_admin.py ├── test_zdx_apps.py ├── test_zdx_devices.py ├── test_zdx_session.py └── test_zdx_users.py ├── zia ├── conftest.py ├── test_admin_and_role_management.py ├── test_apptotal.py ├── test_audit_logs.py ├── test_cloud_apps.py ├── test_config.py ├── test_dlp.py ├── test_firewall.py ├── test_init.py ├── test_locations.py ├── test_rule_labels.py ├── test_sandbox.py ├── test_security.py ├── test_session.py ├── test_ssl_inspection.py ├── test_traffic.py ├── test_url_categories.py ├── test_url_filters.py ├── test_users.py ├── test_vips.py └── test_web_dlp.py └── zpa ├── conftest.py ├── test_zpa_app_segments.py ├── test_zpa_certificates.py ├── test_zpa_cloud_connector_groups.py ├── test_zpa_connectors.py ├── test_zpa_idp.py ├── test_zpa_inspection.py ├── test_zpa_lss.py ├── test_zpa_machine_groups.py ├── test_zpa_policies.py ├── test_zpa_posture_profiles.py ├── test_zpa_provisioning.py ├── test_zpa_saml_attributes.py ├── test_zpa_scim_attributes.py ├── test_zpa_scim_groups.py ├── test_zpa_segment_groups.py ├── test_zpa_server_groups.py ├── test_zpa_servers.py ├── test_zpa_service_edges.py ├── test_zpa_session.py └── test_zpa_trusted_networks.py /.flake8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/.flake8 -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/.github/ISSUE_TEMPLATE/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/.readthedocs.yaml -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/README.md -------------------------------------------------------------------------------- /dev_requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/dev_requirements.txt -------------------------------------------------------------------------------- /docs/.buildinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/docs/.buildinfo -------------------------------------------------------------------------------- /docs/.nojekyll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/_sources/index.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/docs/_sources/index.rst.txt -------------------------------------------------------------------------------- /docs/_sources/zs/zia/admins.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/docs/_sources/zs/zia/admins.rst.txt -------------------------------------------------------------------------------- /docs/_sources/zs/zia/audit_logs.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/docs/_sources/zs/zia/audit_logs.rst.txt -------------------------------------------------------------------------------- /docs/_sources/zs/zia/config.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/docs/_sources/zs/zia/config.rst.txt -------------------------------------------------------------------------------- /docs/_sources/zs/zia/index.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/docs/_sources/zs/zia/index.rst.txt -------------------------------------------------------------------------------- /docs/_sources/zs/zia/locations.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/docs/_sources/zs/zia/locations.rst.txt -------------------------------------------------------------------------------- /docs/_sources/zs/zia/traffic.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/docs/_sources/zs/zia/traffic.rst.txt -------------------------------------------------------------------------------- /docs/_sources/zs/zia/users.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/docs/_sources/zs/zia/users.rst.txt -------------------------------------------------------------------------------- /docs/_sources/zs/zpa/app_segments.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/docs/_sources/zs/zpa/app_segments.rst.txt -------------------------------------------------------------------------------- /docs/_sources/zs/zpa/certificates.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/docs/_sources/zs/zpa/certificates.rst.txt -------------------------------------------------------------------------------- /docs/_sources/zs/zpa/cloud_connector_groups.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/docs/_sources/zs/zpa/cloud_connector_groups.rst.txt -------------------------------------------------------------------------------- /docs/_sources/zs/zpa/connector_groups.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/docs/_sources/zs/zpa/connector_groups.rst.txt -------------------------------------------------------------------------------- /docs/_sources/zs/zpa/idp.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/docs/_sources/zs/zpa/idp.rst.txt -------------------------------------------------------------------------------- /docs/_sources/zs/zpa/index.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/docs/_sources/zs/zpa/index.rst.txt -------------------------------------------------------------------------------- /docs/_sources/zs/zpa/machine_groups.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/docs/_sources/zs/zpa/machine_groups.rst.txt -------------------------------------------------------------------------------- /docs/_sources/zs/zpa/policies.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/docs/_sources/zs/zpa/policies.rst.txt -------------------------------------------------------------------------------- /docs/_sources/zs/zpa/posture_profiles.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/docs/_sources/zs/zpa/posture_profiles.rst.txt -------------------------------------------------------------------------------- /docs/_sources/zs/zpa/saml_attributes.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/docs/_sources/zs/zpa/saml_attributes.rst.txt -------------------------------------------------------------------------------- /docs/_sources/zs/zpa/scim_attributes.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/docs/_sources/zs/zpa/scim_attributes.rst.txt -------------------------------------------------------------------------------- /docs/_sources/zs/zpa/scim_groups.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/docs/_sources/zs/zpa/scim_groups.rst.txt -------------------------------------------------------------------------------- /docs/_sources/zs/zpa/segment_groups.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/docs/_sources/zs/zpa/segment_groups.rst.txt -------------------------------------------------------------------------------- /docs/_sources/zs/zpa/server_groups.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/docs/_sources/zs/zpa/server_groups.rst.txt -------------------------------------------------------------------------------- /docs/_sources/zs/zpa/servers.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/docs/_sources/zs/zpa/servers.rst.txt -------------------------------------------------------------------------------- /docs/_sources/zs/zpa/trusted_networks.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/docs/_sources/zs/zpa/trusted_networks.rst.txt -------------------------------------------------------------------------------- /docs/_static/alabaster.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/docs/_static/alabaster.css -------------------------------------------------------------------------------- /docs/_static/basic.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/docs/_static/basic.css -------------------------------------------------------------------------------- /docs/_static/css/badge_only.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/docs/_static/css/badge_only.css -------------------------------------------------------------------------------- /docs/_static/css/fonts/Roboto-Slab-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/docs/_static/css/fonts/Roboto-Slab-Bold.woff -------------------------------------------------------------------------------- /docs/_static/css/fonts/Roboto-Slab-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/docs/_static/css/fonts/Roboto-Slab-Bold.woff2 -------------------------------------------------------------------------------- /docs/_static/css/fonts/Roboto-Slab-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/docs/_static/css/fonts/Roboto-Slab-Regular.woff -------------------------------------------------------------------------------- /docs/_static/css/fonts/Roboto-Slab-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/docs/_static/css/fonts/Roboto-Slab-Regular.woff2 -------------------------------------------------------------------------------- /docs/_static/css/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/docs/_static/css/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /docs/_static/css/fonts/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/docs/_static/css/fonts/fontawesome-webfont.svg -------------------------------------------------------------------------------- /docs/_static/css/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/docs/_static/css/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /docs/_static/css/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/docs/_static/css/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /docs/_static/css/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/docs/_static/css/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /docs/_static/css/fonts/lato-bold-italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/docs/_static/css/fonts/lato-bold-italic.woff -------------------------------------------------------------------------------- /docs/_static/css/fonts/lato-bold-italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/docs/_static/css/fonts/lato-bold-italic.woff2 -------------------------------------------------------------------------------- /docs/_static/css/fonts/lato-bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/docs/_static/css/fonts/lato-bold.woff -------------------------------------------------------------------------------- /docs/_static/css/fonts/lato-bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/docs/_static/css/fonts/lato-bold.woff2 -------------------------------------------------------------------------------- /docs/_static/css/fonts/lato-normal-italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/docs/_static/css/fonts/lato-normal-italic.woff -------------------------------------------------------------------------------- /docs/_static/css/fonts/lato-normal-italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/docs/_static/css/fonts/lato-normal-italic.woff2 -------------------------------------------------------------------------------- /docs/_static/css/fonts/lato-normal.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/docs/_static/css/fonts/lato-normal.woff -------------------------------------------------------------------------------- /docs/_static/css/fonts/lato-normal.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/docs/_static/css/fonts/lato-normal.woff2 -------------------------------------------------------------------------------- /docs/_static/css/theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/docs/_static/css/theme.css -------------------------------------------------------------------------------- /docs/_static/custom.css: -------------------------------------------------------------------------------- 1 | /* This file intentionally left blank. */ 2 | -------------------------------------------------------------------------------- /docs/_static/doctools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/docs/_static/doctools.js -------------------------------------------------------------------------------- /docs/_static/documentation_options.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/docs/_static/documentation_options.js -------------------------------------------------------------------------------- /docs/_static/file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/docs/_static/file.png -------------------------------------------------------------------------------- /docs/_static/fonts/Inconsolata-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/docs/_static/fonts/Inconsolata-Bold.ttf -------------------------------------------------------------------------------- /docs/_static/fonts/Inconsolata-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/docs/_static/fonts/Inconsolata-Regular.ttf -------------------------------------------------------------------------------- /docs/_static/fonts/Inconsolata.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/docs/_static/fonts/Inconsolata.ttf -------------------------------------------------------------------------------- /docs/_static/fonts/Lato-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/docs/_static/fonts/Lato-Bold.ttf -------------------------------------------------------------------------------- /docs/_static/fonts/Lato-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/docs/_static/fonts/Lato-Regular.ttf -------------------------------------------------------------------------------- /docs/_static/fonts/Lato/lato-bold.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/docs/_static/fonts/Lato/lato-bold.eot -------------------------------------------------------------------------------- /docs/_static/fonts/Lato/lato-bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/docs/_static/fonts/Lato/lato-bold.ttf -------------------------------------------------------------------------------- /docs/_static/fonts/Lato/lato-bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/docs/_static/fonts/Lato/lato-bold.woff -------------------------------------------------------------------------------- /docs/_static/fonts/Lato/lato-bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/docs/_static/fonts/Lato/lato-bold.woff2 -------------------------------------------------------------------------------- /docs/_static/fonts/Lato/lato-bolditalic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/docs/_static/fonts/Lato/lato-bolditalic.eot -------------------------------------------------------------------------------- /docs/_static/fonts/Lato/lato-bolditalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/docs/_static/fonts/Lato/lato-bolditalic.ttf -------------------------------------------------------------------------------- /docs/_static/fonts/Lato/lato-bolditalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/docs/_static/fonts/Lato/lato-bolditalic.woff -------------------------------------------------------------------------------- /docs/_static/fonts/Lato/lato-bolditalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/docs/_static/fonts/Lato/lato-bolditalic.woff2 -------------------------------------------------------------------------------- /docs/_static/fonts/Lato/lato-italic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/docs/_static/fonts/Lato/lato-italic.eot -------------------------------------------------------------------------------- /docs/_static/fonts/Lato/lato-italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/docs/_static/fonts/Lato/lato-italic.ttf -------------------------------------------------------------------------------- /docs/_static/fonts/Lato/lato-italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/docs/_static/fonts/Lato/lato-italic.woff -------------------------------------------------------------------------------- /docs/_static/fonts/Lato/lato-italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/docs/_static/fonts/Lato/lato-italic.woff2 -------------------------------------------------------------------------------- /docs/_static/fonts/Lato/lato-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/docs/_static/fonts/Lato/lato-regular.eot -------------------------------------------------------------------------------- /docs/_static/fonts/Lato/lato-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/docs/_static/fonts/Lato/lato-regular.ttf -------------------------------------------------------------------------------- /docs/_static/fonts/Lato/lato-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/docs/_static/fonts/Lato/lato-regular.woff -------------------------------------------------------------------------------- /docs/_static/fonts/Lato/lato-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/docs/_static/fonts/Lato/lato-regular.woff2 -------------------------------------------------------------------------------- /docs/_static/fonts/RobotoSlab-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/docs/_static/fonts/RobotoSlab-Bold.ttf -------------------------------------------------------------------------------- /docs/_static/fonts/RobotoSlab-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/docs/_static/fonts/RobotoSlab-Regular.ttf -------------------------------------------------------------------------------- /docs/_static/fonts/RobotoSlab/roboto-slab-v7-bold.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/docs/_static/fonts/RobotoSlab/roboto-slab-v7-bold.eot -------------------------------------------------------------------------------- /docs/_static/fonts/RobotoSlab/roboto-slab-v7-bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/docs/_static/fonts/RobotoSlab/roboto-slab-v7-bold.ttf -------------------------------------------------------------------------------- /docs/_static/fonts/RobotoSlab/roboto-slab-v7-bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/docs/_static/fonts/RobotoSlab/roboto-slab-v7-bold.woff -------------------------------------------------------------------------------- /docs/_static/fonts/RobotoSlab/roboto-slab-v7-bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/docs/_static/fonts/RobotoSlab/roboto-slab-v7-bold.woff2 -------------------------------------------------------------------------------- /docs/_static/fonts/RobotoSlab/roboto-slab-v7-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/docs/_static/fonts/RobotoSlab/roboto-slab-v7-regular.eot -------------------------------------------------------------------------------- /docs/_static/fonts/RobotoSlab/roboto-slab-v7-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/docs/_static/fonts/RobotoSlab/roboto-slab-v7-regular.ttf -------------------------------------------------------------------------------- /docs/_static/fonts/RobotoSlab/roboto-slab-v7-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/docs/_static/fonts/RobotoSlab/roboto-slab-v7-regular.woff -------------------------------------------------------------------------------- /docs/_static/fonts/RobotoSlab/roboto-slab-v7-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/docs/_static/fonts/RobotoSlab/roboto-slab-v7-regular.woff2 -------------------------------------------------------------------------------- /docs/_static/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/docs/_static/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /docs/_static/fonts/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/docs/_static/fonts/fontawesome-webfont.svg -------------------------------------------------------------------------------- /docs/_static/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/docs/_static/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /docs/_static/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/docs/_static/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /docs/_static/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/docs/_static/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /docs/_static/jquery-3.5.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/docs/_static/jquery-3.5.1.js -------------------------------------------------------------------------------- /docs/_static/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/docs/_static/jquery.js -------------------------------------------------------------------------------- /docs/_static/js/badge_only.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/docs/_static/js/badge_only.js -------------------------------------------------------------------------------- /docs/_static/js/html5shiv-printshiv.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/docs/_static/js/html5shiv-printshiv.min.js -------------------------------------------------------------------------------- /docs/_static/js/html5shiv.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/docs/_static/js/html5shiv.min.js -------------------------------------------------------------------------------- /docs/_static/js/modernizr.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/docs/_static/js/modernizr.min.js -------------------------------------------------------------------------------- /docs/_static/js/theme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/docs/_static/js/theme.js -------------------------------------------------------------------------------- /docs/_static/language_data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/docs/_static/language_data.js -------------------------------------------------------------------------------- /docs/_static/minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/docs/_static/minus.png -------------------------------------------------------------------------------- /docs/_static/plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/docs/_static/plus.png -------------------------------------------------------------------------------- /docs/_static/pygments.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/docs/_static/pygments.css -------------------------------------------------------------------------------- /docs/_static/searchtools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/docs/_static/searchtools.js -------------------------------------------------------------------------------- /docs/_static/underscore-1.13.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/docs/_static/underscore-1.13.1.js -------------------------------------------------------------------------------- /docs/_static/underscore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/docs/_static/underscore.js -------------------------------------------------------------------------------- /docs/genindex.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/docs/genindex.html -------------------------------------------------------------------------------- /docs/google38a519c1999beafe.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/docs/google38a519c1999beafe.html -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/objects.inv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/docs/objects.inv -------------------------------------------------------------------------------- /docs/py-modindex.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/docs/py-modindex.html -------------------------------------------------------------------------------- /docs/search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/docs/search.html -------------------------------------------------------------------------------- /docs/searchindex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/docs/searchindex.js -------------------------------------------------------------------------------- /docs/zs/zia/admins.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/docs/zs/zia/admins.html -------------------------------------------------------------------------------- /docs/zs/zia/audit_logs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/docs/zs/zia/audit_logs.html -------------------------------------------------------------------------------- /docs/zs/zia/config.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/docs/zs/zia/config.html -------------------------------------------------------------------------------- /docs/zs/zia/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/docs/zs/zia/index.html -------------------------------------------------------------------------------- /docs/zs/zia/locations.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/docs/zs/zia/locations.html -------------------------------------------------------------------------------- /docs/zs/zia/traffic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/docs/zs/zia/traffic.html -------------------------------------------------------------------------------- /docs/zs/zia/users.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/docs/zs/zia/users.html -------------------------------------------------------------------------------- /docs/zs/zpa/app_segments.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/docs/zs/zpa/app_segments.html -------------------------------------------------------------------------------- /docs/zs/zpa/certificates.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/docs/zs/zpa/certificates.html -------------------------------------------------------------------------------- /docs/zs/zpa/cloud_connector_groups.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/docs/zs/zpa/cloud_connector_groups.html -------------------------------------------------------------------------------- /docs/zs/zpa/connector_groups.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/docs/zs/zpa/connector_groups.html -------------------------------------------------------------------------------- /docs/zs/zpa/idp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/docs/zs/zpa/idp.html -------------------------------------------------------------------------------- /docs/zs/zpa/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/docs/zs/zpa/index.html -------------------------------------------------------------------------------- /docs/zs/zpa/machine_groups.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/docs/zs/zpa/machine_groups.html -------------------------------------------------------------------------------- /docs/zs/zpa/policies.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/docs/zs/zpa/policies.html -------------------------------------------------------------------------------- /docs/zs/zpa/posture_profiles.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/docs/zs/zpa/posture_profiles.html -------------------------------------------------------------------------------- /docs/zs/zpa/saml_attributes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/docs/zs/zpa/saml_attributes.html -------------------------------------------------------------------------------- /docs/zs/zpa/scim_attributes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/docs/zs/zpa/scim_attributes.html -------------------------------------------------------------------------------- /docs/zs/zpa/scim_groups.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/docs/zs/zpa/scim_groups.html -------------------------------------------------------------------------------- /docs/zs/zpa/segment_groups.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/docs/zs/zpa/segment_groups.html -------------------------------------------------------------------------------- /docs/zs/zpa/server_groups.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/docs/zs/zpa/server_groups.html -------------------------------------------------------------------------------- /docs/zs/zpa/servers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/docs/zs/zpa/servers.html -------------------------------------------------------------------------------- /docs/zs/zpa/trusted_networks.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/docs/zs/zpa/trusted_networks.html -------------------------------------------------------------------------------- /docsrc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/docsrc/Makefile -------------------------------------------------------------------------------- /docsrc/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/docsrc/conf.py -------------------------------------------------------------------------------- /docsrc/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/docsrc/index.rst -------------------------------------------------------------------------------- /docsrc/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/docsrc/logo.svg -------------------------------------------------------------------------------- /docsrc/zs/zcc/devices.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/docsrc/zs/zcc/devices.rst -------------------------------------------------------------------------------- /docsrc/zs/zcc/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/docsrc/zs/zcc/index.rst -------------------------------------------------------------------------------- /docsrc/zs/zcc/secrets.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/docsrc/zs/zcc/secrets.rst -------------------------------------------------------------------------------- /docsrc/zs/zcc/session.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/docsrc/zs/zcc/session.rst -------------------------------------------------------------------------------- /docsrc/zs/zcon/admin.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/docsrc/zs/zcon/admin.rst -------------------------------------------------------------------------------- /docsrc/zs/zcon/config.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/docsrc/zs/zcon/config.rst -------------------------------------------------------------------------------- /docsrc/zs/zcon/connectors.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/docsrc/zs/zcon/connectors.rst -------------------------------------------------------------------------------- /docsrc/zs/zcon/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/docsrc/zs/zcon/index.rst -------------------------------------------------------------------------------- /docsrc/zs/zcon/locations.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/docsrc/zs/zcon/locations.rst -------------------------------------------------------------------------------- /docsrc/zs/zcon/session.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/docsrc/zs/zcon/session.rst -------------------------------------------------------------------------------- /docsrc/zs/zdx/admin.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/docsrc/zs/zdx/admin.rst -------------------------------------------------------------------------------- /docsrc/zs/zdx/apps.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/docsrc/zs/zdx/apps.rst -------------------------------------------------------------------------------- /docsrc/zs/zdx/devices.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/docsrc/zs/zdx/devices.rst -------------------------------------------------------------------------------- /docsrc/zs/zdx/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/docsrc/zs/zdx/index.rst -------------------------------------------------------------------------------- /docsrc/zs/zdx/session.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/docsrc/zs/zdx/session.rst -------------------------------------------------------------------------------- /docsrc/zs/zdx/users.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/docsrc/zs/zdx/users.rst -------------------------------------------------------------------------------- /docsrc/zs/zia/admin_and_role_management.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/docsrc/zs/zia/admin_and_role_management.rst -------------------------------------------------------------------------------- /docsrc/zs/zia/apptotal.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/docsrc/zs/zia/apptotal.rst -------------------------------------------------------------------------------- /docsrc/zs/zia/audit_logs.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/docsrc/zs/zia/audit_logs.rst -------------------------------------------------------------------------------- /docsrc/zs/zia/cloud_apps.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/docsrc/zs/zia/cloud_apps.rst -------------------------------------------------------------------------------- /docsrc/zs/zia/config.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/docsrc/zs/zia/config.rst -------------------------------------------------------------------------------- /docsrc/zs/zia/dlp.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/docsrc/zs/zia/dlp.rst -------------------------------------------------------------------------------- /docsrc/zs/zia/firewall.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/docsrc/zs/zia/firewall.rst -------------------------------------------------------------------------------- /docsrc/zs/zia/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/docsrc/zs/zia/index.rst -------------------------------------------------------------------------------- /docsrc/zs/zia/locations.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/docsrc/zs/zia/locations.rst -------------------------------------------------------------------------------- /docsrc/zs/zia/rule_labels.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/docsrc/zs/zia/rule_labels.rst -------------------------------------------------------------------------------- /docsrc/zs/zia/sandbox.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/docsrc/zs/zia/sandbox.rst -------------------------------------------------------------------------------- /docsrc/zs/zia/security.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/docsrc/zs/zia/security.rst -------------------------------------------------------------------------------- /docsrc/zs/zia/session.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/docsrc/zs/zia/session.rst -------------------------------------------------------------------------------- /docsrc/zs/zia/ssl_inspection.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/docsrc/zs/zia/ssl_inspection.rst -------------------------------------------------------------------------------- /docsrc/zs/zia/traffic.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/docsrc/zs/zia/traffic.rst -------------------------------------------------------------------------------- /docsrc/zs/zia/url_categories.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/docsrc/zs/zia/url_categories.rst -------------------------------------------------------------------------------- /docsrc/zs/zia/url_filters.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/docsrc/zs/zia/url_filters.rst -------------------------------------------------------------------------------- /docsrc/zs/zia/users.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/docsrc/zs/zia/users.rst -------------------------------------------------------------------------------- /docsrc/zs/zia/vips.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/docsrc/zs/zia/vips.rst -------------------------------------------------------------------------------- /docsrc/zs/zia/web_dlp.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/docsrc/zs/zia/web_dlp.rst -------------------------------------------------------------------------------- /docsrc/zs/zpa/app_segments.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/docsrc/zs/zpa/app_segments.rst -------------------------------------------------------------------------------- /docsrc/zs/zpa/certificates.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/docsrc/zs/zpa/certificates.rst -------------------------------------------------------------------------------- /docsrc/zs/zpa/cloud_connector_groups.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/docsrc/zs/zpa/cloud_connector_groups.rst -------------------------------------------------------------------------------- /docsrc/zs/zpa/connectors.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/docsrc/zs/zpa/connectors.rst -------------------------------------------------------------------------------- /docsrc/zs/zpa/idp.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/docsrc/zs/zpa/idp.rst -------------------------------------------------------------------------------- /docsrc/zs/zpa/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/docsrc/zs/zpa/index.rst -------------------------------------------------------------------------------- /docsrc/zs/zpa/inspection.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/docsrc/zs/zpa/inspection.rst -------------------------------------------------------------------------------- /docsrc/zs/zpa/lss.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/docsrc/zs/zpa/lss.rst -------------------------------------------------------------------------------- /docsrc/zs/zpa/machine_groups.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/docsrc/zs/zpa/machine_groups.rst -------------------------------------------------------------------------------- /docsrc/zs/zpa/policies.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/docsrc/zs/zpa/policies.rst -------------------------------------------------------------------------------- /docsrc/zs/zpa/posture_profiles.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/docsrc/zs/zpa/posture_profiles.rst -------------------------------------------------------------------------------- /docsrc/zs/zpa/provisioning.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/docsrc/zs/zpa/provisioning.rst -------------------------------------------------------------------------------- /docsrc/zs/zpa/saml_attributes.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/docsrc/zs/zpa/saml_attributes.rst -------------------------------------------------------------------------------- /docsrc/zs/zpa/scim_attributes.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/docsrc/zs/zpa/scim_attributes.rst -------------------------------------------------------------------------------- /docsrc/zs/zpa/scim_groups.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/docsrc/zs/zpa/scim_groups.rst -------------------------------------------------------------------------------- /docsrc/zs/zpa/segment_groups.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/docsrc/zs/zpa/segment_groups.rst -------------------------------------------------------------------------------- /docsrc/zs/zpa/server_groups.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/docsrc/zs/zpa/server_groups.rst -------------------------------------------------------------------------------- /docsrc/zs/zpa/servers.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/docsrc/zs/zpa/servers.rst -------------------------------------------------------------------------------- /docsrc/zs/zpa/service_edges.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/docsrc/zs/zpa/service_edges.rst -------------------------------------------------------------------------------- /docsrc/zs/zpa/session.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/docsrc/zs/zpa/session.rst -------------------------------------------------------------------------------- /docsrc/zs/zpa/trusted_networks.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/docsrc/zs/zpa/trusted_networks.rst -------------------------------------------------------------------------------- /examples/zia/download_audit_logs/zia_download_audit_logs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/examples/zia/download_audit_logs/zia_download_audit_logs.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/pyproject.toml -------------------------------------------------------------------------------- /pyzscaler/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/pyzscaler/__init__.py -------------------------------------------------------------------------------- /pyzscaler/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/pyzscaler/utils.py -------------------------------------------------------------------------------- /pyzscaler/zcc/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/pyzscaler/zcc/__init__.py -------------------------------------------------------------------------------- /pyzscaler/zcc/devices.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/pyzscaler/zcc/devices.py -------------------------------------------------------------------------------- /pyzscaler/zcc/secrets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/pyzscaler/zcc/secrets.py -------------------------------------------------------------------------------- /pyzscaler/zcc/session.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/pyzscaler/zcc/session.py -------------------------------------------------------------------------------- /pyzscaler/zcon/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/pyzscaler/zcon/__init__.py -------------------------------------------------------------------------------- /pyzscaler/zcon/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/pyzscaler/zcon/admin.py -------------------------------------------------------------------------------- /pyzscaler/zcon/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/pyzscaler/zcon/config.py -------------------------------------------------------------------------------- /pyzscaler/zcon/connectors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/pyzscaler/zcon/connectors.py -------------------------------------------------------------------------------- /pyzscaler/zcon/locations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/pyzscaler/zcon/locations.py -------------------------------------------------------------------------------- /pyzscaler/zcon/session.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/pyzscaler/zcon/session.py -------------------------------------------------------------------------------- /pyzscaler/zdx/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/pyzscaler/zdx/__init__.py -------------------------------------------------------------------------------- /pyzscaler/zdx/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/pyzscaler/zdx/admin.py -------------------------------------------------------------------------------- /pyzscaler/zdx/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/pyzscaler/zdx/apps.py -------------------------------------------------------------------------------- /pyzscaler/zdx/devices.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/pyzscaler/zdx/devices.py -------------------------------------------------------------------------------- /pyzscaler/zdx/session.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/pyzscaler/zdx/session.py -------------------------------------------------------------------------------- /pyzscaler/zdx/users.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/pyzscaler/zdx/users.py -------------------------------------------------------------------------------- /pyzscaler/zia/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/pyzscaler/zia/__init__.py -------------------------------------------------------------------------------- /pyzscaler/zia/admin_and_role_management.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/pyzscaler/zia/admin_and_role_management.py -------------------------------------------------------------------------------- /pyzscaler/zia/apptotal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/pyzscaler/zia/apptotal.py -------------------------------------------------------------------------------- /pyzscaler/zia/audit_logs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/pyzscaler/zia/audit_logs.py -------------------------------------------------------------------------------- /pyzscaler/zia/cloud_apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/pyzscaler/zia/cloud_apps.py -------------------------------------------------------------------------------- /pyzscaler/zia/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/pyzscaler/zia/config.py -------------------------------------------------------------------------------- /pyzscaler/zia/dlp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/pyzscaler/zia/dlp.py -------------------------------------------------------------------------------- /pyzscaler/zia/firewall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/pyzscaler/zia/firewall.py -------------------------------------------------------------------------------- /pyzscaler/zia/labels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/pyzscaler/zia/labels.py -------------------------------------------------------------------------------- /pyzscaler/zia/locations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/pyzscaler/zia/locations.py -------------------------------------------------------------------------------- /pyzscaler/zia/sandbox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/pyzscaler/zia/sandbox.py -------------------------------------------------------------------------------- /pyzscaler/zia/security.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/pyzscaler/zia/security.py -------------------------------------------------------------------------------- /pyzscaler/zia/session.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/pyzscaler/zia/session.py -------------------------------------------------------------------------------- /pyzscaler/zia/ssl_inspection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/pyzscaler/zia/ssl_inspection.py -------------------------------------------------------------------------------- /pyzscaler/zia/traffic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/pyzscaler/zia/traffic.py -------------------------------------------------------------------------------- /pyzscaler/zia/url_categories.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/pyzscaler/zia/url_categories.py -------------------------------------------------------------------------------- /pyzscaler/zia/url_filters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/pyzscaler/zia/url_filters.py -------------------------------------------------------------------------------- /pyzscaler/zia/users.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/pyzscaler/zia/users.py -------------------------------------------------------------------------------- /pyzscaler/zia/vips.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/pyzscaler/zia/vips.py -------------------------------------------------------------------------------- /pyzscaler/zia/web_dlp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/pyzscaler/zia/web_dlp.py -------------------------------------------------------------------------------- /pyzscaler/zpa/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/pyzscaler/zpa/__init__.py -------------------------------------------------------------------------------- /pyzscaler/zpa/app_segments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/pyzscaler/zpa/app_segments.py -------------------------------------------------------------------------------- /pyzscaler/zpa/certificates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/pyzscaler/zpa/certificates.py -------------------------------------------------------------------------------- /pyzscaler/zpa/cloud_connector_groups.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/pyzscaler/zpa/cloud_connector_groups.py -------------------------------------------------------------------------------- /pyzscaler/zpa/connectors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/pyzscaler/zpa/connectors.py -------------------------------------------------------------------------------- /pyzscaler/zpa/idp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/pyzscaler/zpa/idp.py -------------------------------------------------------------------------------- /pyzscaler/zpa/inspection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/pyzscaler/zpa/inspection.py -------------------------------------------------------------------------------- /pyzscaler/zpa/lss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/pyzscaler/zpa/lss.py -------------------------------------------------------------------------------- /pyzscaler/zpa/machine_groups.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/pyzscaler/zpa/machine_groups.py -------------------------------------------------------------------------------- /pyzscaler/zpa/policies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/pyzscaler/zpa/policies.py -------------------------------------------------------------------------------- /pyzscaler/zpa/posture_profiles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/pyzscaler/zpa/posture_profiles.py -------------------------------------------------------------------------------- /pyzscaler/zpa/provisioning.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/pyzscaler/zpa/provisioning.py -------------------------------------------------------------------------------- /pyzscaler/zpa/saml_attributes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/pyzscaler/zpa/saml_attributes.py -------------------------------------------------------------------------------- /pyzscaler/zpa/scim_attributes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/pyzscaler/zpa/scim_attributes.py -------------------------------------------------------------------------------- /pyzscaler/zpa/scim_groups.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/pyzscaler/zpa/scim_groups.py -------------------------------------------------------------------------------- /pyzscaler/zpa/segment_groups.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/pyzscaler/zpa/segment_groups.py -------------------------------------------------------------------------------- /pyzscaler/zpa/server_groups.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/pyzscaler/zpa/server_groups.py -------------------------------------------------------------------------------- /pyzscaler/zpa/servers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/pyzscaler/zpa/servers.py -------------------------------------------------------------------------------- /pyzscaler/zpa/service_edges.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/pyzscaler/zpa/service_edges.py -------------------------------------------------------------------------------- /pyzscaler/zpa/session.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/pyzscaler/zpa/session.py -------------------------------------------------------------------------------- /pyzscaler/zpa/trusted_networks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/pyzscaler/zpa/trusted_networks.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | restfly==1.4.7 2 | python-box==7.0.1 -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/test_pyzscaler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/tests/test_pyzscaler.py -------------------------------------------------------------------------------- /tests/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/tests/test_utils.py -------------------------------------------------------------------------------- /tests/zcc/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/tests/zcc/conftest.py -------------------------------------------------------------------------------- /tests/zcc/test_zcc_devices.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/tests/zcc/test_zcc_devices.py -------------------------------------------------------------------------------- /tests/zcc/test_zcc_secrets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/tests/zcc/test_zcc_secrets.py -------------------------------------------------------------------------------- /tests/zcc/test_zcc_session.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/tests/zcc/test_zcc_session.py -------------------------------------------------------------------------------- /tests/zcon/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/tests/zcon/conftest.py -------------------------------------------------------------------------------- /tests/zcon/test_zcon_admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/tests/zcon/test_zcon_admin.py -------------------------------------------------------------------------------- /tests/zcon/test_zcon_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/tests/zcon/test_zcon_config.py -------------------------------------------------------------------------------- /tests/zcon/test_zcon_connectors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/tests/zcon/test_zcon_connectors.py -------------------------------------------------------------------------------- /tests/zcon/test_zcon_locations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/tests/zcon/test_zcon_locations.py -------------------------------------------------------------------------------- /tests/zcon/test_zcon_session.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/tests/zcon/test_zcon_session.py -------------------------------------------------------------------------------- /tests/zdx/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/tests/zdx/conftest.py -------------------------------------------------------------------------------- /tests/zdx/test_zdx_admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/tests/zdx/test_zdx_admin.py -------------------------------------------------------------------------------- /tests/zdx/test_zdx_apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/tests/zdx/test_zdx_apps.py -------------------------------------------------------------------------------- /tests/zdx/test_zdx_devices.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/tests/zdx/test_zdx_devices.py -------------------------------------------------------------------------------- /tests/zdx/test_zdx_session.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/tests/zdx/test_zdx_session.py -------------------------------------------------------------------------------- /tests/zdx/test_zdx_users.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/tests/zdx/test_zdx_users.py -------------------------------------------------------------------------------- /tests/zia/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/tests/zia/conftest.py -------------------------------------------------------------------------------- /tests/zia/test_admin_and_role_management.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/tests/zia/test_admin_and_role_management.py -------------------------------------------------------------------------------- /tests/zia/test_apptotal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/tests/zia/test_apptotal.py -------------------------------------------------------------------------------- /tests/zia/test_audit_logs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/tests/zia/test_audit_logs.py -------------------------------------------------------------------------------- /tests/zia/test_cloud_apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/tests/zia/test_cloud_apps.py -------------------------------------------------------------------------------- /tests/zia/test_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/tests/zia/test_config.py -------------------------------------------------------------------------------- /tests/zia/test_dlp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/tests/zia/test_dlp.py -------------------------------------------------------------------------------- /tests/zia/test_firewall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/tests/zia/test_firewall.py -------------------------------------------------------------------------------- /tests/zia/test_init.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/tests/zia/test_init.py -------------------------------------------------------------------------------- /tests/zia/test_locations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/tests/zia/test_locations.py -------------------------------------------------------------------------------- /tests/zia/test_rule_labels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/tests/zia/test_rule_labels.py -------------------------------------------------------------------------------- /tests/zia/test_sandbox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/tests/zia/test_sandbox.py -------------------------------------------------------------------------------- /tests/zia/test_security.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/tests/zia/test_security.py -------------------------------------------------------------------------------- /tests/zia/test_session.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/tests/zia/test_session.py -------------------------------------------------------------------------------- /tests/zia/test_ssl_inspection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/tests/zia/test_ssl_inspection.py -------------------------------------------------------------------------------- /tests/zia/test_traffic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/tests/zia/test_traffic.py -------------------------------------------------------------------------------- /tests/zia/test_url_categories.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/tests/zia/test_url_categories.py -------------------------------------------------------------------------------- /tests/zia/test_url_filters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/tests/zia/test_url_filters.py -------------------------------------------------------------------------------- /tests/zia/test_users.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/tests/zia/test_users.py -------------------------------------------------------------------------------- /tests/zia/test_vips.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/tests/zia/test_vips.py -------------------------------------------------------------------------------- /tests/zia/test_web_dlp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/tests/zia/test_web_dlp.py -------------------------------------------------------------------------------- /tests/zpa/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/tests/zpa/conftest.py -------------------------------------------------------------------------------- /tests/zpa/test_zpa_app_segments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/tests/zpa/test_zpa_app_segments.py -------------------------------------------------------------------------------- /tests/zpa/test_zpa_certificates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/tests/zpa/test_zpa_certificates.py -------------------------------------------------------------------------------- /tests/zpa/test_zpa_cloud_connector_groups.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/tests/zpa/test_zpa_cloud_connector_groups.py -------------------------------------------------------------------------------- /tests/zpa/test_zpa_connectors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/tests/zpa/test_zpa_connectors.py -------------------------------------------------------------------------------- /tests/zpa/test_zpa_idp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/tests/zpa/test_zpa_idp.py -------------------------------------------------------------------------------- /tests/zpa/test_zpa_inspection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/tests/zpa/test_zpa_inspection.py -------------------------------------------------------------------------------- /tests/zpa/test_zpa_lss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/tests/zpa/test_zpa_lss.py -------------------------------------------------------------------------------- /tests/zpa/test_zpa_machine_groups.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/tests/zpa/test_zpa_machine_groups.py -------------------------------------------------------------------------------- /tests/zpa/test_zpa_policies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/tests/zpa/test_zpa_policies.py -------------------------------------------------------------------------------- /tests/zpa/test_zpa_posture_profiles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/tests/zpa/test_zpa_posture_profiles.py -------------------------------------------------------------------------------- /tests/zpa/test_zpa_provisioning.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/tests/zpa/test_zpa_provisioning.py -------------------------------------------------------------------------------- /tests/zpa/test_zpa_saml_attributes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/tests/zpa/test_zpa_saml_attributes.py -------------------------------------------------------------------------------- /tests/zpa/test_zpa_scim_attributes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/tests/zpa/test_zpa_scim_attributes.py -------------------------------------------------------------------------------- /tests/zpa/test_zpa_scim_groups.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/tests/zpa/test_zpa_scim_groups.py -------------------------------------------------------------------------------- /tests/zpa/test_zpa_segment_groups.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/tests/zpa/test_zpa_segment_groups.py -------------------------------------------------------------------------------- /tests/zpa/test_zpa_server_groups.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/tests/zpa/test_zpa_server_groups.py -------------------------------------------------------------------------------- /tests/zpa/test_zpa_servers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/tests/zpa/test_zpa_servers.py -------------------------------------------------------------------------------- /tests/zpa/test_zpa_service_edges.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/tests/zpa/test_zpa_service_edges.py -------------------------------------------------------------------------------- /tests/zpa/test_zpa_session.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/tests/zpa/test_zpa_session.py -------------------------------------------------------------------------------- /tests/zpa/test_zpa_trusted_networks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchos/pyZscaler/HEAD/tests/zpa/test_zpa_trusted_networks.py --------------------------------------------------------------------------------