auth0-python 5.0.0b0__py3-none-any.whl → 5.2.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- auth0/authentication/base.py +8 -3
- auth0/authentication/rest.py +16 -5
- auth0/management/__init__.py +3 -0
- auth0/management/actions/__init__.py +3 -2
- auth0/management/actions/client.py +54 -14
- auth0/management/{attack_protection/brute_force_protection/types → actions/modules}/__init__.py +3 -9
- auth0/management/actions/modules/client.py +757 -0
- auth0/management/actions/modules/raw_client.py +1635 -0
- auth0/management/{types/connection_provisioning_ticket.py → actions/modules/versions/__init__.py} +2 -1
- auth0/management/actions/modules/versions/client.py +309 -0
- auth0/management/actions/modules/versions/raw_client.py +678 -0
- auth0/management/actions/raw_client.py +45 -16
- auth0/management/actions/triggers/bindings/raw_client.py +2 -2
- auth0/management/actions/versions/client.py +4 -4
- auth0/management/actions/versions/raw_client.py +4 -4
- auth0/management/attack_protection/__init__.py +0 -8
- auth0/management/attack_protection/breached_password_detection/client.py +2 -2
- auth0/management/attack_protection/breached_password_detection/raw_client.py +2 -2
- auth0/management/attack_protection/brute_force_protection/__init__.py +0 -33
- auth0/management/attack_protection/brute_force_protection/client.py +12 -18
- auth0/management/attack_protection/brute_force_protection/raw_client.py +12 -18
- auth0/management/branding/phone/templates/client.py +6 -4
- auth0/management/branding/phone/templates/raw_client.py +6 -4
- auth0/management/client.py +44 -0
- auth0/management/client_grants/client.py +113 -20
- auth0/management/client_grants/raw_client.py +205 -16
- auth0/management/clients/client.py +36 -26
- auth0/management/clients/credentials/client.py +16 -6
- auth0/management/clients/credentials/raw_client.py +16 -6
- auth0/management/clients/raw_client.py +38 -28
- auth0/management/connections/client.py +46 -38
- auth0/management/connections/directory_provisioning/client.py +102 -0
- auth0/management/connections/directory_provisioning/raw_client.py +210 -0
- auth0/management/connections/keys/client.py +90 -0
- auth0/management/connections/keys/raw_client.py +239 -0
- auth0/management/connections/raw_client.py +10 -2
- auth0/management/connections/scim_configuration/client.py +102 -0
- auth0/management/connections/scim_configuration/raw_client.py +213 -0
- auth0/management/core/__init__.py +13 -5
- auth0/management/core/client_wrapper.py +23 -3
- auth0/management/core/http_client.py +191 -44
- auth0/management/core/http_response.py +5 -1
- auth0/management/core/jsonable_encoder.py +8 -0
- auth0/management/core/logging.py +107 -0
- auth0/management/core/pydantic_utilities.py +327 -10
- auth0/management/custom_domains/client.py +166 -36
- auth0/management/custom_domains/raw_client.py +300 -22
- auth0/management/device_credentials/client.py +11 -0
- auth0/management/device_credentials/raw_client.py +11 -4
- auth0/management/email_templates/client.py +12 -12
- auth0/management/email_templates/raw_client.py +12 -12
- auth0/management/emails/provider/client.py +2 -2
- auth0/management/emails/provider/raw_client.py +2 -2
- auth0/management/errors/__init__.py +3 -0
- auth0/management/errors/precondition_failed_error.py +10 -0
- auth0/management/event_streams/client.py +25 -10
- auth0/management/event_streams/raw_client.py +33 -12
- auth0/management/flows/client.py +5 -4
- auth0/management/flows/executions/client.py +11 -4
- auth0/management/flows/executions/raw_client.py +11 -4
- auth0/management/flows/raw_client.py +9 -8
- auth0/management/flows/vault/connections/client.py +4 -0
- auth0/management/flows/vault/connections/raw_client.py +2 -2
- auth0/management/forms/raw_client.py +2 -2
- auth0/management/{tenants/settings/types → groups}/__init__.py +3 -7
- auth0/management/groups/client.py +305 -0
- auth0/management/{types/connection_strategy_version_enum_azure_ad.py → groups/members/__init__.py} +2 -1
- auth0/management/groups/members/client.py +175 -0
- auth0/management/groups/members/raw_client.py +268 -0
- auth0/management/groups/raw_client.py +485 -0
- auth0/management/guardian/factors/phone/client.py +12 -12
- auth0/management/guardian/factors/phone/raw_client.py +12 -12
- auth0/management/guardian/factors/push_notification/client.py +267 -22
- auth0/management/guardian/factors/push_notification/raw_client.py +533 -28
- auth0/management/guardian/factors/sms/client.py +12 -12
- auth0/management/guardian/factors/sms/raw_client.py +12 -12
- auth0/management/hooks/client.py +14 -16
- auth0/management/hooks/raw_client.py +16 -18
- auth0/management/jobs/users_exports/client.py +4 -4
- auth0/management/jobs/users_exports/raw_client.py +4 -4
- auth0/management/jobs/verification_email/client.py +4 -4
- auth0/management/jobs/verification_email/raw_client.py +4 -4
- auth0/management/keys/encryption/raw_client.py +2 -2
- auth0/management/log_streams/client.py +2 -0
- auth0/management/logs/raw_client.py +2 -2
- auth0/management/management_client.py +27 -1
- auth0/management/network_acls/raw_client.py +2 -2
- auth0/management/organizations/client.py +8 -8
- auth0/management/organizations/client_grants/raw_client.py +2 -2
- auth0/management/organizations/discovery_domains/client.py +137 -8
- auth0/management/organizations/discovery_domains/raw_client.py +227 -4
- auth0/management/organizations/enabled_connections/raw_client.py +2 -2
- auth0/management/organizations/invitations/client.py +6 -6
- auth0/management/organizations/invitations/raw_client.py +8 -8
- auth0/management/organizations/members/roles/raw_client.py +2 -2
- auth0/management/organizations/raw_client.py +8 -8
- auth0/management/prompts/rendering/client.py +11 -9
- auth0/management/prompts/rendering/raw_client.py +21 -15
- auth0/management/refresh_tokens/client.py +97 -0
- auth0/management/refresh_tokens/raw_client.py +221 -0
- auth0/management/resource_servers/raw_client.py +2 -2
- auth0/management/roles/permissions/raw_client.py +2 -2
- auth0/management/roles/raw_client.py +25 -2
- auth0/management/rules/client.py +16 -16
- auth0/management/rules/raw_client.py +18 -18
- auth0/management/rules_configs/client.py +2 -2
- auth0/management/rules_configs/raw_client.py +2 -2
- auth0/management/self_service_profiles/client.py +4 -4
- auth0/management/self_service_profiles/custom_text/client.py +54 -6
- auth0/management/self_service_profiles/custom_text/raw_client.py +46 -6
- auth0/management/self_service_profiles/raw_client.py +6 -6
- auth0/management/self_service_profiles/sso_ticket/client.py +10 -0
- auth0/management/self_service_profiles/sso_ticket/raw_client.py +10 -0
- auth0/management/sessions/client.py +2 -0
- auth0/management/sessions/raw_client.py +2 -0
- auth0/management/tenants/__init__.py +2 -6
- auth0/management/tenants/settings/__init__.py +0 -30
- auth0/management/tenants/settings/client.py +57 -37
- auth0/management/tenants/settings/raw_client.py +57 -37
- auth0/management/tickets/client.py +16 -16
- auth0/management/tickets/raw_client.py +16 -16
- auth0/management/token_exchange_profiles/client.py +23 -6
- auth0/management/token_exchange_profiles/raw_client.py +13 -6
- auth0/management/types/__init__.py +1712 -116
- auth0/management/types/action.py +13 -7
- auth0/management/types/action_base.py +3 -3
- auth0/management/types/action_binding.py +2 -2
- auth0/management/types/action_binding_ref.py +1 -1
- auth0/management/types/action_binding_with_ref.py +1 -1
- auth0/management/types/action_deployed_version.py +12 -6
- auth0/management/types/action_execution_result.py +1 -1
- auth0/management/types/action_module_action.py +43 -0
- auth0/management/types/action_module_dependency.py +27 -0
- auth0/management/types/action_module_dependency_request.py +27 -0
- auth0/management/types/action_module_list_item.py +70 -0
- auth0/management/types/action_module_reference.py +41 -0
- auth0/management/types/action_module_secret.py +28 -0
- auth0/management/types/{deploy_action_version_request_body_params.py → action_module_secret_request.py} +8 -3
- auth0/management/types/action_module_version.py +55 -0
- auth0/management/types/action_module_version_reference.py +54 -0
- auth0/management/types/action_secret_request.py +2 -2
- auth0/management/types/action_secret_response.py +1 -1
- auth0/management/types/action_version.py +12 -6
- auth0/management/types/acul_configs_item.py +21 -7
- auth0/management/types/acul_context_configuration.py +1 -1
- auth0/management/types/assessors_type_enum.py +1 -1
- auth0/management/types/breached_password_detection_stage.py +6 -2
- auth0/management/types/{get_brute_force_settings_response_content_mode.py → brute_force_protection_mode_enum.py} +1 -1
- auth0/management/types/brute_force_protection_shields_enum.py +5 -0
- auth0/management/types/certificate_subject_dn_credential.py +34 -0
- auth0/management/types/certificate_subject_dn_credential_type_enum.py +5 -0
- auth0/management/types/change_password_ticket_identity.py +2 -2
- auth0/management/types/change_password_ticket_response_content.py +1 -3
- auth0/management/types/client.py +24 -25
- auth0/management/types/client_addon_azure_blob.py +34 -35
- auth0/management/types/client_addon_azure_sb.py +17 -21
- auth0/management/types/client_addon_layer.py +15 -15
- auth0/management/types/client_addon_salesforce_api.py +5 -7
- auth0/management/types/client_addon_salesforce_sandbox_api.py +5 -7
- auth0/management/types/client_addon_saml.py +25 -13
- auth0/management/types/client_addon_sapapi.py +28 -26
- auth0/management/types/client_addon_zendesk.py +8 -6
- auth0/management/types/client_addons.py +3 -3
- auth0/management/types/client_async_approval_notifications_channels_api_patch_configuration.py +3 -1
- auth0/management/types/client_authentication_method.py +2 -2
- auth0/management/types/{private_key_jwt.py → client_authentication_method_private_key_jwt.py} +3 -3
- auth0/management/types/{private_key_jwt_credentials.py → client_authentication_method_private_key_jwt_credentials.py} +1 -1
- auth0/management/types/client_authentication_method_self_signed_tls_client_auth.py +4 -5
- auth0/management/types/client_authentication_method_self_signed_tls_client_auth_credentials.py +7 -0
- auth0/management/types/client_authentication_method_tls_client_auth.py +2 -5
- auth0/management/types/client_authentication_method_tls_client_auth_credentials.py +7 -0
- auth0/management/types/client_create_authentication_method.py +8 -6
- auth0/management/types/client_create_authentication_method_private_key_jwt.py +26 -0
- auth0/management/types/client_create_authentication_method_private_key_jwt_credentials.py +7 -0
- auth0/management/types/client_create_authentication_method_tls_client_auth.py +26 -0
- auth0/management/types/client_create_authentication_method_tls_client_auth_credentials.py +7 -0
- auth0/management/types/client_credential.py +8 -10
- auth0/management/types/client_default_organization_flows_enum.py +1 -1
- auth0/management/types/client_grant_response_content.py +6 -1
- auth0/management/types/client_jwt_configuration.py +2 -2
- auth0/management/types/client_mobile_android.py +8 -6
- auth0/management/types/client_mobilei_os.py +2 -2
- auth0/management/types/client_refresh_token_configuration.py +8 -2
- auth0/management/types/client_refresh_token_policy.py +27 -0
- auth0/management/types/client_session_transfer_configuration.py +9 -9
- auth0/management/types/client_signed_request_object_with_credential_id.py +1 -1
- auth0/management/types/client_signed_request_object_with_public_key.py +1 -1
- auth0/management/types/client_signing_key.py +7 -7
- auth0/management/types/client_signing_keys.py +1 -1
- auth0/management/types/client_token_exchange_type_enum.py +3 -1
- auth0/management/types/connected_account.py +1 -1
- auth0/management/types/connected_account_access_type_enum.py +1 -1
- auth0/management/types/connection_access_token_urlo_auth_1.py +5 -0
- auth0/management/types/connection_admin_access_token_expires_in_google_apps.py +5 -0
- auth0/management/types/connection_admin_access_token_google_apps.py +3 -0
- auth0/management/types/connection_admin_refresh_token_google_apps.py +3 -0
- auth0/management/types/connection_agent_ipad.py +3 -0
- auth0/management/types/connection_agent_mode_ad.py +3 -0
- auth0/management/types/connection_agent_version_ad.py +3 -0
- auth0/management/types/connection_api_behavior_enum.py +5 -0
- auth0/management/types/connection_api_enable_groups.py +3 -0
- auth0/management/types/connection_api_enable_groups_google_apps.py +5 -0
- auth0/management/types/connection_api_enable_users.py +3 -0
- auth0/management/types/connection_api_enable_users_google_apps.py +5 -0
- auth0/management/types/connection_attribute_identifier.py +3 -0
- auth0/management/types/connection_attribute_map_oidc.py +1 -1
- auth0/management/types/connection_auth_params_email.py +3 -0
- auth0/management/types/connection_authentication_methods.py +4 -0
- auth0/management/types/connection_base_url_exact.py +5 -0
- auth0/management/types/connection_calculated_thumbprint_saml.py +5 -0
- auth0/management/types/{acul_use_page_template.py → connection_certs_ad.py} +1 -1
- auth0/management/types/connection_client_id_amazon.py +5 -0
- auth0/management/types/connection_client_id_bitbucket.py +3 -0
- auth0/management/types/connection_client_id_exact.py +5 -0
- auth0/management/types/connection_client_id_facebook.py +5 -0
- auth0/management/types/connection_client_id_google_apps.py +5 -0
- auth0/management/types/connection_client_id_google_o_auth_2.py +1 -3
- auth0/management/types/connection_client_id_line.py +3 -0
- auth0/management/types/connection_client_id_linkedin.py +3 -0
- auth0/management/types/connection_client_id_o_auth_1.py +5 -0
- auth0/management/types/connection_client_id_paypal.py +5 -0
- auth0/management/types/connection_client_id_salesforce.py +3 -0
- auth0/management/types/connection_client_id_windows_live.py +3 -0
- auth0/management/types/connection_client_protocol_saml.py +7 -0
- auth0/management/types/connection_client_secret_amazon.py +5 -0
- auth0/management/types/connection_client_secret_bitbucket.py +5 -0
- auth0/management/types/connection_client_secret_exact.py +5 -0
- auth0/management/types/connection_client_secret_facebook.py +5 -0
- auth0/management/types/connection_client_secret_google_apps.py +5 -0
- auth0/management/types/connection_client_secret_google_o_auth_2.py +1 -3
- auth0/management/types/connection_client_secret_line.py +3 -0
- auth0/management/types/connection_client_secret_linkedin.py +3 -0
- auth0/management/types/connection_client_secret_o_auth_1.py +5 -0
- auth0/management/types/connection_client_secret_paypal.py +5 -0
- auth0/management/types/connection_client_secret_salesforce.py +3 -0
- auth0/management/types/connection_client_secret_windows_live.py +5 -0
- auth0/management/types/connection_common.py +0 -8
- auth0/management/types/connection_community_base_url_salesforce.py +5 -0
- auth0/management/types/connection_connected_accounts_purpose_xaa.py +24 -0
- auth0/management/types/connection_connection_settings.py +1 -1
- auth0/management/types/connection_debug_saml.py +3 -0
- auth0/management/types/connection_decryption_key_saml.py +7 -0
- auth0/management/types/connection_decryption_key_saml_cert.py +31 -0
- auth0/management/types/connection_destination_url_saml.py +5 -0
- auth0/management/types/connection_digest_algorithm_enum_saml.py +5 -0
- auth0/management/types/connection_digest_algorithm_saml.py +5 -0
- auth0/management/types/connection_disable_signup_sms.py +5 -0
- auth0/management/types/connection_discovery_url.py +3 -1
- auth0/management/types/connection_domain_aliases.py +7 -0
- auth0/management/types/{connection_domain_aliases_one.py → connection_domain_aliases_ad.py} +1 -1
- auth0/management/types/connection_domain_aliases_items_one.py +3 -0
- auth0/management/types/connection_domain_aliases_saml.py +7 -0
- auth0/management/types/connection_domain_google_apps.py +3 -0
- auth0/management/types/{connection_options_evernote_common.py → connection_dpop_signing_alg_values_supported.py} +1 -1
- auth0/management/types/connection_email_body_email.py +3 -0
- auth0/management/types/connection_email_email.py +37 -0
- auth0/management/types/{acul_head_tags.py → connection_email_email_syntax.py} +1 -3
- auth0/management/types/connection_email_from_email.py +3 -0
- auth0/management/types/connection_email_otp_authentication_method.py +26 -0
- auth0/management/types/connection_email_subject_email.py +3 -0
- auth0/management/types/connection_entity_id_saml.py +3 -0
- auth0/management/types/connection_ext_agreed_terms_google_apps.py +5 -0
- auth0/management/types/connection_ext_groups_azure_ad.py +5 -0
- auth0/management/types/connection_ext_groups_google_apps.py +5 -0
- auth0/management/types/connection_ext_is_admin_google_apps.py +5 -0
- auth0/management/types/connection_ext_is_suspended_google_apps.py +5 -0
- auth0/management/types/connection_fields_map_saml.py +7 -0
- auth0/management/types/connection_fields_map_saml_value.py +5 -0
- auth0/management/types/connection_for_list.py +3 -3
- auth0/management/types/connection_forward_req_info_sms.py +3 -0
- auth0/management/types/connection_freeform_scopes_amazon.py +5 -0
- auth0/management/types/connection_freeform_scopes_linkedin.py +5 -0
- auth0/management/types/connection_freeform_scopes_paypal.py +5 -0
- auth0/management/types/connection_freeform_scopes_salesforce.py +5 -0
- auth0/management/types/connection_freeform_scopes_windows_live.py +5 -0
- auth0/management/types/connection_from_sms.py +3 -0
- auth0/management/types/connection_gateway_authentication.py +6 -5
- auth0/management/types/connection_gateway_authentication_audience_sms.py +3 -0
- auth0/management/types/connection_gateway_authentication_method_sms.py +3 -0
- auth0/management/types/connection_gateway_authentication_sms.py +40 -0
- auth0/management/types/connection_gateway_authentication_subject_sms.py +3 -0
- auth0/management/types/connection_gateway_url_sms.py +5 -0
- auth0/management/types/connection_global_token_revocation_jwt_iss_saml.py +3 -0
- auth0/management/types/connection_global_token_revocation_jwt_sub_saml.py +3 -0
- auth0/management/types/connection_handle_login_from_social_google_apps.py +3 -0
- auth0/management/types/connection_https_url_with_http_fallback_2048.py +5 -0
- auth0/management/types/connection_https_url_with_http_fallback_255.py +5 -0
- auth0/management/types/connection_icon_url_adfs.py +5 -0
- auth0/management/types/connection_icon_url_google_apps.py +5 -0
- auth0/management/types/connection_icon_url_saml.py +5 -0
- auth0/management/types/connection_id_token_signed_response_alg_enum.py +3 -1
- auth0/management/types/{acul_default_head_tags_disabled.py → connection_ips_ad.py} +1 -1
- auth0/management/types/connection_issuer.py +2 -2
- auth0/management/types/connection_jwks_uri.py +2 -2
- auth0/management/types/connection_key.py +5 -9
- auth0/management/types/connection_messaging_service_sid_sms.py +3 -0
- auth0/management/types/connection_metadata_url_saml.py +5 -0
- auth0/management/types/connection_metadata_xml.py +3 -0
- auth0/management/types/connection_metadata_xml_adfs.py +5 -0
- auth0/management/types/connection_metadata_xml_saml.py +5 -0
- auth0/management/types/connection_op_policy_uri.py +2 -2
- auth0/management/types/connection_op_tos_uri.py +2 -2
- auth0/management/types/connection_options_ad.py +82 -1
- auth0/management/types/connection_options_adfs.py +65 -1
- auth0/management/types/connection_options_amazon.py +42 -2
- auth0/management/types/connection_options_aol.py +18 -1
- auth0/management/types/connection_options_auth_0.py +9 -3
- auth0/management/types/connection_options_auth_0_oidc.py +22 -1
- auth0/management/types/connection_options_azure_ad.py +16 -13
- auth0/management/types/connection_options_baidu.py +18 -1
- auth0/management/types/connection_options_bitbucket.py +31 -2
- auth0/management/types/connection_options_bitly.py +18 -1
- auth0/management/types/connection_options_box.py +18 -1
- auth0/management/types/connection_options_client_id_github.py +3 -0
- auth0/management/types/connection_options_client_id_twitter.py +3 -0
- auth0/management/types/connection_options_client_secret_github.py +3 -0
- auth0/management/types/connection_options_client_secret_twitter.py +3 -0
- auth0/management/types/connection_options_common.py +1 -1
- auth0/management/types/connection_options_common_oidc.py +4 -4
- auth0/management/types/connection_options_common_saml.py +80 -0
- auth0/management/types/connection_options_daccount.py +18 -1
- auth0/management/types/connection_options_deflate_saml.py +3 -0
- auth0/management/types/connection_options_dropbox.py +18 -1
- auth0/management/types/connection_options_dwolla.py +18 -1
- auth0/management/types/connection_options_email.py +40 -1
- auth0/management/types/connection_options_evernote.py +19 -2
- auth0/management/types/connection_options_exact.py +39 -2
- auth0/management/types/connection_options_facebook.py +235 -1
- auth0/management/types/connection_options_fitbit.py +18 -1
- auth0/management/types/connection_options_flickr.py +18 -1
- auth0/management/types/connection_options_freeform_scopes_github.py +5 -0
- auth0/management/types/connection_options_git_hub.py +130 -1
- auth0/management/types/connection_options_google_apps.py +84 -1
- auth0/management/types/connection_options_google_o_auth_2.py +8 -8
- auth0/management/types/connection_options_idp_initiated_client_protocol_enum_saml.py +5 -0
- auth0/management/types/connection_options_idpinitiated_saml.py +38 -0
- auth0/management/types/connection_options_instagram.py +18 -1
- auth0/management/types/connection_options_line.py +40 -2
- auth0/management/types/connection_options_linkedin.py +66 -1
- auth0/management/types/connection_options_o_auth_1.py +53 -1
- auth0/management/types/connection_options_o_auth_1_common.py +33 -0
- auth0/management/types/connection_options_o_auth_2.py +28 -14
- auth0/management/types/connection_options_o_auth_2_common.py +3 -1
- auth0/management/types/connection_options_office_365.py +22 -1
- auth0/management/types/connection_options_oidc_metadata.py +2 -0
- auth0/management/types/connection_options_okta.py +1 -1
- auth0/management/types/connection_options_paypal.py +49 -2
- auth0/management/types/connection_options_ping_federate.py +34 -1
- auth0/management/types/connection_options_planning_center.py +18 -1
- auth0/management/types/connection_options_protocol_enum_twitter.py +5 -0
- auth0/management/types/connection_options_salesforce.py +37 -2
- auth0/management/types/connection_options_salesforce_community.py +22 -2
- auth0/management/types/connection_options_saml.py +88 -1
- auth0/management/types/connection_options_scope_github.py +5 -0
- auth0/management/types/connection_options_scope_twitter.py +5 -0
- auth0/management/types/connection_options_sharepoint.py +18 -1
- auth0/management/types/connection_options_shop.py +18 -1
- auth0/management/types/connection_options_shopify.py +18 -1
- auth0/management/types/connection_options_sms.py +57 -1
- auth0/management/types/connection_options_soundcloud.py +18 -1
- auth0/management/types/connection_options_thirty_seven_signals.py +18 -1
- auth0/management/types/connection_options_twitter.py +52 -1
- auth0/management/types/connection_options_untappd.py +18 -1
- auth0/management/types/connection_options_vkontakte.py +18 -1
- auth0/management/types/connection_options_weibo.py +18 -1
- auth0/management/types/connection_options_windows_live.py +322 -1
- auth0/management/types/connection_options_wordpress.py +18 -1
- auth0/management/types/connection_options_yahoo.py +18 -1
- auth0/management/types/connection_options_yammer.py +18 -1
- auth0/management/types/connection_options_yandex.py +18 -1
- auth0/management/types/connection_password_authentication_method.py +5 -0
- auth0/management/types/connection_phone_otp_authentication_method.py +26 -0
- auth0/management/types/connection_ping_federate_base_url.py +5 -0
- auth0/management/types/connection_ping_federate_base_url_ping_federate.py +5 -0
- auth0/management/types/connection_profile_bitbucket.py +3 -0
- auth0/management/types/connection_profile_strategy_overrides.py +3 -1
- auth0/management/types/connection_properties_options.py +14 -7
- auth0/management/types/connection_protocol_binding_enum_saml.py +10 -0
- auth0/management/types/connection_protocol_binding_saml.py +5 -0
- auth0/management/types/connection_provider_enum_sms.py +5 -0
- auth0/management/types/connection_provider_sms.py +5 -0
- auth0/management/types/connection_purposes.py +26 -0
- auth0/management/types/connection_recipient_url_saml.py +5 -0
- auth0/management/types/connection_registration_endpoint.py +2 -2
- auth0/management/types/connection_request_template_saml.py +3 -0
- auth0/management/types/connection_request_token_urlo_auth_1.py +5 -0
- auth0/management/types/connection_response_common.py +2 -0
- auth0/management/types/connection_response_content_ad.py +6 -2
- auth0/management/types/connection_response_content_ad_strategy.py +5 -0
- auth0/management/types/connection_response_content_adfs.py +8 -2
- auth0/management/types/connection_response_content_adfs_strategy.py +5 -0
- auth0/management/types/connection_response_content_amazon.py +4 -2
- auth0/management/types/connection_response_content_amazon_strategy.py +5 -0
- auth0/management/types/connection_response_content_aol.py +4 -2
- auth0/management/types/connection_response_content_aol_strategy.py +5 -0
- auth0/management/types/connection_response_content_apple.py +4 -2
- auth0/management/types/connection_response_content_apple_strategy.py +5 -0
- auth0/management/types/connection_response_content_auth_0.py +4 -2
- auth0/management/types/connection_response_content_auth_0_oidc.py +4 -2
- auth0/management/types/connection_response_content_auth_0_oidc_strategy.py +5 -0
- auth0/management/types/connection_response_content_auth_0_strategy.py +5 -0
- auth0/management/types/connection_response_content_azure_ad.py +6 -6
- auth0/management/types/connection_response_content_azure_ad_strategy.py +5 -0
- auth0/management/types/connection_response_content_baidu.py +4 -2
- auth0/management/types/connection_response_content_baidu_strategy.py +5 -0
- auth0/management/types/connection_response_content_bitbucket.py +4 -2
- auth0/management/types/connection_response_content_bitbucket_strategy.py +5 -0
- auth0/management/types/connection_response_content_bitly.py +4 -2
- auth0/management/types/connection_response_content_bitly_strategy.py +5 -0
- auth0/management/types/connection_response_content_box.py +4 -2
- auth0/management/types/connection_response_content_box_strategy.py +5 -0
- auth0/management/types/connection_response_content_custom.py +6 -2
- auth0/management/types/connection_response_content_custom_strategy.py +5 -0
- auth0/management/types/connection_response_content_daccount.py +4 -2
- auth0/management/types/connection_response_content_daccount_strategy.py +5 -0
- auth0/management/types/connection_response_content_dropbox.py +4 -2
- auth0/management/types/connection_response_content_dropbox_strategy.py +5 -0
- auth0/management/types/connection_response_content_dwolla.py +4 -2
- auth0/management/types/connection_response_content_dwolla_strategy.py +5 -0
- auth0/management/types/connection_response_content_email.py +4 -2
- auth0/management/types/connection_response_content_email_strategy.py +5 -0
- auth0/management/types/connection_response_content_evernote.py +4 -2
- auth0/management/types/connection_response_content_evernote_sandbox.py +6 -4
- auth0/management/types/connection_response_content_evernote_sandbox_strategy.py +5 -0
- auth0/management/types/connection_response_content_evernote_strategy.py +5 -0
- auth0/management/types/connection_response_content_exact.py +4 -2
- auth0/management/types/connection_response_content_exact_strategy.py +5 -0
- auth0/management/types/connection_response_content_facebook.py +4 -2
- auth0/management/types/connection_response_content_facebook_strategy.py +5 -0
- auth0/management/types/connection_response_content_fitbit.py +4 -2
- auth0/management/types/connection_response_content_fitbit_strategy.py +5 -0
- auth0/management/types/connection_response_content_flickr.py +4 -2
- auth0/management/types/connection_response_content_flickr_strategy.py +5 -0
- auth0/management/types/connection_response_content_git_hub.py +4 -2
- auth0/management/types/connection_response_content_git_hub_strategy.py +5 -0
- auth0/management/types/connection_response_content_google_apps.py +8 -2
- auth0/management/types/connection_response_content_google_apps_strategy.py +5 -0
- auth0/management/types/connection_response_content_google_o_auth_2.py +4 -2
- auth0/management/types/connection_response_content_google_o_auth_2_strategy.py +5 -0
- auth0/management/types/connection_response_content_instagram.py +4 -2
- auth0/management/types/connection_response_content_instagram_strategy.py +5 -0
- auth0/management/types/connection_response_content_ip.py +6 -2
- auth0/management/types/connection_response_content_ip_strategy.py +5 -0
- auth0/management/types/connection_response_content_line.py +4 -2
- auth0/management/types/connection_response_content_line_strategy.py +5 -0
- auth0/management/types/connection_response_content_linkedin.py +4 -2
- auth0/management/types/connection_response_content_linkedin_strategy.py +5 -0
- auth0/management/types/connection_response_content_o_auth_1.py +4 -2
- auth0/management/types/connection_response_content_o_auth_1_strategy.py +5 -0
- auth0/management/types/connection_response_content_o_auth_2.py +4 -2
- auth0/management/types/connection_response_content_o_auth_2_strategy.py +5 -0
- auth0/management/types/connection_response_content_office_365.py +8 -2
- auth0/management/types/connection_response_content_office_365_strategy.py +5 -0
- auth0/management/types/connection_response_content_oidc.py +8 -1
- auth0/management/types/connection_response_content_oidc_strategy.py +5 -0
- auth0/management/types/connection_response_content_okta.py +6 -2
- auth0/management/types/connection_response_content_okta_strategy.py +5 -0
- auth0/management/types/connection_response_content_paypal.py +4 -2
- auth0/management/types/connection_response_content_paypal_sandbox.py +6 -4
- auth0/management/types/connection_response_content_paypal_sandbox_strategy.py +5 -0
- auth0/management/types/connection_response_content_paypal_strategy.py +5 -0
- auth0/management/types/connection_response_content_ping_federate.py +8 -2
- auth0/management/types/connection_response_content_ping_federate_strategy.py +5 -0
- auth0/management/types/connection_response_content_planning_center.py +4 -2
- auth0/management/types/connection_response_content_planning_center_strategy.py +5 -0
- auth0/management/types/connection_response_content_salesforce.py +4 -2
- auth0/management/types/connection_response_content_salesforce_community.py +6 -2
- auth0/management/types/connection_response_content_salesforce_community_strategy.py +5 -0
- auth0/management/types/connection_response_content_salesforce_sandbox.py +6 -4
- auth0/management/types/connection_response_content_salesforce_sandbox_strategy.py +5 -0
- auth0/management/types/connection_response_content_salesforce_strategy.py +5 -0
- auth0/management/types/connection_response_content_saml.py +8 -2
- auth0/management/types/connection_response_content_saml_strategy.py +5 -0
- auth0/management/types/connection_response_content_sharepoint.py +6 -2
- auth0/management/types/connection_response_content_sharepoint_strategy.py +5 -0
- auth0/management/types/connection_response_content_shop.py +4 -2
- auth0/management/types/connection_response_content_shop_strategy.py +5 -0
- auth0/management/types/connection_response_content_shopify.py +4 -2
- auth0/management/types/connection_response_content_shopify_strategy.py +5 -0
- auth0/management/types/connection_response_content_sms.py +4 -2
- auth0/management/types/connection_response_content_sms_strategy.py +5 -0
- auth0/management/types/connection_response_content_soundcloud.py +4 -2
- auth0/management/types/connection_response_content_soundcloud_strategy.py +5 -0
- auth0/management/types/connection_response_content_thirty_seven_signals.py +6 -2
- auth0/management/types/connection_response_content_thirty_seven_signals_strategy.py +5 -0
- auth0/management/types/connection_response_content_twitter.py +4 -2
- auth0/management/types/connection_response_content_twitter_strategy.py +5 -0
- auth0/management/types/connection_response_content_untappd.py +4 -2
- auth0/management/types/connection_response_content_untappd_strategy.py +5 -0
- auth0/management/types/connection_response_content_vkontakte.py +4 -2
- auth0/management/types/connection_response_content_vkontakte_strategy.py +5 -0
- auth0/management/types/connection_response_content_weibo.py +4 -2
- auth0/management/types/connection_response_content_weibo_strategy.py +5 -0
- auth0/management/types/connection_response_content_windows_live.py +4 -2
- auth0/management/types/connection_response_content_windows_live_strategy.py +5 -0
- auth0/management/types/connection_response_content_wordpress.py +4 -2
- auth0/management/types/connection_response_content_wordpress_strategy.py +5 -0
- auth0/management/types/connection_response_content_yahoo.py +4 -2
- auth0/management/types/connection_response_content_yahoo_strategy.py +5 -0
- auth0/management/types/connection_response_content_yammer.py +4 -2
- auth0/management/types/connection_response_content_yammer_strategy.py +5 -0
- auth0/management/types/connection_response_content_yandex.py +4 -2
- auth0/management/types/connection_response_content_yandex_strategy.py +5 -0
- auth0/management/types/connection_scope_amazon.py +5 -0
- auth0/management/types/connection_scope_array_facebook.py +7 -0
- auth0/management/types/connection_scope_array_windows_live.py +5 -0
- auth0/management/types/connection_scope_facebook.py +3 -0
- auth0/management/types/connection_scope_google_apps.py +7 -0
- auth0/management/types/connection_scope_item_google_apps.py +3 -0
- auth0/management/types/connection_scope_linkedin.py +5 -0
- auth0/management/types/connection_scope_paypal.py +5 -0
- auth0/management/types/connection_scope_salesforce.py +5 -0
- auth0/management/types/connection_scripts_o_auth_1.py +32 -0
- auth0/management/types/connection_scripts_o_auth_2.py +16 -13
- auth0/management/types/connection_service_documentation.py +2 -2
- auth0/management/types/connection_sha_1_thumbprint.py +3 -0
- auth0/management/types/connection_sign_in_endpoint_ad.py +5 -0
- auth0/management/types/connection_sign_in_endpoint_adfs.py +5 -0
- auth0/management/types/connection_sign_in_endpoint_saml.py +5 -0
- auth0/management/types/connection_sign_out_endpoint_saml.py +5 -0
- auth0/management/types/connection_sign_saml_request_saml.py +3 -0
- auth0/management/types/connection_signature_algorithm_enum_saml.py +5 -0
- auth0/management/types/connection_signature_algorithm_saml.py +5 -0
- auth0/management/types/connection_signature_method_o_auth_1.py +5 -0
- auth0/management/types/connection_signing_cert_saml.py +5 -0
- auth0/management/types/connection_signing_certificate_der_saml.py +3 -0
- auth0/management/types/connection_signing_certificate_pem_ping_federate.py +3 -0
- auth0/management/types/connection_signing_certificate_pem_saml.py +3 -0
- auth0/management/types/connection_signing_key_saml.py +31 -0
- auth0/management/types/connection_signup_behavior_enum.py +5 -0
- auth0/management/types/connection_strategy_version_enum_linkedin.py +3 -0
- auth0/management/types/connection_strategy_version_enum_windows_live.py +3 -0
- auth0/management/types/connection_template_sms.py +3 -0
- auth0/management/types/connection_template_syntax_enum_sms.py +5 -0
- auth0/management/types/connection_tenant_domain.py +1 -3
- auth0/management/types/connection_tenant_domain_ad.py +3 -0
- auth0/management/types/connection_tenant_domain_google_apps.py +5 -0
- auth0/management/types/connection_tenant_domain_saml.py +5 -0
- auth0/management/types/connection_thumbprints_ad.py +7 -0
- auth0/management/types/connection_thumbprints_saml.py +7 -0
- auth0/management/types/connection_token_endpoint.py +2 -2
- auth0/management/types/connection_token_endpoint_auth_signing_alg_enum.py +3 -1
- auth0/management/types/connection_totp_email.py +22 -0
- auth0/management/types/connection_totp_length_email.py +5 -0
- auth0/management/types/connection_totp_length_passwordless.py +3 -0
- auth0/management/types/connection_totp_length_sms.py +5 -0
- auth0/management/types/connection_totp_sms.py +26 -0
- auth0/management/types/connection_totp_time_step_email.py +5 -0
- auth0/management/types/connection_totp_time_step_passwordless.py +3 -0
- auth0/management/types/connection_totp_time_step_sms.py +5 -0
- auth0/management/types/connection_twilio_sid_sms.py +3 -0
- auth0/management/types/connection_twilio_token_sms.py +3 -0
- auth0/management/types/connection_type_enum_okta.py +1 -1
- auth0/management/types/{connection_upstream_params_oidc.py → connection_upstream_params_adfs.py} +1 -1
- auth0/management/types/connection_upstream_params_facebook.py +7 -0
- auth0/management/types/connection_user_authorization_urlo_auth_1.py +5 -0
- auth0/management/types/connection_user_id_attribute_saml.py +3 -0
- auth0/management/types/connection_userinfo_endpoint.py +2 -2
- auth0/management/types/create_action_module_response_content.py +73 -0
- auth0/management/types/create_action_module_version_response_content.py +55 -0
- auth0/management/types/create_action_response_content.py +13 -7
- auth0/management/types/create_branding_theme_response_content.py +6 -10
- auth0/management/types/create_client_authentication_method_self_signed_tls_client_auth.py +26 -0
- auth0/management/types/create_client_authentication_method_self_signed_tls_client_auth_credentials.py +7 -0
- auth0/management/types/create_client_grant_response_content.py +6 -1
- auth0/management/types/create_client_response_content.py +24 -25
- auth0/management/types/create_connection_request_content_ad.py +2 -1
- auth0/management/types/create_connection_request_content_ad_strategy.py +5 -0
- auth0/management/types/create_connection_request_content_adfs.py +4 -1
- auth0/management/types/create_connection_request_content_adfs_strategy.py +5 -0
- auth0/management/types/create_connection_request_content_amazon.py +2 -1
- auth0/management/types/create_connection_request_content_amazon_strategy.py +5 -0
- auth0/management/types/create_connection_request_content_aol.py +2 -1
- auth0/management/types/create_connection_request_content_aol_strategy.py +5 -0
- auth0/management/types/create_connection_request_content_apple.py +2 -1
- auth0/management/types/create_connection_request_content_apple_strategy.py +5 -0
- auth0/management/types/create_connection_request_content_auth_0.py +4 -1
- auth0/management/types/create_connection_request_content_auth_0_oidc.py +2 -1
- auth0/management/types/create_connection_request_content_auth_0_oidc_strategy.py +5 -0
- auth0/management/types/create_connection_request_content_auth_0_strategy.py +5 -0
- auth0/management/types/create_connection_request_content_azure_ad.py +4 -5
- auth0/management/types/create_connection_request_content_azure_ad_strategy.py +5 -0
- auth0/management/types/create_connection_request_content_baidu.py +2 -1
- auth0/management/types/create_connection_request_content_baidu_strategy.py +5 -0
- auth0/management/types/create_connection_request_content_bitbucket.py +2 -1
- auth0/management/types/create_connection_request_content_bitbucket_strategy.py +5 -0
- auth0/management/types/create_connection_request_content_bitly.py +2 -1
- auth0/management/types/create_connection_request_content_bitly_strategy.py +5 -0
- auth0/management/types/create_connection_request_content_box.py +4 -2
- auth0/management/types/create_connection_request_content_box_strategy.py +5 -0
- auth0/management/types/create_connection_request_content_custom.py +2 -1
- auth0/management/types/create_connection_request_content_custom_strategy.py +5 -0
- auth0/management/types/create_connection_request_content_daccount.py +2 -1
- auth0/management/types/create_connection_request_content_daccount_strategy.py +5 -0
- auth0/management/types/create_connection_request_content_dropbox.py +2 -1
- auth0/management/types/create_connection_request_content_dropbox_strategy.py +5 -0
- auth0/management/types/create_connection_request_content_dwolla.py +2 -1
- auth0/management/types/create_connection_request_content_dwolla_strategy.py +5 -0
- auth0/management/types/create_connection_request_content_email.py +2 -1
- auth0/management/types/create_connection_request_content_email_strategy.py +5 -0
- auth0/management/types/create_connection_request_content_evernote.py +2 -1
- auth0/management/types/create_connection_request_content_evernote_sandbox.py +6 -3
- auth0/management/types/create_connection_request_content_evernote_sandbox_strategy.py +5 -0
- auth0/management/types/create_connection_request_content_evernote_strategy.py +5 -0
- auth0/management/types/create_connection_request_content_exact.py +2 -1
- auth0/management/types/create_connection_request_content_exact_strategy.py +5 -0
- auth0/management/types/create_connection_request_content_facebook.py +2 -1
- auth0/management/types/create_connection_request_content_facebook_strategy.py +5 -0
- auth0/management/types/create_connection_request_content_fitbit.py +2 -1
- auth0/management/types/create_connection_request_content_fitbit_strategy.py +5 -0
- auth0/management/types/create_connection_request_content_flickr.py +2 -1
- auth0/management/types/create_connection_request_content_flickr_strategy.py +5 -0
- auth0/management/types/create_connection_request_content_git_hub.py +4 -2
- auth0/management/types/create_connection_request_content_git_hub_strategy.py +5 -0
- auth0/management/types/create_connection_request_content_google_apps.py +4 -1
- auth0/management/types/create_connection_request_content_google_apps_strategy.py +5 -0
- auth0/management/types/create_connection_request_content_google_o_auth_2.py +6 -2
- auth0/management/types/create_connection_request_content_google_o_auth_2_strategy.py +5 -0
- auth0/management/types/create_connection_request_content_instagram.py +2 -1
- auth0/management/types/create_connection_request_content_instagram_strategy.py +5 -0
- auth0/management/types/create_connection_request_content_ip.py +4 -1
- auth0/management/types/create_connection_request_content_ip_strategy.py +5 -0
- auth0/management/types/create_connection_request_content_line.py +2 -1
- auth0/management/types/create_connection_request_content_line_strategy.py +5 -0
- auth0/management/types/create_connection_request_content_linkedin.py +2 -1
- auth0/management/types/create_connection_request_content_linkedin_strategy.py +5 -0
- auth0/management/types/create_connection_request_content_o_auth_1.py +2 -1
- auth0/management/types/create_connection_request_content_o_auth_1_strategy.py +5 -0
- auth0/management/types/create_connection_request_content_o_auth_2.py +4 -2
- auth0/management/types/create_connection_request_content_o_auth_2_strategy.py +5 -0
- auth0/management/types/create_connection_request_content_office_365.py +4 -1
- auth0/management/types/create_connection_request_content_office_365_strategy.py +5 -0
- auth0/management/types/create_connection_request_content_oidc.py +8 -1
- auth0/management/types/create_connection_request_content_oidc_strategy.py +5 -0
- auth0/management/types/create_connection_request_content_okta.py +4 -1
- auth0/management/types/create_connection_request_content_okta_strategy.py +5 -0
- auth0/management/types/create_connection_request_content_paypal.py +2 -1
- auth0/management/types/create_connection_request_content_paypal_sandbox.py +6 -3
- auth0/management/types/create_connection_request_content_paypal_sandbox_strategy.py +5 -0
- auth0/management/types/create_connection_request_content_paypal_strategy.py +5 -0
- auth0/management/types/create_connection_request_content_ping_federate.py +4 -1
- auth0/management/types/create_connection_request_content_ping_federate_strategy.py +5 -0
- auth0/management/types/create_connection_request_content_planning_center.py +4 -1
- auth0/management/types/create_connection_request_content_planning_center_strategy.py +5 -0
- auth0/management/types/create_connection_request_content_salesforce.py +2 -1
- auth0/management/types/create_connection_request_content_salesforce_community.py +4 -1
- auth0/management/types/create_connection_request_content_salesforce_community_strategy.py +7 -0
- auth0/management/types/create_connection_request_content_salesforce_sandbox.py +6 -3
- auth0/management/types/create_connection_request_content_salesforce_sandbox_strategy.py +5 -0
- auth0/management/types/create_connection_request_content_salesforce_strategy.py +5 -0
- auth0/management/types/create_connection_request_content_saml.py +4 -1
- auth0/management/types/create_connection_request_content_saml_strategy.py +5 -0
- auth0/management/types/create_connection_request_content_sharepoint.py +4 -1
- auth0/management/types/create_connection_request_content_sharepoint_strategy.py +5 -0
- auth0/management/types/create_connection_request_content_shop.py +2 -1
- auth0/management/types/create_connection_request_content_shop_strategy.py +5 -0
- auth0/management/types/create_connection_request_content_shopify.py +2 -1
- auth0/management/types/create_connection_request_content_shopify_strategy.py +5 -0
- auth0/management/types/create_connection_request_content_sms.py +2 -1
- auth0/management/types/create_connection_request_content_sms_strategy.py +5 -0
- auth0/management/types/create_connection_request_content_soundcloud.py +2 -1
- auth0/management/types/create_connection_request_content_soundcloud_strategy.py +5 -0
- auth0/management/types/create_connection_request_content_thirty_seven_signals.py +4 -1
- auth0/management/types/create_connection_request_content_thirty_seven_signals_strategy.py +7 -0
- auth0/management/types/create_connection_request_content_twitter.py +2 -1
- auth0/management/types/create_connection_request_content_twitter_strategy.py +5 -0
- auth0/management/types/create_connection_request_content_untappd.py +2 -1
- auth0/management/types/create_connection_request_content_untappd_strategy.py +5 -0
- auth0/management/types/create_connection_request_content_vkontakte.py +2 -1
- auth0/management/types/create_connection_request_content_vkontakte_strategy.py +5 -0
- auth0/management/types/create_connection_request_content_weibo.py +2 -1
- auth0/management/types/create_connection_request_content_weibo_strategy.py +5 -0
- auth0/management/types/create_connection_request_content_windows_live.py +4 -2
- auth0/management/types/create_connection_request_content_windows_live_strategy.py +5 -0
- auth0/management/types/create_connection_request_content_wordpress.py +2 -1
- auth0/management/types/create_connection_request_content_wordpress_strategy.py +5 -0
- auth0/management/types/create_connection_request_content_yahoo.py +2 -1
- auth0/management/types/create_connection_request_content_yahoo_strategy.py +5 -0
- auth0/management/types/create_connection_request_content_yammer.py +2 -1
- auth0/management/types/create_connection_request_content_yammer_strategy.py +5 -0
- auth0/management/types/create_connection_request_content_yandex.py +2 -1
- auth0/management/types/create_connection_request_content_yandex_strategy.py +5 -0
- auth0/management/types/create_connection_response_content.py +3 -3
- auth0/management/types/create_custom_domain_response_content.py +13 -4
- auth0/management/types/create_directory_provisioning_request_content.py +3 -0
- auth0/management/types/create_directory_provisioning_response_content.py +2 -0
- auth0/management/types/create_email_provider_response_content.py +2 -2
- auth0/management/types/create_email_template_response_content.py +25 -27
- auth0/management/types/create_encryption_key_public_wrapping_response_content.py +1 -1
- auth0/management/types/create_encryption_key_response_content.py +1 -1
- auth0/management/types/create_event_stream_test_event_response_content.py +1 -1
- auth0/management/types/create_export_users_response_content.py +5 -5
- auth0/management/types/create_flows_vault_connection_activecampaign_api_key.py +1 -1
- auth0/management/types/create_flows_vault_connection_activecampaign_uninitialized.py +1 -1
- auth0/management/types/create_flows_vault_connection_airtable_api_key.py +1 -1
- auth0/management/types/create_flows_vault_connection_airtable_uninitialized.py +1 -1
- auth0/management/types/create_flows_vault_connection_auth_0_oauth_app.py +1 -1
- auth0/management/types/create_flows_vault_connection_auth_0_uninitialized.py +1 -1
- auth0/management/types/create_flows_vault_connection_bigquery_jwt.py +1 -1
- auth0/management/types/create_flows_vault_connection_bigquery_uninitialized.py +1 -1
- auth0/management/types/create_flows_vault_connection_clearbit_api_key.py +1 -1
- auth0/management/types/create_flows_vault_connection_clearbit_uninitialized.py +1 -1
- auth0/management/types/create_flows_vault_connection_docusign_oauth_code.py +1 -1
- auth0/management/types/create_flows_vault_connection_docusign_uninitialized.py +1 -1
- auth0/management/types/create_flows_vault_connection_google_sheets_oauth_code.py +1 -1
- auth0/management/types/create_flows_vault_connection_google_sheets_uninitialized.py +1 -1
- auth0/management/types/create_flows_vault_connection_http.py +10 -1
- auth0/management/types/create_flows_vault_connection_http_api_key.py +27 -0
- auth0/management/types/create_flows_vault_connection_http_basic_auth.py +27 -0
- auth0/management/types/create_flows_vault_connection_http_bearer.py +1 -1
- auth0/management/types/create_flows_vault_connection_http_oauth_client_credentials.py +29 -0
- auth0/management/types/create_flows_vault_connection_http_uninitialized.py +1 -1
- auth0/management/types/create_flows_vault_connection_hubspot_api_key.py +1 -1
- auth0/management/types/create_flows_vault_connection_hubspot_oauth_code.py +1 -1
- auth0/management/types/create_flows_vault_connection_hubspot_uninitialized.py +1 -1
- auth0/management/types/create_flows_vault_connection_jwt_jwt.py +1 -1
- auth0/management/types/create_flows_vault_connection_jwt_uninitialized.py +1 -1
- auth0/management/types/create_flows_vault_connection_mailchimp_api_key.py +1 -1
- auth0/management/types/create_flows_vault_connection_mailchimp_oauth_code.py +1 -1
- auth0/management/types/create_flows_vault_connection_mailchimp_uninitialized.py +1 -1
- auth0/management/types/create_flows_vault_connection_mailjet_api_key.py +1 -1
- auth0/management/types/create_flows_vault_connection_mailjet_uninitialized.py +1 -1
- auth0/management/types/create_flows_vault_connection_pipedrive_oauth_code.py +1 -1
- auth0/management/types/create_flows_vault_connection_pipedrive_token.py +1 -1
- auth0/management/types/create_flows_vault_connection_pipedrive_uninitialized.py +1 -1
- auth0/management/types/create_flows_vault_connection_salesforce_oauth_code.py +1 -1
- auth0/management/types/create_flows_vault_connection_salesforce_uninitialized.py +1 -1
- auth0/management/types/create_flows_vault_connection_sendgrid_api_key.py +1 -1
- auth0/management/types/create_flows_vault_connection_sendgrid_uninitialized.py +1 -1
- auth0/management/types/create_flows_vault_connection_slack_oauth_code.py +1 -1
- auth0/management/types/create_flows_vault_connection_slack_uninitialized.py +1 -1
- auth0/management/types/create_flows_vault_connection_slack_webhook.py +1 -1
- auth0/management/types/create_flows_vault_connection_stripe_key_pair.py +1 -1
- auth0/management/types/create_flows_vault_connection_stripe_oauth_code.py +1 -1
- auth0/management/types/create_flows_vault_connection_stripe_uninitialized.py +1 -1
- auth0/management/types/create_flows_vault_connection_telegram_token.py +1 -1
- auth0/management/types/create_flows_vault_connection_telegram_uninitialized.py +1 -1
- auth0/management/types/create_flows_vault_connection_twilio_api_key.py +1 -1
- auth0/management/types/create_flows_vault_connection_twilio_uninitialized.py +1 -1
- auth0/management/types/create_flows_vault_connection_whatsapp_token.py +1 -1
- auth0/management/types/create_flows_vault_connection_whatsapp_uninitialized.py +1 -1
- auth0/management/types/create_flows_vault_connection_zapier_uninitialized.py +1 -1
- auth0/management/types/create_flows_vault_connection_zapier_webhook.py +1 -1
- auth0/management/types/create_guardian_enrollment_ticket_response_content.py +1 -1
- auth0/management/types/create_hook_response_content.py +9 -13
- auth0/management/types/create_import_users_response_content.py +4 -4
- auth0/management/types/create_log_stream_datadog_request_body.py +11 -14
- auth0/management/types/create_log_stream_event_bridge_request_body.py +11 -14
- auth0/management/types/create_log_stream_event_grid_request_body.py +11 -14
- auth0/management/types/create_log_stream_http_request_body.py +11 -14
- auth0/management/types/create_log_stream_mixpanel_request_body.py +11 -14
- auth0/management/types/create_log_stream_segment_request_body.py +11 -14
- auth0/management/types/create_log_stream_splunk_request_body.py +11 -14
- auth0/management/types/create_log_stream_sumo_request_body.py +11 -14
- auth0/management/types/create_organization_discovery_domain_response_content.py +5 -0
- auth0/management/types/create_organization_invitation_response_content.py +4 -6
- auth0/management/types/create_organization_response_content.py +2 -2
- auth0/management/types/create_phone_template_response_content.py +1 -1
- auth0/management/types/create_public_key_device_credential_response_content.py +1 -1
- auth0/management/types/create_rule_response_content.py +6 -8
- auth0/management/types/create_scim_configuration_response_content.py +12 -11
- auth0/management/types/create_self_service_profile_response_content.py +2 -2
- auth0/management/types/create_token_exchange_profile_response_content.py +1 -1
- auth0/management/types/create_user_authentication_method_response_content.py +5 -1
- auth0/management/types/create_user_response_content.py +6 -6
- auth0/management/types/create_verifiable_credential_template_response_content.py +3 -3
- auth0/management/types/create_verification_email_response_content.py +3 -3
- auth0/management/types/custom_domain.py +14 -7
- auth0/management/types/custom_domain_tls_policy_enum.py +1 -1
- auth0/management/types/custom_domain_verification_method_enum.py +1 -1
- auth0/management/types/custom_signing_key_jwk.py +18 -23
- auth0/management/types/custom_signing_key_operation_enum.py +1 -1
- auth0/management/types/custom_signing_key_use_enum.py +1 -1
- auth0/management/types/daily_stats.py +6 -6
- auth0/management/types/default_method_email_identifier_enum.py +5 -0
- auth0/management/types/delete_user_identity_response_content_item.py +14 -13
- auth0/management/types/deploy_action_response_content.py +12 -6
- auth0/management/types/deploy_action_version_request_content.py +17 -2
- auth0/management/types/deploy_action_version_response_content.py +12 -6
- auth0/management/types/device_credential.py +10 -6
- auth0/management/types/device_credential_public_key_type_enum.py +1 -1
- auth0/management/types/directory_provisioning.py +71 -0
- auth0/management/types/directory_provisioning_mapping_item.py +5 -5
- auth0/management/types/domain_verification_method.py +2 -2
- auth0/management/types/email_mailgun_region_enum.py +1 -1
- auth0/management/types/email_provider_credentials_schema_access_key_id.py +10 -14
- auth0/management/types/email_provider_credentials_schema_client_id.py +15 -20
- auth0/management/types/email_provider_credentials_schema_connection_string.py +5 -6
- auth0/management/types/email_spark_post_region_enum.py +1 -1
- auth0/management/types/encryption_key.py +1 -1
- auth0/management/types/encryption_key_public_wrapping_algorithm.py +1 -1
- auth0/management/types/event_stream_action_destination.py +1 -1
- auth0/management/types/event_stream_action_destination_type_enum.py +1 -1
- auth0/management/types/event_stream_delivery.py +1 -1
- auth0/management/types/event_stream_delivery_attempt.py +1 -1
- auth0/management/types/event_stream_delivery_status_enum.py +1 -1
- auth0/management/types/event_stream_event_bridge_destination.py +1 -1
- auth0/management/types/event_stream_event_bridge_destination_type_enum.py +1 -1
- auth0/management/types/event_stream_webhook_basic_auth.py +1 -1
- auth0/management/types/event_stream_webhook_basic_auth_method_enum.py +1 -1
- auth0/management/types/event_stream_webhook_bearer_auth.py +1 -1
- auth0/management/types/event_stream_webhook_bearer_auth_method_enum.py +1 -1
- auth0/management/types/event_stream_webhook_destination.py +1 -1
- auth0/management/types/event_stream_webhook_destination_type_enum.py +1 -1
- auth0/management/types/flow_action_activecampaign_list_contacts.py +4 -2
- auth0/management/types/flow_action_activecampaign_list_contacts_action.py +5 -0
- auth0/management/types/flow_action_activecampaign_list_contacts_type.py +5 -0
- auth0/management/types/flow_action_activecampaign_upsert_contact.py +4 -2
- auth0/management/types/flow_action_activecampaign_upsert_contact_action.py +5 -0
- auth0/management/types/flow_action_activecampaign_upsert_contact_type.py +5 -0
- auth0/management/types/flow_action_airtable_create_record.py +4 -2
- auth0/management/types/flow_action_airtable_create_record_action.py +5 -0
- auth0/management/types/flow_action_airtable_create_record_type.py +5 -0
- auth0/management/types/flow_action_airtable_list_records.py +4 -2
- auth0/management/types/flow_action_airtable_list_records_action.py +5 -0
- auth0/management/types/flow_action_airtable_list_records_type.py +5 -0
- auth0/management/types/flow_action_airtable_update_record.py +4 -2
- auth0/management/types/flow_action_airtable_update_record_action.py +5 -0
- auth0/management/types/flow_action_airtable_update_record_type.py +5 -0
- auth0/management/types/flow_action_auth_0.py +4 -0
- auth0/management/types/flow_action_auth_0_create_user.py +4 -2
- auth0/management/types/flow_action_auth_0_create_user_action.py +5 -0
- auth0/management/types/flow_action_auth_0_create_user_type.py +5 -0
- auth0/management/types/flow_action_auth_0_get_user.py +4 -2
- auth0/management/types/flow_action_auth_0_get_user_action.py +5 -0
- auth0/management/types/flow_action_auth_0_get_user_type.py +5 -0
- auth0/management/types/flow_action_auth_0_make_call.py +28 -0
- auth0/management/types/flow_action_auth_0_make_call_action.py +5 -0
- auth0/management/types/flow_action_auth_0_make_call_params.py +27 -0
- auth0/management/types/flow_action_auth_0_make_call_params_custom_vars.py +5 -0
- auth0/management/types/flow_action_auth_0_make_call_type.py +5 -0
- auth0/management/types/flow_action_auth_0_send_email.py +4 -2
- auth0/management/types/flow_action_auth_0_send_email_action.py +5 -0
- auth0/management/types/flow_action_auth_0_send_email_params.py +1 -1
- auth0/management/types/flow_action_auth_0_send_email_type.py +5 -0
- auth0/management/types/flow_action_auth_0_send_request.py +4 -2
- auth0/management/types/flow_action_auth_0_send_request_action.py +5 -0
- auth0/management/types/flow_action_auth_0_send_request_type.py +5 -0
- auth0/management/types/flow_action_auth_0_send_sms.py +28 -0
- auth0/management/types/flow_action_auth_0_send_sms_action.py +5 -0
- auth0/management/types/flow_action_auth_0_send_sms_params.py +27 -0
- auth0/management/types/flow_action_auth_0_send_sms_params_custom_vars.py +5 -0
- auth0/management/types/flow_action_auth_0_send_sms_type.py +5 -0
- auth0/management/types/flow_action_auth_0_update_user.py +4 -2
- auth0/management/types/flow_action_auth_0_update_user_action.py +5 -0
- auth0/management/types/flow_action_auth_0_update_user_type.py +5 -0
- auth0/management/types/flow_action_bigquery_insert_rows.py +4 -2
- auth0/management/types/flow_action_bigquery_insert_rows_action.py +5 -0
- auth0/management/types/flow_action_bigquery_insert_rows_type.py +5 -0
- auth0/management/types/flow_action_clearbit_find_company.py +4 -2
- auth0/management/types/flow_action_clearbit_find_company_action.py +5 -0
- auth0/management/types/flow_action_clearbit_find_company_type.py +5 -0
- auth0/management/types/flow_action_clearbit_find_person.py +4 -2
- auth0/management/types/flow_action_clearbit_find_person_action.py +5 -0
- auth0/management/types/flow_action_clearbit_find_person_type.py +5 -0
- auth0/management/types/flow_action_email_verify_email.py +4 -2
- auth0/management/types/flow_action_email_verify_email_action.py +5 -0
- auth0/management/types/flow_action_email_verify_email_type.py +5 -0
- auth0/management/types/flow_action_flow_boolean_condition.py +4 -2
- auth0/management/types/flow_action_flow_boolean_condition_action.py +5 -0
- auth0/management/types/flow_action_flow_boolean_condition_params.py +3 -1
- auth0/management/types/flow_action_flow_boolean_condition_type.py +5 -0
- auth0/management/types/flow_action_flow_delay_flow.py +4 -2
- auth0/management/types/flow_action_flow_delay_flow_action.py +5 -0
- auth0/management/types/flow_action_flow_delay_flow_type.py +5 -0
- auth0/management/types/flow_action_flow_do_nothing.py +4 -2
- auth0/management/types/flow_action_flow_do_nothing_action.py +5 -0
- auth0/management/types/flow_action_flow_do_nothing_type.py +5 -0
- auth0/management/types/flow_action_flow_error_message.py +4 -2
- auth0/management/types/flow_action_flow_error_message_action.py +5 -0
- auth0/management/types/flow_action_flow_error_message_type.py +5 -0
- auth0/management/types/flow_action_flow_map_value.py +4 -2
- auth0/management/types/flow_action_flow_map_value_action.py +5 -0
- auth0/management/types/flow_action_flow_map_value_type.py +5 -0
- auth0/management/types/flow_action_flow_return_json.py +4 -2
- auth0/management/types/flow_action_flow_return_json_action.py +5 -0
- auth0/management/types/flow_action_flow_return_json_type.py +5 -0
- auth0/management/types/flow_action_flow_store_vars.py +4 -2
- auth0/management/types/flow_action_flow_store_vars_action.py +5 -0
- auth0/management/types/flow_action_flow_store_vars_type.py +5 -0
- auth0/management/types/flow_action_google_sheets_add_row.py +4 -2
- auth0/management/types/flow_action_google_sheets_add_row_action.py +5 -0
- auth0/management/types/flow_action_google_sheets_add_row_type.py +5 -0
- auth0/management/types/flow_action_http_send_request.py +4 -2
- auth0/management/types/flow_action_http_send_request_action.py +5 -0
- auth0/management/types/flow_action_http_send_request_type.py +5 -0
- auth0/management/types/flow_action_hubspot_enroll_contact.py +4 -2
- auth0/management/types/flow_action_hubspot_enroll_contact_action.py +5 -0
- auth0/management/types/flow_action_hubspot_enroll_contact_type.py +5 -0
- auth0/management/types/flow_action_hubspot_get_contact.py +4 -2
- auth0/management/types/flow_action_hubspot_get_contact_action.py +5 -0
- auth0/management/types/flow_action_hubspot_get_contact_type.py +5 -0
- auth0/management/types/flow_action_hubspot_upsert_contact.py +4 -2
- auth0/management/types/flow_action_hubspot_upsert_contact_action.py +5 -0
- auth0/management/types/flow_action_hubspot_upsert_contact_type.py +5 -0
- auth0/management/types/flow_action_json_create_json.py +4 -2
- auth0/management/types/flow_action_json_create_json_action.py +5 -0
- auth0/management/types/flow_action_json_create_json_type.py +5 -0
- auth0/management/types/flow_action_json_parse_json.py +4 -2
- auth0/management/types/flow_action_json_parse_json_action.py +5 -0
- auth0/management/types/flow_action_json_parse_json_params.py +1 -1
- auth0/management/types/flow_action_json_parse_json_type.py +5 -0
- auth0/management/types/flow_action_json_serialize_json.py +4 -2
- auth0/management/types/flow_action_json_serialize_json_action.py +5 -0
- auth0/management/types/flow_action_json_serialize_json_type.py +5 -0
- auth0/management/types/flow_action_jwt_decode_jwt.py +4 -2
- auth0/management/types/flow_action_jwt_decode_jwt_action.py +5 -0
- auth0/management/types/flow_action_jwt_decode_jwt_type.py +5 -0
- auth0/management/types/flow_action_jwt_sign_jwt.py +4 -2
- auth0/management/types/flow_action_jwt_sign_jwt_action.py +5 -0
- auth0/management/types/flow_action_jwt_sign_jwt_type.py +5 -0
- auth0/management/types/flow_action_jwt_verify_jwt.py +4 -2
- auth0/management/types/flow_action_jwt_verify_jwt_action.py +5 -0
- auth0/management/types/flow_action_jwt_verify_jwt_type.py +5 -0
- auth0/management/types/flow_action_mailchimp_upsert_member.py +4 -2
- auth0/management/types/flow_action_mailchimp_upsert_member_action.py +5 -0
- auth0/management/types/flow_action_mailchimp_upsert_member_type.py +5 -0
- auth0/management/types/flow_action_mailjet_send_email.py +4 -2
- auth0/management/types/flow_action_mailjet_send_email_action.py +5 -0
- auth0/management/types/flow_action_mailjet_send_email_type.py +5 -0
- auth0/management/types/flow_action_otp_generate_code.py +4 -2
- auth0/management/types/flow_action_otp_generate_code_action.py +5 -0
- auth0/management/types/flow_action_otp_generate_code_type.py +5 -0
- auth0/management/types/flow_action_otp_verify_code.py +4 -2
- auth0/management/types/flow_action_otp_verify_code_action.py +5 -0
- auth0/management/types/flow_action_otp_verify_code_type.py +5 -0
- auth0/management/types/flow_action_pipedrive_add_deal.py +4 -2
- auth0/management/types/flow_action_pipedrive_add_deal_action.py +5 -0
- auth0/management/types/flow_action_pipedrive_add_deal_type.py +5 -0
- auth0/management/types/flow_action_pipedrive_add_organization.py +4 -2
- auth0/management/types/flow_action_pipedrive_add_organization_action.py +5 -0
- auth0/management/types/flow_action_pipedrive_add_organization_type.py +5 -0
- auth0/management/types/flow_action_pipedrive_add_person.py +4 -2
- auth0/management/types/flow_action_pipedrive_add_person_action.py +5 -0
- auth0/management/types/flow_action_pipedrive_add_person_type.py +5 -0
- auth0/management/types/flow_action_salesforce_create_lead.py +4 -2
- auth0/management/types/flow_action_salesforce_create_lead_action.py +5 -0
- auth0/management/types/flow_action_salesforce_create_lead_type.py +5 -0
- auth0/management/types/flow_action_salesforce_get_lead.py +4 -2
- auth0/management/types/flow_action_salesforce_get_lead_action.py +5 -0
- auth0/management/types/flow_action_salesforce_get_lead_type.py +5 -0
- auth0/management/types/flow_action_salesforce_search_leads.py +4 -2
- auth0/management/types/flow_action_salesforce_search_leads_action.py +5 -0
- auth0/management/types/flow_action_salesforce_search_leads_type.py +5 -0
- auth0/management/types/flow_action_salesforce_update_lead.py +4 -2
- auth0/management/types/flow_action_salesforce_update_lead_action.py +5 -0
- auth0/management/types/flow_action_salesforce_update_lead_type.py +5 -0
- auth0/management/types/flow_action_sendgrid_send_email.py +4 -2
- auth0/management/types/flow_action_sendgrid_send_email_action.py +5 -0
- auth0/management/types/flow_action_sendgrid_send_email_params.py +3 -1
- auth0/management/types/flow_action_sendgrid_send_email_type.py +5 -0
- auth0/management/types/flow_action_slack_post_message.py +4 -2
- auth0/management/types/flow_action_slack_post_message_action.py +5 -0
- auth0/management/types/flow_action_slack_post_message_type.py +5 -0
- auth0/management/types/flow_action_stripe_add_tax_id.py +4 -2
- auth0/management/types/flow_action_stripe_add_tax_id_action.py +5 -0
- auth0/management/types/flow_action_stripe_add_tax_id_type.py +5 -0
- auth0/management/types/flow_action_stripe_address.py +9 -3
- auth0/management/types/flow_action_stripe_create_customer.py +4 -2
- auth0/management/types/flow_action_stripe_create_customer_action.py +5 -0
- auth0/management/types/flow_action_stripe_create_customer_type.py +5 -0
- auth0/management/types/flow_action_stripe_create_portal_session.py +4 -2
- auth0/management/types/flow_action_stripe_create_portal_session_action.py +5 -0
- auth0/management/types/flow_action_stripe_create_portal_session_type.py +5 -0
- auth0/management/types/flow_action_stripe_delete_tax_id.py +4 -2
- auth0/management/types/flow_action_stripe_delete_tax_id_action.py +5 -0
- auth0/management/types/flow_action_stripe_delete_tax_id_type.py +5 -0
- auth0/management/types/flow_action_stripe_find_customers.py +4 -2
- auth0/management/types/flow_action_stripe_find_customers_action.py +5 -0
- auth0/management/types/flow_action_stripe_find_customers_type.py +5 -0
- auth0/management/types/flow_action_stripe_get_customer.py +4 -2
- auth0/management/types/flow_action_stripe_get_customer_action.py +5 -0
- auth0/management/types/flow_action_stripe_get_customer_type.py +5 -0
- auth0/management/types/flow_action_stripe_update_customer.py +4 -2
- auth0/management/types/flow_action_stripe_update_customer_action.py +5 -0
- auth0/management/types/flow_action_stripe_update_customer_type.py +5 -0
- auth0/management/types/flow_action_telegram_send_message.py +4 -2
- auth0/management/types/flow_action_telegram_send_message_action.py +5 -0
- auth0/management/types/flow_action_telegram_send_message_type.py +5 -0
- auth0/management/types/flow_action_twilio_make_call.py +4 -2
- auth0/management/types/flow_action_twilio_make_call_action.py +5 -0
- auth0/management/types/flow_action_twilio_make_call_params.py +1 -1
- auth0/management/types/flow_action_twilio_make_call_type.py +5 -0
- auth0/management/types/flow_action_twilio_send_sms.py +4 -2
- auth0/management/types/flow_action_twilio_send_sms_action.py +5 -0
- auth0/management/types/flow_action_twilio_send_sms_params.py +1 -1
- auth0/management/types/flow_action_twilio_send_sms_type.py +5 -0
- auth0/management/types/flow_action_whatsapp_send_message.py +4 -2
- auth0/management/types/flow_action_whatsapp_send_message_action.py +5 -0
- auth0/management/types/flow_action_whatsapp_send_message_type.py +5 -0
- auth0/management/types/flow_action_xml_parse_xml.py +4 -2
- auth0/management/types/flow_action_xml_parse_xml_action.py +5 -0
- auth0/management/types/flow_action_xml_parse_xml_type.py +5 -0
- auth0/management/types/flow_action_xml_serialize_xml.py +4 -2
- auth0/management/types/flow_action_xml_serialize_xml_action.py +5 -0
- auth0/management/types/flow_action_xml_serialize_xml_type.py +5 -0
- auth0/management/types/flow_action_zapier_trigger_webhook.py +4 -2
- auth0/management/types/flow_action_zapier_trigger_webhook_action.py +5 -0
- auth0/management/types/flow_action_zapier_trigger_webhook_type.py +5 -0
- auth0/management/types/flows_vault_connectio_setup_api_key.py +1 -1
- auth0/management/types/flows_vault_connectio_setup_api_key_with_base_url.py +1 -1
- auth0/management/types/flows_vault_connectio_setup_http_bearer.py +1 -1
- auth0/management/types/flows_vault_connectio_setup_jwt.py +1 -1
- auth0/management/types/flows_vault_connectio_setup_mailjet_api_key.py +1 -1
- auth0/management/types/flows_vault_connectio_setup_oauth_app.py +1 -1
- auth0/management/types/flows_vault_connectio_setup_secret_api_key.py +1 -1
- auth0/management/types/flows_vault_connectio_setup_stripe_key_pair.py +1 -1
- auth0/management/types/flows_vault_connectio_setup_token.py +1 -1
- auth0/management/types/flows_vault_connectio_setup_twilio_api_key.py +1 -1
- auth0/management/types/flows_vault_connectio_setup_type_api_key_enum.py +1 -1
- auth0/management/types/flows_vault_connectio_setup_type_bearer_enum.py +1 -1
- auth0/management/types/flows_vault_connectio_setup_type_jwt_enum.py +1 -1
- auth0/management/types/flows_vault_connectio_setup_type_key_pair_enum.py +1 -1
- auth0/management/types/flows_vault_connectio_setup_type_oauth_app_enum.py +1 -1
- auth0/management/types/flows_vault_connectio_setup_type_oauth_code_enum.py +1 -1
- auth0/management/types/flows_vault_connectio_setup_type_oauth_jwt_enum.py +1 -1
- auth0/management/types/flows_vault_connectio_setup_type_token_enum.py +1 -1
- auth0/management/types/flows_vault_connectio_setup_type_webhook_enum.py +1 -1
- auth0/management/types/flows_vault_connectio_setup_webhook.py +1 -1
- auth0/management/types/flows_vault_connection_app_id_activecampaign_enum.py +1 -1
- auth0/management/types/flows_vault_connection_app_id_airtable_enum.py +1 -1
- auth0/management/types/flows_vault_connection_app_id_auth_0_enum.py +1 -1
- auth0/management/types/flows_vault_connection_app_id_bigquery_enum.py +1 -1
- auth0/management/types/flows_vault_connection_app_id_clearbit_enum.py +1 -1
- auth0/management/types/flows_vault_connection_app_id_docusign_enum.py +1 -1
- auth0/management/types/flows_vault_connection_app_id_google_sheets_enum.py +1 -1
- auth0/management/types/flows_vault_connection_app_id_http_enum.py +1 -1
- auth0/management/types/flows_vault_connection_app_id_hubspot_enum.py +1 -1
- auth0/management/types/flows_vault_connection_app_id_jwt_enum.py +1 -1
- auth0/management/types/flows_vault_connection_app_id_mailchimp_enum.py +1 -1
- auth0/management/types/flows_vault_connection_app_id_mailjet_enum.py +1 -1
- auth0/management/types/flows_vault_connection_app_id_pipedrive_enum.py +1 -1
- auth0/management/types/flows_vault_connection_app_id_salesforce_enum.py +1 -1
- auth0/management/types/flows_vault_connection_app_id_sendgrid_enum.py +1 -1
- auth0/management/types/flows_vault_connection_app_id_slack_enum.py +1 -1
- auth0/management/types/flows_vault_connection_app_id_stripe_enum.py +1 -1
- auth0/management/types/flows_vault_connection_app_id_telegram_enum.py +1 -1
- auth0/management/types/flows_vault_connection_app_id_twilio_enum.py +1 -1
- auth0/management/types/flows_vault_connection_app_id_whatsapp_enum.py +1 -1
- auth0/management/types/flows_vault_connection_app_id_zapier_enum.py +1 -1
- auth0/management/types/flows_vault_connection_http_api_key_setup.py +28 -0
- auth0/management/types/flows_vault_connection_http_api_key_setup_in_enum.py +5 -0
- auth0/management/types/flows_vault_connection_http_basic_auth_setup.py +22 -0
- auth0/management/types/flows_vault_connection_http_oauth_client_credentials_setup.py +28 -0
- auth0/management/types/flows_vault_connection_setup_type_api_key_enum.py +5 -0
- auth0/management/types/flows_vault_connection_setup_type_basic_auth_enum.py +5 -0
- auth0/management/types/flows_vault_connection_setup_type_oauth_client_credentials_enum.py +7 -0
- auth0/management/types/form_block_divider.py +2 -2
- auth0/management/types/form_block_html.py +2 -2
- auth0/management/types/form_block_image.py +2 -2
- auth0/management/types/form_block_jump_button.py +2 -2
- auth0/management/types/form_block_next_button.py +2 -2
- auth0/management/types/form_block_previous_button.py +2 -2
- auth0/management/types/form_block_resend_button.py +2 -2
- auth0/management/types/form_block_rich_text.py +2 -2
- auth0/management/types/form_block_type_divider_const.py +1 -1
- auth0/management/types/form_block_type_html_const.py +1 -1
- auth0/management/types/form_block_type_image_const.py +1 -1
- auth0/management/types/form_block_type_jump_button_const.py +1 -1
- auth0/management/types/form_block_type_next_button_const.py +1 -1
- auth0/management/types/form_block_type_previous_button_const.py +1 -1
- auth0/management/types/form_block_type_resend_button_const.py +1 -1
- auth0/management/types/form_block_type_rich_text_const.py +1 -1
- auth0/management/types/form_component_category_block_const.py +1 -1
- auth0/management/types/form_component_category_field_const.py +1 -1
- auth0/management/types/form_component_category_widget_const.py +1 -1
- auth0/management/types/form_ending_node_id.py +1 -1
- auth0/management/types/form_field_boolean.py +2 -2
- auth0/management/types/form_field_cards.py +2 -2
- auth0/management/types/form_field_choice.py +2 -2
- auth0/management/types/form_field_custom.py +2 -2
- auth0/management/types/form_field_custom_config.py +3 -1
- auth0/management/types/form_field_date.py +2 -2
- auth0/management/types/form_field_dropdown.py +2 -2
- auth0/management/types/form_field_email.py +2 -2
- auth0/management/types/form_field_file.py +2 -2
- auth0/management/types/form_field_file_config.py +6 -2
- auth0/management/types/form_field_legal.py +2 -2
- auth0/management/types/form_field_number.py +2 -2
- auth0/management/types/form_field_password.py +2 -2
- auth0/management/types/form_field_payment.py +2 -2
- auth0/management/types/form_field_payment_config_charge_one_off.py +1 -1
- auth0/management/types/form_field_payment_config_charge_subscription.py +1 -1
- auth0/management/types/form_field_payment_config_charge_type_one_off_const.py +1 -1
- auth0/management/types/form_field_payment_config_charge_type_subscription_const.py +1 -1
- auth0/management/types/form_field_payment_config_provider_enum.py +1 -1
- auth0/management/types/form_field_social.py +2 -2
- auth0/management/types/form_field_tel.py +2 -2
- auth0/management/types/form_field_text.py +2 -2
- auth0/management/types/form_field_type_boolean_const.py +1 -1
- auth0/management/types/form_field_type_cards_const.py +1 -1
- auth0/management/types/form_field_type_choice_const.py +1 -1
- auth0/management/types/form_field_type_custom_const.py +1 -1
- auth0/management/types/form_field_type_date_const.py +1 -1
- auth0/management/types/form_field_type_dropdown_const.py +1 -1
- auth0/management/types/form_field_type_email_const.py +1 -1
- auth0/management/types/form_field_type_file_const.py +1 -1
- auth0/management/types/form_field_type_legal_const.py +1 -1
- auth0/management/types/form_field_type_number_const.py +1 -1
- auth0/management/types/form_field_type_password_const.py +1 -1
- auth0/management/types/form_field_type_payment_const.py +1 -1
- auth0/management/types/form_field_type_social_const.py +1 -1
- auth0/management/types/form_field_type_tel_const.py +1 -1
- auth0/management/types/form_field_type_text_const.py +1 -1
- auth0/management/types/form_field_type_url_const.py +1 -1
- auth0/management/types/form_field_url.py +2 -2
- auth0/management/types/form_flow.py +1 -1
- auth0/management/types/form_node_type_flow_const.py +1 -1
- auth0/management/types/form_node_type_router_const.py +1 -1
- auth0/management/types/form_node_type_step_const.py +1 -1
- auth0/management/types/form_router.py +1 -1
- auth0/management/types/form_step.py +1 -1
- auth0/management/types/form_widget_auth_0_verifiable_credentials.py +2 -2
- auth0/management/types/form_widget_g_maps_address.py +2 -2
- auth0/management/types/form_widget_recaptcha.py +2 -2
- auth0/management/types/form_widget_type_auth_0_verifiable_credentials_const.py +1 -1
- auth0/management/types/form_widget_type_g_maps_address_const.py +1 -1
- auth0/management/types/form_widget_type_recaptcha_const.py +1 -1
- auth0/management/types/get_action_execution_response_content.py +1 -1
- auth0/management/types/get_action_module_actions_response_content.py +38 -0
- auth0/management/types/get_action_module_response_content.py +73 -0
- auth0/management/types/get_action_module_version_response_content.py +55 -0
- auth0/management/types/get_action_module_versions_response_content.py +38 -0
- auth0/management/types/get_action_modules_response_content.py +38 -0
- auth0/management/types/get_action_response_content.py +13 -7
- auth0/management/types/get_action_version_response_content.py +12 -6
- auth0/management/types/get_acul_response_content.py +5 -4
- auth0/management/types/get_attack_protection_captcha_response_content.py +3 -1
- auth0/management/types/get_branding_default_theme_response_content.py +6 -10
- auth0/management/types/get_branding_theme_response_content.py +6 -10
- auth0/management/types/get_breached_password_detection_settings_response_content.py +1 -1
- auth0/management/types/get_brute_force_settings_response_content.py +5 -12
- auth0/management/types/get_client_credential_response_content.py +8 -10
- auth0/management/types/get_client_grant_response_content.py +61 -0
- auth0/management/types/get_client_response_content.py +24 -25
- auth0/management/types/get_connection_response_content.py +3 -3
- auth0/management/types/get_custom_domain_response_content.py +14 -7
- auth0/management/types/{set_guardian_factors_provider_push_notification_fcm_request_content.py → get_default_canonical_domain_response_content.py} +5 -2
- auth0/management/types/get_default_custom_domain_response_content.py +67 -0
- auth0/management/types/get_default_domain_response_content.py +10 -0
- auth0/management/types/get_directory_provisioning_response_content.py +2 -0
- auth0/management/types/get_email_provider_response_content.py +2 -2
- auth0/management/types/get_email_template_response_content.py +25 -27
- auth0/management/types/get_encryption_key_response_content.py +1 -1
- auth0/management/types/get_event_stream_delivery_history_response_content.py +1 -1
- auth0/management/types/get_flow_execution_request_parameters_hydrate_enum.py +5 -0
- auth0/management/types/get_group_members_response_content.py +24 -0
- auth0/management/types/get_group_response_content.py +57 -0
- auth0/management/types/get_guardian_enrollment_response_content.py +4 -4
- auth0/management/types/get_guardian_factor_phone_templates_response_content.py +2 -6
- auth0/management/types/get_guardian_factor_sms_templates_response_content.py +2 -6
- auth0/management/types/get_guardian_factors_provider_phone_twilio_response_content.py +6 -10
- auth0/management/types/get_guardian_factors_provider_sms_twilio_response_content.py +6 -10
- auth0/management/types/get_guardian_factors_provider_sns_response_content.py +4 -4
- auth0/management/types/get_hook_response_content.py +9 -13
- auth0/management/types/get_job_generic_error_response_content.py +4 -4
- auth0/management/types/get_job_response_content.py +7 -4
- auth0/management/types/get_job_summary.py +41 -0
- auth0/management/types/get_log_response_content.py +15 -14
- auth0/management/types/get_organization_by_name_response_content.py +2 -2
- auth0/management/types/get_organization_discovery_domain_by_name_response_content.py +44 -0
- auth0/management/types/get_organization_discovery_domain_response_content.py +5 -0
- auth0/management/types/get_organization_invitation_response_content.py +4 -6
- auth0/management/types/get_organization_response_content.py +2 -2
- auth0/management/types/get_phone_template_response_content.py +1 -1
- auth0/management/types/get_refresh_token_response_content.py +3 -1
- auth0/management/types/get_rule_response_content.py +6 -8
- auth0/management/types/get_scim_configuration_response_content.py +12 -11
- auth0/management/types/get_self_service_profile_response_content.py +2 -2
- auth0/management/types/get_signing_keys_response_content.py +10 -14
- auth0/management/types/get_tenant_settings_response_content.py +25 -16
- auth0/management/types/get_token_exchange_profile_response_content.py +1 -1
- auth0/management/types/get_user_groups_paginated_response_content.py +28 -0
- auth0/management/types/get_user_response_content.py +6 -6
- auth0/management/types/get_verifiable_credential_template_response_content.py +3 -3
- auth0/management/types/group.py +1 -7
- auth0/management/types/group_member.py +41 -0
- auth0/management/types/group_member_type_enum.py +5 -0
- auth0/management/types/group_type_enum.py +5 -0
- auth0/management/types/guardian_factor.py +2 -2
- auth0/management/types/hook.py +9 -13
- auth0/management/types/identity.py +1 -1
- auth0/management/types/identity_provider_only_auth_0_enum.py +1 -1
- auth0/management/types/import_encryption_key_response_content.py +1 -1
- auth0/management/types/integration.py +7 -7
- auth0/management/types/integration_sem_ver.py +2 -2
- auth0/management/types/list_action_bindings_paginated_response_content.py +3 -3
- auth0/management/types/list_action_versions_paginated_response_content.py +3 -3
- auth0/management/types/list_actions_paginated_response_content.py +3 -3
- auth0/management/types/list_aculs_offset_paginated_response_content.py +2 -2
- auth0/management/types/{acul_response_content.py → list_aculs_response_content_item.py} +20 -4
- auth0/management/types/list_directory_provisionings_response_content.py +28 -0
- auth0/management/types/list_event_streams_response_content.py +30 -0
- auth0/management/types/list_flows_request_parameters_hydrate_enum.py +5 -0
- auth0/management/types/list_groups_paginated_response_content.py +28 -0
- auth0/management/types/list_scim_configurations_response_content.py +28 -0
- auth0/management/types/log.py +15 -14
- auth0/management/types/log_location_info.py +10 -9
- auth0/management/types/log_security_context.py +10 -9
- auth0/management/types/log_stream_datadog_enum.py +1 -1
- auth0/management/types/log_stream_datadog_response_schema.py +5 -7
- auth0/management/types/log_stream_datadog_sink.py +6 -6
- auth0/management/types/log_stream_event_bridge_enum.py +1 -1
- auth0/management/types/log_stream_event_bridge_response_schema.py +5 -7
- auth0/management/types/log_stream_event_bridge_sink.py +10 -11
- auth0/management/types/log_stream_event_grid_enum.py +1 -1
- auth0/management/types/log_stream_event_grid_response_schema.py +5 -7
- auth0/management/types/log_stream_event_grid_sink.py +18 -19
- auth0/management/types/log_stream_filter_type_enum.py +1 -1
- auth0/management/types/log_stream_http_enum.py +1 -1
- auth0/management/types/log_stream_http_response_schema.py +5 -7
- auth0/management/types/log_stream_http_sink.py +20 -25
- auth0/management/types/log_stream_mixpanel_enum.py +1 -1
- auth0/management/types/log_stream_mixpanel_response_schema.py +5 -7
- auth0/management/types/log_stream_mixpanel_sink.py +16 -17
- auth0/management/types/log_stream_mixpanel_sink_patch.py +16 -17
- auth0/management/types/log_stream_pii_algorithm_enum.py +1 -1
- auth0/management/types/log_stream_segment_enum.py +1 -1
- auth0/management/types/log_stream_segment_response_schema.py +5 -7
- auth0/management/types/log_stream_segment_sink.py +5 -6
- auth0/management/types/log_stream_segment_sink_write_key.py +5 -4
- auth0/management/types/log_stream_splunk_enum.py +1 -1
- auth0/management/types/log_stream_splunk_response_schema.py +5 -7
- auth0/management/types/log_stream_splunk_sink.py +16 -19
- auth0/management/types/log_stream_sumo_enum.py +1 -1
- auth0/management/types/log_stream_sumo_response_schema.py +5 -7
- auth0/management/types/log_stream_sumo_sink.py +5 -4
- auth0/management/types/mdl_presentation_request.py +3 -1
- auth0/management/types/mdl_presentation_request_properties.py +3 -1
- auth0/management/types/native_social_login_apple.py +1 -1
- auth0/management/types/native_social_login_facebook.py +1 -1
- auth0/management/types/native_social_login_google.py +1 -1
- auth0/management/types/network_acl_match.py +15 -4
- auth0/management/types/oauth_scope.py +114 -145
- auth0/management/types/organization.py +2 -2
- auth0/management/types/organization_discovery_domain.py +5 -0
- auth0/management/types/organization_invitation.py +4 -6
- auth0/management/types/organization_invitation_invitee.py +1 -1
- auth0/management/types/organization_invitation_inviter.py +1 -1
- auth0/management/types/organization_member.py +1 -1
- auth0/management/types/partial_groups_enum.py +1 -0
- auth0/management/types/partial_phone_template_content.py +7 -5
- auth0/management/types/patch_client_credential_response_content.py +8 -10
- auth0/management/types/phone_provider_channel_enum.py +1 -1
- auth0/management/types/phone_template.py +1 -1
- auth0/management/types/phone_template_content.py +7 -5
- auth0/management/types/post_client_credential_response_content.py +8 -10
- auth0/management/types/post_connection_keys_alg_enum.py +7 -0
- auth0/management/types/post_connection_keys_request_content.py +20 -0
- auth0/management/types/post_connections_keys_response_content.py +7 -0
- auth0/management/types/post_connections_keys_response_content_item.py +66 -0
- auth0/management/types/prompt_language_enum.py +1 -0
- auth0/management/types/public_key_credential.py +9 -4
- auth0/management/types/public_key_credential_type_enum.py +1 -1
- auth0/management/types/refresh_token_metadata.py +5 -0
- auth0/management/types/refresh_token_response_content.py +3 -1
- auth0/management/types/reset_phone_template_response_content.py +1 -1
- auth0/management/types/resource_server_consent_policy_enum.py +1 -1
- auth0/management/types/resource_server_proof_of_possession.py +3 -0
- auth0/management/types/resource_server_proof_of_possession_required_for_enum.py +7 -0
- auth0/management/types/resource_server_subject_type_authorization.py +1 -1
- auth0/management/types/resource_server_token_encryption.py +1 -1
- auth0/management/types/resource_server_token_encryption_format_enum.py +1 -1
- auth0/management/types/resource_server_token_encryption_key.py +1 -1
- auth0/management/types/revoked_signing_keys_response_content.py +2 -4
- auth0/management/types/role_user.py +1 -1
- auth0/management/types/rollback_action_module_response_content.py +73 -0
- auth0/management/types/rotate_client_secret_response_content.py +24 -25
- auth0/management/types/rotate_connection_keys_signing_alg_enum.py +3 -1
- auth0/management/types/rotate_connections_keys_response_content.py +4 -8
- auth0/management/types/rotate_signing_keys_response_content.py +2 -4
- auth0/management/types/rule.py +6 -8
- auth0/management/types/rules_config.py +1 -1
- auth0/management/types/scim_configuration.py +59 -0
- auth0/management/types/scim_mapping_item.py +5 -7
- auth0/management/types/screen_group_name_enum.py +1 -1
- auth0/management/types/self_service_profile.py +2 -2
- auth0/management/types/self_service_profile_allowed_strategy_enum.py +13 -1
- auth0/management/types/self_service_profile_custom_text_language_enum.py +1 -1
- auth0/management/types/self_service_profile_custom_text_page_enum.py +1 -1
- auth0/management/types/self_service_profile_sso_ticket_connection_config.py +1 -1
- auth0/management/types/self_service_profile_sso_ticket_provisioning_scope_enum.py +13 -1
- auth0/management/types/session_authentication_signal.py +1 -5
- auth0/management/types/set_email_template_response_content.py +25 -27
- auth0/management/types/set_guardian_factor_phone_templates_response_content.py +2 -6
- auth0/management/types/set_guardian_factor_sms_templates_response_content.py +2 -6
- auth0/management/types/set_guardian_factors_provider_phone_twilio_response_content.py +6 -10
- auth0/management/types/set_guardian_factors_provider_push_notification_sns_response_content.py +4 -4
- auth0/management/types/set_guardian_factors_provider_sms_twilio_response_content.py +6 -10
- auth0/management/types/set_rules_config_response_content.py +2 -2
- auth0/management/types/set_user_authentication_method_response_content.py +5 -1
- auth0/management/types/signing_keys.py +10 -14
- auth0/management/types/supported_locales.py +1 -0
- auth0/management/types/suspicious_ip_throttling_pre_login_stage.py +2 -2
- auth0/management/types/suspicious_ip_throttling_pre_user_registration_stage.py +2 -2
- auth0/management/types/suspicious_ip_throttling_stage.py +6 -2
- auth0/management/types/synchronize_groups_ea_enum.py +5 -0
- auth0/management/types/synchronize_groups_enum.py +3 -0
- auth0/management/types/tenant_oidc_logout_settings.py +1 -1
- auth0/management/types/tenant_settings_device_flow.py +1 -1
- auth0/management/types/tenant_settings_error_page.py +3 -3
- auth0/management/types/tenant_settings_flags.py +29 -26
- auth0/management/types/tenant_settings_guardian_page.py +2 -2
- auth0/management/types/tenant_settings_mtls.py +1 -1
- auth0/management/types/tenant_settings_password_page.py +2 -2
- auth0/management/types/tenant_settings_sessions.py +1 -1
- auth0/management/{tenants/settings/types/update_tenant_settings_request_content_enabled_locales_item.py → types/tenant_settings_supported_locales_enum.py} +2 -1
- auth0/management/types/token_exchange_profile_response_content.py +1 -1
- auth0/management/types/token_exchange_profile_type_enum.py +1 -1
- auth0/management/types/update_action_module_response_content.py +73 -0
- auth0/management/types/update_action_response_content.py +13 -7
- auth0/management/types/update_acul_response_content.py +4 -3
- auth0/management/types/update_attack_protection_captcha_response_content.py +3 -1
- auth0/management/types/update_branding_theme_response_content.py +6 -10
- auth0/management/types/update_breached_password_detection_settings_response_content.py +1 -1
- auth0/management/types/update_brute_force_settings_response_content.py +5 -14
- auth0/management/types/update_client_grant_response_content.py +6 -1
- auth0/management/types/update_client_response_content.py +24 -25
- auth0/management/types/update_connection_options.py +14 -7
- auth0/management/types/{create_connection_request_content_renren.py → update_connection_request_content_ad.py} +5 -6
- auth0/management/types/update_connection_request_content_adfs.py +27 -0
- auth0/management/types/{create_connection_request_content_the_city.py → update_connection_request_content_amazon.py} +5 -6
- auth0/management/types/update_connection_request_content_aol.py +25 -0
- auth0/management/types/update_connection_request_content_apple.py +25 -0
- auth0/management/types/{connection_response_content_the_city.py → update_connection_request_content_auth_0.py} +7 -6
- auth0/management/types/{connection_response_content_renren.py → update_connection_request_content_auth_0_oidc.py} +5 -6
- auth0/management/types/update_connection_request_content_azure_ad.py +27 -0
- auth0/management/types/update_connection_request_content_baidu.py +25 -0
- auth0/management/types/update_connection_request_content_bitbucket.py +25 -0
- auth0/management/types/update_connection_request_content_bitly.py +25 -0
- auth0/management/types/update_connection_request_content_box.py +26 -0
- auth0/management/types/update_connection_request_content_custom.py +25 -0
- auth0/management/types/update_connection_request_content_daccount.py +25 -0
- auth0/management/types/update_connection_request_content_dropbox.py +25 -0
- auth0/management/types/update_connection_request_content_dwolla.py +25 -0
- auth0/management/types/update_connection_request_content_email.py +25 -0
- auth0/management/types/update_connection_request_content_evernote.py +25 -0
- auth0/management/types/update_connection_request_content_evernote_sandbox.py +25 -0
- auth0/management/types/update_connection_request_content_exact.py +25 -0
- auth0/management/types/update_connection_request_content_facebook.py +25 -0
- auth0/management/types/update_connection_request_content_fitbit.py +25 -0
- auth0/management/types/update_connection_request_content_flickr.py +25 -0
- auth0/management/types/update_connection_request_content_git_hub.py +26 -0
- auth0/management/types/update_connection_request_content_google_apps.py +27 -0
- auth0/management/types/update_connection_request_content_google_o_auth_2.py +26 -0
- auth0/management/types/update_connection_request_content_instagram.py +25 -0
- auth0/management/types/update_connection_request_content_ip.py +27 -0
- auth0/management/types/update_connection_request_content_line.py +25 -0
- auth0/management/types/update_connection_request_content_linkedin.py +25 -0
- auth0/management/types/update_connection_request_content_o_auth_1.py +25 -0
- auth0/management/types/update_connection_request_content_o_auth_2.py +26 -0
- auth0/management/types/{connection_response_content_the_city_sandbox.py → update_connection_request_content_office_365.py} +7 -6
- auth0/management/types/update_connection_request_content_oidc.py +31 -0
- auth0/management/types/update_connection_request_content_okta.py +27 -0
- auth0/management/types/update_connection_request_content_paypal.py +25 -0
- auth0/management/types/{create_connection_request_content_miicard.py → update_connection_request_content_paypal_sandbox.py} +5 -6
- auth0/management/types/update_connection_request_content_ping_federate.py +27 -0
- auth0/management/types/update_connection_request_content_planning_center.py +25 -0
- auth0/management/types/{connection_response_content_miicard.py → update_connection_request_content_salesforce.py} +5 -6
- auth0/management/types/update_connection_request_content_salesforce_community.py +25 -0
- auth0/management/types/update_connection_request_content_salesforce_sandbox.py +25 -0
- auth0/management/types/update_connection_request_content_saml.py +27 -0
- auth0/management/types/update_connection_request_content_sharepoint.py +27 -0
- auth0/management/types/update_connection_request_content_shop.py +25 -0
- auth0/management/types/update_connection_request_content_shopify.py +25 -0
- auth0/management/types/update_connection_request_content_sms.py +25 -0
- auth0/management/types/update_connection_request_content_soundcloud.py +25 -0
- auth0/management/types/update_connection_request_content_thirty_seven_signals.py +25 -0
- auth0/management/types/update_connection_request_content_twitter.py +25 -0
- auth0/management/types/update_connection_request_content_untappd.py +25 -0
- auth0/management/types/update_connection_request_content_vkontakte.py +25 -0
- auth0/management/types/update_connection_request_content_weibo.py +25 -0
- auth0/management/types/update_connection_request_content_windows_live.py +26 -0
- auth0/management/types/update_connection_request_content_wordpress.py +25 -0
- auth0/management/types/update_connection_request_content_yahoo.py +25 -0
- auth0/management/types/update_connection_request_content_yammer.py +25 -0
- auth0/management/types/update_connection_request_content_yandex.py +25 -0
- auth0/management/types/update_connection_response_content.py +3 -3
- auth0/management/types/update_custom_domain_response_content.py +13 -4
- auth0/management/types/{set_guardian_factors_provider_push_notification_fcmv_1_request_content.py → update_default_canonical_domain_response_content.py} +5 -2
- auth0/management/types/update_default_custom_domain_response_content.py +67 -0
- auth0/management/types/update_default_domain_response_content.py +10 -0
- auth0/management/types/update_directory_provisioning_request_content.py +3 -0
- auth0/management/types/update_directory_provisioning_response_content.py +2 -0
- auth0/management/types/update_email_provider_response_content.py +2 -2
- auth0/management/types/update_email_template_response_content.py +25 -27
- auth0/management/types/update_enabled_client_connections_request_content_item.py +1 -1
- auth0/management/types/update_flows_vault_connection_setup.py +8 -0
- auth0/management/types/{set_guardian_factors_provider_push_notification_apns_request_content.py → update_guardian_factors_provider_push_notification_apns_response_content.py} +1 -4
- auth0/management/types/update_guardian_factors_provider_push_notification_fcm_response_content.py +5 -0
- auth0/management/types/update_guardian_factors_provider_push_notification_fcmv_1_response_content.py +5 -0
- auth0/management/types/update_guardian_factors_provider_push_notification_sns_response_content.py +4 -4
- auth0/management/types/update_hook_response_content.py +9 -13
- auth0/management/types/update_organization_discovery_domain_response_content.py +5 -0
- auth0/management/types/update_organization_response_content.py +2 -2
- auth0/management/types/update_phone_template_response_content.py +1 -1
- auth0/management/types/update_refresh_token_response_content.py +55 -0
- auth0/management/types/update_rule_response_content.py +6 -8
- auth0/management/types/update_scim_configuration_response_content.py +12 -11
- auth0/management/types/update_self_service_profile_response_content.py +2 -2
- auth0/management/types/update_tenant_settings_response_content.py +25 -16
- auth0/management/types/update_user_response_content.py +6 -6
- auth0/management/types/update_verifiable_credential_template_response_content.py +3 -3
- auth0/management/types/user_attribute_profile_strategy_overrides.py +3 -1
- auth0/management/types/user_attribute_profile_strategy_overrides_mapping.py +5 -1
- auth0/management/types/user_attribute_profile_strategy_overrides_user_id.py +3 -1
- auth0/management/types/user_attribute_profile_user_attribute_additional_properties.py +8 -4
- auth0/management/types/user_attribute_profile_user_id_oidc_mapping_enum.py +1 -1
- auth0/management/types/user_block_identifier.py +2 -2
- auth0/management/types/user_grant.py +5 -7
- auth0/management/types/user_identity.py +15 -11
- auth0/management/types/user_identity_schema.py +10 -10
- auth0/management/types/user_profile_data.py +1 -1
- auth0/management/types/user_response_schema.py +6 -6
- auth0/management/types/verifiable_credential_template_response.py +3 -3
- auth0/management/types/verify_custom_domain_response_content.py +6 -8
- auth0/management/types/verify_email_ticket_response_content.py +1 -3
- auth0/management/types/x_509_certificate_credential.py +29 -0
- auth0/management/types/x_509_certificate_credential_type_enum.py +5 -0
- auth0/management/user_grants/raw_client.py +2 -2
- auth0/management/users/__init__.py +3 -0
- auth0/management/users/authentication_methods/client.py +2 -0
- auth0/management/users/authentication_methods/raw_client.py +4 -2
- auth0/management/users/client.py +89 -74
- auth0/management/users/groups/__init__.py +4 -0
- auth0/management/users/groups/client.py +175 -0
- auth0/management/users/groups/raw_client.py +268 -0
- auth0/management/users/identities/client.py +4 -2
- auth0/management/users/identities/raw_client.py +4 -2
- auth0/management/users/logs/raw_client.py +2 -2
- auth0/management/users/organizations/raw_client.py +2 -2
- auth0/management/users/permissions/raw_client.py +2 -2
- auth0/management/users/raw_client.py +72 -76
- auth0/management/users/risk_assessments/client.py +2 -2
- auth0/management/users/roles/raw_client.py +2 -2
- {auth0_python-5.0.0b0.dist-info → auth0_python-5.2.0.dist-info}/METADATA +9 -15
- {auth0_python-5.0.0b0.dist-info → auth0_python-5.2.0.dist-info}/RECORD +1439 -912
- auth0/management/attack_protection/brute_force_protection/types/update_brute_force_settings_request_content_mode.py +0 -7
- auth0/management/attack_protection/brute_force_protection/types/update_brute_force_settings_request_content_shields_item.py +0 -7
- auth0/management/core/custom_pagination.py +0 -152
- auth0/management/types/connection_options_evernote_sandbox.py +0 -5
- auth0/management/types/connection_options_miicard.py +0 -5
- auth0/management/types/connection_options_paypal_sandbox.py +0 -5
- auth0/management/types/connection_options_renren.py +0 -5
- auth0/management/types/connection_options_salesforce_common.py +0 -5
- auth0/management/types/connection_options_salesforce_sandbox.py +0 -5
- auth0/management/types/connection_options_the_city.py +0 -5
- auth0/management/types/connection_options_the_city_sandbox.py +0 -5
- auth0/management/types/connection_upstream_params_azure_ad.py +0 -7
- auth0/management/types/create_connection_request_content_the_city_sandbox.py +0 -26
- auth0/management/types/get_brute_force_settings_response_content_shields_item.py +0 -5
- auth0/management/types/update_brute_force_settings_response_content_mode.py +0 -7
- auth0/management/types/update_brute_force_settings_response_content_shields_item.py +0 -7
- {auth0_python-5.0.0b0.dist-info → auth0_python-5.2.0.dist-info}/WHEEL +0 -0
- {auth0_python-5.0.0b0.dist-info → auth0_python-5.2.0.dist-info}/licenses/LICENSE +0 -0
auth0/authentication/base.py
CHANGED
|
@@ -2,11 +2,10 @@ from __future__ import annotations
|
|
|
2
2
|
|
|
3
3
|
from typing import Any
|
|
4
4
|
|
|
5
|
+
from .client_authentication import add_client_authentication
|
|
5
6
|
from .rest import RestClient, RestClientOptions
|
|
6
7
|
from .types import RequestData, TimeoutType
|
|
7
8
|
|
|
8
|
-
from .client_authentication import add_client_authentication
|
|
9
|
-
|
|
10
9
|
UNKNOWN_ERROR = "a0.sdk.internal.unknown"
|
|
11
10
|
|
|
12
11
|
|
|
@@ -22,6 +21,9 @@ class AuthenticationBase:
|
|
|
22
21
|
telemetry (bool, optional): Enable or disable telemetry (defaults to True)
|
|
23
22
|
timeout (float or tuple, optional): Change the requests connect and read timeout. Pass a tuple to specify both values separately or a float to set both to it. (defaults to 5.0 for both)
|
|
24
23
|
protocol (str, optional): Useful for testing. (defaults to 'https')
|
|
24
|
+
client_info (dict, optional): Custom telemetry data for the Auth0-Client header.
|
|
25
|
+
When provided, overrides the default SDK telemetry. Useful for wrapper
|
|
26
|
+
SDKs that need to identify themselves. Ignored when telemetry is False.
|
|
25
27
|
"""
|
|
26
28
|
|
|
27
29
|
def __init__(
|
|
@@ -34,6 +36,7 @@ class AuthenticationBase:
|
|
|
34
36
|
telemetry: bool = True,
|
|
35
37
|
timeout: TimeoutType = 5.0,
|
|
36
38
|
protocol: str = "https",
|
|
39
|
+
client_info: dict[str, Any] | None = None,
|
|
37
40
|
) -> None:
|
|
38
41
|
self.domain = domain
|
|
39
42
|
self.client_id = client_id
|
|
@@ -43,7 +46,9 @@ class AuthenticationBase:
|
|
|
43
46
|
self.protocol = protocol
|
|
44
47
|
self.client = RestClient(
|
|
45
48
|
None,
|
|
46
|
-
options=RestClientOptions(
|
|
49
|
+
options=RestClientOptions(
|
|
50
|
+
telemetry=telemetry, timeout=timeout, retries=0, client_info=client_info
|
|
51
|
+
),
|
|
47
52
|
)
|
|
48
53
|
|
|
49
54
|
def _add_client_authentication(self, payload: dict[str, Any]) -> dict[str, Any]:
|
auth0/authentication/rest.py
CHANGED
|
@@ -10,7 +10,6 @@ from typing import TYPE_CHECKING, Any, Mapping
|
|
|
10
10
|
from urllib.parse import urlencode
|
|
11
11
|
|
|
12
12
|
import requests
|
|
13
|
-
|
|
14
13
|
from .exceptions import Auth0Error, RateLimitError
|
|
15
14
|
from .types import RequestData, TimeoutType
|
|
16
15
|
|
|
@@ -38,6 +37,13 @@ class RestClientOptions:
|
|
|
38
37
|
times using an exponential backoff strategy, before
|
|
39
38
|
raising a RateLimitError exception. 10 retries max.
|
|
40
39
|
(defaults to 3)
|
|
40
|
+
client_info (dict, optional): Custom telemetry data to send
|
|
41
|
+
in the Auth0-Client header instead of the default SDK
|
|
42
|
+
info. Useful for wrapper SDKs that need to identify
|
|
43
|
+
themselves. When provided, this dict is JSON-encoded
|
|
44
|
+
and base64-encoded as the header value. Ignored when
|
|
45
|
+
telemetry is False.
|
|
46
|
+
(defaults to None)
|
|
41
47
|
"""
|
|
42
48
|
|
|
43
49
|
def __init__(
|
|
@@ -45,10 +51,12 @@ class RestClientOptions:
|
|
|
45
51
|
telemetry: bool = True,
|
|
46
52
|
timeout: TimeoutType = 5.0,
|
|
47
53
|
retries: int = 3,
|
|
54
|
+
client_info: dict[str, Any] | None = None,
|
|
48
55
|
) -> None:
|
|
49
56
|
self.telemetry = telemetry
|
|
50
57
|
self.timeout = timeout
|
|
51
58
|
self.retries = retries
|
|
59
|
+
self.client_info = client_info
|
|
52
60
|
|
|
53
61
|
|
|
54
62
|
class RestClient:
|
|
@@ -94,17 +102,20 @@ class RestClient:
|
|
|
94
102
|
|
|
95
103
|
if options.telemetry:
|
|
96
104
|
py_version = platform.python_version()
|
|
97
|
-
version = sys.modules["auth0"].__version__
|
|
98
105
|
|
|
99
|
-
|
|
100
|
-
|
|
106
|
+
if options.client_info is not None:
|
|
107
|
+
auth0_client_dict = options.client_info
|
|
108
|
+
else:
|
|
109
|
+
version = sys.modules["auth0"].__version__
|
|
110
|
+
auth0_client_dict = {
|
|
101
111
|
"name": "auth0-python",
|
|
102
112
|
"version": version,
|
|
103
113
|
"env": {
|
|
104
114
|
"python": py_version,
|
|
105
115
|
},
|
|
106
116
|
}
|
|
107
|
-
|
|
117
|
+
|
|
118
|
+
auth0_client = dumps(auth0_client_dict).encode("utf-8")
|
|
108
119
|
|
|
109
120
|
self.base_headers.update(
|
|
110
121
|
{
|
auth0/management/__init__.py
CHANGED
|
@@ -1215,6 +1215,7 @@ if typing.TYPE_CHECKING:
|
|
|
1215
1215
|
from .client import AsyncAuth0, Auth0
|
|
1216
1216
|
from .environment import Auth0Environment
|
|
1217
1217
|
from .event_streams import EventStreamsCreateRequest
|
|
1218
|
+
from .management_client import AsyncManagementClient, ManagementClient
|
|
1218
1219
|
from .version import __version__
|
|
1219
1220
|
_dynamic_imports: typing.Dict[str, str] = {
|
|
1220
1221
|
"Action": ".types",
|
|
@@ -3340,6 +3341,8 @@ __all__ = [
|
|
|
3340
3341
|
"LogStreamSumoEnum",
|
|
3341
3342
|
"LogStreamSumoResponseSchema",
|
|
3342
3343
|
"LogStreamSumoSink",
|
|
3344
|
+
"ManagementClient",
|
|
3345
|
+
"AsyncManagementClient",
|
|
3343
3346
|
"MdlPresentationProperties",
|
|
3344
3347
|
"MdlPresentationRequest",
|
|
3345
3348
|
"MdlPresentationRequestProperties",
|
|
@@ -6,9 +6,10 @@ import typing
|
|
|
6
6
|
from importlib import import_module
|
|
7
7
|
|
|
8
8
|
if typing.TYPE_CHECKING:
|
|
9
|
-
from . import executions, triggers, versions
|
|
9
|
+
from . import executions, modules, triggers, versions
|
|
10
10
|
_dynamic_imports: typing.Dict[str, str] = {
|
|
11
11
|
"executions": ".executions",
|
|
12
|
+
"modules": ".modules",
|
|
12
13
|
"triggers": ".triggers",
|
|
13
14
|
"versions": ".versions",
|
|
14
15
|
}
|
|
@@ -35,4 +36,4 @@ def __dir__():
|
|
|
35
36
|
return sorted(lazy_attrs)
|
|
36
37
|
|
|
37
38
|
|
|
38
|
-
__all__ = ["executions", "triggers", "versions"]
|
|
39
|
+
__all__ = ["executions", "modules", "triggers", "versions"]
|
|
@@ -8,6 +8,7 @@ from ..core.client_wrapper import AsyncClientWrapper, SyncClientWrapper
|
|
|
8
8
|
from ..core.pagination import AsyncPager, SyncPager
|
|
9
9
|
from ..core.request_options import RequestOptions
|
|
10
10
|
from ..types.action import Action
|
|
11
|
+
from ..types.action_module_reference import ActionModuleReference
|
|
11
12
|
from ..types.action_secret_request import ActionSecretRequest
|
|
12
13
|
from ..types.action_trigger import ActionTrigger
|
|
13
14
|
from ..types.action_trigger_type_enum import ActionTriggerTypeEnum
|
|
@@ -23,6 +24,7 @@ from .raw_client import AsyncRawActionsClient, RawActionsClient
|
|
|
23
24
|
|
|
24
25
|
if typing.TYPE_CHECKING:
|
|
25
26
|
from .executions.client import AsyncExecutionsClient, ExecutionsClient
|
|
27
|
+
from .modules.client import AsyncModulesClient, ModulesClient
|
|
26
28
|
from .triggers.client import AsyncTriggersClient, TriggersClient
|
|
27
29
|
from .versions.client import AsyncVersionsClient, VersionsClient
|
|
28
30
|
# this is used as the default value for optional parameters
|
|
@@ -35,6 +37,7 @@ class ActionsClient:
|
|
|
35
37
|
self._client_wrapper = client_wrapper
|
|
36
38
|
self._versions: typing.Optional[VersionsClient] = None
|
|
37
39
|
self._executions: typing.Optional[ExecutionsClient] = None
|
|
40
|
+
self._modules: typing.Optional[ModulesClient] = None
|
|
38
41
|
self._triggers: typing.Optional[TriggersClient] = None
|
|
39
42
|
|
|
40
43
|
@property
|
|
@@ -124,13 +127,14 @@ class ActionsClient:
|
|
|
124
127
|
def create(
|
|
125
128
|
self,
|
|
126
129
|
*,
|
|
127
|
-
name: str
|
|
130
|
+
name: str,
|
|
128
131
|
supported_triggers: typing.Sequence[ActionTrigger],
|
|
129
|
-
code: typing.Optional[str] =
|
|
132
|
+
code: typing.Optional[str] = OMIT,
|
|
130
133
|
dependencies: typing.Optional[typing.Sequence[ActionVersionDependency]] = OMIT,
|
|
131
|
-
runtime: typing.Optional[str] =
|
|
134
|
+
runtime: typing.Optional[str] = OMIT,
|
|
132
135
|
secrets: typing.Optional[typing.Sequence[ActionSecretRequest]] = OMIT,
|
|
133
|
-
|
|
136
|
+
modules: typing.Optional[typing.Sequence[ActionModuleReference]] = OMIT,
|
|
137
|
+
deploy: typing.Optional[bool] = OMIT,
|
|
134
138
|
request_options: typing.Optional[RequestOptions] = None,
|
|
135
139
|
) -> CreateActionResponseContent:
|
|
136
140
|
"""
|
|
@@ -156,6 +160,9 @@ class ActionsClient:
|
|
|
156
160
|
secrets : typing.Optional[typing.Sequence[ActionSecretRequest]]
|
|
157
161
|
The list of secrets that are included in an action or a version of an action.
|
|
158
162
|
|
|
163
|
+
modules : typing.Optional[typing.Sequence[ActionModuleReference]]
|
|
164
|
+
The list of action modules and their versions used by this action.
|
|
165
|
+
|
|
159
166
|
deploy : typing.Optional[bool]
|
|
160
167
|
True if the action should be deployed after creation.
|
|
161
168
|
|
|
@@ -190,6 +197,7 @@ class ActionsClient:
|
|
|
190
197
|
dependencies=dependencies,
|
|
191
198
|
runtime=runtime,
|
|
192
199
|
secrets=secrets,
|
|
200
|
+
modules=modules,
|
|
193
201
|
deploy=deploy,
|
|
194
202
|
request_options=request_options,
|
|
195
203
|
)
|
|
@@ -266,12 +274,13 @@ class ActionsClient:
|
|
|
266
274
|
self,
|
|
267
275
|
id: str,
|
|
268
276
|
*,
|
|
269
|
-
name: typing.Optional[str] =
|
|
277
|
+
name: typing.Optional[str] = OMIT,
|
|
270
278
|
supported_triggers: typing.Optional[typing.Sequence[ActionTrigger]] = OMIT,
|
|
271
|
-
code: typing.Optional[str] =
|
|
279
|
+
code: typing.Optional[str] = OMIT,
|
|
272
280
|
dependencies: typing.Optional[typing.Sequence[ActionVersionDependency]] = OMIT,
|
|
273
|
-
runtime: typing.Optional[str] =
|
|
281
|
+
runtime: typing.Optional[str] = OMIT,
|
|
274
282
|
secrets: typing.Optional[typing.Sequence[ActionSecretRequest]] = OMIT,
|
|
283
|
+
modules: typing.Optional[typing.Sequence[ActionModuleReference]] = OMIT,
|
|
275
284
|
request_options: typing.Optional[RequestOptions] = None,
|
|
276
285
|
) -> UpdateActionResponseContent:
|
|
277
286
|
"""
|
|
@@ -300,6 +309,9 @@ class ActionsClient:
|
|
|
300
309
|
secrets : typing.Optional[typing.Sequence[ActionSecretRequest]]
|
|
301
310
|
The list of secrets that are included in an action or a version of an action.
|
|
302
311
|
|
|
312
|
+
modules : typing.Optional[typing.Sequence[ActionModuleReference]]
|
|
313
|
+
The list of action modules and their versions used by this action.
|
|
314
|
+
|
|
303
315
|
request_options : typing.Optional[RequestOptions]
|
|
304
316
|
Request-specific configuration.
|
|
305
317
|
|
|
@@ -327,6 +339,7 @@ class ActionsClient:
|
|
|
327
339
|
dependencies=dependencies,
|
|
328
340
|
runtime=runtime,
|
|
329
341
|
secrets=secrets,
|
|
342
|
+
modules=modules,
|
|
330
343
|
request_options=request_options,
|
|
331
344
|
)
|
|
332
345
|
return _response.data
|
|
@@ -416,6 +429,14 @@ class ActionsClient:
|
|
|
416
429
|
self._executions = ExecutionsClient(client_wrapper=self._client_wrapper)
|
|
417
430
|
return self._executions
|
|
418
431
|
|
|
432
|
+
@property
|
|
433
|
+
def modules(self):
|
|
434
|
+
if self._modules is None:
|
|
435
|
+
from .modules.client import ModulesClient # noqa: E402
|
|
436
|
+
|
|
437
|
+
self._modules = ModulesClient(client_wrapper=self._client_wrapper)
|
|
438
|
+
return self._modules
|
|
439
|
+
|
|
419
440
|
@property
|
|
420
441
|
def triggers(self):
|
|
421
442
|
if self._triggers is None:
|
|
@@ -431,6 +452,7 @@ class AsyncActionsClient:
|
|
|
431
452
|
self._client_wrapper = client_wrapper
|
|
432
453
|
self._versions: typing.Optional[AsyncVersionsClient] = None
|
|
433
454
|
self._executions: typing.Optional[AsyncExecutionsClient] = None
|
|
455
|
+
self._modules: typing.Optional[AsyncModulesClient] = None
|
|
434
456
|
self._triggers: typing.Optional[AsyncTriggersClient] = None
|
|
435
457
|
|
|
436
458
|
@property
|
|
@@ -529,13 +551,14 @@ class AsyncActionsClient:
|
|
|
529
551
|
async def create(
|
|
530
552
|
self,
|
|
531
553
|
*,
|
|
532
|
-
name: str
|
|
554
|
+
name: str,
|
|
533
555
|
supported_triggers: typing.Sequence[ActionTrigger],
|
|
534
|
-
code: typing.Optional[str] =
|
|
556
|
+
code: typing.Optional[str] = OMIT,
|
|
535
557
|
dependencies: typing.Optional[typing.Sequence[ActionVersionDependency]] = OMIT,
|
|
536
|
-
runtime: typing.Optional[str] =
|
|
558
|
+
runtime: typing.Optional[str] = OMIT,
|
|
537
559
|
secrets: typing.Optional[typing.Sequence[ActionSecretRequest]] = OMIT,
|
|
538
|
-
|
|
560
|
+
modules: typing.Optional[typing.Sequence[ActionModuleReference]] = OMIT,
|
|
561
|
+
deploy: typing.Optional[bool] = OMIT,
|
|
539
562
|
request_options: typing.Optional[RequestOptions] = None,
|
|
540
563
|
) -> CreateActionResponseContent:
|
|
541
564
|
"""
|
|
@@ -561,6 +584,9 @@ class AsyncActionsClient:
|
|
|
561
584
|
secrets : typing.Optional[typing.Sequence[ActionSecretRequest]]
|
|
562
585
|
The list of secrets that are included in an action or a version of an action.
|
|
563
586
|
|
|
587
|
+
modules : typing.Optional[typing.Sequence[ActionModuleReference]]
|
|
588
|
+
The list of action modules and their versions used by this action.
|
|
589
|
+
|
|
564
590
|
deploy : typing.Optional[bool]
|
|
565
591
|
True if the action should be deployed after creation.
|
|
566
592
|
|
|
@@ -603,6 +629,7 @@ class AsyncActionsClient:
|
|
|
603
629
|
dependencies=dependencies,
|
|
604
630
|
runtime=runtime,
|
|
605
631
|
secrets=secrets,
|
|
632
|
+
modules=modules,
|
|
606
633
|
deploy=deploy,
|
|
607
634
|
request_options=request_options,
|
|
608
635
|
)
|
|
@@ -697,12 +724,13 @@ class AsyncActionsClient:
|
|
|
697
724
|
self,
|
|
698
725
|
id: str,
|
|
699
726
|
*,
|
|
700
|
-
name: typing.Optional[str] =
|
|
727
|
+
name: typing.Optional[str] = OMIT,
|
|
701
728
|
supported_triggers: typing.Optional[typing.Sequence[ActionTrigger]] = OMIT,
|
|
702
|
-
code: typing.Optional[str] =
|
|
729
|
+
code: typing.Optional[str] = OMIT,
|
|
703
730
|
dependencies: typing.Optional[typing.Sequence[ActionVersionDependency]] = OMIT,
|
|
704
|
-
runtime: typing.Optional[str] =
|
|
731
|
+
runtime: typing.Optional[str] = OMIT,
|
|
705
732
|
secrets: typing.Optional[typing.Sequence[ActionSecretRequest]] = OMIT,
|
|
733
|
+
modules: typing.Optional[typing.Sequence[ActionModuleReference]] = OMIT,
|
|
706
734
|
request_options: typing.Optional[RequestOptions] = None,
|
|
707
735
|
) -> UpdateActionResponseContent:
|
|
708
736
|
"""
|
|
@@ -731,6 +759,9 @@ class AsyncActionsClient:
|
|
|
731
759
|
secrets : typing.Optional[typing.Sequence[ActionSecretRequest]]
|
|
732
760
|
The list of secrets that are included in an action or a version of an action.
|
|
733
761
|
|
|
762
|
+
modules : typing.Optional[typing.Sequence[ActionModuleReference]]
|
|
763
|
+
The list of action modules and their versions used by this action.
|
|
764
|
+
|
|
734
765
|
request_options : typing.Optional[RequestOptions]
|
|
735
766
|
Request-specific configuration.
|
|
736
767
|
|
|
@@ -766,6 +797,7 @@ class AsyncActionsClient:
|
|
|
766
797
|
dependencies=dependencies,
|
|
767
798
|
runtime=runtime,
|
|
768
799
|
secrets=secrets,
|
|
800
|
+
modules=modules,
|
|
769
801
|
request_options=request_options,
|
|
770
802
|
)
|
|
771
803
|
return _response.data
|
|
@@ -871,6 +903,14 @@ class AsyncActionsClient:
|
|
|
871
903
|
self._executions = AsyncExecutionsClient(client_wrapper=self._client_wrapper)
|
|
872
904
|
return self._executions
|
|
873
905
|
|
|
906
|
+
@property
|
|
907
|
+
def modules(self):
|
|
908
|
+
if self._modules is None:
|
|
909
|
+
from .modules.client import AsyncModulesClient # noqa: E402
|
|
910
|
+
|
|
911
|
+
self._modules = AsyncModulesClient(client_wrapper=self._client_wrapper)
|
|
912
|
+
return self._modules
|
|
913
|
+
|
|
874
914
|
@property
|
|
875
915
|
def triggers(self):
|
|
876
916
|
if self._triggers is None:
|
auth0/management/{attack_protection/brute_force_protection/types → actions/modules}/__init__.py
RENAMED
|
@@ -6,14 +6,8 @@ import typing
|
|
|
6
6
|
from importlib import import_module
|
|
7
7
|
|
|
8
8
|
if typing.TYPE_CHECKING:
|
|
9
|
-
from .
|
|
10
|
-
|
|
11
|
-
UpdateBruteForceSettingsRequestContentShieldsItem,
|
|
12
|
-
)
|
|
13
|
-
_dynamic_imports: typing.Dict[str, str] = {
|
|
14
|
-
"UpdateBruteForceSettingsRequestContentMode": ".update_brute_force_settings_request_content_mode",
|
|
15
|
-
"UpdateBruteForceSettingsRequestContentShieldsItem": ".update_brute_force_settings_request_content_shields_item",
|
|
16
|
-
}
|
|
9
|
+
from . import versions
|
|
10
|
+
_dynamic_imports: typing.Dict[str, str] = {"versions": ".versions"}
|
|
17
11
|
|
|
18
12
|
|
|
19
13
|
def __getattr__(attr_name: str) -> typing.Any:
|
|
@@ -37,4 +31,4 @@ def __dir__():
|
|
|
37
31
|
return sorted(lazy_attrs)
|
|
38
32
|
|
|
39
33
|
|
|
40
|
-
__all__ = ["
|
|
34
|
+
__all__ = ["versions"]
|