auth0-python 4.12.0__tar.gz → 5.0.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- auth0_python-5.0.0/PKG-INFO +389 -0
- auth0_python-5.0.0/README.md +347 -0
- auth0_python-5.0.0/pyproject.toml +101 -0
- auth0_python-5.0.0/src/auth0/__init__.py +7 -0
- auth0_python-5.0.0/src/auth0/authentication/async_token_verifier.py +200 -0
- auth0_python-5.0.0/src/auth0/authentication/base.py +83 -0
- auth0_python-5.0.0/src/auth0/authentication/exceptions.py +32 -0
- auth0_python-5.0.0/src/auth0/authentication/rest.py +366 -0
- auth0_python-5.0.0/src/auth0/authentication/rest_async.py +163 -0
- auth0_python-5.0.0/src/auth0/authentication/token_verifier.py +459 -0
- auth0_python-5.0.0/src/auth0/authentication/users.py +53 -0
- auth0_python-5.0.0/src/auth0/management/__init__.py +3659 -0
- auth0_python-5.0.0/src/auth0/management/actions/__init__.py +39 -0
- auth0_python-5.0.0/src/auth0/management/actions/client.py +920 -0
- auth0_python-5.0.0/src/auth0/management/actions/executions/__init__.py +4 -0
- auth0_python-5.0.0/src/auth0/management/actions/executions/client.py +114 -0
- auth0_python-5.0.0/src/auth0/management/actions/executions/raw_client.py +215 -0
- auth0_python-5.0.0/src/auth0/management/actions/modules/__init__.py +34 -0
- auth0_python-5.0.0/src/auth0/management/actions/modules/client.py +757 -0
- auth0_python-5.0.0/src/auth0/management/actions/modules/raw_client.py +1635 -0
- auth0_python-5.0.0/src/auth0/management/actions/modules/versions/__init__.py +4 -0
- auth0_python-5.0.0/src/auth0/management/actions/modules/versions/client.py +272 -0
- auth0_python-5.0.0/src/auth0/management/actions/modules/versions/raw_client.py +623 -0
- auth0_python-5.0.0/src/auth0/management/actions/raw_client.py +1587 -0
- auth0_python-5.0.0/src/auth0/management/actions/triggers/__init__.py +34 -0
- auth0_python-5.0.0/src/auth0/management/actions/triggers/bindings/__init__.py +4 -0
- auth0_python-5.0.0/src/auth0/management/actions/triggers/bindings/client.py +245 -0
- auth0_python-5.0.0/src/auth0/management/actions/triggers/bindings/raw_client.py +452 -0
- auth0_python-5.0.0/src/auth0/management/actions/triggers/client.py +127 -0
- auth0_python-5.0.0/src/auth0/management/actions/triggers/raw_client.py +185 -0
- auth0_python-5.0.0/src/auth0/management/actions/versions/__init__.py +4 -0
- auth0_python-5.0.0/src/auth0/management/actions/versions/client.py +337 -0
- auth0_python-5.0.0/src/auth0/management/actions/versions/raw_client.py +649 -0
- auth0_python-5.0.0/src/auth0/management/anomaly/__init__.py +34 -0
- auth0_python-5.0.0/src/auth0/management/anomaly/blocks/__init__.py +4 -0
- auth0_python-5.0.0/src/auth0/management/anomaly/blocks/client.py +176 -0
- auth0_python-5.0.0/src/auth0/management/anomaly/blocks/raw_client.py +349 -0
- auth0_python-5.0.0/src/auth0/management/anomaly/client.py +63 -0
- auth0_python-5.0.0/src/auth0/management/anomaly/raw_client.py +13 -0
- auth0_python-5.0.0/src/auth0/management/attack_protection/__init__.py +46 -0
- auth0_python-5.0.0/src/auth0/management/attack_protection/bot_detection/__init__.py +4 -0
- auth0_python-5.0.0/src/auth0/management/attack_protection/bot_detection/client.py +236 -0
- auth0_python-5.0.0/src/auth0/management/attack_protection/bot_detection/raw_client.py +446 -0
- auth0_python-5.0.0/src/auth0/management/attack_protection/breached_password_detection/__init__.py +4 -0
- auth0_python-5.0.0/src/auth0/management/attack_protection/breached_password_detection/client.py +244 -0
- auth0_python-5.0.0/src/auth0/management/attack_protection/breached_password_detection/raw_client.py +412 -0
- auth0_python-5.0.0/src/auth0/management/attack_protection/brute_force_protection/__init__.py +4 -0
- auth0_python-5.0.0/src/auth0/management/attack_protection/brute_force_protection/client.py +230 -0
- auth0_python-5.0.0/src/auth0/management/attack_protection/brute_force_protection/raw_client.py +395 -0
- auth0_python-5.0.0/src/auth0/management/attack_protection/captcha/__init__.py +4 -0
- auth0_python-5.0.0/src/auth0/management/attack_protection/captcha/client.py +256 -0
- auth0_python-5.0.0/src/auth0/management/attack_protection/captcha/raw_client.py +470 -0
- auth0_python-5.0.0/src/auth0/management/attack_protection/client.py +144 -0
- auth0_python-5.0.0/src/auth0/management/attack_protection/raw_client.py +13 -0
- auth0_python-5.0.0/src/auth0/management/attack_protection/suspicious_ip_throttling/__init__.py +4 -0
- auth0_python-5.0.0/src/auth0/management/attack_protection/suspicious_ip_throttling/client.py +217 -0
- auth0_python-5.0.0/src/auth0/management/attack_protection/suspicious_ip_throttling/raw_client.py +393 -0
- auth0_python-5.0.0/src/auth0/management/branding/__init__.py +34 -0
- auth0_python-5.0.0/src/auth0/management/branding/client.py +268 -0
- auth0_python-5.0.0/src/auth0/management/branding/phone/__init__.py +34 -0
- auth0_python-5.0.0/src/auth0/management/branding/phone/client.py +82 -0
- auth0_python-5.0.0/src/auth0/management/branding/phone/providers/__init__.py +4 -0
- auth0_python-5.0.0/src/auth0/management/branding/phone/providers/client.py +593 -0
- auth0_python-5.0.0/src/auth0/management/branding/phone/providers/raw_client.py +1296 -0
- auth0_python-5.0.0/src/auth0/management/branding/phone/raw_client.py +13 -0
- auth0_python-5.0.0/src/auth0/management/branding/phone/templates/__init__.py +4 -0
- auth0_python-5.0.0/src/auth0/management/branding/phone/templates/client.py +607 -0
- auth0_python-5.0.0/src/auth0/management/branding/phone/templates/raw_client.py +1404 -0
- auth0_python-5.0.0/src/auth0/management/branding/raw_client.py +390 -0
- auth0_python-5.0.0/src/auth0/management/branding/templates/__init__.py +4 -0
- auth0_python-5.0.0/src/auth0/management/branding/templates/client.py +280 -0
- auth0_python-5.0.0/src/auth0/management/branding/templates/raw_client.py +607 -0
- auth0_python-5.0.0/src/auth0/management/branding/themes/__init__.py +4 -0
- auth0_python-5.0.0/src/auth0/management/branding/themes/client.py +849 -0
- auth0_python-5.0.0/src/auth0/management/branding/themes/raw_client.py +1058 -0
- auth0_python-5.0.0/src/auth0/management/client.py +971 -0
- auth0_python-5.0.0/src/auth0/management/client_grants/__init__.py +34 -0
- auth0_python-5.0.0/src/auth0/management/client_grants/client.py +661 -0
- auth0_python-5.0.0/src/auth0/management/client_grants/organizations/__init__.py +4 -0
- auth0_python-5.0.0/src/auth0/management/client_grants/organizations/client.py +149 -0
- auth0_python-5.0.0/src/auth0/management/client_grants/organizations/raw_client.py +242 -0
- auth0_python-5.0.0/src/auth0/management/client_grants/raw_client.py +1139 -0
- auth0_python-5.0.0/src/auth0/management/clients/__init__.py +34 -0
- auth0_python-5.0.0/src/auth0/management/clients/client.py +1826 -0
- auth0_python-5.0.0/src/auth0/management/clients/connections/__init__.py +4 -0
- auth0_python-5.0.0/src/auth0/management/clients/connections/client.py +212 -0
- auth0_python-5.0.0/src/auth0/management/clients/connections/raw_client.py +320 -0
- auth0_python-5.0.0/src/auth0/management/clients/credentials/__init__.py +4 -0
- auth0_python-5.0.0/src/auth0/management/clients/credentials/client.py +613 -0
- auth0_python-5.0.0/src/auth0/management/clients/credentials/raw_client.py +1098 -0
- auth0_python-5.0.0/src/auth0/management/clients/raw_client.py +2588 -0
- auth0_python-5.0.0/src/auth0/management/connection_profiles/__init__.py +4 -0
- auth0_python-5.0.0/src/auth0/management/connection_profiles/client.py +693 -0
- auth0_python-5.0.0/src/auth0/management/connection_profiles/raw_client.py +1350 -0
- auth0_python-5.0.0/src/auth0/management/connections/__init__.py +40 -0
- auth0_python-5.0.0/src/auth0/management/connections/client.py +944 -0
- auth0_python-5.0.0/src/auth0/management/connections/clients/__init__.py +4 -0
- auth0_python-5.0.0/src/auth0/management/connections/clients/client.py +251 -0
- auth0_python-5.0.0/src/auth0/management/connections/clients/raw_client.py +471 -0
- auth0_python-5.0.0/src/auth0/management/connections/directory_provisioning/__init__.py +34 -0
- auth0_python-5.0.0/src/auth0/management/connections/directory_provisioning/client.py +568 -0
- auth0_python-5.0.0/src/auth0/management/connections/directory_provisioning/raw_client.py +1253 -0
- auth0_python-5.0.0/src/auth0/management/connections/directory_provisioning/synchronizations/__init__.py +4 -0
- auth0_python-5.0.0/src/auth0/management/connections/directory_provisioning/synchronizations/client.py +114 -0
- auth0_python-5.0.0/src/auth0/management/connections/directory_provisioning/synchronizations/raw_client.py +238 -0
- auth0_python-5.0.0/src/auth0/management/connections/keys/__init__.py +4 -0
- auth0_python-5.0.0/src/auth0/management/connections/keys/client.py +205 -0
- auth0_python-5.0.0/src/auth0/management/connections/keys/raw_client.py +435 -0
- auth0_python-5.0.0/src/auth0/management/connections/raw_client.py +1517 -0
- auth0_python-5.0.0/src/auth0/management/connections/scim_configuration/__init__.py +34 -0
- auth0_python-5.0.0/src/auth0/management/connections/scim_configuration/client.py +482 -0
- auth0_python-5.0.0/src/auth0/management/connections/scim_configuration/raw_client.py +695 -0
- auth0_python-5.0.0/src/auth0/management/connections/scim_configuration/tokens/__init__.py +4 -0
- auth0_python-5.0.0/src/auth0/management/connections/scim_configuration/tokens/client.py +292 -0
- auth0_python-5.0.0/src/auth0/management/connections/scim_configuration/tokens/raw_client.py +445 -0
- auth0_python-5.0.0/src/auth0/management/connections/users/__init__.py +4 -0
- auth0_python-5.0.0/src/auth0/management/connections/users/client.py +117 -0
- auth0_python-5.0.0/src/auth0/management/connections/users/raw_client.py +187 -0
- auth0_python-5.0.0/src/auth0/management/core/__init__.py +115 -0
- auth0_python-5.0.0/src/auth0/management/core/api_error.py +23 -0
- auth0_python-5.0.0/src/auth0/management/core/client_wrapper.py +109 -0
- auth0_python-5.0.0/src/auth0/management/core/custom_pagination.py +152 -0
- auth0_python-5.0.0/src/auth0/management/core/datetime_utils.py +28 -0
- auth0_python-5.0.0/src/auth0/management/core/file.py +67 -0
- auth0_python-5.0.0/src/auth0/management/core/force_multipart.py +18 -0
- auth0_python-5.0.0/src/auth0/management/core/http_client.py +663 -0
- auth0_python-5.0.0/src/auth0/management/core/http_response.py +55 -0
- auth0_python-5.0.0/src/auth0/management/core/http_sse/__init__.py +42 -0
- auth0_python-5.0.0/src/auth0/management/core/http_sse/_api.py +112 -0
- auth0_python-5.0.0/src/auth0/management/core/http_sse/_decoders.py +61 -0
- auth0_python-5.0.0/src/auth0/management/core/http_sse/_exceptions.py +7 -0
- auth0_python-5.0.0/src/auth0/management/core/http_sse/_models.py +17 -0
- auth0_python-5.0.0/src/auth0/management/core/jsonable_encoder.py +108 -0
- auth0_python-5.0.0/src/auth0/management/core/pagination.py +82 -0
- auth0_python-5.0.0/src/auth0/management/core/pydantic_utilities.py +361 -0
- auth0_python-5.0.0/src/auth0/management/core/query_encoder.py +58 -0
- auth0_python-5.0.0/src/auth0/management/core/remove_none_from_dict.py +11 -0
- auth0_python-5.0.0/src/auth0/management/core/request_options.py +35 -0
- auth0_python-5.0.0/src/auth0/management/core/serialization.py +276 -0
- auth0_python-5.0.0/src/auth0/management/custom_domains/__init__.py +4 -0
- auth0_python-5.0.0/src/auth0/management/custom_domains/client.py +801 -0
- auth0_python-5.0.0/src/auth0/management/custom_domains/raw_client.py +1501 -0
- auth0_python-5.0.0/src/auth0/management/device_credentials/__init__.py +4 -0
- auth0_python-5.0.0/src/auth0/management/device_credentials/client.py +431 -0
- auth0_python-5.0.0/src/auth0/management/device_credentials/raw_client.py +716 -0
- auth0_python-5.0.0/src/auth0/management/email_templates/__init__.py +4 -0
- auth0_python-5.0.0/src/auth0/management/email_templates/client.py +635 -0
- auth0_python-5.0.0/src/auth0/management/email_templates/raw_client.py +1075 -0
- auth0_python-5.0.0/src/auth0/management/emails/__init__.py +34 -0
- auth0_python-5.0.0/src/auth0/management/emails/client.py +63 -0
- auth0_python-5.0.0/src/auth0/management/emails/provider/__init__.py +4 -0
- auth0_python-5.0.0/src/auth0/management/emails/provider/client.py +602 -0
- auth0_python-5.0.0/src/auth0/management/emails/provider/raw_client.py +1084 -0
- auth0_python-5.0.0/src/auth0/management/emails/raw_client.py +13 -0
- auth0_python-5.0.0/src/auth0/management/environment.py +7 -0
- auth0_python-5.0.0/src/auth0/management/errors/__init__.py +68 -0
- auth0_python-5.0.0/src/auth0/management/errors/bad_request_error.py +10 -0
- auth0_python-5.0.0/src/auth0/management/errors/conflict_error.py +10 -0
- auth0_python-5.0.0/src/auth0/management/errors/content_too_large_error.py +10 -0
- auth0_python-5.0.0/src/auth0/management/errors/forbidden_error.py +10 -0
- auth0_python-5.0.0/src/auth0/management/errors/internal_server_error.py +10 -0
- auth0_python-5.0.0/src/auth0/management/errors/not_found_error.py +10 -0
- auth0_python-5.0.0/src/auth0/management/errors/payment_required_error.py +10 -0
- auth0_python-5.0.0/src/auth0/management/errors/precondition_failed_error.py +10 -0
- auth0_python-5.0.0/src/auth0/management/errors/service_unavailable_error.py +10 -0
- auth0_python-5.0.0/src/auth0/management/errors/too_many_requests_error.py +10 -0
- auth0_python-5.0.0/src/auth0/management/errors/unauthorized_error.py +10 -0
- auth0_python-5.0.0/src/auth0/management/event_streams/__init__.py +39 -0
- auth0_python-5.0.0/src/auth0/management/event_streams/client.py +635 -0
- auth0_python-5.0.0/src/auth0/management/event_streams/deliveries/__init__.py +4 -0
- auth0_python-5.0.0/src/auth0/management/event_streams/deliveries/client.py +273 -0
- auth0_python-5.0.0/src/auth0/management/event_streams/deliveries/raw_client.py +450 -0
- auth0_python-5.0.0/src/auth0/management/event_streams/raw_client.py +1147 -0
- auth0_python-5.0.0/src/auth0/management/event_streams/redeliveries/__init__.py +4 -0
- auth0_python-5.0.0/src/auth0/management/event_streams/redeliveries/client.py +242 -0
- auth0_python-5.0.0/src/auth0/management/event_streams/redeliveries/raw_client.py +449 -0
- auth0_python-5.0.0/src/auth0/management/event_streams/types/__init__.py +34 -0
- auth0_python-5.0.0/src/auth0/management/event_streams/types/event_streams_create_request.py +13 -0
- auth0_python-5.0.0/src/auth0/management/flows/__init__.py +34 -0
- auth0_python-5.0.0/src/auth0/management/flows/client.py +555 -0
- auth0_python-5.0.0/src/auth0/management/flows/executions/__init__.py +4 -0
- auth0_python-5.0.0/src/auth0/management/flows/executions/client.py +329 -0
- auth0_python-5.0.0/src/auth0/management/flows/executions/raw_client.py +595 -0
- auth0_python-5.0.0/src/auth0/management/flows/raw_client.py +1050 -0
- auth0_python-5.0.0/src/auth0/management/flows/vault/__init__.py +34 -0
- auth0_python-5.0.0/src/auth0/management/flows/vault/client.py +63 -0
- auth0_python-5.0.0/src/auth0/management/flows/vault/connections/__init__.py +4 -0
- auth0_python-5.0.0/src/auth0/management/flows/vault/connections/client.py +483 -0
- auth0_python-5.0.0/src/auth0/management/flows/vault/connections/raw_client.py +989 -0
- auth0_python-5.0.0/src/auth0/management/flows/vault/raw_client.py +13 -0
- auth0_python-5.0.0/src/auth0/management/forms/__init__.py +4 -0
- auth0_python-5.0.0/src/auth0/management/forms/client.py +626 -0
- auth0_python-5.0.0/src/auth0/management/forms/raw_client.py +1142 -0
- auth0_python-5.0.0/src/auth0/management/groups/__init__.py +34 -0
- auth0_python-5.0.0/src/auth0/management/groups/client.py +305 -0
- auth0_python-5.0.0/src/auth0/management/groups/members/__init__.py +4 -0
- auth0_python-5.0.0/src/auth0/management/groups/members/client.py +175 -0
- auth0_python-5.0.0/src/auth0/management/groups/members/raw_client.py +268 -0
- auth0_python-5.0.0/src/auth0/management/groups/raw_client.py +485 -0
- auth0_python-5.0.0/src/auth0/management/guardian/__init__.py +38 -0
- auth0_python-5.0.0/src/auth0/management/guardian/client.py +101 -0
- auth0_python-5.0.0/src/auth0/management/guardian/enrollments/__init__.py +4 -0
- auth0_python-5.0.0/src/auth0/management/guardian/enrollments/client.py +327 -0
- auth0_python-5.0.0/src/auth0/management/guardian/enrollments/raw_client.py +541 -0
- auth0_python-5.0.0/src/auth0/management/guardian/factors/__init__.py +39 -0
- auth0_python-5.0.0/src/auth0/management/guardian/factors/client.py +268 -0
- auth0_python-5.0.0/src/auth0/management/guardian/factors/duo/__init__.py +34 -0
- auth0_python-5.0.0/src/auth0/management/guardian/factors/duo/client.py +63 -0
- auth0_python-5.0.0/src/auth0/management/guardian/factors/duo/raw_client.py +13 -0
- auth0_python-5.0.0/src/auth0/management/guardian/factors/duo/settings/__init__.py +4 -0
- auth0_python-5.0.0/src/auth0/management/guardian/factors/duo/settings/client.py +279 -0
- auth0_python-5.0.0/src/auth0/management/guardian/factors/duo/settings/raw_client.py +521 -0
- auth0_python-5.0.0/src/auth0/management/guardian/factors/phone/__init__.py +4 -0
- auth0_python-5.0.0/src/auth0/management/guardian/factors/phone/client.py +690 -0
- auth0_python-5.0.0/src/auth0/management/guardian/factors/phone/raw_client.py +1317 -0
- auth0_python-5.0.0/src/auth0/management/guardian/factors/push_notification/__init__.py +4 -0
- auth0_python-5.0.0/src/auth0/management/guardian/factors/push_notification/client.py +1043 -0
- auth0_python-5.0.0/src/auth0/management/guardian/factors/push_notification/raw_client.py +2017 -0
- auth0_python-5.0.0/src/auth0/management/guardian/factors/raw_client.py +332 -0
- auth0_python-5.0.0/src/auth0/management/guardian/factors/sms/__init__.py +4 -0
- auth0_python-5.0.0/src/auth0/management/guardian/factors/sms/client.py +557 -0
- auth0_python-5.0.0/src/auth0/management/guardian/factors/sms/raw_client.py +1005 -0
- auth0_python-5.0.0/src/auth0/management/guardian/policies/__init__.py +4 -0
- auth0_python-5.0.0/src/auth0/management/guardian/policies/client.py +211 -0
- auth0_python-5.0.0/src/auth0/management/guardian/policies/raw_client.py +351 -0
- auth0_python-5.0.0/src/auth0/management/guardian/raw_client.py +13 -0
- auth0_python-5.0.0/src/auth0/management/hooks/__init__.py +34 -0
- auth0_python-5.0.0/src/auth0/management/hooks/client.py +623 -0
- auth0_python-5.0.0/src/auth0/management/hooks/raw_client.py +1179 -0
- auth0_python-5.0.0/src/auth0/management/hooks/secrets/__init__.py +4 -0
- auth0_python-5.0.0/src/auth0/management/hooks/secrets/client.py +376 -0
- auth0_python-5.0.0/src/auth0/management/hooks/secrets/raw_client.py +804 -0
- auth0_python-5.0.0/src/auth0/management/jobs/__init__.py +41 -0
- auth0_python-5.0.0/src/auth0/management/jobs/client.py +192 -0
- auth0_python-5.0.0/src/auth0/management/jobs/errors/__init__.py +34 -0
- auth0_python-5.0.0/src/auth0/management/jobs/errors/client.py +110 -0
- auth0_python-5.0.0/src/auth0/management/jobs/errors/raw_client.py +215 -0
- auth0_python-5.0.0/src/auth0/management/jobs/errors/types/__init__.py +34 -0
- auth0_python-5.0.0/src/auth0/management/jobs/errors/types/errors_get_response.py +8 -0
- auth0_python-5.0.0/src/auth0/management/jobs/raw_client.py +215 -0
- auth0_python-5.0.0/src/auth0/management/jobs/users_exports/__init__.py +4 -0
- auth0_python-5.0.0/src/auth0/management/jobs/users_exports/client.py +147 -0
- auth0_python-5.0.0/src/auth0/management/jobs/users_exports/raw_client.py +249 -0
- auth0_python-5.0.0/src/auth0/management/jobs/users_imports/__init__.py +4 -0
- auth0_python-5.0.0/src/auth0/management/jobs/users_imports/client.py +170 -0
- auth0_python-5.0.0/src/auth0/management/jobs/users_imports/raw_client.py +301 -0
- auth0_python-5.0.0/src/auth0/management/jobs/verification_email/__init__.py +4 -0
- auth0_python-5.0.0/src/auth0/management/jobs/verification_email/client.py +162 -0
- auth0_python-5.0.0/src/auth0/management/jobs/verification_email/raw_client.py +252 -0
- auth0_python-5.0.0/src/auth0/management/keys/__init__.py +38 -0
- auth0_python-5.0.0/src/auth0/management/keys/client.py +101 -0
- auth0_python-5.0.0/src/auth0/management/keys/custom_signing/__init__.py +4 -0
- auth0_python-5.0.0/src/auth0/management/keys/custom_signing/client.py +247 -0
- auth0_python-5.0.0/src/auth0/management/keys/custom_signing/raw_client.py +494 -0
- auth0_python-5.0.0/src/auth0/management/keys/encryption/__init__.py +4 -0
- auth0_python-5.0.0/src/auth0/management/keys/encryption/client.py +595 -0
- auth0_python-5.0.0/src/auth0/management/keys/encryption/raw_client.py +1313 -0
- auth0_python-5.0.0/src/auth0/management/keys/raw_client.py +13 -0
- auth0_python-5.0.0/src/auth0/management/keys/signing/__init__.py +4 -0
- auth0_python-5.0.0/src/auth0/management/keys/signing/client.py +313 -0
- auth0_python-5.0.0/src/auth0/management/keys/signing/raw_client.py +660 -0
- auth0_python-5.0.0/src/auth0/management/log_streams/__init__.py +4 -0
- auth0_python-5.0.0/src/auth0/management/log_streams/client.py +1125 -0
- auth0_python-5.0.0/src/auth0/management/log_streams/raw_client.py +1636 -0
- auth0_python-5.0.0/src/auth0/management/logs/__init__.py +4 -0
- auth0_python-5.0.0/src/auth0/management/logs/client.py +340 -0
- auth0_python-5.0.0/src/auth0/management/logs/raw_client.py +547 -0
- auth0_python-5.0.0/src/auth0/management/management_client.py +545 -0
- auth0_python-5.0.0/src/auth0/management/network_acls/__init__.py +4 -0
- auth0_python-5.0.0/src/auth0/management/network_acls/client.py +654 -0
- auth0_python-5.0.0/src/auth0/management/network_acls/raw_client.py +1332 -0
- auth0_python-5.0.0/src/auth0/management/organizations/__init__.py +40 -0
- auth0_python-5.0.0/src/auth0/management/organizations/client.py +779 -0
- auth0_python-5.0.0/src/auth0/management/organizations/client_grants/__init__.py +4 -0
- auth0_python-5.0.0/src/auth0/management/organizations/client_grants/client.py +361 -0
- auth0_python-5.0.0/src/auth0/management/organizations/client_grants/raw_client.py +701 -0
- auth0_python-5.0.0/src/auth0/management/organizations/discovery_domains/__init__.py +4 -0
- auth0_python-5.0.0/src/auth0/management/organizations/discovery_domains/client.py +643 -0
- auth0_python-5.0.0/src/auth0/management/organizations/discovery_domains/raw_client.py +1251 -0
- auth0_python-5.0.0/src/auth0/management/organizations/enabled_connections/__init__.py +4 -0
- auth0_python-5.0.0/src/auth0/management/organizations/enabled_connections/client.py +597 -0
- auth0_python-5.0.0/src/auth0/management/organizations/enabled_connections/raw_client.py +1027 -0
- auth0_python-5.0.0/src/auth0/management/organizations/invitations/__init__.py +4 -0
- auth0_python-5.0.0/src/auth0/management/organizations/invitations/client.py +594 -0
- auth0_python-5.0.0/src/auth0/management/organizations/invitations/raw_client.py +1000 -0
- auth0_python-5.0.0/src/auth0/management/organizations/members/__init__.py +34 -0
- auth0_python-5.0.0/src/auth0/management/organizations/members/client.py +406 -0
- auth0_python-5.0.0/src/auth0/management/organizations/members/raw_client.py +656 -0
- auth0_python-5.0.0/src/auth0/management/organizations/members/roles/__init__.py +4 -0
- auth0_python-5.0.0/src/auth0/management/organizations/members/roles/client.py +388 -0
- auth0_python-5.0.0/src/auth0/management/organizations/members/roles/raw_client.py +681 -0
- auth0_python-5.0.0/src/auth0/management/organizations/raw_client.py +1308 -0
- auth0_python-5.0.0/src/auth0/management/prompts/__init__.py +38 -0
- auth0_python-5.0.0/src/auth0/management/prompts/client.py +269 -0
- auth0_python-5.0.0/src/auth0/management/prompts/custom_text/__init__.py +4 -0
- auth0_python-5.0.0/src/auth0/management/prompts/custom_text/client.py +232 -0
- auth0_python-5.0.0/src/auth0/management/prompts/custom_text/raw_client.py +415 -0
- auth0_python-5.0.0/src/auth0/management/prompts/partials/__init__.py +4 -0
- auth0_python-5.0.0/src/auth0/management/prompts/partials/client.py +205 -0
- auth0_python-5.0.0/src/auth0/management/prompts/partials/raw_client.py +392 -0
- auth0_python-5.0.0/src/auth0/management/prompts/raw_client.py +372 -0
- auth0_python-5.0.0/src/auth0/management/prompts/rendering/__init__.py +4 -0
- auth0_python-5.0.0/src/auth0/management/prompts/rendering/client.py +558 -0
- auth0_python-5.0.0/src/auth0/management/prompts/rendering/raw_client.py +1055 -0
- auth0_python-5.0.0/src/auth0/management/refresh_tokens/__init__.py +4 -0
- auth0_python-5.0.0/src/auth0/management/refresh_tokens/client.py +277 -0
- auth0_python-5.0.0/src/auth0/management/refresh_tokens/raw_client.py +560 -0
- auth0_python-5.0.0/src/auth0/management/resource_servers/__init__.py +4 -0
- auth0_python-5.0.0/src/auth0/management/resource_servers/client.py +780 -0
- auth0_python-5.0.0/src/auth0/management/resource_servers/raw_client.py +1369 -0
- auth0_python-5.0.0/src/auth0/management/risk_assessments/__init__.py +34 -0
- auth0_python-5.0.0/src/auth0/management/risk_assessments/client.py +63 -0
- auth0_python-5.0.0/src/auth0/management/risk_assessments/raw_client.py +13 -0
- auth0_python-5.0.0/src/auth0/management/risk_assessments/settings/__init__.py +34 -0
- auth0_python-5.0.0/src/auth0/management/risk_assessments/settings/client.py +206 -0
- auth0_python-5.0.0/src/auth0/management/risk_assessments/settings/new_device/__init__.py +4 -0
- auth0_python-5.0.0/src/auth0/management/risk_assessments/settings/new_device/client.py +186 -0
- auth0_python-5.0.0/src/auth0/management/risk_assessments/settings/new_device/raw_client.py +396 -0
- auth0_python-5.0.0/src/auth0/management/risk_assessments/settings/raw_client.py +392 -0
- auth0_python-5.0.0/src/auth0/management/roles/__init__.py +34 -0
- auth0_python-5.0.0/src/auth0/management/roles/client.py +554 -0
- auth0_python-5.0.0/src/auth0/management/roles/permissions/__init__.py +4 -0
- auth0_python-5.0.0/src/auth0/management/roles/permissions/client.py +367 -0
- auth0_python-5.0.0/src/auth0/management/roles/permissions/raw_client.py +653 -0
- auth0_python-5.0.0/src/auth0/management/roles/raw_client.py +1057 -0
- auth0_python-5.0.0/src/auth0/management/roles/users/__init__.py +4 -0
- auth0_python-5.0.0/src/auth0/management/roles/users/client.py +274 -0
- auth0_python-5.0.0/src/auth0/management/roles/users/raw_client.py +503 -0
- auth0_python-5.0.0/src/auth0/management/rules/__init__.py +4 -0
- auth0_python-5.0.0/src/auth0/management/rules/client.py +605 -0
- auth0_python-5.0.0/src/auth0/management/rules/raw_client.py +1191 -0
- auth0_python-5.0.0/src/auth0/management/rules_configs/__init__.py +4 -0
- auth0_python-5.0.0/src/auth0/management/rules_configs/client.py +258 -0
- auth0_python-5.0.0/src/auth0/management/rules_configs/raw_client.py +461 -0
- auth0_python-5.0.0/src/auth0/management/self_service_profiles/__init__.py +34 -0
- auth0_python-5.0.0/src/auth0/management/self_service_profiles/client.py +628 -0
- auth0_python-5.0.0/src/auth0/management/self_service_profiles/custom_text/__init__.py +4 -0
- auth0_python-5.0.0/src/auth0/management/self_service_profiles/custom_text/client.py +259 -0
- auth0_python-5.0.0/src/auth0/management/self_service_profiles/custom_text/raw_client.py +429 -0
- auth0_python-5.0.0/src/auth0/management/self_service_profiles/raw_client.py +1231 -0
- auth0_python-5.0.0/src/auth0/management/self_service_profiles/sso_ticket/__init__.py +4 -0
- auth0_python-5.0.0/src/auth0/management/self_service_profiles/sso_ticket/client.py +291 -0
- auth0_python-5.0.0/src/auth0/management/self_service_profiles/sso_ticket/raw_client.py +460 -0
- auth0_python-5.0.0/src/auth0/management/sessions/__init__.py +4 -0
- auth0_python-5.0.0/src/auth0/management/sessions/client.py +341 -0
- auth0_python-5.0.0/src/auth0/management/sessions/raw_client.py +730 -0
- auth0_python-5.0.0/src/auth0/management/stats/__init__.py +4 -0
- auth0_python-5.0.0/src/auth0/management/stats/client.py +195 -0
- auth0_python-5.0.0/src/auth0/management/stats/raw_client.py +352 -0
- auth0_python-5.0.0/src/auth0/management/supplemental_signals/__init__.py +4 -0
- auth0_python-5.0.0/src/auth0/management/supplemental_signals/client.py +180 -0
- auth0_python-5.0.0/src/auth0/management/supplemental_signals/raw_client.py +369 -0
- auth0_python-5.0.0/src/auth0/management/tenants/__init__.py +34 -0
- auth0_python-5.0.0/src/auth0/management/tenants/client.py +63 -0
- auth0_python-5.0.0/src/auth0/management/tenants/raw_client.py +13 -0
- auth0_python-5.0.0/src/auth0/management/tenants/settings/__init__.py +4 -0
- auth0_python-5.0.0/src/auth0/management/tenants/settings/client.py +542 -0
- auth0_python-5.0.0/src/auth0/management/tenants/settings/raw_client.py +768 -0
- auth0_python-5.0.0/src/auth0/management/tickets/__init__.py +4 -0
- auth0_python-5.0.0/src/auth0/management/tickets/client.py +364 -0
- auth0_python-5.0.0/src/auth0/management/tickets/raw_client.py +607 -0
- auth0_python-5.0.0/src/auth0/management/token_exchange_profiles/__init__.py +4 -0
- auth0_python-5.0.0/src/auth0/management/token_exchange_profiles/client.py +543 -0
- auth0_python-5.0.0/src/auth0/management/token_exchange_profiles/raw_client.py +1039 -0
- auth0_python-5.0.0/src/auth0/management/token_provider.py +142 -0
- auth0_python-5.0.0/src/auth0/management/types/__init__.py +6928 -0
- auth0_python-5.0.0/src/auth0/management/types/action.py +98 -0
- auth0_python-5.0.0/src/auth0/management/types/action_base.py +53 -0
- auth0_python-5.0.0/src/auth0/management/types/action_binding.py +46 -0
- auth0_python-5.0.0/src/auth0/management/types/action_binding_ref.py +28 -0
- auth0_python-5.0.0/src/auth0/management/types/action_binding_ref_type_enum.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/action_binding_type_enum.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/action_binding_with_ref.py +30 -0
- auth0_python-5.0.0/src/auth0/management/types/action_build_status_enum.py +7 -0
- auth0_python-5.0.0/src/auth0/management/types/action_deployed_version.py +101 -0
- auth0_python-5.0.0/src/auth0/management/types/action_error.py +25 -0
- auth0_python-5.0.0/src/auth0/management/types/action_execution_result.py +39 -0
- auth0_python-5.0.0/src/auth0/management/types/action_execution_status_enum.py +7 -0
- auth0_python-5.0.0/src/auth0/management/types/action_module_action.py +43 -0
- auth0_python-5.0.0/src/auth0/management/types/action_module_dependency.py +27 -0
- auth0_python-5.0.0/src/auth0/management/types/action_module_dependency_request.py +27 -0
- auth0_python-5.0.0/src/auth0/management/types/action_module_list_item.py +70 -0
- auth0_python-5.0.0/src/auth0/management/types/action_module_reference.py +41 -0
- auth0_python-5.0.0/src/auth0/management/types/action_module_secret.py +28 -0
- auth0_python-5.0.0/src/auth0/management/types/action_module_secret_request.py +27 -0
- auth0_python-5.0.0/src/auth0/management/types/action_module_version.py +55 -0
- auth0_python-5.0.0/src/auth0/management/types/action_module_version_reference.py +54 -0
- auth0_python-5.0.0/src/auth0/management/types/action_secret_request.py +27 -0
- auth0_python-5.0.0/src/auth0/management/types/action_secret_response.py +28 -0
- auth0_python-5.0.0/src/auth0/management/types/action_trigger.py +48 -0
- auth0_python-5.0.0/src/auth0/management/types/action_trigger_compatible_trigger.py +24 -0
- auth0_python-5.0.0/src/auth0/management/types/action_trigger_type_enum.py +3 -0
- auth0_python-5.0.0/src/auth0/management/types/action_version.py +97 -0
- auth0_python-5.0.0/src/auth0/management/types/action_version_build_status_enum.py +7 -0
- auth0_python-5.0.0/src/auth0/management/types/action_version_dependency.py +36 -0
- auth0_python-5.0.0/src/auth0/management/types/acul_client_filter.py +8 -0
- auth0_python-5.0.0/src/auth0/management/types/acul_client_filter_by_id.py +22 -0
- auth0_python-5.0.0/src/auth0/management/types/acul_client_filter_by_metadata.py +20 -0
- auth0_python-5.0.0/src/auth0/management/types/acul_client_metadata.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/acul_configs.py +7 -0
- auth0_python-5.0.0/src/auth0/management/types/acul_configs_item.py +44 -0
- auth0_python-5.0.0/src/auth0/management/types/acul_context_configuration.py +7 -0
- auth0_python-5.0.0/src/auth0/management/types/acul_context_configuration_item.py +7 -0
- auth0_python-5.0.0/src/auth0/management/types/acul_context_enum.py +26 -0
- auth0_python-5.0.0/src/auth0/management/types/acul_domain_filter.py +8 -0
- auth0_python-5.0.0/src/auth0/management/types/acul_domain_filter_by_id.py +22 -0
- auth0_python-5.0.0/src/auth0/management/types/acul_domain_filter_by_metadata.py +20 -0
- auth0_python-5.0.0/src/auth0/management/types/acul_domain_metadata.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/acul_filters.py +41 -0
- auth0_python-5.0.0/src/auth0/management/types/acul_head_tag.py +27 -0
- auth0_python-5.0.0/src/auth0/management/types/acul_head_tag_attributes.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/acul_head_tag_content.py +3 -0
- auth0_python-5.0.0/src/auth0/management/types/acul_match_type_enum.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/acul_organization_filter.py +8 -0
- auth0_python-5.0.0/src/auth0/management/types/acul_organization_filter_by_id.py +22 -0
- auth0_python-5.0.0/src/auth0/management/types/acul_organization_filter_by_metadata.py +20 -0
- auth0_python-5.0.0/src/auth0/management/types/acul_organization_metadata.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/acul_rendering_mode_enum.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/add_organization_connection_response_content.py +40 -0
- auth0_python-5.0.0/src/auth0/management/types/anomaly_ip_format.py +3 -0
- auth0_python-5.0.0/src/auth0/management/types/app_metadata.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/assessors_type_enum.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/associate_organization_client_grant_response_content.py +44 -0
- auth0_python-5.0.0/src/auth0/management/types/async_approval_notifications_channels_enum.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/attack_protection_captcha_arkose_response_content.py +37 -0
- auth0_python-5.0.0/src/auth0/management/types/attack_protection_captcha_auth_challenge_request.py +22 -0
- auth0_python-5.0.0/src/auth0/management/types/attack_protection_captcha_auth_challenge_response_content.py +22 -0
- auth0_python-5.0.0/src/auth0/management/types/attack_protection_captcha_friendly_captcha_response_content.py +22 -0
- auth0_python-5.0.0/src/auth0/management/types/attack_protection_captcha_hcaptcha_response_content.py +22 -0
- auth0_python-5.0.0/src/auth0/management/types/attack_protection_captcha_provider_id.py +16 -0
- auth0_python-5.0.0/src/auth0/management/types/attack_protection_captcha_recaptcha_enterprise_response_content.py +27 -0
- auth0_python-5.0.0/src/auth0/management/types/attack_protection_captcha_recaptcha_v_2_response_content.py +22 -0
- auth0_python-5.0.0/src/auth0/management/types/attack_protection_captcha_simple_captcha_response_content.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/attack_protection_update_captcha_arkose.py +42 -0
- auth0_python-5.0.0/src/auth0/management/types/attack_protection_update_captcha_friendly_captcha.py +27 -0
- auth0_python-5.0.0/src/auth0/management/types/attack_protection_update_captcha_hcaptcha.py +27 -0
- auth0_python-5.0.0/src/auth0/management/types/attack_protection_update_captcha_recaptcha_enterprise.py +32 -0
- auth0_python-5.0.0/src/auth0/management/types/attack_protection_update_captcha_recaptcha_v_2.py +27 -0
- auth0_python-5.0.0/src/auth0/management/types/authentication_method_type_enum.py +20 -0
- auth0_python-5.0.0/src/auth0/management/types/authentication_type_enum.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/bot_detection_allowlist.py +7 -0
- auth0_python-5.0.0/src/auth0/management/types/bot_detection_challenge_policy_password_flow_enum.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/bot_detection_challenge_policy_password_reset_flow_enum.py +7 -0
- auth0_python-5.0.0/src/auth0/management/types/bot_detection_challenge_policy_passwordless_flow_enum.py +7 -0
- auth0_python-5.0.0/src/auth0/management/types/bot_detection_cidr_block.py +3 -0
- auth0_python-5.0.0/src/auth0/management/types/bot_detection_i_pv_4.py +3 -0
- auth0_python-5.0.0/src/auth0/management/types/bot_detection_i_pv_6.py +3 -0
- auth0_python-5.0.0/src/auth0/management/types/bot_detection_i_pv_6_cidr_block.py +3 -0
- auth0_python-5.0.0/src/auth0/management/types/bot_detection_ip_address_or_cidr_block.py +3 -0
- auth0_python-5.0.0/src/auth0/management/types/bot_detection_level_enum.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/bot_detection_monitoring_mode_enabled.py +3 -0
- auth0_python-5.0.0/src/auth0/management/types/branding_colors.py +29 -0
- auth0_python-5.0.0/src/auth0/management/types/branding_font.py +26 -0
- auth0_python-5.0.0/src/auth0/management/types/branding_page_background.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/branding_theme_borders.py +56 -0
- auth0_python-5.0.0/src/auth0/management/types/branding_theme_borders_buttons_style_enum.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/branding_theme_borders_inputs_style_enum.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/branding_theme_colors.py +114 -0
- auth0_python-5.0.0/src/auth0/management/types/branding_theme_colors_captcha_widget_theme_enum.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/branding_theme_font_body_text.py +31 -0
- auth0_python-5.0.0/src/auth0/management/types/branding_theme_font_buttons_text.py +31 -0
- auth0_python-5.0.0/src/auth0/management/types/branding_theme_font_input_labels.py +31 -0
- auth0_python-5.0.0/src/auth0/management/types/branding_theme_font_links.py +31 -0
- auth0_python-5.0.0/src/auth0/management/types/branding_theme_font_links_style_enum.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/branding_theme_font_subtitle.py +31 -0
- auth0_python-5.0.0/src/auth0/management/types/branding_theme_font_title.py +31 -0
- auth0_python-5.0.0/src/auth0/management/types/branding_theme_fonts.py +42 -0
- auth0_python-5.0.0/src/auth0/management/types/branding_theme_page_background.py +30 -0
- auth0_python-5.0.0/src/auth0/management/types/branding_theme_page_background_page_layout_enum.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/branding_theme_widget.py +34 -0
- auth0_python-5.0.0/src/auth0/management/types/branding_theme_widget_header_text_alignment_enum.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/branding_theme_widget_logo_position_enum.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/branding_theme_widget_social_buttons_layout_enum.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/breached_password_detection_admin_notification_frequency_enum.py +7 -0
- auth0_python-5.0.0/src/auth0/management/types/breached_password_detection_method_enum.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/breached_password_detection_pre_change_password_shields_enum.py +7 -0
- auth0_python-5.0.0/src/auth0/management/types/breached_password_detection_pre_change_password_stage.py +28 -0
- auth0_python-5.0.0/src/auth0/management/types/breached_password_detection_pre_user_registration_shields_enum.py +7 -0
- auth0_python-5.0.0/src/auth0/management/types/breached_password_detection_pre_user_registration_stage.py +28 -0
- auth0_python-5.0.0/src/auth0/management/types/breached_password_detection_shields_enum.py +7 -0
- auth0_python-5.0.0/src/auth0/management/types/breached_password_detection_stage.py +28 -0
- auth0_python-5.0.0/src/auth0/management/types/brute_force_protection_mode_enum.py +7 -0
- auth0_python-5.0.0/src/auth0/management/types/brute_force_protection_shields_enum.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/bulk_update_acul_response_content.py +20 -0
- auth0_python-5.0.0/src/auth0/management/types/certificate_subject_dn_credential.py +36 -0
- auth0_python-5.0.0/src/auth0/management/types/certificate_subject_dn_credential_type_enum.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/change_password_ticket_identity.py +33 -0
- auth0_python-5.0.0/src/auth0/management/types/change_password_ticket_response_content.py +24 -0
- auth0_python-5.0.0/src/auth0/management/types/client.py +235 -0
- auth0_python-5.0.0/src/auth0/management/types/client_addon_aws.py +36 -0
- auth0_python-5.0.0/src/auth0/management/types/client_addon_azure_blob.py +98 -0
- auth0_python-5.0.0/src/auth0/management/types/client_addon_azure_sb.py +54 -0
- auth0_python-5.0.0/src/auth0/management/types/client_addon_box.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/client_addon_cloud_bees.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/client_addon_concur.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/client_addon_dropbox.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/client_addon_echo_sign.py +26 -0
- auth0_python-5.0.0/src/auth0/management/types/client_addon_egnyte.py +26 -0
- auth0_python-5.0.0/src/auth0/management/types/client_addon_firebase.py +46 -0
- auth0_python-5.0.0/src/auth0/management/types/client_addon_layer.py +52 -0
- auth0_python-5.0.0/src/auth0/management/types/client_addon_mscrm.py +26 -0
- auth0_python-5.0.0/src/auth0/management/types/client_addon_new_relic.py +26 -0
- auth0_python-5.0.0/src/auth0/management/types/client_addon_oag.py +21 -0
- auth0_python-5.0.0/src/auth0/management/types/client_addon_office_365.py +31 -0
- auth0_python-5.0.0/src/auth0/management/types/client_addon_rms.py +26 -0
- auth0_python-5.0.0/src/auth0/management/types/client_addon_salesforce.py +26 -0
- auth0_python-5.0.0/src/auth0/management/types/client_addon_salesforce_api.py +45 -0
- auth0_python-5.0.0/src/auth0/management/types/client_addon_salesforce_sandbox_api.py +45 -0
- auth0_python-5.0.0/src/auth0/management/types/client_addon_saml.py +63 -0
- auth0_python-5.0.0/src/auth0/management/types/client_addon_saml_mapping.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/client_addon_sapapi.py +61 -0
- auth0_python-5.0.0/src/auth0/management/types/client_addon_sentry.py +31 -0
- auth0_python-5.0.0/src/auth0/management/types/client_addon_share_point.py +29 -0
- auth0_python-5.0.0/src/auth0/management/types/client_addon_share_point_external_url.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/client_addon_slack.py +26 -0
- auth0_python-5.0.0/src/auth0/management/types/client_addon_spring_cm.py +26 -0
- auth0_python-5.0.0/src/auth0/management/types/client_addon_sso_integration.py +27 -0
- auth0_python-5.0.0/src/auth0/management/types/client_addon_wams.py +26 -0
- auth0_python-5.0.0/src/auth0/management/types/client_addon_ws_fed.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/client_addon_zendesk.py +30 -0
- auth0_python-5.0.0/src/auth0/management/types/client_addon_zoom.py +26 -0
- auth0_python-5.0.0/src/auth0/management/types/client_addons.py +86 -0
- auth0_python-5.0.0/src/auth0/management/types/client_app_type_enum.py +34 -0
- auth0_python-5.0.0/src/auth0/management/types/client_async_approval_notifications_channels_api_patch_configuration.py +7 -0
- auth0_python-5.0.0/src/auth0/management/types/client_async_approval_notifications_channels_api_post_configuration.py +7 -0
- auth0_python-5.0.0/src/auth0/management/types/client_authentication_method.py +28 -0
- auth0_python-5.0.0/src/auth0/management/types/client_authentication_method_private_key_jwt.py +24 -0
- auth0_python-5.0.0/src/auth0/management/types/client_authentication_method_private_key_jwt_credentials.py +7 -0
- auth0_python-5.0.0/src/auth0/management/types/client_authentication_method_self_signed_tls_client_auth.py +26 -0
- auth0_python-5.0.0/src/auth0/management/types/client_authentication_method_self_signed_tls_client_auth_credentials.py +7 -0
- auth0_python-5.0.0/src/auth0/management/types/client_authentication_method_tls_client_auth.py +24 -0
- auth0_python-5.0.0/src/auth0/management/types/client_authentication_method_tls_client_auth_credentials.py +7 -0
- auth0_python-5.0.0/src/auth0/management/types/client_compliance_level_enum.py +8 -0
- auth0_python-5.0.0/src/auth0/management/types/client_create_authentication_method.py +30 -0
- auth0_python-5.0.0/src/auth0/management/types/client_create_authentication_method_private_key_jwt.py +26 -0
- auth0_python-5.0.0/src/auth0/management/types/client_create_authentication_method_private_key_jwt_credentials.py +7 -0
- auth0_python-5.0.0/src/auth0/management/types/client_create_authentication_method_tls_client_auth.py +26 -0
- auth0_python-5.0.0/src/auth0/management/types/client_create_authentication_method_tls_client_auth_credentials.py +7 -0
- auth0_python-5.0.0/src/auth0/management/types/client_credential.py +66 -0
- auth0_python-5.0.0/src/auth0/management/types/client_credential_algorithm_enum.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/client_credential_type_enum.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/client_default_organization.py +32 -0
- auth0_python-5.0.0/src/auth0/management/types/client_default_organization_flows_enum.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/client_encryption_key.py +36 -0
- auth0_python-5.0.0/src/auth0/management/types/client_grant_allow_any_organization_enum.py +3 -0
- auth0_python-5.0.0/src/auth0/management/types/client_grant_organization_nullable_usage_enum.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/client_grant_organization_usage_enum.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/client_grant_response_content.py +61 -0
- auth0_python-5.0.0/src/auth0/management/types/client_grant_subject_type_enum.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/client_jwt_configuration.py +36 -0
- auth0_python-5.0.0/src/auth0/management/types/client_jwt_configuration_scopes.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/client_metadata.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/client_mobile.py +26 -0
- auth0_python-5.0.0/src/auth0/management/types/client_mobile_android.py +35 -0
- auth0_python-5.0.0/src/auth0/management/types/client_mobilei_os.py +31 -0
- auth0_python-5.0.0/src/auth0/management/types/client_oidc_backchannel_logout_initiators.py +26 -0
- auth0_python-5.0.0/src/auth0/management/types/client_oidc_backchannel_logout_initiators_enum.py +18 -0
- auth0_python-5.0.0/src/auth0/management/types/client_oidc_backchannel_logout_initiators_mode_enum.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/client_oidc_backchannel_logout_session_metadata.py +26 -0
- auth0_python-5.0.0/src/auth0/management/types/client_oidc_backchannel_logout_settings.py +31 -0
- auth0_python-5.0.0/src/auth0/management/types/client_organization_discovery_enum.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/client_organization_require_behavior_enum.py +7 -0
- auth0_python-5.0.0/src/auth0/management/types/client_organization_require_behavior_patch_enum.py +7 -0
- auth0_python-5.0.0/src/auth0/management/types/client_organization_usage_enum.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/client_organization_usage_patch_enum.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/client_refresh_token_configuration.py +56 -0
- auth0_python-5.0.0/src/auth0/management/types/client_refresh_token_policy.py +27 -0
- auth0_python-5.0.0/src/auth0/management/types/client_session_transfer_allowed_authentication_methods_enum.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/client_session_transfer_configuration.py +53 -0
- auth0_python-5.0.0/src/auth0/management/types/client_session_transfer_device_binding_enum.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/client_signed_request_object_with_credential_id.py +29 -0
- auth0_python-5.0.0/src/auth0/management/types/client_signed_request_object_with_public_key.py +29 -0
- auth0_python-5.0.0/src/auth0/management/types/client_signing_key.py +36 -0
- auth0_python-5.0.0/src/auth0/management/types/client_signing_keys.py +7 -0
- auth0_python-5.0.0/src/auth0/management/types/client_token_endpoint_auth_method_enum.py +7 -0
- auth0_python-5.0.0/src/auth0/management/types/client_token_endpoint_auth_method_or_null_enum.py +7 -0
- auth0_python-5.0.0/src/auth0/management/types/client_token_exchange_configuration.py +27 -0
- auth0_python-5.0.0/src/auth0/management/types/client_token_exchange_configuration_or_null.py +27 -0
- auth0_python-5.0.0/src/auth0/management/types/client_token_exchange_type_enum.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/connected_account.py +55 -0
- auth0_python-5.0.0/src/auth0/management/types/connected_account_access_type_enum.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_acr_values_supported.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_admin_access_token_expires_in_google_apps.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_admin_access_token_google_apps.py +3 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_admin_refresh_token_google_apps.py +3 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_agent_ipad.py +3 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_agent_mode_ad.py +3 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_agent_version_ad.py +3 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_allowed_audiences_google_o_auth_2.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_api_behavior_enum.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_api_enable_users.py +3 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_api_enable_users_google_apps.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_app_domain_azure_ad.py +3 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_attribute_identifier.py +25 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_attribute_map_attributes.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_attribute_map_oidc.py +28 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_attribute_map_okta.py +28 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_attribute_map_userinfo_scope.py +3 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_attributes.py +28 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_auth_params_additional_properties_o_auth_2.py +3 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_auth_params_email.py +3 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_auth_params_map.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_auth_params_o_auth_2.py +7 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_authentication_methods.py +30 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_authentication_purpose.py +23 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_authorization_endpoint.py +3 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_authorization_endpoint_o_auth_2.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_brute_force_protection.py +3 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_calculated_thumbprint_saml.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_certs_ad.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_claim_types_supported.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_claims_locales_supported.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_claims_parameter_supported.py +3 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_claims_supported.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_client_id.py +3 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_client_id_azure_ad.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_client_id_facebook.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_client_id_google_apps.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_client_id_google_o_auth_2.py +3 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_client_id_o_auth_2.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_client_id_oidc.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_client_protocol_saml.py +7 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_client_secret.py +3 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_client_secret_azure_ad.py +3 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_client_secret_facebook.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_client_secret_google_apps.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_client_secret_google_o_auth_2.py +3 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_client_secret_o_auth_2.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_client_secret_oidc.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_common.py +26 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_configuration.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_connected_accounts_purpose.py +24 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_connected_accounts_purpose_xaa.py +24 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_connection_settings.py +24 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_connection_settings_pkce_enum.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_custom_headers_o_auth_2.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_custom_scripts.py +31 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_debug_saml.py +3 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_decryption_key_saml.py +7 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_decryption_key_saml_cert.py +31 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_destination_url_saml.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_digest_algorithm_enum_saml.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_digest_algorithm_saml.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_disable_self_service_change_password.py +3 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_disable_signup.py +3 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_disable_signup_sms.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_discovery_url.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_display_name.py +3 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_display_values_supported.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_domain_aliases.py +7 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_domain_aliases_ad.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_domain_aliases_azure_ad.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_domain_aliases_items_one.py +3 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_domain_aliases_saml.py +7 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_domain_google_apps.py +3 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_domain_okta.py +3 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_email_body_email.py +3 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_email_email.py +37 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_email_email_syntax.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_email_from_email.py +3 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_email_otp_authentication_method.py +26 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_email_subject_email.py +3 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_enable_script_context.py +3 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_enabled_client.py +22 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_enabled_clients.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_enabled_database_customization.py +3 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_end_session_endpoint.py +3 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_end_session_endpoint_o_auth_2.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_entity_id_saml.py +3 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_ext_admin.py +3 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_ext_agreed_terms.py +3 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_ext_agreed_terms_google_apps.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_ext_assigned_plans.py +3 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_ext_groups.py +3 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_ext_groups_azure_ad.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_ext_groups_google_apps.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_ext_is_admin_google_apps.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_ext_is_suspended.py +3 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_ext_is_suspended_google_apps.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_ext_profile.py +3 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_federated_connections_access_tokens.py +26 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_fields_map.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_fields_map_saml.py +7 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_fields_map_saml_value.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_for_list.py +61 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_for_organization.py +41 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_forward_req_info_sms.py +3 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_freeform_scopes_google_o_auth_2.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_from_sms.py +3 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_gateway_authentication.py +50 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_gateway_authentication_audience_sms.py +3 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_gateway_authentication_method_sms.py +3 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_gateway_authentication_sms.py +42 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_gateway_authentication_subject_sms.py +3 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_gateway_url_sms.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_global_token_revocation_jwt_iss_saml.py +3 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_global_token_revocation_jwt_sub_saml.py +3 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_grant_types_supported.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_handle_login_from_social_google_apps.py +3 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_https_url_with_http_fallback.py +3 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_https_url_with_http_fallback_2048.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_https_url_with_http_fallback_255.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_icon_url.py +3 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_icon_url_adfs.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_icon_url_azure_ad.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_icon_url_google_apps.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_icon_url_google_o_auth_2.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_icon_url_saml.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_id.py +3 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_id_token_encryption_alg_values_supported.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_id_token_encryption_enc_values_supported.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_id_token_signed_response_alg_enum.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_id_token_signed_response_algs.py +7 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_id_token_signing_alg_values_supported.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_identifier_precedence.py +7 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_identifier_precedence_enum.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_identity_api_azure_ad.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_identity_api_enum_azure_ad.py +7 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_identity_provider_enum.py +71 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_import_mode.py +3 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_ips_ad.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_is_domain_connection.py +3 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_issuer.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_jwks_uri.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_key.py +75 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_key_use_enum.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_mapping_mode_enum_oidc.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_mapping_mode_enum_okta.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_max_groups_to_retrieve.py +3 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_messaging_service_sid_sms.py +3 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_metadata_url_saml.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_metadata_xml.py +3 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_metadata_xml_adfs.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_metadata_xml_saml.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_mfa.py +31 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_name.py +3 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_name_prefix_template.py +3 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_non_persistent_attrs.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_op_policy_uri.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_op_tos_uri.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_options.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_options_ad.py +81 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_options_adfs.py +64 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_options_amazon.py +22 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_options_aol.py +22 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_options_apple.py +67 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_options_auth_0.py +73 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_options_auth_0_oidc.py +26 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_options_azure_ad.py +294 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_options_baidu.py +22 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_options_bitbucket.py +22 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_options_bitly.py +22 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_options_box.py +22 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_options_client_id_github.py +3 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_options_client_id_twitter.py +3 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_options_client_secret_github.py +3 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_options_client_secret_twitter.py +3 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_options_common.py +24 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_options_common_oidc.py +62 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_options_common_saml.py +68 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_options_custom.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_options_daccount.py +22 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_options_deflate_saml.py +3 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_options_dropbox.py +22 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_options_dwolla.py +22 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_options_email.py +42 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_options_evernote.py +22 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_options_exact.py +22 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_options_facebook.py +239 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_options_fitbit.py +22 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_options_flickr.py +22 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_options_freeform_scopes_github.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_options_git_hub.py +134 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_options_google_apps.py +86 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_options_google_o_auth_2.py +363 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_options_idp_initiated_client_protocol_enum_saml.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_options_idpinitiated_saml.py +38 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_options_instagram.py +22 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_options_ip.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_options_line.py +22 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_options_linkedin.py +39 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_options_miicard.py +22 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_options_o_auth_1.py +26 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_options_o_auth_1_common.py +33 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_options_o_auth_2.py +78 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_options_o_auth_2_common.py +29 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_options_office_365.py +26 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_options_oidc.py +30 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_options_oidc_metadata.py +108 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_options_okta.py +30 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_options_paypal.py +22 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_options_ping_federate.py +34 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_options_planning_center.py +22 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_options_protocol_enum_twitter.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_options_renren.py +22 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_options_salesforce.py +32 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_options_saml.py +77 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_options_scope_github.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_options_scope_twitter.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_options_sharepoint.py +22 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_options_shop.py +22 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_options_shopify.py +22 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_options_sms.py +61 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_options_soundcloud.py +22 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_options_thirty_seven_signals.py +22 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_options_twitter.py +55 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_options_untappd.py +22 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_options_vkontakte.py +22 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_options_weibo.py +22 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_options_windows_live.py +134 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_options_wordpress.py +22 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_options_yahoo.py +22 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_options_yammer.py +22 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_options_yandex.py +22 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_passkey_authentication_method.py +26 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_passkey_challenge_ui_enum.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_passkey_options.py +33 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_password_authentication_method.py +31 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_password_complexity_options.py +26 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_password_dictionary_options.py +27 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_password_history_options.py +24 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_password_no_personal_info_options.py +23 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_password_policy_enum.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_phone_otp_authentication_method.py +26 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_ping_federate_base_url.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_ping_federate_base_url_ping_federate.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_profile.py +32 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_profile_config.py +21 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_profile_enabled_features.py +7 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_profile_id.py +3 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_profile_name.py +3 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_profile_organization.py +28 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_profile_organization_assign_membership_on_login_enum.py +7 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_profile_organization_show_as_button_enum.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_profile_strategy_override.py +26 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_profile_strategy_overrides.py +35 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_profile_strategy_overrides_connection_config.py +21 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_profile_strategy_overrides_enabled_features.py +7 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_profile_template.py +34 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_profile_template_item.py +30 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_properties_options.py +93 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_protocol_binding_enum_saml.py +10 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_protocol_binding_saml.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_provider_enum_sms.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_provider_sms.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_provisioning_ticket_url.py +3 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_purposes.py +26 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_realm_fallback.py +3 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_realms.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_recipient_url_saml.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_registration_endpoint.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_request_object_encryption_alg_values_supported.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_request_object_encryption_enc_values_supported.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_request_object_signing_alg_values_supported.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_request_parameter_supported.py +3 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_request_template_saml.py +3 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_request_uri_parameter_supported.py +3 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_require_request_uri_registration.py +3 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_requires_username.py +3 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_response_common.py +23 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_response_content_ad.py +30 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_response_content_ad_strategy.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_response_content_adfs.py +32 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_response_content_adfs_strategy.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_response_content_amazon.py +28 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_response_content_amazon_strategy.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_response_content_aol.py +28 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_response_content_aol_strategy.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_response_content_apple.py +28 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_response_content_apple_strategy.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_response_content_auth_0.py +28 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_response_content_auth_0_oidc.py +28 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_response_content_auth_0_oidc_strategy.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_response_content_auth_0_strategy.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_response_content_azure_ad.py +32 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_response_content_azure_ad_strategy.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_response_content_baidu.py +28 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_response_content_baidu_strategy.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_response_content_bitbucket.py +28 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_response_content_bitbucket_strategy.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_response_content_bitly.py +28 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_response_content_bitly_strategy.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_response_content_box.py +28 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_response_content_box_strategy.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_response_content_custom.py +30 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_response_content_custom_strategy.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_response_content_daccount.py +28 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_response_content_daccount_strategy.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_response_content_dropbox.py +28 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_response_content_dropbox_strategy.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_response_content_dwolla.py +28 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_response_content_dwolla_strategy.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_response_content_email.py +28 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_response_content_email_strategy.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_response_content_evernote.py +28 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_response_content_evernote_sandbox.py +28 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_response_content_evernote_sandbox_strategy.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_response_content_evernote_strategy.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_response_content_exact.py +28 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_response_content_exact_strategy.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_response_content_facebook.py +28 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_response_content_facebook_strategy.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_response_content_fitbit.py +28 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_response_content_fitbit_strategy.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_response_content_flickr.py +28 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_response_content_flickr_strategy.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_response_content_git_hub.py +28 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_response_content_git_hub_strategy.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_response_content_google_apps.py +32 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_response_content_google_apps_strategy.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_response_content_google_o_auth_2.py +28 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_response_content_google_o_auth_2_strategy.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_response_content_instagram.py +28 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_response_content_instagram_strategy.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_response_content_ip.py +30 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_response_content_ip_strategy.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_response_content_line.py +28 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_response_content_line_strategy.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_response_content_linkedin.py +28 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_response_content_linkedin_strategy.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_response_content_miicard.py +28 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_response_content_miicard_strategy.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_response_content_o_auth_1.py +28 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_response_content_o_auth_1_strategy.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_response_content_o_auth_2.py +28 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_response_content_o_auth_2_strategy.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_response_content_office_365.py +32 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_response_content_office_365_strategy.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_response_content_oidc.py +33 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_response_content_oidc_strategy.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_response_content_okta.py +30 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_response_content_okta_strategy.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_response_content_paypal.py +28 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_response_content_paypal_sandbox.py +28 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_response_content_paypal_sandbox_strategy.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_response_content_paypal_strategy.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_response_content_ping_federate.py +32 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_response_content_ping_federate_strategy.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_response_content_planning_center.py +28 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_response_content_planning_center_strategy.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_response_content_renren.py +28 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_response_content_renren_strategy.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_response_content_salesforce.py +28 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_response_content_salesforce_community.py +30 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_response_content_salesforce_community_strategy.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_response_content_salesforce_sandbox.py +28 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_response_content_salesforce_sandbox_strategy.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_response_content_salesforce_strategy.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_response_content_saml.py +32 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_response_content_saml_strategy.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_response_content_sharepoint.py +30 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_response_content_sharepoint_strategy.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_response_content_shop.py +28 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_response_content_shop_strategy.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_response_content_shopify.py +28 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_response_content_shopify_strategy.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_response_content_sms.py +28 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_response_content_sms_strategy.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_response_content_soundcloud.py +28 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_response_content_soundcloud_strategy.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_response_content_thirty_seven_signals.py +30 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_response_content_thirty_seven_signals_strategy.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_response_content_twitter.py +28 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_response_content_twitter_strategy.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_response_content_untappd.py +28 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_response_content_untappd_strategy.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_response_content_vkontakte.py +28 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_response_content_vkontakte_strategy.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_response_content_weibo.py +28 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_response_content_weibo_strategy.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_response_content_windows_live.py +28 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_response_content_windows_live_strategy.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_response_content_wordpress.py +28 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_response_content_wordpress_strategy.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_response_content_yahoo.py +28 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_response_content_yahoo_strategy.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_response_content_yammer.py +28 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_response_content_yammer_strategy.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_response_content_yandex.py +28 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_response_content_yandex_strategy.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_response_modes_supported.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_response_types_supported.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_scope_array.py +7 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_scope_array_facebook.py +7 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_scope_azure_ad.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_scope_facebook.py +3 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_scope_google_apps.py +7 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_scope_google_o_auth_2.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_scope_item.py +3 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_scope_item_google_apps.py +3 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_scope_o_auth_2.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_scope_oidc.py +3 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_scopes_supported.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_scripts_o_auth_2.py +37 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_send_back_channel_nonce.py +3 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_service_documentation.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_set_user_root_attributes_enum.py +7 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_sha_1_thumbprint.py +3 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_should_trust_email_verified_connection_enum.py +7 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_show_as_button.py +3 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_sign_in_endpoint_ad.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_sign_in_endpoint_adfs.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_sign_in_endpoint_saml.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_sign_out_endpoint_saml.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_sign_saml_request_saml.py +3 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_signature_algorithm_enum_saml.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_signature_algorithm_saml.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_signing_cert_saml.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_signing_certificate_der_saml.py +3 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_signing_certificate_pem_ping_federate.py +3 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_signing_certificate_pem_saml.py +3 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_signing_key_saml.py +31 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_signup_behavior_enum.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_strategy_enum.py +72 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_strategy_version_enum_linkedin.py +3 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_strategy_version_enum_windows_live.py +3 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_subject_types_supported.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_template_sms.py +3 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_template_syntax_enum_sms.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_tenant_domain.py +3 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_tenant_domain_ad.py +3 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_tenant_domain_azure_ad_one.py +3 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_tenant_domain_google_apps.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_tenant_domain_saml.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_tenant_id_azure_ad.py +3 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_thumbprints.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_thumbprints_ad.py +7 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_thumbprints_saml.py +7 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_token_endpoint.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_token_endpoint_auth_method_enum.py +7 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_token_endpoint_auth_methods_supported.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_token_endpoint_auth_signing_alg_enum.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_token_endpoint_auth_signing_alg_values_supported.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_token_endpoint_o_auth_2.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_token_endpoint_oidc.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_totp_email.py +22 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_totp_length_email.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_totp_length_passwordless.py +3 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_totp_length_sms.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_totp_sms.py +26 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_totp_time_step_email.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_totp_time_step_passwordless.py +3 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_totp_time_step_sms.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_twilio_sid_sms.py +3 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_twilio_token_sms.py +3 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_type_enum_oidc.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_type_enum_okta.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_ui_locales_supported.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_upstream_additional_properties.py +8 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_upstream_alias.py +20 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_upstream_alias_enum.py +21 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_upstream_params.py +7 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_upstream_params_adfs.py +7 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_upstream_params_facebook.py +7 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_upstream_value.py +19 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_use_common_endpoint_azure_ad.py +3 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_user_id_attribute_saml.py +3 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_userid_attribute_azure_ad.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_userid_attribute_enum_azure_ad.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_userinfo_encryption_alg_values_supported.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_userinfo_encryption_enc_values_supported.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_userinfo_endpoint.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_userinfo_endpoint_oidc.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_userinfo_signing_alg_values_supported.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_username_validation_options.py +20 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_validation_options.py +24 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_waad_protocol.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/connection_waad_protocol_enum_azure_ad.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/connections_metadata.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/create_action_module_response_content.py +73 -0
- auth0_python-5.0.0/src/auth0/management/types/create_action_module_version_response_content.py +55 -0
- auth0_python-5.0.0/src/auth0/management/types/create_action_response_content.py +98 -0
- auth0_python-5.0.0/src/auth0/management/types/create_branding_phone_provider_response_content.py +49 -0
- auth0_python-5.0.0/src/auth0/management/types/create_branding_theme_response_content.py +42 -0
- auth0_python-5.0.0/src/auth0/management/types/create_client_authentication_method_self_signed_tls_client_auth.py +26 -0
- auth0_python-5.0.0/src/auth0/management/types/create_client_authentication_method_self_signed_tls_client_auth_credentials.py +7 -0
- auth0_python-5.0.0/src/auth0/management/types/create_client_grant_response_content.py +61 -0
- auth0_python-5.0.0/src/auth0/management/types/create_client_response_content.py +235 -0
- auth0_python-5.0.0/src/auth0/management/types/create_connection_common.py +21 -0
- auth0_python-5.0.0/src/auth0/management/types/create_connection_profile_response_content.py +32 -0
- auth0_python-5.0.0/src/auth0/management/types/create_connection_request_content_ad.py +27 -0
- auth0_python-5.0.0/src/auth0/management/types/create_connection_request_content_ad_strategy.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/create_connection_request_content_adfs.py +29 -0
- auth0_python-5.0.0/src/auth0/management/types/create_connection_request_content_adfs_strategy.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/create_connection_request_content_amazon.py +27 -0
- auth0_python-5.0.0/src/auth0/management/types/create_connection_request_content_amazon_strategy.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/create_connection_request_content_aol.py +27 -0
- auth0_python-5.0.0/src/auth0/management/types/create_connection_request_content_aol_strategy.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/create_connection_request_content_apple.py +27 -0
- auth0_python-5.0.0/src/auth0/management/types/create_connection_request_content_apple_strategy.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/create_connection_request_content_auth_0.py +29 -0
- auth0_python-5.0.0/src/auth0/management/types/create_connection_request_content_auth_0_oidc.py +27 -0
- auth0_python-5.0.0/src/auth0/management/types/create_connection_request_content_auth_0_oidc_strategy.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/create_connection_request_content_auth_0_strategy.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/create_connection_request_content_azure_ad.py +29 -0
- auth0_python-5.0.0/src/auth0/management/types/create_connection_request_content_azure_ad_strategy.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/create_connection_request_content_baidu.py +27 -0
- auth0_python-5.0.0/src/auth0/management/types/create_connection_request_content_baidu_strategy.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/create_connection_request_content_bitbucket.py +27 -0
- auth0_python-5.0.0/src/auth0/management/types/create_connection_request_content_bitbucket_strategy.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/create_connection_request_content_bitly.py +27 -0
- auth0_python-5.0.0/src/auth0/management/types/create_connection_request_content_bitly_strategy.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/create_connection_request_content_box.py +28 -0
- auth0_python-5.0.0/src/auth0/management/types/create_connection_request_content_box_strategy.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/create_connection_request_content_custom.py +27 -0
- auth0_python-5.0.0/src/auth0/management/types/create_connection_request_content_custom_strategy.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/create_connection_request_content_daccount.py +27 -0
- auth0_python-5.0.0/src/auth0/management/types/create_connection_request_content_daccount_strategy.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/create_connection_request_content_dropbox.py +27 -0
- auth0_python-5.0.0/src/auth0/management/types/create_connection_request_content_dropbox_strategy.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/create_connection_request_content_dwolla.py +27 -0
- auth0_python-5.0.0/src/auth0/management/types/create_connection_request_content_dwolla_strategy.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/create_connection_request_content_email.py +27 -0
- auth0_python-5.0.0/src/auth0/management/types/create_connection_request_content_email_strategy.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/create_connection_request_content_evernote.py +27 -0
- auth0_python-5.0.0/src/auth0/management/types/create_connection_request_content_evernote_sandbox.py +29 -0
- auth0_python-5.0.0/src/auth0/management/types/create_connection_request_content_evernote_sandbox_strategy.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/create_connection_request_content_evernote_strategy.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/create_connection_request_content_exact.py +27 -0
- auth0_python-5.0.0/src/auth0/management/types/create_connection_request_content_exact_strategy.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/create_connection_request_content_facebook.py +27 -0
- auth0_python-5.0.0/src/auth0/management/types/create_connection_request_content_facebook_strategy.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/create_connection_request_content_fitbit.py +27 -0
- auth0_python-5.0.0/src/auth0/management/types/create_connection_request_content_fitbit_strategy.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/create_connection_request_content_flickr.py +27 -0
- auth0_python-5.0.0/src/auth0/management/types/create_connection_request_content_flickr_strategy.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/create_connection_request_content_git_hub.py +28 -0
- auth0_python-5.0.0/src/auth0/management/types/create_connection_request_content_git_hub_strategy.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/create_connection_request_content_google_apps.py +29 -0
- auth0_python-5.0.0/src/auth0/management/types/create_connection_request_content_google_apps_strategy.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/create_connection_request_content_google_o_auth_2.py +30 -0
- auth0_python-5.0.0/src/auth0/management/types/create_connection_request_content_google_o_auth_2_strategy.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/create_connection_request_content_instagram.py +27 -0
- auth0_python-5.0.0/src/auth0/management/types/create_connection_request_content_instagram_strategy.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/create_connection_request_content_ip.py +29 -0
- auth0_python-5.0.0/src/auth0/management/types/create_connection_request_content_ip_strategy.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/create_connection_request_content_line.py +27 -0
- auth0_python-5.0.0/src/auth0/management/types/create_connection_request_content_line_strategy.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/create_connection_request_content_linkedin.py +27 -0
- auth0_python-5.0.0/src/auth0/management/types/create_connection_request_content_linkedin_strategy.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/create_connection_request_content_miicard.py +27 -0
- auth0_python-5.0.0/src/auth0/management/types/create_connection_request_content_miicard_strategy.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/create_connection_request_content_o_auth_1.py +27 -0
- auth0_python-5.0.0/src/auth0/management/types/create_connection_request_content_o_auth_1_strategy.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/create_connection_request_content_o_auth_2.py +28 -0
- auth0_python-5.0.0/src/auth0/management/types/create_connection_request_content_o_auth_2_strategy.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/create_connection_request_content_office_365.py +29 -0
- auth0_python-5.0.0/src/auth0/management/types/create_connection_request_content_office_365_strategy.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/create_connection_request_content_oidc.py +33 -0
- auth0_python-5.0.0/src/auth0/management/types/create_connection_request_content_oidc_strategy.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/create_connection_request_content_okta.py +29 -0
- auth0_python-5.0.0/src/auth0/management/types/create_connection_request_content_okta_strategy.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/create_connection_request_content_paypal.py +27 -0
- auth0_python-5.0.0/src/auth0/management/types/create_connection_request_content_paypal_sandbox.py +29 -0
- auth0_python-5.0.0/src/auth0/management/types/create_connection_request_content_paypal_sandbox_strategy.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/create_connection_request_content_paypal_strategy.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/create_connection_request_content_ping_federate.py +29 -0
- auth0_python-5.0.0/src/auth0/management/types/create_connection_request_content_ping_federate_strategy.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/create_connection_request_content_planning_center.py +29 -0
- auth0_python-5.0.0/src/auth0/management/types/create_connection_request_content_planning_center_strategy.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/create_connection_request_content_renren.py +27 -0
- auth0_python-5.0.0/src/auth0/management/types/create_connection_request_content_renren_strategy.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/create_connection_request_content_salesforce.py +27 -0
- auth0_python-5.0.0/src/auth0/management/types/create_connection_request_content_salesforce_community.py +29 -0
- auth0_python-5.0.0/src/auth0/management/types/create_connection_request_content_salesforce_community_strategy.py +7 -0
- auth0_python-5.0.0/src/auth0/management/types/create_connection_request_content_salesforce_sandbox.py +29 -0
- auth0_python-5.0.0/src/auth0/management/types/create_connection_request_content_salesforce_sandbox_strategy.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/create_connection_request_content_salesforce_strategy.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/create_connection_request_content_saml.py +29 -0
- auth0_python-5.0.0/src/auth0/management/types/create_connection_request_content_saml_strategy.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/create_connection_request_content_sharepoint.py +29 -0
- auth0_python-5.0.0/src/auth0/management/types/create_connection_request_content_sharepoint_strategy.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/create_connection_request_content_shop.py +27 -0
- auth0_python-5.0.0/src/auth0/management/types/create_connection_request_content_shop_strategy.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/create_connection_request_content_shopify.py +27 -0
- auth0_python-5.0.0/src/auth0/management/types/create_connection_request_content_shopify_strategy.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/create_connection_request_content_sms.py +27 -0
- auth0_python-5.0.0/src/auth0/management/types/create_connection_request_content_sms_strategy.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/create_connection_request_content_soundcloud.py +27 -0
- auth0_python-5.0.0/src/auth0/management/types/create_connection_request_content_soundcloud_strategy.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/create_connection_request_content_thirty_seven_signals.py +29 -0
- auth0_python-5.0.0/src/auth0/management/types/create_connection_request_content_thirty_seven_signals_strategy.py +7 -0
- auth0_python-5.0.0/src/auth0/management/types/create_connection_request_content_twitter.py +27 -0
- auth0_python-5.0.0/src/auth0/management/types/create_connection_request_content_twitter_strategy.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/create_connection_request_content_untappd.py +27 -0
- auth0_python-5.0.0/src/auth0/management/types/create_connection_request_content_untappd_strategy.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/create_connection_request_content_vkontakte.py +27 -0
- auth0_python-5.0.0/src/auth0/management/types/create_connection_request_content_vkontakte_strategy.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/create_connection_request_content_weibo.py +27 -0
- auth0_python-5.0.0/src/auth0/management/types/create_connection_request_content_weibo_strategy.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/create_connection_request_content_windows_live.py +28 -0
- auth0_python-5.0.0/src/auth0/management/types/create_connection_request_content_windows_live_strategy.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/create_connection_request_content_wordpress.py +27 -0
- auth0_python-5.0.0/src/auth0/management/types/create_connection_request_content_wordpress_strategy.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/create_connection_request_content_yahoo.py +27 -0
- auth0_python-5.0.0/src/auth0/management/types/create_connection_request_content_yahoo_strategy.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/create_connection_request_content_yammer.py +27 -0
- auth0_python-5.0.0/src/auth0/management/types/create_connection_request_content_yammer_strategy.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/create_connection_request_content_yandex.py +27 -0
- auth0_python-5.0.0/src/auth0/management/types/create_connection_request_content_yandex_strategy.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/create_connection_response_content.py +66 -0
- auth0_python-5.0.0/src/auth0/management/types/create_custom_domain_response_content.py +62 -0
- auth0_python-5.0.0/src/auth0/management/types/create_directory_provisioning_request_content.py +28 -0
- auth0_python-5.0.0/src/auth0/management/types/create_directory_provisioning_response_content.py +69 -0
- auth0_python-5.0.0/src/auth0/management/types/create_directory_synchronization_response_content.py +32 -0
- auth0_python-5.0.0/src/auth0/management/types/create_email_provider_response_content.py +37 -0
- auth0_python-5.0.0/src/auth0/management/types/create_email_template_response_content.py +69 -0
- auth0_python-5.0.0/src/auth0/management/types/create_encryption_key_public_wrapping_response_content.py +25 -0
- auth0_python-5.0.0/src/auth0/management/types/create_encryption_key_response_content.py +51 -0
- auth0_python-5.0.0/src/auth0/management/types/create_encryption_key_type.py +7 -0
- auth0_python-5.0.0/src/auth0/management/types/create_event_stream_action_request_content.py +33 -0
- auth0_python-5.0.0/src/auth0/management/types/create_event_stream_event_bridge_request_content.py +33 -0
- auth0_python-5.0.0/src/auth0/management/types/create_event_stream_redelivery_response_content.py +40 -0
- auth0_python-5.0.0/src/auth0/management/types/create_event_stream_response_content.py +11 -0
- auth0_python-5.0.0/src/auth0/management/types/create_event_stream_test_event_response_content.py +44 -0
- auth0_python-5.0.0/src/auth0/management/types/create_event_stream_web_hook_request_content.py +33 -0
- auth0_python-5.0.0/src/auth0/management/types/create_export_users_fields.py +27 -0
- auth0_python-5.0.0/src/auth0/management/types/create_export_users_response_content.py +55 -0
- auth0_python-5.0.0/src/auth0/management/types/create_flow_response_content.py +41 -0
- auth0_python-5.0.0/src/auth0/management/types/create_flows_vault_connection_activecampaign.py +12 -0
- auth0_python-5.0.0/src/auth0/management/types/create_flows_vault_connection_activecampaign_api_key.py +27 -0
- auth0_python-5.0.0/src/auth0/management/types/create_flows_vault_connection_activecampaign_uninitialized.py +25 -0
- auth0_python-5.0.0/src/auth0/management/types/create_flows_vault_connection_airtable.py +10 -0
- auth0_python-5.0.0/src/auth0/management/types/create_flows_vault_connection_airtable_api_key.py +27 -0
- auth0_python-5.0.0/src/auth0/management/types/create_flows_vault_connection_airtable_uninitialized.py +25 -0
- auth0_python-5.0.0/src/auth0/management/types/create_flows_vault_connection_auth_0.py +10 -0
- auth0_python-5.0.0/src/auth0/management/types/create_flows_vault_connection_auth_0_oauth_app.py +27 -0
- auth0_python-5.0.0/src/auth0/management/types/create_flows_vault_connection_auth_0_uninitialized.py +25 -0
- auth0_python-5.0.0/src/auth0/management/types/create_flows_vault_connection_bigquery.py +10 -0
- auth0_python-5.0.0/src/auth0/management/types/create_flows_vault_connection_bigquery_jwt.py +27 -0
- auth0_python-5.0.0/src/auth0/management/types/create_flows_vault_connection_bigquery_uninitialized.py +25 -0
- auth0_python-5.0.0/src/auth0/management/types/create_flows_vault_connection_clearbit.py +10 -0
- auth0_python-5.0.0/src/auth0/management/types/create_flows_vault_connection_clearbit_api_key.py +27 -0
- auth0_python-5.0.0/src/auth0/management/types/create_flows_vault_connection_clearbit_uninitialized.py +25 -0
- auth0_python-5.0.0/src/auth0/management/types/create_flows_vault_connection_docusign.py +10 -0
- auth0_python-5.0.0/src/auth0/management/types/create_flows_vault_connection_docusign_oauth_code.py +27 -0
- auth0_python-5.0.0/src/auth0/management/types/create_flows_vault_connection_docusign_uninitialized.py +25 -0
- auth0_python-5.0.0/src/auth0/management/types/create_flows_vault_connection_google_sheets.py +12 -0
- auth0_python-5.0.0/src/auth0/management/types/create_flows_vault_connection_google_sheets_oauth_code.py +27 -0
- auth0_python-5.0.0/src/auth0/management/types/create_flows_vault_connection_google_sheets_uninitialized.py +25 -0
- auth0_python-5.0.0/src/auth0/management/types/create_flows_vault_connection_http.py +19 -0
- auth0_python-5.0.0/src/auth0/management/types/create_flows_vault_connection_http_api_key.py +27 -0
- auth0_python-5.0.0/src/auth0/management/types/create_flows_vault_connection_http_basic_auth.py +27 -0
- auth0_python-5.0.0/src/auth0/management/types/create_flows_vault_connection_http_bearer.py +27 -0
- auth0_python-5.0.0/src/auth0/management/types/create_flows_vault_connection_http_oauth_client_credentials.py +29 -0
- auth0_python-5.0.0/src/auth0/management/types/create_flows_vault_connection_http_uninitialized.py +25 -0
- auth0_python-5.0.0/src/auth0/management/types/create_flows_vault_connection_hubspot.py +13 -0
- auth0_python-5.0.0/src/auth0/management/types/create_flows_vault_connection_hubspot_api_key.py +27 -0
- auth0_python-5.0.0/src/auth0/management/types/create_flows_vault_connection_hubspot_oauth_code.py +27 -0
- auth0_python-5.0.0/src/auth0/management/types/create_flows_vault_connection_hubspot_uninitialized.py +25 -0
- auth0_python-5.0.0/src/auth0/management/types/create_flows_vault_connection_jwt.py +10 -0
- auth0_python-5.0.0/src/auth0/management/types/create_flows_vault_connection_jwt_jwt.py +27 -0
- auth0_python-5.0.0/src/auth0/management/types/create_flows_vault_connection_jwt_uninitialized.py +25 -0
- auth0_python-5.0.0/src/auth0/management/types/create_flows_vault_connection_mailchimp.py +13 -0
- auth0_python-5.0.0/src/auth0/management/types/create_flows_vault_connection_mailchimp_api_key.py +27 -0
- auth0_python-5.0.0/src/auth0/management/types/create_flows_vault_connection_mailchimp_oauth_code.py +27 -0
- auth0_python-5.0.0/src/auth0/management/types/create_flows_vault_connection_mailchimp_uninitialized.py +25 -0
- auth0_python-5.0.0/src/auth0/management/types/create_flows_vault_connection_mailjet.py +10 -0
- auth0_python-5.0.0/src/auth0/management/types/create_flows_vault_connection_mailjet_api_key.py +27 -0
- auth0_python-5.0.0/src/auth0/management/types/create_flows_vault_connection_mailjet_uninitialized.py +25 -0
- auth0_python-5.0.0/src/auth0/management/types/create_flows_vault_connection_pipedrive.py +13 -0
- auth0_python-5.0.0/src/auth0/management/types/create_flows_vault_connection_pipedrive_oauth_code.py +27 -0
- auth0_python-5.0.0/src/auth0/management/types/create_flows_vault_connection_pipedrive_token.py +27 -0
- auth0_python-5.0.0/src/auth0/management/types/create_flows_vault_connection_pipedrive_uninitialized.py +25 -0
- auth0_python-5.0.0/src/auth0/management/types/create_flows_vault_connection_request_content.py +49 -0
- auth0_python-5.0.0/src/auth0/management/types/create_flows_vault_connection_response_content.py +65 -0
- auth0_python-5.0.0/src/auth0/management/types/create_flows_vault_connection_salesforce.py +10 -0
- auth0_python-5.0.0/src/auth0/management/types/create_flows_vault_connection_salesforce_oauth_code.py +27 -0
- auth0_python-5.0.0/src/auth0/management/types/create_flows_vault_connection_salesforce_uninitialized.py +25 -0
- auth0_python-5.0.0/src/auth0/management/types/create_flows_vault_connection_sendgrid.py +10 -0
- auth0_python-5.0.0/src/auth0/management/types/create_flows_vault_connection_sendgrid_api_key.py +27 -0
- auth0_python-5.0.0/src/auth0/management/types/create_flows_vault_connection_sendgrid_uninitialized.py +25 -0
- auth0_python-5.0.0/src/auth0/management/types/create_flows_vault_connection_slack.py +13 -0
- auth0_python-5.0.0/src/auth0/management/types/create_flows_vault_connection_slack_oauth_code.py +27 -0
- auth0_python-5.0.0/src/auth0/management/types/create_flows_vault_connection_slack_uninitialized.py +25 -0
- auth0_python-5.0.0/src/auth0/management/types/create_flows_vault_connection_slack_webhook.py +27 -0
- auth0_python-5.0.0/src/auth0/management/types/create_flows_vault_connection_stripe.py +13 -0
- auth0_python-5.0.0/src/auth0/management/types/create_flows_vault_connection_stripe_key_pair.py +27 -0
- auth0_python-5.0.0/src/auth0/management/types/create_flows_vault_connection_stripe_oauth_code.py +27 -0
- auth0_python-5.0.0/src/auth0/management/types/create_flows_vault_connection_stripe_uninitialized.py +25 -0
- auth0_python-5.0.0/src/auth0/management/types/create_flows_vault_connection_telegram.py +10 -0
- auth0_python-5.0.0/src/auth0/management/types/create_flows_vault_connection_telegram_token.py +27 -0
- auth0_python-5.0.0/src/auth0/management/types/create_flows_vault_connection_telegram_uninitialized.py +25 -0
- auth0_python-5.0.0/src/auth0/management/types/create_flows_vault_connection_twilio.py +10 -0
- auth0_python-5.0.0/src/auth0/management/types/create_flows_vault_connection_twilio_api_key.py +27 -0
- auth0_python-5.0.0/src/auth0/management/types/create_flows_vault_connection_twilio_uninitialized.py +25 -0
- auth0_python-5.0.0/src/auth0/management/types/create_flows_vault_connection_whatsapp.py +10 -0
- auth0_python-5.0.0/src/auth0/management/types/create_flows_vault_connection_whatsapp_token.py +27 -0
- auth0_python-5.0.0/src/auth0/management/types/create_flows_vault_connection_whatsapp_uninitialized.py +25 -0
- auth0_python-5.0.0/src/auth0/management/types/create_flows_vault_connection_zapier.py +10 -0
- auth0_python-5.0.0/src/auth0/management/types/create_flows_vault_connection_zapier_uninitialized.py +25 -0
- auth0_python-5.0.0/src/auth0/management/types/create_flows_vault_connection_zapier_webhook.py +27 -0
- auth0_python-5.0.0/src/auth0/management/types/create_form_response_content.py +39 -0
- auth0_python-5.0.0/src/auth0/management/types/create_guardian_enrollment_ticket_response_content.py +27 -0
- auth0_python-5.0.0/src/auth0/management/types/create_hook_response_content.py +51 -0
- auth0_python-5.0.0/src/auth0/management/types/create_hook_secret_request_content.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/create_import_users_response_content.py +47 -0
- auth0_python-5.0.0/src/auth0/management/types/create_log_stream_datadog_request_body.py +50 -0
- auth0_python-5.0.0/src/auth0/management/types/create_log_stream_event_bridge_request_body.py +50 -0
- auth0_python-5.0.0/src/auth0/management/types/create_log_stream_event_grid_request_body.py +50 -0
- auth0_python-5.0.0/src/auth0/management/types/create_log_stream_http_request_body.py +50 -0
- auth0_python-5.0.0/src/auth0/management/types/create_log_stream_mixpanel_request_body.py +50 -0
- auth0_python-5.0.0/src/auth0/management/types/create_log_stream_request_content.py +23 -0
- auth0_python-5.0.0/src/auth0/management/types/create_log_stream_response_content.py +23 -0
- auth0_python-5.0.0/src/auth0/management/types/create_log_stream_segment_request_body.py +50 -0
- auth0_python-5.0.0/src/auth0/management/types/create_log_stream_splunk_request_body.py +50 -0
- auth0_python-5.0.0/src/auth0/management/types/create_log_stream_sumo_request_body.py +50 -0
- auth0_python-5.0.0/src/auth0/management/types/create_organization_discovery_domain_response_content.py +44 -0
- auth0_python-5.0.0/src/auth0/management/types/create_organization_invitation_response_content.py +73 -0
- auth0_python-5.0.0/src/auth0/management/types/create_organization_response_content.py +41 -0
- auth0_python-5.0.0/src/auth0/management/types/create_phone_provider_send_test_response_content.py +27 -0
- auth0_python-5.0.0/src/auth0/management/types/create_phone_template_response_content.py +30 -0
- auth0_python-5.0.0/src/auth0/management/types/create_phone_template_test_notification_response_content.py +19 -0
- auth0_python-5.0.0/src/auth0/management/types/create_public_key_device_credential_response_content.py +22 -0
- auth0_python-5.0.0/src/auth0/management/types/create_resource_server_response_content.py +91 -0
- auth0_python-5.0.0/src/auth0/management/types/create_role_response_content.py +32 -0
- auth0_python-5.0.0/src/auth0/management/types/create_rule_response_content.py +49 -0
- auth0_python-5.0.0/src/auth0/management/types/create_scim_configuration_request_content.py +28 -0
- auth0_python-5.0.0/src/auth0/management/types/create_scim_configuration_response_content.py +58 -0
- auth0_python-5.0.0/src/auth0/management/types/create_scim_token_response_content.py +42 -0
- auth0_python-5.0.0/src/auth0/management/types/create_self_service_profile_response_content.py +64 -0
- auth0_python-5.0.0/src/auth0/management/types/create_self_service_profile_sso_ticket_response_content.py +22 -0
- auth0_python-5.0.0/src/auth0/management/types/create_token_exchange_profile_response_content.py +50 -0
- auth0_python-5.0.0/src/auth0/management/types/create_token_quota.py +20 -0
- auth0_python-5.0.0/src/auth0/management/types/create_user_attribute_profile_response_content.py +26 -0
- auth0_python-5.0.0/src/auth0/management/types/create_user_authentication_method_response_content.py +78 -0
- auth0_python-5.0.0/src/auth0/management/types/create_user_response_content.py +106 -0
- auth0_python-5.0.0/src/auth0/management/types/create_verifiable_credential_template_response_content.py +60 -0
- auth0_python-5.0.0/src/auth0/management/types/create_verification_email_response_content.py +37 -0
- auth0_python-5.0.0/src/auth0/management/types/created_authentication_method_type_enum.py +7 -0
- auth0_python-5.0.0/src/auth0/management/types/created_user_authentication_method_type_enum.py +7 -0
- auth0_python-5.0.0/src/auth0/management/types/credential_id.py +22 -0
- auth0_python-5.0.0/src/auth0/management/types/custom_domain.py +69 -0
- auth0_python-5.0.0/src/auth0/management/types/custom_domain_custom_client_ip_header.py +7 -0
- auth0_python-5.0.0/src/auth0/management/types/custom_domain_custom_client_ip_header_enum.py +7 -0
- auth0_python-5.0.0/src/auth0/management/types/custom_domain_provisioning_type_enum.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/custom_domain_status_filter_enum.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/custom_domain_tls_policy_enum.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/custom_domain_type_enum.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/custom_domain_verification_method_enum.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/custom_provider_configuration.py +20 -0
- auth0_python-5.0.0/src/auth0/management/types/custom_provider_credentials.py +17 -0
- auth0_python-5.0.0/src/auth0/management/types/custom_provider_delivery_method_enum.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/custom_signing_key_algorithm_enum.py +7 -0
- auth0_python-5.0.0/src/auth0/management/types/custom_signing_key_curve_enum.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/custom_signing_key_jwk.py +90 -0
- auth0_python-5.0.0/src/auth0/management/types/custom_signing_key_operation_enum.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/custom_signing_key_type_enum.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/custom_signing_key_use_enum.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/daily_stats.py +47 -0
- auth0_python-5.0.0/src/auth0/management/types/default_method_email_identifier_enum.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/default_token_quota.py +25 -0
- auth0_python-5.0.0/src/auth0/management/types/delete_hook_secret_request_content.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/delete_user_identity_response_content.py +7 -0
- auth0_python-5.0.0/src/auth0/management/types/delete_user_identity_response_content_item.py +61 -0
- auth0_python-5.0.0/src/auth0/management/types/deploy_action_response_content.py +97 -0
- auth0_python-5.0.0/src/auth0/management/types/deploy_action_version_request_content.py +22 -0
- auth0_python-5.0.0/src/auth0/management/types/deploy_action_version_response_content.py +97 -0
- auth0_python-5.0.0/src/auth0/management/types/device_credential.py +44 -0
- auth0_python-5.0.0/src/auth0/management/types/device_credential_public_key_type_enum.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/device_credential_type_enum.py +7 -0
- auth0_python-5.0.0/src/auth0/management/types/directory_provisioning.py +69 -0
- auth0_python-5.0.0/src/auth0/management/types/directory_provisioning_mapping_item.py +29 -0
- auth0_python-5.0.0/src/auth0/management/types/domain_certificate.py +35 -0
- auth0_python-5.0.0/src/auth0/management/types/domain_certificate_authority_enum.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/domain_certificate_status_enum.py +7 -0
- auth0_python-5.0.0/src/auth0/management/types/domain_metadata.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/domain_verification.py +39 -0
- auth0_python-5.0.0/src/auth0/management/types/domain_verification_method.py +29 -0
- auth0_python-5.0.0/src/auth0/management/types/domain_verification_method_name_enum.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/domain_verification_status_enum.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/email_attribute.py +38 -0
- auth0_python-5.0.0/src/auth0/management/types/email_mailgun_region_enum.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/email_provider_credentials.py +46 -0
- auth0_python-5.0.0/src/auth0/management/types/email_provider_credentials_schema.py +23 -0
- auth0_python-5.0.0/src/auth0/management/types/email_provider_credentials_schema_access_key_id.py +38 -0
- auth0_python-5.0.0/src/auth0/management/types/email_provider_credentials_schema_api_key.py +30 -0
- auth0_python-5.0.0/src/auth0/management/types/email_provider_credentials_schema_client_id.py +40 -0
- auth0_python-5.0.0/src/auth0/management/types/email_provider_credentials_schema_connection_string.py +26 -0
- auth0_python-5.0.0/src/auth0/management/types/email_provider_credentials_schema_smtp_host.py +34 -0
- auth0_python-5.0.0/src/auth0/management/types/email_provider_credentials_schema_three.py +25 -0
- auth0_python-5.0.0/src/auth0/management/types/email_provider_credentials_schema_zero.py +22 -0
- auth0_python-5.0.0/src/auth0/management/types/email_provider_name_enum.py +8 -0
- auth0_python-5.0.0/src/auth0/management/types/email_provider_settings.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/email_smtp_host.py +3 -0
- auth0_python-5.0.0/src/auth0/management/types/email_spark_post_region_enum.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/email_specific_provider_settings_with_additional_properties.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/email_template_name_enum.py +22 -0
- auth0_python-5.0.0/src/auth0/management/types/enabled_features_enum.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/encryption_key.py +51 -0
- auth0_python-5.0.0/src/auth0/management/types/encryption_key_public_wrapping_algorithm.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/encryption_key_state.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/encryption_key_type.py +8 -0
- auth0_python-5.0.0/src/auth0/management/types/event_stream_action_configuration.py +26 -0
- auth0_python-5.0.0/src/auth0/management/types/event_stream_action_destination.py +22 -0
- auth0_python-5.0.0/src/auth0/management/types/event_stream_action_destination_type_enum.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/event_stream_action_response_content.py +48 -0
- auth0_python-5.0.0/src/auth0/management/types/event_stream_cloud_event.py +52 -0
- auth0_python-5.0.0/src/auth0/management/types/event_stream_delivery.py +44 -0
- auth0_python-5.0.0/src/auth0/management/types/event_stream_delivery_attempt.py +30 -0
- auth0_python-5.0.0/src/auth0/management/types/event_stream_delivery_event_type_enum.py +27 -0
- auth0_python-5.0.0/src/auth0/management/types/event_stream_delivery_status_enum.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/event_stream_destination_patch.py +8 -0
- auth0_python-5.0.0/src/auth0/management/types/event_stream_event_bridge_aws_region_enum.py +45 -0
- auth0_python-5.0.0/src/auth0/management/types/event_stream_event_bridge_configuration.py +33 -0
- auth0_python-5.0.0/src/auth0/management/types/event_stream_event_bridge_destination.py +22 -0
- auth0_python-5.0.0/src/auth0/management/types/event_stream_event_bridge_destination_type_enum.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/event_stream_event_bridge_response_content.py +48 -0
- auth0_python-5.0.0/src/auth0/management/types/event_stream_event_type_enum.py +27 -0
- auth0_python-5.0.0/src/auth0/management/types/event_stream_response_content.py +11 -0
- auth0_python-5.0.0/src/auth0/management/types/event_stream_status_enum.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/event_stream_subscription.py +23 -0
- auth0_python-5.0.0/src/auth0/management/types/event_stream_test_event_type_enum.py +27 -0
- auth0_python-5.0.0/src/auth0/management/types/event_stream_webhook_authorization_response.py +8 -0
- auth0_python-5.0.0/src/auth0/management/types/event_stream_webhook_basic_auth.py +28 -0
- auth0_python-5.0.0/src/auth0/management/types/event_stream_webhook_basic_auth_method_enum.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/event_stream_webhook_bearer_auth.py +24 -0
- auth0_python-5.0.0/src/auth0/management/types/event_stream_webhook_bearer_auth_method_enum.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/event_stream_webhook_configuration.py +29 -0
- auth0_python-5.0.0/src/auth0/management/types/event_stream_webhook_destination.py +22 -0
- auth0_python-5.0.0/src/auth0/management/types/event_stream_webhook_destination_type_enum.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/event_stream_webhook_response_content.py +48 -0
- auth0_python-5.0.0/src/auth0/management/types/express_configuration.py +67 -0
- auth0_python-5.0.0/src/auth0/management/types/express_configuration_or_null.py +67 -0
- auth0_python-5.0.0/src/auth0/management/types/extensibility_email_provider_credentials.py +17 -0
- auth0_python-5.0.0/src/auth0/management/types/federated_connection_token_set.py +25 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action.py +60 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_activecampaign.py +8 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_activecampaign_list_contacts.py +28 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_activecampaign_list_contacts_action.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_activecampaign_list_contacts_params.py +20 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_activecampaign_list_contacts_type.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_activecampaign_upsert_contact.py +28 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_activecampaign_upsert_contact_action.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_activecampaign_upsert_contact_params.py +27 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_activecampaign_upsert_contact_params_custom_fields.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_activecampaign_upsert_contact_type.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_airtable.py +11 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_airtable_create_record.py +28 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_airtable_create_record_action.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_airtable_create_record_params.py +23 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_airtable_create_record_params_fields.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_airtable_create_record_type.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_airtable_list_records.py +28 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_airtable_list_records_action.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_airtable_list_records_params.py +23 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_airtable_list_records_type.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_airtable_update_record.py +28 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_airtable_update_record_action.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_airtable_update_record_params.py +24 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_airtable_update_record_params_fields.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_airtable_update_record_type.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_auth_0.py +21 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_auth_0_create_user.py +28 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_auth_0_create_user_action.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_auth_0_create_user_params.py +21 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_auth_0_create_user_params_payload.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_auth_0_create_user_type.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_auth_0_get_user.py +28 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_auth_0_get_user_action.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_auth_0_get_user_params.py +20 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_auth_0_get_user_type.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_auth_0_make_call.py +28 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_auth_0_make_call_action.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_auth_0_make_call_params.py +27 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_auth_0_make_call_params_custom_vars.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_auth_0_make_call_type.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_auth_0_send_email.py +28 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_auth_0_send_email_action.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_auth_0_send_email_params.py +30 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_auth_0_send_email_params_from.py +21 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_auth_0_send_email_params_from_email.py +3 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_auth_0_send_email_params_to.py +3 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_auth_0_send_email_type.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_auth_0_send_request.py +28 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_auth_0_send_request_action.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_auth_0_send_request_params.py +28 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_auth_0_send_request_params_custom_vars.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_auth_0_send_request_params_headers.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_auth_0_send_request_params_method.py +7 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_auth_0_send_request_params_payload.py +9 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_auth_0_send_request_params_payload_object.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_auth_0_send_request_params_query_params.py +9 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_auth_0_send_request_params_query_params_value.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_auth_0_send_request_type.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_auth_0_send_sms.py +28 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_auth_0_send_sms_action.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_auth_0_send_sms_params.py +27 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_auth_0_send_sms_params_custom_vars.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_auth_0_send_sms_type.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_auth_0_update_user.py +28 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_auth_0_update_user_action.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_auth_0_update_user_params.py +22 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_auth_0_update_user_params_changes.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_auth_0_update_user_type.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_bigquery.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_bigquery_insert_rows.py +28 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_bigquery_insert_rows_action.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_bigquery_insert_rows_params.py +23 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_bigquery_insert_rows_params_data.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_bigquery_insert_rows_type.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_clearbit.py +8 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_clearbit_find_company.py +28 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_clearbit_find_company_action.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_clearbit_find_company_params.py +20 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_clearbit_find_company_type.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_clearbit_find_person.py +28 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_clearbit_find_person_action.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_clearbit_find_person_params.py +20 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_clearbit_find_person_type.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_email.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_email_verify_email.py +28 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_email_verify_email_action.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_email_verify_email_params.py +21 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_email_verify_email_params_rules.py +24 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_email_verify_email_type.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_flow.py +24 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_flow_boolean_condition.py +41 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_flow_boolean_condition_action.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_flow_boolean_condition_params.py +38 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_flow_boolean_condition_type.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_flow_delay_flow.py +28 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_flow_delay_flow_action.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_flow_delay_flow_params.py +22 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_flow_delay_flow_params_number.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_flow_delay_flow_params_units.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_flow_delay_flow_type.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_flow_do_nothing.py +28 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_flow_do_nothing_action.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_flow_do_nothing_params.py +17 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_flow_do_nothing_type.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_flow_error_message.py +28 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_flow_error_message_action.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_flow_error_message_params.py +19 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_flow_error_message_type.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_flow_map_value.py +28 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_flow_map_value_action.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_flow_map_value_params.py +24 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_flow_map_value_params_cases.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_flow_map_value_params_fallback.py +9 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_flow_map_value_params_fallback_object.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_flow_map_value_params_input.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_flow_map_value_type.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_flow_return_json.py +28 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_flow_return_json_action.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_flow_return_json_params.py +20 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_flow_return_json_params_payload.py +7 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_flow_return_json_params_payload_object.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_flow_return_json_type.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_flow_store_vars.py +28 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_flow_store_vars_action.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_flow_store_vars_params.py +20 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_flow_store_vars_params_vars.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_flow_store_vars_type.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_google_sheets.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_google_sheets_add_row.py +28 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_google_sheets_add_row_action.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_google_sheets_add_row_params.py +24 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_google_sheets_add_row_params_sheet_id.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_google_sheets_add_row_params_values.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_google_sheets_add_row_type.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_http.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_http_send_request.py +28 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_http_send_request_action.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_http_send_request_params.py +32 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_http_send_request_params_basic_auth.py +20 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_http_send_request_params_content_type.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_http_send_request_params_headers.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_http_send_request_params_method.py +7 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_http_send_request_params_payload.py +9 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_http_send_request_params_payload_object.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_http_send_request_params_query_params.py +9 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_http_send_request_params_query_params_value.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_http_send_request_type.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_hubspot.py +11 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_hubspot_enroll_contact.py +28 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_hubspot_enroll_contact_action.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_hubspot_enroll_contact_params.py +22 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_hubspot_enroll_contact_params_workflow_id.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_hubspot_enroll_contact_type.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_hubspot_get_contact.py +28 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_hubspot_get_contact_action.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_hubspot_get_contact_params.py +20 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_hubspot_get_contact_type.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_hubspot_upsert_contact.py +28 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_hubspot_upsert_contact_action.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_hubspot_upsert_contact_params.py +22 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_hubspot_upsert_contact_params_property.py +19 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_hubspot_upsert_contact_type.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_json.py +9 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_json_create_json.py +28 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_json_create_json_action.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_json_create_json_params.py +20 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_json_create_json_params_object.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_json_create_json_type.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_json_parse_json.py +28 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_json_parse_json_action.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_json_parse_json_params.py +21 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_json_parse_json_type.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_json_serialize_json.py +28 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_json_serialize_json_action.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_json_serialize_json_params.py +20 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_json_serialize_json_params_object.py +7 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_json_serialize_json_params_object_object.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_json_serialize_json_type.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_jwt.py +9 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_jwt_decode_jwt.py +28 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_jwt_decode_jwt_action.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_jwt_decode_jwt_params.py +19 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_jwt_decode_jwt_type.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_jwt_sign_jwt.py +28 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_jwt_sign_jwt_action.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_jwt_sign_jwt_params.py +25 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_jwt_sign_jwt_params_payload.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_jwt_sign_jwt_type.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_jwt_verify_jwt.py +28 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_jwt_verify_jwt_action.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_jwt_verify_jwt_params.py +22 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_jwt_verify_jwt_type.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_mailchimp.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_mailchimp_upsert_member.py +28 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_mailchimp_upsert_member_action.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_mailchimp_upsert_member_params.py +22 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_mailchimp_upsert_member_params_member.py +24 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_mailchimp_upsert_member_params_member_merge_fields.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_mailchimp_upsert_member_type.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_mailjet.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_mailjet_send_email.py +28 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_mailjet_send_email_action.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_mailjet_send_email_params.py +10 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_mailjet_send_email_params_content.py +19 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_mailjet_send_email_params_template_id.py +20 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_mailjet_send_email_type.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_otp.py +8 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_otp_generate_code.py +28 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_otp_generate_code_action.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_otp_generate_code_params.py +20 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_otp_generate_code_type.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_otp_verify_code.py +28 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_otp_verify_code_action.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_otp_verify_code_params.py +21 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_otp_verify_code_params_code.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_otp_verify_code_type.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_pipedrive.py +11 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_pipedrive_add_deal.py +28 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_pipedrive_add_deal_action.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_pipedrive_add_deal_params.py +31 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_pipedrive_add_deal_params_fields.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_pipedrive_add_deal_params_organization_id.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_pipedrive_add_deal_params_person_id.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_pipedrive_add_deal_params_stage_id.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_pipedrive_add_deal_params_user_id.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_pipedrive_add_deal_type.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_pipedrive_add_organization.py +28 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_pipedrive_add_organization_action.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_pipedrive_add_organization_params.py +24 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_pipedrive_add_organization_params_fields.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_pipedrive_add_organization_params_owner_id.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_pipedrive_add_organization_type.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_pipedrive_add_person.py +28 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_pipedrive_add_person_action.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_pipedrive_add_person_params.py +28 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_pipedrive_add_person_params_fields.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_pipedrive_add_person_params_organization_id.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_pipedrive_add_person_params_owner_id.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_pipedrive_add_person_type.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_salesforce.py +15 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_salesforce_create_lead.py +28 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_salesforce_create_lead_action.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_salesforce_create_lead_params.py +26 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_salesforce_create_lead_params_payload.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_salesforce_create_lead_type.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_salesforce_get_lead.py +28 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_salesforce_get_lead_action.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_salesforce_get_lead_params.py +20 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_salesforce_get_lead_type.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_salesforce_search_leads.py +28 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_salesforce_search_leads_action.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_salesforce_search_leads_params.py +23 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_salesforce_search_leads_params_search_field.py +7 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_salesforce_search_leads_type.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_salesforce_update_lead.py +28 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_salesforce_update_lead_action.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_salesforce_update_lead_params.py +22 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_salesforce_update_lead_params_payload.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_salesforce_update_lead_type.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_sendgrid.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_sendgrid_send_email.py +28 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_sendgrid_send_email_action.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_sendgrid_send_email_params.py +26 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_sendgrid_send_email_params_person.py +20 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_sendgrid_send_email_type.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_slack.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_slack_post_message.py +28 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_slack_post_message_action.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_slack_post_message_params.py +22 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_slack_post_message_params_attachment.py +24 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_slack_post_message_params_attachment_color.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_slack_post_message_params_attachment_field.py +21 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_slack_post_message_type.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_stripe.py +21 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_stripe_add_tax_id.py +28 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_stripe_add_tax_id_action.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_stripe_add_tax_id_params.py +22 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_stripe_add_tax_id_type.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_stripe_address.py +32 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_stripe_create_customer.py +28 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_stripe_create_customer_action.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_stripe_create_customer_params.py +30 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_stripe_create_customer_type.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_stripe_create_portal_session.py +28 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_stripe_create_portal_session_action.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_stripe_create_portal_session_params.py +21 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_stripe_create_portal_session_type.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_stripe_delete_tax_id.py +28 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_stripe_delete_tax_id_action.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_stripe_delete_tax_id_params.py +21 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_stripe_delete_tax_id_type.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_stripe_find_customers.py +28 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_stripe_find_customers_action.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_stripe_find_customers_params.py +20 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_stripe_find_customers_type.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_stripe_get_customer.py +28 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_stripe_get_customer_action.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_stripe_get_customer_params.py +20 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_stripe_get_customer_type.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_stripe_metadata.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_stripe_tax_id.py +20 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_stripe_update_customer.py +28 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_stripe_update_customer_action.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_stripe_update_customer_params.py +29 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_stripe_update_customer_type.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_telegram.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_telegram_send_message.py +28 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_telegram_send_message_action.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_telegram_send_message_params.py +21 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_telegram_send_message_type.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_twilio.py +8 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_twilio_make_call.py +28 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_twilio_make_call_action.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_twilio_make_call_params.py +24 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_twilio_make_call_type.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_twilio_send_sms.py +28 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_twilio_send_sms_action.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_twilio_send_sms_params.py +24 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_twilio_send_sms_type.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_whatsapp.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_whatsapp_send_message.py +28 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_whatsapp_send_message_action.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_whatsapp_send_message_params.py +25 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_whatsapp_send_message_params_payload.py +7 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_whatsapp_send_message_params_payload_object.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_whatsapp_send_message_params_type.py +8 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_whatsapp_send_message_type.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_xml.py +8 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_xml_parse_xml.py +28 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_xml_parse_xml_action.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_xml_parse_xml_params.py +19 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_xml_parse_xml_type.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_xml_serialize_xml.py +28 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_xml_serialize_xml_action.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_xml_serialize_xml_params.py +20 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_xml_serialize_xml_params_object.py +7 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_xml_serialize_xml_params_object_object.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_xml_serialize_xml_type.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_zapier.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_zapier_trigger_webhook.py +28 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_zapier_trigger_webhook_action.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_zapier_trigger_webhook_params.py +21 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_zapier_trigger_webhook_params_method.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_action_zapier_trigger_webhook_type.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_execution_debug.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_execution_summary.py +58 -0
- auth0_python-5.0.0/src/auth0/management/types/flow_summary.py +24 -0
- auth0_python-5.0.0/src/auth0/management/types/flows_vault_connectio_setup_api_key.py +21 -0
- auth0_python-5.0.0/src/auth0/management/types/flows_vault_connectio_setup_api_key_with_base_url.py +22 -0
- auth0_python-5.0.0/src/auth0/management/types/flows_vault_connectio_setup_bigquery_oauth_jwt.py +23 -0
- auth0_python-5.0.0/src/auth0/management/types/flows_vault_connectio_setup_http_bearer.py +21 -0
- auth0_python-5.0.0/src/auth0/management/types/flows_vault_connectio_setup_jwt.py +22 -0
- auth0_python-5.0.0/src/auth0/management/types/flows_vault_connectio_setup_jwt_algorithm_enum.py +10 -0
- auth0_python-5.0.0/src/auth0/management/types/flows_vault_connectio_setup_mailjet_api_key.py +22 -0
- auth0_python-5.0.0/src/auth0/management/types/flows_vault_connectio_setup_oauth_app.py +24 -0
- auth0_python-5.0.0/src/auth0/management/types/flows_vault_connectio_setup_oauth_code.py +21 -0
- auth0_python-5.0.0/src/auth0/management/types/flows_vault_connectio_setup_secret_api_key.py +21 -0
- auth0_python-5.0.0/src/auth0/management/types/flows_vault_connectio_setup_stripe_key_pair.py +22 -0
- auth0_python-5.0.0/src/auth0/management/types/flows_vault_connectio_setup_token.py +21 -0
- auth0_python-5.0.0/src/auth0/management/types/flows_vault_connectio_setup_twilio_api_key.py +22 -0
- auth0_python-5.0.0/src/auth0/management/types/flows_vault_connectio_setup_type_api_key_enum.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/flows_vault_connectio_setup_type_bearer_enum.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/flows_vault_connectio_setup_type_jwt_enum.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/flows_vault_connectio_setup_type_key_pair_enum.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/flows_vault_connectio_setup_type_oauth_app_enum.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/flows_vault_connectio_setup_type_oauth_code_enum.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/flows_vault_connectio_setup_type_oauth_jwt_enum.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/flows_vault_connectio_setup_type_token_enum.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/flows_vault_connectio_setup_type_webhook_enum.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/flows_vault_connectio_setup_webhook.py +21 -0
- auth0_python-5.0.0/src/auth0/management/types/flows_vault_connection_app_id_activecampaign_enum.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/flows_vault_connection_app_id_airtable_enum.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/flows_vault_connection_app_id_auth_0_enum.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/flows_vault_connection_app_id_bigquery_enum.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/flows_vault_connection_app_id_clearbit_enum.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/flows_vault_connection_app_id_docusign_enum.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/flows_vault_connection_app_id_google_sheets_enum.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/flows_vault_connection_app_id_http_enum.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/flows_vault_connection_app_id_hubspot_enum.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/flows_vault_connection_app_id_jwt_enum.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/flows_vault_connection_app_id_mailchimp_enum.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/flows_vault_connection_app_id_mailjet_enum.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/flows_vault_connection_app_id_pipedrive_enum.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/flows_vault_connection_app_id_salesforce_enum.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/flows_vault_connection_app_id_sendgrid_enum.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/flows_vault_connection_app_id_slack_enum.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/flows_vault_connection_app_id_stripe_enum.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/flows_vault_connection_app_id_telegram_enum.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/flows_vault_connection_app_id_twilio_enum.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/flows_vault_connection_app_id_whatsapp_enum.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/flows_vault_connection_app_id_zapier_enum.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/flows_vault_connection_http_api_key_setup.py +28 -0
- auth0_python-5.0.0/src/auth0/management/types/flows_vault_connection_http_api_key_setup_in_enum.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/flows_vault_connection_http_basic_auth_setup.py +22 -0
- auth0_python-5.0.0/src/auth0/management/types/flows_vault_connection_http_oauth_client_credentials_setup.py +28 -0
- auth0_python-5.0.0/src/auth0/management/types/flows_vault_connection_setup_type_api_key_enum.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/flows_vault_connection_setup_type_basic_auth_enum.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/flows_vault_connection_setup_type_oauth_client_credentials_enum.py +7 -0
- auth0_python-5.0.0/src/auth0/management/types/flows_vault_connection_summary.py +60 -0
- auth0_python-5.0.0/src/auth0/management/types/form_block.py +23 -0
- auth0_python-5.0.0/src/auth0/management/types/form_block_divider.py +25 -0
- auth0_python-5.0.0/src/auth0/management/types/form_block_divider_config.py +19 -0
- auth0_python-5.0.0/src/auth0/management/types/form_block_html.py +25 -0
- auth0_python-5.0.0/src/auth0/management/types/form_block_html_config.py +19 -0
- auth0_python-5.0.0/src/auth0/management/types/form_block_image.py +25 -0
- auth0_python-5.0.0/src/auth0/management/types/form_block_image_config.py +22 -0
- auth0_python-5.0.0/src/auth0/management/types/form_block_image_config_position_enum.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/form_block_jump_button.py +25 -0
- auth0_python-5.0.0/src/auth0/management/types/form_block_jump_button_config.py +23 -0
- auth0_python-5.0.0/src/auth0/management/types/form_block_jump_button_config_style.py +19 -0
- auth0_python-5.0.0/src/auth0/management/types/form_block_next_button.py +25 -0
- auth0_python-5.0.0/src/auth0/management/types/form_block_next_button_config.py +19 -0
- auth0_python-5.0.0/src/auth0/management/types/form_block_previous_button.py +25 -0
- auth0_python-5.0.0/src/auth0/management/types/form_block_previous_button_config.py +19 -0
- auth0_python-5.0.0/src/auth0/management/types/form_block_resend_button.py +25 -0
- auth0_python-5.0.0/src/auth0/management/types/form_block_resend_button_config.py +26 -0
- auth0_python-5.0.0/src/auth0/management/types/form_block_resend_button_config_text_alignment_enum.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/form_block_rich_text.py +25 -0
- auth0_python-5.0.0/src/auth0/management/types/form_block_rich_text_config.py +19 -0
- auth0_python-5.0.0/src/auth0/management/types/form_block_type_divider_const.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/form_block_type_html_const.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/form_block_type_image_const.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/form_block_type_jump_button_const.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/form_block_type_next_button_const.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/form_block_type_previous_button_const.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/form_block_type_resend_button_const.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/form_block_type_rich_text_const.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/form_component.py +9 -0
- auth0_python-5.0.0/src/auth0/management/types/form_component_category_block_const.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/form_component_category_field_const.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/form_component_category_widget_const.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/form_ending_node.py +26 -0
- auth0_python-5.0.0/src/auth0/management/types/form_ending_node_after_submit.py +19 -0
- auth0_python-5.0.0/src/auth0/management/types/form_ending_node_id.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/form_ending_node_nullable.py +7 -0
- auth0_python-5.0.0/src/auth0/management/types/form_ending_node_redirection.py +20 -0
- auth0_python-5.0.0/src/auth0/management/types/form_ending_node_resume_flow_true_const.py +3 -0
- auth0_python-5.0.0/src/auth0/management/types/form_field.py +39 -0
- auth0_python-5.0.0/src/auth0/management/types/form_field_boolean.py +29 -0
- auth0_python-5.0.0/src/auth0/management/types/form_field_boolean_config.py +21 -0
- auth0_python-5.0.0/src/auth0/management/types/form_field_boolean_config_options.py +20 -0
- auth0_python-5.0.0/src/auth0/management/types/form_field_cards.py +29 -0
- auth0_python-5.0.0/src/auth0/management/types/form_field_cards_config.py +22 -0
- auth0_python-5.0.0/src/auth0/management/types/form_field_cards_config_option.py +21 -0
- auth0_python-5.0.0/src/auth0/management/types/form_field_choice.py +29 -0
- auth0_python-5.0.0/src/auth0/management/types/form_field_choice_config.py +23 -0
- auth0_python-5.0.0/src/auth0/management/types/form_field_choice_config_allow_other.py +22 -0
- auth0_python-5.0.0/src/auth0/management/types/form_field_choice_config_allow_other_enabled_true_enum.py +3 -0
- auth0_python-5.0.0/src/auth0/management/types/form_field_choice_config_option.py +20 -0
- auth0_python-5.0.0/src/auth0/management/types/form_field_custom.py +29 -0
- auth0_python-5.0.0/src/auth0/management/types/form_field_custom_config.py +28 -0
- auth0_python-5.0.0/src/auth0/management/types/form_field_custom_config_params.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/form_field_custom_config_schema.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/form_field_date.py +29 -0
- auth0_python-5.0.0/src/auth0/management/types/form_field_date_config.py +21 -0
- auth0_python-5.0.0/src/auth0/management/types/form_field_date_config_format_enum.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/form_field_dropdown.py +29 -0
- auth0_python-5.0.0/src/auth0/management/types/form_field_dropdown_config.py +22 -0
- auth0_python-5.0.0/src/auth0/management/types/form_field_dropdown_config_option.py +20 -0
- auth0_python-5.0.0/src/auth0/management/types/form_field_email.py +29 -0
- auth0_python-5.0.0/src/auth0/management/types/form_field_email_config.py +20 -0
- auth0_python-5.0.0/src/auth0/management/types/form_field_file.py +29 -0
- auth0_python-5.0.0/src/auth0/management/types/form_field_file_config.py +32 -0
- auth0_python-5.0.0/src/auth0/management/types/form_field_file_config_category_enum.py +7 -0
- auth0_python-5.0.0/src/auth0/management/types/form_field_file_config_storage.py +20 -0
- auth0_python-5.0.0/src/auth0/management/types/form_field_file_config_storage_type_enum.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/form_field_legal.py +29 -0
- auth0_python-5.0.0/src/auth0/management/types/form_field_legal_config.py +19 -0
- auth0_python-5.0.0/src/auth0/management/types/form_field_number.py +29 -0
- auth0_python-5.0.0/src/auth0/management/types/form_field_number_config.py +22 -0
- auth0_python-5.0.0/src/auth0/management/types/form_field_password.py +29 -0
- auth0_python-5.0.0/src/auth0/management/types/form_field_password_config.py +26 -0
- auth0_python-5.0.0/src/auth0/management/types/form_field_password_config_hash_enum.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/form_field_payment.py +29 -0
- auth0_python-5.0.0/src/auth0/management/types/form_field_payment_config.py +28 -0
- auth0_python-5.0.0/src/auth0/management/types/form_field_payment_config_charge.py +10 -0
- auth0_python-5.0.0/src/auth0/management/types/form_field_payment_config_charge_one_off.py +22 -0
- auth0_python-5.0.0/src/auth0/management/types/form_field_payment_config_charge_one_off_currency_enum.py +7 -0
- auth0_python-5.0.0/src/auth0/management/types/form_field_payment_config_charge_one_off_one_off.py +22 -0
- auth0_python-5.0.0/src/auth0/management/types/form_field_payment_config_charge_one_off_one_off_amount.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/form_field_payment_config_charge_subscription.py +22 -0
- auth0_python-5.0.0/src/auth0/management/types/form_field_payment_config_charge_type_one_off_const.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/form_field_payment_config_charge_type_subscription_const.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/form_field_payment_config_credentials.py +20 -0
- auth0_python-5.0.0/src/auth0/management/types/form_field_payment_config_customer.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/form_field_payment_config_field_properties.py +20 -0
- auth0_python-5.0.0/src/auth0/management/types/form_field_payment_config_fields.py +23 -0
- auth0_python-5.0.0/src/auth0/management/types/form_field_payment_config_provider_enum.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/form_field_payment_config_subscription.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/form_field_social.py +29 -0
- auth0_python-5.0.0/src/auth0/management/types/form_field_social_config.py +17 -0
- auth0_python-5.0.0/src/auth0/management/types/form_field_tel.py +29 -0
- auth0_python-5.0.0/src/auth0/management/types/form_field_tel_config.py +25 -0
- auth0_python-5.0.0/src/auth0/management/types/form_field_tel_config_strings.py +19 -0
- auth0_python-5.0.0/src/auth0/management/types/form_field_text.py +29 -0
- auth0_python-5.0.0/src/auth0/management/types/form_field_text_config.py +23 -0
- auth0_python-5.0.0/src/auth0/management/types/form_field_type_boolean_const.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/form_field_type_cards_const.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/form_field_type_choice_const.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/form_field_type_custom_const.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/form_field_type_date_const.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/form_field_type_dropdown_const.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/form_field_type_email_const.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/form_field_type_file_const.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/form_field_type_legal_const.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/form_field_type_number_const.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/form_field_type_password_const.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/form_field_type_payment_const.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/form_field_type_social_const.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/form_field_type_tel_const.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/form_field_type_text_const.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/form_field_type_url_const.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/form_field_url.py +29 -0
- auth0_python-5.0.0/src/auth0/management/types/form_field_url_config.py +20 -0
- auth0_python-5.0.0/src/auth0/management/types/form_flow.py +26 -0
- auth0_python-5.0.0/src/auth0/management/types/form_flow_config.py +21 -0
- auth0_python-5.0.0/src/auth0/management/types/form_hidden_field.py +20 -0
- auth0_python-5.0.0/src/auth0/management/types/form_languages.py +20 -0
- auth0_python-5.0.0/src/auth0/management/types/form_languages_nullable.py +7 -0
- auth0_python-5.0.0/src/auth0/management/types/form_messages.py +22 -0
- auth0_python-5.0.0/src/auth0/management/types/form_messages_custom.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/form_messages_error.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/form_messages_nullable.py +7 -0
- auth0_python-5.0.0/src/auth0/management/types/form_node.py +9 -0
- auth0_python-5.0.0/src/auth0/management/types/form_node_coordinates.py +20 -0
- auth0_python-5.0.0/src/auth0/management/types/form_node_list.py +7 -0
- auth0_python-5.0.0/src/auth0/management/types/form_node_list_nullable.py +7 -0
- auth0_python-5.0.0/src/auth0/management/types/form_node_pointer.py +7 -0
- auth0_python-5.0.0/src/auth0/management/types/form_node_type_flow_const.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/form_node_type_router_const.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/form_node_type_step_const.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/form_router.py +26 -0
- auth0_python-5.0.0/src/auth0/management/types/form_router_config.py +22 -0
- auth0_python-5.0.0/src/auth0/management/types/form_router_rule.py +22 -0
- auth0_python-5.0.0/src/auth0/management/types/form_start_node.py +24 -0
- auth0_python-5.0.0/src/auth0/management/types/form_start_node_nullable.py +7 -0
- auth0_python-5.0.0/src/auth0/management/types/form_step.py +26 -0
- auth0_python-5.0.0/src/auth0/management/types/form_step_component_list.py +7 -0
- auth0_python-5.0.0/src/auth0/management/types/form_step_config.py +22 -0
- auth0_python-5.0.0/src/auth0/management/types/form_style.py +19 -0
- auth0_python-5.0.0/src/auth0/management/types/form_style_nullable.py +7 -0
- auth0_python-5.0.0/src/auth0/management/types/form_summary.py +25 -0
- auth0_python-5.0.0/src/auth0/management/types/form_translations.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/form_translations_nullable.py +7 -0
- auth0_python-5.0.0/src/auth0/management/types/form_widget.py +9 -0
- auth0_python-5.0.0/src/auth0/management/types/form_widget_auth_0_verifiable_credentials.py +29 -0
- auth0_python-5.0.0/src/auth0/management/types/form_widget_auth_0_verifiable_credentials_config.py +24 -0
- auth0_python-5.0.0/src/auth0/management/types/form_widget_g_maps_address.py +29 -0
- auth0_python-5.0.0/src/auth0/management/types/form_widget_g_maps_address_config.py +19 -0
- auth0_python-5.0.0/src/auth0/management/types/form_widget_recaptcha.py +29 -0
- auth0_python-5.0.0/src/auth0/management/types/form_widget_recaptcha_config.py +20 -0
- auth0_python-5.0.0/src/auth0/management/types/form_widget_type_auth_0_verifiable_credentials_const.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/form_widget_type_g_maps_address_const.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/form_widget_type_recaptcha_const.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/forms_request_parameters_hydrate_enum.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/get_action_execution_response_content.py +43 -0
- auth0_python-5.0.0/src/auth0/management/types/get_action_module_actions_response_content.py +38 -0
- auth0_python-5.0.0/src/auth0/management/types/get_action_module_response_content.py +73 -0
- auth0_python-5.0.0/src/auth0/management/types/get_action_module_version_response_content.py +55 -0
- auth0_python-5.0.0/src/auth0/management/types/get_action_module_versions_response_content.py +23 -0
- auth0_python-5.0.0/src/auth0/management/types/get_action_modules_response_content.py +38 -0
- auth0_python-5.0.0/src/auth0/management/types/get_action_response_content.py +98 -0
- auth0_python-5.0.0/src/auth0/management/types/get_action_version_response_content.py +97 -0
- auth0_python-5.0.0/src/auth0/management/types/get_active_users_count_stats_response_content.py +3 -0
- auth0_python-5.0.0/src/auth0/management/types/get_acul_response_content.py +55 -0
- auth0_python-5.0.0/src/auth0/management/types/get_attack_protection_captcha_response_content.py +45 -0
- auth0_python-5.0.0/src/auth0/management/types/get_bot_detection_settings_response_content.py +30 -0
- auth0_python-5.0.0/src/auth0/management/types/get_branding_default_theme_response_content.py +42 -0
- auth0_python-5.0.0/src/auth0/management/types/get_branding_phone_provider_response_content.py +49 -0
- auth0_python-5.0.0/src/auth0/management/types/get_branding_response_content.py +32 -0
- auth0_python-5.0.0/src/auth0/management/types/get_branding_theme_response_content.py +42 -0
- auth0_python-5.0.0/src/auth0/management/types/get_breached_password_detection_settings_response_content.py +45 -0
- auth0_python-5.0.0/src/auth0/management/types/get_brute_force_settings_response_content.py +41 -0
- auth0_python-5.0.0/src/auth0/management/types/get_client_credential_response_content.py +66 -0
- auth0_python-5.0.0/src/auth0/management/types/get_client_grant_response_content.py +61 -0
- auth0_python-5.0.0/src/auth0/management/types/get_client_response_content.py +235 -0
- auth0_python-5.0.0/src/auth0/management/types/get_connection_enabled_clients_response_content.py +28 -0
- auth0_python-5.0.0/src/auth0/management/types/get_connection_profile_response_content.py +32 -0
- auth0_python-5.0.0/src/auth0/management/types/get_connection_profile_template_response_content.py +30 -0
- auth0_python-5.0.0/src/auth0/management/types/get_connection_response_content.py +66 -0
- auth0_python-5.0.0/src/auth0/management/types/get_custom_domain_response_content.py +69 -0
- auth0_python-5.0.0/src/auth0/management/types/get_custom_signing_keys_response_content.py +27 -0
- auth0_python-5.0.0/src/auth0/management/types/get_custom_texts_by_language_response_content.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/get_directory_provisioning_default_mapping_response_content.py +23 -0
- auth0_python-5.0.0/src/auth0/management/types/get_directory_provisioning_response_content.py +69 -0
- auth0_python-5.0.0/src/auth0/management/types/get_email_provider_response_content.py +37 -0
- auth0_python-5.0.0/src/auth0/management/types/get_email_template_response_content.py +69 -0
- auth0_python-5.0.0/src/auth0/management/types/get_encryption_key_response_content.py +51 -0
- auth0_python-5.0.0/src/auth0/management/types/get_event_stream_delivery_history_response_content.py +44 -0
- auth0_python-5.0.0/src/auth0/management/types/get_event_stream_response_content.py +11 -0
- auth0_python-5.0.0/src/auth0/management/types/get_flow_execution_request_parameters_hydrate_enum.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/get_flow_execution_response_content.py +60 -0
- auth0_python-5.0.0/src/auth0/management/types/get_flow_request_parameters_hydrate_enum.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/get_flow_response_content.py +41 -0
- auth0_python-5.0.0/src/auth0/management/types/get_flows_vault_connection_response_content.py +65 -0
- auth0_python-5.0.0/src/auth0/management/types/get_form_response_content.py +39 -0
- auth0_python-5.0.0/src/auth0/management/types/get_group_members_response_content.py +24 -0
- auth0_python-5.0.0/src/auth0/management/types/get_group_response_content.py +63 -0
- auth0_python-5.0.0/src/auth0/management/types/get_guardian_enrollment_response_content.py +43 -0
- auth0_python-5.0.0/src/auth0/management/types/get_guardian_factor_duo_settings_response_content.py +21 -0
- auth0_python-5.0.0/src/auth0/management/types/get_guardian_factor_phone_message_types_response_content.py +23 -0
- auth0_python-5.0.0/src/auth0/management/types/get_guardian_factor_phone_templates_response_content.py +31 -0
- auth0_python-5.0.0/src/auth0/management/types/get_guardian_factor_sms_templates_response_content.py +31 -0
- auth0_python-5.0.0/src/auth0/management/types/get_guardian_factors_provider_apns_response_content.py +21 -0
- auth0_python-5.0.0/src/auth0/management/types/get_guardian_factors_provider_phone_response_content.py +20 -0
- auth0_python-5.0.0/src/auth0/management/types/get_guardian_factors_provider_phone_twilio_response_content.py +41 -0
- auth0_python-5.0.0/src/auth0/management/types/get_guardian_factors_provider_push_notification_response_content.py +22 -0
- auth0_python-5.0.0/src/auth0/management/types/get_guardian_factors_provider_sms_response_content.py +20 -0
- auth0_python-5.0.0/src/auth0/management/types/get_guardian_factors_provider_sms_twilio_response_content.py +41 -0
- auth0_python-5.0.0/src/auth0/management/types/get_guardian_factors_provider_sns_response_content.py +23 -0
- auth0_python-5.0.0/src/auth0/management/types/get_hook_response_content.py +51 -0
- auth0_python-5.0.0/src/auth0/management/types/get_hook_secret_response_content.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/get_job_error_response_content.py +25 -0
- auth0_python-5.0.0/src/auth0/management/types/get_job_generic_error_response_content.py +47 -0
- auth0_python-5.0.0/src/auth0/management/types/get_job_import_user_error.py +32 -0
- auth0_python-5.0.0/src/auth0/management/types/get_job_response_content.py +67 -0
- auth0_python-5.0.0/src/auth0/management/types/get_job_summary.py +41 -0
- auth0_python-5.0.0/src/auth0/management/types/get_job_user_error.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/get_log_response_content.py +115 -0
- auth0_python-5.0.0/src/auth0/management/types/get_log_stream_response_content.py +23 -0
- auth0_python-5.0.0/src/auth0/management/types/get_network_acls_response_content.py +33 -0
- auth0_python-5.0.0/src/auth0/management/types/get_organization_by_name_response_content.py +39 -0
- auth0_python-5.0.0/src/auth0/management/types/get_organization_connection_response_content.py +40 -0
- auth0_python-5.0.0/src/auth0/management/types/get_organization_discovery_domain_by_name_response_content.py +44 -0
- auth0_python-5.0.0/src/auth0/management/types/get_organization_discovery_domain_response_content.py +44 -0
- auth0_python-5.0.0/src/auth0/management/types/get_organization_invitation_response_content.py +73 -0
- auth0_python-5.0.0/src/auth0/management/types/get_organization_response_content.py +39 -0
- auth0_python-5.0.0/src/auth0/management/types/get_partials_response_content.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/get_phone_template_response_content.py +30 -0
- auth0_python-5.0.0/src/auth0/management/types/get_refresh_token_response_content.py +55 -0
- auth0_python-5.0.0/src/auth0/management/types/get_resource_server_response_content.py +91 -0
- auth0_python-5.0.0/src/auth0/management/types/get_risk_assessments_settings_new_device_response_content.py +22 -0
- auth0_python-5.0.0/src/auth0/management/types/get_risk_assessments_settings_response_content.py +22 -0
- auth0_python-5.0.0/src/auth0/management/types/get_role_response_content.py +32 -0
- auth0_python-5.0.0/src/auth0/management/types/get_rule_response_content.py +49 -0
- auth0_python-5.0.0/src/auth0/management/types/get_scim_configuration_default_mapping_response_content.py +23 -0
- auth0_python-5.0.0/src/auth0/management/types/get_scim_configuration_response_content.py +58 -0
- auth0_python-5.0.0/src/auth0/management/types/get_scim_tokens_response_content.py +7 -0
- auth0_python-5.0.0/src/auth0/management/types/get_self_service_profile_response_content.py +64 -0
- auth0_python-5.0.0/src/auth0/management/types/get_session_response_content.py +49 -0
- auth0_python-5.0.0/src/auth0/management/types/get_settings_response_content.py +29 -0
- auth0_python-5.0.0/src/auth0/management/types/get_signing_keys_response_content.py +73 -0
- auth0_python-5.0.0/src/auth0/management/types/get_supplemental_signals_response_content.py +22 -0
- auth0_python-5.0.0/src/auth0/management/types/get_suspicious_ip_throttling_settings_response_content.py +34 -0
- auth0_python-5.0.0/src/auth0/management/types/get_tenant_settings_response_content.py +162 -0
- auth0_python-5.0.0/src/auth0/management/types/get_token_exchange_profile_response_content.py +50 -0
- auth0_python-5.0.0/src/auth0/management/types/get_universal_login_template.py +22 -0
- auth0_python-5.0.0/src/auth0/management/types/get_universal_login_template_response_content.py +7 -0
- auth0_python-5.0.0/src/auth0/management/types/get_user_attribute_profile_response_content.py +26 -0
- auth0_python-5.0.0/src/auth0/management/types/get_user_attribute_profile_template_response_content.py +30 -0
- auth0_python-5.0.0/src/auth0/management/types/get_user_authentication_method_response_content.py +109 -0
- auth0_python-5.0.0/src/auth0/management/types/get_user_groups_paginated_response_content.py +28 -0
- auth0_python-5.0.0/src/auth0/management/types/get_user_response_content.py +106 -0
- auth0_python-5.0.0/src/auth0/management/types/get_verifiable_credential_template_response_content.py +60 -0
- auth0_python-5.0.0/src/auth0/management/types/group.py +63 -0
- auth0_python-5.0.0/src/auth0/management/types/group_member.py +41 -0
- auth0_python-5.0.0/src/auth0/management/types/group_member_type_enum.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/group_type_enum.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/guardian_enrollment_date.py +3 -0
- auth0_python-5.0.0/src/auth0/management/types/guardian_enrollment_factor_enum.py +7 -0
- auth0_python-5.0.0/src/auth0/management/types/guardian_enrollment_status.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/guardian_factor.py +30 -0
- auth0_python-5.0.0/src/auth0/management/types/guardian_factor_name_enum.py +10 -0
- auth0_python-5.0.0/src/auth0/management/types/guardian_factor_phone_factor_message_type_enum.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/guardian_factors_provider_push_notification_provider_data_enum.py +7 -0
- auth0_python-5.0.0/src/auth0/management/types/guardian_factors_provider_sms_provider_enum.py +7 -0
- auth0_python-5.0.0/src/auth0/management/types/hook.py +51 -0
- auth0_python-5.0.0/src/auth0/management/types/hook_dependencies.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/hook_trigger_id_enum.py +14 -0
- auth0_python-5.0.0/src/auth0/management/types/http_custom_header.py +27 -0
- auth0_python-5.0.0/src/auth0/management/types/identity.py +33 -0
- auth0_python-5.0.0/src/auth0/management/types/identity_provider_enum.py +71 -0
- auth0_python-5.0.0/src/auth0/management/types/identity_provider_only_auth_0_enum.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/import_encryption_key_response_content.py +51 -0
- auth0_python-5.0.0/src/auth0/management/types/integration.py +76 -0
- auth0_python-5.0.0/src/auth0/management/types/integration_feature_type_enum.py +8 -0
- auth0_python-5.0.0/src/auth0/management/types/integration_release.py +38 -0
- auth0_python-5.0.0/src/auth0/management/types/integration_required_param.py +69 -0
- auth0_python-5.0.0/src/auth0/management/types/integration_required_param_option.py +27 -0
- auth0_python-5.0.0/src/auth0/management/types/integration_required_param_type_enum.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/integration_sem_ver.py +31 -0
- auth0_python-5.0.0/src/auth0/management/types/job_file_format_enum.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/linked_client_configuration.py +26 -0
- auth0_python-5.0.0/src/auth0/management/types/list_action_bindings_paginated_response_content.py +38 -0
- auth0_python-5.0.0/src/auth0/management/types/list_action_triggers_response_content.py +20 -0
- auth0_python-5.0.0/src/auth0/management/types/list_action_versions_paginated_response_content.py +35 -0
- auth0_python-5.0.0/src/auth0/management/types/list_actions_paginated_response_content.py +38 -0
- auth0_python-5.0.0/src/auth0/management/types/list_aculs_offset_paginated_response_content.py +34 -0
- auth0_python-5.0.0/src/auth0/management/types/list_aculs_response_content_item.py +55 -0
- auth0_python-5.0.0/src/auth0/management/types/list_branding_phone_providers_response_content.py +20 -0
- auth0_python-5.0.0/src/auth0/management/types/list_client_connections_response_content.py +24 -0
- auth0_python-5.0.0/src/auth0/management/types/list_client_grant_organizations_paginated_response_content.py +25 -0
- auth0_python-5.0.0/src/auth0/management/types/list_client_grant_paginated_response_content.py +25 -0
- auth0_python-5.0.0/src/auth0/management/types/list_clients_offset_paginated_response_content.py +23 -0
- auth0_python-5.0.0/src/auth0/management/types/list_connection_profile_template_response_content.py +20 -0
- auth0_python-5.0.0/src/auth0/management/types/list_connection_profiles_paginated_response_content.py +25 -0
- auth0_python-5.0.0/src/auth0/management/types/list_connections_checkpoint_paginated_response_content.py +25 -0
- auth0_python-5.0.0/src/auth0/management/types/list_custom_domains_response_content.py +7 -0
- auth0_python-5.0.0/src/auth0/management/types/list_device_credentials_offset_paginated_response_content.py +23 -0
- auth0_python-5.0.0/src/auth0/management/types/list_directory_provisionings_response_content.py +28 -0
- auth0_python-5.0.0/src/auth0/management/types/list_encryption_key_offset_paginated_response_content.py +38 -0
- auth0_python-5.0.0/src/auth0/management/types/list_event_streams_response_content.py +28 -0
- auth0_python-5.0.0/src/auth0/management/types/list_flow_executions_paginated_response_content.py +25 -0
- auth0_python-5.0.0/src/auth0/management/types/list_flows_offset_paginated_response_content.py +23 -0
- auth0_python-5.0.0/src/auth0/management/types/list_flows_request_parameters_hydrate_enum.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/list_flows_vault_connections_offset_paginated_response_content.py +23 -0
- auth0_python-5.0.0/src/auth0/management/types/list_forms_offset_paginated_response_content.py +23 -0
- auth0_python-5.0.0/src/auth0/management/types/list_groups_paginated_response_content.py +28 -0
- auth0_python-5.0.0/src/auth0/management/types/list_guardian_policies_response_content.py +7 -0
- auth0_python-5.0.0/src/auth0/management/types/list_hooks_offset_paginated_response_content.py +23 -0
- auth0_python-5.0.0/src/auth0/management/types/list_log_offset_paginated_response_content.py +24 -0
- auth0_python-5.0.0/src/auth0/management/types/list_network_acls_offset_paginated_response_content.py +23 -0
- auth0_python-5.0.0/src/auth0/management/types/list_organization_client_grants_offset_paginated_response_content.py +23 -0
- auth0_python-5.0.0/src/auth0/management/types/list_organization_connections_offset_paginated_response_content.py +23 -0
- auth0_python-5.0.0/src/auth0/management/types/list_organization_discovery_domains_response_content.py +21 -0
- auth0_python-5.0.0/src/auth0/management/types/list_organization_invitations_offset_paginated_response_content.py +22 -0
- auth0_python-5.0.0/src/auth0/management/types/list_organization_member_roles_offset_paginated_response_content.py +23 -0
- auth0_python-5.0.0/src/auth0/management/types/list_organization_members_paginated_response_content.py +21 -0
- auth0_python-5.0.0/src/auth0/management/types/list_organizations_paginated_response_content.py +21 -0
- auth0_python-5.0.0/src/auth0/management/types/list_phone_templates_response_content.py +20 -0
- auth0_python-5.0.0/src/auth0/management/types/list_refresh_tokens_paginated_response_content.py +24 -0
- auth0_python-5.0.0/src/auth0/management/types/list_resource_server_offset_paginated_response_content.py +23 -0
- auth0_python-5.0.0/src/auth0/management/types/list_role_permissions_offset_paginated_response_content.py +23 -0
- auth0_python-5.0.0/src/auth0/management/types/list_role_users_paginated_response_content.py +21 -0
- auth0_python-5.0.0/src/auth0/management/types/list_roles_offset_paginated_response_content.py +23 -0
- auth0_python-5.0.0/src/auth0/management/types/list_rules_offset_paginated_response_content.py +23 -0
- auth0_python-5.0.0/src/auth0/management/types/list_self_service_profile_custom_text_response_content.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/list_self_service_profiles_paginated_response_content.py +23 -0
- auth0_python-5.0.0/src/auth0/management/types/list_token_exchange_profile_response_content.py +25 -0
- auth0_python-5.0.0/src/auth0/management/types/list_user_attribute_profile_template_response_content.py +20 -0
- auth0_python-5.0.0/src/auth0/management/types/list_user_attribute_profiles_paginated_response_content.py +25 -0
- auth0_python-5.0.0/src/auth0/management/types/list_user_authentication_methods_offset_paginated_response_content.py +38 -0
- auth0_python-5.0.0/src/auth0/management/types/list_user_blocks_by_identifier_response_content.py +23 -0
- auth0_python-5.0.0/src/auth0/management/types/list_user_blocks_response_content.py +23 -0
- auth0_python-5.0.0/src/auth0/management/types/list_user_connected_accounts_response_content.py +24 -0
- auth0_python-5.0.0/src/auth0/management/types/list_user_grants_offset_paginated_response_content.py +23 -0
- auth0_python-5.0.0/src/auth0/management/types/list_user_organizations_offset_paginated_response_content.py +23 -0
- auth0_python-5.0.0/src/auth0/management/types/list_user_permissions_offset_paginated_response_content.py +23 -0
- auth0_python-5.0.0/src/auth0/management/types/list_user_roles_offset_paginated_response_content.py +23 -0
- auth0_python-5.0.0/src/auth0/management/types/list_user_sessions_paginated_response_content.py +24 -0
- auth0_python-5.0.0/src/auth0/management/types/list_users_offset_paginated_response_content.py +24 -0
- auth0_python-5.0.0/src/auth0/management/types/list_verifiable_credential_templates_paginated_response_content.py +25 -0
- auth0_python-5.0.0/src/auth0/management/types/log.py +115 -0
- auth0_python-5.0.0/src/auth0/management/types/log_date.py +7 -0
- auth0_python-5.0.0/src/auth0/management/types/log_date_object.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/log_details.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/log_location_info.py +65 -0
- auth0_python-5.0.0/src/auth0/management/types/log_security_context.py +37 -0
- auth0_python-5.0.0/src/auth0/management/types/log_stream_datadog_enum.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/log_stream_datadog_region_enum.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/log_stream_datadog_response_schema.py +51 -0
- auth0_python-5.0.0/src/auth0/management/types/log_stream_datadog_sink.py +31 -0
- auth0_python-5.0.0/src/auth0/management/types/log_stream_event_bridge_enum.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/log_stream_event_bridge_response_schema.py +51 -0
- auth0_python-5.0.0/src/auth0/management/types/log_stream_event_bridge_sink.py +37 -0
- auth0_python-5.0.0/src/auth0/management/types/log_stream_event_bridge_sink_region_enum.py +45 -0
- auth0_python-5.0.0/src/auth0/management/types/log_stream_event_grid_enum.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/log_stream_event_grid_region_enum.py +43 -0
- auth0_python-5.0.0/src/auth0/management/types/log_stream_event_grid_response_schema.py +51 -0
- auth0_python-5.0.0/src/auth0/management/types/log_stream_event_grid_sink.py +44 -0
- auth0_python-5.0.0/src/auth0/management/types/log_stream_filter.py +22 -0
- auth0_python-5.0.0/src/auth0/management/types/log_stream_filter_group_name_enum.py +29 -0
- auth0_python-5.0.0/src/auth0/management/types/log_stream_filter_type_enum.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/log_stream_http_content_format_enum.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/log_stream_http_enum.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/log_stream_http_response_schema.py +51 -0
- auth0_python-5.0.0/src/auth0/management/types/log_stream_http_sink.py +52 -0
- auth0_python-5.0.0/src/auth0/management/types/log_stream_mixpanel_enum.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/log_stream_mixpanel_region_enum.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/log_stream_mixpanel_response_schema.py +51 -0
- auth0_python-5.0.0/src/auth0/management/types/log_stream_mixpanel_sink.py +44 -0
- auth0_python-5.0.0/src/auth0/management/types/log_stream_mixpanel_sink_patch.py +44 -0
- auth0_python-5.0.0/src/auth0/management/types/log_stream_pii_algorithm_enum.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/log_stream_pii_config.py +24 -0
- auth0_python-5.0.0/src/auth0/management/types/log_stream_pii_log_fields_enum.py +7 -0
- auth0_python-5.0.0/src/auth0/management/types/log_stream_pii_method_enum.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/log_stream_response_schema.py +23 -0
- auth0_python-5.0.0/src/auth0/management/types/log_stream_segment_enum.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/log_stream_segment_response_schema.py +51 -0
- auth0_python-5.0.0/src/auth0/management/types/log_stream_segment_sink.py +26 -0
- auth0_python-5.0.0/src/auth0/management/types/log_stream_segment_sink_write_key.py +26 -0
- auth0_python-5.0.0/src/auth0/management/types/log_stream_sink_patch.py +19 -0
- auth0_python-5.0.0/src/auth0/management/types/log_stream_splunk_enum.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/log_stream_splunk_response_schema.py +51 -0
- auth0_python-5.0.0/src/auth0/management/types/log_stream_splunk_sink.py +47 -0
- auth0_python-5.0.0/src/auth0/management/types/log_stream_status_enum.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/log_stream_sumo_enum.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/log_stream_sumo_response_schema.py +51 -0
- auth0_python-5.0.0/src/auth0/management/types/log_stream_sumo_sink.py +26 -0
- auth0_python-5.0.0/src/auth0/management/types/mdl_presentation_properties.py +122 -0
- auth0_python-5.0.0/src/auth0/management/types/mdl_presentation_request.py +28 -0
- auth0_python-5.0.0/src/auth0/management/types/mdl_presentation_request_properties.py +24 -0
- auth0_python-5.0.0/src/auth0/management/types/mfa_policy_enum.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/native_social_login.py +28 -0
- auth0_python-5.0.0/src/auth0/management/types/native_social_login_apple.py +26 -0
- auth0_python-5.0.0/src/auth0/management/types/native_social_login_facebook.py +26 -0
- auth0_python-5.0.0/src/auth0/management/types/native_social_login_google.py +26 -0
- auth0_python-5.0.0/src/auth0/management/types/network_acl_action.py +30 -0
- auth0_python-5.0.0/src/auth0/management/types/network_acl_action_allow_enum.py +3 -0
- auth0_python-5.0.0/src/auth0/management/types/network_acl_action_block_enum.py +3 -0
- auth0_python-5.0.0/src/auth0/management/types/network_acl_action_log_enum.py +3 -0
- auth0_python-5.0.0/src/auth0/management/types/network_acl_action_redirect_enum.py +3 -0
- auth0_python-5.0.0/src/auth0/management/types/network_acl_match.py +38 -0
- auth0_python-5.0.0/src/auth0/management/types/network_acl_match_ipv_4_cidr.py +3 -0
- auth0_python-5.0.0/src/auth0/management/types/network_acl_match_ipv_6_cidr.py +3 -0
- auth0_python-5.0.0/src/auth0/management/types/network_acl_rule.py +25 -0
- auth0_python-5.0.0/src/auth0/management/types/network_acl_rule_scope_enum.py +7 -0
- auth0_python-5.0.0/src/auth0/management/types/network_acls_response_content.py +33 -0
- auth0_python-5.0.0/src/auth0/management/types/oauth_scope.py +228 -0
- auth0_python-5.0.0/src/auth0/management/types/organization.py +39 -0
- auth0_python-5.0.0/src/auth0/management/types/organization_branding.py +29 -0
- auth0_python-5.0.0/src/auth0/management/types/organization_branding_colors.py +31 -0
- auth0_python-5.0.0/src/auth0/management/types/organization_client_grant.py +44 -0
- auth0_python-5.0.0/src/auth0/management/types/organization_connection.py +40 -0
- auth0_python-5.0.0/src/auth0/management/types/organization_connection_information.py +27 -0
- auth0_python-5.0.0/src/auth0/management/types/organization_discovery_domain.py +44 -0
- auth0_python-5.0.0/src/auth0/management/types/organization_discovery_domain_status.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/organization_enabled_connection.py +40 -0
- auth0_python-5.0.0/src/auth0/management/types/organization_invitation.py +73 -0
- auth0_python-5.0.0/src/auth0/management/types/organization_invitation_invitee.py +22 -0
- auth0_python-5.0.0/src/auth0/management/types/organization_invitation_inviter.py +22 -0
- auth0_python-5.0.0/src/auth0/management/types/organization_member.py +40 -0
- auth0_python-5.0.0/src/auth0/management/types/organization_member_role.py +27 -0
- auth0_python-5.0.0/src/auth0/management/types/organization_metadata.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/organization_usage_enum.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/partial_groups_enum.py +18 -0
- auth0_python-5.0.0/src/auth0/management/types/partial_phone_template_content.py +29 -0
- auth0_python-5.0.0/src/auth0/management/types/patch_client_credential_response_content.py +66 -0
- auth0_python-5.0.0/src/auth0/management/types/patch_supplemental_signals_response_content.py +22 -0
- auth0_python-5.0.0/src/auth0/management/types/permission_request_payload.py +27 -0
- auth0_python-5.0.0/src/auth0/management/types/permissions_response_payload.py +37 -0
- auth0_python-5.0.0/src/auth0/management/types/phone_attribute.py +31 -0
- auth0_python-5.0.0/src/auth0/management/types/phone_provider_channel_enum.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/phone_provider_configuration.py +8 -0
- auth0_python-5.0.0/src/auth0/management/types/phone_provider_credentials.py +8 -0
- auth0_python-5.0.0/src/auth0/management/types/phone_provider_delivery_method_enum.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/phone_provider_name_enum.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/phone_provider_schema_masked.py +49 -0
- auth0_python-5.0.0/src/auth0/management/types/phone_template.py +30 -0
- auth0_python-5.0.0/src/auth0/management/types/phone_template_body.py +27 -0
- auth0_python-5.0.0/src/auth0/management/types/phone_template_content.py +30 -0
- auth0_python-5.0.0/src/auth0/management/types/phone_template_notification_type_enum.py +7 -0
- auth0_python-5.0.0/src/auth0/management/types/post_client_credential_response_content.py +66 -0
- auth0_python-5.0.0/src/auth0/management/types/preferred_authentication_method_enum.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/prompt_group_name_enum.py +45 -0
- auth0_python-5.0.0/src/auth0/management/types/prompt_language_enum.py +90 -0
- auth0_python-5.0.0/src/auth0/management/types/public_key_credential.py +42 -0
- auth0_python-5.0.0/src/auth0/management/types/public_key_credential_algorithm_enum.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/public_key_credential_type_enum.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/refresh_token_date.py +8 -0
- auth0_python-5.0.0/src/auth0/management/types/refresh_token_date_object.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/refresh_token_device.py +51 -0
- auth0_python-5.0.0/src/auth0/management/types/refresh_token_expiration_type_enum.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/refresh_token_metadata.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/refresh_token_resource_server.py +27 -0
- auth0_python-5.0.0/src/auth0/management/types/refresh_token_response_content.py +55 -0
- auth0_python-5.0.0/src/auth0/management/types/refresh_token_rotation_type_enum.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/refresh_token_session_id.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/regenerate_users_recovery_code_response_content.py +22 -0
- auth0_python-5.0.0/src/auth0/management/types/reset_phone_template_request_content.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/reset_phone_template_response_content.py +30 -0
- auth0_python-5.0.0/src/auth0/management/types/resource_server.py +91 -0
- auth0_python-5.0.0/src/auth0/management/types/resource_server_consent_policy_enum.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/resource_server_proof_of_possession.py +31 -0
- auth0_python-5.0.0/src/auth0/management/types/resource_server_proof_of_possession_mechanism_enum.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/resource_server_proof_of_possession_required_for_enum.py +7 -0
- auth0_python-5.0.0/src/auth0/management/types/resource_server_scope.py +27 -0
- auth0_python-5.0.0/src/auth0/management/types/resource_server_subject_type_authorization.py +26 -0
- auth0_python-5.0.0/src/auth0/management/types/resource_server_subject_type_authorization_client.py +26 -0
- auth0_python-5.0.0/src/auth0/management/types/resource_server_subject_type_authorization_client_policy_enum.py +7 -0
- auth0_python-5.0.0/src/auth0/management/types/resource_server_subject_type_authorization_user.py +26 -0
- auth0_python-5.0.0/src/auth0/management/types/resource_server_subject_type_authorization_user_policy_enum.py +7 -0
- auth0_python-5.0.0/src/auth0/management/types/resource_server_token_dialect_response_enum.py +7 -0
- auth0_python-5.0.0/src/auth0/management/types/resource_server_token_dialect_schema_enum.py +7 -0
- auth0_python-5.0.0/src/auth0/management/types/resource_server_token_encryption.py +22 -0
- auth0_python-5.0.0/src/auth0/management/types/resource_server_token_encryption_algorithm_enum.py +7 -0
- auth0_python-5.0.0/src/auth0/management/types/resource_server_token_encryption_format_enum.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/resource_server_token_encryption_key.py +34 -0
- auth0_python-5.0.0/src/auth0/management/types/resource_server_verification_key_pem_certificate.py +3 -0
- auth0_python-5.0.0/src/auth0/management/types/revoked_signing_keys_response_content.py +29 -0
- auth0_python-5.0.0/src/auth0/management/types/role.py +32 -0
- auth0_python-5.0.0/src/auth0/management/types/role_user.py +37 -0
- auth0_python-5.0.0/src/auth0/management/types/rollback_action_module_response_content.py +73 -0
- auth0_python-5.0.0/src/auth0/management/types/rotate_client_secret_response_content.py +235 -0
- auth0_python-5.0.0/src/auth0/management/types/rotate_connection_keys_request_content.py +20 -0
- auth0_python-5.0.0/src/auth0/management/types/rotate_connection_keys_signing_alg_enum.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/rotate_connections_keys_response_content.py +60 -0
- auth0_python-5.0.0/src/auth0/management/types/rotate_signing_keys_response_content.py +29 -0
- auth0_python-5.0.0/src/auth0/management/types/rule.py +49 -0
- auth0_python-5.0.0/src/auth0/management/types/rules_config.py +22 -0
- auth0_python-5.0.0/src/auth0/management/types/scim_mapping_item.py +31 -0
- auth0_python-5.0.0/src/auth0/management/types/scim_token_item.py +42 -0
- auth0_python-5.0.0/src/auth0/management/types/screen_group_name_enum.py +98 -0
- auth0_python-5.0.0/src/auth0/management/types/search_engine_versions_enum.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/self_service_profile.py +64 -0
- auth0_python-5.0.0/src/auth0/management/types/self_service_profile_allowed_strategy_enum.py +19 -0
- auth0_python-5.0.0/src/auth0/management/types/self_service_profile_branding.py +7 -0
- auth0_python-5.0.0/src/auth0/management/types/self_service_profile_branding_colors.py +19 -0
- auth0_python-5.0.0/src/auth0/management/types/self_service_profile_branding_properties.py +21 -0
- auth0_python-5.0.0/src/auth0/management/types/self_service_profile_custom_text_language_enum.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/self_service_profile_custom_text_page_enum.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/self_service_profile_description.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/self_service_profile_sso_ticket_connection_config.py +46 -0
- auth0_python-5.0.0/src/auth0/management/types/self_service_profile_sso_ticket_connection_options.py +34 -0
- auth0_python-5.0.0/src/auth0/management/types/self_service_profile_sso_ticket_domain_aliases_config.py +24 -0
- auth0_python-5.0.0/src/auth0/management/types/self_service_profile_sso_ticket_domain_verification_enum.py +7 -0
- auth0_python-5.0.0/src/auth0/management/types/self_service_profile_sso_ticket_enabled_organization.py +32 -0
- auth0_python-5.0.0/src/auth0/management/types/self_service_profile_sso_ticket_google_workspace_config.py +26 -0
- auth0_python-5.0.0/src/auth0/management/types/self_service_profile_sso_ticket_idp_initiated_client_protocol_enum.py +7 -0
- auth0_python-5.0.0/src/auth0/management/types/self_service_profile_sso_ticket_idp_initiated_options.py +40 -0
- auth0_python-5.0.0/src/auth0/management/types/self_service_profile_sso_ticket_provisioning_config.py +36 -0
- auth0_python-5.0.0/src/auth0/management/types/self_service_profile_sso_ticket_provisioning_scope_enum.py +7 -0
- auth0_python-5.0.0/src/auth0/management/types/self_service_profile_user_attribute.py +32 -0
- auth0_python-5.0.0/src/auth0/management/types/self_service_profile_user_attributes.py +7 -0
- auth0_python-5.0.0/src/auth0/management/types/session_authentication_signal.py +37 -0
- auth0_python-5.0.0/src/auth0/management/types/session_authentication_signals.py +27 -0
- auth0_python-5.0.0/src/auth0/management/types/session_client_metadata.py +26 -0
- auth0_python-5.0.0/src/auth0/management/types/session_cookie_metadata.py +24 -0
- auth0_python-5.0.0/src/auth0/management/types/session_cookie_metadata_mode_enum.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/session_cookie_mode_enum.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/session_cookie_schema.py +24 -0
- auth0_python-5.0.0/src/auth0/management/types/session_date.py +6 -0
- auth0_python-5.0.0/src/auth0/management/types/session_device_metadata.py +44 -0
- auth0_python-5.0.0/src/auth0/management/types/session_ip.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/session_metadata.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/session_response_content.py +49 -0
- auth0_python-5.0.0/src/auth0/management/types/set_custom_signing_keys_response_content.py +27 -0
- auth0_python-5.0.0/src/auth0/management/types/set_email_template_response_content.py +69 -0
- auth0_python-5.0.0/src/auth0/management/types/set_guardian_factor_duo_settings_response_content.py +21 -0
- auth0_python-5.0.0/src/auth0/management/types/set_guardian_factor_phone_message_types_response_content.py +23 -0
- auth0_python-5.0.0/src/auth0/management/types/set_guardian_factor_phone_templates_response_content.py +31 -0
- auth0_python-5.0.0/src/auth0/management/types/set_guardian_factor_response_content.py +22 -0
- auth0_python-5.0.0/src/auth0/management/types/set_guardian_factor_sms_templates_response_content.py +31 -0
- auth0_python-5.0.0/src/auth0/management/types/set_guardian_factors_provider_phone_response_content.py +20 -0
- auth0_python-5.0.0/src/auth0/management/types/set_guardian_factors_provider_phone_twilio_response_content.py +41 -0
- auth0_python-5.0.0/src/auth0/management/types/set_guardian_factors_provider_push_notification_apns_response_content.py +20 -0
- auth0_python-5.0.0/src/auth0/management/types/set_guardian_factors_provider_push_notification_fcm_response_content.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/set_guardian_factors_provider_push_notification_fcmv_1_response_content.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/set_guardian_factors_provider_push_notification_response_content.py +22 -0
- auth0_python-5.0.0/src/auth0/management/types/set_guardian_factors_provider_push_notification_sns_response_content.py +23 -0
- auth0_python-5.0.0/src/auth0/management/types/set_guardian_factors_provider_sms_response_content.py +20 -0
- auth0_python-5.0.0/src/auth0/management/types/set_guardian_factors_provider_sms_twilio_response_content.py +41 -0
- auth0_python-5.0.0/src/auth0/management/types/set_guardian_policies_request_content.py +7 -0
- auth0_python-5.0.0/src/auth0/management/types/set_guardian_policies_response_content.py +7 -0
- auth0_python-5.0.0/src/auth0/management/types/set_network_acls_response_content.py +33 -0
- auth0_python-5.0.0/src/auth0/management/types/set_partials_request_content.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/set_rules_config_response_content.py +27 -0
- auth0_python-5.0.0/src/auth0/management/types/set_self_service_profile_custom_text_request_content.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/set_self_service_profile_custom_text_response_content.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/set_user_authentication_method_response_content.py +78 -0
- auth0_python-5.0.0/src/auth0/management/types/set_user_authentication_methods.py +41 -0
- auth0_python-5.0.0/src/auth0/management/types/set_user_authentication_methods_request_content.py +7 -0
- auth0_python-5.0.0/src/auth0/management/types/sets_custom_texts_by_language_request_content.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/signing_algorithm_enum.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/signing_keys.py +73 -0
- auth0_python-5.0.0/src/auth0/management/types/signing_keys_date.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/signup_schema.py +20 -0
- auth0_python-5.0.0/src/auth0/management/types/signup_status_enum.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/signup_verification.py +19 -0
- auth0_python-5.0.0/src/auth0/management/types/signup_verified.py +22 -0
- auth0_python-5.0.0/src/auth0/management/types/supported_locales.py +90 -0
- auth0_python-5.0.0/src/auth0/management/types/suspicious_ip_throttling_allowlist.py +7 -0
- auth0_python-5.0.0/src/auth0/management/types/suspicious_ip_throttling_allowlist_item.py +3 -0
- auth0_python-5.0.0/src/auth0/management/types/suspicious_ip_throttling_pre_login_stage.py +31 -0
- auth0_python-5.0.0/src/auth0/management/types/suspicious_ip_throttling_pre_user_registration_stage.py +31 -0
- auth0_python-5.0.0/src/auth0/management/types/suspicious_ip_throttling_shields_enum.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/suspicious_ip_throttling_stage.py +32 -0
- auth0_python-5.0.0/src/auth0/management/types/tenant_oidc_logout_settings.py +26 -0
- auth0_python-5.0.0/src/auth0/management/types/tenant_settings_device_flow.py +28 -0
- auth0_python-5.0.0/src/auth0/management/types/tenant_settings_device_flow_charset.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/tenant_settings_error_page.py +36 -0
- auth0_python-5.0.0/src/auth0/management/types/tenant_settings_flags.py +174 -0
- auth0_python-5.0.0/src/auth0/management/types/tenant_settings_guardian_page.py +31 -0
- auth0_python-5.0.0/src/auth0/management/types/tenant_settings_mtls.py +26 -0
- auth0_python-5.0.0/src/auth0/management/types/tenant_settings_password_page.py +31 -0
- auth0_python-5.0.0/src/auth0/management/types/tenant_settings_resource_parameter_profile.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/tenant_settings_sessions.py +26 -0
- auth0_python-5.0.0/src/auth0/management/types/tenant_settings_supported_locales_enum.py +90 -0
- auth0_python-5.0.0/src/auth0/management/types/test_action_payload.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/test_action_response_content.py +20 -0
- auth0_python-5.0.0/src/auth0/management/types/test_action_result_payload.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/test_custom_domain_response_content.py +27 -0
- auth0_python-5.0.0/src/auth0/management/types/test_event_data_content.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/token_exchange_profile_response_content.py +50 -0
- auth0_python-5.0.0/src/auth0/management/types/token_exchange_profile_type_enum.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/token_quota.py +20 -0
- auth0_python-5.0.0/src/auth0/management/types/token_quota_client_credentials.py +36 -0
- auth0_python-5.0.0/src/auth0/management/types/token_quota_configuration.py +20 -0
- auth0_python-5.0.0/src/auth0/management/types/twilio_provider_configuration.py +23 -0
- auth0_python-5.0.0/src/auth0/management/types/twilio_provider_credentials.py +19 -0
- auth0_python-5.0.0/src/auth0/management/types/twilio_provider_delivery_method_enum.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/universal_login_experience_enum.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/update_action_bindings_response_content.py +20 -0
- auth0_python-5.0.0/src/auth0/management/types/update_action_module_response_content.py +73 -0
- auth0_python-5.0.0/src/auth0/management/types/update_action_response_content.py +98 -0
- auth0_python-5.0.0/src/auth0/management/types/update_acul_response_content.py +40 -0
- auth0_python-5.0.0/src/auth0/management/types/update_attack_protection_captcha_response_content.py +45 -0
- auth0_python-5.0.0/src/auth0/management/types/update_bot_detection_settings_response_content.py +30 -0
- auth0_python-5.0.0/src/auth0/management/types/update_branding_colors.py +29 -0
- auth0_python-5.0.0/src/auth0/management/types/update_branding_font.py +26 -0
- auth0_python-5.0.0/src/auth0/management/types/update_branding_page_background.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/update_branding_phone_provider_response_content.py +49 -0
- auth0_python-5.0.0/src/auth0/management/types/update_branding_response_content.py +32 -0
- auth0_python-5.0.0/src/auth0/management/types/update_branding_theme_response_content.py +42 -0
- auth0_python-5.0.0/src/auth0/management/types/update_breached_password_detection_settings_response_content.py +45 -0
- auth0_python-5.0.0/src/auth0/management/types/update_brute_force_settings_response_content.py +41 -0
- auth0_python-5.0.0/src/auth0/management/types/update_client_grant_response_content.py +61 -0
- auth0_python-5.0.0/src/auth0/management/types/update_client_response_content.py +235 -0
- auth0_python-5.0.0/src/auth0/management/types/update_connection_options.py +93 -0
- auth0_python-5.0.0/src/auth0/management/types/update_connection_profile_response_content.py +32 -0
- auth0_python-5.0.0/src/auth0/management/types/update_connection_request_content_ad.py +25 -0
- auth0_python-5.0.0/src/auth0/management/types/update_connection_request_content_adfs.py +27 -0
- auth0_python-5.0.0/src/auth0/management/types/update_connection_request_content_amazon.py +25 -0
- auth0_python-5.0.0/src/auth0/management/types/update_connection_request_content_aol.py +25 -0
- auth0_python-5.0.0/src/auth0/management/types/update_connection_request_content_apple.py +25 -0
- auth0_python-5.0.0/src/auth0/management/types/update_connection_request_content_auth_0.py +27 -0
- auth0_python-5.0.0/src/auth0/management/types/update_connection_request_content_auth_0_oidc.py +25 -0
- auth0_python-5.0.0/src/auth0/management/types/update_connection_request_content_azure_ad.py +27 -0
- auth0_python-5.0.0/src/auth0/management/types/update_connection_request_content_baidu.py +25 -0
- auth0_python-5.0.0/src/auth0/management/types/update_connection_request_content_bitbucket.py +25 -0
- auth0_python-5.0.0/src/auth0/management/types/update_connection_request_content_bitly.py +25 -0
- auth0_python-5.0.0/src/auth0/management/types/update_connection_request_content_box.py +26 -0
- auth0_python-5.0.0/src/auth0/management/types/update_connection_request_content_custom.py +25 -0
- auth0_python-5.0.0/src/auth0/management/types/update_connection_request_content_daccount.py +25 -0
- auth0_python-5.0.0/src/auth0/management/types/update_connection_request_content_dropbox.py +25 -0
- auth0_python-5.0.0/src/auth0/management/types/update_connection_request_content_dwolla.py +25 -0
- auth0_python-5.0.0/src/auth0/management/types/update_connection_request_content_email.py +25 -0
- auth0_python-5.0.0/src/auth0/management/types/update_connection_request_content_evernote.py +25 -0
- auth0_python-5.0.0/src/auth0/management/types/update_connection_request_content_evernote_sandbox.py +25 -0
- auth0_python-5.0.0/src/auth0/management/types/update_connection_request_content_exact.py +25 -0
- auth0_python-5.0.0/src/auth0/management/types/update_connection_request_content_facebook.py +25 -0
- auth0_python-5.0.0/src/auth0/management/types/update_connection_request_content_fitbit.py +25 -0
- auth0_python-5.0.0/src/auth0/management/types/update_connection_request_content_flickr.py +25 -0
- auth0_python-5.0.0/src/auth0/management/types/update_connection_request_content_git_hub.py +26 -0
- auth0_python-5.0.0/src/auth0/management/types/update_connection_request_content_google_apps.py +27 -0
- auth0_python-5.0.0/src/auth0/management/types/update_connection_request_content_google_o_auth_2.py +26 -0
- auth0_python-5.0.0/src/auth0/management/types/update_connection_request_content_instagram.py +25 -0
- auth0_python-5.0.0/src/auth0/management/types/update_connection_request_content_ip.py +27 -0
- auth0_python-5.0.0/src/auth0/management/types/update_connection_request_content_line.py +25 -0
- auth0_python-5.0.0/src/auth0/management/types/update_connection_request_content_linkedin.py +25 -0
- auth0_python-5.0.0/src/auth0/management/types/update_connection_request_content_miicard.py +25 -0
- auth0_python-5.0.0/src/auth0/management/types/update_connection_request_content_o_auth_1.py +25 -0
- auth0_python-5.0.0/src/auth0/management/types/update_connection_request_content_o_auth_2.py +26 -0
- auth0_python-5.0.0/src/auth0/management/types/update_connection_request_content_office_365.py +27 -0
- auth0_python-5.0.0/src/auth0/management/types/update_connection_request_content_oidc.py +31 -0
- auth0_python-5.0.0/src/auth0/management/types/update_connection_request_content_okta.py +27 -0
- auth0_python-5.0.0/src/auth0/management/types/update_connection_request_content_paypal.py +25 -0
- auth0_python-5.0.0/src/auth0/management/types/update_connection_request_content_paypal_sandbox.py +25 -0
- auth0_python-5.0.0/src/auth0/management/types/update_connection_request_content_ping_federate.py +27 -0
- auth0_python-5.0.0/src/auth0/management/types/update_connection_request_content_planning_center.py +25 -0
- auth0_python-5.0.0/src/auth0/management/types/update_connection_request_content_renren.py +25 -0
- auth0_python-5.0.0/src/auth0/management/types/update_connection_request_content_salesforce.py +25 -0
- auth0_python-5.0.0/src/auth0/management/types/update_connection_request_content_salesforce_community.py +25 -0
- auth0_python-5.0.0/src/auth0/management/types/update_connection_request_content_salesforce_sandbox.py +25 -0
- auth0_python-5.0.0/src/auth0/management/types/update_connection_request_content_saml.py +27 -0
- auth0_python-5.0.0/src/auth0/management/types/update_connection_request_content_sharepoint.py +27 -0
- auth0_python-5.0.0/src/auth0/management/types/update_connection_request_content_shop.py +25 -0
- auth0_python-5.0.0/src/auth0/management/types/update_connection_request_content_shopify.py +25 -0
- auth0_python-5.0.0/src/auth0/management/types/update_connection_request_content_sms.py +25 -0
- auth0_python-5.0.0/src/auth0/management/types/update_connection_request_content_soundcloud.py +25 -0
- auth0_python-5.0.0/src/auth0/management/types/update_connection_request_content_thirty_seven_signals.py +25 -0
- auth0_python-5.0.0/src/auth0/management/types/update_connection_request_content_twitter.py +25 -0
- auth0_python-5.0.0/src/auth0/management/types/update_connection_request_content_untappd.py +25 -0
- auth0_python-5.0.0/src/auth0/management/types/update_connection_request_content_vkontakte.py +25 -0
- auth0_python-5.0.0/src/auth0/management/types/update_connection_request_content_weibo.py +25 -0
- auth0_python-5.0.0/src/auth0/management/types/update_connection_request_content_windows_live.py +26 -0
- auth0_python-5.0.0/src/auth0/management/types/update_connection_request_content_wordpress.py +25 -0
- auth0_python-5.0.0/src/auth0/management/types/update_connection_request_content_yahoo.py +25 -0
- auth0_python-5.0.0/src/auth0/management/types/update_connection_request_content_yammer.py +25 -0
- auth0_python-5.0.0/src/auth0/management/types/update_connection_request_content_yandex.py +25 -0
- auth0_python-5.0.0/src/auth0/management/types/update_connection_response_content.py +66 -0
- auth0_python-5.0.0/src/auth0/management/types/update_custom_domain_response_content.py +62 -0
- auth0_python-5.0.0/src/auth0/management/types/update_directory_provisioning_request_content.py +28 -0
- auth0_python-5.0.0/src/auth0/management/types/update_directory_provisioning_response_content.py +69 -0
- auth0_python-5.0.0/src/auth0/management/types/update_email_provider_response_content.py +37 -0
- auth0_python-5.0.0/src/auth0/management/types/update_email_template_response_content.py +69 -0
- auth0_python-5.0.0/src/auth0/management/types/update_enabled_client_connections_request_content.py +7 -0
- auth0_python-5.0.0/src/auth0/management/types/update_enabled_client_connections_request_content_item.py +27 -0
- auth0_python-5.0.0/src/auth0/management/types/update_event_stream_response_content.py +11 -0
- auth0_python-5.0.0/src/auth0/management/types/update_flow_response_content.py +41 -0
- auth0_python-5.0.0/src/auth0/management/types/update_flows_vault_connection_response_content.py +65 -0
- auth0_python-5.0.0/src/auth0/management/types/update_flows_vault_connection_setup.py +41 -0
- auth0_python-5.0.0/src/auth0/management/types/update_form_response_content.py +39 -0
- auth0_python-5.0.0/src/auth0/management/types/update_guardian_factor_duo_settings_response_content.py +21 -0
- auth0_python-5.0.0/src/auth0/management/types/update_guardian_factors_provider_push_notification_apns_response_content.py +20 -0
- auth0_python-5.0.0/src/auth0/management/types/update_guardian_factors_provider_push_notification_fcm_response_content.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/update_guardian_factors_provider_push_notification_fcmv_1_response_content.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/update_guardian_factors_provider_push_notification_sns_response_content.py +23 -0
- auth0_python-5.0.0/src/auth0/management/types/update_hook_response_content.py +51 -0
- auth0_python-5.0.0/src/auth0/management/types/update_hook_secret_request_content.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/update_log_stream_response_content.py +23 -0
- auth0_python-5.0.0/src/auth0/management/types/update_network_acl_response_content.py +33 -0
- auth0_python-5.0.0/src/auth0/management/types/update_organization_connection_response_content.py +40 -0
- auth0_python-5.0.0/src/auth0/management/types/update_organization_discovery_domain_response_content.py +44 -0
- auth0_python-5.0.0/src/auth0/management/types/update_organization_response_content.py +39 -0
- auth0_python-5.0.0/src/auth0/management/types/update_phone_template_response_content.py +30 -0
- auth0_python-5.0.0/src/auth0/management/types/update_refresh_token_response_content.py +55 -0
- auth0_python-5.0.0/src/auth0/management/types/update_resource_server_response_content.py +91 -0
- auth0_python-5.0.0/src/auth0/management/types/update_risk_assessments_settings_new_device_response_content.py +22 -0
- auth0_python-5.0.0/src/auth0/management/types/update_risk_assessments_settings_response_content.py +22 -0
- auth0_python-5.0.0/src/auth0/management/types/update_role_response_content.py +32 -0
- auth0_python-5.0.0/src/auth0/management/types/update_rule_response_content.py +49 -0
- auth0_python-5.0.0/src/auth0/management/types/update_scim_configuration_response_content.py +58 -0
- auth0_python-5.0.0/src/auth0/management/types/update_self_service_profile_response_content.py +64 -0
- auth0_python-5.0.0/src/auth0/management/types/update_session_response_content.py +49 -0
- auth0_python-5.0.0/src/auth0/management/types/update_settings_response_content.py +29 -0
- auth0_python-5.0.0/src/auth0/management/types/update_suspicious_ip_throttling_settings_response_content.py +34 -0
- auth0_python-5.0.0/src/auth0/management/types/update_tenant_settings_response_content.py +162 -0
- auth0_python-5.0.0/src/auth0/management/types/update_token_quota.py +20 -0
- auth0_python-5.0.0/src/auth0/management/types/update_universal_login_template_request_content.py +7 -0
- auth0_python-5.0.0/src/auth0/management/types/update_universal_login_template_request_content_template.py +19 -0
- auth0_python-5.0.0/src/auth0/management/types/update_user_attribute_profile_response_content.py +26 -0
- auth0_python-5.0.0/src/auth0/management/types/update_user_authentication_method_response_content.py +78 -0
- auth0_python-5.0.0/src/auth0/management/types/update_user_response_content.py +106 -0
- auth0_python-5.0.0/src/auth0/management/types/update_verifiable_credential_template_response_content.py +60 -0
- auth0_python-5.0.0/src/auth0/management/types/user_app_metadata_schema.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/user_attribute_profile.py +26 -0
- auth0_python-5.0.0/src/auth0/management/types/user_attribute_profile_id.py +3 -0
- auth0_python-5.0.0/src/auth0/management/types/user_attribute_profile_name.py +3 -0
- auth0_python-5.0.0/src/auth0/management/types/user_attribute_profile_oidc_mapping.py +31 -0
- auth0_python-5.0.0/src/auth0/management/types/user_attribute_profile_patch_user_id.py +7 -0
- auth0_python-5.0.0/src/auth0/management/types/user_attribute_profile_saml_mapping.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/user_attribute_profile_strategy_overrides.py +35 -0
- auth0_python-5.0.0/src/auth0/management/types/user_attribute_profile_strategy_overrides_mapping.py +26 -0
- auth0_python-5.0.0/src/auth0/management/types/user_attribute_profile_strategy_overrides_user_id.py +37 -0
- auth0_python-5.0.0/src/auth0/management/types/user_attribute_profile_strategy_overrides_user_id_mapping.py +28 -0
- auth0_python-5.0.0/src/auth0/management/types/user_attribute_profile_template.py +28 -0
- auth0_python-5.0.0/src/auth0/management/types/user_attribute_profile_template_item.py +30 -0
- auth0_python-5.0.0/src/auth0/management/types/user_attribute_profile_user_attribute_additional_properties.py +53 -0
- auth0_python-5.0.0/src/auth0/management/types/user_attribute_profile_user_attributes.py +9 -0
- auth0_python-5.0.0/src/auth0/management/types/user_attribute_profile_user_id.py +33 -0
- auth0_python-5.0.0/src/auth0/management/types/user_attribute_profile_user_id_oidc_mapping_enum.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/user_attribute_profile_user_id_oidc_strategy_override_mapping.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/user_attribute_profile_user_id_saml_mapping.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/user_authentication_method.py +109 -0
- auth0_python-5.0.0/src/auth0/management/types/user_authentication_method_properties.py +21 -0
- auth0_python-5.0.0/src/auth0/management/types/user_authentication_method_properties_enum.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/user_block_identifier.py +32 -0
- auth0_python-5.0.0/src/auth0/management/types/user_date_schema.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/user_enrollment_auth_method_enum.py +7 -0
- auth0_python-5.0.0/src/auth0/management/types/user_enrollment_status_enum.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/user_grant.py +46 -0
- auth0_python-5.0.0/src/auth0/management/types/user_groups_response_schema.py +24 -0
- auth0_python-5.0.0/src/auth0/management/types/user_id.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/user_identity.py +57 -0
- auth0_python-5.0.0/src/auth0/management/types/user_identity_provider_enum.py +71 -0
- auth0_python-5.0.0/src/auth0/management/types/user_identity_schema.py +58 -0
- auth0_python-5.0.0/src/auth0/management/types/user_list_log_offset_paginated_response_content.py +24 -0
- auth0_python-5.0.0/src/auth0/management/types/user_metadata.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/user_metadata_schema.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/user_multifactor_provider_enum.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/user_permission_schema.py +37 -0
- auth0_python-5.0.0/src/auth0/management/types/user_profile_data.py +57 -0
- auth0_python-5.0.0/src/auth0/management/types/user_response_schema.py +106 -0
- auth0_python-5.0.0/src/auth0/management/types/username_allowed_types.py +20 -0
- auth0_python-5.0.0/src/auth0/management/types/username_attribute.py +33 -0
- auth0_python-5.0.0/src/auth0/management/types/username_validation.py +30 -0
- auth0_python-5.0.0/src/auth0/management/types/users_enrollment.py +57 -0
- auth0_python-5.0.0/src/auth0/management/types/verifiable_credential_template_response.py +60 -0
- auth0_python-5.0.0/src/auth0/management/types/verification_method_enum.py +5 -0
- auth0_python-5.0.0/src/auth0/management/types/verify_custom_domain_response_content.py +65 -0
- auth0_python-5.0.0/src/auth0/management/types/verify_email_ticket_response_content.py +24 -0
- auth0_python-5.0.0/src/auth0/management/types/x_509_certificate_credential.py +29 -0
- auth0_python-5.0.0/src/auth0/management/types/x_509_certificate_credential_type_enum.py +5 -0
- auth0_python-5.0.0/src/auth0/management/user_attribute_profiles/__init__.py +4 -0
- auth0_python-5.0.0/src/auth0/management/user_attribute_profiles/client.py +652 -0
- auth0_python-5.0.0/src/auth0/management/user_attribute_profiles/raw_client.py +1296 -0
- auth0_python-5.0.0/src/auth0/management/user_blocks/__init__.py +4 -0
- auth0_python-5.0.0/src/auth0/management/user_blocks/client.py +391 -0
- auth0_python-5.0.0/src/auth0/management/user_blocks/raw_client.py +770 -0
- auth0_python-5.0.0/src/auth0/management/user_grants/__init__.py +4 -0
- auth0_python-5.0.0/src/auth0/management/user_grants/client.py +333 -0
- auth0_python-5.0.0/src/auth0/management/user_grants/raw_client.py +522 -0
- auth0_python-5.0.0/src/auth0/management/users/__init__.py +82 -0
- auth0_python-5.0.0/src/auth0/management/users/authentication_methods/__init__.py +4 -0
- auth0_python-5.0.0/src/auth0/management/users/authentication_methods/client.py +793 -0
- auth0_python-5.0.0/src/auth0/management/users/authentication_methods/raw_client.py +1576 -0
- auth0_python-5.0.0/src/auth0/management/users/authenticators/__init__.py +4 -0
- auth0_python-5.0.0/src/auth0/management/users/authenticators/client.py +107 -0
- auth0_python-5.0.0/src/auth0/management/users/authenticators/raw_client.py +173 -0
- auth0_python-5.0.0/src/auth0/management/users/client.py +1688 -0
- auth0_python-5.0.0/src/auth0/management/users/connected_accounts/__init__.py +4 -0
- auth0_python-5.0.0/src/auth0/management/users/connected_accounts/client.py +151 -0
- auth0_python-5.0.0/src/auth0/management/users/connected_accounts/raw_client.py +244 -0
- auth0_python-5.0.0/src/auth0/management/users/enrollments/__init__.py +4 -0
- auth0_python-5.0.0/src/auth0/management/users/enrollments/client.py +112 -0
- auth0_python-5.0.0/src/auth0/management/users/enrollments/raw_client.py +215 -0
- auth0_python-5.0.0/src/auth0/management/users/federated_connections_tokensets/__init__.py +4 -0
- auth0_python-5.0.0/src/auth0/management/users/federated_connections_tokensets/client.py +188 -0
- auth0_python-5.0.0/src/auth0/management/users/federated_connections_tokensets/raw_client.py +345 -0
- auth0_python-5.0.0/src/auth0/management/users/groups/__init__.py +4 -0
- auth0_python-5.0.0/src/auth0/management/users/groups/client.py +175 -0
- auth0_python-5.0.0/src/auth0/management/users/groups/raw_client.py +268 -0
- auth0_python-5.0.0/src/auth0/management/users/identities/__init__.py +4 -0
- auth0_python-5.0.0/src/auth0/management/users/identities/client.py +326 -0
- auth0_python-5.0.0/src/auth0/management/users/identities/raw_client.py +526 -0
- auth0_python-5.0.0/src/auth0/management/users/logs/__init__.py +4 -0
- auth0_python-5.0.0/src/auth0/management/users/logs/client.py +187 -0
- auth0_python-5.0.0/src/auth0/management/users/logs/raw_client.py +282 -0
- auth0_python-5.0.0/src/auth0/management/users/multifactor/__init__.py +4 -0
- auth0_python-5.0.0/src/auth0/management/users/multifactor/client.py +190 -0
- auth0_python-5.0.0/src/auth0/management/users/multifactor/raw_client.py +333 -0
- auth0_python-5.0.0/src/auth0/management/users/organizations/__init__.py +4 -0
- auth0_python-5.0.0/src/auth0/management/users/organizations/client.py +167 -0
- auth0_python-5.0.0/src/auth0/management/users/organizations/raw_client.py +237 -0
- auth0_python-5.0.0/src/auth0/management/users/permissions/__init__.py +4 -0
- auth0_python-5.0.0/src/auth0/management/users/permissions/client.py +367 -0
- auth0_python-5.0.0/src/auth0/management/users/permissions/raw_client.py +653 -0
- auth0_python-5.0.0/src/auth0/management/users/raw_client.py +2216 -0
- auth0_python-5.0.0/src/auth0/management/users/refresh_token/__init__.py +4 -0
- auth0_python-5.0.0/src/auth0/management/users/refresh_token/client.py +219 -0
- auth0_python-5.0.0/src/auth0/management/users/refresh_token/raw_client.py +416 -0
- auth0_python-5.0.0/src/auth0/management/users/risk_assessments/__init__.py +4 -0
- auth0_python-5.0.0/src/auth0/management/users/risk_assessments/client.py +145 -0
- auth0_python-5.0.0/src/auth0/management/users/risk_assessments/raw_client.py +217 -0
- auth0_python-5.0.0/src/auth0/management/users/roles/__init__.py +4 -0
- auth0_python-5.0.0/src/auth0/management/users/roles/client.py +340 -0
- auth0_python-5.0.0/src/auth0/management/users/roles/raw_client.py +570 -0
- auth0_python-5.0.0/src/auth0/management/users/sessions/__init__.py +4 -0
- auth0_python-5.0.0/src/auth0/management/users/sessions/client.py +219 -0
- auth0_python-5.0.0/src/auth0/management/users/sessions/raw_client.py +416 -0
- auth0_python-5.0.0/src/auth0/management/verifiable_credentials/__init__.py +34 -0
- auth0_python-5.0.0/src/auth0/management/verifiable_credentials/client.py +63 -0
- auth0_python-5.0.0/src/auth0/management/verifiable_credentials/raw_client.py +13 -0
- auth0_python-5.0.0/src/auth0/management/verifiable_credentials/verification/__init__.py +34 -0
- auth0_python-5.0.0/src/auth0/management/verifiable_credentials/verification/client.py +63 -0
- auth0_python-5.0.0/src/auth0/management/verifiable_credentials/verification/raw_client.py +13 -0
- auth0_python-5.0.0/src/auth0/management/verifiable_credentials/verification/templates/__init__.py +4 -0
- auth0_python-5.0.0/src/auth0/management/verifiable_credentials/verification/templates/client.py +580 -0
- auth0_python-5.0.0/src/auth0/management/verifiable_credentials/verification/templates/raw_client.py +1095 -0
- auth0_python-5.0.0/src/auth0/management/version.py +3 -0
- auth0_python-4.12.0/PKG-INFO +0 -217
- auth0_python-4.12.0/README.md +0 -189
- auth0_python-4.12.0/auth0/__init__.py +0 -6
- auth0_python-4.12.0/auth0/asyncify.py +0 -115
- auth0_python-4.12.0/auth0/authentication/async_token_verifier.py +0 -200
- auth0_python-4.12.0/auth0/authentication/base.py +0 -83
- auth0_python-4.12.0/auth0/authentication/token_verifier.py +0 -459
- auth0_python-4.12.0/auth0/authentication/users.py +0 -53
- auth0_python-4.12.0/auth0/exceptions.py +0 -32
- auth0_python-4.12.0/auth0/management/__init__.py +0 -72
- auth0_python-4.12.0/auth0/management/actions.py +0 -264
- auth0_python-4.12.0/auth0/management/async_auth0.py +0 -67
- auth0_python-4.12.0/auth0/management/attack_protection.py +0 -126
- auth0_python-4.12.0/auth0/management/auth0.py +0 -100
- auth0_python-4.12.0/auth0/management/blacklists.py +0 -79
- auth0_python-4.12.0/auth0/management/branding.py +0 -158
- auth0_python-4.12.0/auth0/management/client_credentials.py +0 -98
- auth0_python-4.12.0/auth0/management/client_grants.py +0 -170
- auth0_python-4.12.0/auth0/management/clients.py +0 -174
- auth0_python-4.12.0/auth0/management/connections.py +0 -189
- auth0_python-4.12.0/auth0/management/custom_domains.py +0 -100
- auth0_python-4.12.0/auth0/management/device_credentials.py +0 -124
- auth0_python-4.12.0/auth0/management/email_templates.py +0 -94
- auth0_python-4.12.0/auth0/management/emails.py +0 -102
- auth0_python-4.12.0/auth0/management/grants.py +0 -100
- auth0_python-4.12.0/auth0/management/guardian.py +0 -173
- auth0_python-4.12.0/auth0/management/hooks.py +0 -196
- auth0_python-4.12.0/auth0/management/jobs.py +0 -141
- auth0_python-4.12.0/auth0/management/log_streams.py +0 -105
- auth0_python-4.12.0/auth0/management/logs.py +0 -122
- auth0_python-4.12.0/auth0/management/network_acls.py +0 -138
- auth0_python-4.12.0/auth0/management/organizations.py +0 -532
- auth0_python-4.12.0/auth0/management/prompts.py +0 -99
- auth0_python-4.12.0/auth0/management/resource_servers.py +0 -131
- auth0_python-4.12.0/auth0/management/roles.py +0 -240
- auth0_python-4.12.0/auth0/management/rules.py +0 -161
- auth0_python-4.12.0/auth0/management/rules_configs.py +0 -84
- auth0_python-4.12.0/auth0/management/self_service_profiles.py +0 -180
- auth0_python-4.12.0/auth0/management/stats.py +0 -79
- auth0_python-4.12.0/auth0/management/tenants.py +0 -83
- auth0_python-4.12.0/auth0/management/tickets.py +0 -70
- auth0_python-4.12.0/auth0/management/user_blocks.py +0 -101
- auth0_python-4.12.0/auth0/management/users.py +0 -583
- auth0_python-4.12.0/auth0/management/users_by_email.py +0 -75
- auth0_python-4.12.0/auth0/rest.py +0 -365
- auth0_python-4.12.0/auth0/rest_async.py +0 -163
- auth0_python-4.12.0/auth0/test/authentication/__init__.py +0 -0
- auth0_python-4.12.0/auth0/test/authentication/test_back_channel_login.py +0 -210
- auth0_python-4.12.0/auth0/test/authentication/test_base.py +0 -317
- auth0_python-4.12.0/auth0/test/authentication/test_database.py +0 -102
- auth0_python-4.12.0/auth0/test/authentication/test_delegated.py +0 -72
- auth0_python-4.12.0/auth0/test/authentication/test_enterprise.py +0 -27
- auth0_python-4.12.0/auth0/test/authentication/test_get_token.py +0 -416
- auth0_python-4.12.0/auth0/test/authentication/test_passwordless.py +0 -102
- auth0_python-4.12.0/auth0/test/authentication/test_pushed_authorization_requests.py +0 -104
- auth0_python-4.12.0/auth0/test/authentication/test_revoke_token.py +0 -29
- auth0_python-4.12.0/auth0/test/authentication/test_social.py +0 -46
- auth0_python-4.12.0/auth0/test/authentication/test_token_verifier.py +0 -594
- auth0_python-4.12.0/auth0/test/authentication/test_users.py +0 -17
- auth0_python-4.12.0/auth0/test/conftest.py +0 -7
- auth0_python-4.12.0/auth0/test/management/__init__.py +0 -0
- auth0_python-4.12.0/auth0/test/management/test_actions.py +0 -249
- auth0_python-4.12.0/auth0/test/management/test_atack_protection.py +0 -96
- auth0_python-4.12.0/auth0/test/management/test_auth0.py +0 -136
- auth0_python-4.12.0/auth0/test/management/test_blacklists.py +0 -47
- auth0_python-4.12.0/auth0/test/management/test_branding.py +0 -138
- auth0_python-4.12.0/auth0/test/management/test_client_credentials.py +0 -50
- auth0_python-4.12.0/auth0/test/management/test_client_grants.py +0 -167
- auth0_python-4.12.0/auth0/test/management/test_clients.py +0 -136
- auth0_python-4.12.0/auth0/test/management/test_connections.py +0 -202
- auth0_python-4.12.0/auth0/test/management/test_custom_domains.py +0 -57
- auth0_python-4.12.0/auth0/test/management/test_device_credentials.py +0 -87
- auth0_python-4.12.0/auth0/test/management/test_email_endpoints.py +0 -48
- auth0_python-4.12.0/auth0/test/management/test_emails.py +0 -64
- auth0_python-4.12.0/auth0/test/management/test_grants.py +0 -44
- auth0_python-4.12.0/auth0/test/management/test_guardian.py +0 -150
- auth0_python-4.12.0/auth0/test/management/test_hooks.py +0 -173
- auth0_python-4.12.0/auth0/test/management/test_jobs.py +0 -107
- auth0_python-4.12.0/auth0/test/management/test_log_streams.py +0 -84
- auth0_python-4.12.0/auth0/test/management/test_logs.py +0 -51
- auth0_python-4.12.0/auth0/test/management/test_network_acls.py +0 -90
- auth0_python-4.12.0/auth0/test/management/test_organizations.py +0 -536
- auth0_python-4.12.0/auth0/test/management/test_prompts.py +0 -64
- auth0_python-4.12.0/auth0/test/management/test_resource_servers.py +0 -86
- auth0_python-4.12.0/auth0/test/management/test_rest.py +0 -825
- auth0_python-4.12.0/auth0/test/management/test_roles.py +0 -196
- auth0_python-4.12.0/auth0/test/management/test_rules.py +0 -127
- auth0_python-4.12.0/auth0/test/management/test_rules_configs.py +0 -47
- auth0_python-4.12.0/auth0/test/management/test_self_service_profiles.py +0 -124
- auth0_python-4.12.0/auth0/test/management/test_stats.py +0 -42
- auth0_python-4.12.0/auth0/test/management/test_tenants.py +0 -51
- auth0_python-4.12.0/auth0/test/management/test_tickets.py +0 -35
- auth0_python-4.12.0/auth0/test/management/test_user_blocks.py +0 -63
- auth0_python-4.12.0/auth0/test/management/test_users.py +0 -438
- auth0_python-4.12.0/auth0/test/management/test_users_by_email.py +0 -41
- auth0_python-4.12.0/auth0/test_async/__init__.py +0 -0
- auth0_python-4.12.0/auth0/test_async/conftest.py +0 -7
- auth0_python-4.12.0/auth0/test_async/test_async_auth0.py +0 -75
- auth0_python-4.12.0/auth0/test_async/test_async_token_verifier.py +0 -289
- auth0_python-4.12.0/auth0/test_async/test_asyncify.py +0 -263
- auth0_python-4.12.0/auth0/utils.py +0 -11
- auth0_python-4.12.0/pyproject.toml +0 -44
- {auth0_python-4.12.0 → auth0_python-5.0.0}/LICENSE +0 -0
- {auth0_python-4.12.0 → auth0_python-5.0.0/src}/auth0/authentication/__init__.py +0 -0
- {auth0_python-4.12.0 → auth0_python-5.0.0/src}/auth0/authentication/back_channel_login.py +0 -0
- {auth0_python-4.12.0 → auth0_python-5.0.0/src}/auth0/authentication/client_authentication.py +0 -0
- {auth0_python-4.12.0 → auth0_python-5.0.0/src}/auth0/authentication/database.py +0 -0
- {auth0_python-4.12.0 → auth0_python-5.0.0/src}/auth0/authentication/delegated.py +0 -0
- {auth0_python-4.12.0 → auth0_python-5.0.0/src}/auth0/authentication/enterprise.py +0 -0
- {auth0_python-4.12.0 → auth0_python-5.0.0/src}/auth0/authentication/get_token.py +0 -0
- {auth0_python-4.12.0 → auth0_python-5.0.0/src}/auth0/authentication/passwordless.py +0 -0
- {auth0_python-4.12.0 → auth0_python-5.0.0/src}/auth0/authentication/pushed_authorization_requests.py +0 -0
- {auth0_python-4.12.0 → auth0_python-5.0.0/src}/auth0/authentication/revoke_token.py +0 -0
- {auth0_python-4.12.0 → auth0_python-5.0.0/src}/auth0/authentication/social.py +0 -0
- {auth0_python-4.12.0/auth0 → auth0_python-5.0.0/src/auth0/authentication}/types.py +0 -0
- /auth0_python-4.12.0/auth0/test/__init__.py → /auth0_python-5.0.0/src/auth0/management/py.typed +0 -0
|
@@ -0,0 +1,389 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: auth0-python
|
|
3
|
+
Version: 5.0.0
|
|
4
|
+
Summary: Auth0 Python SDK - Management and Authentication APIs
|
|
5
|
+
License: MIT
|
|
6
|
+
License-File: LICENSE
|
|
7
|
+
Keywords: auth0,authentication,authorization,oauth,openid
|
|
8
|
+
Author: Auth0
|
|
9
|
+
Author-email: support@auth0.com
|
|
10
|
+
Requires-Python: >=3.8,<4.0
|
|
11
|
+
Classifier: Intended Audience :: Developers
|
|
12
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
13
|
+
Classifier: Operating System :: MacOS
|
|
14
|
+
Classifier: Operating System :: Microsoft :: Windows
|
|
15
|
+
Classifier: Operating System :: OS Independent
|
|
16
|
+
Classifier: Operating System :: POSIX
|
|
17
|
+
Classifier: Operating System :: POSIX :: Linux
|
|
18
|
+
Classifier: Programming Language :: Python
|
|
19
|
+
Classifier: Programming Language :: Python :: 3
|
|
20
|
+
Classifier: Programming Language :: Python :: 3.8
|
|
21
|
+
Classifier: Programming Language :: Python :: 3.9
|
|
22
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
23
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
24
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
25
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
26
|
+
Classifier: Programming Language :: Python :: 3.14
|
|
27
|
+
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
28
|
+
Classifier: Typing :: Typed
|
|
29
|
+
Requires-Dist: aiohttp (>=3.10.11)
|
|
30
|
+
Requires-Dist: cryptography (>=43.0.1)
|
|
31
|
+
Requires-Dist: httpx (>=0.21.2)
|
|
32
|
+
Requires-Dist: pydantic (>=1.9.2)
|
|
33
|
+
Requires-Dist: pydantic-core (>=2.18.2)
|
|
34
|
+
Requires-Dist: pyjwt (>=2.8.0)
|
|
35
|
+
Requires-Dist: requests (>=2.32.3)
|
|
36
|
+
Requires-Dist: typing_extensions (>=4.0.0)
|
|
37
|
+
Requires-Dist: urllib3 (>=2.2.3)
|
|
38
|
+
Project-URL: Homepage, https://auth0.com
|
|
39
|
+
Project-URL: Repository, https://github.com/auth0/auth0-python
|
|
40
|
+
Description-Content-Type: text/markdown
|
|
41
|
+
|
|
42
|
+
# Auth0 Python Library
|
|
43
|
+
|
|
44
|
+

|
|
45
|
+
|
|
46
|
+

|
|
47
|
+
[](https://codecov.io/gh/auth0/auth0-python)
|
|
48
|
+
[](https://deepwiki.com/auth0/auth0-python)
|
|
49
|
+

|
|
50
|
+
[](https://opensource.org/licenses/MIT)
|
|
51
|
+
[](https://circleci.com/gh/auth0/auth0-python)
|
|
52
|
+
[](https://buildwithfern.com?utm_source=github&utm_medium=github&utm_campaign=readme&utm_source=https%3A%2F%2Fgithub.com%2Fauth0%2Fauth0-python)
|
|
53
|
+
|
|
54
|
+
The Auth0 Python library provides convenient access to the Auth0 APIs from Python.
|
|
55
|
+
|
|
56
|
+
## Table of Contents
|
|
57
|
+
|
|
58
|
+
- [Installation](#installation)
|
|
59
|
+
- [Reference](#reference)
|
|
60
|
+
- [Authentication API](#authentication-api)
|
|
61
|
+
- [Management API](#management-api)
|
|
62
|
+
- [Async Client](#async-client)
|
|
63
|
+
- [Exception Handling](#exception-handling)
|
|
64
|
+
- [Pagination](#pagination)
|
|
65
|
+
- [Advanced](#advanced)
|
|
66
|
+
- [Access Raw Response Data](#access-raw-response-data)
|
|
67
|
+
- [Retries](#retries)
|
|
68
|
+
- [Timeouts](#timeouts)
|
|
69
|
+
- [Custom Client](#custom-client)
|
|
70
|
+
- [Feedback](#feedback)
|
|
71
|
+
|
|
72
|
+
## Installation
|
|
73
|
+
```sh
|
|
74
|
+
pip install auth0-python==5.0.0
|
|
75
|
+
```
|
|
76
|
+
|
|
77
|
+
**Requirements:**
|
|
78
|
+
- Python ≥3.8 (Python 3.7 support has been dropped)
|
|
79
|
+
|
|
80
|
+
## Reference
|
|
81
|
+
|
|
82
|
+
A full reference for this library is available [here](https://github.com/auth0/auth0-python/blob/master/reference.md).
|
|
83
|
+
|
|
84
|
+
## Authentication API
|
|
85
|
+
|
|
86
|
+
The Authentication API is used for authentication flows such as obtaining tokens via client credentials, authorization codes, or resource owner password grants:
|
|
87
|
+
|
|
88
|
+
```python
|
|
89
|
+
from auth0.authentication import GetToken
|
|
90
|
+
|
|
91
|
+
token_client = GetToken(
|
|
92
|
+
domain="your-tenant.auth0.com",
|
|
93
|
+
client_id="YOUR_CLIENT_ID",
|
|
94
|
+
client_secret="YOUR_CLIENT_SECRET",
|
|
95
|
+
)
|
|
96
|
+
|
|
97
|
+
# Get an access token using client credentials
|
|
98
|
+
token_response = token_client.client_credentials(
|
|
99
|
+
audience="https://your-tenant.auth0.com/api/v2/"
|
|
100
|
+
)
|
|
101
|
+
access_token = token_response["access_token"]
|
|
102
|
+
```
|
|
103
|
+
|
|
104
|
+
## Management API
|
|
105
|
+
|
|
106
|
+
### Recommended: Using ManagementClient
|
|
107
|
+
|
|
108
|
+
The `ManagementClient` is the recommended way to interact with the Auth0 Management API. It provides a simpler interface using just your Auth0 domain, and supports automatic token management with client credentials:
|
|
109
|
+
|
|
110
|
+
```python
|
|
111
|
+
from auth0.management import ManagementClient
|
|
112
|
+
|
|
113
|
+
# With an existing token
|
|
114
|
+
client = ManagementClient(
|
|
115
|
+
domain="your-tenant.auth0.com",
|
|
116
|
+
token="YOUR_TOKEN",
|
|
117
|
+
)
|
|
118
|
+
|
|
119
|
+
# Or with client credentials (automatic token acquisition and refresh)
|
|
120
|
+
client = ManagementClient(
|
|
121
|
+
domain="your-tenant.auth0.com",
|
|
122
|
+
client_id="YOUR_CLIENT_ID",
|
|
123
|
+
client_secret="YOUR_CLIENT_SECRET",
|
|
124
|
+
)
|
|
125
|
+
```
|
|
126
|
+
|
|
127
|
+
For async usage:
|
|
128
|
+
|
|
129
|
+
```python
|
|
130
|
+
import asyncio
|
|
131
|
+
from auth0.management import AsyncManagementClient
|
|
132
|
+
|
|
133
|
+
client = AsyncManagementClient(
|
|
134
|
+
domain="your-tenant.auth0.com",
|
|
135
|
+
token="YOUR_TOKEN",
|
|
136
|
+
)
|
|
137
|
+
|
|
138
|
+
async def main() -> None:
|
|
139
|
+
users = await client.users.list()
|
|
140
|
+
print(users)
|
|
141
|
+
|
|
142
|
+
asyncio.run(main())
|
|
143
|
+
```
|
|
144
|
+
|
|
145
|
+
### Using a Token from the Authentication API
|
|
146
|
+
|
|
147
|
+
You can obtain a token using the Authentication API and use it with the Management API client:
|
|
148
|
+
|
|
149
|
+
```python
|
|
150
|
+
from auth0.authentication import GetToken
|
|
151
|
+
from auth0.management import Auth0
|
|
152
|
+
|
|
153
|
+
domain = "your-tenant.auth0.com"
|
|
154
|
+
|
|
155
|
+
# Get a token using the Authentication API
|
|
156
|
+
token_client = GetToken(
|
|
157
|
+
domain=domain,
|
|
158
|
+
client_id="YOUR_CLIENT_ID",
|
|
159
|
+
client_secret="YOUR_CLIENT_SECRET",
|
|
160
|
+
)
|
|
161
|
+
token_response = token_client.client_credentials(
|
|
162
|
+
audience=f"https://{domain}/api/v2/"
|
|
163
|
+
)
|
|
164
|
+
access_token = token_response["access_token"]
|
|
165
|
+
|
|
166
|
+
# Use the token with the Management API client
|
|
167
|
+
client = Auth0(
|
|
168
|
+
base_url=f"https://{domain}/api/v2",
|
|
169
|
+
token=access_token,
|
|
170
|
+
)
|
|
171
|
+
```
|
|
172
|
+
|
|
173
|
+
### Using the Base Client
|
|
174
|
+
|
|
175
|
+
Alternatively, you can use the `Auth0` client directly with a full base URL:
|
|
176
|
+
|
|
177
|
+
```python
|
|
178
|
+
from auth0.management import ActionTrigger, Auth0
|
|
179
|
+
|
|
180
|
+
client = Auth0(
|
|
181
|
+
base_url="https://YOUR_TENANT.auth0.com/api/v2",
|
|
182
|
+
token="YOUR_TOKEN",
|
|
183
|
+
)
|
|
184
|
+
client.actions.create(
|
|
185
|
+
name="name",
|
|
186
|
+
supported_triggers=[
|
|
187
|
+
ActionTrigger(
|
|
188
|
+
id="id",
|
|
189
|
+
)
|
|
190
|
+
],
|
|
191
|
+
)
|
|
192
|
+
```
|
|
193
|
+
|
|
194
|
+
## Async Client
|
|
195
|
+
|
|
196
|
+
The SDK also exports an `async` client so that you can make non-blocking calls to our API. Note that if you are constructing an Async httpx client class to pass into this client, use `httpx.AsyncClient()` instead of `httpx.Client()` (e.g. for the `httpx_client` parameter of this client).
|
|
197
|
+
|
|
198
|
+
```python
|
|
199
|
+
import asyncio
|
|
200
|
+
|
|
201
|
+
from auth0.management import ActionTrigger, AsyncAuth0
|
|
202
|
+
|
|
203
|
+
client = AsyncAuth0(
|
|
204
|
+
base_url="https://YOUR_TENANT.auth0.com/api/v2",
|
|
205
|
+
token="YOUR_TOKEN",
|
|
206
|
+
)
|
|
207
|
+
|
|
208
|
+
|
|
209
|
+
async def main() -> None:
|
|
210
|
+
await client.actions.create(
|
|
211
|
+
name="name",
|
|
212
|
+
supported_triggers=[
|
|
213
|
+
ActionTrigger(
|
|
214
|
+
id="id",
|
|
215
|
+
)
|
|
216
|
+
],
|
|
217
|
+
)
|
|
218
|
+
|
|
219
|
+
|
|
220
|
+
asyncio.run(main())
|
|
221
|
+
```
|
|
222
|
+
|
|
223
|
+
## Exception Handling
|
|
224
|
+
|
|
225
|
+
When the API returns a non-success status code (4xx or 5xx response), a subclass of the following error
|
|
226
|
+
will be thrown.
|
|
227
|
+
|
|
228
|
+
```python
|
|
229
|
+
from auth0.management.core.api_error import ApiError
|
|
230
|
+
|
|
231
|
+
try:
|
|
232
|
+
client.actions.create(...)
|
|
233
|
+
except ApiError as e:
|
|
234
|
+
print(e.status_code)
|
|
235
|
+
print(e.body)
|
|
236
|
+
```
|
|
237
|
+
|
|
238
|
+
## Pagination
|
|
239
|
+
|
|
240
|
+
Paginated requests will return a `SyncPager` or `AsyncPager`, which can be used as generators for the underlying object.
|
|
241
|
+
|
|
242
|
+
```python
|
|
243
|
+
from auth0.management import Auth0
|
|
244
|
+
|
|
245
|
+
client = Auth0(
|
|
246
|
+
base_url="https://YOUR_TENANT.auth0.com/api/v2",
|
|
247
|
+
token="YOUR_TOKEN",
|
|
248
|
+
)
|
|
249
|
+
response = client.actions.list(
|
|
250
|
+
trigger_id="post-login",
|
|
251
|
+
action_name="actionName",
|
|
252
|
+
deployed=True,
|
|
253
|
+
page=1,
|
|
254
|
+
per_page=1,
|
|
255
|
+
installed=True,
|
|
256
|
+
)
|
|
257
|
+
for item in response:
|
|
258
|
+
print(item)
|
|
259
|
+
# alternatively, you can paginate page-by-page
|
|
260
|
+
for page in response.iter_pages():
|
|
261
|
+
print(page)
|
|
262
|
+
```
|
|
263
|
+
|
|
264
|
+
```python
|
|
265
|
+
# You can also iterate through pages and access the typed response per page
|
|
266
|
+
pager = client.actions.list(...)
|
|
267
|
+
for page in pager.iter_pages():
|
|
268
|
+
print(page.response) # access the typed response for each page
|
|
269
|
+
for item in page:
|
|
270
|
+
print(item)
|
|
271
|
+
```
|
|
272
|
+
|
|
273
|
+
## Advanced
|
|
274
|
+
|
|
275
|
+
### Access Raw Response Data
|
|
276
|
+
|
|
277
|
+
The SDK provides access to raw response data, including headers, through the `.with_raw_response` property.
|
|
278
|
+
The `.with_raw_response` property returns a "raw" client that can be used to access the `.headers` and `.data` attributes.
|
|
279
|
+
|
|
280
|
+
```python
|
|
281
|
+
from auth0.management import Auth0
|
|
282
|
+
|
|
283
|
+
client = Auth0(
|
|
284
|
+
base_url="https://YOUR_TENANT.auth0.com/api/v2",
|
|
285
|
+
token="YOUR_TOKEN",
|
|
286
|
+
)
|
|
287
|
+
response = client.actions.with_raw_response.create(...)
|
|
288
|
+
print(response.headers) # access the response headers
|
|
289
|
+
print(response.data) # access the underlying object
|
|
290
|
+
pager = client.actions.list(...)
|
|
291
|
+
print(pager.response) # access the typed response for the first page
|
|
292
|
+
for item in pager:
|
|
293
|
+
print(item) # access the underlying object(s)
|
|
294
|
+
for page in pager.iter_pages():
|
|
295
|
+
print(page.response) # access the typed response for each page
|
|
296
|
+
for item in page:
|
|
297
|
+
print(item) # access the underlying object(s)
|
|
298
|
+
```
|
|
299
|
+
|
|
300
|
+
### Retries
|
|
301
|
+
|
|
302
|
+
The SDK is instrumented with automatic retries with exponential backoff. A request will be retried as long
|
|
303
|
+
as the request is deemed retryable and the number of retry attempts has not grown larger than the configured
|
|
304
|
+
retry limit (default: 2).
|
|
305
|
+
|
|
306
|
+
A request is deemed retryable when any of the following HTTP status codes is returned:
|
|
307
|
+
|
|
308
|
+
- [408](https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/408) (Timeout)
|
|
309
|
+
- [429](https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/429) (Too Many Requests)
|
|
310
|
+
- [5XX](https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/500) (Internal Server Errors)
|
|
311
|
+
|
|
312
|
+
Use the `max_retries` request option to configure this behavior.
|
|
313
|
+
|
|
314
|
+
```python
|
|
315
|
+
client.actions.create(..., request_options={
|
|
316
|
+
"max_retries": 1
|
|
317
|
+
})
|
|
318
|
+
```
|
|
319
|
+
|
|
320
|
+
### Timeouts
|
|
321
|
+
|
|
322
|
+
The SDK defaults to a 60 second timeout. You can configure this with a timeout option at the client or request level.
|
|
323
|
+
|
|
324
|
+
```python
|
|
325
|
+
from auth0.management import Auth0
|
|
326
|
+
|
|
327
|
+
client = Auth0(
|
|
328
|
+
base_url="https://YOUR_TENANT.auth0.com/api/v2",
|
|
329
|
+
token="YOUR_TOKEN",
|
|
330
|
+
timeout=20.0,
|
|
331
|
+
)
|
|
332
|
+
|
|
333
|
+
|
|
334
|
+
# Override timeout for a specific method
|
|
335
|
+
client.actions.create(..., request_options={
|
|
336
|
+
"timeout_in_seconds": 1
|
|
337
|
+
})
|
|
338
|
+
```
|
|
339
|
+
|
|
340
|
+
### Custom Client
|
|
341
|
+
|
|
342
|
+
You can override the `httpx` client to customize it for your use-case. Some common use-cases include support for proxies
|
|
343
|
+
and transports.
|
|
344
|
+
|
|
345
|
+
```python
|
|
346
|
+
import httpx
|
|
347
|
+
from auth0.management import Auth0
|
|
348
|
+
|
|
349
|
+
client = Auth0(
|
|
350
|
+
base_url="https://YOUR_TENANT.auth0.com/api/v2",
|
|
351
|
+
token="YOUR_TOKEN",
|
|
352
|
+
httpx_client=httpx.Client(
|
|
353
|
+
proxy="http://my.test.proxy.example.com",
|
|
354
|
+
transport=httpx.HTTPTransport(local_address="0.0.0.0"),
|
|
355
|
+
),
|
|
356
|
+
)
|
|
357
|
+
```
|
|
358
|
+
|
|
359
|
+
## Feedback
|
|
360
|
+
|
|
361
|
+
### Contributing
|
|
362
|
+
|
|
363
|
+
We appreciate feedback and contribution to this repo! Before you get started, please see the following:
|
|
364
|
+
|
|
365
|
+
- [Auth0's general contribution guidelines](https://github.com/auth0/open-source-template/blob/master/GENERAL-CONTRIBUTING.md)
|
|
366
|
+
- [Auth0's code of conduct guidelines](https://github.com/auth0/open-source-template/blob/master/CODE-OF-CONDUCT.md)
|
|
367
|
+
|
|
368
|
+
### Raise an issue
|
|
369
|
+
|
|
370
|
+
To provide feedback or report a bug, please [raise an issue on our issue tracker](https://github.com/auth0/auth0-python/issues).
|
|
371
|
+
|
|
372
|
+
### Vulnerability Reporting
|
|
373
|
+
|
|
374
|
+
Please do not report security vulnerabilities on the public GitHub issue tracker. The [Responsible Disclosure Program](https://auth0.com/responsible-disclosure-policy) details the procedure for disclosing security issues.
|
|
375
|
+
|
|
376
|
+
---
|
|
377
|
+
|
|
378
|
+
<p align="center">
|
|
379
|
+
<picture>
|
|
380
|
+
<source media="(prefers-color-scheme: light)" srcset="https://cdn.auth0.com/website/sdks/logos/auth0_light_mode.png" width="150">
|
|
381
|
+
<source media="(prefers-color-scheme: dark)" srcset="https://cdn.auth0.com/website/sdks/logos/auth0_dark_mode.png" width="150">
|
|
382
|
+
<img alt="Auth0 Logo" src="https://cdn.auth0.com/website/sdks/logos/auth0_light_mode.png" width="150">
|
|
383
|
+
</picture>
|
|
384
|
+
</p>
|
|
385
|
+
<p align="center">Auth0 is an easy to implement, adaptable authentication and authorization platform. To learn more checkout <a href="https://auth0.com/why-auth0">Why Auth0</a></p>
|
|
386
|
+
<p align="center">
|
|
387
|
+
This project is licensed under the MIT license. See the <a href="https://github.com/auth0/auth0-python/blob/master/LICENSE"> LICENSE</a> file for more info
|
|
388
|
+
</p>
|
|
389
|
+
|