auth0 5.18.0 → 6.0.0.beta.0
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.
- checksums.yaml +4 -4
- data/.fernignore +29 -0
- data/.rubocop.yml +87 -9
- data/.snyk +6 -0
- data/.version +1 -1
- data/CHANGELOG.md +45 -0
- data/DEPLOYMENT.md +19 -27
- data/DEVELOPMENT.md +31 -8
- data/EXAMPLES.md +109 -19
- data/README.md +234 -19
- data/Rakefile +12 -23
- data/custom.gemspec.rb +15 -0
- data/examples/ruby-api/.env.example +4 -2
- data/examples/ruby-api/.gitignore +3 -80
- data/examples/ruby-api/Gemfile +8 -7
- data/examples/ruby-api/Gemfile.lock +64 -23
- data/examples/ruby-api/README.md +35 -15
- data/examples/ruby-api/app.rb +88 -0
- data/examples/ruby-api/config.ru +5 -2
- data/examples/ruby-on-rails-api/.env.example +4 -2
- data/examples/ruby-on-rails-api/.gitignore +3 -17
- data/examples/ruby-on-rails-api/Gemfile +7 -46
- data/examples/ruby-on-rails-api/README.md +34 -15
- data/examples/ruby-on-rails-api/Rakefile +2 -4
- data/examples/ruby-on-rails-api/app/controllers/api_controller.rb +24 -0
- data/examples/ruby-on-rails-api/app/controllers/application_controller.rb +44 -6
- data/examples/ruby-on-rails-api/bin/rails +4 -4
- data/examples/ruby-on-rails-api/config/application.rb +9 -16
- data/examples/ruby-on-rails-api/config/boot.rb +3 -3
- data/examples/ruby-on-rails-api/config/environment.rb +2 -3
- data/examples/ruby-on-rails-api/config/initializers/auth0.rb +9 -0
- data/examples/ruby-on-rails-api/config/routes.rb +5 -56
- data/examples/ruby-on-rails-api/config.ru +2 -2
- data/lib/auth0/actions/client.rb +317 -0
- data/lib/auth0/actions/executions/client.rb +52 -0
- data/lib/auth0/actions/modules/client.rb +302 -0
- data/lib/auth0/actions/modules/types/create_action_module_request_content.rb +18 -0
- data/lib/auth0/actions/modules/types/get_action_module_actions_request_parameters.rb +15 -0
- data/lib/auth0/actions/modules/types/get_action_modules_request_parameters.rb +14 -0
- data/lib/auth0/actions/modules/types/rollback_action_module_request_parameters.rb +14 -0
- data/lib/auth0/actions/modules/types/update_action_module_request_content.rb +16 -0
- data/lib/auth0/actions/modules/versions/client.rb +140 -0
- data/lib/auth0/actions/modules/versions/types/get_action_module_versions_request_parameters.rb +17 -0
- data/lib/auth0/actions/triggers/bindings/client.rb +112 -0
- data/lib/auth0/actions/triggers/bindings/types/list_action_trigger_bindings_request_parameters.rb +17 -0
- data/lib/auth0/actions/triggers/bindings/types/update_action_bindings_request_content.rb +16 -0
- data/lib/auth0/actions/triggers/client.rb +55 -0
- data/lib/auth0/actions/types/create_action_request_content.rb +18 -0
- data/lib/auth0/actions/types/delete_action_request_parameters.rb +12 -0
- data/lib/auth0/actions/types/list_actions_request_parameters.rb +16 -0
- data/lib/auth0/actions/types/test_action_request_content.rb +12 -0
- data/lib/auth0/actions/types/update_action_request_content.rb +18 -0
- data/lib/auth0/actions/versions/client.rb +142 -0
- data/lib/auth0/actions/versions/types/list_action_versions_request_parameters.rb +15 -0
- data/lib/auth0/anomaly/blocks/client.rb +84 -0
- data/lib/auth0/anomaly/client.rb +19 -0
- data/lib/auth0/api/authentication_endpoints.rb +2 -2
- data/lib/auth0/attack_protection/bot_detection/client.rb +83 -0
- data/lib/auth0/attack_protection/bot_detection/types/update_bot_detection_settings_request_content.rb +18 -0
- data/lib/auth0/attack_protection/breached_password_detection/client.rb +83 -0
- data/lib/auth0/attack_protection/breached_password_detection/types/update_breached_password_detection_settings_request_content.rb +17 -0
- data/lib/auth0/attack_protection/brute_force_protection/client.rb +83 -0
- data/lib/auth0/attack_protection/brute_force_protection/types/update_brute_force_settings_request_content.rb +17 -0
- data/lib/auth0/attack_protection/captcha/client.rb +83 -0
- data/lib/auth0/attack_protection/captcha/types/update_attack_protection_captcha_request_content.rb +20 -0
- data/lib/auth0/attack_protection/client.rb +39 -0
- data/lib/auth0/attack_protection/suspicious_ip_throttling/client.rb +83 -0
- data/lib/auth0/attack_protection/suspicious_ip_throttling/types/update_suspicious_ip_throttling_settings_request_content.rb +16 -0
- data/lib/auth0/auth_client.rb +98 -0
- data/lib/auth0/branding/client.rb +96 -0
- data/lib/auth0/branding/phone/client.rb +26 -0
- data/lib/auth0/branding/phone/providers/client.rb +243 -0
- data/lib/auth0/branding/phone/providers/types/create_branding_phone_provider_request_content.rb +18 -0
- data/lib/auth0/branding/phone/providers/types/create_phone_provider_send_test_request_content.rb +17 -0
- data/lib/auth0/branding/phone/providers/types/list_branding_phone_providers_request_parameters.rb +15 -0
- data/lib/auth0/branding/phone/providers/types/update_branding_phone_provider_request_content.rb +19 -0
- data/lib/auth0/branding/phone/templates/client.rb +257 -0
- data/lib/auth0/branding/phone/templates/types/create_phone_template_request_content.rb +17 -0
- data/lib/auth0/branding/phone/templates/types/create_phone_template_test_notification_request_content.rb +17 -0
- data/lib/auth0/branding/phone/templates/types/list_phone_templates_request_parameters.rb +15 -0
- data/lib/auth0/branding/phone/templates/types/update_phone_template_request_content.rb +17 -0
- data/lib/auth0/branding/templates/client.rb +133 -0
- data/lib/auth0/branding/themes/client.rb +188 -0
- data/lib/auth0/branding/themes/types/create_branding_theme_request_content.rb +18 -0
- data/lib/auth0/branding/themes/types/update_branding_theme_request_content.rb +19 -0
- data/lib/auth0/branding/types/update_branding_request_content.rb +14 -0
- data/lib/auth0/client.rb +240 -4
- data/lib/auth0/client_assertion.rb +3 -3
- data/lib/auth0/client_grants/client.rb +226 -0
- data/lib/auth0/client_grants/organizations/client.rb +64 -0
- data/lib/auth0/client_grants/organizations/types/list_client_grant_organizations_request_parameters.rb +15 -0
- data/lib/auth0/client_grants/types/create_client_grant_request_content.rb +19 -0
- data/lib/auth0/client_grants/types/list_client_grants_request_parameters.rb +17 -0
- data/lib/auth0/client_grants/types/update_client_grant_request_content.rb +16 -0
- data/lib/auth0/clients/client.rb +463 -0
- data/lib/auth0/clients/connections/client.rb +85 -0
- data/lib/auth0/clients/connections/types/connections_get_request.rb +18 -0
- data/lib/auth0/clients/credentials/client.rb +251 -0
- data/lib/auth0/clients/credentials/types/patch_client_credential_request_content.rb +15 -0
- data/lib/auth0/clients/credentials/types/post_client_credential_request_content.rb +21 -0
- data/lib/auth0/clients/types/create_client_request_content.rb +63 -0
- data/lib/auth0/clients/types/get_client_request_parameters.rb +13 -0
- data/lib/auth0/clients/types/list_clients_request_parameters.rb +20 -0
- data/lib/auth0/clients/types/preview_cimd_metadata_request_content.rb +11 -0
- data/lib/auth0/clients/types/register_cimd_client_request_content.rb +11 -0
- data/lib/auth0/clients/types/update_client_request_content.rb +64 -0
- data/lib/auth0/connection_profiles/client.rb +269 -0
- data/lib/auth0/connection_profiles/types/create_connection_profile_request_content.rb +16 -0
- data/lib/auth0/connection_profiles/types/list_connection_profile_request_parameters.rb +12 -0
- data/lib/auth0/connection_profiles/types/update_connection_profile_request_content.rb +17 -0
- data/lib/auth0/connections/client.rb +316 -0
- data/lib/auth0/connections/clients/client.rb +102 -0
- data/lib/auth0/connections/clients/types/get_connection_enabled_clients_request_parameters.rb +15 -0
- data/lib/auth0/connections/directory_provisioning/client.rb +327 -0
- data/lib/auth0/connections/directory_provisioning/synchronizations/client.rb +52 -0
- data/lib/auth0/connections/directory_provisioning/types/list_directory_provisionings_request_parameters.rb +14 -0
- data/lib/auth0/connections/directory_provisioning/types/list_synchronized_groups_request_parameters.rb +15 -0
- data/lib/auth0/connections/directory_provisioning/types/replace_synchronized_groups_request_content.rb +14 -0
- data/lib/auth0/connections/keys/client.rb +120 -0
- data/lib/auth0/connections/scim_configuration/client.rb +244 -0
- data/lib/auth0/connections/scim_configuration/tokens/client.rb +124 -0
- data/lib/auth0/connections/scim_configuration/tokens/types/create_scim_token_request_content.rb +17 -0
- data/lib/auth0/connections/scim_configuration/types/list_scim_configurations_request_parameters.rb +14 -0
- data/lib/auth0/connections/scim_configuration/types/update_scim_configuration_request_content.rb +15 -0
- data/lib/auth0/connections/types/create_connection_request_content.rb +21 -0
- data/lib/auth0/connections/types/get_connection_request_parameters.rb +13 -0
- data/lib/auth0/connections/types/list_connections_query_parameters.rb +16 -0
- data/lib/auth0/connections/types/update_connection_request_content.rb +20 -0
- data/lib/auth0/connections/users/client.rb +56 -0
- data/lib/auth0/connections/users/types/delete_connection_users_by_email_query_parameters.rb +14 -0
- data/lib/auth0/custom_domains/client.rb +385 -0
- data/lib/auth0/custom_domains/types/create_custom_domain_request_content.rb +17 -0
- data/lib/auth0/custom_domains/types/list_custom_domains_request_parameters.rb +14 -0
- data/lib/auth0/custom_domains/types/set_default_custom_domain_request_content.rb +11 -0
- data/lib/auth0/custom_domains/types/update_custom_domain_request_content.rb +15 -0
- data/lib/auth0/device_credentials/client.rb +148 -0
- data/lib/auth0/device_credentials/types/create_public_key_device_credential_request_content.rb +15 -0
- data/lib/auth0/device_credentials/types/list_device_credentials_request_parameters.rb +18 -0
- data/lib/auth0/email_templates/client.rb +163 -0
- data/lib/auth0/email_templates/types/create_email_template_request_content.rb +19 -0
- data/lib/auth0/email_templates/types/set_email_template_request_content.rb +20 -0
- data/lib/auth0/email_templates/types/update_email_template_request_content.rb +20 -0
- data/lib/auth0/emails/client.rb +19 -0
- data/lib/auth0/emails/provider/client.rb +256 -0
- data/lib/auth0/emails/provider/types/create_email_provider_request_content.rb +17 -0
- data/lib/auth0/emails/provider/types/get_email_provider_request_parameters.rb +14 -0
- data/lib/auth0/emails/provider/types/update_email_provider_request_content.rb +17 -0
- data/lib/auth0/environment.rb +7 -0
- data/lib/auth0/errors/api_error.rb +8 -0
- data/lib/auth0/errors/client_error.rb +17 -0
- data/lib/auth0/errors/redirect_error.rb +8 -0
- data/lib/auth0/errors/response_error.rb +42 -0
- data/lib/auth0/errors/server_error.rb +11 -0
- data/lib/auth0/errors/timeout_error.rb +8 -0
- data/lib/auth0/event_streams/client.rb +239 -0
- data/lib/auth0/event_streams/deliveries/client.rb +96 -0
- data/lib/auth0/event_streams/deliveries/types/list_event_stream_deliveries_request_parameters.rb +19 -0
- data/lib/auth0/event_streams/redeliveries/client.rb +84 -0
- data/lib/auth0/event_streams/redeliveries/types/create_event_stream_redelivery_request_content.rb +17 -0
- data/lib/auth0/event_streams/types/create_event_stream_test_event_request_content.rb +13 -0
- data/lib/auth0/event_streams/types/event_streams_create_request.rb +15 -0
- data/lib/auth0/event_streams/types/list_event_streams_request_parameters.rb +12 -0
- data/lib/auth0/event_streams/types/update_event_stream_request_content.rb +15 -0
- data/lib/auth0/flows/client.rb +216 -0
- data/lib/auth0/flows/executions/client.rb +135 -0
- data/lib/auth0/flows/executions/types/get_flow_execution_request_parameters.rb +15 -0
- data/lib/auth0/flows/executions/types/list_flow_executions_request_parameters.rb +15 -0
- data/lib/auth0/flows/types/create_flow_request_content.rb +12 -0
- data/lib/auth0/flows/types/get_flow_request_parameters.rb +12 -0
- data/lib/auth0/flows/types/list_flows_request_parameters.rb +15 -0
- data/lib/auth0/flows/types/update_flow_request_content.rb +13 -0
- data/lib/auth0/flows/vault/client.rb +21 -0
- data/lib/auth0/flows/vault/connections/client.rb +199 -0
- data/lib/auth0/flows/vault/connections/types/list_flows_vault_connections_request_parameters.rb +17 -0
- data/lib/auth0/flows/vault/connections/types/update_flows_vault_connection_request_content.rb +17 -0
- data/lib/auth0/forms/client.rb +204 -0
- data/lib/auth0/forms/types/create_form_request_content.rb +18 -0
- data/lib/auth0/forms/types/get_form_request_parameters.rb +12 -0
- data/lib/auth0/forms/types/list_forms_request_parameters.rb +14 -0
- data/lib/auth0/forms/types/update_form_request_content.rb +19 -0
- data/lib/auth0/groups/client.rb +144 -0
- data/lib/auth0/groups/members/client.rb +70 -0
- data/lib/auth0/groups/members/types/get_group_members_request_parameters.rb +17 -0
- data/lib/auth0/groups/types/list_groups_request_parameters.rb +17 -0
- data/lib/auth0/guardian/client.rb +29 -0
- data/lib/auth0/guardian/enrollments/client.rb +130 -0
- data/lib/auth0/guardian/enrollments/types/create_guardian_enrollment_ticket_request_content.rb +18 -0
- data/lib/auth0/guardian/factors/client.rb +108 -0
- data/lib/auth0/guardian/factors/duo/client.rb +23 -0
- data/lib/auth0/guardian/factors/duo/settings/client.rb +119 -0
- data/lib/auth0/guardian/factors/duo/settings/types/set_guardian_factor_duo_settings_request_content.rb +19 -0
- data/lib/auth0/guardian/factors/duo/settings/types/update_guardian_factor_duo_settings_request_content.rb +19 -0
- data/lib/auth0/guardian/factors/phone/client.rb +295 -0
- data/lib/auth0/guardian/factors/phone/types/set_guardian_factor_phone_message_types_request_content.rb +15 -0
- data/lib/auth0/guardian/factors/phone/types/set_guardian_factor_phone_templates_request_content.rb +16 -0
- data/lib/auth0/guardian/factors/phone/types/set_guardian_factors_provider_phone_request_content.rb +15 -0
- data/lib/auth0/guardian/factors/phone/types/set_guardian_factors_provider_phone_twilio_request_content.rb +18 -0
- data/lib/auth0/guardian/factors/push_notification/client.rb +436 -0
- data/lib/auth0/guardian/factors/push_notification/types/set_guardian_factors_provider_push_notification_apns_request_content.rb +17 -0
- data/lib/auth0/guardian/factors/push_notification/types/set_guardian_factors_provider_push_notification_fcm_request_content.rb +15 -0
- data/lib/auth0/guardian/factors/push_notification/types/set_guardian_factors_provider_push_notification_fcmv1request_content.rb +15 -0
- data/lib/auth0/guardian/factors/push_notification/types/set_guardian_factors_provider_push_notification_request_content.rb +15 -0
- data/lib/auth0/guardian/factors/push_notification/types/set_guardian_factors_provider_push_notification_sns_request_content.rb +19 -0
- data/lib/auth0/guardian/factors/push_notification/types/update_guardian_factors_provider_push_notification_apns_request_content.rb +17 -0
- data/lib/auth0/guardian/factors/push_notification/types/update_guardian_factors_provider_push_notification_fcm_request_content.rb +15 -0
- data/lib/auth0/guardian/factors/push_notification/types/update_guardian_factors_provider_push_notification_fcmv1request_content.rb +15 -0
- data/lib/auth0/guardian/factors/push_notification/types/update_guardian_factors_provider_push_notification_sns_request_content.rb +19 -0
- data/lib/auth0/guardian/factors/sms/client.rb +247 -0
- data/lib/auth0/guardian/factors/sms/types/set_guardian_factor_sms_templates_request_content.rb +16 -0
- data/lib/auth0/guardian/factors/sms/types/set_guardian_factors_provider_sms_request_content.rb +15 -0
- data/lib/auth0/guardian/factors/sms/types/set_guardian_factors_provider_sms_twilio_request_content.rb +18 -0
- data/lib/auth0/guardian/factors/types/set_guardian_factor_request_content.rb +14 -0
- data/lib/auth0/guardian/policies/client.rb +107 -0
- data/lib/auth0/hooks/client.rb +225 -0
- data/lib/auth0/hooks/secrets/client.rb +151 -0
- data/lib/auth0/hooks/types/create_hook_request_content.rb +15 -0
- data/lib/auth0/hooks/types/get_hook_request_parameters.rb +12 -0
- data/lib/auth0/hooks/types/list_hooks_request_parameters.rb +16 -0
- data/lib/auth0/hooks/types/update_hook_request_content.rb +15 -0
- data/lib/auth0/internal/errors/constraint_error.rb +10 -0
- data/lib/auth0/internal/errors/type_error.rb +10 -0
- data/lib/auth0/internal/http/base_request.rb +51 -0
- data/lib/auth0/internal/http/raw_client.rb +226 -0
- data/lib/auth0/internal/iterators/cursor_item_iterator.rb +28 -0
- data/lib/auth0/internal/iterators/cursor_page_iterator.rb +51 -0
- data/lib/auth0/internal/iterators/item_iterator.rb +59 -0
- data/lib/auth0/internal/iterators/offset_item_iterator.rb +30 -0
- data/lib/auth0/internal/iterators/offset_page_iterator.rb +83 -0
- data/lib/auth0/internal/json/request.rb +41 -0
- data/lib/auth0/internal/json/serializable.rb +25 -0
- data/lib/auth0/internal/multipart/multipart_encoder.rb +141 -0
- data/lib/auth0/internal/multipart/multipart_form_data.rb +78 -0
- data/lib/auth0/internal/multipart/multipart_form_data_part.rb +51 -0
- data/lib/auth0/internal/multipart/multipart_request.rb +40 -0
- data/lib/auth0/internal/types/array.rb +47 -0
- data/lib/auth0/internal/types/boolean.rb +34 -0
- data/lib/auth0/internal/types/enum.rb +56 -0
- data/lib/auth0/internal/types/hash.rb +36 -0
- data/lib/auth0/internal/types/model/field.rb +38 -0
- data/lib/auth0/internal/types/model.rb +208 -0
- data/lib/auth0/internal/types/type.rb +35 -0
- data/lib/auth0/internal/types/union.rb +161 -0
- data/lib/auth0/internal/types/unknown.rb +15 -0
- data/lib/auth0/internal/types/utils.rb +116 -0
- data/lib/auth0/jobs/client.rb +68 -0
- data/lib/auth0/jobs/errors/client.rb +50 -0
- data/lib/auth0/jobs/errors/types/errors_get_response.rb +16 -0
- data/lib/auth0/jobs/users_exports/client.rb +50 -0
- data/lib/auth0/jobs/users_exports/types/create_export_users_request_content.rb +16 -0
- data/lib/auth0/jobs/users_imports/client.rb +82 -0
- data/lib/auth0/jobs/users_imports/types/create_import_users_request_content.rb +11 -0
- data/lib/auth0/jobs/verification_email/client.rb +53 -0
- data/lib/auth0/jobs/verification_email/types/create_verification_email_request_content.rb +16 -0
- data/lib/auth0/keys/client.rb +29 -0
- data/lib/auth0/keys/custom_signing/client.rb +114 -0
- data/lib/auth0/keys/custom_signing/types/set_custom_signing_keys_request_content.rb +13 -0
- data/lib/auth0/keys/encryption/client.rb +272 -0
- data/lib/auth0/keys/encryption/types/create_encryption_key_request_content.rb +13 -0
- data/lib/auth0/keys/encryption/types/import_encryption_key_request_content.rb +14 -0
- data/lib/auth0/keys/encryption/types/list_encryption_keys_request_parameters.rb +15 -0
- data/lib/auth0/keys/signing/client.rb +148 -0
- data/lib/auth0/log_streams/client.rb +519 -0
- data/lib/auth0/log_streams/types/update_log_stream_request_content.rb +17 -0
- data/lib/auth0/logs/client.rb +153 -0
- data/lib/auth0/logs/types/list_logs_request_parameters.rb +17 -0
- data/lib/auth0/mixins/initializer.rb +18 -23
- data/lib/auth0/mixins/token_management.rb +9 -6
- data/lib/auth0/mixins.rb +14 -13
- data/lib/auth0/network_acls/client.rb +242 -0
- data/lib/auth0/network_acls/types/create_network_acl_request_content.rb +14 -0
- data/lib/auth0/network_acls/types/list_network_acls_request_parameters.rb +13 -0
- data/lib/auth0/network_acls/types/set_network_acl_request_content.rb +15 -0
- data/lib/auth0/network_acls/types/update_network_acl_request_content.rb +15 -0
- data/lib/auth0/organizations/client.rb +298 -0
- data/lib/auth0/organizations/client_grants/client.rb +141 -0
- data/lib/auth0/organizations/client_grants/types/associate_organization_client_grant_request_content.rb +14 -0
- data/lib/auth0/organizations/client_grants/types/list_organization_client_grants_request_parameters.rb +19 -0
- data/lib/auth0/organizations/connections/client.rb +208 -0
- data/lib/auth0/organizations/connections/types/create_organization_all_connection_request_parameters.rb +20 -0
- data/lib/auth0/organizations/connections/types/list_organization_all_connections_request_parameters.rb +17 -0
- data/lib/auth0/organizations/connections/types/update_organization_connection_request_parameters.rb +20 -0
- data/lib/auth0/organizations/discovery_domains/client.rb +257 -0
- data/lib/auth0/organizations/discovery_domains/types/create_organization_discovery_domain_request_content.rb +16 -0
- data/lib/auth0/organizations/discovery_domains/types/list_organization_discovery_domains_request_parameters.rb +15 -0
- data/lib/auth0/organizations/discovery_domains/types/update_organization_discovery_domain_request_content.rb +16 -0
- data/lib/auth0/organizations/enabled_connections/client.rb +227 -0
- data/lib/auth0/organizations/enabled_connections/types/add_organization_connection_request_content.rb +17 -0
- data/lib/auth0/organizations/enabled_connections/types/list_organization_connections_request_parameters.rb +16 -0
- data/lib/auth0/organizations/enabled_connections/types/update_organization_connection_request_content.rb +17 -0
- data/lib/auth0/organizations/invitations/client.rb +194 -0
- data/lib/auth0/organizations/invitations/types/create_organization_invitation_request_content.rb +22 -0
- data/lib/auth0/organizations/invitations/types/get_organization_invitation_request_parameters.rb +16 -0
- data/lib/auth0/organizations/invitations/types/list_organization_invitations_request_parameters.rb +19 -0
- data/lib/auth0/organizations/members/client.rb +183 -0
- data/lib/auth0/organizations/members/roles/client.rb +162 -0
- data/lib/auth0/organizations/members/roles/types/assign_organization_member_roles_request_content.rb +17 -0
- data/lib/auth0/organizations/members/roles/types/delete_organization_member_roles_request_content.rb +17 -0
- data/lib/auth0/organizations/members/roles/types/list_organization_member_roles_request_parameters.rb +19 -0
- data/lib/auth0/organizations/members/types/create_organization_member_request_content.rb +14 -0
- data/lib/auth0/organizations/members/types/delete_organization_members_request_content.rb +14 -0
- data/lib/auth0/organizations/members/types/list_organization_members_request_parameters.rb +17 -0
- data/lib/auth0/organizations/types/create_organization_request_content.rb +16 -0
- data/lib/auth0/organizations/types/list_organizations_request_parameters.rb +13 -0
- data/lib/auth0/organizations/types/update_organization_request_content.rb +16 -0
- data/lib/auth0/prompts/client.rb +104 -0
- data/lib/auth0/prompts/custom_text/client.rb +85 -0
- data/lib/auth0/prompts/partials/client.rb +83 -0
- data/lib/auth0/prompts/rendering/client.rb +191 -0
- data/lib/auth0/prompts/rendering/types/bulk_update_acul_request_content.rb +13 -0
- data/lib/auth0/prompts/rendering/types/list_aculs_request_parameters.rb +20 -0
- data/lib/auth0/prompts/rendering/types/update_acul_request_content.rb +20 -0
- data/lib/auth0/prompts/types/update_settings_request_content.rb +13 -0
- data/lib/auth0/refresh_tokens/client.rb +177 -0
- data/lib/auth0/refresh_tokens/types/get_refresh_tokens_request_parameters.rb +16 -0
- data/lib/auth0/refresh_tokens/types/update_refresh_token_request_content.rb +12 -0
- data/lib/auth0/resource_servers/client.rb +219 -0
- data/lib/auth0/resource_servers/types/create_resource_server_request_content.rb +26 -0
- data/lib/auth0/resource_servers/types/get_resource_server_request_parameters.rb +12 -0
- data/lib/auth0/resource_servers/types/list_resource_server_request_parameters.rb +15 -0
- data/lib/auth0/resource_servers/types/update_resource_server_request_content.rb +26 -0
- data/lib/auth0/risk_assessments/client.rb +19 -0
- data/lib/auth0/risk_assessments/settings/client.rb +88 -0
- data/lib/auth0/risk_assessments/settings/new_device/client.rb +85 -0
- data/lib/auth0/risk_assessments/settings/new_device/types/update_risk_assessments_settings_new_device_request_content.rb +15 -0
- data/lib/auth0/risk_assessments/settings/types/update_risk_assessments_settings_request_content.rb +13 -0
- data/lib/auth0/roles/client.rb +228 -0
- data/lib/auth0/roles/permissions/client.rb +147 -0
- data/lib/auth0/roles/permissions/types/add_role_permissions_request_content.rb +14 -0
- data/lib/auth0/roles/permissions/types/delete_role_permissions_request_content.rb +14 -0
- data/lib/auth0/roles/permissions/types/list_role_permissions_request_parameters.rb +16 -0
- data/lib/auth0/roles/types/create_role_request_content.rb +12 -0
- data/lib/auth0/roles/types/list_roles_request_parameters.rb +14 -0
- data/lib/auth0/roles/types/update_role_request_content.rb +13 -0
- data/lib/auth0/roles/users/client.rb +130 -0
- data/lib/auth0/roles/users/types/assign_role_users_request_content.rb +14 -0
- data/lib/auth0/roles/users/types/list_role_users_request_parameters.rb +15 -0
- data/lib/auth0/rules/client.rb +225 -0
- data/lib/auth0/rules/types/create_rule_request_content.rb +14 -0
- data/lib/auth0/rules/types/get_rule_request_parameters.rb +13 -0
- data/lib/auth0/rules/types/list_rules_request_parameters.rb +16 -0
- data/lib/auth0/rules/types/update_rule_request_content.rb +15 -0
- data/lib/auth0/rules_configs/client.rb +118 -0
- data/lib/auth0/rules_configs/types/set_rules_config_request_content.rb +12 -0
- data/lib/auth0/self_service_profiles/client.rb +215 -0
- data/lib/auth0/self_service_profiles/custom_text/client.rb +89 -0
- data/lib/auth0/self_service_profiles/sso_ticket/client.rb +95 -0
- data/lib/auth0/self_service_profiles/sso_ticket/types/create_self_service_profile_sso_ticket_request_content.rb +22 -0
- data/lib/auth0/self_service_profiles/types/create_self_service_profile_request_content.rb +16 -0
- data/lib/auth0/self_service_profiles/types/list_self_service_profiles_request_parameters.rb +13 -0
- data/lib/auth0/self_service_profiles/types/update_self_service_profile_request_content.rb +17 -0
- data/lib/auth0/sessions/client.rb +151 -0
- data/lib/auth0/sessions/types/update_session_request_content.rb +12 -0
- data/lib/auth0/stats/client.rb +88 -0
- data/lib/auth0/stats/types/get_daily_stats_request_parameters.rb +12 -0
- data/lib/auth0/supplemental_signals/client.rb +81 -0
- data/lib/auth0/supplemental_signals/types/update_supplemental_signals_request_content.rb +11 -0
- data/lib/auth0/tenants/client.rb +19 -0
- data/lib/auth0/tenants/settings/client.rb +92 -0
- data/lib/auth0/tenants/settings/types/get_tenant_settings_request_parameters.rb +14 -0
- data/lib/auth0/tenants/settings/types/update_tenant_settings_request_content.rb +48 -0
- data/lib/auth0/tickets/client.rb +87 -0
- data/lib/auth0/tickets/types/change_password_ticket_request_content.rb +20 -0
- data/lib/auth0/tickets/types/verify_email_ticket_request_content.rb +17 -0
- data/lib/auth0/token_exchange_profiles/client.rb +238 -0
- data/lib/auth0/token_exchange_profiles/types/create_token_exchange_profile_request_content.rb +14 -0
- data/lib/auth0/token_exchange_profiles/types/token_exchange_profiles_list_request.rb +12 -0
- data/lib/auth0/token_exchange_profiles/types/update_token_exchange_profile_request_content.rb +13 -0
- data/lib/auth0/types/action.rb +25 -0
- data/lib/auth0/types/action_base.rb +15 -0
- data/lib/auth0/types/action_binding.rb +15 -0
- data/lib/auth0/types/action_binding_ref.rb +11 -0
- data/lib/auth0/types/action_binding_ref_type_enum.rb +13 -0
- data/lib/auth0/types/action_binding_type_enum.rb +12 -0
- data/lib/auth0/types/action_binding_with_ref.rb +11 -0
- data/lib/auth0/types/action_build_status_enum.rb +16 -0
- data/lib/auth0/types/action_deployed_version.rb +25 -0
- data/lib/auth0/types/action_error.rb +12 -0
- data/lib/auth0/types/action_execution_result.rb +13 -0
- data/lib/auth0/types/action_execution_status_enum.rb +16 -0
- data/lib/auth0/types/action_module_action.rb +13 -0
- data/lib/auth0/types/action_module_dependency.rb +10 -0
- data/lib/auth0/types/action_module_dependency_request.rb +10 -0
- data/lib/auth0/types/action_module_list_item.rb +18 -0
- data/lib/auth0/types/action_module_reference.rb +13 -0
- data/lib/auth0/types/action_module_secret.rb +10 -0
- data/lib/auth0/types/action_module_secret_request.rb +10 -0
- data/lib/auth0/types/action_module_version.rb +15 -0
- data/lib/auth0/types/action_module_version_reference.rb +15 -0
- data/lib/auth0/types/action_secret_request.rb +10 -0
- data/lib/auth0/types/action_secret_response.rb +10 -0
- data/lib/auth0/types/action_trigger.rb +15 -0
- data/lib/auth0/types/action_trigger_compatible_trigger.rb +10 -0
- data/lib/auth0/types/action_trigger_type_enum.rb +24 -0
- data/lib/auth0/types/action_version.rb +24 -0
- data/lib/auth0/types/action_version_build_status_enum.rb +16 -0
- data/lib/auth0/types/action_version_dependency.rb +13 -0
- data/lib/auth0/types/acul_client_filter.rb +13 -0
- data/lib/auth0/types/acul_client_filter_by_id.rb +9 -0
- data/lib/auth0/types/acul_client_filter_by_metadata.rb +9 -0
- data/lib/auth0/types/acul_client_metadata.rb +23 -0
- data/lib/auth0/types/acul_configs.rb +23 -0
- data/lib/auth0/types/acul_configs_item.rb +16 -0
- data/lib/auth0/types/acul_context_configuration.rb +23 -0
- data/lib/auth0/types/acul_context_configuration_item.rb +12 -0
- data/lib/auth0/types/acul_context_enum.rb +27 -0
- data/lib/auth0/types/acul_domain_filter.rb +13 -0
- data/lib/auth0/types/acul_domain_filter_by_id.rb +9 -0
- data/lib/auth0/types/acul_domain_filter_by_metadata.rb +9 -0
- data/lib/auth0/types/acul_domain_metadata.rb +23 -0
- data/lib/auth0/types/acul_filters.rb +13 -0
- data/lib/auth0/types/acul_head_tag.rb +11 -0
- data/lib/auth0/types/acul_head_tag_attributes.rb +23 -0
- data/lib/auth0/types/acul_head_tag_content.rb +23 -0
- data/lib/auth0/types/acul_match_type_enum.rb +12 -0
- data/lib/auth0/types/acul_organization_filter.rb +13 -0
- data/lib/auth0/types/acul_organization_filter_by_id.rb +9 -0
- data/lib/auth0/types/acul_organization_filter_by_metadata.rb +9 -0
- data/lib/auth0/types/acul_organization_metadata.rb +23 -0
- data/lib/auth0/types/acul_rendering_mode_enum.rb +12 -0
- data/lib/auth0/types/add_organization_connection_response_content.rb +13 -0
- data/lib/auth0/types/anomaly_ip_format.rb +23 -0
- data/lib/auth0/types/app_metadata.rb +23 -0
- data/lib/auth0/types/assessors_type_enum.rb +11 -0
- data/lib/auth0/types/associate_organization_client_grant_response_content.rb +14 -0
- data/lib/auth0/types/async_approval_notifications_channels_enum.rb +12 -0
- data/lib/auth0/types/attack_protection_captcha_arkose_response_content.rb +12 -0
- data/lib/auth0/types/attack_protection_captcha_auth_challenge_request.rb +9 -0
- data/lib/auth0/types/attack_protection_captcha_auth_challenge_response_content.rb +9 -0
- data/lib/auth0/types/attack_protection_captcha_friendly_captcha_response_content.rb +9 -0
- data/lib/auth0/types/attack_protection_captcha_hcaptcha_response_content.rb +9 -0
- data/lib/auth0/types/attack_protection_captcha_provider_id.rb +17 -0
- data/lib/auth0/types/attack_protection_captcha_recaptcha_enterprise_response_content.rb +10 -0
- data/lib/auth0/types/attack_protection_captcha_recaptcha_v2response_content.rb +9 -0
- data/lib/auth0/types/attack_protection_captcha_simple_captcha_response_content.rb +23 -0
- data/lib/auth0/types/attack_protection_update_captcha_arkose.rb +13 -0
- data/lib/auth0/types/attack_protection_update_captcha_friendly_captcha.rb +10 -0
- data/lib/auth0/types/attack_protection_update_captcha_hcaptcha.rb +10 -0
- data/lib/auth0/types/attack_protection_update_captcha_recaptcha_enterprise.rb +11 -0
- data/lib/auth0/types/attack_protection_update_captcha_recaptcha_v2.rb +10 -0
- data/lib/auth0/types/authentication_method_type_enum.rb +21 -0
- data/lib/auth0/types/authentication_type_enum.rb +13 -0
- data/lib/auth0/types/bot_detection_allowlist.rb +23 -0
- data/lib/auth0/types/bot_detection_challenge_policy_password_flow_enum.rb +13 -0
- data/lib/auth0/types/bot_detection_challenge_policy_password_reset_flow_enum.rb +13 -0
- data/lib/auth0/types/bot_detection_challenge_policy_passwordless_flow_enum.rb +13 -0
- data/lib/auth0/types/bot_detection_cidr_block.rb +23 -0
- data/lib/auth0/types/bot_detection_i_pv4.rb +23 -0
- data/lib/auth0/types/bot_detection_i_pv6.rb +23 -0
- data/lib/auth0/types/bot_detection_i_pv6cidr_block.rb +23 -0
- data/lib/auth0/types/bot_detection_ip_address_or_cidr_block.rb +23 -0
- data/lib/auth0/types/bot_detection_level_enum.rb +13 -0
- data/lib/auth0/types/bot_detection_monitoring_mode_enabled.rb +23 -0
- data/lib/auth0/types/branding_colors.rb +11 -0
- data/lib/auth0/types/branding_font.rb +10 -0
- data/lib/auth0/types/branding_page_background.rb +24 -0
- data/lib/auth0/types/branding_theme_borders.rb +17 -0
- data/lib/auth0/types/branding_theme_borders_buttons_style_enum.rb +13 -0
- data/lib/auth0/types/branding_theme_borders_inputs_style_enum.rb +13 -0
- data/lib/auth0/types/branding_theme_colors.rb +28 -0
- data/lib/auth0/types/branding_theme_colors_captcha_widget_theme_enum.rb +13 -0
- data/lib/auth0/types/branding_theme_font_body_text.rb +11 -0
- data/lib/auth0/types/branding_theme_font_buttons_text.rb +11 -0
- data/lib/auth0/types/branding_theme_font_input_labels.rb +11 -0
- data/lib/auth0/types/branding_theme_font_links.rb +11 -0
- data/lib/auth0/types/branding_theme_font_links_style_enum.rb +12 -0
- data/lib/auth0/types/branding_theme_font_subtitle.rb +11 -0
- data/lib/auth0/types/branding_theme_font_title.rb +11 -0
- data/lib/auth0/types/branding_theme_fonts.rb +17 -0
- data/lib/auth0/types/branding_theme_page_background.rb +11 -0
- data/lib/auth0/types/branding_theme_page_background_page_layout_enum.rb +13 -0
- data/lib/auth0/types/branding_theme_widget.rb +13 -0
- data/lib/auth0/types/branding_theme_widget_header_text_alignment_enum.rb +13 -0
- data/lib/auth0/types/branding_theme_widget_logo_position_enum.rb +14 -0
- data/lib/auth0/types/branding_theme_widget_social_buttons_layout_enum.rb +12 -0
- data/lib/auth0/types/breached_password_detection_admin_notification_frequency_enum.rb +14 -0
- data/lib/auth0/types/breached_password_detection_method_enum.rb +12 -0
- data/lib/auth0/types/breached_password_detection_pre_change_password_shields_enum.rb +12 -0
- data/lib/auth0/types/breached_password_detection_pre_change_password_stage.rb +9 -0
- data/lib/auth0/types/breached_password_detection_pre_user_registration_shields_enum.rb +12 -0
- data/lib/auth0/types/breached_password_detection_pre_user_registration_stage.rb +9 -0
- data/lib/auth0/types/breached_password_detection_shields_enum.rb +13 -0
- data/lib/auth0/types/breached_password_detection_stage.rb +10 -0
- data/lib/auth0/types/brute_force_protection_mode_enum.rb +12 -0
- data/lib/auth0/types/brute_force_protection_shields_enum.rb +12 -0
- data/lib/auth0/types/bulk_update_acul_response_content.rb +9 -0
- data/lib/auth0/types/certificate_subject_dn_credential.rb +12 -0
- data/lib/auth0/types/certificate_subject_dn_credential_type_enum.rb +11 -0
- data/lib/auth0/types/change_password_ticket_identity.rb +12 -0
- data/lib/auth0/types/change_password_ticket_response_content.rb +9 -0
- data/lib/auth0/types/cimd_mapped_client_authentication_methods.rb +10 -0
- data/lib/auth0/types/cimd_mapped_client_authentication_methods_private_key_jwt.rb +10 -0
- data/lib/auth0/types/cimd_mapped_client_fields.rb +19 -0
- data/lib/auth0/types/cimd_mapped_private_key_jwt_credential.rb +11 -0
- data/lib/auth0/types/cimd_validation_result.rb +12 -0
- data/lib/auth0/types/client.rb +68 -0
- data/lib/auth0/types/client_addon_aws.rb +12 -0
- data/lib/auth0/types/client_addon_azure_blob.rb +22 -0
- data/lib/auth0/types/client_addon_azure_sb.rb +14 -0
- data/lib/auth0/types/client_addon_box.rb +23 -0
- data/lib/auth0/types/client_addon_cloud_bees.rb +23 -0
- data/lib/auth0/types/client_addon_concur.rb +23 -0
- data/lib/auth0/types/client_addon_dropbox.rb +23 -0
- data/lib/auth0/types/client_addon_echo_sign.rb +10 -0
- data/lib/auth0/types/client_addon_egnyte.rb +10 -0
- data/lib/auth0/types/client_addon_firebase.rb +14 -0
- data/lib/auth0/types/client_addon_layer.rb +14 -0
- data/lib/auth0/types/client_addon_mscrm.rb +10 -0
- data/lib/auth0/types/client_addon_new_relic.rb +10 -0
- data/lib/auth0/types/client_addon_oag.rb +8 -0
- data/lib/auth0/types/client_addon_office365.rb +11 -0
- data/lib/auth0/types/client_addon_rms.rb +10 -0
- data/lib/auth0/types/client_addon_salesforce.rb +10 -0
- data/lib/auth0/types/client_addon_salesforce_api.rb +13 -0
- data/lib/auth0/types/client_addon_salesforce_sandbox_api.rb +13 -0
- data/lib/auth0/types/client_addon_saml.rb +25 -0
- data/lib/auth0/types/client_addon_saml_mapping.rb +23 -0
- data/lib/auth0/types/client_addon_sapapi.rb +15 -0
- data/lib/auth0/types/client_addon_sentry.rb +11 -0
- data/lib/auth0/types/client_addon_share_point.rb +11 -0
- data/lib/auth0/types/client_addon_share_point_external_url.rb +13 -0
- data/lib/auth0/types/client_addon_slack.rb +11 -0
- data/lib/auth0/types/client_addon_spring_cm.rb +10 -0
- data/lib/auth0/types/client_addon_sso_integration.rb +10 -0
- data/lib/auth0/types/client_addon_wams.rb +10 -0
- data/lib/auth0/types/client_addon_ws_fed.rb +23 -0
- data/lib/auth0/types/client_addon_zendesk.rb +10 -0
- data/lib/auth0/types/client_addon_zoom.rb +10 -0
- data/lib/auth0/types/client_addons.rb +39 -0
- data/lib/auth0/types/client_app_type_enum.rb +35 -0
- data/lib/auth0/types/client_async_approval_notifications_channels_api_patch_configuration.rb +23 -0
- data/lib/auth0/types/client_async_approval_notifications_channels_api_post_configuration.rb +23 -0
- data/lib/auth0/types/client_authentication_method.rb +12 -0
- data/lib/auth0/types/client_authentication_method_private_key_jwt.rb +11 -0
- data/lib/auth0/types/client_authentication_method_private_key_jwt_credentials.rb +23 -0
- data/lib/auth0/types/client_authentication_method_self_signed_tls_client_auth.rb +11 -0
- data/lib/auth0/types/client_authentication_method_self_signed_tls_client_auth_credentials.rb +23 -0
- data/lib/auth0/types/client_authentication_method_tls_client_auth.rb +11 -0
- data/lib/auth0/types/client_authentication_method_tls_client_auth_credentials.rb +23 -0
- data/lib/auth0/types/client_compliance_level_enum.rb +15 -0
- data/lib/auth0/types/client_create_authentication_method.rb +12 -0
- data/lib/auth0/types/client_create_authentication_method_private_key_jwt.rb +11 -0
- data/lib/auth0/types/client_create_authentication_method_private_key_jwt_credentials.rb +23 -0
- data/lib/auth0/types/client_create_authentication_method_tls_client_auth.rb +11 -0
- data/lib/auth0/types/client_create_authentication_method_tls_client_auth_credentials.rb +23 -0
- data/lib/auth0/types/client_credential.rb +18 -0
- data/lib/auth0/types/client_credential_algorithm_enum.rb +13 -0
- data/lib/auth0/types/client_credential_type_enum.rb +13 -0
- data/lib/auth0/types/client_default_organization.rb +11 -0
- data/lib/auth0/types/client_default_organization_flows_enum.rb +11 -0
- data/lib/auth0/types/client_encryption_key.rb +12 -0
- data/lib/auth0/types/client_external_metadata_created_by_enum.rb +12 -0
- data/lib/auth0/types/client_external_metadata_type_enum.rb +11 -0
- data/lib/auth0/types/client_grant_allow_any_organization_enum.rb +23 -0
- data/lib/auth0/types/client_grant_default_for_enum.rb +11 -0
- data/lib/auth0/types/client_grant_organization_nullable_usage_enum.rb +13 -0
- data/lib/auth0/types/client_grant_organization_usage_enum.rb +13 -0
- data/lib/auth0/types/client_grant_response_content.rb +19 -0
- data/lib/auth0/types/client_grant_subject_type_enum.rb +12 -0
- data/lib/auth0/types/client_jwt_configuration.rb +13 -0
- data/lib/auth0/types/client_jwt_configuration_scopes.rb +23 -0
- data/lib/auth0/types/client_metadata.rb +23 -0
- data/lib/auth0/types/client_mobile.rb +11 -0
- data/lib/auth0/types/client_mobile_android.rb +11 -0
- data/lib/auth0/types/client_mobilei_os.rb +11 -0
- data/lib/auth0/types/client_my_organization_configuration_allowed_strategies_enum.rb +17 -0
- data/lib/auth0/types/client_my_organization_deletion_behavior_enum.rb +12 -0
- data/lib/auth0/types/client_my_organization_patch_configuration.rb +15 -0
- data/lib/auth0/types/client_my_organization_post_configuration.rb +15 -0
- data/lib/auth0/types/client_my_organization_response_configuration.rb +15 -0
- data/lib/auth0/types/client_oidc_backchannel_logout_initiators.rb +11 -0
- data/lib/auth0/types/client_oidc_backchannel_logout_initiators_enum.rb +19 -0
- data/lib/auth0/types/client_oidc_backchannel_logout_initiators_mode_enum.rb +12 -0
- data/lib/auth0/types/client_oidc_backchannel_logout_session_metadata.rb +10 -0
- data/lib/auth0/types/client_oidc_backchannel_logout_settings.rb +12 -0
- data/lib/auth0/types/client_organization_discovery_enum.rb +12 -0
- data/lib/auth0/types/client_organization_require_behavior_enum.rb +13 -0
- data/lib/auth0/types/client_organization_require_behavior_patch_enum.rb +13 -0
- data/lib/auth0/types/client_organization_usage_enum.rb +13 -0
- data/lib/auth0/types/client_organization_usage_patch_enum.rb +13 -0
- data/lib/auth0/types/client_redirection_policy_enum.rb +12 -0
- data/lib/auth0/types/client_refresh_token_configuration.rb +17 -0
- data/lib/auth0/types/client_refresh_token_policy.rb +10 -0
- data/lib/auth0/types/client_session_transfer_allowed_authentication_methods_enum.rb +12 -0
- data/lib/auth0/types/client_session_transfer_configuration.rb +15 -0
- data/lib/auth0/types/client_session_transfer_device_binding_enum.rb +13 -0
- data/lib/auth0/types/client_signed_request_object_with_credential_id.rb +11 -0
- data/lib/auth0/types/client_signed_request_object_with_public_key.rb +11 -0
- data/lib/auth0/types/client_signing_key.rb +11 -0
- data/lib/auth0/types/client_signing_keys.rb +23 -0
- data/lib/auth0/types/client_third_party_security_mode_enum.rb +12 -0
- data/lib/auth0/types/client_token_endpoint_auth_method_enum.rb +13 -0
- data/lib/auth0/types/client_token_endpoint_auth_method_or_null_enum.rb +13 -0
- data/lib/auth0/types/client_token_exchange_configuration.rb +10 -0
- data/lib/auth0/types/client_token_exchange_configuration_or_null.rb +10 -0
- data/lib/auth0/types/client_token_exchange_type_enum.rb +12 -0
- data/lib/auth0/types/connected_account.rb +17 -0
- data/lib/auth0/types/connected_account_access_type_enum.rb +11 -0
- data/lib/auth0/types/connection_access_token_urlo_auth1.rb +23 -0
- data/lib/auth0/types/connection_acr_values_supported.rb +23 -0
- data/lib/auth0/types/connection_admin_access_token_expires_in_google_apps.rb +23 -0
- data/lib/auth0/types/connection_admin_access_token_google_apps.rb +23 -0
- data/lib/auth0/types/connection_admin_refresh_token_google_apps.rb +23 -0
- data/lib/auth0/types/connection_agent_ipad.rb +23 -0
- data/lib/auth0/types/connection_agent_mode_ad.rb +23 -0
- data/lib/auth0/types/connection_agent_version_ad.rb +23 -0
- data/lib/auth0/types/connection_allowed_audiences_google_o_auth2.rb +23 -0
- data/lib/auth0/types/connection_api_behavior_enum.rb +12 -0
- data/lib/auth0/types/connection_api_enable_groups.rb +23 -0
- data/lib/auth0/types/connection_api_enable_groups_google_apps.rb +23 -0
- data/lib/auth0/types/connection_api_enable_users.rb +23 -0
- data/lib/auth0/types/connection_api_enable_users_google_apps.rb +23 -0
- data/lib/auth0/types/connection_app_domain_azure_ad.rb +23 -0
- data/lib/auth0/types/connection_attribute_identifier.rb +10 -0
- data/lib/auth0/types/connection_attribute_map_attributes.rb +23 -0
- data/lib/auth0/types/connection_attribute_map_oidc.rb +13 -0
- data/lib/auth0/types/connection_attribute_map_okta.rb +12 -0
- data/lib/auth0/types/connection_attribute_map_userinfo_scope.rb +23 -0
- data/lib/auth0/types/connection_attributes.rb +12 -0
- data/lib/auth0/types/connection_auth_params_additional_properties_o_auth2.rb +23 -0
- data/lib/auth0/types/connection_auth_params_email.rb +23 -0
- data/lib/auth0/types/connection_auth_params_map.rb +23 -0
- data/lib/auth0/types/connection_auth_params_o_auth2.rb +23 -0
- data/lib/auth0/types/connection_authentication_methods.rb +13 -0
- data/lib/auth0/types/connection_authentication_purpose.rb +10 -0
- data/lib/auth0/types/connection_authorization_endpoint.rb +23 -0
- data/lib/auth0/types/connection_base_url_exact.rb +23 -0
- data/lib/auth0/types/connection_brute_force_protection.rb +23 -0
- data/lib/auth0/types/connection_calculated_thumbprint_saml.rb +23 -0
- data/lib/auth0/types/connection_certs_ad.rb +23 -0
- data/lib/auth0/types/connection_claim_types_supported.rb +23 -0
- data/lib/auth0/types/connection_claims_locales_supported.rb +23 -0
- data/lib/auth0/types/connection_claims_parameter_supported.rb +23 -0
- data/lib/auth0/types/connection_claims_supported.rb +23 -0
- data/lib/auth0/types/connection_client_id.rb +23 -0
- data/lib/auth0/types/connection_client_id_amazon.rb +23 -0
- data/lib/auth0/types/connection_client_id_azure_ad.rb +23 -0
- data/lib/auth0/types/connection_client_id_bitbucket.rb +23 -0
- data/lib/auth0/types/connection_client_id_exact.rb +23 -0
- data/lib/auth0/types/connection_client_id_facebook.rb +23 -0
- data/lib/auth0/types/connection_client_id_google_apps.rb +23 -0
- data/lib/auth0/types/connection_client_id_google_o_auth2.rb +23 -0
- data/lib/auth0/types/connection_client_id_line.rb +23 -0
- data/lib/auth0/types/connection_client_id_linkedin.rb +23 -0
- data/lib/auth0/types/connection_client_id_o_auth1.rb +23 -0
- data/lib/auth0/types/connection_client_id_o_auth2.rb +23 -0
- data/lib/auth0/types/connection_client_id_oidc.rb +23 -0
- data/lib/auth0/types/connection_client_id_paypal.rb +23 -0
- data/lib/auth0/types/connection_client_id_salesforce.rb +23 -0
- data/lib/auth0/types/connection_client_id_windows_live.rb +23 -0
- data/lib/auth0/types/connection_client_protocol_saml.rb +23 -0
- data/lib/auth0/types/connection_client_secret.rb +23 -0
- data/lib/auth0/types/connection_client_secret_amazon.rb +23 -0
- data/lib/auth0/types/connection_client_secret_azure_ad.rb +23 -0
- data/lib/auth0/types/connection_client_secret_bitbucket.rb +23 -0
- data/lib/auth0/types/connection_client_secret_exact.rb +23 -0
- data/lib/auth0/types/connection_client_secret_facebook.rb +23 -0
- data/lib/auth0/types/connection_client_secret_google_apps.rb +23 -0
- data/lib/auth0/types/connection_client_secret_google_o_auth2.rb +23 -0
- data/lib/auth0/types/connection_client_secret_line.rb +23 -0
- data/lib/auth0/types/connection_client_secret_linkedin.rb +23 -0
- data/lib/auth0/types/connection_client_secret_o_auth1.rb +23 -0
- data/lib/auth0/types/connection_client_secret_o_auth2.rb +23 -0
- data/lib/auth0/types/connection_client_secret_oidc.rb +23 -0
- data/lib/auth0/types/connection_client_secret_paypal.rb +23 -0
- data/lib/auth0/types/connection_client_secret_salesforce.rb +23 -0
- data/lib/auth0/types/connection_client_secret_windows_live.rb +23 -0
- data/lib/auth0/types/connection_common.rb +12 -0
- data/lib/auth0/types/connection_community_base_url_salesforce.rb +23 -0
- data/lib/auth0/types/connection_configuration.rb +23 -0
- data/lib/auth0/types/connection_connected_accounts_purpose.rb +11 -0
- data/lib/auth0/types/connection_connected_accounts_purpose_xaa.rb +11 -0
- data/lib/auth0/types/connection_connection_settings.rb +11 -0
- data/lib/auth0/types/connection_connection_settings_pkce_enum.rb +14 -0
- data/lib/auth0/types/connection_custom_headers_o_auth2.rb +23 -0
- data/lib/auth0/types/connection_custom_scripts.rb +18 -0
- data/lib/auth0/types/connection_debug_saml.rb +23 -0
- data/lib/auth0/types/connection_decryption_key_saml.rb +15 -0
- data/lib/auth0/types/connection_decryption_key_saml_cert.rb +11 -0
- data/lib/auth0/types/connection_destination_url_saml.rb +23 -0
- data/lib/auth0/types/connection_digest_algorithm_enum_saml.rb +12 -0
- data/lib/auth0/types/connection_digest_algorithm_saml.rb +23 -0
- data/lib/auth0/types/connection_disable_self_service_change_password.rb +23 -0
- data/lib/auth0/types/connection_disable_signup.rb +23 -0
- data/lib/auth0/types/connection_disable_signup_sms.rb +23 -0
- data/lib/auth0/types/connection_discovery_url.rb +23 -0
- data/lib/auth0/types/connection_display_name.rb +23 -0
- data/lib/auth0/types/connection_display_values_supported.rb +23 -0
- data/lib/auth0/types/connection_domain_aliases.rb +23 -0
- data/lib/auth0/types/connection_domain_aliases_ad.rb +23 -0
- data/lib/auth0/types/connection_domain_aliases_azure_ad.rb +23 -0
- data/lib/auth0/types/connection_domain_aliases_items_one.rb +23 -0
- data/lib/auth0/types/connection_domain_aliases_saml.rb +23 -0
- data/lib/auth0/types/connection_domain_google_apps.rb +23 -0
- data/lib/auth0/types/connection_domain_okta.rb +23 -0
- data/lib/auth0/types/connection_dpop_signing_alg_enum.rb +12 -0
- data/lib/auth0/types/connection_dpop_signing_alg_values_supported.rb +23 -0
- data/lib/auth0/types/connection_email_body_email.rb +23 -0
- data/lib/auth0/types/connection_email_email.rb +13 -0
- data/lib/auth0/types/connection_email_email_syntax.rb +11 -0
- data/lib/auth0/types/connection_email_from_email.rb +23 -0
- data/lib/auth0/types/connection_email_otp_authentication_method.rb +10 -0
- data/lib/auth0/types/connection_email_subject_email.rb +23 -0
- data/lib/auth0/types/connection_enable_script_context.rb +23 -0
- data/lib/auth0/types/connection_enabled_client.rb +9 -0
- data/lib/auth0/types/connection_enabled_clients.rb +23 -0
- data/lib/auth0/types/connection_enabled_database_customization.rb +23 -0
- data/lib/auth0/types/connection_end_session_endpoint.rb +23 -0
- data/lib/auth0/types/connection_entity_id_saml.rb +23 -0
- data/lib/auth0/types/connection_ext_admin.rb +23 -0
- data/lib/auth0/types/connection_ext_agreed_terms.rb +23 -0
- data/lib/auth0/types/connection_ext_agreed_terms_google_apps.rb +23 -0
- data/lib/auth0/types/connection_ext_assigned_plans.rb +23 -0
- data/lib/auth0/types/connection_ext_groups.rb +23 -0
- data/lib/auth0/types/connection_ext_groups_azure_ad.rb +23 -0
- data/lib/auth0/types/connection_ext_groups_google_apps.rb +23 -0
- data/lib/auth0/types/connection_ext_is_admin_google_apps.rb +23 -0
- data/lib/auth0/types/connection_ext_is_suspended.rb +23 -0
- data/lib/auth0/types/connection_ext_is_suspended_google_apps.rb +23 -0
- data/lib/auth0/types/connection_ext_profile.rb +23 -0
- data/lib/auth0/types/connection_federated_connections_access_tokens.rb +10 -0
- data/lib/auth0/types/connection_fields_map.rb +23 -0
- data/lib/auth0/types/connection_fields_map_saml.rb +23 -0
- data/lib/auth0/types/connection_fields_map_saml_value.rb +12 -0
- data/lib/auth0/types/connection_for_list.rb +19 -0
- data/lib/auth0/types/connection_for_organization.rb +13 -0
- data/lib/auth0/types/connection_forward_req_info_sms.rb +23 -0
- data/lib/auth0/types/connection_freeform_scopes_amazon.rb +23 -0
- data/lib/auth0/types/connection_freeform_scopes_google_o_auth2.rb +23 -0
- data/lib/auth0/types/connection_freeform_scopes_linkedin.rb +23 -0
- data/lib/auth0/types/connection_freeform_scopes_paypal.rb +23 -0
- data/lib/auth0/types/connection_freeform_scopes_salesforce.rb +23 -0
- data/lib/auth0/types/connection_freeform_scopes_windows_live.rb +23 -0
- data/lib/auth0/types/connection_from_sms.rb +23 -0
- data/lib/auth0/types/connection_gateway_authentication.rb +14 -0
- data/lib/auth0/types/connection_gateway_authentication_audience_sms.rb +23 -0
- data/lib/auth0/types/connection_gateway_authentication_method_sms.rb +23 -0
- data/lib/auth0/types/connection_gateway_authentication_sms.rb +14 -0
- data/lib/auth0/types/connection_gateway_authentication_subject_sms.rb +23 -0
- data/lib/auth0/types/connection_gateway_url_sms.rb +23 -0
- data/lib/auth0/types/connection_global_token_revocation_jwt_iss_saml.rb +23 -0
- data/lib/auth0/types/connection_global_token_revocation_jwt_sub_saml.rb +23 -0
- data/lib/auth0/types/connection_grant_types_supported.rb +23 -0
- data/lib/auth0/types/connection_handle_login_from_social_google_apps.rb +23 -0
- data/lib/auth0/types/connection_https_url_with_http_fallback.rb +23 -0
- data/lib/auth0/types/connection_https_url_with_http_fallback2048.rb +23 -0
- data/lib/auth0/types/connection_https_url_with_http_fallback255.rb +23 -0
- data/lib/auth0/types/connection_icon_url.rb +23 -0
- data/lib/auth0/types/connection_icon_url_adfs.rb +23 -0
- data/lib/auth0/types/connection_icon_url_azure_ad.rb +23 -0
- data/lib/auth0/types/connection_icon_url_google_apps.rb +23 -0
- data/lib/auth0/types/connection_icon_url_google_o_auth2.rb +23 -0
- data/lib/auth0/types/connection_icon_url_saml.rb +23 -0
- data/lib/auth0/types/connection_id.rb +23 -0
- data/lib/auth0/types/connection_id_token_encryption_alg_values_supported.rb +23 -0
- data/lib/auth0/types/connection_id_token_encryption_enc_values_supported.rb +23 -0
- data/lib/auth0/types/connection_id_token_signed_response_alg_enum.rb +17 -0
- data/lib/auth0/types/connection_id_token_signed_response_algs.rb +23 -0
- data/lib/auth0/types/connection_id_token_signing_alg_values_supported.rb +23 -0
- data/lib/auth0/types/connection_identifier_precedence.rb +23 -0
- data/lib/auth0/types/connection_identifier_precedence_enum.rb +13 -0
- data/lib/auth0/types/connection_identity_api_azure_ad.rb +23 -0
- data/lib/auth0/types/connection_identity_api_enum_azure_ad.rb +12 -0
- data/lib/auth0/types/connection_identity_provider_enum.rb +65 -0
- data/lib/auth0/types/connection_import_mode.rb +23 -0
- data/lib/auth0/types/connection_ips_ad.rb +23 -0
- data/lib/auth0/types/connection_is_domain_connection.rb +23 -0
- data/lib/auth0/types/connection_issuer.rb +23 -0
- data/lib/auth0/types/connection_jwks_uri.rb +23 -0
- data/lib/auth0/types/connection_key.rb +20 -0
- data/lib/auth0/types/connection_key_use_enum.rb +12 -0
- data/lib/auth0/types/connection_mapping_mode_enum_oidc.rb +12 -0
- data/lib/auth0/types/connection_mapping_mode_enum_okta.rb +12 -0
- data/lib/auth0/types/connection_max_groups_to_retrieve.rb +23 -0
- data/lib/auth0/types/connection_messaging_service_sid_sms.rb +23 -0
- data/lib/auth0/types/connection_metadata_url_saml.rb +23 -0
- data/lib/auth0/types/connection_metadata_xml.rb +23 -0
- data/lib/auth0/types/connection_metadata_xml_adfs.rb +23 -0
- data/lib/auth0/types/connection_metadata_xml_saml.rb +23 -0
- data/lib/auth0/types/connection_mfa.rb +11 -0
- data/lib/auth0/types/connection_name.rb +23 -0
- data/lib/auth0/types/connection_name_prefix_template.rb +23 -0
- data/lib/auth0/types/connection_non_persistent_attrs.rb +23 -0
- data/lib/auth0/types/connection_op_policy_uri.rb +23 -0
- data/lib/auth0/types/connection_op_tos_uri.rb +23 -0
- data/lib/auth0/types/connection_options.rb +23 -0
- data/lib/auth0/types/connection_options_ad.rb +26 -0
- data/lib/auth0/types/connection_options_adfs.rb +22 -0
- data/lib/auth0/types/connection_options_amazon.rb +17 -0
- data/lib/auth0/types/connection_options_apple.rb +19 -0
- data/lib/auth0/types/connection_options_auth0.rb +31 -0
- data/lib/auth0/types/connection_options_auth0oidc.rb +11 -0
- data/lib/auth0/types/connection_options_azure_ad.rb +76 -0
- data/lib/auth0/types/connection_options_baidu.rb +8 -0
- data/lib/auth0/types/connection_options_bitbucket.rb +15 -0
- data/lib/auth0/types/connection_options_bitly.rb +8 -0
- data/lib/auth0/types/connection_options_box.rb +8 -0
- data/lib/auth0/types/connection_options_client_id_github.rb +23 -0
- data/lib/auth0/types/connection_options_client_id_twitter.rb +23 -0
- data/lib/auth0/types/connection_options_client_secret_github.rb +23 -0
- data/lib/auth0/types/connection_options_client_secret_twitter.rb +23 -0
- data/lib/auth0/types/connection_options_common.rb +10 -0
- data/lib/auth0/types/connection_options_common_oidc.rb +30 -0
- data/lib/auth0/types/connection_options_common_saml.rb +24 -0
- data/lib/auth0/types/connection_options_custom.rb +23 -0
- data/lib/auth0/types/connection_options_daccount.rb +8 -0
- data/lib/auth0/types/connection_options_deflate_saml.rb +23 -0
- data/lib/auth0/types/connection_options_dropbox.rb +8 -0
- data/lib/auth0/types/connection_options_dwolla.rb +8 -0
- data/lib/auth0/types/connection_options_email.rb +15 -0
- data/lib/auth0/types/connection_options_evernote.rb +8 -0
- data/lib/auth0/types/connection_options_exact.rb +15 -0
- data/lib/auth0/types/connection_options_facebook.rb +56 -0
- data/lib/auth0/types/connection_options_fitbit.rb +8 -0
- data/lib/auth0/types/connection_options_freeform_scopes_github.rb +23 -0
- data/lib/auth0/types/connection_options_git_hub.rb +35 -0
- data/lib/auth0/types/connection_options_google_apps.rb +34 -0
- data/lib/auth0/types/connection_options_google_o_auth2.rb +82 -0
- data/lib/auth0/types/connection_options_idp_initiated_client_protocol_enum_saml.rb +13 -0
- data/lib/auth0/types/connection_options_idpinitiated_saml.rb +15 -0
- data/lib/auth0/types/connection_options_instagram.rb +8 -0
- data/lib/auth0/types/connection_options_ip.rb +23 -0
- data/lib/auth0/types/connection_options_line.rb +17 -0
- data/lib/auth0/types/connection_options_linkedin.rb +22 -0
- data/lib/auth0/types/connection_options_o_auth1.rb +17 -0
- data/lib/auth0/types/connection_options_o_auth1common.rb +12 -0
- data/lib/auth0/types/connection_options_o_auth2.rb +25 -0
- data/lib/auth0/types/connection_options_o_auth2common.rb +13 -0
- data/lib/auth0/types/connection_options_office365.rb +11 -0
- data/lib/auth0/types/connection_options_oidc.rb +12 -0
- data/lib/auth0/types/connection_options_oidc_metadata.rb +47 -0
- data/lib/auth0/types/connection_options_okta.rb +12 -0
- data/lib/auth0/types/connection_options_paypal.rb +18 -0
- data/lib/auth0/types/connection_options_ping_federate.rb +11 -0
- data/lib/auth0/types/connection_options_planning_center.rb +8 -0
- data/lib/auth0/types/connection_options_protocol_enum_twitter.rb +12 -0
- data/lib/auth0/types/connection_options_salesforce.rb +16 -0
- data/lib/auth0/types/connection_options_salesforce_community.rb +10 -0
- data/lib/auth0/types/connection_options_saml.rb +24 -0
- data/lib/auth0/types/connection_options_scope_github.rb +23 -0
- data/lib/auth0/types/connection_options_scope_twitter.rb +23 -0
- data/lib/auth0/types/connection_options_sharepoint.rb +8 -0
- data/lib/auth0/types/connection_options_shop.rb +8 -0
- data/lib/auth0/types/connection_options_shopify.rb +8 -0
- data/lib/auth0/types/connection_options_sms.rb +23 -0
- data/lib/auth0/types/connection_options_soundcloud.rb +8 -0
- data/lib/auth0/types/connection_options_thirty_seven_signals.rb +8 -0
- data/lib/auth0/types/connection_options_twitter.rb +20 -0
- data/lib/auth0/types/connection_options_untappd.rb +8 -0
- data/lib/auth0/types/connection_options_vkontakte.rb +8 -0
- data/lib/auth0/types/connection_options_weibo.rb +8 -0
- data/lib/auth0/types/connection_options_windows_live.rb +74 -0
- data/lib/auth0/types/connection_options_wordpress.rb +8 -0
- data/lib/auth0/types/connection_options_yahoo.rb +8 -0
- data/lib/auth0/types/connection_options_yandex.rb +8 -0
- data/lib/auth0/types/connection_passkey_authentication_method.rb +10 -0
- data/lib/auth0/types/connection_passkey_challenge_ui_enum.rb +13 -0
- data/lib/auth0/types/connection_passkey_options.rb +12 -0
- data/lib/auth0/types/connection_password_authentication_method.rb +12 -0
- data/lib/auth0/types/connection_password_complexity_options.rb +10 -0
- data/lib/auth0/types/connection_password_dictionary_options.rb +11 -0
- data/lib/auth0/types/connection_password_history_options.rb +11 -0
- data/lib/auth0/types/connection_password_no_personal_info_options.rb +10 -0
- data/lib/auth0/types/connection_password_options.rb +13 -0
- data/lib/auth0/types/connection_password_options_complexity.rb +15 -0
- data/lib/auth0/types/connection_password_options_dictionary.rb +12 -0
- data/lib/auth0/types/connection_password_options_history.rb +11 -0
- data/lib/auth0/types/connection_password_options_profile_data.rb +11 -0
- data/lib/auth0/types/connection_password_policy_enum.rb +15 -0
- data/lib/auth0/types/connection_phone_otp_authentication_method.rb +10 -0
- data/lib/auth0/types/connection_ping_federate_base_url.rb +23 -0
- data/lib/auth0/types/connection_ping_federate_base_url_ping_federate.rb +23 -0
- data/lib/auth0/types/connection_profile.rb +15 -0
- data/lib/auth0/types/connection_profile_bitbucket.rb +23 -0
- data/lib/auth0/types/connection_profile_config.rb +8 -0
- data/lib/auth0/types/connection_profile_enabled_features.rb +23 -0
- data/lib/auth0/types/connection_profile_id.rb +23 -0
- data/lib/auth0/types/connection_profile_name.rb +23 -0
- data/lib/auth0/types/connection_profile_organization.rb +11 -0
- data/lib/auth0/types/connection_profile_organization_assign_membership_on_login_enum.rb +13 -0
- data/lib/auth0/types/connection_profile_organization_show_as_button_enum.rb +13 -0
- data/lib/auth0/types/connection_profile_strategy_override.rb +11 -0
- data/lib/auth0/types/connection_profile_strategy_overrides.rb +17 -0
- data/lib/auth0/types/connection_profile_strategy_overrides_connection_config.rb +8 -0
- data/lib/auth0/types/connection_profile_strategy_overrides_enabled_features.rb +23 -0
- data/lib/auth0/types/connection_profile_template.rb +15 -0
- data/lib/auth0/types/connection_profile_template_item.rb +11 -0
- data/lib/auth0/types/connection_properties_options.rb +40 -0
- data/lib/auth0/types/connection_protocol_binding_enum_saml.rb +12 -0
- data/lib/auth0/types/connection_protocol_binding_saml.rb +23 -0
- data/lib/auth0/types/connection_provider_enum_sms.rb +12 -0
- data/lib/auth0/types/connection_provider_sms.rb +23 -0
- data/lib/auth0/types/connection_provisioning_ticket_url.rb +23 -0
- data/lib/auth0/types/connection_purposes.rb +11 -0
- data/lib/auth0/types/connection_realm_fallback.rb +23 -0
- data/lib/auth0/types/connection_realms.rb +23 -0
- data/lib/auth0/types/connection_recipient_url_saml.rb +23 -0
- data/lib/auth0/types/connection_registration_endpoint.rb +23 -0
- data/lib/auth0/types/connection_request_object_encryption_alg_values_supported.rb +23 -0
- data/lib/auth0/types/connection_request_object_encryption_enc_values_supported.rb +23 -0
- data/lib/auth0/types/connection_request_object_signing_alg_values_supported.rb +23 -0
- data/lib/auth0/types/connection_request_parameter_supported.rb +23 -0
- data/lib/auth0/types/connection_request_template_saml.rb +23 -0
- data/lib/auth0/types/connection_request_token_urlo_auth1.rb +23 -0
- data/lib/auth0/types/connection_request_uri_parameter_supported.rb +23 -0
- data/lib/auth0/types/connection_require_request_uri_registration.rb +23 -0
- data/lib/auth0/types/connection_requires_username.rb +23 -0
- data/lib/auth0/types/connection_response_common.rb +10 -0
- data/lib/auth0/types/connection_response_content_ad.rb +12 -0
- data/lib/auth0/types/connection_response_content_ad_strategy.rb +11 -0
- data/lib/auth0/types/connection_response_content_adfs.rb +13 -0
- data/lib/auth0/types/connection_response_content_adfs_strategy.rb +11 -0
- data/lib/auth0/types/connection_response_content_amazon.rb +11 -0
- data/lib/auth0/types/connection_response_content_amazon_strategy.rb +11 -0
- data/lib/auth0/types/connection_response_content_apple.rb +11 -0
- data/lib/auth0/types/connection_response_content_apple_strategy.rb +11 -0
- data/lib/auth0/types/connection_response_content_auth0.rb +11 -0
- data/lib/auth0/types/connection_response_content_auth0oidc.rb +11 -0
- data/lib/auth0/types/connection_response_content_auth0oidc_strategy.rb +11 -0
- data/lib/auth0/types/connection_response_content_auth0strategy.rb +11 -0
- data/lib/auth0/types/connection_response_content_azure_ad.rb +13 -0
- data/lib/auth0/types/connection_response_content_azure_ad_strategy.rb +11 -0
- data/lib/auth0/types/connection_response_content_baidu.rb +11 -0
- data/lib/auth0/types/connection_response_content_baidu_strategy.rb +11 -0
- data/lib/auth0/types/connection_response_content_bitbucket.rb +11 -0
- data/lib/auth0/types/connection_response_content_bitbucket_strategy.rb +11 -0
- data/lib/auth0/types/connection_response_content_bitly.rb +11 -0
- data/lib/auth0/types/connection_response_content_bitly_strategy.rb +11 -0
- data/lib/auth0/types/connection_response_content_box.rb +11 -0
- data/lib/auth0/types/connection_response_content_box_strategy.rb +11 -0
- data/lib/auth0/types/connection_response_content_custom.rb +12 -0
- data/lib/auth0/types/connection_response_content_custom_strategy.rb +11 -0
- data/lib/auth0/types/connection_response_content_daccount.rb +11 -0
- data/lib/auth0/types/connection_response_content_daccount_strategy.rb +11 -0
- data/lib/auth0/types/connection_response_content_dropbox.rb +11 -0
- data/lib/auth0/types/connection_response_content_dropbox_strategy.rb +11 -0
- data/lib/auth0/types/connection_response_content_dwolla.rb +11 -0
- data/lib/auth0/types/connection_response_content_dwolla_strategy.rb +11 -0
- data/lib/auth0/types/connection_response_content_email.rb +11 -0
- data/lib/auth0/types/connection_response_content_email_strategy.rb +11 -0
- data/lib/auth0/types/connection_response_content_evernote.rb +11 -0
- data/lib/auth0/types/connection_response_content_evernote_sandbox.rb +11 -0
- data/lib/auth0/types/connection_response_content_evernote_sandbox_strategy.rb +11 -0
- data/lib/auth0/types/connection_response_content_evernote_strategy.rb +11 -0
- data/lib/auth0/types/connection_response_content_exact.rb +11 -0
- data/lib/auth0/types/connection_response_content_exact_strategy.rb +11 -0
- data/lib/auth0/types/connection_response_content_facebook.rb +11 -0
- data/lib/auth0/types/connection_response_content_facebook_strategy.rb +11 -0
- data/lib/auth0/types/connection_response_content_fitbit.rb +11 -0
- data/lib/auth0/types/connection_response_content_fitbit_strategy.rb +11 -0
- data/lib/auth0/types/connection_response_content_git_hub.rb +11 -0
- data/lib/auth0/types/connection_response_content_git_hub_strategy.rb +11 -0
- data/lib/auth0/types/connection_response_content_google_apps.rb +13 -0
- data/lib/auth0/types/connection_response_content_google_apps_strategy.rb +11 -0
- data/lib/auth0/types/connection_response_content_google_o_auth2.rb +11 -0
- data/lib/auth0/types/connection_response_content_google_o_auth2strategy.rb +11 -0
- data/lib/auth0/types/connection_response_content_instagram.rb +11 -0
- data/lib/auth0/types/connection_response_content_instagram_strategy.rb +11 -0
- data/lib/auth0/types/connection_response_content_ip.rb +12 -0
- data/lib/auth0/types/connection_response_content_ip_strategy.rb +11 -0
- data/lib/auth0/types/connection_response_content_line.rb +11 -0
- data/lib/auth0/types/connection_response_content_line_strategy.rb +11 -0
- data/lib/auth0/types/connection_response_content_linkedin.rb +11 -0
- data/lib/auth0/types/connection_response_content_linkedin_strategy.rb +11 -0
- data/lib/auth0/types/connection_response_content_o_auth1.rb +11 -0
- data/lib/auth0/types/connection_response_content_o_auth1strategy.rb +11 -0
- data/lib/auth0/types/connection_response_content_o_auth2.rb +11 -0
- data/lib/auth0/types/connection_response_content_o_auth2strategy.rb +11 -0
- data/lib/auth0/types/connection_response_content_office365.rb +13 -0
- data/lib/auth0/types/connection_response_content_office365strategy.rb +11 -0
- data/lib/auth0/types/connection_response_content_oidc.rb +14 -0
- data/lib/auth0/types/connection_response_content_oidc_strategy.rb +11 -0
- data/lib/auth0/types/connection_response_content_okta.rb +12 -0
- data/lib/auth0/types/connection_response_content_okta_strategy.rb +11 -0
- data/lib/auth0/types/connection_response_content_paypal.rb +11 -0
- data/lib/auth0/types/connection_response_content_paypal_sandbox.rb +11 -0
- data/lib/auth0/types/connection_response_content_paypal_sandbox_strategy.rb +11 -0
- data/lib/auth0/types/connection_response_content_paypal_strategy.rb +11 -0
- data/lib/auth0/types/connection_response_content_ping_federate.rb +13 -0
- data/lib/auth0/types/connection_response_content_ping_federate_strategy.rb +11 -0
- data/lib/auth0/types/connection_response_content_planning_center.rb +11 -0
- data/lib/auth0/types/connection_response_content_planning_center_strategy.rb +11 -0
- data/lib/auth0/types/connection_response_content_salesforce.rb +11 -0
- data/lib/auth0/types/connection_response_content_salesforce_community.rb +11 -0
- data/lib/auth0/types/connection_response_content_salesforce_community_strategy.rb +11 -0
- data/lib/auth0/types/connection_response_content_salesforce_sandbox.rb +11 -0
- data/lib/auth0/types/connection_response_content_salesforce_sandbox_strategy.rb +11 -0
- data/lib/auth0/types/connection_response_content_salesforce_strategy.rb +11 -0
- data/lib/auth0/types/connection_response_content_saml.rb +13 -0
- data/lib/auth0/types/connection_response_content_saml_strategy.rb +11 -0
- data/lib/auth0/types/connection_response_content_sharepoint.rb +12 -0
- data/lib/auth0/types/connection_response_content_sharepoint_strategy.rb +11 -0
- data/lib/auth0/types/connection_response_content_shop.rb +11 -0
- data/lib/auth0/types/connection_response_content_shop_strategy.rb +11 -0
- data/lib/auth0/types/connection_response_content_shopify.rb +11 -0
- data/lib/auth0/types/connection_response_content_shopify_strategy.rb +11 -0
- data/lib/auth0/types/connection_response_content_sms.rb +11 -0
- data/lib/auth0/types/connection_response_content_sms_strategy.rb +11 -0
- data/lib/auth0/types/connection_response_content_soundcloud.rb +11 -0
- data/lib/auth0/types/connection_response_content_soundcloud_strategy.rb +11 -0
- data/lib/auth0/types/connection_response_content_thirty_seven_signals.rb +11 -0
- data/lib/auth0/types/connection_response_content_thirty_seven_signals_strategy.rb +11 -0
- data/lib/auth0/types/connection_response_content_twitter.rb +11 -0
- data/lib/auth0/types/connection_response_content_twitter_strategy.rb +11 -0
- data/lib/auth0/types/connection_response_content_untappd.rb +11 -0
- data/lib/auth0/types/connection_response_content_untappd_strategy.rb +11 -0
- data/lib/auth0/types/connection_response_content_vkontakte.rb +11 -0
- data/lib/auth0/types/connection_response_content_vkontakte_strategy.rb +11 -0
- data/lib/auth0/types/connection_response_content_weibo.rb +11 -0
- data/lib/auth0/types/connection_response_content_weibo_strategy.rb +11 -0
- data/lib/auth0/types/connection_response_content_windows_live.rb +11 -0
- data/lib/auth0/types/connection_response_content_windows_live_strategy.rb +11 -0
- data/lib/auth0/types/connection_response_content_wordpress.rb +11 -0
- data/lib/auth0/types/connection_response_content_wordpress_strategy.rb +11 -0
- data/lib/auth0/types/connection_response_content_yahoo.rb +11 -0
- data/lib/auth0/types/connection_response_content_yahoo_strategy.rb +11 -0
- data/lib/auth0/types/connection_response_content_yandex.rb +11 -0
- data/lib/auth0/types/connection_response_content_yandex_strategy.rb +11 -0
- data/lib/auth0/types/connection_response_modes_supported.rb +23 -0
- data/lib/auth0/types/connection_response_types_supported.rb +23 -0
- data/lib/auth0/types/connection_scope_amazon.rb +23 -0
- data/lib/auth0/types/connection_scope_array.rb +23 -0
- data/lib/auth0/types/connection_scope_array_facebook.rb +23 -0
- data/lib/auth0/types/connection_scope_array_windows_live.rb +23 -0
- data/lib/auth0/types/connection_scope_azure_ad.rb +23 -0
- data/lib/auth0/types/connection_scope_facebook.rb +23 -0
- data/lib/auth0/types/connection_scope_google_apps.rb +23 -0
- data/lib/auth0/types/connection_scope_google_o_auth2.rb +23 -0
- data/lib/auth0/types/connection_scope_item.rb +23 -0
- data/lib/auth0/types/connection_scope_item_google_apps.rb +23 -0
- data/lib/auth0/types/connection_scope_linkedin.rb +23 -0
- data/lib/auth0/types/connection_scope_o_auth2.rb +16 -0
- data/lib/auth0/types/connection_scope_oidc.rb +23 -0
- data/lib/auth0/types/connection_scope_paypal.rb +23 -0
- data/lib/auth0/types/connection_scope_salesforce.rb +23 -0
- data/lib/auth0/types/connection_scopes_supported.rb +23 -0
- data/lib/auth0/types/connection_scripts_o_auth1.rb +10 -0
- data/lib/auth0/types/connection_scripts_o_auth2.rb +11 -0
- data/lib/auth0/types/connection_send_back_channel_nonce.rb +23 -0
- data/lib/auth0/types/connection_service_documentation.rb +23 -0
- data/lib/auth0/types/connection_set_user_root_attributes_enum.rb +13 -0
- data/lib/auth0/types/connection_sha1thumbprint.rb +23 -0
- data/lib/auth0/types/connection_should_trust_email_verified_connection_enum.rb +12 -0
- data/lib/auth0/types/connection_show_as_button.rb +23 -0
- data/lib/auth0/types/connection_sign_in_endpoint_ad.rb +23 -0
- data/lib/auth0/types/connection_sign_in_endpoint_adfs.rb +23 -0
- data/lib/auth0/types/connection_sign_in_endpoint_saml.rb +23 -0
- data/lib/auth0/types/connection_sign_out_endpoint_saml.rb +23 -0
- data/lib/auth0/types/connection_sign_saml_request_saml.rb +23 -0
- data/lib/auth0/types/connection_signature_algorithm_enum_saml.rb +12 -0
- data/lib/auth0/types/connection_signature_algorithm_saml.rb +23 -0
- data/lib/auth0/types/connection_signature_method_o_auth1.rb +11 -0
- data/lib/auth0/types/connection_signing_cert_saml.rb +23 -0
- data/lib/auth0/types/connection_signing_certificate_der_saml.rb +23 -0
- data/lib/auth0/types/connection_signing_certificate_pem_ping_federate.rb +23 -0
- data/lib/auth0/types/connection_signing_certificate_pem_saml.rb +23 -0
- data/lib/auth0/types/connection_signing_key_saml.rb +11 -0
- data/lib/auth0/types/connection_signup_behavior_enum.rb +12 -0
- data/lib/auth0/types/connection_strategy_enum.rb +66 -0
- data/lib/auth0/types/connection_strategy_version_enum_linkedin.rb +23 -0
- data/lib/auth0/types/connection_strategy_version_enum_windows_live.rb +23 -0
- data/lib/auth0/types/connection_subject_types_supported.rb +23 -0
- data/lib/auth0/types/connection_template_sms.rb +23 -0
- data/lib/auth0/types/connection_template_syntax_enum_sms.rb +12 -0
- data/lib/auth0/types/connection_tenant_domain.rb +23 -0
- data/lib/auth0/types/connection_tenant_domain_ad.rb +23 -0
- data/lib/auth0/types/connection_tenant_domain_azure_ad_one.rb +23 -0
- data/lib/auth0/types/connection_tenant_domain_google_apps.rb +23 -0
- data/lib/auth0/types/connection_tenant_domain_saml.rb +23 -0
- data/lib/auth0/types/connection_tenant_id_azure_ad.rb +23 -0
- data/lib/auth0/types/connection_thumbprints.rb +23 -0
- data/lib/auth0/types/connection_thumbprints_ad.rb +23 -0
- data/lib/auth0/types/connection_thumbprints_saml.rb +23 -0
- data/lib/auth0/types/connection_token_endpoint.rb +23 -0
- data/lib/auth0/types/connection_token_endpoint_auth_method_enum.rb +12 -0
- data/lib/auth0/types/connection_token_endpoint_auth_methods_supported.rb +23 -0
- data/lib/auth0/types/connection_token_endpoint_auth_signing_alg_enum.rb +17 -0
- data/lib/auth0/types/connection_token_endpoint_auth_signing_alg_values_supported.rb +23 -0
- data/lib/auth0/types/connection_totp_email.rb +10 -0
- data/lib/auth0/types/connection_totp_length_email.rb +23 -0
- data/lib/auth0/types/connection_totp_length_passwordless.rb +23 -0
- data/lib/auth0/types/connection_totp_length_sms.rb +23 -0
- data/lib/auth0/types/connection_totp_sms.rb +11 -0
- data/lib/auth0/types/connection_totp_time_step_email.rb +23 -0
- data/lib/auth0/types/connection_totp_time_step_passwordless.rb +23 -0
- data/lib/auth0/types/connection_totp_time_step_sms.rb +23 -0
- data/lib/auth0/types/connection_twilio_sid_sms.rb +23 -0
- data/lib/auth0/types/connection_twilio_token_sms.rb +23 -0
- data/lib/auth0/types/connection_type_enum_oidc.rb +12 -0
- data/lib/auth0/types/connection_type_enum_okta.rb +11 -0
- data/lib/auth0/types/connection_ui_locales_supported.rb +23 -0
- data/lib/auth0/types/connection_upstream_additional_properties.rb +12 -0
- data/lib/auth0/types/connection_upstream_alias.rb +9 -0
- data/lib/auth0/types/connection_upstream_alias_enum.rb +22 -0
- data/lib/auth0/types/connection_upstream_params.rb +23 -0
- data/lib/auth0/types/connection_upstream_params_facebook.rb +23 -0
- data/lib/auth0/types/connection_upstream_value.rb +9 -0
- data/lib/auth0/types/connection_use_common_endpoint_azure_ad.rb +23 -0
- data/lib/auth0/types/connection_user_authorization_urlo_auth1.rb +23 -0
- data/lib/auth0/types/connection_user_id_attribute_saml.rb +23 -0
- data/lib/auth0/types/connection_userid_attribute_azure_ad.rb +23 -0
- data/lib/auth0/types/connection_userid_attribute_enum_azure_ad.rb +12 -0
- data/lib/auth0/types/connection_userinfo_encryption_alg_values_supported.rb +23 -0
- data/lib/auth0/types/connection_userinfo_encryption_enc_values_supported.rb +23 -0
- data/lib/auth0/types/connection_userinfo_endpoint.rb +23 -0
- data/lib/auth0/types/connection_userinfo_signing_alg_values_supported.rb +23 -0
- data/lib/auth0/types/connection_username_validation_options.rb +10 -0
- data/lib/auth0/types/connection_validation_options.rb +10 -0
- data/lib/auth0/types/connection_waad_protocol.rb +23 -0
- data/lib/auth0/types/connection_waad_protocol_enum_azure_ad.rb +12 -0
- data/lib/auth0/types/connections_metadata.rb +23 -0
- data/lib/auth0/types/create_action_module_response_content.rb +19 -0
- data/lib/auth0/types/create_action_module_version_response_content.rb +15 -0
- data/lib/auth0/types/create_action_response_content.rb +25 -0
- data/lib/auth0/types/create_branding_phone_provider_response_content.rb +17 -0
- data/lib/auth0/types/create_branding_theme_response_content.rb +15 -0
- data/lib/auth0/types/create_client_authentication_method_self_signed_tls_client_auth.rb +11 -0
- data/lib/auth0/types/create_client_authentication_method_self_signed_tls_client_auth_credentials.rb +23 -0
- data/lib/auth0/types/create_client_grant_response_content.rb +19 -0
- data/lib/auth0/types/create_client_response_content.rb +68 -0
- data/lib/auth0/types/create_connection_common.rb +13 -0
- data/lib/auth0/types/create_connection_profile_response_content.rb +15 -0
- data/lib/auth0/types/create_connection_request_content_ad.rb +11 -0
- data/lib/auth0/types/create_connection_request_content_ad_strategy.rb +11 -0
- data/lib/auth0/types/create_connection_request_content_adfs.rb +12 -0
- data/lib/auth0/types/create_connection_request_content_adfs_strategy.rb +11 -0
- data/lib/auth0/types/create_connection_request_content_amazon.rb +11 -0
- data/lib/auth0/types/create_connection_request_content_amazon_strategy.rb +11 -0
- data/lib/auth0/types/create_connection_request_content_apple.rb +11 -0
- data/lib/auth0/types/create_connection_request_content_apple_strategy.rb +11 -0
- data/lib/auth0/types/create_connection_request_content_auth0.rb +12 -0
- data/lib/auth0/types/create_connection_request_content_auth0oidc.rb +11 -0
- data/lib/auth0/types/create_connection_request_content_auth0oidc_strategy.rb +11 -0
- data/lib/auth0/types/create_connection_request_content_auth0strategy.rb +11 -0
- data/lib/auth0/types/create_connection_request_content_azure_ad.rb +12 -0
- data/lib/auth0/types/create_connection_request_content_azure_ad_strategy.rb +11 -0
- data/lib/auth0/types/create_connection_request_content_baidu.rb +11 -0
- data/lib/auth0/types/create_connection_request_content_baidu_strategy.rb +11 -0
- data/lib/auth0/types/create_connection_request_content_bitbucket.rb +11 -0
- data/lib/auth0/types/create_connection_request_content_bitbucket_strategy.rb +11 -0
- data/lib/auth0/types/create_connection_request_content_bitly.rb +11 -0
- data/lib/auth0/types/create_connection_request_content_bitly_strategy.rb +11 -0
- data/lib/auth0/types/create_connection_request_content_box.rb +11 -0
- data/lib/auth0/types/create_connection_request_content_box_strategy.rb +11 -0
- data/lib/auth0/types/create_connection_request_content_custom.rb +11 -0
- data/lib/auth0/types/create_connection_request_content_custom_strategy.rb +11 -0
- data/lib/auth0/types/create_connection_request_content_daccount.rb +11 -0
- data/lib/auth0/types/create_connection_request_content_daccount_strategy.rb +11 -0
- data/lib/auth0/types/create_connection_request_content_dropbox.rb +11 -0
- data/lib/auth0/types/create_connection_request_content_dropbox_strategy.rb +11 -0
- data/lib/auth0/types/create_connection_request_content_dwolla.rb +11 -0
- data/lib/auth0/types/create_connection_request_content_dwolla_strategy.rb +11 -0
- data/lib/auth0/types/create_connection_request_content_email.rb +11 -0
- data/lib/auth0/types/create_connection_request_content_email_strategy.rb +11 -0
- data/lib/auth0/types/create_connection_request_content_evernote.rb +11 -0
- data/lib/auth0/types/create_connection_request_content_evernote_sandbox.rb +11 -0
- data/lib/auth0/types/create_connection_request_content_evernote_sandbox_strategy.rb +11 -0
- data/lib/auth0/types/create_connection_request_content_evernote_strategy.rb +11 -0
- data/lib/auth0/types/create_connection_request_content_exact.rb +11 -0
- data/lib/auth0/types/create_connection_request_content_exact_strategy.rb +11 -0
- data/lib/auth0/types/create_connection_request_content_facebook.rb +11 -0
- data/lib/auth0/types/create_connection_request_content_facebook_strategy.rb +11 -0
- data/lib/auth0/types/create_connection_request_content_fitbit.rb +11 -0
- data/lib/auth0/types/create_connection_request_content_fitbit_strategy.rb +11 -0
- data/lib/auth0/types/create_connection_request_content_git_hub.rb +11 -0
- data/lib/auth0/types/create_connection_request_content_git_hub_strategy.rb +11 -0
- data/lib/auth0/types/create_connection_request_content_google_apps.rb +12 -0
- data/lib/auth0/types/create_connection_request_content_google_apps_strategy.rb +11 -0
- data/lib/auth0/types/create_connection_request_content_google_o_auth2.rb +11 -0
- data/lib/auth0/types/create_connection_request_content_google_o_auth2strategy.rb +11 -0
- data/lib/auth0/types/create_connection_request_content_instagram.rb +11 -0
- data/lib/auth0/types/create_connection_request_content_instagram_strategy.rb +11 -0
- data/lib/auth0/types/create_connection_request_content_ip.rb +12 -0
- data/lib/auth0/types/create_connection_request_content_ip_strategy.rb +11 -0
- data/lib/auth0/types/create_connection_request_content_line.rb +11 -0
- data/lib/auth0/types/create_connection_request_content_line_strategy.rb +11 -0
- data/lib/auth0/types/create_connection_request_content_linkedin.rb +11 -0
- data/lib/auth0/types/create_connection_request_content_linkedin_strategy.rb +11 -0
- data/lib/auth0/types/create_connection_request_content_o_auth1.rb +11 -0
- data/lib/auth0/types/create_connection_request_content_o_auth1strategy.rb +11 -0
- data/lib/auth0/types/create_connection_request_content_o_auth2.rb +11 -0
- data/lib/auth0/types/create_connection_request_content_o_auth2strategy.rb +11 -0
- data/lib/auth0/types/create_connection_request_content_office365.rb +12 -0
- data/lib/auth0/types/create_connection_request_content_office365strategy.rb +11 -0
- data/lib/auth0/types/create_connection_request_content_oidc.rb +14 -0
- data/lib/auth0/types/create_connection_request_content_oidc_strategy.rb +11 -0
- data/lib/auth0/types/create_connection_request_content_okta.rb +12 -0
- data/lib/auth0/types/create_connection_request_content_okta_strategy.rb +11 -0
- data/lib/auth0/types/create_connection_request_content_paypal.rb +11 -0
- data/lib/auth0/types/create_connection_request_content_paypal_sandbox.rb +11 -0
- data/lib/auth0/types/create_connection_request_content_paypal_sandbox_strategy.rb +11 -0
- data/lib/auth0/types/create_connection_request_content_paypal_strategy.rb +11 -0
- data/lib/auth0/types/create_connection_request_content_ping_federate.rb +12 -0
- data/lib/auth0/types/create_connection_request_content_ping_federate_strategy.rb +11 -0
- data/lib/auth0/types/create_connection_request_content_planning_center.rb +11 -0
- data/lib/auth0/types/create_connection_request_content_planning_center_strategy.rb +11 -0
- data/lib/auth0/types/create_connection_request_content_salesforce.rb +11 -0
- data/lib/auth0/types/create_connection_request_content_salesforce_community.rb +11 -0
- data/lib/auth0/types/create_connection_request_content_salesforce_community_strategy.rb +11 -0
- data/lib/auth0/types/create_connection_request_content_salesforce_sandbox.rb +11 -0
- data/lib/auth0/types/create_connection_request_content_salesforce_sandbox_strategy.rb +11 -0
- data/lib/auth0/types/create_connection_request_content_salesforce_strategy.rb +11 -0
- data/lib/auth0/types/create_connection_request_content_saml.rb +12 -0
- data/lib/auth0/types/create_connection_request_content_saml_strategy.rb +11 -0
- data/lib/auth0/types/create_connection_request_content_sharepoint.rb +12 -0
- data/lib/auth0/types/create_connection_request_content_sharepoint_strategy.rb +11 -0
- data/lib/auth0/types/create_connection_request_content_shop.rb +11 -0
- data/lib/auth0/types/create_connection_request_content_shop_strategy.rb +11 -0
- data/lib/auth0/types/create_connection_request_content_shopify.rb +11 -0
- data/lib/auth0/types/create_connection_request_content_shopify_strategy.rb +11 -0
- data/lib/auth0/types/create_connection_request_content_sms.rb +11 -0
- data/lib/auth0/types/create_connection_request_content_sms_strategy.rb +11 -0
- data/lib/auth0/types/create_connection_request_content_soundcloud.rb +11 -0
- data/lib/auth0/types/create_connection_request_content_soundcloud_strategy.rb +11 -0
- data/lib/auth0/types/create_connection_request_content_thirty_seven_signals.rb +11 -0
- data/lib/auth0/types/create_connection_request_content_thirty_seven_signals_strategy.rb +11 -0
- data/lib/auth0/types/create_connection_request_content_twitter.rb +11 -0
- data/lib/auth0/types/create_connection_request_content_twitter_strategy.rb +11 -0
- data/lib/auth0/types/create_connection_request_content_untappd.rb +11 -0
- data/lib/auth0/types/create_connection_request_content_untappd_strategy.rb +11 -0
- data/lib/auth0/types/create_connection_request_content_vkontakte.rb +11 -0
- data/lib/auth0/types/create_connection_request_content_vkontakte_strategy.rb +11 -0
- data/lib/auth0/types/create_connection_request_content_weibo.rb +11 -0
- data/lib/auth0/types/create_connection_request_content_weibo_strategy.rb +11 -0
- data/lib/auth0/types/create_connection_request_content_windows_live.rb +11 -0
- data/lib/auth0/types/create_connection_request_content_windows_live_strategy.rb +11 -0
- data/lib/auth0/types/create_connection_request_content_wordpress.rb +11 -0
- data/lib/auth0/types/create_connection_request_content_wordpress_strategy.rb +11 -0
- data/lib/auth0/types/create_connection_request_content_yahoo.rb +11 -0
- data/lib/auth0/types/create_connection_request_content_yahoo_strategy.rb +11 -0
- data/lib/auth0/types/create_connection_request_content_yandex.rb +11 -0
- data/lib/auth0/types/create_connection_request_content_yandex_strategy.rb +11 -0
- data/lib/auth0/types/create_connection_response_content.rb +20 -0
- data/lib/auth0/types/create_custom_domain_response_content.rb +20 -0
- data/lib/auth0/types/create_directory_provisioning_request_content.rb +11 -0
- data/lib/auth0/types/create_directory_provisioning_response_content.rb +19 -0
- data/lib/auth0/types/create_directory_synchronization_response_content.rb +11 -0
- data/lib/auth0/types/create_email_provider_response_content.rb +13 -0
- data/lib/auth0/types/create_email_template_response_content.rb +17 -0
- data/lib/auth0/types/create_encryption_key_public_wrapping_response_content.rb +10 -0
- data/lib/auth0/types/create_encryption_key_response_content.rb +16 -0
- data/lib/auth0/types/create_encryption_key_type.rb +12 -0
- data/lib/auth0/types/create_event_stream_action_request_content.rb +12 -0
- data/lib/auth0/types/create_event_stream_event_bridge_request_content.rb +12 -0
- data/lib/auth0/types/create_event_stream_redelivery_response_content.rb +12 -0
- data/lib/auth0/types/create_event_stream_response_content.rb +13 -0
- data/lib/auth0/types/create_event_stream_test_event_response_content.rb +15 -0
- data/lib/auth0/types/create_event_stream_web_hook_request_content.rb +12 -0
- data/lib/auth0/types/create_export_users_fields.rb +10 -0
- data/lib/auth0/types/create_export_users_response_content.rb +16 -0
- data/lib/auth0/types/create_flow_response_content.rb +14 -0
- data/lib/auth0/types/create_flows_vault_connection_activecampaign.rb +12 -0
- data/lib/auth0/types/create_flows_vault_connection_activecampaign_api_key.rb +11 -0
- data/lib/auth0/types/create_flows_vault_connection_activecampaign_uninitialized.rb +10 -0
- data/lib/auth0/types/create_flows_vault_connection_airtable.rb +12 -0
- data/lib/auth0/types/create_flows_vault_connection_airtable_api_key.rb +11 -0
- data/lib/auth0/types/create_flows_vault_connection_airtable_uninitialized.rb +10 -0
- data/lib/auth0/types/create_flows_vault_connection_auth0.rb +12 -0
- data/lib/auth0/types/create_flows_vault_connection_auth0oauth_app.rb +11 -0
- data/lib/auth0/types/create_flows_vault_connection_auth0uninitialized.rb +10 -0
- data/lib/auth0/types/create_flows_vault_connection_bigquery.rb +12 -0
- data/lib/auth0/types/create_flows_vault_connection_bigquery_jwt.rb +11 -0
- data/lib/auth0/types/create_flows_vault_connection_bigquery_uninitialized.rb +10 -0
- data/lib/auth0/types/create_flows_vault_connection_clearbit.rb +12 -0
- data/lib/auth0/types/create_flows_vault_connection_clearbit_api_key.rb +11 -0
- data/lib/auth0/types/create_flows_vault_connection_clearbit_uninitialized.rb +10 -0
- data/lib/auth0/types/create_flows_vault_connection_docusign.rb +12 -0
- data/lib/auth0/types/create_flows_vault_connection_docusign_oauth_code.rb +11 -0
- data/lib/auth0/types/create_flows_vault_connection_docusign_uninitialized.rb +10 -0
- data/lib/auth0/types/create_flows_vault_connection_google_sheets.rb +12 -0
- data/lib/auth0/types/create_flows_vault_connection_google_sheets_oauth_code.rb +11 -0
- data/lib/auth0/types/create_flows_vault_connection_google_sheets_uninitialized.rb +10 -0
- data/lib/auth0/types/create_flows_vault_connection_http.rb +15 -0
- data/lib/auth0/types/create_flows_vault_connection_http_api_key.rb +11 -0
- data/lib/auth0/types/create_flows_vault_connection_http_basic_auth.rb +11 -0
- data/lib/auth0/types/create_flows_vault_connection_http_bearer.rb +11 -0
- data/lib/auth0/types/create_flows_vault_connection_http_oauth_client_credentials.rb +11 -0
- data/lib/auth0/types/create_flows_vault_connection_http_uninitialized.rb +10 -0
- data/lib/auth0/types/create_flows_vault_connection_hubspot.rb +13 -0
- data/lib/auth0/types/create_flows_vault_connection_hubspot_api_key.rb +11 -0
- data/lib/auth0/types/create_flows_vault_connection_hubspot_oauth_code.rb +11 -0
- data/lib/auth0/types/create_flows_vault_connection_hubspot_uninitialized.rb +10 -0
- data/lib/auth0/types/create_flows_vault_connection_jwt.rb +12 -0
- data/lib/auth0/types/create_flows_vault_connection_jwt_jwt.rb +11 -0
- data/lib/auth0/types/create_flows_vault_connection_jwt_uninitialized.rb +10 -0
- data/lib/auth0/types/create_flows_vault_connection_mailchimp.rb +13 -0
- data/lib/auth0/types/create_flows_vault_connection_mailchimp_api_key.rb +11 -0
- data/lib/auth0/types/create_flows_vault_connection_mailchimp_oauth_code.rb +11 -0
- data/lib/auth0/types/create_flows_vault_connection_mailchimp_uninitialized.rb +10 -0
- data/lib/auth0/types/create_flows_vault_connection_mailjet.rb +12 -0
- data/lib/auth0/types/create_flows_vault_connection_mailjet_api_key.rb +11 -0
- data/lib/auth0/types/create_flows_vault_connection_mailjet_uninitialized.rb +10 -0
- data/lib/auth0/types/create_flows_vault_connection_pipedrive.rb +13 -0
- data/lib/auth0/types/create_flows_vault_connection_pipedrive_oauth_code.rb +11 -0
- data/lib/auth0/types/create_flows_vault_connection_pipedrive_token.rb +11 -0
- data/lib/auth0/types/create_flows_vault_connection_pipedrive_uninitialized.rb +10 -0
- data/lib/auth0/types/create_flows_vault_connection_request_content.rb +31 -0
- data/lib/auth0/types/create_flows_vault_connection_response_content.rb +18 -0
- data/lib/auth0/types/create_flows_vault_connection_salesforce.rb +12 -0
- data/lib/auth0/types/create_flows_vault_connection_salesforce_oauth_code.rb +11 -0
- data/lib/auth0/types/create_flows_vault_connection_salesforce_uninitialized.rb +10 -0
- data/lib/auth0/types/create_flows_vault_connection_sendgrid.rb +12 -0
- data/lib/auth0/types/create_flows_vault_connection_sendgrid_api_key.rb +11 -0
- data/lib/auth0/types/create_flows_vault_connection_sendgrid_uninitialized.rb +10 -0
- data/lib/auth0/types/create_flows_vault_connection_slack.rb +13 -0
- data/lib/auth0/types/create_flows_vault_connection_slack_oauth_code.rb +11 -0
- data/lib/auth0/types/create_flows_vault_connection_slack_uninitialized.rb +10 -0
- data/lib/auth0/types/create_flows_vault_connection_slack_webhook.rb +11 -0
- data/lib/auth0/types/create_flows_vault_connection_stripe.rb +13 -0
- data/lib/auth0/types/create_flows_vault_connection_stripe_key_pair.rb +11 -0
- data/lib/auth0/types/create_flows_vault_connection_stripe_oauth_code.rb +11 -0
- data/lib/auth0/types/create_flows_vault_connection_stripe_uninitialized.rb +10 -0
- data/lib/auth0/types/create_flows_vault_connection_telegram.rb +12 -0
- data/lib/auth0/types/create_flows_vault_connection_telegram_token.rb +11 -0
- data/lib/auth0/types/create_flows_vault_connection_telegram_uninitialized.rb +10 -0
- data/lib/auth0/types/create_flows_vault_connection_twilio.rb +12 -0
- data/lib/auth0/types/create_flows_vault_connection_twilio_api_key.rb +11 -0
- data/lib/auth0/types/create_flows_vault_connection_twilio_uninitialized.rb +10 -0
- data/lib/auth0/types/create_flows_vault_connection_whatsapp.rb +12 -0
- data/lib/auth0/types/create_flows_vault_connection_whatsapp_token.rb +11 -0
- data/lib/auth0/types/create_flows_vault_connection_whatsapp_uninitialized.rb +10 -0
- data/lib/auth0/types/create_flows_vault_connection_zapier.rb +12 -0
- data/lib/auth0/types/create_flows_vault_connection_zapier_uninitialized.rb +10 -0
- data/lib/auth0/types/create_flows_vault_connection_zapier_webhook.rb +11 -0
- data/lib/auth0/types/create_form_response_content.rb +21 -0
- data/lib/auth0/types/create_guardian_enrollment_ticket_response_content.rb +10 -0
- data/lib/auth0/types/create_hook_response_content.rb +14 -0
- data/lib/auth0/types/create_hook_secret_request_content.rb +23 -0
- data/lib/auth0/types/create_import_users_response_content.rb +14 -0
- data/lib/auth0/types/create_log_stream_datadog_request_body.rb +15 -0
- data/lib/auth0/types/create_log_stream_event_bridge_request_body.rb +15 -0
- data/lib/auth0/types/create_log_stream_event_grid_request_body.rb +15 -0
- data/lib/auth0/types/create_log_stream_http_request_body.rb +15 -0
- data/lib/auth0/types/create_log_stream_mixpanel_request_body.rb +15 -0
- data/lib/auth0/types/create_log_stream_request_content.rb +18 -0
- data/lib/auth0/types/create_log_stream_response_content.rb +18 -0
- data/lib/auth0/types/create_log_stream_segment_request_body.rb +15 -0
- data/lib/auth0/types/create_log_stream_splunk_request_body.rb +15 -0
- data/lib/auth0/types/create_log_stream_sumo_request_body.rb +15 -0
- data/lib/auth0/types/create_organization_all_connection_response_content.rb +16 -0
- data/lib/auth0/types/create_organization_discovery_domain_response_content.rb +14 -0
- data/lib/auth0/types/create_organization_invitation_response_content.rb +21 -0
- data/lib/auth0/types/create_organization_response_content.rb +15 -0
- data/lib/auth0/types/create_phone_provider_send_test_response_content.rb +10 -0
- data/lib/auth0/types/create_phone_template_response_content.rb +15 -0
- data/lib/auth0/types/create_phone_template_test_notification_response_content.rb +9 -0
- data/lib/auth0/types/create_public_key_device_credential_response_content.rb +9 -0
- data/lib/auth0/types/create_resource_server_response_content.rb +28 -0
- data/lib/auth0/types/create_role_response_content.rb +11 -0
- data/lib/auth0/types/create_rule_response_content.rb +14 -0
- data/lib/auth0/types/create_scim_configuration_request_content.rb +10 -0
- data/lib/auth0/types/create_scim_configuration_response_content.rb +16 -0
- data/lib/auth0/types/create_scim_token_response_content.rb +13 -0
- data/lib/auth0/types/create_self_service_profile_response_content.rb +17 -0
- data/lib/auth0/types/create_self_service_profile_sso_ticket_response_content.rb +9 -0
- data/lib/auth0/types/create_token_exchange_profile_response_content.rb +15 -0
- data/lib/auth0/types/create_token_quota.rb +9 -0
- data/lib/auth0/types/create_user_attribute_profile_response_content.rb +12 -0
- data/lib/auth0/types/create_user_authentication_method_response_content.rb +22 -0
- data/lib/auth0/types/create_user_response_content.rb +29 -0
- data/lib/auth0/types/create_verifiable_credential_template_response_content.rb +17 -0
- data/lib/auth0/types/create_verification_email_response_content.rb +12 -0
- data/lib/auth0/types/created_authentication_method_type_enum.rb +14 -0
- data/lib/auth0/types/created_user_authentication_method_type_enum.rb +15 -0
- data/lib/auth0/types/credential_id.rb +9 -0
- data/lib/auth0/types/custom_domain.rb +21 -0
- data/lib/auth0/types/custom_domain_custom_client_ip_header.rb +23 -0
- data/lib/auth0/types/custom_domain_custom_client_ip_header_enum.rb +15 -0
- data/lib/auth0/types/custom_domain_provisioning_type_enum.rb +12 -0
- data/lib/auth0/types/custom_domain_status_filter_enum.rb +13 -0
- data/lib/auth0/types/custom_domain_tls_policy_enum.rb +11 -0
- data/lib/auth0/types/custom_domain_type_enum.rb +12 -0
- data/lib/auth0/types/custom_domain_verification_method_enum.rb +11 -0
- data/lib/auth0/types/custom_provider_configuration.rb +9 -0
- data/lib/auth0/types/custom_provider_credentials.rb +7 -0
- data/lib/auth0/types/custom_provider_delivery_method_enum.rb +12 -0
- data/lib/auth0/types/custom_signing_key_algorithm_enum.rb +19 -0
- data/lib/auth0/types/custom_signing_key_curve_enum.rb +13 -0
- data/lib/auth0/types/custom_signing_key_jwk.rb +23 -0
- data/lib/auth0/types/custom_signing_key_operation_enum.rb +11 -0
- data/lib/auth0/types/custom_signing_key_type_enum.rb +12 -0
- data/lib/auth0/types/custom_signing_key_use_enum.rb +11 -0
- data/lib/auth0/types/daily_stats.rb +14 -0
- data/lib/auth0/types/default_method_email_identifier_enum.rb +12 -0
- data/lib/auth0/types/default_token_quota.rb +12 -0
- data/lib/auth0/types/delete_hook_secret_request_content.rb +23 -0
- data/lib/auth0/types/delete_user_identity_response_content.rb +23 -0
- data/lib/auth0/types/delete_user_identity_response_content_item.rb +16 -0
- data/lib/auth0/types/deploy_action_response_content.rb +24 -0
- data/lib/auth0/types/deploy_action_version_request_content.rb +9 -0
- data/lib/auth0/types/deploy_action_version_response_content.rb +24 -0
- data/lib/auth0/types/device_credential.rb +14 -0
- data/lib/auth0/types/device_credential_public_key_type_enum.rb +11 -0
- data/lib/auth0/types/device_credential_type_enum.rb +13 -0
- data/lib/auth0/types/directory_provisioning.rb +19 -0
- data/lib/auth0/types/directory_provisioning_mapping_item.rb +10 -0
- data/lib/auth0/types/domain_certificate.rb +13 -0
- data/lib/auth0/types/domain_certificate_authority_enum.rb +12 -0
- data/lib/auth0/types/domain_certificate_status_enum.rb +14 -0
- data/lib/auth0/types/domain_metadata.rb +23 -0
- data/lib/auth0/types/domain_verification.rb +13 -0
- data/lib/auth0/types/domain_verification_method.rb +11 -0
- data/lib/auth0/types/domain_verification_method_name_enum.rb +12 -0
- data/lib/auth0/types/domain_verification_status_enum.rb +13 -0
- data/lib/auth0/types/email_attribute.rb +14 -0
- data/lib/auth0/types/email_mailgun_region_enum.rb +11 -0
- data/lib/auth0/types/email_provider_credentials.rb +14 -0
- data/lib/auth0/types/email_provider_credentials_schema.rb +19 -0
- data/lib/auth0/types/email_provider_credentials_schema_access_key_id.rb +11 -0
- data/lib/auth0/types/email_provider_credentials_schema_api_key.rb +11 -0
- data/lib/auth0/types/email_provider_credentials_schema_client_id.rb +11 -0
- data/lib/auth0/types/email_provider_credentials_schema_connection_string.rb +9 -0
- data/lib/auth0/types/email_provider_credentials_schema_smtp_host.rb +12 -0
- data/lib/auth0/types/email_provider_credentials_schema_three.rb +10 -0
- data/lib/auth0/types/email_provider_credentials_schema_zero.rb +9 -0
- data/lib/auth0/types/email_provider_name_enum.rb +19 -0
- data/lib/auth0/types/email_provider_settings.rb +23 -0
- data/lib/auth0/types/email_smtp_host.rb +23 -0
- data/lib/auth0/types/email_spark_post_region_enum.rb +11 -0
- data/lib/auth0/types/email_specific_provider_settings_with_additional_properties.rb +23 -0
- data/lib/auth0/types/email_template_name_enum.rb +23 -0
- data/lib/auth0/types/enabled_features_enum.rb +12 -0
- data/lib/auth0/types/encryption_key.rb +16 -0
- data/lib/auth0/types/encryption_key_public_wrapping_algorithm.rb +11 -0
- data/lib/auth0/types/encryption_key_state.rb +14 -0
- data/lib/auth0/types/encryption_key_type.rb +14 -0
- data/lib/auth0/types/event_stream_action_configuration.rb +10 -0
- data/lib/auth0/types/event_stream_action_destination.rb +10 -0
- data/lib/auth0/types/event_stream_action_destination_type_enum.rb +11 -0
- data/lib/auth0/types/event_stream_action_response_content.rb +15 -0
- data/lib/auth0/types/event_stream_cloud_event.rb +15 -0
- data/lib/auth0/types/event_stream_delivery.rb +15 -0
- data/lib/auth0/types/event_stream_delivery_attempt.rb +11 -0
- data/lib/auth0/types/event_stream_delivery_event_type_enum.rb +32 -0
- data/lib/auth0/types/event_stream_delivery_status_enum.rb +11 -0
- data/lib/auth0/types/event_stream_destination_patch.rb +12 -0
- data/lib/auth0/types/event_stream_event_bridge_aws_region_enum.rb +46 -0
- data/lib/auth0/types/event_stream_event_bridge_configuration.rb +12 -0
- data/lib/auth0/types/event_stream_event_bridge_destination.rb +10 -0
- data/lib/auth0/types/event_stream_event_bridge_destination_type_enum.rb +11 -0
- data/lib/auth0/types/event_stream_event_bridge_response_content.rb +15 -0
- data/lib/auth0/types/event_stream_event_type_enum.rb +32 -0
- data/lib/auth0/types/event_stream_response_content.rb +13 -0
- data/lib/auth0/types/event_stream_status_enum.rb +12 -0
- data/lib/auth0/types/event_stream_subscription.rb +10 -0
- data/lib/auth0/types/event_stream_test_event_type_enum.rb +32 -0
- data/lib/auth0/types/event_stream_webhook_authorization_response.rb +13 -0
- data/lib/auth0/types/event_stream_webhook_basic_auth.rb +11 -0
- data/lib/auth0/types/event_stream_webhook_basic_auth_method_enum.rb +11 -0
- data/lib/auth0/types/event_stream_webhook_bearer_auth.rb +10 -0
- data/lib/auth0/types/event_stream_webhook_bearer_auth_method_enum.rb +11 -0
- data/lib/auth0/types/event_stream_webhook_configuration.rb +11 -0
- data/lib/auth0/types/event_stream_webhook_custom_header_auth.rb +11 -0
- data/lib/auth0/types/event_stream_webhook_custom_header_auth_method_enum.rb +11 -0
- data/lib/auth0/types/event_stream_webhook_destination.rb +10 -0
- data/lib/auth0/types/event_stream_webhook_destination_type_enum.rb +11 -0
- data/lib/auth0/types/event_stream_webhook_response_content.rb +15 -0
- data/lib/auth0/types/express_configuration.rb +18 -0
- data/lib/auth0/types/express_configuration_or_null.rb +18 -0
- data/lib/auth0/types/extensibility_email_provider_credentials.rb +7 -0
- data/lib/auth0/types/federated_connection_token_set.rb +14 -0
- data/lib/auth0/types/flow_action.rb +35 -0
- data/lib/auth0/types/flow_action_activecampaign.rb +12 -0
- data/lib/auth0/types/flow_action_activecampaign_list_contacts.rb +15 -0
- data/lib/auth0/types/flow_action_activecampaign_list_contacts_action.rb +11 -0
- data/lib/auth0/types/flow_action_activecampaign_list_contacts_params.rb +10 -0
- data/lib/auth0/types/flow_action_activecampaign_list_contacts_type.rb +11 -0
- data/lib/auth0/types/flow_action_activecampaign_upsert_contact.rb +15 -0
- data/lib/auth0/types/flow_action_activecampaign_upsert_contact_action.rb +11 -0
- data/lib/auth0/types/flow_action_activecampaign_upsert_contact_params.rb +14 -0
- data/lib/auth0/types/flow_action_activecampaign_upsert_contact_params_custom_fields.rb +23 -0
- data/lib/auth0/types/flow_action_activecampaign_upsert_contact_type.rb +11 -0
- data/lib/auth0/types/flow_action_airtable.rb +13 -0
- data/lib/auth0/types/flow_action_airtable_create_record.rb +15 -0
- data/lib/auth0/types/flow_action_airtable_create_record_action.rb +11 -0
- data/lib/auth0/types/flow_action_airtable_create_record_params.rb +12 -0
- data/lib/auth0/types/flow_action_airtable_create_record_params_fields.rb +23 -0
- data/lib/auth0/types/flow_action_airtable_create_record_type.rb +11 -0
- data/lib/auth0/types/flow_action_airtable_list_records.rb +15 -0
- data/lib/auth0/types/flow_action_airtable_list_records_action.rb +11 -0
- data/lib/auth0/types/flow_action_airtable_list_records_params.rb +13 -0
- data/lib/auth0/types/flow_action_airtable_list_records_type.rb +11 -0
- data/lib/auth0/types/flow_action_airtable_update_record.rb +15 -0
- data/lib/auth0/types/flow_action_airtable_update_record_action.rb +11 -0
- data/lib/auth0/types/flow_action_airtable_update_record_params.rb +13 -0
- data/lib/auth0/types/flow_action_airtable_update_record_params_fields.rb +23 -0
- data/lib/auth0/types/flow_action_airtable_update_record_type.rb +11 -0
- data/lib/auth0/types/flow_action_auth0.rb +17 -0
- data/lib/auth0/types/flow_action_auth0create_user.rb +15 -0
- data/lib/auth0/types/flow_action_auth0create_user_action.rb +11 -0
- data/lib/auth0/types/flow_action_auth0create_user_params.rb +10 -0
- data/lib/auth0/types/flow_action_auth0create_user_params_payload.rb +23 -0
- data/lib/auth0/types/flow_action_auth0create_user_type.rb +11 -0
- data/lib/auth0/types/flow_action_auth0get_user.rb +15 -0
- data/lib/auth0/types/flow_action_auth0get_user_action.rb +11 -0
- data/lib/auth0/types/flow_action_auth0get_user_params.rb +10 -0
- data/lib/auth0/types/flow_action_auth0get_user_type.rb +11 -0
- data/lib/auth0/types/flow_action_auth0make_call.rb +15 -0
- data/lib/auth0/types/flow_action_auth0make_call_action.rb +11 -0
- data/lib/auth0/types/flow_action_auth0make_call_params.rb +12 -0
- data/lib/auth0/types/flow_action_auth0make_call_params_custom_vars.rb +23 -0
- data/lib/auth0/types/flow_action_auth0make_call_type.rb +11 -0
- data/lib/auth0/types/flow_action_auth0send_email.rb +15 -0
- data/lib/auth0/types/flow_action_auth0send_email_action.rb +11 -0
- data/lib/auth0/types/flow_action_auth0send_email_params.rb +13 -0
- data/lib/auth0/types/flow_action_auth0send_email_params_from.rb +10 -0
- data/lib/auth0/types/flow_action_auth0send_email_params_from_email.rb +23 -0
- data/lib/auth0/types/flow_action_auth0send_email_params_to.rb +23 -0
- data/lib/auth0/types/flow_action_auth0send_email_type.rb +11 -0
- data/lib/auth0/types/flow_action_auth0send_request.rb +15 -0
- data/lib/auth0/types/flow_action_auth0send_request_action.rb +11 -0
- data/lib/auth0/types/flow_action_auth0send_request_params.rb +14 -0
- data/lib/auth0/types/flow_action_auth0send_request_params_custom_vars.rb +23 -0
- data/lib/auth0/types/flow_action_auth0send_request_params_headers.rb +23 -0
- data/lib/auth0/types/flow_action_auth0send_request_params_method.rb +15 -0
- data/lib/auth0/types/flow_action_auth0send_request_params_payload.rb +13 -0
- data/lib/auth0/types/flow_action_auth0send_request_params_payload_object.rb +23 -0
- data/lib/auth0/types/flow_action_auth0send_request_params_query_params.rb +23 -0
- data/lib/auth0/types/flow_action_auth0send_request_params_query_params_value.rb +12 -0
- data/lib/auth0/types/flow_action_auth0send_request_type.rb +11 -0
- data/lib/auth0/types/flow_action_auth0send_sms.rb +15 -0
- data/lib/auth0/types/flow_action_auth0send_sms_action.rb +11 -0
- data/lib/auth0/types/flow_action_auth0send_sms_params.rb +12 -0
- data/lib/auth0/types/flow_action_auth0send_sms_params_custom_vars.rb +23 -0
- data/lib/auth0/types/flow_action_auth0send_sms_type.rb +11 -0
- data/lib/auth0/types/flow_action_auth0update_user.rb +15 -0
- data/lib/auth0/types/flow_action_auth0update_user_action.rb +11 -0
- data/lib/auth0/types/flow_action_auth0update_user_params.rb +11 -0
- data/lib/auth0/types/flow_action_auth0update_user_params_changes.rb +23 -0
- data/lib/auth0/types/flow_action_auth0update_user_type.rb +11 -0
- data/lib/auth0/types/flow_action_bigquery.rb +23 -0
- data/lib/auth0/types/flow_action_bigquery_insert_rows.rb +15 -0
- data/lib/auth0/types/flow_action_bigquery_insert_rows_action.rb +11 -0
- data/lib/auth0/types/flow_action_bigquery_insert_rows_params.rb +12 -0
- data/lib/auth0/types/flow_action_bigquery_insert_rows_params_data.rb +23 -0
- data/lib/auth0/types/flow_action_bigquery_insert_rows_type.rb +11 -0
- data/lib/auth0/types/flow_action_clearbit.rb +12 -0
- data/lib/auth0/types/flow_action_clearbit_find_company.rb +15 -0
- data/lib/auth0/types/flow_action_clearbit_find_company_action.rb +11 -0
- data/lib/auth0/types/flow_action_clearbit_find_company_params.rb +10 -0
- data/lib/auth0/types/flow_action_clearbit_find_company_type.rb +11 -0
- data/lib/auth0/types/flow_action_clearbit_find_person.rb +15 -0
- data/lib/auth0/types/flow_action_clearbit_find_person_action.rb +11 -0
- data/lib/auth0/types/flow_action_clearbit_find_person_params.rb +10 -0
- data/lib/auth0/types/flow_action_clearbit_find_person_type.rb +11 -0
- data/lib/auth0/types/flow_action_email.rb +23 -0
- data/lib/auth0/types/flow_action_email_verify_email.rb +15 -0
- data/lib/auth0/types/flow_action_email_verify_email_action.rb +11 -0
- data/lib/auth0/types/flow_action_email_verify_email_params.rb +10 -0
- data/lib/auth0/types/flow_action_email_verify_email_params_rules.rb +14 -0
- data/lib/auth0/types/flow_action_email_verify_email_type.rb +11 -0
- data/lib/auth0/types/flow_action_flow.rb +17 -0
- data/lib/auth0/types/flow_action_flow_boolean_condition.rb +15 -0
- data/lib/auth0/types/flow_action_flow_boolean_condition_action.rb +11 -0
- data/lib/auth0/types/flow_action_flow_boolean_condition_params.rb +10 -0
- data/lib/auth0/types/flow_action_flow_boolean_condition_type.rb +11 -0
- data/lib/auth0/types/flow_action_flow_delay_flow.rb +15 -0
- data/lib/auth0/types/flow_action_flow_delay_flow_action.rb +11 -0
- data/lib/auth0/types/flow_action_flow_delay_flow_params.rb +10 -0
- data/lib/auth0/types/flow_action_flow_delay_flow_params_number.rb +12 -0
- data/lib/auth0/types/flow_action_flow_delay_flow_params_units.rb +14 -0
- data/lib/auth0/types/flow_action_flow_delay_flow_type.rb +11 -0
- data/lib/auth0/types/flow_action_flow_do_nothing.rb +15 -0
- data/lib/auth0/types/flow_action_flow_do_nothing_action.rb +11 -0
- data/lib/auth0/types/flow_action_flow_do_nothing_params.rb +7 -0
- data/lib/auth0/types/flow_action_flow_do_nothing_type.rb +11 -0
- data/lib/auth0/types/flow_action_flow_error_message.rb +15 -0
- data/lib/auth0/types/flow_action_flow_error_message_action.rb +11 -0
- data/lib/auth0/types/flow_action_flow_error_message_params.rb +9 -0
- data/lib/auth0/types/flow_action_flow_error_message_type.rb +11 -0
- data/lib/auth0/types/flow_action_flow_map_value.rb +15 -0
- data/lib/auth0/types/flow_action_flow_map_value_action.rb +11 -0
- data/lib/auth0/types/flow_action_flow_map_value_params.rb +11 -0
- data/lib/auth0/types/flow_action_flow_map_value_params_cases.rb +23 -0
- data/lib/auth0/types/flow_action_flow_map_value_params_fallback.rb +14 -0
- data/lib/auth0/types/flow_action_flow_map_value_params_fallback_object.rb +23 -0
- data/lib/auth0/types/flow_action_flow_map_value_params_input.rb +12 -0
- data/lib/auth0/types/flow_action_flow_map_value_type.rb +11 -0
- data/lib/auth0/types/flow_action_flow_return_json.rb +15 -0
- data/lib/auth0/types/flow_action_flow_return_json_action.rb +11 -0
- data/lib/auth0/types/flow_action_flow_return_json_params.rb +9 -0
- data/lib/auth0/types/flow_action_flow_return_json_params_payload.rb +12 -0
- data/lib/auth0/types/flow_action_flow_return_json_params_payload_object.rb +23 -0
- data/lib/auth0/types/flow_action_flow_return_json_type.rb +11 -0
- data/lib/auth0/types/flow_action_flow_store_vars.rb +15 -0
- data/lib/auth0/types/flow_action_flow_store_vars_action.rb +11 -0
- data/lib/auth0/types/flow_action_flow_store_vars_params.rb +9 -0
- data/lib/auth0/types/flow_action_flow_store_vars_params_vars.rb +23 -0
- data/lib/auth0/types/flow_action_flow_store_vars_type.rb +11 -0
- data/lib/auth0/types/flow_action_google_sheets.rb +23 -0
- data/lib/auth0/types/flow_action_google_sheets_add_row.rb +15 -0
- data/lib/auth0/types/flow_action_google_sheets_add_row_action.rb +11 -0
- data/lib/auth0/types/flow_action_google_sheets_add_row_params.rb +12 -0
- data/lib/auth0/types/flow_action_google_sheets_add_row_params_sheet_id.rb +12 -0
- data/lib/auth0/types/flow_action_google_sheets_add_row_params_values.rb +23 -0
- data/lib/auth0/types/flow_action_google_sheets_add_row_type.rb +11 -0
- data/lib/auth0/types/flow_action_http.rb +23 -0
- data/lib/auth0/types/flow_action_http_send_request.rb +15 -0
- data/lib/auth0/types/flow_action_http_send_request_action.rb +11 -0
- data/lib/auth0/types/flow_action_http_send_request_params.rb +16 -0
- data/lib/auth0/types/flow_action_http_send_request_params_basic_auth.rb +10 -0
- data/lib/auth0/types/flow_action_http_send_request_params_content_type.rb +13 -0
- data/lib/auth0/types/flow_action_http_send_request_params_headers.rb +23 -0
- data/lib/auth0/types/flow_action_http_send_request_params_method.rb +15 -0
- data/lib/auth0/types/flow_action_http_send_request_params_payload.rb +13 -0
- data/lib/auth0/types/flow_action_http_send_request_params_payload_object.rb +23 -0
- data/lib/auth0/types/flow_action_http_send_request_params_query_params.rb +23 -0
- data/lib/auth0/types/flow_action_http_send_request_params_query_params_value.rb +12 -0
- data/lib/auth0/types/flow_action_http_send_request_type.rb +11 -0
- data/lib/auth0/types/flow_action_hubspot.rb +13 -0
- data/lib/auth0/types/flow_action_hubspot_enroll_contact.rb +15 -0
- data/lib/auth0/types/flow_action_hubspot_enroll_contact_action.rb +11 -0
- data/lib/auth0/types/flow_action_hubspot_enroll_contact_params.rb +11 -0
- data/lib/auth0/types/flow_action_hubspot_enroll_contact_params_workflow_id.rb +12 -0
- data/lib/auth0/types/flow_action_hubspot_enroll_contact_type.rb +11 -0
- data/lib/auth0/types/flow_action_hubspot_get_contact.rb +15 -0
- data/lib/auth0/types/flow_action_hubspot_get_contact_action.rb +11 -0
- data/lib/auth0/types/flow_action_hubspot_get_contact_params.rb +10 -0
- data/lib/auth0/types/flow_action_hubspot_get_contact_type.rb +11 -0
- data/lib/auth0/types/flow_action_hubspot_upsert_contact.rb +15 -0
- data/lib/auth0/types/flow_action_hubspot_upsert_contact_action.rb +11 -0
- data/lib/auth0/types/flow_action_hubspot_upsert_contact_params.rb +11 -0
- data/lib/auth0/types/flow_action_hubspot_upsert_contact_params_property.rb +9 -0
- data/lib/auth0/types/flow_action_hubspot_upsert_contact_type.rb +11 -0
- data/lib/auth0/types/flow_action_json.rb +13 -0
- data/lib/auth0/types/flow_action_json_create_json.rb +15 -0
- data/lib/auth0/types/flow_action_json_create_json_action.rb +11 -0
- data/lib/auth0/types/flow_action_json_create_json_params.rb +9 -0
- data/lib/auth0/types/flow_action_json_create_json_params_object.rb +23 -0
- data/lib/auth0/types/flow_action_json_create_json_type.rb +11 -0
- data/lib/auth0/types/flow_action_json_parse_json.rb +15 -0
- data/lib/auth0/types/flow_action_json_parse_json_action.rb +11 -0
- data/lib/auth0/types/flow_action_json_parse_json_params.rb +9 -0
- data/lib/auth0/types/flow_action_json_parse_json_type.rb +11 -0
- data/lib/auth0/types/flow_action_json_serialize_json.rb +15 -0
- data/lib/auth0/types/flow_action_json_serialize_json_action.rb +11 -0
- data/lib/auth0/types/flow_action_json_serialize_json_params.rb +9 -0
- data/lib/auth0/types/flow_action_json_serialize_json_params_object.rb +12 -0
- data/lib/auth0/types/flow_action_json_serialize_json_params_object_object.rb +23 -0
- data/lib/auth0/types/flow_action_json_serialize_json_type.rb +11 -0
- data/lib/auth0/types/flow_action_jwt.rb +13 -0
- data/lib/auth0/types/flow_action_jwt_decode_jwt.rb +15 -0
- data/lib/auth0/types/flow_action_jwt_decode_jwt_action.rb +11 -0
- data/lib/auth0/types/flow_action_jwt_decode_jwt_params.rb +9 -0
- data/lib/auth0/types/flow_action_jwt_decode_jwt_type.rb +11 -0
- data/lib/auth0/types/flow_action_jwt_sign_jwt.rb +15 -0
- data/lib/auth0/types/flow_action_jwt_sign_jwt_action.rb +11 -0
- data/lib/auth0/types/flow_action_jwt_sign_jwt_params.rb +14 -0
- data/lib/auth0/types/flow_action_jwt_sign_jwt_params_payload.rb +23 -0
- data/lib/auth0/types/flow_action_jwt_sign_jwt_type.rb +11 -0
- data/lib/auth0/types/flow_action_jwt_verify_jwt.rb +15 -0
- data/lib/auth0/types/flow_action_jwt_verify_jwt_action.rb +11 -0
- data/lib/auth0/types/flow_action_jwt_verify_jwt_params.rb +12 -0
- data/lib/auth0/types/flow_action_jwt_verify_jwt_type.rb +11 -0
- data/lib/auth0/types/flow_action_mailchimp.rb +23 -0
- data/lib/auth0/types/flow_action_mailchimp_upsert_member.rb +15 -0
- data/lib/auth0/types/flow_action_mailchimp_upsert_member_action.rb +11 -0
- data/lib/auth0/types/flow_action_mailchimp_upsert_member_params.rb +11 -0
- data/lib/auth0/types/flow_action_mailchimp_upsert_member_params_member.rb +11 -0
- data/lib/auth0/types/flow_action_mailchimp_upsert_member_params_member_merge_fields.rb +23 -0
- data/lib/auth0/types/flow_action_mailchimp_upsert_member_type.rb +11 -0
- data/lib/auth0/types/flow_action_mailjet.rb +23 -0
- data/lib/auth0/types/flow_action_mailjet_send_email.rb +15 -0
- data/lib/auth0/types/flow_action_mailjet_send_email_action.rb +11 -0
- data/lib/auth0/types/flow_action_mailjet_send_email_params.rb +12 -0
- data/lib/auth0/types/flow_action_mailjet_send_email_params_content.rb +9 -0
- data/lib/auth0/types/flow_action_mailjet_send_email_params_template_id.rb +10 -0
- data/lib/auth0/types/flow_action_mailjet_send_email_type.rb +11 -0
- data/lib/auth0/types/flow_action_otp.rb +12 -0
- data/lib/auth0/types/flow_action_otp_generate_code.rb +15 -0
- data/lib/auth0/types/flow_action_otp_generate_code_action.rb +11 -0
- data/lib/auth0/types/flow_action_otp_generate_code_params.rb +10 -0
- data/lib/auth0/types/flow_action_otp_generate_code_type.rb +11 -0
- data/lib/auth0/types/flow_action_otp_verify_code.rb +15 -0
- data/lib/auth0/types/flow_action_otp_verify_code_action.rb +11 -0
- data/lib/auth0/types/flow_action_otp_verify_code_params.rb +10 -0
- data/lib/auth0/types/flow_action_otp_verify_code_params_code.rb +12 -0
- data/lib/auth0/types/flow_action_otp_verify_code_type.rb +11 -0
- data/lib/auth0/types/flow_action_pipedrive.rb +13 -0
- data/lib/auth0/types/flow_action_pipedrive_add_deal.rb +15 -0
- data/lib/auth0/types/flow_action_pipedrive_add_deal_action.rb +11 -0
- data/lib/auth0/types/flow_action_pipedrive_add_deal_params.rb +16 -0
- data/lib/auth0/types/flow_action_pipedrive_add_deal_params_fields.rb +23 -0
- data/lib/auth0/types/flow_action_pipedrive_add_deal_params_organization_id.rb +12 -0
- data/lib/auth0/types/flow_action_pipedrive_add_deal_params_person_id.rb +12 -0
- data/lib/auth0/types/flow_action_pipedrive_add_deal_params_stage_id.rb +12 -0
- data/lib/auth0/types/flow_action_pipedrive_add_deal_params_user_id.rb +12 -0
- data/lib/auth0/types/flow_action_pipedrive_add_deal_type.rb +11 -0
- data/lib/auth0/types/flow_action_pipedrive_add_organization.rb +15 -0
- data/lib/auth0/types/flow_action_pipedrive_add_organization_action.rb +11 -0
- data/lib/auth0/types/flow_action_pipedrive_add_organization_params.rb +12 -0
- data/lib/auth0/types/flow_action_pipedrive_add_organization_params_fields.rb +23 -0
- data/lib/auth0/types/flow_action_pipedrive_add_organization_params_owner_id.rb +12 -0
- data/lib/auth0/types/flow_action_pipedrive_add_organization_type.rb +11 -0
- data/lib/auth0/types/flow_action_pipedrive_add_person.rb +15 -0
- data/lib/auth0/types/flow_action_pipedrive_add_person_action.rb +11 -0
- data/lib/auth0/types/flow_action_pipedrive_add_person_params.rb +15 -0
- data/lib/auth0/types/flow_action_pipedrive_add_person_params_fields.rb +23 -0
- data/lib/auth0/types/flow_action_pipedrive_add_person_params_organization_id.rb +12 -0
- data/lib/auth0/types/flow_action_pipedrive_add_person_params_owner_id.rb +12 -0
- data/lib/auth0/types/flow_action_pipedrive_add_person_type.rb +11 -0
- data/lib/auth0/types/flow_action_salesforce.rb +14 -0
- data/lib/auth0/types/flow_action_salesforce_create_lead.rb +15 -0
- data/lib/auth0/types/flow_action_salesforce_create_lead_action.rb +11 -0
- data/lib/auth0/types/flow_action_salesforce_create_lead_params.rb +15 -0
- data/lib/auth0/types/flow_action_salesforce_create_lead_params_payload.rb +23 -0
- data/lib/auth0/types/flow_action_salesforce_create_lead_type.rb +11 -0
- data/lib/auth0/types/flow_action_salesforce_get_lead.rb +15 -0
- data/lib/auth0/types/flow_action_salesforce_get_lead_action.rb +11 -0
- data/lib/auth0/types/flow_action_salesforce_get_lead_params.rb +10 -0
- data/lib/auth0/types/flow_action_salesforce_get_lead_type.rb +11 -0
- data/lib/auth0/types/flow_action_salesforce_search_leads.rb +15 -0
- data/lib/auth0/types/flow_action_salesforce_search_leads_action.rb +11 -0
- data/lib/auth0/types/flow_action_salesforce_search_leads_params.rb +12 -0
- data/lib/auth0/types/flow_action_salesforce_search_leads_params_search_field.rb +14 -0
- data/lib/auth0/types/flow_action_salesforce_search_leads_type.rb +11 -0
- data/lib/auth0/types/flow_action_salesforce_update_lead.rb +15 -0
- data/lib/auth0/types/flow_action_salesforce_update_lead_action.rb +11 -0
- data/lib/auth0/types/flow_action_salesforce_update_lead_params.rb +11 -0
- data/lib/auth0/types/flow_action_salesforce_update_lead_params_payload.rb +23 -0
- data/lib/auth0/types/flow_action_salesforce_update_lead_type.rb +11 -0
- data/lib/auth0/types/flow_action_sendgrid.rb +23 -0
- data/lib/auth0/types/flow_action_sendgrid_send_email.rb +15 -0
- data/lib/auth0/types/flow_action_sendgrid_send_email_action.rb +11 -0
- data/lib/auth0/types/flow_action_sendgrid_send_email_params.rb +11 -0
- data/lib/auth0/types/flow_action_sendgrid_send_email_params_person.rb +10 -0
- data/lib/auth0/types/flow_action_sendgrid_send_email_type.rb +11 -0
- data/lib/auth0/types/flow_action_slack.rb +23 -0
- data/lib/auth0/types/flow_action_slack_post_message.rb +15 -0
- data/lib/auth0/types/flow_action_slack_post_message_action.rb +11 -0
- data/lib/auth0/types/flow_action_slack_post_message_params.rb +11 -0
- data/lib/auth0/types/flow_action_slack_post_message_params_attachment.rb +12 -0
- data/lib/auth0/types/flow_action_slack_post_message_params_attachment_color.rb +13 -0
- data/lib/auth0/types/flow_action_slack_post_message_params_attachment_field.rb +11 -0
- data/lib/auth0/types/flow_action_slack_post_message_type.rb +11 -0
- data/lib/auth0/types/flow_action_stripe.rb +17 -0
- data/lib/auth0/types/flow_action_stripe_add_tax_id.rb +15 -0
- data/lib/auth0/types/flow_action_stripe_add_tax_id_action.rb +11 -0
- data/lib/auth0/types/flow_action_stripe_add_tax_id_params.rb +12 -0
- data/lib/auth0/types/flow_action_stripe_add_tax_id_type.rb +11 -0
- data/lib/auth0/types/flow_action_stripe_address.rb +14 -0
- data/lib/auth0/types/flow_action_stripe_create_customer.rb +15 -0
- data/lib/auth0/types/flow_action_stripe_create_customer_action.rb +11 -0
- data/lib/auth0/types/flow_action_stripe_create_customer_params.rb +17 -0
- data/lib/auth0/types/flow_action_stripe_create_customer_type.rb +11 -0
- data/lib/auth0/types/flow_action_stripe_create_portal_session.rb +15 -0
- data/lib/auth0/types/flow_action_stripe_create_portal_session_action.rb +11 -0
- data/lib/auth0/types/flow_action_stripe_create_portal_session_params.rb +11 -0
- data/lib/auth0/types/flow_action_stripe_create_portal_session_type.rb +11 -0
- data/lib/auth0/types/flow_action_stripe_delete_tax_id.rb +15 -0
- data/lib/auth0/types/flow_action_stripe_delete_tax_id_action.rb +11 -0
- data/lib/auth0/types/flow_action_stripe_delete_tax_id_params.rb +11 -0
- data/lib/auth0/types/flow_action_stripe_delete_tax_id_type.rb +11 -0
- data/lib/auth0/types/flow_action_stripe_find_customers.rb +15 -0
- data/lib/auth0/types/flow_action_stripe_find_customers_action.rb +11 -0
- data/lib/auth0/types/flow_action_stripe_find_customers_params.rb +10 -0
- data/lib/auth0/types/flow_action_stripe_find_customers_type.rb +11 -0
- data/lib/auth0/types/flow_action_stripe_get_customer.rb +15 -0
- data/lib/auth0/types/flow_action_stripe_get_customer_action.rb +11 -0
- data/lib/auth0/types/flow_action_stripe_get_customer_params.rb +10 -0
- data/lib/auth0/types/flow_action_stripe_get_customer_type.rb +11 -0
- data/lib/auth0/types/flow_action_stripe_metadata.rb +23 -0
- data/lib/auth0/types/flow_action_stripe_tax_id.rb +10 -0
- data/lib/auth0/types/flow_action_stripe_update_customer.rb +15 -0
- data/lib/auth0/types/flow_action_stripe_update_customer_action.rb +11 -0
- data/lib/auth0/types/flow_action_stripe_update_customer_params.rb +17 -0
- data/lib/auth0/types/flow_action_stripe_update_customer_type.rb +11 -0
- data/lib/auth0/types/flow_action_telegram.rb +23 -0
- data/lib/auth0/types/flow_action_telegram_send_message.rb +15 -0
- data/lib/auth0/types/flow_action_telegram_send_message_action.rb +11 -0
- data/lib/auth0/types/flow_action_telegram_send_message_params.rb +11 -0
- data/lib/auth0/types/flow_action_telegram_send_message_type.rb +11 -0
- data/lib/auth0/types/flow_action_twilio.rb +12 -0
- data/lib/auth0/types/flow_action_twilio_make_call.rb +15 -0
- data/lib/auth0/types/flow_action_twilio_make_call_action.rb +11 -0
- data/lib/auth0/types/flow_action_twilio_make_call_params.rb +12 -0
- data/lib/auth0/types/flow_action_twilio_make_call_type.rb +11 -0
- data/lib/auth0/types/flow_action_twilio_send_sms.rb +15 -0
- data/lib/auth0/types/flow_action_twilio_send_sms_action.rb +11 -0
- data/lib/auth0/types/flow_action_twilio_send_sms_params.rb +12 -0
- data/lib/auth0/types/flow_action_twilio_send_sms_type.rb +11 -0
- data/lib/auth0/types/flow_action_whatsapp.rb +23 -0
- data/lib/auth0/types/flow_action_whatsapp_send_message.rb +15 -0
- data/lib/auth0/types/flow_action_whatsapp_send_message_action.rb +11 -0
- data/lib/auth0/types/flow_action_whatsapp_send_message_params.rb +13 -0
- data/lib/auth0/types/flow_action_whatsapp_send_message_params_payload.rb +12 -0
- data/lib/auth0/types/flow_action_whatsapp_send_message_params_payload_object.rb +23 -0
- data/lib/auth0/types/flow_action_whatsapp_send_message_params_type.rb +19 -0
- data/lib/auth0/types/flow_action_whatsapp_send_message_type.rb +11 -0
- data/lib/auth0/types/flow_action_xml.rb +12 -0
- data/lib/auth0/types/flow_action_xml_parse_xml.rb +15 -0
- data/lib/auth0/types/flow_action_xml_parse_xml_action.rb +11 -0
- data/lib/auth0/types/flow_action_xml_parse_xml_params.rb +9 -0
- data/lib/auth0/types/flow_action_xml_parse_xml_type.rb +11 -0
- data/lib/auth0/types/flow_action_xml_serialize_xml.rb +15 -0
- data/lib/auth0/types/flow_action_xml_serialize_xml_action.rb +11 -0
- data/lib/auth0/types/flow_action_xml_serialize_xml_params.rb +9 -0
- data/lib/auth0/types/flow_action_xml_serialize_xml_params_object.rb +12 -0
- data/lib/auth0/types/flow_action_xml_serialize_xml_params_object_object.rb +23 -0
- data/lib/auth0/types/flow_action_xml_serialize_xml_type.rb +11 -0
- data/lib/auth0/types/flow_action_zapier.rb +23 -0
- data/lib/auth0/types/flow_action_zapier_trigger_webhook.rb +15 -0
- data/lib/auth0/types/flow_action_zapier_trigger_webhook_action.rb +11 -0
- data/lib/auth0/types/flow_action_zapier_trigger_webhook_params.rb +10 -0
- data/lib/auth0/types/flow_action_zapier_trigger_webhook_params_method.rb +13 -0
- data/lib/auth0/types/flow_action_zapier_trigger_webhook_type.rb +11 -0
- data/lib/auth0/types/flow_execution_debug.rb +23 -0
- data/lib/auth0/types/flow_execution_summary.rb +16 -0
- data/lib/auth0/types/flow_summary.rb +13 -0
- data/lib/auth0/types/flows_vault_connectio_setup_api_key.rb +10 -0
- data/lib/auth0/types/flows_vault_connectio_setup_api_key_with_base_url.rb +11 -0
- data/lib/auth0/types/flows_vault_connectio_setup_bigquery_oauth_jwt.rb +12 -0
- data/lib/auth0/types/flows_vault_connectio_setup_http_bearer.rb +10 -0
- data/lib/auth0/types/flows_vault_connectio_setup_jwt.rb +10 -0
- data/lib/auth0/types/flows_vault_connectio_setup_jwt_algorithm_enum.rb +22 -0
- data/lib/auth0/types/flows_vault_connectio_setup_mailjet_api_key.rb +11 -0
- data/lib/auth0/types/flows_vault_connectio_setup_oauth_app.rb +13 -0
- data/lib/auth0/types/flows_vault_connectio_setup_oauth_code.rb +10 -0
- data/lib/auth0/types/flows_vault_connectio_setup_secret_api_key.rb +10 -0
- data/lib/auth0/types/flows_vault_connectio_setup_stripe_key_pair.rb +11 -0
- data/lib/auth0/types/flows_vault_connectio_setup_token.rb +10 -0
- data/lib/auth0/types/flows_vault_connectio_setup_twilio_api_key.rb +11 -0
- data/lib/auth0/types/flows_vault_connectio_setup_type_api_key_enum.rb +11 -0
- data/lib/auth0/types/flows_vault_connectio_setup_type_bearer_enum.rb +11 -0
- data/lib/auth0/types/flows_vault_connectio_setup_type_jwt_enum.rb +11 -0
- data/lib/auth0/types/flows_vault_connectio_setup_type_key_pair_enum.rb +11 -0
- data/lib/auth0/types/flows_vault_connectio_setup_type_oauth_app_enum.rb +11 -0
- data/lib/auth0/types/flows_vault_connectio_setup_type_oauth_code_enum.rb +11 -0
- data/lib/auth0/types/flows_vault_connectio_setup_type_oauth_jwt_enum.rb +11 -0
- data/lib/auth0/types/flows_vault_connectio_setup_type_token_enum.rb +11 -0
- data/lib/auth0/types/flows_vault_connectio_setup_type_webhook_enum.rb +11 -0
- data/lib/auth0/types/flows_vault_connectio_setup_webhook.rb +10 -0
- data/lib/auth0/types/flows_vault_connection_app_id_activecampaign_enum.rb +11 -0
- data/lib/auth0/types/flows_vault_connection_app_id_airtable_enum.rb +11 -0
- data/lib/auth0/types/flows_vault_connection_app_id_auth0enum.rb +11 -0
- data/lib/auth0/types/flows_vault_connection_app_id_bigquery_enum.rb +11 -0
- data/lib/auth0/types/flows_vault_connection_app_id_clearbit_enum.rb +11 -0
- data/lib/auth0/types/flows_vault_connection_app_id_docusign_enum.rb +11 -0
- data/lib/auth0/types/flows_vault_connection_app_id_google_sheets_enum.rb +11 -0
- data/lib/auth0/types/flows_vault_connection_app_id_http_enum.rb +11 -0
- data/lib/auth0/types/flows_vault_connection_app_id_hubspot_enum.rb +11 -0
- data/lib/auth0/types/flows_vault_connection_app_id_jwt_enum.rb +11 -0
- data/lib/auth0/types/flows_vault_connection_app_id_mailchimp_enum.rb +11 -0
- data/lib/auth0/types/flows_vault_connection_app_id_mailjet_enum.rb +11 -0
- data/lib/auth0/types/flows_vault_connection_app_id_pipedrive_enum.rb +11 -0
- data/lib/auth0/types/flows_vault_connection_app_id_salesforce_enum.rb +11 -0
- data/lib/auth0/types/flows_vault_connection_app_id_sendgrid_enum.rb +11 -0
- data/lib/auth0/types/flows_vault_connection_app_id_slack_enum.rb +11 -0
- data/lib/auth0/types/flows_vault_connection_app_id_stripe_enum.rb +11 -0
- data/lib/auth0/types/flows_vault_connection_app_id_telegram_enum.rb +11 -0
- data/lib/auth0/types/flows_vault_connection_app_id_twilio_enum.rb +11 -0
- data/lib/auth0/types/flows_vault_connection_app_id_whatsapp_enum.rb +11 -0
- data/lib/auth0/types/flows_vault_connection_app_id_zapier_enum.rb +11 -0
- data/lib/auth0/types/flows_vault_connection_http_api_key_setup.rb +12 -0
- data/lib/auth0/types/flows_vault_connection_http_api_key_setup_in_enum.rb +12 -0
- data/lib/auth0/types/flows_vault_connection_http_basic_auth_setup.rb +11 -0
- data/lib/auth0/types/flows_vault_connection_http_oauth_client_credentials_setup.rb +15 -0
- data/lib/auth0/types/flows_vault_connection_setup_type_api_key_enum.rb +11 -0
- data/lib/auth0/types/flows_vault_connection_setup_type_basic_auth_enum.rb +11 -0
- data/lib/auth0/types/flows_vault_connection_setup_type_oauth_client_credentials_enum.rb +11 -0
- data/lib/auth0/types/flows_vault_connection_summary.rb +17 -0
- data/lib/auth0/types/form_block.rb +18 -0
- data/lib/auth0/types/form_block_divider.rb +12 -0
- data/lib/auth0/types/form_block_divider_config.rb +9 -0
- data/lib/auth0/types/form_block_html.rb +12 -0
- data/lib/auth0/types/form_block_html_config.rb +9 -0
- data/lib/auth0/types/form_block_image.rb +12 -0
- data/lib/auth0/types/form_block_image_config.rb +11 -0
- data/lib/auth0/types/form_block_image_config_position_enum.rb +13 -0
- data/lib/auth0/types/form_block_jump_button.rb +12 -0
- data/lib/auth0/types/form_block_jump_button_config.rb +11 -0
- data/lib/auth0/types/form_block_jump_button_config_style.rb +9 -0
- data/lib/auth0/types/form_block_next_button.rb +12 -0
- data/lib/auth0/types/form_block_next_button_config.rb +9 -0
- data/lib/auth0/types/form_block_previous_button.rb +12 -0
- data/lib/auth0/types/form_block_previous_button_config.rb +9 -0
- data/lib/auth0/types/form_block_resend_button.rb +12 -0
- data/lib/auth0/types/form_block_resend_button_config.rb +15 -0
- data/lib/auth0/types/form_block_resend_button_config_text_alignment_enum.rb +13 -0
- data/lib/auth0/types/form_block_rich_text.rb +12 -0
- data/lib/auth0/types/form_block_rich_text_config.rb +9 -0
- data/lib/auth0/types/form_block_type_divider_const.rb +11 -0
- data/lib/auth0/types/form_block_type_html_const.rb +11 -0
- data/lib/auth0/types/form_block_type_image_const.rb +11 -0
- data/lib/auth0/types/form_block_type_jump_button_const.rb +11 -0
- data/lib/auth0/types/form_block_type_next_button_const.rb +11 -0
- data/lib/auth0/types/form_block_type_previous_button_const.rb +11 -0
- data/lib/auth0/types/form_block_type_resend_button_const.rb +11 -0
- data/lib/auth0/types/form_block_type_rich_text_const.rb +11 -0
- data/lib/auth0/types/form_component.rb +13 -0
- data/lib/auth0/types/form_component_category_block_const.rb +11 -0
- data/lib/auth0/types/form_component_category_field_const.rb +11 -0
- data/lib/auth0/types/form_component_category_widget_const.rb +11 -0
- data/lib/auth0/types/form_ending_node.rb +12 -0
- data/lib/auth0/types/form_ending_node_after_submit.rb +9 -0
- data/lib/auth0/types/form_ending_node_id.rb +11 -0
- data/lib/auth0/types/form_ending_node_nullable.rb +23 -0
- data/lib/auth0/types/form_ending_node_redirection.rb +10 -0
- data/lib/auth0/types/form_ending_node_resume_flow_true_const.rb +23 -0
- data/lib/auth0/types/form_field.rb +26 -0
- data/lib/auth0/types/form_field_boolean.rb +16 -0
- data/lib/auth0/types/form_field_boolean_config.rb +10 -0
- data/lib/auth0/types/form_field_boolean_config_options.rb +10 -0
- data/lib/auth0/types/form_field_cards.rb +16 -0
- data/lib/auth0/types/form_field_cards_config.rb +11 -0
- data/lib/auth0/types/form_field_cards_config_option.rb +11 -0
- data/lib/auth0/types/form_field_choice.rb +16 -0
- data/lib/auth0/types/form_field_choice_config.rb +11 -0
- data/lib/auth0/types/form_field_choice_config_allow_other.rb +11 -0
- data/lib/auth0/types/form_field_choice_config_allow_other_enabled_true_enum.rb +23 -0
- data/lib/auth0/types/form_field_choice_config_option.rb +10 -0
- data/lib/auth0/types/form_field_custom.rb +16 -0
- data/lib/auth0/types/form_field_custom_config.rb +12 -0
- data/lib/auth0/types/form_field_custom_config_params.rb +23 -0
- data/lib/auth0/types/form_field_custom_config_schema.rb +23 -0
- data/lib/auth0/types/form_field_date.rb +16 -0
- data/lib/auth0/types/form_field_date_config.rb +10 -0
- data/lib/auth0/types/form_field_date_config_format_enum.rb +12 -0
- data/lib/auth0/types/form_field_dropdown.rb +16 -0
- data/lib/auth0/types/form_field_dropdown_config.rb +11 -0
- data/lib/auth0/types/form_field_dropdown_config_option.rb +10 -0
- data/lib/auth0/types/form_field_email.rb +16 -0
- data/lib/auth0/types/form_field_email_config.rb +10 -0
- data/lib/auth0/types/form_field_file.rb +16 -0
- data/lib/auth0/types/form_field_file_config.rb +14 -0
- data/lib/auth0/types/form_field_file_config_category_enum.rb +15 -0
- data/lib/auth0/types/form_field_file_config_storage.rb +9 -0
- data/lib/auth0/types/form_field_file_config_storage_type_enum.rb +12 -0
- data/lib/auth0/types/form_field_legal.rb +16 -0
- data/lib/auth0/types/form_field_legal_config.rb +9 -0
- data/lib/auth0/types/form_field_number.rb +16 -0
- data/lib/auth0/types/form_field_number_config.rb +12 -0
- data/lib/auth0/types/form_field_password.rb +16 -0
- data/lib/auth0/types/form_field_password_config.rb +15 -0
- data/lib/auth0/types/form_field_password_config_hash_enum.rb +15 -0
- data/lib/auth0/types/form_field_payment.rb +16 -0
- data/lib/auth0/types/form_field_payment_config.rb +13 -0
- data/lib/auth0/types/form_field_payment_config_charge.rb +12 -0
- data/lib/auth0/types/form_field_payment_config_charge_one_off.rb +10 -0
- data/lib/auth0/types/form_field_payment_config_charge_one_off_currency_enum.rb +19 -0
- data/lib/auth0/types/form_field_payment_config_charge_one_off_one_off.rb +10 -0
- data/lib/auth0/types/form_field_payment_config_charge_one_off_one_off_amount.rb +12 -0
- data/lib/auth0/types/form_field_payment_config_charge_subscription.rb +10 -0
- data/lib/auth0/types/form_field_payment_config_charge_type_one_off_const.rb +11 -0
- data/lib/auth0/types/form_field_payment_config_charge_type_subscription_const.rb +11 -0
- data/lib/auth0/types/form_field_payment_config_credentials.rb +10 -0
- data/lib/auth0/types/form_field_payment_config_customer.rb +23 -0
- data/lib/auth0/types/form_field_payment_config_field_properties.rb +10 -0
- data/lib/auth0/types/form_field_payment_config_fields.rb +12 -0
- data/lib/auth0/types/form_field_payment_config_provider_enum.rb +11 -0
- data/lib/auth0/types/form_field_payment_config_subscription.rb +23 -0
- data/lib/auth0/types/form_field_social.rb +16 -0
- data/lib/auth0/types/form_field_social_config.rb +7 -0
- data/lib/auth0/types/form_field_tel.rb +16 -0
- data/lib/auth0/types/form_field_tel_config.rb +14 -0
- data/lib/auth0/types/form_field_tel_config_strings.rb +9 -0
- data/lib/auth0/types/form_field_text.rb +16 -0
- data/lib/auth0/types/form_field_text_config.rb +13 -0
- data/lib/auth0/types/form_field_type_boolean_const.rb +11 -0
- data/lib/auth0/types/form_field_type_cards_const.rb +11 -0
- data/lib/auth0/types/form_field_type_choice_const.rb +11 -0
- data/lib/auth0/types/form_field_type_custom_const.rb +11 -0
- data/lib/auth0/types/form_field_type_date_const.rb +11 -0
- data/lib/auth0/types/form_field_type_dropdown_const.rb +11 -0
- data/lib/auth0/types/form_field_type_email_const.rb +11 -0
- data/lib/auth0/types/form_field_type_file_const.rb +11 -0
- data/lib/auth0/types/form_field_type_legal_const.rb +11 -0
- data/lib/auth0/types/form_field_type_number_const.rb +11 -0
- data/lib/auth0/types/form_field_type_password_const.rb +11 -0
- data/lib/auth0/types/form_field_type_payment_const.rb +11 -0
- data/lib/auth0/types/form_field_type_social_const.rb +11 -0
- data/lib/auth0/types/form_field_type_tel_const.rb +11 -0
- data/lib/auth0/types/form_field_type_text_const.rb +11 -0
- data/lib/auth0/types/form_field_type_url_const.rb +11 -0
- data/lib/auth0/types/form_field_url.rb +16 -0
- data/lib/auth0/types/form_field_url_config.rb +10 -0
- data/lib/auth0/types/form_flow.rb +13 -0
- data/lib/auth0/types/form_flow_config.rb +10 -0
- data/lib/auth0/types/form_hidden_field.rb +10 -0
- data/lib/auth0/types/form_languages.rb +10 -0
- data/lib/auth0/types/form_languages_nullable.rb +23 -0
- data/lib/auth0/types/form_messages.rb +10 -0
- data/lib/auth0/types/form_messages_custom.rb +23 -0
- data/lib/auth0/types/form_messages_error.rb +23 -0
- data/lib/auth0/types/form_messages_nullable.rb +23 -0
- data/lib/auth0/types/form_node.rb +13 -0
- data/lib/auth0/types/form_node_coordinates.rb +10 -0
- data/lib/auth0/types/form_node_list.rb +23 -0
- data/lib/auth0/types/form_node_list_nullable.rb +23 -0
- data/lib/auth0/types/form_node_pointer.rb +12 -0
- data/lib/auth0/types/form_node_type_flow_const.rb +11 -0
- data/lib/auth0/types/form_node_type_router_const.rb +11 -0
- data/lib/auth0/types/form_node_type_step_const.rb +11 -0
- data/lib/auth0/types/form_router.rb +13 -0
- data/lib/auth0/types/form_router_config.rb +10 -0
- data/lib/auth0/types/form_router_rule.rb +11 -0
- data/lib/auth0/types/form_start_node.rb +11 -0
- data/lib/auth0/types/form_start_node_nullable.rb +23 -0
- data/lib/auth0/types/form_step.rb +13 -0
- data/lib/auth0/types/form_step_component_list.rb +23 -0
- data/lib/auth0/types/form_step_config.rb +10 -0
- data/lib/auth0/types/form_style.rb +9 -0
- data/lib/auth0/types/form_style_nullable.rb +23 -0
- data/lib/auth0/types/form_summary.rb +14 -0
- data/lib/auth0/types/form_translations.rb +23 -0
- data/lib/auth0/types/form_translations_nullable.rb +23 -0
- data/lib/auth0/types/form_widget.rb +13 -0
- data/lib/auth0/types/form_widget_auth0verifiable_credentials.rb +16 -0
- data/lib/auth0/types/form_widget_auth0verifiable_credentials_config.rb +14 -0
- data/lib/auth0/types/form_widget_g_maps_address.rb +16 -0
- data/lib/auth0/types/form_widget_g_maps_address_config.rb +9 -0
- data/lib/auth0/types/form_widget_recaptcha.rb +16 -0
- data/lib/auth0/types/form_widget_recaptcha_config.rb +10 -0
- data/lib/auth0/types/form_widget_type_auth0verifiable_credentials_const.rb +11 -0
- data/lib/auth0/types/form_widget_type_g_maps_address_const.rb +11 -0
- data/lib/auth0/types/form_widget_type_recaptcha_const.rb +11 -0
- data/lib/auth0/types/forms_request_parameters_hydrate_enum.rb +12 -0
- data/lib/auth0/types/get_action_execution_response_content.rb +15 -0
- data/lib/auth0/types/get_action_module_actions_response_content.rb +12 -0
- data/lib/auth0/types/get_action_module_response_content.rb +19 -0
- data/lib/auth0/types/get_action_module_version_response_content.rb +15 -0
- data/lib/auth0/types/get_action_module_versions_response_content.rb +12 -0
- data/lib/auth0/types/get_action_modules_response_content.rb +12 -0
- data/lib/auth0/types/get_action_response_content.rb +25 -0
- data/lib/auth0/types/get_action_version_response_content.rb +24 -0
- data/lib/auth0/types/get_active_users_count_stats_response_content.rb +23 -0
- data/lib/auth0/types/get_acul_response_content.rb +17 -0
- data/lib/auth0/types/get_attack_protection_captcha_response_content.rb +16 -0
- data/lib/auth0/types/get_bot_detection_settings_response_content.rb +14 -0
- data/lib/auth0/types/get_branding_default_theme_response_content.rb +15 -0
- data/lib/auth0/types/get_branding_phone_provider_response_content.rb +17 -0
- data/lib/auth0/types/get_branding_response_content.rb +12 -0
- data/lib/auth0/types/get_branding_theme_response_content.rb +15 -0
- data/lib/auth0/types/get_breached_password_detection_settings_response_content.rb +13 -0
- data/lib/auth0/types/get_brute_force_settings_response_content.rb +13 -0
- data/lib/auth0/types/get_client_credential_response_content.rb +18 -0
- data/lib/auth0/types/get_client_grant_response_content.rb +19 -0
- data/lib/auth0/types/get_client_response_content.rb +68 -0
- data/lib/auth0/types/get_connection_enabled_clients_response_content.rb +10 -0
- data/lib/auth0/types/get_connection_profile_response_content.rb +15 -0
- data/lib/auth0/types/get_connection_profile_template_response_content.rb +11 -0
- data/lib/auth0/types/get_connection_response_content.rb +20 -0
- data/lib/auth0/types/get_custom_domain_response_content.rb +21 -0
- data/lib/auth0/types/get_custom_signing_keys_response_content.rb +10 -0
- data/lib/auth0/types/get_custom_texts_by_language_response_content.rb +23 -0
- data/lib/auth0/types/get_default_canonical_domain_response_content.rb +9 -0
- data/lib/auth0/types/get_default_custom_domain_response_content.rb +21 -0
- data/lib/auth0/types/get_default_domain_response_content.rb +12 -0
- data/lib/auth0/types/get_directory_provisioning_default_mapping_response_content.rb +9 -0
- data/lib/auth0/types/get_directory_provisioning_response_content.rb +19 -0
- data/lib/auth0/types/get_email_provider_response_content.rb +13 -0
- data/lib/auth0/types/get_email_template_response_content.rb +17 -0
- data/lib/auth0/types/get_encryption_key_response_content.rb +16 -0
- data/lib/auth0/types/get_event_stream_delivery_history_response_content.rb +15 -0
- data/lib/auth0/types/get_event_stream_response_content.rb +13 -0
- data/lib/auth0/types/get_flow_execution_request_parameters_hydrate_enum.rb +11 -0
- data/lib/auth0/types/get_flow_execution_response_content.rb +17 -0
- data/lib/auth0/types/get_flow_request_parameters_hydrate_enum.rb +12 -0
- data/lib/auth0/types/get_flow_response_content.rb +14 -0
- data/lib/auth0/types/get_flows_vault_connection_response_content.rb +18 -0
- data/lib/auth0/types/get_form_response_content.rb +21 -0
- data/lib/auth0/types/get_group_members_response_content.rb +10 -0
- data/lib/auth0/types/get_group_response_content.rb +16 -0
- data/lib/auth0/types/get_guardian_enrollment_response_content.rb +15 -0
- data/lib/auth0/types/get_guardian_factor_duo_settings_response_content.rb +11 -0
- data/lib/auth0/types/get_guardian_factor_phone_message_types_response_content.rb +9 -0
- data/lib/auth0/types/get_guardian_factor_phone_templates_response_content.rb +10 -0
- data/lib/auth0/types/get_guardian_factor_sms_templates_response_content.rb +10 -0
- data/lib/auth0/types/get_guardian_factors_provider_apns_response_content.rb +11 -0
- data/lib/auth0/types/get_guardian_factors_provider_phone_response_content.rb +9 -0
- data/lib/auth0/types/get_guardian_factors_provider_phone_twilio_response_content.rb +12 -0
- data/lib/auth0/types/get_guardian_factors_provider_push_notification_response_content.rb +9 -0
- data/lib/auth0/types/get_guardian_factors_provider_sms_response_content.rb +9 -0
- data/lib/auth0/types/get_guardian_factors_provider_sms_twilio_response_content.rb +12 -0
- data/lib/auth0/types/get_guardian_factors_provider_sns_response_content.rb +13 -0
- data/lib/auth0/types/get_hook_response_content.rb +14 -0
- data/lib/auth0/types/get_hook_secret_response_content.rb +23 -0
- data/lib/auth0/types/get_job_error_response_content.rb +10 -0
- data/lib/auth0/types/get_job_generic_error_response_content.rb +14 -0
- data/lib/auth0/types/get_job_import_user_error.rb +11 -0
- data/lib/auth0/types/get_job_response_content.rb +19 -0
- data/lib/auth0/types/get_job_summary.rb +13 -0
- data/lib/auth0/types/get_job_user_error.rb +23 -0
- data/lib/auth0/types/get_log_response_content.rb +29 -0
- data/lib/auth0/types/get_log_stream_response_content.rb +18 -0
- data/lib/auth0/types/get_network_acls_response_content.rb +15 -0
- data/lib/auth0/types/get_organization_all_connection_response_content.rb +16 -0
- data/lib/auth0/types/get_organization_by_name_response_content.rb +14 -0
- data/lib/auth0/types/get_organization_connection_response_content.rb +13 -0
- data/lib/auth0/types/get_organization_discovery_domain_by_name_response_content.rb +14 -0
- data/lib/auth0/types/get_organization_discovery_domain_response_content.rb +14 -0
- data/lib/auth0/types/get_organization_invitation_response_content.rb +21 -0
- data/lib/auth0/types/get_organization_response_content.rb +14 -0
- data/lib/auth0/types/get_partials_response_content.rb +23 -0
- data/lib/auth0/types/get_phone_template_response_content.rb +15 -0
- data/lib/auth0/types/get_refresh_token_response_content.rb +20 -0
- data/lib/auth0/types/get_refresh_tokens_paginated_response_content.rb +10 -0
- data/lib/auth0/types/get_resource_server_response_content.rb +28 -0
- data/lib/auth0/types/get_risk_assessments_settings_new_device_response_content.rb +9 -0
- data/lib/auth0/types/get_risk_assessments_settings_response_content.rb +9 -0
- data/lib/auth0/types/get_role_response_content.rb +11 -0
- data/lib/auth0/types/get_rule_response_content.rb +14 -0
- data/lib/auth0/types/get_scim_configuration_default_mapping_response_content.rb +9 -0
- data/lib/auth0/types/get_scim_configuration_response_content.rb +16 -0
- data/lib/auth0/types/get_scim_tokens_response_content.rb +23 -0
- data/lib/auth0/types/get_self_service_profile_response_content.rb +17 -0
- data/lib/auth0/types/get_session_response_content.rb +21 -0
- data/lib/auth0/types/get_settings_response_content.rb +11 -0
- data/lib/auth0/types/get_signing_keys_response_content.rb +20 -0
- data/lib/auth0/types/get_supplemental_signals_response_content.rb +9 -0
- data/lib/auth0/types/get_suspicious_ip_throttling_settings_response_content.rb +12 -0
- data/lib/auth0/types/get_tenant_settings_response_content.rb +45 -0
- data/lib/auth0/types/get_token_exchange_profile_response_content.rb +15 -0
- data/lib/auth0/types/get_universal_login_template.rb +9 -0
- data/lib/auth0/types/get_universal_login_template_response_content.rb +12 -0
- data/lib/auth0/types/get_user_attribute_profile_response_content.rb +12 -0
- data/lib/auth0/types/get_user_attribute_profile_template_response_content.rb +11 -0
- data/lib/auth0/types/get_user_authentication_method_response_content.rb +28 -0
- data/lib/auth0/types/get_user_groups_paginated_response_content.rb +13 -0
- data/lib/auth0/types/get_user_response_content.rb +29 -0
- data/lib/auth0/types/get_verifiable_credential_template_response_content.rb +17 -0
- data/lib/auth0/types/group.rb +16 -0
- data/lib/auth0/types/group_member.rb +14 -0
- data/lib/auth0/types/group_member_type_enum.rb +12 -0
- data/lib/auth0/types/group_type_enum.rb +13 -0
- data/lib/auth0/types/guardian_enrollment_date.rb +23 -0
- data/lib/auth0/types/guardian_enrollment_factor_enum.rb +16 -0
- data/lib/auth0/types/guardian_enrollment_status.rb +12 -0
- data/lib/auth0/types/guardian_factor.rb +11 -0
- data/lib/auth0/types/guardian_factor_name_enum.rb +18 -0
- data/lib/auth0/types/guardian_factor_phone_factor_message_type_enum.rb +12 -0
- data/lib/auth0/types/guardian_factors_provider_push_notification_provider_data_enum.rb +13 -0
- data/lib/auth0/types/guardian_factors_provider_sms_provider_enum.rb +13 -0
- data/lib/auth0/types/hook.rb +14 -0
- data/lib/auth0/types/hook_dependencies.rb +23 -0
- data/lib/auth0/types/hook_trigger_id_enum.rb +15 -0
- data/lib/auth0/types/http_custom_header.rb +10 -0
- data/lib/auth0/types/identity.rb +13 -0
- data/lib/auth0/types/identity_provider_enum.rb +65 -0
- data/lib/auth0/types/identity_provider_only_auth0enum.rb +11 -0
- data/lib/auth0/types/import_encryption_key_response_content.rb +16 -0
- data/lib/auth0/types/integration.rb +25 -0
- data/lib/auth0/types/integration_feature_type_enum.rb +16 -0
- data/lib/auth0/types/integration_release.rb +13 -0
- data/lib/auth0/types/integration_required_param.rb +23 -0
- data/lib/auth0/types/integration_required_param_option.rb +10 -0
- data/lib/auth0/types/integration_required_param_type_enum.rb +12 -0
- data/lib/auth0/types/integration_sem_ver.rb +11 -0
- data/lib/auth0/types/job_file_format_enum.rb +12 -0
- data/lib/auth0/types/linked_client_configuration.rb +10 -0
- data/lib/auth0/types/list_action_bindings_paginated_response_content.rb +12 -0
- data/lib/auth0/types/list_action_triggers_response_content.rb +9 -0
- data/lib/auth0/types/list_action_versions_paginated_response_content.rb +12 -0
- data/lib/auth0/types/list_actions_paginated_response_content.rb +12 -0
- data/lib/auth0/types/list_aculs_offset_paginated_response_content.rb +12 -0
- data/lib/auth0/types/list_aculs_response_content_item.rb +17 -0
- data/lib/auth0/types/list_branding_phone_providers_response_content.rb +9 -0
- data/lib/auth0/types/list_client_connections_response_content.rb +10 -0
- data/lib/auth0/types/list_client_grant_organizations_paginated_response_content.rb +10 -0
- data/lib/auth0/types/list_client_grant_paginated_response_content.rb +10 -0
- data/lib/auth0/types/list_clients_offset_paginated_response_content.rb +12 -0
- data/lib/auth0/types/list_connection_profile_template_response_content.rb +9 -0
- data/lib/auth0/types/list_connection_profiles_paginated_response_content.rb +10 -0
- data/lib/auth0/types/list_connections_checkpoint_paginated_response_content.rb +10 -0
- data/lib/auth0/types/list_custom_domains_response_content.rb +23 -0
- data/lib/auth0/types/list_device_credentials_offset_paginated_response_content.rb +12 -0
- data/lib/auth0/types/list_directory_provisionings_response_content.rb +10 -0
- data/lib/auth0/types/list_encryption_key_offset_paginated_response_content.rb +12 -0
- data/lib/auth0/types/list_event_streams_response_content.rb +10 -0
- data/lib/auth0/types/list_flow_executions_paginated_response_content.rb +10 -0
- data/lib/auth0/types/list_flows_offset_paginated_response_content.rb +12 -0
- data/lib/auth0/types/list_flows_request_parameters_hydrate_enum.rb +11 -0
- data/lib/auth0/types/list_flows_vault_connections_offset_paginated_response_content.rb +12 -0
- data/lib/auth0/types/list_forms_offset_paginated_response_content.rb +12 -0
- data/lib/auth0/types/list_groups_paginated_response_content.rb +13 -0
- data/lib/auth0/types/list_guardian_policies_response_content.rb +23 -0
- data/lib/auth0/types/list_hooks_offset_paginated_response_content.rb +12 -0
- data/lib/auth0/types/list_log_offset_paginated_response_content.rb +13 -0
- data/lib/auth0/types/list_network_acls_offset_paginated_response_content.rb +12 -0
- data/lib/auth0/types/list_organization_all_connections_offset_paginated_response_content.rb +12 -0
- data/lib/auth0/types/list_organization_client_grants_offset_paginated_response_content.rb +12 -0
- data/lib/auth0/types/list_organization_connections_offset_paginated_response_content.rb +12 -0
- data/lib/auth0/types/list_organization_discovery_domains_response_content.rb +10 -0
- data/lib/auth0/types/list_organization_invitations_offset_paginated_response_content.rb +11 -0
- data/lib/auth0/types/list_organization_member_roles_offset_paginated_response_content.rb +12 -0
- data/lib/auth0/types/list_organization_members_paginated_response_content.rb +10 -0
- data/lib/auth0/types/list_organizations_paginated_response_content.rb +10 -0
- data/lib/auth0/types/list_phone_templates_response_content.rb +9 -0
- data/lib/auth0/types/list_refresh_tokens_paginated_response_content.rb +10 -0
- data/lib/auth0/types/list_resource_server_offset_paginated_response_content.rb +12 -0
- data/lib/auth0/types/list_role_permissions_offset_paginated_response_content.rb +12 -0
- data/lib/auth0/types/list_role_users_paginated_response_content.rb +10 -0
- data/lib/auth0/types/list_roles_offset_paginated_response_content.rb +12 -0
- data/lib/auth0/types/list_rules_offset_paginated_response_content.rb +12 -0
- data/lib/auth0/types/list_scim_configurations_response_content.rb +10 -0
- data/lib/auth0/types/list_self_service_profile_custom_text_response_content.rb +23 -0
- data/lib/auth0/types/list_self_service_profiles_paginated_response_content.rb +12 -0
- data/lib/auth0/types/list_synchronized_groups_response_content.rb +10 -0
- data/lib/auth0/types/list_token_exchange_profile_response_content.rb +10 -0
- data/lib/auth0/types/list_user_attribute_profile_template_response_content.rb +9 -0
- data/lib/auth0/types/list_user_attribute_profiles_paginated_response_content.rb +10 -0
- data/lib/auth0/types/list_user_authentication_methods_offset_paginated_response_content.rb +12 -0
- data/lib/auth0/types/list_user_blocks_by_identifier_response_content.rb +9 -0
- data/lib/auth0/types/list_user_blocks_response_content.rb +9 -0
- data/lib/auth0/types/list_user_connected_accounts_response_content.rb +10 -0
- data/lib/auth0/types/list_user_grants_offset_paginated_response_content.rb +12 -0
- data/lib/auth0/types/list_user_organizations_offset_paginated_response_content.rb +12 -0
- data/lib/auth0/types/list_user_permissions_offset_paginated_response_content.rb +12 -0
- data/lib/auth0/types/list_user_roles_offset_paginated_response_content.rb +12 -0
- data/lib/auth0/types/list_user_sessions_paginated_response_content.rb +10 -0
- data/lib/auth0/types/list_users_offset_paginated_response_content.rb +13 -0
- data/lib/auth0/types/list_verifiable_credential_templates_paginated_response_content.rb +10 -0
- data/lib/auth0/types/log.rb +29 -0
- data/lib/auth0/types/log_date.rb +12 -0
- data/lib/auth0/types/log_date_object.rb +23 -0
- data/lib/auth0/types/log_details.rb +23 -0
- data/lib/auth0/types/log_location_info.rb +17 -0
- data/lib/auth0/types/log_security_context.rb +11 -0
- data/lib/auth0/types/log_stream_datadog_enum.rb +11 -0
- data/lib/auth0/types/log_stream_datadog_region_enum.rb +14 -0
- data/lib/auth0/types/log_stream_datadog_response_schema.rb +16 -0
- data/lib/auth0/types/log_stream_datadog_sink.rb +10 -0
- data/lib/auth0/types/log_stream_event_bridge_enum.rb +11 -0
- data/lib/auth0/types/log_stream_event_bridge_response_schema.rb +16 -0
- data/lib/auth0/types/log_stream_event_bridge_sink.rb +11 -0
- data/lib/auth0/types/log_stream_event_bridge_sink_region_enum.rb +46 -0
- data/lib/auth0/types/log_stream_event_grid_enum.rb +11 -0
- data/lib/auth0/types/log_stream_event_grid_region_enum.rb +44 -0
- data/lib/auth0/types/log_stream_event_grid_response_schema.rb +16 -0
- data/lib/auth0/types/log_stream_event_grid_sink.rb +12 -0
- data/lib/auth0/types/log_stream_filter.rb +10 -0
- data/lib/auth0/types/log_stream_filter_group_name_enum.rb +30 -0
- data/lib/auth0/types/log_stream_filter_type_enum.rb +11 -0
- data/lib/auth0/types/log_stream_http_content_format_enum.rb +13 -0
- data/lib/auth0/types/log_stream_http_enum.rb +11 -0
- data/lib/auth0/types/log_stream_http_response_schema.rb +16 -0
- data/lib/auth0/types/log_stream_http_sink.rb +13 -0
- data/lib/auth0/types/log_stream_mixpanel_enum.rb +11 -0
- data/lib/auth0/types/log_stream_mixpanel_region_enum.rb +12 -0
- data/lib/auth0/types/log_stream_mixpanel_response_schema.rb +16 -0
- data/lib/auth0/types/log_stream_mixpanel_sink.rb +12 -0
- data/lib/auth0/types/log_stream_mixpanel_sink_patch.rb +12 -0
- data/lib/auth0/types/log_stream_pii_algorithm_enum.rb +11 -0
- data/lib/auth0/types/log_stream_pii_config.rb +11 -0
- data/lib/auth0/types/log_stream_pii_log_fields_enum.rb +16 -0
- data/lib/auth0/types/log_stream_pii_method_enum.rb +12 -0
- data/lib/auth0/types/log_stream_response_schema.rb +18 -0
- data/lib/auth0/types/log_stream_segment_enum.rb +11 -0
- data/lib/auth0/types/log_stream_segment_response_schema.rb +16 -0
- data/lib/auth0/types/log_stream_segment_sink.rb +9 -0
- data/lib/auth0/types/log_stream_segment_sink_write_key.rb +9 -0
- data/lib/auth0/types/log_stream_sink_patch.rb +16 -0
- data/lib/auth0/types/log_stream_splunk_enum.rb +11 -0
- data/lib/auth0/types/log_stream_splunk_response_schema.rb +16 -0
- data/lib/auth0/types/log_stream_splunk_sink.rb +12 -0
- data/lib/auth0/types/log_stream_status_enum.rb +13 -0
- data/lib/auth0/types/log_stream_sumo_enum.rb +11 -0
- data/lib/auth0/types/log_stream_sumo_response_schema.rb +16 -0
- data/lib/auth0/types/log_stream_sumo_sink.rb +9 -0
- data/lib/auth0/types/mdl_presentation_properties.rb +29 -0
- data/lib/auth0/types/mdl_presentation_request.rb +10 -0
- data/lib/auth0/types/mdl_presentation_request_properties.rb +9 -0
- data/lib/auth0/types/mfa_policy_enum.rb +12 -0
- data/lib/auth0/types/native_social_login.rb +12 -0
- data/lib/auth0/types/native_social_login_apple.rb +10 -0
- data/lib/auth0/types/native_social_login_facebook.rb +10 -0
- data/lib/auth0/types/native_social_login_google.rb +10 -0
- data/lib/auth0/types/network_acl_action.rb +13 -0
- data/lib/auth0/types/network_acl_action_allow_enum.rb +23 -0
- data/lib/auth0/types/network_acl_action_block_enum.rb +23 -0
- data/lib/auth0/types/network_acl_action_log_enum.rb +23 -0
- data/lib/auth0/types/network_acl_action_redirect_enum.rb +23 -0
- data/lib/auth0/types/network_acl_match.rb +19 -0
- data/lib/auth0/types/network_acl_match_connecting_ipv4cidr.rb +23 -0
- data/lib/auth0/types/network_acl_match_connecting_ipv6cidr.rb +23 -0
- data/lib/auth0/types/network_acl_match_ipv4cidr.rb +23 -0
- data/lib/auth0/types/network_acl_match_ipv6cidr.rb +23 -0
- data/lib/auth0/types/network_acl_rule.rb +12 -0
- data/lib/auth0/types/network_acl_rule_scope_enum.rb +14 -0
- data/lib/auth0/types/network_acls_response_content.rb +15 -0
- data/lib/auth0/types/oauth_scope.rb +230 -0
- data/lib/auth0/types/organization.rb +14 -0
- data/lib/auth0/types/organization_access_level_enum.rb +14 -0
- data/lib/auth0/types/organization_access_level_enum_with_null.rb +14 -0
- data/lib/auth0/types/organization_all_connection_post.rb +16 -0
- data/lib/auth0/types/organization_branding.rb +11 -0
- data/lib/auth0/types/organization_branding_colors.rb +11 -0
- data/lib/auth0/types/organization_client_grant.rb +14 -0
- data/lib/auth0/types/organization_connection.rb +13 -0
- data/lib/auth0/types/organization_connection_information.rb +10 -0
- data/lib/auth0/types/organization_discovery_domain.rb +14 -0
- data/lib/auth0/types/organization_discovery_domain_status.rb +12 -0
- data/lib/auth0/types/organization_enabled_connection.rb +13 -0
- data/lib/auth0/types/organization_invitation.rb +21 -0
- data/lib/auth0/types/organization_invitation_invitee.rb +9 -0
- data/lib/auth0/types/organization_invitation_inviter.rb +9 -0
- data/lib/auth0/types/organization_member.rb +13 -0
- data/lib/auth0/types/organization_member_role.rb +10 -0
- data/lib/auth0/types/organization_metadata.rb +23 -0
- data/lib/auth0/types/organization_usage_enum.rb +13 -0
- data/lib/auth0/types/partial_groups_enum.rb +19 -0
- data/lib/auth0/types/partial_phone_template_content.rb +10 -0
- data/lib/auth0/types/password_character_type_enum.rb +14 -0
- data/lib/auth0/types/password_character_type_rule_policy_enum.rb +12 -0
- data/lib/auth0/types/password_default_dictionaries_enum.rb +12 -0
- data/lib/auth0/types/password_identical_characters_policy_enum.rb +12 -0
- data/lib/auth0/types/password_max_length_exceeded_policy_enum.rb +12 -0
- data/lib/auth0/types/password_sequential_characters_policy_enum.rb +12 -0
- data/lib/auth0/types/patch_client_credential_response_content.rb +18 -0
- data/lib/auth0/types/patch_supplemental_signals_response_content.rb +9 -0
- data/lib/auth0/types/permission_request_payload.rb +10 -0
- data/lib/auth0/types/permissions_response_payload.rb +12 -0
- data/lib/auth0/types/phone_attribute.rb +12 -0
- data/lib/auth0/types/phone_provider_channel_enum.rb +11 -0
- data/lib/auth0/types/phone_provider_configuration.rb +12 -0
- data/lib/auth0/types/phone_provider_credentials.rb +13 -0
- data/lib/auth0/types/phone_provider_delivery_method_enum.rb +12 -0
- data/lib/auth0/types/phone_provider_name_enum.rb +12 -0
- data/lib/auth0/types/phone_provider_schema_masked.rb +17 -0
- data/lib/auth0/types/phone_template.rb +15 -0
- data/lib/auth0/types/phone_template_body.rb +10 -0
- data/lib/auth0/types/phone_template_content.rb +11 -0
- data/lib/auth0/types/phone_template_notification_type_enum.rb +15 -0
- data/lib/auth0/types/post_client_credential_response_content.rb +18 -0
- data/lib/auth0/types/post_connection_keys_alg_enum.rb +17 -0
- data/lib/auth0/types/post_connection_keys_request_content.rb +9 -0
- data/lib/auth0/types/post_connections_keys_response_content.rb +23 -0
- data/lib/auth0/types/post_connections_keys_response_content_item.rb +19 -0
- data/lib/auth0/types/preferred_authentication_method_enum.rb +12 -0
- data/lib/auth0/types/preview_cimd_metadata_response_content.rb +12 -0
- data/lib/auth0/types/prompt_group_name_enum.rb +46 -0
- data/lib/auth0/types/prompt_language_enum.rb +92 -0
- data/lib/auth0/types/public_key_credential.rb +15 -0
- data/lib/auth0/types/public_key_credential_algorithm_enum.rb +13 -0
- data/lib/auth0/types/public_key_credential_type_enum.rb +11 -0
- data/lib/auth0/types/refresh_token_date.rb +12 -0
- data/lib/auth0/types/refresh_token_date_object.rb +23 -0
- data/lib/auth0/types/refresh_token_device.rb +15 -0
- data/lib/auth0/types/refresh_token_expiration_type_enum.rb +12 -0
- data/lib/auth0/types/refresh_token_metadata.rb +23 -0
- data/lib/auth0/types/refresh_token_resource_server.rb +10 -0
- data/lib/auth0/types/refresh_token_response_content.rb +20 -0
- data/lib/auth0/types/refresh_token_rotation_type_enum.rb +12 -0
- data/lib/auth0/types/refresh_token_session_id.rb +23 -0
- data/lib/auth0/types/regenerate_users_recovery_code_response_content.rb +9 -0
- data/lib/auth0/types/register_cimd_client_response_content.rb +12 -0
- data/lib/auth0/types/reset_phone_template_request_content.rb +23 -0
- data/lib/auth0/types/reset_phone_template_response_content.rb +15 -0
- data/lib/auth0/types/resource_server.rb +28 -0
- data/lib/auth0/types/resource_server_consent_policy_enum.rb +11 -0
- data/lib/auth0/types/resource_server_proof_of_possession.rb +12 -0
- data/lib/auth0/types/resource_server_proof_of_possession_mechanism_enum.rb +12 -0
- data/lib/auth0/types/resource_server_proof_of_possession_required_for_enum.rb +12 -0
- data/lib/auth0/types/resource_server_scope.rb +10 -0
- data/lib/auth0/types/resource_server_subject_type_authorization.rb +11 -0
- data/lib/auth0/types/resource_server_subject_type_authorization_client.rb +10 -0
- data/lib/auth0/types/resource_server_subject_type_authorization_client_policy_enum.rb +12 -0
- data/lib/auth0/types/resource_server_subject_type_authorization_user.rb +10 -0
- data/lib/auth0/types/resource_server_subject_type_authorization_user_policy_enum.rb +13 -0
- data/lib/auth0/types/resource_server_token_dialect_response_enum.rb +14 -0
- data/lib/auth0/types/resource_server_token_dialect_schema_enum.rb +14 -0
- data/lib/auth0/types/resource_server_token_encryption.rb +10 -0
- data/lib/auth0/types/resource_server_token_encryption_algorithm_enum.rb +13 -0
- data/lib/auth0/types/resource_server_token_encryption_format_enum.rb +11 -0
- data/lib/auth0/types/resource_server_token_encryption_key.rb +12 -0
- data/lib/auth0/types/resource_server_verification_key_pem_certificate.rb +23 -0
- data/lib/auth0/types/revoked_signing_keys_response_content.rb +10 -0
- data/lib/auth0/types/role.rb +11 -0
- data/lib/auth0/types/role_user.rb +12 -0
- data/lib/auth0/types/rollback_action_module_response_content.rb +19 -0
- data/lib/auth0/types/rotate_client_secret_response_content.rb +68 -0
- data/lib/auth0/types/rotate_connection_keys_request_content.rb +9 -0
- data/lib/auth0/types/rotate_connection_keys_signing_alg_enum.rb +17 -0
- data/lib/auth0/types/rotate_connections_keys_response_content.rb +17 -0
- data/lib/auth0/types/rotate_signing_keys_response_content.rb +10 -0
- data/lib/auth0/types/rule.rb +14 -0
- data/lib/auth0/types/rules_config.rb +9 -0
- data/lib/auth0/types/scim_configuration.rb +16 -0
- data/lib/auth0/types/scim_mapping_item.rb +10 -0
- data/lib/auth0/types/scim_token_item.rb +13 -0
- data/lib/auth0/types/screen_group_name_enum.rb +99 -0
- data/lib/auth0/types/search_engine_versions_enum.rb +13 -0
- data/lib/auth0/types/self_service_profile.rb +17 -0
- data/lib/auth0/types/self_service_profile_allowed_strategy_enum.rb +20 -0
- data/lib/auth0/types/self_service_profile_branding.rb +23 -0
- data/lib/auth0/types/self_service_profile_branding_colors.rb +9 -0
- data/lib/auth0/types/self_service_profile_branding_properties.rb +10 -0
- data/lib/auth0/types/self_service_profile_custom_text_language_enum.rb +11 -0
- data/lib/auth0/types/self_service_profile_custom_text_page_enum.rb +11 -0
- data/lib/auth0/types/self_service_profile_description.rb +23 -0
- data/lib/auth0/types/self_service_profile_sso_ticket_connection_config.rb +15 -0
- data/lib/auth0/types/self_service_profile_sso_ticket_connection_options.rb +12 -0
- data/lib/auth0/types/self_service_profile_sso_ticket_domain_aliases_config.rb +11 -0
- data/lib/auth0/types/self_service_profile_sso_ticket_domain_verification_enum.rb +13 -0
- data/lib/auth0/types/self_service_profile_sso_ticket_enabled_features.rb +13 -0
- data/lib/auth0/types/self_service_profile_sso_ticket_enabled_organization.rb +11 -0
- data/lib/auth0/types/self_service_profile_sso_ticket_google_workspace_config.rb +10 -0
- data/lib/auth0/types/self_service_profile_sso_ticket_idp_initiated_client_protocol_enum.rb +13 -0
- data/lib/auth0/types/self_service_profile_sso_ticket_idp_initiated_options.rb +13 -0
- data/lib/auth0/types/self_service_profile_sso_ticket_provisioning_config.rb +12 -0
- data/lib/auth0/types/self_service_profile_sso_ticket_provisioning_scope_enum.rb +20 -0
- data/lib/auth0/types/self_service_profile_user_attribute.rb +11 -0
- data/lib/auth0/types/self_service_profile_user_attributes.rb +23 -0
- data/lib/auth0/types/session_authentication_signal.rb +12 -0
- data/lib/auth0/types/session_authentication_signals.rb +10 -0
- data/lib/auth0/types/session_client_metadata.rb +10 -0
- data/lib/auth0/types/session_cookie_metadata.rb +10 -0
- data/lib/auth0/types/session_cookie_metadata_mode_enum.rb +12 -0
- data/lib/auth0/types/session_cookie_mode_enum.rb +12 -0
- data/lib/auth0/types/session_cookie_schema.rb +10 -0
- data/lib/auth0/types/session_date.rb +12 -0
- data/lib/auth0/types/session_device_metadata.rb +15 -0
- data/lib/auth0/types/session_ip.rb +23 -0
- data/lib/auth0/types/session_metadata.rb +23 -0
- data/lib/auth0/types/session_response_content.rb +21 -0
- data/lib/auth0/types/set_custom_signing_keys_response_content.rb +10 -0
- data/lib/auth0/types/set_email_template_response_content.rb +17 -0
- data/lib/auth0/types/set_guardian_factor_duo_settings_response_content.rb +11 -0
- data/lib/auth0/types/set_guardian_factor_phone_message_types_response_content.rb +9 -0
- data/lib/auth0/types/set_guardian_factor_phone_templates_response_content.rb +10 -0
- data/lib/auth0/types/set_guardian_factor_response_content.rb +9 -0
- data/lib/auth0/types/set_guardian_factor_sms_templates_response_content.rb +10 -0
- data/lib/auth0/types/set_guardian_factors_provider_phone_response_content.rb +9 -0
- data/lib/auth0/types/set_guardian_factors_provider_phone_twilio_response_content.rb +12 -0
- data/lib/auth0/types/set_guardian_factors_provider_push_notification_apns_response_content.rb +10 -0
- data/lib/auth0/types/set_guardian_factors_provider_push_notification_fcm_response_content.rb +23 -0
- data/lib/auth0/types/set_guardian_factors_provider_push_notification_fcmv1response_content.rb +23 -0
- data/lib/auth0/types/set_guardian_factors_provider_push_notification_response_content.rb +9 -0
- data/lib/auth0/types/set_guardian_factors_provider_push_notification_sns_response_content.rb +13 -0
- data/lib/auth0/types/set_guardian_factors_provider_sms_response_content.rb +9 -0
- data/lib/auth0/types/set_guardian_factors_provider_sms_twilio_response_content.rb +12 -0
- data/lib/auth0/types/set_guardian_policies_request_content.rb +23 -0
- data/lib/auth0/types/set_guardian_policies_response_content.rb +23 -0
- data/lib/auth0/types/set_network_acls_response_content.rb +15 -0
- data/lib/auth0/types/set_partials_request_content.rb +23 -0
- data/lib/auth0/types/set_rules_config_response_content.rb +10 -0
- data/lib/auth0/types/set_self_service_profile_custom_text_request_content.rb +23 -0
- data/lib/auth0/types/set_self_service_profile_custom_text_response_content.rb +23 -0
- data/lib/auth0/types/set_user_authentication_method_response_content.rb +22 -0
- data/lib/auth0/types/set_user_authentication_methods.rb +14 -0
- data/lib/auth0/types/set_user_authentication_methods_request_content.rb +23 -0
- data/lib/auth0/types/sets_custom_texts_by_language_request_content.rb +23 -0
- data/lib/auth0/types/signing_algorithm_enum.rb +14 -0
- data/lib/auth0/types/signing_keys.rb +20 -0
- data/lib/auth0/types/signing_keys_date.rb +12 -0
- data/lib/auth0/types/signup_schema.rb +9 -0
- data/lib/auth0/types/signup_status_enum.rb +13 -0
- data/lib/auth0/types/signup_verification.rb +9 -0
- data/lib/auth0/types/signup_verified.rb +10 -0
- data/lib/auth0/types/supported_locales.rb +92 -0
- data/lib/auth0/types/suspicious_ip_throttling_allowlist.rb +23 -0
- data/lib/auth0/types/suspicious_ip_throttling_allowlist_item.rb +23 -0
- data/lib/auth0/types/suspicious_ip_throttling_pre_login_stage.rb +11 -0
- data/lib/auth0/types/suspicious_ip_throttling_pre_user_registration_stage.rb +11 -0
- data/lib/auth0/types/suspicious_ip_throttling_shields_enum.rb +12 -0
- data/lib/auth0/types/suspicious_ip_throttling_stage.rb +11 -0
- data/lib/auth0/types/synchronize_groups_enum.rb +13 -0
- data/lib/auth0/types/synchronized_group_payload.rb +9 -0
- data/lib/auth0/types/tenant_oidc_logout_settings.rb +10 -0
- data/lib/auth0/types/tenant_settings_device_flow.rb +11 -0
- data/lib/auth0/types/tenant_settings_device_flow_charset.rb +12 -0
- data/lib/auth0/types/tenant_settings_dynamic_client_registration_security_mode.rb +12 -0
- data/lib/auth0/types/tenant_settings_error_page.rb +12 -0
- data/lib/auth0/types/tenant_settings_flags.rb +38 -0
- data/lib/auth0/types/tenant_settings_guardian_page.rb +11 -0
- data/lib/auth0/types/tenant_settings_mtls.rb +10 -0
- data/lib/auth0/types/tenant_settings_password_page.rb +11 -0
- data/lib/auth0/types/tenant_settings_resource_parameter_profile.rb +12 -0
- data/lib/auth0/types/tenant_settings_sessions.rb +10 -0
- data/lib/auth0/types/tenant_settings_supported_locales_enum.rb +92 -0
- data/lib/auth0/types/test_action_payload.rb +23 -0
- data/lib/auth0/types/test_action_response_content.rb +9 -0
- data/lib/auth0/types/test_action_result_payload.rb +23 -0
- data/lib/auth0/types/test_custom_domain_response_content.rb +10 -0
- data/lib/auth0/types/test_event_data_content.rb +23 -0
- data/lib/auth0/types/token_exchange_profile_response_content.rb +15 -0
- data/lib/auth0/types/token_exchange_profile_type_enum.rb +11 -0
- data/lib/auth0/types/token_quota.rb +9 -0
- data/lib/auth0/types/token_quota_client_credentials.rb +12 -0
- data/lib/auth0/types/token_quota_configuration.rb +9 -0
- data/lib/auth0/types/twilio_provider_configuration.rb +12 -0
- data/lib/auth0/types/twilio_provider_credentials.rb +9 -0
- data/lib/auth0/types/twilio_provider_delivery_method_enum.rb +12 -0
- data/lib/auth0/types/universal_login_experience_enum.rb +12 -0
- data/lib/auth0/types/update_action_bindings_response_content.rb +9 -0
- data/lib/auth0/types/update_action_module_response_content.rb +19 -0
- data/lib/auth0/types/update_action_response_content.rb +25 -0
- data/lib/auth0/types/update_acul_response_content.rb +14 -0
- data/lib/auth0/types/update_attack_protection_captcha_response_content.rb +16 -0
- data/lib/auth0/types/update_bot_detection_settings_response_content.rb +14 -0
- data/lib/auth0/types/update_branding_colors.rb +11 -0
- data/lib/auth0/types/update_branding_font.rb +10 -0
- data/lib/auth0/types/update_branding_page_background.rb +24 -0
- data/lib/auth0/types/update_branding_phone_provider_response_content.rb +17 -0
- data/lib/auth0/types/update_branding_response_content.rb +12 -0
- data/lib/auth0/types/update_branding_theme_response_content.rb +15 -0
- data/lib/auth0/types/update_breached_password_detection_settings_response_content.rb +13 -0
- data/lib/auth0/types/update_brute_force_settings_response_content.rb +13 -0
- data/lib/auth0/types/update_client_grant_response_content.rb +19 -0
- data/lib/auth0/types/update_client_response_content.rb +68 -0
- data/lib/auth0/types/update_connection_options.rb +43 -0
- data/lib/auth0/types/update_connection_profile_response_content.rb +15 -0
- data/lib/auth0/types/update_connection_request_content_ad.rb +10 -0
- data/lib/auth0/types/update_connection_request_content_adfs.rb +11 -0
- data/lib/auth0/types/update_connection_request_content_amazon.rb +10 -0
- data/lib/auth0/types/update_connection_request_content_apple.rb +10 -0
- data/lib/auth0/types/update_connection_request_content_auth0.rb +11 -0
- data/lib/auth0/types/update_connection_request_content_auth0oidc.rb +10 -0
- data/lib/auth0/types/update_connection_request_content_azure_ad.rb +11 -0
- data/lib/auth0/types/update_connection_request_content_baidu.rb +10 -0
- data/lib/auth0/types/update_connection_request_content_bitbucket.rb +10 -0
- data/lib/auth0/types/update_connection_request_content_bitly.rb +10 -0
- data/lib/auth0/types/update_connection_request_content_box.rb +10 -0
- data/lib/auth0/types/update_connection_request_content_custom.rb +10 -0
- data/lib/auth0/types/update_connection_request_content_daccount.rb +10 -0
- data/lib/auth0/types/update_connection_request_content_dropbox.rb +10 -0
- data/lib/auth0/types/update_connection_request_content_dwolla.rb +10 -0
- data/lib/auth0/types/update_connection_request_content_email.rb +10 -0
- data/lib/auth0/types/update_connection_request_content_evernote.rb +10 -0
- data/lib/auth0/types/update_connection_request_content_evernote_sandbox.rb +10 -0
- data/lib/auth0/types/update_connection_request_content_exact.rb +10 -0
- data/lib/auth0/types/update_connection_request_content_facebook.rb +10 -0
- data/lib/auth0/types/update_connection_request_content_fitbit.rb +10 -0
- data/lib/auth0/types/update_connection_request_content_git_hub.rb +10 -0
- data/lib/auth0/types/update_connection_request_content_google_apps.rb +11 -0
- data/lib/auth0/types/update_connection_request_content_google_o_auth2.rb +10 -0
- data/lib/auth0/types/update_connection_request_content_instagram.rb +10 -0
- data/lib/auth0/types/update_connection_request_content_ip.rb +11 -0
- data/lib/auth0/types/update_connection_request_content_line.rb +10 -0
- data/lib/auth0/types/update_connection_request_content_linkedin.rb +10 -0
- data/lib/auth0/types/update_connection_request_content_o_auth1.rb +10 -0
- data/lib/auth0/types/update_connection_request_content_o_auth2.rb +10 -0
- data/lib/auth0/types/update_connection_request_content_office365.rb +11 -0
- data/lib/auth0/types/update_connection_request_content_oidc.rb +13 -0
- data/lib/auth0/types/update_connection_request_content_okta.rb +11 -0
- data/lib/auth0/types/update_connection_request_content_paypal.rb +10 -0
- data/lib/auth0/types/update_connection_request_content_paypal_sandbox.rb +10 -0
- data/lib/auth0/types/update_connection_request_content_ping_federate.rb +11 -0
- data/lib/auth0/types/update_connection_request_content_planning_center.rb +10 -0
- data/lib/auth0/types/update_connection_request_content_salesforce.rb +10 -0
- data/lib/auth0/types/update_connection_request_content_salesforce_community.rb +10 -0
- data/lib/auth0/types/update_connection_request_content_salesforce_sandbox.rb +10 -0
- data/lib/auth0/types/update_connection_request_content_saml.rb +11 -0
- data/lib/auth0/types/update_connection_request_content_sharepoint.rb +11 -0
- data/lib/auth0/types/update_connection_request_content_shop.rb +10 -0
- data/lib/auth0/types/update_connection_request_content_shopify.rb +10 -0
- data/lib/auth0/types/update_connection_request_content_sms.rb +10 -0
- data/lib/auth0/types/update_connection_request_content_soundcloud.rb +10 -0
- data/lib/auth0/types/update_connection_request_content_thirty_seven_signals.rb +10 -0
- data/lib/auth0/types/update_connection_request_content_twitter.rb +10 -0
- data/lib/auth0/types/update_connection_request_content_untappd.rb +10 -0
- data/lib/auth0/types/update_connection_request_content_vkontakte.rb +10 -0
- data/lib/auth0/types/update_connection_request_content_weibo.rb +10 -0
- data/lib/auth0/types/update_connection_request_content_windows_live.rb +10 -0
- data/lib/auth0/types/update_connection_request_content_wordpress.rb +10 -0
- data/lib/auth0/types/update_connection_request_content_yahoo.rb +10 -0
- data/lib/auth0/types/update_connection_request_content_yandex.rb +10 -0
- data/lib/auth0/types/update_connection_response_content.rb +20 -0
- data/lib/auth0/types/update_custom_domain_response_content.rb +20 -0
- data/lib/auth0/types/update_default_canonical_domain_response_content.rb +9 -0
- data/lib/auth0/types/update_default_custom_domain_response_content.rb +21 -0
- data/lib/auth0/types/update_default_domain_response_content.rb +12 -0
- data/lib/auth0/types/update_directory_provisioning_request_content.rb +11 -0
- data/lib/auth0/types/update_directory_provisioning_response_content.rb +19 -0
- data/lib/auth0/types/update_email_provider_response_content.rb +13 -0
- data/lib/auth0/types/update_email_template_response_content.rb +17 -0
- data/lib/auth0/types/update_enabled_client_connections_request_content.rb +23 -0
- data/lib/auth0/types/update_enabled_client_connections_request_content_item.rb +10 -0
- data/lib/auth0/types/update_event_stream_response_content.rb +13 -0
- data/lib/auth0/types/update_flow_response_content.rb +14 -0
- data/lib/auth0/types/update_flows_vault_connection_response_content.rb +18 -0
- data/lib/auth0/types/update_flows_vault_connection_setup.rb +27 -0
- data/lib/auth0/types/update_form_response_content.rb +21 -0
- data/lib/auth0/types/update_guardian_factor_duo_settings_response_content.rb +11 -0
- data/lib/auth0/types/update_guardian_factors_provider_push_notification_apns_response_content.rb +10 -0
- data/lib/auth0/types/update_guardian_factors_provider_push_notification_fcm_response_content.rb +23 -0
- data/lib/auth0/types/update_guardian_factors_provider_push_notification_fcmv1response_content.rb +23 -0
- data/lib/auth0/types/update_guardian_factors_provider_push_notification_sns_response_content.rb +13 -0
- data/lib/auth0/types/update_hook_response_content.rb +14 -0
- data/lib/auth0/types/update_hook_secret_request_content.rb +23 -0
- data/lib/auth0/types/update_log_stream_response_content.rb +18 -0
- data/lib/auth0/types/update_network_acl_response_content.rb +15 -0
- data/lib/auth0/types/update_organization_all_connection_response_content.rb +16 -0
- data/lib/auth0/types/update_organization_connection_response_content.rb +13 -0
- data/lib/auth0/types/update_organization_discovery_domain_response_content.rb +14 -0
- data/lib/auth0/types/update_organization_response_content.rb +14 -0
- data/lib/auth0/types/update_phone_template_response_content.rb +15 -0
- data/lib/auth0/types/update_refresh_token_response_content.rb +20 -0
- data/lib/auth0/types/update_resource_server_response_content.rb +28 -0
- data/lib/auth0/types/update_risk_assessments_settings_new_device_response_content.rb +9 -0
- data/lib/auth0/types/update_risk_assessments_settings_response_content.rb +9 -0
- data/lib/auth0/types/update_role_response_content.rb +11 -0
- data/lib/auth0/types/update_rule_response_content.rb +14 -0
- data/lib/auth0/types/update_scim_configuration_response_content.rb +16 -0
- data/lib/auth0/types/update_self_service_profile_response_content.rb +17 -0
- data/lib/auth0/types/update_session_response_content.rb +21 -0
- data/lib/auth0/types/update_settings_response_content.rb +11 -0
- data/lib/auth0/types/update_suspicious_ip_throttling_settings_response_content.rb +12 -0
- data/lib/auth0/types/update_tenant_settings_response_content.rb +45 -0
- data/lib/auth0/types/update_token_quota.rb +9 -0
- data/lib/auth0/types/update_universal_login_template_request_content.rb +12 -0
- data/lib/auth0/types/update_universal_login_template_request_content_template.rb +9 -0
- data/lib/auth0/types/update_user_attribute_profile_response_content.rb +12 -0
- data/lib/auth0/types/update_user_authentication_method_response_content.rb +22 -0
- data/lib/auth0/types/update_user_response_content.rb +29 -0
- data/lib/auth0/types/update_verifiable_credential_template_response_content.rb +17 -0
- data/lib/auth0/types/user_app_metadata_schema.rb +23 -0
- data/lib/auth0/types/user_attribute_profile.rb +12 -0
- data/lib/auth0/types/user_attribute_profile_id.rb +23 -0
- data/lib/auth0/types/user_attribute_profile_name.rb +23 -0
- data/lib/auth0/types/user_attribute_profile_oidc_mapping.rb +11 -0
- data/lib/auth0/types/user_attribute_profile_patch_user_id.rb +23 -0
- data/lib/auth0/types/user_attribute_profile_saml_mapping.rb +23 -0
- data/lib/auth0/types/user_attribute_profile_strategy_overrides.rb +17 -0
- data/lib/auth0/types/user_attribute_profile_strategy_overrides_mapping.rb +11 -0
- data/lib/auth0/types/user_attribute_profile_strategy_overrides_user_id.rb +17 -0
- data/lib/auth0/types/user_attribute_profile_strategy_overrides_user_id_mapping.rb +11 -0
- data/lib/auth0/types/user_attribute_profile_template.rb +12 -0
- data/lib/auth0/types/user_attribute_profile_template_item.rb +11 -0
- data/lib/auth0/types/user_attribute_profile_user_attribute_additional_properties.rb +16 -0
- data/lib/auth0/types/user_attribute_profile_user_attributes.rb +23 -0
- data/lib/auth0/types/user_attribute_profile_user_id.rb +13 -0
- data/lib/auth0/types/user_attribute_profile_user_id_oidc_mapping_enum.rb +11 -0
- data/lib/auth0/types/user_attribute_profile_user_id_oidc_strategy_override_mapping.rb +13 -0
- data/lib/auth0/types/user_attribute_profile_user_id_saml_mapping.rb +23 -0
- data/lib/auth0/types/user_authentication_method.rb +28 -0
- data/lib/auth0/types/user_authentication_method_properties.rb +10 -0
- data/lib/auth0/types/user_authentication_method_properties_enum.rb +14 -0
- data/lib/auth0/types/user_block_identifier.rb +11 -0
- data/lib/auth0/types/user_date_schema.rb +12 -0
- data/lib/auth0/types/user_enrollment_auth_method_enum.rb +15 -0
- data/lib/auth0/types/user_enrollment_status_enum.rb +12 -0
- data/lib/auth0/types/user_grant.rb +13 -0
- data/lib/auth0/types/user_groups_response_schema.rb +9 -0
- data/lib/auth0/types/user_id.rb +13 -0
- data/lib/auth0/types/user_identity.rb +16 -0
- data/lib/auth0/types/user_identity_provider_enum.rb +65 -0
- data/lib/auth0/types/user_identity_schema.rb +16 -0
- data/lib/auth0/types/user_list_log_offset_paginated_response_content.rb +13 -0
- data/lib/auth0/types/user_metadata.rb +23 -0
- data/lib/auth0/types/user_metadata_schema.rb +23 -0
- data/lib/auth0/types/user_multifactor_provider_enum.rb +12 -0
- data/lib/auth0/types/user_permission_schema.rb +12 -0
- data/lib/auth0/types/user_profile_data.rb +16 -0
- data/lib/auth0/types/user_response_schema.rb +29 -0
- data/lib/auth0/types/username_allowed_types.rb +10 -0
- data/lib/auth0/types/username_attribute.rb +13 -0
- data/lib/auth0/types/username_validation.rb +11 -0
- data/lib/auth0/types/users_enrollment.rb +17 -0
- data/lib/auth0/types/verifiable_credential_template_response.rb +17 -0
- data/lib/auth0/types/verification_method_enum.rb +12 -0
- data/lib/auth0/types/verify_custom_domain_response_content.rb +20 -0
- data/lib/auth0/types/verify_email_ticket_response_content.rb +9 -0
- data/lib/auth0/types/x509certificate_credential.rb +11 -0
- data/lib/auth0/types/x509certificate_credential_type_enum.rb +11 -0
- data/lib/auth0/user_attribute_profiles/client.rb +269 -0
- data/lib/auth0/user_attribute_profiles/types/create_user_attribute_profile_request_content.rb +13 -0
- data/lib/auth0/user_attribute_profiles/types/list_user_attribute_profile_request_parameters.rb +12 -0
- data/lib/auth0/user_attribute_profiles/types/update_user_attribute_profile_request_content.rb +14 -0
- data/lib/auth0/user_blocks/client.rb +179 -0
- data/lib/auth0/user_blocks/types/delete_user_blocks_by_identifier_request_parameters.rb +11 -0
- data/lib/auth0/user_blocks/types/list_user_blocks_by_identifier_request_parameters.rb +12 -0
- data/lib/auth0/user_blocks/types/list_user_blocks_request_parameters.rb +12 -0
- data/lib/auth0/user_grants/client.rb +143 -0
- data/lib/auth0/user_grants/types/delete_user_grant_by_user_id_request_parameters.rb +11 -0
- data/lib/auth0/user_grants/types/list_user_grants_request_parameters.rb +16 -0
- data/lib/auth0/users/authentication_methods/client.rb +290 -0
- data/lib/auth0/users/authentication_methods/types/create_user_authentication_method_request_content.rb +22 -0
- data/lib/auth0/users/authentication_methods/types/list_user_authentication_methods_request_parameters.rb +16 -0
- data/lib/auth0/users/authentication_methods/types/update_user_authentication_method_request_content.rb +16 -0
- data/lib/auth0/users/authenticators/client.rb +51 -0
- data/lib/auth0/users/client.rb +530 -0
- data/lib/auth0/users/connected_accounts/client.rb +66 -0
- data/lib/auth0/users/connected_accounts/types/get_user_connected_accounts_request_parameters.rb +15 -0
- data/lib/auth0/users/enrollments/client.rb +50 -0
- data/lib/auth0/users/federated_connections_tokensets/client.rb +79 -0
- data/lib/auth0/users/groups/client.rb +70 -0
- data/lib/auth0/users/groups/types/get_user_groups_request_parameters.rb +17 -0
- data/lib/auth0/users/identities/client.rb +127 -0
- data/lib/auth0/users/identities/types/link_user_identity_request_content.rb +17 -0
- data/lib/auth0/users/logs/client.rb +81 -0
- data/lib/auth0/users/logs/types/list_user_logs_request_parameters.rb +17 -0
- data/lib/auth0/users/multifactor/client.rb +83 -0
- data/lib/auth0/users/organizations/client.rb +70 -0
- data/lib/auth0/users/organizations/types/list_user_organizations_request_parameters.rb +16 -0
- data/lib/auth0/users/permissions/client.rb +143 -0
- data/lib/auth0/users/permissions/types/create_user_permissions_request_content.rb +14 -0
- data/lib/auth0/users/permissions/types/delete_user_permissions_request_content.rb +14 -0
- data/lib/auth0/users/permissions/types/list_user_permissions_request_parameters.rb +16 -0
- data/lib/auth0/users/refresh_token/client.rb +98 -0
- data/lib/auth0/users/refresh_token/types/list_refresh_tokens_request_parameters.rb +15 -0
- data/lib/auth0/users/risk_assessments/client.rb +53 -0
- data/lib/auth0/users/risk_assessments/types/clear_assessors_request_content.rb +15 -0
- data/lib/auth0/users/roles/client.rb +160 -0
- data/lib/auth0/users/roles/types/assign_user_roles_request_content.rb +14 -0
- data/lib/auth0/users/roles/types/delete_user_roles_request_content.rb +14 -0
- data/lib/auth0/users/roles/types/list_user_roles_request_parameters.rb +16 -0
- data/lib/auth0/users/sessions/client.rb +98 -0
- data/lib/auth0/users/sessions/types/list_user_sessions_request_parameters.rb +15 -0
- data/lib/auth0/users/types/create_user_request_content.rb +27 -0
- data/lib/auth0/users/types/get_user_request_parameters.rb +13 -0
- data/lib/auth0/users/types/list_users_by_email_request_parameters.rb +13 -0
- data/lib/auth0/users/types/list_users_request_parameters.rb +20 -0
- data/lib/auth0/users/types/revoke_user_access_request_content.rb +13 -0
- data/lib/auth0/users/types/update_user_request_content.rb +29 -0
- data/lib/auth0/verifiable_credentials/client.rb +19 -0
- data/lib/auth0/verifiable_credentials/verification/client.rb +21 -0
- data/lib/auth0/verifiable_credentials/verification/templates/client.rb +206 -0
- data/lib/auth0/verifiable_credentials/verification/templates/types/create_verifiable_credential_template_request_content.rb +20 -0
- data/lib/auth0/verifiable_credentials/verification/templates/types/list_verifiable_credential_templates_request_parameters.rb +16 -0
- data/lib/auth0/verifiable_credentials/verification/templates/types/update_verifiable_credential_template_request_content.rb +21 -0
- data/lib/auth0/version.rb +3 -2
- data/lib/auth0.rb +2677 -9
- data/lib/auth0_client.rb +6 -3
- data/reference.md +33287 -0
- data/v6_MIGRATION_GUIDE.md +949 -0
- data/wiremock/docker-compose.test.yml +14 -0
- data/wiremock/wiremock-mappings.json +12910 -0
- metadata +2693 -463
- data/.bundle/config +0 -4
- data/.devcontainer/Dockerfile +0 -19
- data/.devcontainer/devcontainer.json +0 -37
- data/.env.example +0 -2
- data/.github/CODEOWNERS +0 -1
- data/.github/ISSUE_TEMPLATE/Bug Report.yml +0 -67
- data/.github/ISSUE_TEMPLATE/Feature Request.yml +0 -53
- data/.github/ISSUE_TEMPLATE/config.yml +0 -8
- data/.github/PULL_REQUEST_TEMPLATE.md +0 -35
- data/.github/actions/get-prerelease/action.yml +0 -30
- data/.github/actions/get-release-notes/action.yml +0 -42
- data/.github/actions/get-version/action.yml +0 -21
- data/.github/actions/release-create/action.yml +0 -47
- data/.github/actions/rl-scanner/action.yml +0 -71
- data/.github/actions/rubygems-publish/action.yml +0 -30
- data/.github/actions/setup/action.yml +0 -32
- data/.github/actions/tag-exists/action.yml +0 -36
- data/.github/dependabot.yml +0 -13
- data/.github/stale.yml +0 -20
- data/.github/workflows/codeql.yml +0 -53
- data/.github/workflows/matrix.json +0 -3
- data/.github/workflows/release.yml +0 -36
- data/.github/workflows/rl-scanner.yml +0 -65
- data/.github/workflows/ruby-release.yml +0 -72
- data/.github/workflows/semgrep.yml +0 -40
- data/.github/workflows/snyk.yml +0 -40
- data/.github/workflows/test.yml +0 -69
- data/.gitignore +0 -18
- data/.rspec +0 -3
- data/.rubocop_todo.yml +0 -5
- data/.semgrepignore +0 -6
- data/Dockerfile +0 -5
- data/Gemfile +0 -20
- data/Gemfile.lock +0 -305
- data/Guardfile +0 -37
- data/auth0.gemspec +0 -34
- data/examples/ruby-api/main.rb +0 -33
- data/examples/ruby-on-rails-api/app/assets/images/.keep +0 -0
- data/examples/ruby-on-rails-api/app/assets/javascripts/application.js +0 -16
- data/examples/ruby-on-rails-api/app/assets/stylesheets/application.css +0 -15
- data/examples/ruby-on-rails-api/app/controllers/concerns/.keep +0 -0
- data/examples/ruby-on-rails-api/app/controllers/ping_controller.rb +0 -6
- data/examples/ruby-on-rails-api/app/controllers/secured_ping_controller.rb +0 -11
- data/examples/ruby-on-rails-api/app/helpers/application_helper.rb +0 -3
- data/examples/ruby-on-rails-api/app/mailers/.keep +0 -0
- data/examples/ruby-on-rails-api/app/models/.keep +0 -0
- data/examples/ruby-on-rails-api/app/models/User.rb +0 -5
- data/examples/ruby-on-rails-api/app/models/concerns/.keep +0 -0
- data/examples/ruby-on-rails-api/app/views/layouts/application.html.erb +0 -14
- data/examples/ruby-on-rails-api/bin/bundle +0 -3
- data/examples/ruby-on-rails-api/bin/rake +0 -4
- data/examples/ruby-on-rails-api/bin/setup +0 -29
- data/examples/ruby-on-rails-api/config/database.yml +0 -27
- data/examples/ruby-on-rails-api/config/environments/development.rb +0 -37
- data/examples/ruby-on-rails-api/config/environments/production.rb +0 -83
- data/examples/ruby-on-rails-api/config/environments/test.rb +0 -41
- data/examples/ruby-on-rails-api/config/initializers/backtrace_silencers.rb +0 -7
- data/examples/ruby-on-rails-api/config/initializers/cookies_serializer.rb +0 -3
- data/examples/ruby-on-rails-api/config/initializers/dotenv.rb +0 -4
- data/examples/ruby-on-rails-api/config/initializers/filter_parameter_logging.rb +0 -4
- data/examples/ruby-on-rails-api/config/initializers/inflections.rb +0 -16
- data/examples/ruby-on-rails-api/config/initializers/knock.rb +0 -35
- data/examples/ruby-on-rails-api/config/initializers/mime_types.rb +0 -4
- data/examples/ruby-on-rails-api/config/initializers/session_store.rb +0 -3
- data/examples/ruby-on-rails-api/config/initializers/wrap_parameters.rb +0 -14
- data/examples/ruby-on-rails-api/config/locales/en.yml +0 -23
- data/examples/ruby-on-rails-api/config/secrets.yml +0 -28
- data/examples/ruby-on-rails-api/db/schema.rb +0 -15
- data/examples/ruby-on-rails-api/db/seeds.rb +0 -7
- data/examples/ruby-on-rails-api/lib/assets/.keep +0 -0
- data/examples/ruby-on-rails-api/lib/tasks/.keep +0 -0
- data/examples/ruby-on-rails-api/log/.keep +0 -0
- data/examples/ruby-on-rails-api/public/404.html +0 -67
- data/examples/ruby-on-rails-api/public/422.html +0 -67
- data/examples/ruby-on-rails-api/public/500.html +0 -66
- data/examples/ruby-on-rails-api/public/favicon.ico +0 -0
- data/examples/ruby-on-rails-api/public/robots.txt +0 -5
- data/examples/ruby-on-rails-api/test/controllers/.keep +0 -0
- data/examples/ruby-on-rails-api/test/fixtures/.keep +0 -0
- data/examples/ruby-on-rails-api/test/helpers/.keep +0 -0
- data/examples/ruby-on-rails-api/test/integration/.keep +0 -0
- data/examples/ruby-on-rails-api/test/mailers/.keep +0 -0
- data/examples/ruby-on-rails-api/test/models/.keep +0 -0
- data/examples/ruby-on-rails-api/test/ping_controller_test.rb +0 -8
- data/examples/ruby-on-rails-api/test/secured_ping_controller_test.rb +0 -26
- data/examples/ruby-on-rails-api/test/test_helper.rb +0 -16
- data/lib/auth0/api/v2/actions.rb +0 -209
- data/lib/auth0/api/v2/anomaly.rb +0 -36
- data/lib/auth0/api/v2/attack_protection.rb +0 -79
- data/lib/auth0/api/v2/blacklists.rb +0 -45
- data/lib/auth0/api/v2/branding.rb +0 -65
- data/lib/auth0/api/v2/client_grants.rb +0 -91
- data/lib/auth0/api/v2/clients.rb +0 -127
- data/lib/auth0/api/v2/connections.rb +0 -115
- data/lib/auth0/api/v2/device_credentials.rb +0 -82
- data/lib/auth0/api/v2/emails.rb +0 -56
- data/lib/auth0/api/v2/grants.rb +0 -49
- data/lib/auth0/api/v2/guardian.rb +0 -142
- data/lib/auth0/api/v2/jobs.rb +0 -135
- data/lib/auth0/api/v2/log_streams.rb +0 -78
- data/lib/auth0/api/v2/logs.rb +0 -65
- data/lib/auth0/api/v2/organizations.rb +0 -407
- data/lib/auth0/api/v2/prompts.rb +0 -70
- data/lib/auth0/api/v2/refresh_tokens.rb +0 -34
- data/lib/auth0/api/v2/resource_servers.rb +0 -85
- data/lib/auth0/api/v2/roles.rb +0 -176
- data/lib/auth0/api/v2/rules.rb +0 -109
- data/lib/auth0/api/v2/sessions.rb +0 -43
- data/lib/auth0/api/v2/stats.rb +0 -41
- data/lib/auth0/api/v2/tenants.rb +0 -41
- data/lib/auth0/api/v2/tickets.rb +0 -104
- data/lib/auth0/api/v2/user_blocks.rb +0 -62
- data/lib/auth0/api/v2/users.rb +0 -510
- data/lib/auth0/api/v2/users_by_email.rb +0 -36
- data/lib/auth0/api/v2.rb +0 -64
- data/opslevel.yml +0 -5
- data/publish_rubygem.sh +0 -10
- data/spec/fixtures/vcr_cassettes/Auth0_Api_AuthenticationEndpoints/_change_password/should_trigger_a_password_reset.yml +0 -93
- data/spec/fixtures/vcr_cassettes/Auth0_Api_AuthenticationEndpoints/_login_with_resource_owner/should_fail_with_an_incorrect_email.yml +0 -85
- data/spec/fixtures/vcr_cassettes/Auth0_Api_AuthenticationEndpoints/_login_with_resource_owner/should_fail_with_an_incorrect_password.yml +0 -85
- data/spec/fixtures/vcr_cassettes/Auth0_Api_AuthenticationEndpoints/_login_with_resource_owner/should_fail_with_an_invalid_audience.yml +0 -86
- data/spec/fixtures/vcr_cassettes/Auth0_Api_AuthenticationEndpoints/_login_with_resource_owner/should_login_successfully_with_a_custom_audience.yml +0 -87
- data/spec/fixtures/vcr_cassettes/Auth0_Api_AuthenticationEndpoints/_login_with_resource_owner/should_login_successfully_with_a_default_scope.yml +0 -88
- data/spec/fixtures/vcr_cassettes/Auth0_Api_AuthenticationEndpoints/_saml_metadata/should_retrieve_SAML_metadata.yml +0 -110
- data/spec/fixtures/vcr_cassettes/Auth0_Api_AuthenticationEndpoints/_userinfo/should_fail_as_not_authorized.yml +0 -94
- data/spec/fixtures/vcr_cassettes/Auth0_Api_AuthenticationEndpoints/_userinfo/should_return_the_userinfo.yml +0 -176
- data/spec/fixtures/vcr_cassettes/Auth0_Api_AuthenticationEndpoints/_wsfed_metadata/should_retrieve_WSFED_metadata.yml +0 -98
- data/spec/fixtures/vcr_cassettes/Auth0_Api_AuthenticationEndpoints/create_test_user.yml +0 -93
- data/spec/fixtures/vcr_cassettes/Auth0_Api_AuthenticationEndpoints/delete_test_user.yml +0 -72
- data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_Blacklists/_add_token_to_blacklist/should_add_a_token_to_the_blacklist.yml +0 -74
- data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_Blacklists/_blacklisted_tokens/should_get_the_added_token_from_the_blacklist.yml +0 -74
- data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_ClientGrants/_client_grants/should_return_at_least_1_result.yml +0 -78
- data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_ClientGrants/_client_grants/should_return_the_test_client_grant.yml +0 -78
- data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_ClientGrants/_delete_client_grant/should_delete_the_test_client_grant.yml +0 -72
- data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_ClientGrants/_patch_client_grant/should_update_the_test_client_grant.yml +0 -76
- data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_ClientGrants/create_test_client.yml +0 -80
- data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_ClientGrants/create_test_client_grant.yml +0 -76
- data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_ClientGrants/delete_test_client.yml +0 -72
- data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_ClientGrants/delete_test_client_grant.yml +0 -72
- data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_Clients/_client/_filters/should_exclude_and_include_fields_properly.yml +0 -78
- data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_Clients/_client/_filters/should_include_the_specified_fields.yml +0 -74
- data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_Clients/_client/should_get_the_test_client.yml +0 -78
- data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_Clients/_clients/_filters/should_exclude_fields_not_specified.yml +0 -79
- data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_Clients/_clients/_filters/should_exclude_the_specified_fields.yml +0 -272
- data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_Clients/_clients/_filters/should_include_the_specified_fields.yml +0 -88
- data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_Clients/_clients/_filters/should_paginate_results.yml +0 -79
- data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_Clients/_clients/should_get_at_least_one_client.yml +0 -271
- data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_Clients/_delete_client/should_delete_the_test_client_without_an_error.yml +0 -72
- data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_Clients/_patch_client/should_update_the_client_with_the_correct_attributes.yml +0 -81
- data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_Clients/create_test_client.yml +0 -81
- data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_Connections/_connection/_filters/should_exclude_the_fields_indicated.yml +0 -74
- data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_Connections/_connection/_filters/should_include_the_fields_indicated.yml +0 -74
- data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_Connections/_connection/should_find_the_correct_connection.yml +0 -74
- data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_Connections/_connections/_filters/should_include_previously-created_connection_when_filtered.yml +0 -78
- data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_Connections/_connections/_filters/should_should_exclude_the_fields_indicated_from_filtered_results.yml +0 -78
- data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_Connections/_connections/_filters/should_should_include_the_fields_indicated_from_filtered_results.yml +0 -78
- data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_Connections/_connections/should_include_the_previously_created_connection.yml +0 -79
- data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_Connections/_connections/should_not_be_empty.yml +0 -79
- data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_Connections/_delete_connection/should_delete_the_connection.yml +0 -74
- data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_Connections/_delete_connection_user/should_delete_the_user_created.yml +0 -148
- data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_Connections/_update_connection/should_update_the_connection.yml +0 -76
- data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_Connections/create_test_connection.yml +0 -76
- data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_Connections/create_test_user.yml +0 -76
- data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_DeviceCredentials/create_test_credential.yml +0 -72
- data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_DeviceCredentials/create_test_user.yml +0 -76
- data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_DeviceCredentials/delete_test_user.yml +0 -72
- data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_Emails/_configure_provider/should_configure_a_new_email_provider.yml +0 -72
- data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_Emails/_delete_provider/should_delete_the_existing_email_provider_without_an_error.yml +0 -72
- data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_Emails/_delete_provider/should_throw_an_error_trying_to_get_the_email_provider.yml +0 -69
- data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_Emails/_get_provider/_filters/should_get_the_existing_email_provider_with_specific_fields.yml +0 -69
- data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_Emails/_get_provider/_filters/should_get_the_existing_email_provider_without_specific_fields.yml +0 -69
- data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_Emails/_get_provider/should_get_the_existing_email_provider.yml +0 -69
- data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_Emails/_update_provider/should_update_the_existing_email_provider.yml +0 -71
- data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_Emails/delete_existing_provider.yml +0 -72
- data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_Jobs/_export_users_and_get_job/should_create_an_export_users_job_successfully.yml +0 -76
- data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_Jobs/_export_users_and_get_job/should_get_the_export_users_job.yml +0 -147
- data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_Jobs/_import_users_and_get_job/should_create_an_import_users_job_successfully.yml +0 -81
- data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_Jobs/_import_users_and_get_job/should_get_the_import_users_job.yml +0 -152
- data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_Jobs/_send_verification_email_and_get_job/should_create_a_new_verification_email_job.yml +0 -149
- data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_Jobs/_send_verification_email_and_get_job/should_get_the_completed_verification_email.yml +0 -220
- data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_Jobs/_send_verification_email_and_get_job/should_reject_an_invalid_client_id.yml +0 -146
- data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_Jobs/delete_imported_user.yml +0 -143
- data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_Jobs/search_for_connection_id.yml +0 -79
- data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_Logs/_log/should_match_the_created_log_entry.yml +0 -293
- data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_Logs/_log/should_not_be_empty.yml +0 -293
- data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_Logs/_logs/_filters/should_exclude_fields_not_specified.yml +0 -74
- data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_Logs/_logs/_filters/should_exclude_the_specified_fields.yml +0 -75
- data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_Logs/_logs/_filters/should_have_one_log_entry.yml +0 -77
- data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_Logs/_logs/_filters/should_include_the_specified_fields.yml +0 -74
- data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_Logs/_logs/_from/should_take_one_log_entry.yml +0 -298
- data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_Logs/create_test_user.yml +0 -76
- data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_Logs/delete_test_disabled_rule.yml +0 -72
- data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_Logs/delete_test_enabled_rule.yml +0 -72
- data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_Logs/delete_test_user.yml +0 -72
- data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_ResourceServers/_delete_resource_server/should_delete_the_test_server_without_an_error.yml +0 -72
- data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_ResourceServers/_patch_resource_server/should_update_the_resource_server_with_the_correct_attributes.yml +0 -76
- data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_ResourceServers/_resource_server/should_get_the_test_server.yml +0 -74
- data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_ResourceServers/_resource_servers/should_get_the_test_server.yml +0 -182
- data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_ResourceServers/_resource_servers/should_return_at_least_1_result.yml +0 -182
- data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_ResourceServers/_resource_servers/should_return_the_first_page_of_one_result.yml +0 -171
- data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_ResourceServers/create_test_server.yml +0 -76
- data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_ResourceServers/delete_test_server.yml +0 -72
- data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_Roles/_add_role_permissions/should_add_a_Permission_to_the_Role_successfully.yml +0 -76
- data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_Roles/_add_role_users/should_add_a_User_to_the_Role_successfully.yml +0 -76
- data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_Roles/_delete_role/should_delete_the_Role_successfully.yml +0 -74
- data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_Roles/_get_role/should_get_the_Role_successfully.yml +0 -75
- data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_Roles/_get_role_permissions/should_get_exactly_1_Permission.yml +0 -74
- data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_Roles/_get_role_permissions/should_get_the_added_Permission_from_the_Role_successfully.yml +0 -74
- data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_Roles/_get_role_users/should_get_exactly_1_User.yml +0 -74
- data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_Roles/_get_role_users/should_get_the_added_User_from_the_Role_successfully.yml +0 -74
- data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_Roles/_get_roles/should_get_the_Role_successfully.yml +0 -75
- data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_Roles/_remove_role_permissions/should_remove_a_Permission_from_the_Role_successfully.yml +0 -74
- data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_Roles/_update_role/should_update_the_Role_successfully.yml +0 -76
- data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_Roles/create_test_api.yml +0 -76
- data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_Roles/create_test_role.yml +0 -77
- data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_Roles/create_test_user.yml +0 -76
- data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_Roles/delete_test_api.yml +0 -72
- data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_Roles/delete_test_user.yml +0 -72
- data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_Rules/_delete_rule/should_delete_the_test_disabled_rule_without_an_error.yml +0 -72
- data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_Rules/_delete_rule/should_delete_the_test_enabled_rule_without_an_error.yml +0 -72
- data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_Rules/_rule/_filters/should_exclude_the_fields_not_specified.yml +0 -75
- data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_Rules/_rule/_filters/should_exclude_the_specified_fields.yml +0 -75
- data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_Rules/_rule/_filters/should_include_the_specified_fields.yml +0 -74
- data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_Rules/_rule/should_get_a_specific_rule.yml +0 -75
- data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_Rules/_rules/_filters/should_exclude_fields_not_specified.yml +0 -116
- data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_Rules/_rules/_filters/should_include_the_specified_fields.yml +0 -118
- data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_Rules/_rules/_filters/should_return_at_least_1_disabled_rule.yml +0 -95
- data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_Rules/_rules/_filters/should_return_at_least_1_enabled_rule.yml +0 -104
- data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_Rules/_rules/_filters/should_return_paginated_results.yml +0 -157
- data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_Rules/_rules/should_return_at_least_1_rule.yml +0 -120
- data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_Rules/_update_rule/should_update_the_disabled_rule_to_be_enabled.yml +0 -77
- data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_Rules/create_test_disabled_rule.yml +0 -78
- data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_Rules/create_test_enabled_rule.yml +0 -78
- data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_Stats/_active_users/should_have_at_least_one_active_user.yml +0 -74
- data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_Stats/_daily_stats/should_have_at_least_one_stats_entry_for_the_timeframe.yml +0 -74
- data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_Tenants/_get_tenant_settings/should_get_the_tenant_settings.yml +0 -108
- data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_Tenants/_get_tenant_settings_with_specific_fields/should_exclude_a_field_not_requested.yml +0 -74
- data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_Tenants/_get_tenant_settings_with_specific_fields/should_include_the_field_requested.yml +0 -74
- data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_Tenants/_update_tenant_settings/should_revert_the_tenant_name.yml +0 -110
- data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_Tenants/_update_tenant_settings/should_update_the_tenant_settings_with_a_new_tenant_name.yml +0 -110
- data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_Tickets/_post_email_verification/should_create_an_email_verification_ticket.yml +0 -76
- data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_Tickets/_post_password_change/should_create_a_password_change_ticket.yml +0 -76
- data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_Tickets/create_test_user.yml +0 -76
- data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_Tickets/delete_test_user.yml +0 -72
- data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_Users/_add_user_permissions/should_add_a_Permissions_for_a_User_successfully.yml +0 -71
- data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_Users/_add_user_roles/should_add_a_Role_to_a_User_successfully.yml +0 -74
- data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_Users/_delete_user/should_delete_the_User_successfully.yml +0 -72
- data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_Users/_delete_user/should_delete_the_secondary_User_successfully.yml +0 -72
- data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_Users/_delete_user_provider/should_attempt_to_delete_the_MFA_provider_for_the_User.yml +0 -72
- data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_Users/_get_enrollments/should_get_Enrollments_for_a_User_successfully.yml +0 -74
- data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_Users/_get_user_permissions/should_get_exactly_1_Permission_for_a_User_successfully.yml +0 -74
- data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_Users/_get_user_permissions/should_get_the_correct_Permission_for_a_User_successfully.yml +0 -74
- data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_Users/_get_user_roles/should_get_Roles_for_a_User_successfully.yml +0 -75
- data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_Users/_invalidate_browsers/should_invalidate_MFA_browsers_for_the_User_successfully.yml +0 -74
- data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_Users/_link_user_account/should_link_two_Users_successfully.yml +0 -76
- data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_Users/_patch_user/should_patch_the_User_successfully.yml +0 -78
- data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_Users/_remove_user_permissions/should_remove_a_Permission_from_a_User_successfully.yml +0 -74
- data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_Users/_remove_user_roles/should_remove_a_Role_from_a_User_successfully.yml +0 -74
- data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_Users/_unlink_user_account/should_unlink_two_Users_successfully.yml +0 -74
- data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_Users/_user/_filters/should_exclude_fields_not_indicated.yml +0 -74
- data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_Users/_user/_filters/should_exclude_the_fields_indicated.yml +0 -74
- data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_Users/_user/_filters/should_include_the_fields_indicated.yml +0 -74
- data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_Users/_user/should_retrieve_the_created_user.yml +0 -74
- data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_Users/_user_logs/should_get_Logs_for_a_User_successfully.yml +0 -81
- data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_Users/_users/_filters/is_expected_to_find_a_user_with_a_v2_search_engine_query.yml +0 -74
- data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_Users/_users/_filters/is_expected_to_find_a_user_with_a_v3_search_engine_query.yml +0 -74
- data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_Users/_users/_filters/should_exclude_the_indicated_fields_when_paginated.yml +0 -74
- data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_Users/_users/_filters/should_include_the_indicated_fields_when_paginated.yml +0 -74
- data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_Users/_users/_filters/should_not_include_other_fields_when_paginated.yml +0 -74
- data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_Users/_users/_filters/should_return_the_correct_number_of_results_when_paginated.yml +0 -74
- data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_Users/_users/should_have_at_least_one_user.yml +0 -75
- data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_Users/create_secondary_test_user.yml +0 -76
- data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_Users/create_test_api.yml +0 -76
- data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_Users/create_test_role.yml +0 -77
- data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_Users/create_test_user.yml +0 -76
- data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_Users/delete_test_api.yml +0 -72
- data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_Users/delete_test_role.yml +0 -74
- data/spec/integration/lib/auth0/api/api_authentication_spec.rb +0 -120
- data/spec/integration/lib/auth0/api/v2/api_blacklist_spec.rb +0 -27
- data/spec/integration/lib/auth0/api/v2/api_client_grants_spec.rb +0 -66
- data/spec/integration/lib/auth0/api/v2/api_clients_spec.rb +0 -166
- data/spec/integration/lib/auth0/api/v2/api_connections_spec.rb +0 -159
- data/spec/integration/lib/auth0/api/v2/api_email_spec.rb +0 -86
- data/spec/integration/lib/auth0/api/v2/api_jobs_spec.rb +0 -124
- data/spec/integration/lib/auth0/api/v2/api_logs_spec.rb +0 -91
- data/spec/integration/lib/auth0/api/v2/api_resource_servers_spec.rb +0 -130
- data/spec/integration/lib/auth0/api/v2/api_roles_spec.rb +0 -145
- data/spec/integration/lib/auth0/api/v2/api_rules_spec.rb +0 -177
- data/spec/integration/lib/auth0/api/v2/api_stats_spec.rb +0 -22
- data/spec/integration/lib/auth0/api/v2/api_tenants_spec.rb +0 -59
- data/spec/integration/lib/auth0/api/v2/api_tickets_spec.rb +0 -59
- data/spec/integration/lib/auth0/api/v2/api_user_blocks_spec.rb +0 -76
- data/spec/integration/lib/auth0/api/v2/api_users_spec.rb +0 -273
- data/spec/integration/lib/auth0/auth0_client_spec.rb +0 -90
- data/spec/lib/auth0/api/authentication_endpoints_spec.rb +0 -750
- data/spec/lib/auth0/api/v2/actions_spec.rb +0 -322
- data/spec/lib/auth0/api/v2/anomaly_spec.rb +0 -26
- data/spec/lib/auth0/api/v2/attack_protection_spec.rb +0 -132
- data/spec/lib/auth0/api/v2/blacklists_spec.rb +0 -25
- data/spec/lib/auth0/api/v2/branding_spec.rb +0 -71
- data/spec/lib/auth0/api/v2/client_grants_spec.rb +0 -106
- data/spec/lib/auth0/api/v2/clients_spec.rb +0 -155
- data/spec/lib/auth0/api/v2/connections_spec.rb +0 -164
- data/spec/lib/auth0/api/v2/device_credentials_spec.rb +0 -102
- data/spec/lib/auth0/api/v2/emails_spec.rb +0 -47
- data/spec/lib/auth0/api/v2/grants_spec.rb +0 -91
- data/spec/lib/auth0/api/v2/guardian_spec.rb +0 -154
- data/spec/lib/auth0/api/v2/jobs_spec.rb +0 -158
- data/spec/lib/auth0/api/v2/log_streams_spec.rb +0 -84
- data/spec/lib/auth0/api/v2/logs_spec.rb +0 -48
- data/spec/lib/auth0/api/v2/organizations_spec.rb +0 -708
- data/spec/lib/auth0/api/v2/prompts_spec.rb +0 -88
- data/spec/lib/auth0/api/v2/refresh_tokens_spec.rb +0 -51
- data/spec/lib/auth0/api/v2/resource_servers_spec.rb +0 -86
- data/spec/lib/auth0/api/v2/roles_spec.rb +0 -366
- data/spec/lib/auth0/api/v2/rules_spec.rb +0 -95
- data/spec/lib/auth0/api/v2/sessions_spec.rb +0 -71
- data/spec/lib/auth0/api/v2/stats_spec.rb +0 -22
- data/spec/lib/auth0/api/v2/tenants_spec.rb +0 -26
- data/spec/lib/auth0/api/v2/tickets_spec.rb +0 -118
- data/spec/lib/auth0/api/v2/user_blocks_spec.rb +0 -52
- data/spec/lib/auth0/api/v2/users_by_email_spec.rb +0 -21
- data/spec/lib/auth0/api/v2/users_spec.rb +0 -904
- data/spec/lib/auth0/client_spec.rb +0 -223
- data/spec/lib/auth0/mixins/httpproxy_spec.rb +0 -596
- data/spec/lib/auth0/mixins/initializer_spec.rb +0 -172
- data/spec/lib/auth0/mixins/token_management_spec.rb +0 -136
- data/spec/lib/auth0/mixins/validation_spec.rb +0 -562
- data/spec/spec_helper.rb +0 -70
- data/spec/support/credentials.rb +0 -11
- data/spec/support/dummy_class.rb +0 -18
- data/spec/support/dummy_class_for_proxy.rb +0 -5
- data/spec/support/dummy_class_for_restclient.rb +0 -2
- data/spec/support/dummy_class_for_tokens.rb +0 -20
- data/spec/support/import_users.json +0 -13
- data/spec/support/stub_response.rb +0 -1
metadata
CHANGED
|
@@ -1,17 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: auth0
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version:
|
|
4
|
+
version: 6.0.0.beta.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Auth0
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
- Patrik Ragnarsson
|
|
11
|
-
autorequire:
|
|
12
|
-
bindir: bin
|
|
8
|
+
autorequire:
|
|
9
|
+
bindir: exe
|
|
13
10
|
cert_chain: []
|
|
14
|
-
date:
|
|
11
|
+
date: 2026-04-30 00:00:00.000000000 Z
|
|
15
12
|
dependencies:
|
|
16
13
|
- !ruby/object:Gem::Dependency
|
|
17
14
|
name: rest-client
|
|
@@ -83,157 +80,15 @@ dependencies:
|
|
|
83
80
|
- - "~>"
|
|
84
81
|
- !ruby/object:Gem::Version
|
|
85
82
|
version: '3.0'
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
requirement: !ruby/object:Gem::Requirement
|
|
89
|
-
requirements:
|
|
90
|
-
- - ">="
|
|
91
|
-
- !ruby/object:Gem::Version
|
|
92
|
-
version: '0'
|
|
93
|
-
type: :development
|
|
94
|
-
prerelease: false
|
|
95
|
-
version_requirements: !ruby/object:Gem::Requirement
|
|
96
|
-
requirements:
|
|
97
|
-
- - ">="
|
|
98
|
-
- !ruby/object:Gem::Version
|
|
99
|
-
version: '0'
|
|
100
|
-
- !ruby/object:Gem::Dependency
|
|
101
|
-
name: rake
|
|
102
|
-
requirement: !ruby/object:Gem::Requirement
|
|
103
|
-
requirements:
|
|
104
|
-
- - "~>"
|
|
105
|
-
- !ruby/object:Gem::Version
|
|
106
|
-
version: '13.0'
|
|
107
|
-
type: :development
|
|
108
|
-
prerelease: false
|
|
109
|
-
version_requirements: !ruby/object:Gem::Requirement
|
|
110
|
-
requirements:
|
|
111
|
-
- - "~>"
|
|
112
|
-
- !ruby/object:Gem::Version
|
|
113
|
-
version: '13.0'
|
|
114
|
-
- !ruby/object:Gem::Dependency
|
|
115
|
-
name: fuubar
|
|
116
|
-
requirement: !ruby/object:Gem::Requirement
|
|
117
|
-
requirements:
|
|
118
|
-
- - "~>"
|
|
119
|
-
- !ruby/object:Gem::Version
|
|
120
|
-
version: '2.0'
|
|
121
|
-
type: :development
|
|
122
|
-
prerelease: false
|
|
123
|
-
version_requirements: !ruby/object:Gem::Requirement
|
|
124
|
-
requirements:
|
|
125
|
-
- - "~>"
|
|
126
|
-
- !ruby/object:Gem::Version
|
|
127
|
-
version: '2.0'
|
|
128
|
-
- !ruby/object:Gem::Dependency
|
|
129
|
-
name: guard-rspec
|
|
130
|
-
requirement: !ruby/object:Gem::Requirement
|
|
131
|
-
requirements:
|
|
132
|
-
- - "~>"
|
|
133
|
-
- !ruby/object:Gem::Version
|
|
134
|
-
version: '4.5'
|
|
135
|
-
type: :development
|
|
136
|
-
prerelease: false
|
|
137
|
-
version_requirements: !ruby/object:Gem::Requirement
|
|
138
|
-
requirements:
|
|
139
|
-
- - "~>"
|
|
140
|
-
- !ruby/object:Gem::Version
|
|
141
|
-
version: '4.5'
|
|
142
|
-
- !ruby/object:Gem::Dependency
|
|
143
|
-
name: dotenv-rails
|
|
144
|
-
requirement: !ruby/object:Gem::Requirement
|
|
145
|
-
requirements:
|
|
146
|
-
- - "~>"
|
|
147
|
-
- !ruby/object:Gem::Version
|
|
148
|
-
version: '2.0'
|
|
149
|
-
type: :development
|
|
150
|
-
prerelease: false
|
|
151
|
-
version_requirements: !ruby/object:Gem::Requirement
|
|
152
|
-
requirements:
|
|
153
|
-
- - "~>"
|
|
154
|
-
- !ruby/object:Gem::Version
|
|
155
|
-
version: '2.0'
|
|
156
|
-
- !ruby/object:Gem::Dependency
|
|
157
|
-
name: rspec
|
|
158
|
-
requirement: !ruby/object:Gem::Requirement
|
|
159
|
-
requirements:
|
|
160
|
-
- - "~>"
|
|
161
|
-
- !ruby/object:Gem::Version
|
|
162
|
-
version: '3.11'
|
|
163
|
-
type: :development
|
|
164
|
-
prerelease: false
|
|
165
|
-
version_requirements: !ruby/object:Gem::Requirement
|
|
166
|
-
requirements:
|
|
167
|
-
- - "~>"
|
|
168
|
-
- !ruby/object:Gem::Version
|
|
169
|
-
version: '3.11'
|
|
170
|
-
- !ruby/object:Gem::Dependency
|
|
171
|
-
name: simplecov
|
|
172
|
-
requirement: !ruby/object:Gem::Requirement
|
|
173
|
-
requirements:
|
|
174
|
-
- - "~>"
|
|
175
|
-
- !ruby/object:Gem::Version
|
|
176
|
-
version: '0.9'
|
|
177
|
-
type: :development
|
|
178
|
-
prerelease: false
|
|
179
|
-
version_requirements: !ruby/object:Gem::Requirement
|
|
180
|
-
requirements:
|
|
181
|
-
- - "~>"
|
|
182
|
-
- !ruby/object:Gem::Version
|
|
183
|
-
version: '0.9'
|
|
184
|
-
- !ruby/object:Gem::Dependency
|
|
185
|
-
name: faker
|
|
186
|
-
requirement: !ruby/object:Gem::Requirement
|
|
187
|
-
requirements:
|
|
188
|
-
- - "~>"
|
|
189
|
-
- !ruby/object:Gem::Version
|
|
190
|
-
version: '2.0'
|
|
191
|
-
type: :development
|
|
192
|
-
prerelease: false
|
|
193
|
-
version_requirements: !ruby/object:Gem::Requirement
|
|
194
|
-
requirements:
|
|
195
|
-
- - "~>"
|
|
196
|
-
- !ruby/object:Gem::Version
|
|
197
|
-
version: '2.0'
|
|
198
|
-
description: Ruby toolkit for Auth0 API https://auth0.com.
|
|
83
|
+
description: The Auth0 Ruby library provides convenient access to the Auth0 API from
|
|
84
|
+
Ruby.
|
|
199
85
|
email:
|
|
200
|
-
- support@auth0.com
|
|
201
86
|
executables: []
|
|
202
87
|
extensions: []
|
|
203
88
|
extra_rdoc_files: []
|
|
204
89
|
files:
|
|
205
|
-
- ".
|
|
206
|
-
- ".devcontainer/Dockerfile"
|
|
207
|
-
- ".devcontainer/devcontainer.json"
|
|
208
|
-
- ".env.example"
|
|
209
|
-
- ".github/CODEOWNERS"
|
|
210
|
-
- ".github/ISSUE_TEMPLATE/Bug Report.yml"
|
|
211
|
-
- ".github/ISSUE_TEMPLATE/Feature Request.yml"
|
|
212
|
-
- ".github/ISSUE_TEMPLATE/config.yml"
|
|
213
|
-
- ".github/PULL_REQUEST_TEMPLATE.md"
|
|
214
|
-
- ".github/actions/get-prerelease/action.yml"
|
|
215
|
-
- ".github/actions/get-release-notes/action.yml"
|
|
216
|
-
- ".github/actions/get-version/action.yml"
|
|
217
|
-
- ".github/actions/release-create/action.yml"
|
|
218
|
-
- ".github/actions/rl-scanner/action.yml"
|
|
219
|
-
- ".github/actions/rubygems-publish/action.yml"
|
|
220
|
-
- ".github/actions/setup/action.yml"
|
|
221
|
-
- ".github/actions/tag-exists/action.yml"
|
|
222
|
-
- ".github/dependabot.yml"
|
|
223
|
-
- ".github/stale.yml"
|
|
224
|
-
- ".github/workflows/codeql.yml"
|
|
225
|
-
- ".github/workflows/matrix.json"
|
|
226
|
-
- ".github/workflows/release.yml"
|
|
227
|
-
- ".github/workflows/rl-scanner.yml"
|
|
228
|
-
- ".github/workflows/ruby-release.yml"
|
|
229
|
-
- ".github/workflows/semgrep.yml"
|
|
230
|
-
- ".github/workflows/snyk.yml"
|
|
231
|
-
- ".github/workflows/test.yml"
|
|
232
|
-
- ".gitignore"
|
|
233
|
-
- ".rspec"
|
|
90
|
+
- ".fernignore"
|
|
234
91
|
- ".rubocop.yml"
|
|
235
|
-
- ".rubocop_todo.yml"
|
|
236
|
-
- ".semgrepignore"
|
|
237
92
|
- ".shiprc"
|
|
238
93
|
- ".snyk"
|
|
239
94
|
- ".version"
|
|
@@ -241,120 +96,269 @@ files:
|
|
|
241
96
|
- CODE_OF_CONDUCT.md
|
|
242
97
|
- DEPLOYMENT.md
|
|
243
98
|
- DEVELOPMENT.md
|
|
244
|
-
- Dockerfile
|
|
245
99
|
- EXAMPLES.md
|
|
246
|
-
- Gemfile
|
|
247
|
-
- Gemfile.lock
|
|
248
|
-
- Guardfile
|
|
249
100
|
- LICENSE
|
|
250
101
|
- README.md
|
|
251
102
|
- RUBYGEM.md
|
|
252
103
|
- Rakefile
|
|
253
|
-
- auth0.gemspec
|
|
254
104
|
- codecov.yml
|
|
105
|
+
- custom.gemspec.rb
|
|
255
106
|
- examples/ruby-api/.env.example
|
|
256
107
|
- examples/ruby-api/.gitignore
|
|
257
108
|
- examples/ruby-api/Gemfile
|
|
258
109
|
- examples/ruby-api/Gemfile.lock
|
|
259
110
|
- examples/ruby-api/README.md
|
|
111
|
+
- examples/ruby-api/app.rb
|
|
260
112
|
- examples/ruby-api/config.ru
|
|
261
|
-
- examples/ruby-api/main.rb
|
|
262
113
|
- examples/ruby-on-rails-api/.env.example
|
|
263
114
|
- examples/ruby-on-rails-api/.gitignore
|
|
264
115
|
- examples/ruby-on-rails-api/Gemfile
|
|
265
116
|
- examples/ruby-on-rails-api/README.md
|
|
266
117
|
- examples/ruby-on-rails-api/Rakefile
|
|
267
|
-
- examples/ruby-on-rails-api/app/
|
|
268
|
-
- examples/ruby-on-rails-api/app/assets/javascripts/application.js
|
|
269
|
-
- examples/ruby-on-rails-api/app/assets/stylesheets/application.css
|
|
118
|
+
- examples/ruby-on-rails-api/app/controllers/api_controller.rb
|
|
270
119
|
- examples/ruby-on-rails-api/app/controllers/application_controller.rb
|
|
271
|
-
- examples/ruby-on-rails-api/app/controllers/concerns/.keep
|
|
272
|
-
- examples/ruby-on-rails-api/app/controllers/ping_controller.rb
|
|
273
|
-
- examples/ruby-on-rails-api/app/controllers/secured_ping_controller.rb
|
|
274
|
-
- examples/ruby-on-rails-api/app/helpers/application_helper.rb
|
|
275
|
-
- examples/ruby-on-rails-api/app/mailers/.keep
|
|
276
|
-
- examples/ruby-on-rails-api/app/models/.keep
|
|
277
|
-
- examples/ruby-on-rails-api/app/models/User.rb
|
|
278
|
-
- examples/ruby-on-rails-api/app/models/concerns/.keep
|
|
279
|
-
- examples/ruby-on-rails-api/app/views/layouts/application.html.erb
|
|
280
|
-
- examples/ruby-on-rails-api/bin/bundle
|
|
281
120
|
- examples/ruby-on-rails-api/bin/rails
|
|
282
|
-
- examples/ruby-on-rails-api/bin/rake
|
|
283
|
-
- examples/ruby-on-rails-api/bin/setup
|
|
284
121
|
- examples/ruby-on-rails-api/config.ru
|
|
285
122
|
- examples/ruby-on-rails-api/config/application.rb
|
|
286
123
|
- examples/ruby-on-rails-api/config/boot.rb
|
|
287
|
-
- examples/ruby-on-rails-api/config/database.yml
|
|
288
124
|
- examples/ruby-on-rails-api/config/environment.rb
|
|
289
|
-
- examples/ruby-on-rails-api/config/
|
|
290
|
-
- examples/ruby-on-rails-api/config/environments/production.rb
|
|
291
|
-
- examples/ruby-on-rails-api/config/environments/test.rb
|
|
292
|
-
- examples/ruby-on-rails-api/config/initializers/backtrace_silencers.rb
|
|
293
|
-
- examples/ruby-on-rails-api/config/initializers/cookies_serializer.rb
|
|
294
|
-
- examples/ruby-on-rails-api/config/initializers/dotenv.rb
|
|
295
|
-
- examples/ruby-on-rails-api/config/initializers/filter_parameter_logging.rb
|
|
296
|
-
- examples/ruby-on-rails-api/config/initializers/inflections.rb
|
|
297
|
-
- examples/ruby-on-rails-api/config/initializers/knock.rb
|
|
298
|
-
- examples/ruby-on-rails-api/config/initializers/mime_types.rb
|
|
299
|
-
- examples/ruby-on-rails-api/config/initializers/session_store.rb
|
|
300
|
-
- examples/ruby-on-rails-api/config/initializers/wrap_parameters.rb
|
|
301
|
-
- examples/ruby-on-rails-api/config/locales/en.yml
|
|
125
|
+
- examples/ruby-on-rails-api/config/initializers/auth0.rb
|
|
302
126
|
- examples/ruby-on-rails-api/config/routes.rb
|
|
303
|
-
- examples/ruby-on-rails-api/config/secrets.yml
|
|
304
|
-
- examples/ruby-on-rails-api/db/schema.rb
|
|
305
|
-
- examples/ruby-on-rails-api/db/seeds.rb
|
|
306
|
-
- examples/ruby-on-rails-api/lib/assets/.keep
|
|
307
|
-
- examples/ruby-on-rails-api/lib/tasks/.keep
|
|
308
|
-
- examples/ruby-on-rails-api/log/.keep
|
|
309
|
-
- examples/ruby-on-rails-api/public/404.html
|
|
310
|
-
- examples/ruby-on-rails-api/public/422.html
|
|
311
|
-
- examples/ruby-on-rails-api/public/500.html
|
|
312
|
-
- examples/ruby-on-rails-api/public/favicon.ico
|
|
313
|
-
- examples/ruby-on-rails-api/public/robots.txt
|
|
314
|
-
- examples/ruby-on-rails-api/test/controllers/.keep
|
|
315
|
-
- examples/ruby-on-rails-api/test/fixtures/.keep
|
|
316
|
-
- examples/ruby-on-rails-api/test/helpers/.keep
|
|
317
|
-
- examples/ruby-on-rails-api/test/integration/.keep
|
|
318
|
-
- examples/ruby-on-rails-api/test/mailers/.keep
|
|
319
|
-
- examples/ruby-on-rails-api/test/models/.keep
|
|
320
|
-
- examples/ruby-on-rails-api/test/ping_controller_test.rb
|
|
321
|
-
- examples/ruby-on-rails-api/test/secured_ping_controller_test.rb
|
|
322
|
-
- examples/ruby-on-rails-api/test/test_helper.rb
|
|
323
127
|
- lib/auth0.rb
|
|
128
|
+
- lib/auth0/actions/client.rb
|
|
129
|
+
- lib/auth0/actions/executions/client.rb
|
|
130
|
+
- lib/auth0/actions/modules/client.rb
|
|
131
|
+
- lib/auth0/actions/modules/types/create_action_module_request_content.rb
|
|
132
|
+
- lib/auth0/actions/modules/types/get_action_module_actions_request_parameters.rb
|
|
133
|
+
- lib/auth0/actions/modules/types/get_action_modules_request_parameters.rb
|
|
134
|
+
- lib/auth0/actions/modules/types/rollback_action_module_request_parameters.rb
|
|
135
|
+
- lib/auth0/actions/modules/types/update_action_module_request_content.rb
|
|
136
|
+
- lib/auth0/actions/modules/versions/client.rb
|
|
137
|
+
- lib/auth0/actions/modules/versions/types/get_action_module_versions_request_parameters.rb
|
|
138
|
+
- lib/auth0/actions/triggers/bindings/client.rb
|
|
139
|
+
- lib/auth0/actions/triggers/bindings/types/list_action_trigger_bindings_request_parameters.rb
|
|
140
|
+
- lib/auth0/actions/triggers/bindings/types/update_action_bindings_request_content.rb
|
|
141
|
+
- lib/auth0/actions/triggers/client.rb
|
|
142
|
+
- lib/auth0/actions/types/create_action_request_content.rb
|
|
143
|
+
- lib/auth0/actions/types/delete_action_request_parameters.rb
|
|
144
|
+
- lib/auth0/actions/types/list_actions_request_parameters.rb
|
|
145
|
+
- lib/auth0/actions/types/test_action_request_content.rb
|
|
146
|
+
- lib/auth0/actions/types/update_action_request_content.rb
|
|
147
|
+
- lib/auth0/actions/versions/client.rb
|
|
148
|
+
- lib/auth0/actions/versions/types/list_action_versions_request_parameters.rb
|
|
324
149
|
- lib/auth0/algorithm.rb
|
|
150
|
+
- lib/auth0/anomaly/blocks/client.rb
|
|
151
|
+
- lib/auth0/anomaly/client.rb
|
|
325
152
|
- lib/auth0/api/authentication_endpoints.rb
|
|
326
|
-
- lib/auth0/
|
|
327
|
-
- lib/auth0/
|
|
328
|
-
- lib/auth0/
|
|
329
|
-
- lib/auth0/
|
|
330
|
-
- lib/auth0/
|
|
331
|
-
- lib/auth0/
|
|
332
|
-
- lib/auth0/
|
|
333
|
-
- lib/auth0/
|
|
334
|
-
- lib/auth0/
|
|
335
|
-
- lib/auth0/
|
|
336
|
-
- lib/auth0/
|
|
337
|
-
- lib/auth0/
|
|
338
|
-
- lib/auth0/
|
|
339
|
-
- lib/auth0/
|
|
340
|
-
- lib/auth0/
|
|
341
|
-
- lib/auth0/
|
|
342
|
-
- lib/auth0/
|
|
343
|
-
- lib/auth0/
|
|
344
|
-
- lib/auth0/
|
|
345
|
-
- lib/auth0/
|
|
346
|
-
- lib/auth0/
|
|
347
|
-
- lib/auth0/
|
|
348
|
-
- lib/auth0/
|
|
349
|
-
- lib/auth0/
|
|
350
|
-
- lib/auth0/
|
|
351
|
-
- lib/auth0/
|
|
352
|
-
- lib/auth0/
|
|
353
|
-
- lib/auth0/
|
|
354
|
-
- lib/auth0/
|
|
153
|
+
- lib/auth0/attack_protection/bot_detection/client.rb
|
|
154
|
+
- lib/auth0/attack_protection/bot_detection/types/update_bot_detection_settings_request_content.rb
|
|
155
|
+
- lib/auth0/attack_protection/breached_password_detection/client.rb
|
|
156
|
+
- lib/auth0/attack_protection/breached_password_detection/types/update_breached_password_detection_settings_request_content.rb
|
|
157
|
+
- lib/auth0/attack_protection/brute_force_protection/client.rb
|
|
158
|
+
- lib/auth0/attack_protection/brute_force_protection/types/update_brute_force_settings_request_content.rb
|
|
159
|
+
- lib/auth0/attack_protection/captcha/client.rb
|
|
160
|
+
- lib/auth0/attack_protection/captcha/types/update_attack_protection_captcha_request_content.rb
|
|
161
|
+
- lib/auth0/attack_protection/client.rb
|
|
162
|
+
- lib/auth0/attack_protection/suspicious_ip_throttling/client.rb
|
|
163
|
+
- lib/auth0/attack_protection/suspicious_ip_throttling/types/update_suspicious_ip_throttling_settings_request_content.rb
|
|
164
|
+
- lib/auth0/auth_client.rb
|
|
165
|
+
- lib/auth0/branding/client.rb
|
|
166
|
+
- lib/auth0/branding/phone/client.rb
|
|
167
|
+
- lib/auth0/branding/phone/providers/client.rb
|
|
168
|
+
- lib/auth0/branding/phone/providers/types/create_branding_phone_provider_request_content.rb
|
|
169
|
+
- lib/auth0/branding/phone/providers/types/create_phone_provider_send_test_request_content.rb
|
|
170
|
+
- lib/auth0/branding/phone/providers/types/list_branding_phone_providers_request_parameters.rb
|
|
171
|
+
- lib/auth0/branding/phone/providers/types/update_branding_phone_provider_request_content.rb
|
|
172
|
+
- lib/auth0/branding/phone/templates/client.rb
|
|
173
|
+
- lib/auth0/branding/phone/templates/types/create_phone_template_request_content.rb
|
|
174
|
+
- lib/auth0/branding/phone/templates/types/create_phone_template_test_notification_request_content.rb
|
|
175
|
+
- lib/auth0/branding/phone/templates/types/list_phone_templates_request_parameters.rb
|
|
176
|
+
- lib/auth0/branding/phone/templates/types/update_phone_template_request_content.rb
|
|
177
|
+
- lib/auth0/branding/templates/client.rb
|
|
178
|
+
- lib/auth0/branding/themes/client.rb
|
|
179
|
+
- lib/auth0/branding/themes/types/create_branding_theme_request_content.rb
|
|
180
|
+
- lib/auth0/branding/themes/types/update_branding_theme_request_content.rb
|
|
181
|
+
- lib/auth0/branding/types/update_branding_request_content.rb
|
|
355
182
|
- lib/auth0/client.rb
|
|
356
183
|
- lib/auth0/client_assertion.rb
|
|
184
|
+
- lib/auth0/client_grants/client.rb
|
|
185
|
+
- lib/auth0/client_grants/organizations/client.rb
|
|
186
|
+
- lib/auth0/client_grants/organizations/types/list_client_grant_organizations_request_parameters.rb
|
|
187
|
+
- lib/auth0/client_grants/types/create_client_grant_request_content.rb
|
|
188
|
+
- lib/auth0/client_grants/types/list_client_grants_request_parameters.rb
|
|
189
|
+
- lib/auth0/client_grants/types/update_client_grant_request_content.rb
|
|
190
|
+
- lib/auth0/clients/client.rb
|
|
191
|
+
- lib/auth0/clients/connections/client.rb
|
|
192
|
+
- lib/auth0/clients/connections/types/connections_get_request.rb
|
|
193
|
+
- lib/auth0/clients/credentials/client.rb
|
|
194
|
+
- lib/auth0/clients/credentials/types/patch_client_credential_request_content.rb
|
|
195
|
+
- lib/auth0/clients/credentials/types/post_client_credential_request_content.rb
|
|
196
|
+
- lib/auth0/clients/types/create_client_request_content.rb
|
|
197
|
+
- lib/auth0/clients/types/get_client_request_parameters.rb
|
|
198
|
+
- lib/auth0/clients/types/list_clients_request_parameters.rb
|
|
199
|
+
- lib/auth0/clients/types/preview_cimd_metadata_request_content.rb
|
|
200
|
+
- lib/auth0/clients/types/register_cimd_client_request_content.rb
|
|
201
|
+
- lib/auth0/clients/types/update_client_request_content.rb
|
|
202
|
+
- lib/auth0/connection_profiles/client.rb
|
|
203
|
+
- lib/auth0/connection_profiles/types/create_connection_profile_request_content.rb
|
|
204
|
+
- lib/auth0/connection_profiles/types/list_connection_profile_request_parameters.rb
|
|
205
|
+
- lib/auth0/connection_profiles/types/update_connection_profile_request_content.rb
|
|
206
|
+
- lib/auth0/connections/client.rb
|
|
207
|
+
- lib/auth0/connections/clients/client.rb
|
|
208
|
+
- lib/auth0/connections/clients/types/get_connection_enabled_clients_request_parameters.rb
|
|
209
|
+
- lib/auth0/connections/directory_provisioning/client.rb
|
|
210
|
+
- lib/auth0/connections/directory_provisioning/synchronizations/client.rb
|
|
211
|
+
- lib/auth0/connections/directory_provisioning/types/list_directory_provisionings_request_parameters.rb
|
|
212
|
+
- lib/auth0/connections/directory_provisioning/types/list_synchronized_groups_request_parameters.rb
|
|
213
|
+
- lib/auth0/connections/directory_provisioning/types/replace_synchronized_groups_request_content.rb
|
|
214
|
+
- lib/auth0/connections/keys/client.rb
|
|
215
|
+
- lib/auth0/connections/scim_configuration/client.rb
|
|
216
|
+
- lib/auth0/connections/scim_configuration/tokens/client.rb
|
|
217
|
+
- lib/auth0/connections/scim_configuration/tokens/types/create_scim_token_request_content.rb
|
|
218
|
+
- lib/auth0/connections/scim_configuration/types/list_scim_configurations_request_parameters.rb
|
|
219
|
+
- lib/auth0/connections/scim_configuration/types/update_scim_configuration_request_content.rb
|
|
220
|
+
- lib/auth0/connections/types/create_connection_request_content.rb
|
|
221
|
+
- lib/auth0/connections/types/get_connection_request_parameters.rb
|
|
222
|
+
- lib/auth0/connections/types/list_connections_query_parameters.rb
|
|
223
|
+
- lib/auth0/connections/types/update_connection_request_content.rb
|
|
224
|
+
- lib/auth0/connections/users/client.rb
|
|
225
|
+
- lib/auth0/connections/users/types/delete_connection_users_by_email_query_parameters.rb
|
|
226
|
+
- lib/auth0/custom_domains/client.rb
|
|
227
|
+
- lib/auth0/custom_domains/types/create_custom_domain_request_content.rb
|
|
228
|
+
- lib/auth0/custom_domains/types/list_custom_domains_request_parameters.rb
|
|
229
|
+
- lib/auth0/custom_domains/types/set_default_custom_domain_request_content.rb
|
|
230
|
+
- lib/auth0/custom_domains/types/update_custom_domain_request_content.rb
|
|
231
|
+
- lib/auth0/device_credentials/client.rb
|
|
232
|
+
- lib/auth0/device_credentials/types/create_public_key_device_credential_request_content.rb
|
|
233
|
+
- lib/auth0/device_credentials/types/list_device_credentials_request_parameters.rb
|
|
234
|
+
- lib/auth0/email_templates/client.rb
|
|
235
|
+
- lib/auth0/email_templates/types/create_email_template_request_content.rb
|
|
236
|
+
- lib/auth0/email_templates/types/set_email_template_request_content.rb
|
|
237
|
+
- lib/auth0/email_templates/types/update_email_template_request_content.rb
|
|
238
|
+
- lib/auth0/emails/client.rb
|
|
239
|
+
- lib/auth0/emails/provider/client.rb
|
|
240
|
+
- lib/auth0/emails/provider/types/create_email_provider_request_content.rb
|
|
241
|
+
- lib/auth0/emails/provider/types/get_email_provider_request_parameters.rb
|
|
242
|
+
- lib/auth0/emails/provider/types/update_email_provider_request_content.rb
|
|
243
|
+
- lib/auth0/environment.rb
|
|
244
|
+
- lib/auth0/errors/api_error.rb
|
|
245
|
+
- lib/auth0/errors/client_error.rb
|
|
246
|
+
- lib/auth0/errors/redirect_error.rb
|
|
247
|
+
- lib/auth0/errors/response_error.rb
|
|
248
|
+
- lib/auth0/errors/server_error.rb
|
|
249
|
+
- lib/auth0/errors/timeout_error.rb
|
|
250
|
+
- lib/auth0/event_streams/client.rb
|
|
251
|
+
- lib/auth0/event_streams/deliveries/client.rb
|
|
252
|
+
- lib/auth0/event_streams/deliveries/types/list_event_stream_deliveries_request_parameters.rb
|
|
253
|
+
- lib/auth0/event_streams/redeliveries/client.rb
|
|
254
|
+
- lib/auth0/event_streams/redeliveries/types/create_event_stream_redelivery_request_content.rb
|
|
255
|
+
- lib/auth0/event_streams/types/create_event_stream_test_event_request_content.rb
|
|
256
|
+
- lib/auth0/event_streams/types/event_streams_create_request.rb
|
|
257
|
+
- lib/auth0/event_streams/types/list_event_streams_request_parameters.rb
|
|
258
|
+
- lib/auth0/event_streams/types/update_event_stream_request_content.rb
|
|
357
259
|
- lib/auth0/exception.rb
|
|
260
|
+
- lib/auth0/flows/client.rb
|
|
261
|
+
- lib/auth0/flows/executions/client.rb
|
|
262
|
+
- lib/auth0/flows/executions/types/get_flow_execution_request_parameters.rb
|
|
263
|
+
- lib/auth0/flows/executions/types/list_flow_executions_request_parameters.rb
|
|
264
|
+
- lib/auth0/flows/types/create_flow_request_content.rb
|
|
265
|
+
- lib/auth0/flows/types/get_flow_request_parameters.rb
|
|
266
|
+
- lib/auth0/flows/types/list_flows_request_parameters.rb
|
|
267
|
+
- lib/auth0/flows/types/update_flow_request_content.rb
|
|
268
|
+
- lib/auth0/flows/vault/client.rb
|
|
269
|
+
- lib/auth0/flows/vault/connections/client.rb
|
|
270
|
+
- lib/auth0/flows/vault/connections/types/list_flows_vault_connections_request_parameters.rb
|
|
271
|
+
- lib/auth0/flows/vault/connections/types/update_flows_vault_connection_request_content.rb
|
|
272
|
+
- lib/auth0/forms/client.rb
|
|
273
|
+
- lib/auth0/forms/types/create_form_request_content.rb
|
|
274
|
+
- lib/auth0/forms/types/get_form_request_parameters.rb
|
|
275
|
+
- lib/auth0/forms/types/list_forms_request_parameters.rb
|
|
276
|
+
- lib/auth0/forms/types/update_form_request_content.rb
|
|
277
|
+
- lib/auth0/groups/client.rb
|
|
278
|
+
- lib/auth0/groups/members/client.rb
|
|
279
|
+
- lib/auth0/groups/members/types/get_group_members_request_parameters.rb
|
|
280
|
+
- lib/auth0/groups/types/list_groups_request_parameters.rb
|
|
281
|
+
- lib/auth0/guardian/client.rb
|
|
282
|
+
- lib/auth0/guardian/enrollments/client.rb
|
|
283
|
+
- lib/auth0/guardian/enrollments/types/create_guardian_enrollment_ticket_request_content.rb
|
|
284
|
+
- lib/auth0/guardian/factors/client.rb
|
|
285
|
+
- lib/auth0/guardian/factors/duo/client.rb
|
|
286
|
+
- lib/auth0/guardian/factors/duo/settings/client.rb
|
|
287
|
+
- lib/auth0/guardian/factors/duo/settings/types/set_guardian_factor_duo_settings_request_content.rb
|
|
288
|
+
- lib/auth0/guardian/factors/duo/settings/types/update_guardian_factor_duo_settings_request_content.rb
|
|
289
|
+
- lib/auth0/guardian/factors/phone/client.rb
|
|
290
|
+
- lib/auth0/guardian/factors/phone/types/set_guardian_factor_phone_message_types_request_content.rb
|
|
291
|
+
- lib/auth0/guardian/factors/phone/types/set_guardian_factor_phone_templates_request_content.rb
|
|
292
|
+
- lib/auth0/guardian/factors/phone/types/set_guardian_factors_provider_phone_request_content.rb
|
|
293
|
+
- lib/auth0/guardian/factors/phone/types/set_guardian_factors_provider_phone_twilio_request_content.rb
|
|
294
|
+
- lib/auth0/guardian/factors/push_notification/client.rb
|
|
295
|
+
- lib/auth0/guardian/factors/push_notification/types/set_guardian_factors_provider_push_notification_apns_request_content.rb
|
|
296
|
+
- lib/auth0/guardian/factors/push_notification/types/set_guardian_factors_provider_push_notification_fcm_request_content.rb
|
|
297
|
+
- lib/auth0/guardian/factors/push_notification/types/set_guardian_factors_provider_push_notification_fcmv1request_content.rb
|
|
298
|
+
- lib/auth0/guardian/factors/push_notification/types/set_guardian_factors_provider_push_notification_request_content.rb
|
|
299
|
+
- lib/auth0/guardian/factors/push_notification/types/set_guardian_factors_provider_push_notification_sns_request_content.rb
|
|
300
|
+
- lib/auth0/guardian/factors/push_notification/types/update_guardian_factors_provider_push_notification_apns_request_content.rb
|
|
301
|
+
- lib/auth0/guardian/factors/push_notification/types/update_guardian_factors_provider_push_notification_fcm_request_content.rb
|
|
302
|
+
- lib/auth0/guardian/factors/push_notification/types/update_guardian_factors_provider_push_notification_fcmv1request_content.rb
|
|
303
|
+
- lib/auth0/guardian/factors/push_notification/types/update_guardian_factors_provider_push_notification_sns_request_content.rb
|
|
304
|
+
- lib/auth0/guardian/factors/sms/client.rb
|
|
305
|
+
- lib/auth0/guardian/factors/sms/types/set_guardian_factor_sms_templates_request_content.rb
|
|
306
|
+
- lib/auth0/guardian/factors/sms/types/set_guardian_factors_provider_sms_request_content.rb
|
|
307
|
+
- lib/auth0/guardian/factors/sms/types/set_guardian_factors_provider_sms_twilio_request_content.rb
|
|
308
|
+
- lib/auth0/guardian/factors/types/set_guardian_factor_request_content.rb
|
|
309
|
+
- lib/auth0/guardian/policies/client.rb
|
|
310
|
+
- lib/auth0/hooks/client.rb
|
|
311
|
+
- lib/auth0/hooks/secrets/client.rb
|
|
312
|
+
- lib/auth0/hooks/types/create_hook_request_content.rb
|
|
313
|
+
- lib/auth0/hooks/types/get_hook_request_parameters.rb
|
|
314
|
+
- lib/auth0/hooks/types/list_hooks_request_parameters.rb
|
|
315
|
+
- lib/auth0/hooks/types/update_hook_request_content.rb
|
|
316
|
+
- lib/auth0/internal/errors/constraint_error.rb
|
|
317
|
+
- lib/auth0/internal/errors/type_error.rb
|
|
318
|
+
- lib/auth0/internal/http/base_request.rb
|
|
319
|
+
- lib/auth0/internal/http/raw_client.rb
|
|
320
|
+
- lib/auth0/internal/iterators/cursor_item_iterator.rb
|
|
321
|
+
- lib/auth0/internal/iterators/cursor_page_iterator.rb
|
|
322
|
+
- lib/auth0/internal/iterators/item_iterator.rb
|
|
323
|
+
- lib/auth0/internal/iterators/offset_item_iterator.rb
|
|
324
|
+
- lib/auth0/internal/iterators/offset_page_iterator.rb
|
|
325
|
+
- lib/auth0/internal/json/request.rb
|
|
326
|
+
- lib/auth0/internal/json/serializable.rb
|
|
327
|
+
- lib/auth0/internal/multipart/multipart_encoder.rb
|
|
328
|
+
- lib/auth0/internal/multipart/multipart_form_data.rb
|
|
329
|
+
- lib/auth0/internal/multipart/multipart_form_data_part.rb
|
|
330
|
+
- lib/auth0/internal/multipart/multipart_request.rb
|
|
331
|
+
- lib/auth0/internal/types/array.rb
|
|
332
|
+
- lib/auth0/internal/types/boolean.rb
|
|
333
|
+
- lib/auth0/internal/types/enum.rb
|
|
334
|
+
- lib/auth0/internal/types/hash.rb
|
|
335
|
+
- lib/auth0/internal/types/model.rb
|
|
336
|
+
- lib/auth0/internal/types/model/field.rb
|
|
337
|
+
- lib/auth0/internal/types/type.rb
|
|
338
|
+
- lib/auth0/internal/types/union.rb
|
|
339
|
+
- lib/auth0/internal/types/unknown.rb
|
|
340
|
+
- lib/auth0/internal/types/utils.rb
|
|
341
|
+
- lib/auth0/jobs/client.rb
|
|
342
|
+
- lib/auth0/jobs/errors/client.rb
|
|
343
|
+
- lib/auth0/jobs/errors/types/errors_get_response.rb
|
|
344
|
+
- lib/auth0/jobs/users_exports/client.rb
|
|
345
|
+
- lib/auth0/jobs/users_exports/types/create_export_users_request_content.rb
|
|
346
|
+
- lib/auth0/jobs/users_imports/client.rb
|
|
347
|
+
- lib/auth0/jobs/users_imports/types/create_import_users_request_content.rb
|
|
348
|
+
- lib/auth0/jobs/verification_email/client.rb
|
|
349
|
+
- lib/auth0/jobs/verification_email/types/create_verification_email_request_content.rb
|
|
350
|
+
- lib/auth0/keys/client.rb
|
|
351
|
+
- lib/auth0/keys/custom_signing/client.rb
|
|
352
|
+
- lib/auth0/keys/custom_signing/types/set_custom_signing_keys_request_content.rb
|
|
353
|
+
- lib/auth0/keys/encryption/client.rb
|
|
354
|
+
- lib/auth0/keys/encryption/types/create_encryption_key_request_content.rb
|
|
355
|
+
- lib/auth0/keys/encryption/types/import_encryption_key_request_content.rb
|
|
356
|
+
- lib/auth0/keys/encryption/types/list_encryption_keys_request_parameters.rb
|
|
357
|
+
- lib/auth0/keys/signing/client.rb
|
|
358
|
+
- lib/auth0/log_streams/client.rb
|
|
359
|
+
- lib/auth0/log_streams/types/update_log_stream_request_content.rb
|
|
360
|
+
- lib/auth0/logs/client.rb
|
|
361
|
+
- lib/auth0/logs/types/list_logs_request_parameters.rb
|
|
358
362
|
- lib/auth0/mixins.rb
|
|
359
363
|
- lib/auth0/mixins/access_token_struct.rb
|
|
360
364
|
- lib/auth0/mixins/api_token_struct.rb
|
|
@@ -364,234 +368,2460 @@ files:
|
|
|
364
368
|
- lib/auth0/mixins/permission_struct.rb
|
|
365
369
|
- lib/auth0/mixins/token_management.rb
|
|
366
370
|
- lib/auth0/mixins/validation.rb
|
|
371
|
+
- lib/auth0/network_acls/client.rb
|
|
372
|
+
- lib/auth0/network_acls/types/create_network_acl_request_content.rb
|
|
373
|
+
- lib/auth0/network_acls/types/list_network_acls_request_parameters.rb
|
|
374
|
+
- lib/auth0/network_acls/types/set_network_acl_request_content.rb
|
|
375
|
+
- lib/auth0/network_acls/types/update_network_acl_request_content.rb
|
|
376
|
+
- lib/auth0/organizations/client.rb
|
|
377
|
+
- lib/auth0/organizations/client_grants/client.rb
|
|
378
|
+
- lib/auth0/organizations/client_grants/types/associate_organization_client_grant_request_content.rb
|
|
379
|
+
- lib/auth0/organizations/client_grants/types/list_organization_client_grants_request_parameters.rb
|
|
380
|
+
- lib/auth0/organizations/connections/client.rb
|
|
381
|
+
- lib/auth0/organizations/connections/types/create_organization_all_connection_request_parameters.rb
|
|
382
|
+
- lib/auth0/organizations/connections/types/list_organization_all_connections_request_parameters.rb
|
|
383
|
+
- lib/auth0/organizations/connections/types/update_organization_connection_request_parameters.rb
|
|
384
|
+
- lib/auth0/organizations/discovery_domains/client.rb
|
|
385
|
+
- lib/auth0/organizations/discovery_domains/types/create_organization_discovery_domain_request_content.rb
|
|
386
|
+
- lib/auth0/organizations/discovery_domains/types/list_organization_discovery_domains_request_parameters.rb
|
|
387
|
+
- lib/auth0/organizations/discovery_domains/types/update_organization_discovery_domain_request_content.rb
|
|
388
|
+
- lib/auth0/organizations/enabled_connections/client.rb
|
|
389
|
+
- lib/auth0/organizations/enabled_connections/types/add_organization_connection_request_content.rb
|
|
390
|
+
- lib/auth0/organizations/enabled_connections/types/list_organization_connections_request_parameters.rb
|
|
391
|
+
- lib/auth0/organizations/enabled_connections/types/update_organization_connection_request_content.rb
|
|
392
|
+
- lib/auth0/organizations/invitations/client.rb
|
|
393
|
+
- lib/auth0/organizations/invitations/types/create_organization_invitation_request_content.rb
|
|
394
|
+
- lib/auth0/organizations/invitations/types/get_organization_invitation_request_parameters.rb
|
|
395
|
+
- lib/auth0/organizations/invitations/types/list_organization_invitations_request_parameters.rb
|
|
396
|
+
- lib/auth0/organizations/members/client.rb
|
|
397
|
+
- lib/auth0/organizations/members/roles/client.rb
|
|
398
|
+
- lib/auth0/organizations/members/roles/types/assign_organization_member_roles_request_content.rb
|
|
399
|
+
- lib/auth0/organizations/members/roles/types/delete_organization_member_roles_request_content.rb
|
|
400
|
+
- lib/auth0/organizations/members/roles/types/list_organization_member_roles_request_parameters.rb
|
|
401
|
+
- lib/auth0/organizations/members/types/create_organization_member_request_content.rb
|
|
402
|
+
- lib/auth0/organizations/members/types/delete_organization_members_request_content.rb
|
|
403
|
+
- lib/auth0/organizations/members/types/list_organization_members_request_parameters.rb
|
|
404
|
+
- lib/auth0/organizations/types/create_organization_request_content.rb
|
|
405
|
+
- lib/auth0/organizations/types/list_organizations_request_parameters.rb
|
|
406
|
+
- lib/auth0/organizations/types/update_organization_request_content.rb
|
|
407
|
+
- lib/auth0/prompts/client.rb
|
|
408
|
+
- lib/auth0/prompts/custom_text/client.rb
|
|
409
|
+
- lib/auth0/prompts/partials/client.rb
|
|
410
|
+
- lib/auth0/prompts/rendering/client.rb
|
|
411
|
+
- lib/auth0/prompts/rendering/types/bulk_update_acul_request_content.rb
|
|
412
|
+
- lib/auth0/prompts/rendering/types/list_aculs_request_parameters.rb
|
|
413
|
+
- lib/auth0/prompts/rendering/types/update_acul_request_content.rb
|
|
414
|
+
- lib/auth0/prompts/types/update_settings_request_content.rb
|
|
415
|
+
- lib/auth0/refresh_tokens/client.rb
|
|
416
|
+
- lib/auth0/refresh_tokens/types/get_refresh_tokens_request_parameters.rb
|
|
417
|
+
- lib/auth0/refresh_tokens/types/update_refresh_token_request_content.rb
|
|
418
|
+
- lib/auth0/resource_servers/client.rb
|
|
419
|
+
- lib/auth0/resource_servers/types/create_resource_server_request_content.rb
|
|
420
|
+
- lib/auth0/resource_servers/types/get_resource_server_request_parameters.rb
|
|
421
|
+
- lib/auth0/resource_servers/types/list_resource_server_request_parameters.rb
|
|
422
|
+
- lib/auth0/resource_servers/types/update_resource_server_request_content.rb
|
|
423
|
+
- lib/auth0/risk_assessments/client.rb
|
|
424
|
+
- lib/auth0/risk_assessments/settings/client.rb
|
|
425
|
+
- lib/auth0/risk_assessments/settings/new_device/client.rb
|
|
426
|
+
- lib/auth0/risk_assessments/settings/new_device/types/update_risk_assessments_settings_new_device_request_content.rb
|
|
427
|
+
- lib/auth0/risk_assessments/settings/types/update_risk_assessments_settings_request_content.rb
|
|
428
|
+
- lib/auth0/roles/client.rb
|
|
429
|
+
- lib/auth0/roles/permissions/client.rb
|
|
430
|
+
- lib/auth0/roles/permissions/types/add_role_permissions_request_content.rb
|
|
431
|
+
- lib/auth0/roles/permissions/types/delete_role_permissions_request_content.rb
|
|
432
|
+
- lib/auth0/roles/permissions/types/list_role_permissions_request_parameters.rb
|
|
433
|
+
- lib/auth0/roles/types/create_role_request_content.rb
|
|
434
|
+
- lib/auth0/roles/types/list_roles_request_parameters.rb
|
|
435
|
+
- lib/auth0/roles/types/update_role_request_content.rb
|
|
436
|
+
- lib/auth0/roles/users/client.rb
|
|
437
|
+
- lib/auth0/roles/users/types/assign_role_users_request_content.rb
|
|
438
|
+
- lib/auth0/roles/users/types/list_role_users_request_parameters.rb
|
|
439
|
+
- lib/auth0/rules/client.rb
|
|
440
|
+
- lib/auth0/rules/types/create_rule_request_content.rb
|
|
441
|
+
- lib/auth0/rules/types/get_rule_request_parameters.rb
|
|
442
|
+
- lib/auth0/rules/types/list_rules_request_parameters.rb
|
|
443
|
+
- lib/auth0/rules/types/update_rule_request_content.rb
|
|
444
|
+
- lib/auth0/rules_configs/client.rb
|
|
445
|
+
- lib/auth0/rules_configs/types/set_rules_config_request_content.rb
|
|
446
|
+
- lib/auth0/self_service_profiles/client.rb
|
|
447
|
+
- lib/auth0/self_service_profiles/custom_text/client.rb
|
|
448
|
+
- lib/auth0/self_service_profiles/sso_ticket/client.rb
|
|
449
|
+
- lib/auth0/self_service_profiles/sso_ticket/types/create_self_service_profile_sso_ticket_request_content.rb
|
|
450
|
+
- lib/auth0/self_service_profiles/types/create_self_service_profile_request_content.rb
|
|
451
|
+
- lib/auth0/self_service_profiles/types/list_self_service_profiles_request_parameters.rb
|
|
452
|
+
- lib/auth0/self_service_profiles/types/update_self_service_profile_request_content.rb
|
|
453
|
+
- lib/auth0/sessions/client.rb
|
|
454
|
+
- lib/auth0/sessions/types/update_session_request_content.rb
|
|
455
|
+
- lib/auth0/stats/client.rb
|
|
456
|
+
- lib/auth0/stats/types/get_daily_stats_request_parameters.rb
|
|
457
|
+
- lib/auth0/supplemental_signals/client.rb
|
|
458
|
+
- lib/auth0/supplemental_signals/types/update_supplemental_signals_request_content.rb
|
|
459
|
+
- lib/auth0/tenants/client.rb
|
|
460
|
+
- lib/auth0/tenants/settings/client.rb
|
|
461
|
+
- lib/auth0/tenants/settings/types/get_tenant_settings_request_parameters.rb
|
|
462
|
+
- lib/auth0/tenants/settings/types/update_tenant_settings_request_content.rb
|
|
463
|
+
- lib/auth0/tickets/client.rb
|
|
464
|
+
- lib/auth0/tickets/types/change_password_ticket_request_content.rb
|
|
465
|
+
- lib/auth0/tickets/types/verify_email_ticket_request_content.rb
|
|
466
|
+
- lib/auth0/token_exchange_profiles/client.rb
|
|
467
|
+
- lib/auth0/token_exchange_profiles/types/create_token_exchange_profile_request_content.rb
|
|
468
|
+
- lib/auth0/token_exchange_profiles/types/token_exchange_profiles_list_request.rb
|
|
469
|
+
- lib/auth0/token_exchange_profiles/types/update_token_exchange_profile_request_content.rb
|
|
470
|
+
- lib/auth0/types/action.rb
|
|
471
|
+
- lib/auth0/types/action_base.rb
|
|
472
|
+
- lib/auth0/types/action_binding.rb
|
|
473
|
+
- lib/auth0/types/action_binding_ref.rb
|
|
474
|
+
- lib/auth0/types/action_binding_ref_type_enum.rb
|
|
475
|
+
- lib/auth0/types/action_binding_type_enum.rb
|
|
476
|
+
- lib/auth0/types/action_binding_with_ref.rb
|
|
477
|
+
- lib/auth0/types/action_build_status_enum.rb
|
|
478
|
+
- lib/auth0/types/action_deployed_version.rb
|
|
479
|
+
- lib/auth0/types/action_error.rb
|
|
480
|
+
- lib/auth0/types/action_execution_result.rb
|
|
481
|
+
- lib/auth0/types/action_execution_status_enum.rb
|
|
482
|
+
- lib/auth0/types/action_module_action.rb
|
|
483
|
+
- lib/auth0/types/action_module_dependency.rb
|
|
484
|
+
- lib/auth0/types/action_module_dependency_request.rb
|
|
485
|
+
- lib/auth0/types/action_module_list_item.rb
|
|
486
|
+
- lib/auth0/types/action_module_reference.rb
|
|
487
|
+
- lib/auth0/types/action_module_secret.rb
|
|
488
|
+
- lib/auth0/types/action_module_secret_request.rb
|
|
489
|
+
- lib/auth0/types/action_module_version.rb
|
|
490
|
+
- lib/auth0/types/action_module_version_reference.rb
|
|
491
|
+
- lib/auth0/types/action_secret_request.rb
|
|
492
|
+
- lib/auth0/types/action_secret_response.rb
|
|
493
|
+
- lib/auth0/types/action_trigger.rb
|
|
494
|
+
- lib/auth0/types/action_trigger_compatible_trigger.rb
|
|
495
|
+
- lib/auth0/types/action_trigger_type_enum.rb
|
|
496
|
+
- lib/auth0/types/action_version.rb
|
|
497
|
+
- lib/auth0/types/action_version_build_status_enum.rb
|
|
498
|
+
- lib/auth0/types/action_version_dependency.rb
|
|
499
|
+
- lib/auth0/types/acul_client_filter.rb
|
|
500
|
+
- lib/auth0/types/acul_client_filter_by_id.rb
|
|
501
|
+
- lib/auth0/types/acul_client_filter_by_metadata.rb
|
|
502
|
+
- lib/auth0/types/acul_client_metadata.rb
|
|
503
|
+
- lib/auth0/types/acul_configs.rb
|
|
504
|
+
- lib/auth0/types/acul_configs_item.rb
|
|
505
|
+
- lib/auth0/types/acul_context_configuration.rb
|
|
506
|
+
- lib/auth0/types/acul_context_configuration_item.rb
|
|
507
|
+
- lib/auth0/types/acul_context_enum.rb
|
|
508
|
+
- lib/auth0/types/acul_domain_filter.rb
|
|
509
|
+
- lib/auth0/types/acul_domain_filter_by_id.rb
|
|
510
|
+
- lib/auth0/types/acul_domain_filter_by_metadata.rb
|
|
511
|
+
- lib/auth0/types/acul_domain_metadata.rb
|
|
512
|
+
- lib/auth0/types/acul_filters.rb
|
|
513
|
+
- lib/auth0/types/acul_head_tag.rb
|
|
514
|
+
- lib/auth0/types/acul_head_tag_attributes.rb
|
|
515
|
+
- lib/auth0/types/acul_head_tag_content.rb
|
|
516
|
+
- lib/auth0/types/acul_match_type_enum.rb
|
|
517
|
+
- lib/auth0/types/acul_organization_filter.rb
|
|
518
|
+
- lib/auth0/types/acul_organization_filter_by_id.rb
|
|
519
|
+
- lib/auth0/types/acul_organization_filter_by_metadata.rb
|
|
520
|
+
- lib/auth0/types/acul_organization_metadata.rb
|
|
521
|
+
- lib/auth0/types/acul_rendering_mode_enum.rb
|
|
522
|
+
- lib/auth0/types/add_organization_connection_response_content.rb
|
|
523
|
+
- lib/auth0/types/anomaly_ip_format.rb
|
|
524
|
+
- lib/auth0/types/app_metadata.rb
|
|
525
|
+
- lib/auth0/types/assessors_type_enum.rb
|
|
526
|
+
- lib/auth0/types/associate_organization_client_grant_response_content.rb
|
|
527
|
+
- lib/auth0/types/async_approval_notifications_channels_enum.rb
|
|
528
|
+
- lib/auth0/types/attack_protection_captcha_arkose_response_content.rb
|
|
529
|
+
- lib/auth0/types/attack_protection_captcha_auth_challenge_request.rb
|
|
530
|
+
- lib/auth0/types/attack_protection_captcha_auth_challenge_response_content.rb
|
|
531
|
+
- lib/auth0/types/attack_protection_captcha_friendly_captcha_response_content.rb
|
|
532
|
+
- lib/auth0/types/attack_protection_captcha_hcaptcha_response_content.rb
|
|
533
|
+
- lib/auth0/types/attack_protection_captcha_provider_id.rb
|
|
534
|
+
- lib/auth0/types/attack_protection_captcha_recaptcha_enterprise_response_content.rb
|
|
535
|
+
- lib/auth0/types/attack_protection_captcha_recaptcha_v2response_content.rb
|
|
536
|
+
- lib/auth0/types/attack_protection_captcha_simple_captcha_response_content.rb
|
|
537
|
+
- lib/auth0/types/attack_protection_update_captcha_arkose.rb
|
|
538
|
+
- lib/auth0/types/attack_protection_update_captcha_friendly_captcha.rb
|
|
539
|
+
- lib/auth0/types/attack_protection_update_captcha_hcaptcha.rb
|
|
540
|
+
- lib/auth0/types/attack_protection_update_captcha_recaptcha_enterprise.rb
|
|
541
|
+
- lib/auth0/types/attack_protection_update_captcha_recaptcha_v2.rb
|
|
542
|
+
- lib/auth0/types/authentication_method_type_enum.rb
|
|
543
|
+
- lib/auth0/types/authentication_type_enum.rb
|
|
544
|
+
- lib/auth0/types/bot_detection_allowlist.rb
|
|
545
|
+
- lib/auth0/types/bot_detection_challenge_policy_password_flow_enum.rb
|
|
546
|
+
- lib/auth0/types/bot_detection_challenge_policy_password_reset_flow_enum.rb
|
|
547
|
+
- lib/auth0/types/bot_detection_challenge_policy_passwordless_flow_enum.rb
|
|
548
|
+
- lib/auth0/types/bot_detection_cidr_block.rb
|
|
549
|
+
- lib/auth0/types/bot_detection_i_pv4.rb
|
|
550
|
+
- lib/auth0/types/bot_detection_i_pv6.rb
|
|
551
|
+
- lib/auth0/types/bot_detection_i_pv6cidr_block.rb
|
|
552
|
+
- lib/auth0/types/bot_detection_ip_address_or_cidr_block.rb
|
|
553
|
+
- lib/auth0/types/bot_detection_level_enum.rb
|
|
554
|
+
- lib/auth0/types/bot_detection_monitoring_mode_enabled.rb
|
|
555
|
+
- lib/auth0/types/branding_colors.rb
|
|
556
|
+
- lib/auth0/types/branding_font.rb
|
|
557
|
+
- lib/auth0/types/branding_page_background.rb
|
|
558
|
+
- lib/auth0/types/branding_theme_borders.rb
|
|
559
|
+
- lib/auth0/types/branding_theme_borders_buttons_style_enum.rb
|
|
560
|
+
- lib/auth0/types/branding_theme_borders_inputs_style_enum.rb
|
|
561
|
+
- lib/auth0/types/branding_theme_colors.rb
|
|
562
|
+
- lib/auth0/types/branding_theme_colors_captcha_widget_theme_enum.rb
|
|
563
|
+
- lib/auth0/types/branding_theme_font_body_text.rb
|
|
564
|
+
- lib/auth0/types/branding_theme_font_buttons_text.rb
|
|
565
|
+
- lib/auth0/types/branding_theme_font_input_labels.rb
|
|
566
|
+
- lib/auth0/types/branding_theme_font_links.rb
|
|
567
|
+
- lib/auth0/types/branding_theme_font_links_style_enum.rb
|
|
568
|
+
- lib/auth0/types/branding_theme_font_subtitle.rb
|
|
569
|
+
- lib/auth0/types/branding_theme_font_title.rb
|
|
570
|
+
- lib/auth0/types/branding_theme_fonts.rb
|
|
571
|
+
- lib/auth0/types/branding_theme_page_background.rb
|
|
572
|
+
- lib/auth0/types/branding_theme_page_background_page_layout_enum.rb
|
|
573
|
+
- lib/auth0/types/branding_theme_widget.rb
|
|
574
|
+
- lib/auth0/types/branding_theme_widget_header_text_alignment_enum.rb
|
|
575
|
+
- lib/auth0/types/branding_theme_widget_logo_position_enum.rb
|
|
576
|
+
- lib/auth0/types/branding_theme_widget_social_buttons_layout_enum.rb
|
|
577
|
+
- lib/auth0/types/breached_password_detection_admin_notification_frequency_enum.rb
|
|
578
|
+
- lib/auth0/types/breached_password_detection_method_enum.rb
|
|
579
|
+
- lib/auth0/types/breached_password_detection_pre_change_password_shields_enum.rb
|
|
580
|
+
- lib/auth0/types/breached_password_detection_pre_change_password_stage.rb
|
|
581
|
+
- lib/auth0/types/breached_password_detection_pre_user_registration_shields_enum.rb
|
|
582
|
+
- lib/auth0/types/breached_password_detection_pre_user_registration_stage.rb
|
|
583
|
+
- lib/auth0/types/breached_password_detection_shields_enum.rb
|
|
584
|
+
- lib/auth0/types/breached_password_detection_stage.rb
|
|
585
|
+
- lib/auth0/types/brute_force_protection_mode_enum.rb
|
|
586
|
+
- lib/auth0/types/brute_force_protection_shields_enum.rb
|
|
587
|
+
- lib/auth0/types/bulk_update_acul_response_content.rb
|
|
588
|
+
- lib/auth0/types/certificate_subject_dn_credential.rb
|
|
589
|
+
- lib/auth0/types/certificate_subject_dn_credential_type_enum.rb
|
|
590
|
+
- lib/auth0/types/change_password_ticket_identity.rb
|
|
591
|
+
- lib/auth0/types/change_password_ticket_response_content.rb
|
|
592
|
+
- lib/auth0/types/cimd_mapped_client_authentication_methods.rb
|
|
593
|
+
- lib/auth0/types/cimd_mapped_client_authentication_methods_private_key_jwt.rb
|
|
594
|
+
- lib/auth0/types/cimd_mapped_client_fields.rb
|
|
595
|
+
- lib/auth0/types/cimd_mapped_private_key_jwt_credential.rb
|
|
596
|
+
- lib/auth0/types/cimd_validation_result.rb
|
|
597
|
+
- lib/auth0/types/client.rb
|
|
598
|
+
- lib/auth0/types/client_addon_aws.rb
|
|
599
|
+
- lib/auth0/types/client_addon_azure_blob.rb
|
|
600
|
+
- lib/auth0/types/client_addon_azure_sb.rb
|
|
601
|
+
- lib/auth0/types/client_addon_box.rb
|
|
602
|
+
- lib/auth0/types/client_addon_cloud_bees.rb
|
|
603
|
+
- lib/auth0/types/client_addon_concur.rb
|
|
604
|
+
- lib/auth0/types/client_addon_dropbox.rb
|
|
605
|
+
- lib/auth0/types/client_addon_echo_sign.rb
|
|
606
|
+
- lib/auth0/types/client_addon_egnyte.rb
|
|
607
|
+
- lib/auth0/types/client_addon_firebase.rb
|
|
608
|
+
- lib/auth0/types/client_addon_layer.rb
|
|
609
|
+
- lib/auth0/types/client_addon_mscrm.rb
|
|
610
|
+
- lib/auth0/types/client_addon_new_relic.rb
|
|
611
|
+
- lib/auth0/types/client_addon_oag.rb
|
|
612
|
+
- lib/auth0/types/client_addon_office365.rb
|
|
613
|
+
- lib/auth0/types/client_addon_rms.rb
|
|
614
|
+
- lib/auth0/types/client_addon_salesforce.rb
|
|
615
|
+
- lib/auth0/types/client_addon_salesforce_api.rb
|
|
616
|
+
- lib/auth0/types/client_addon_salesforce_sandbox_api.rb
|
|
617
|
+
- lib/auth0/types/client_addon_saml.rb
|
|
618
|
+
- lib/auth0/types/client_addon_saml_mapping.rb
|
|
619
|
+
- lib/auth0/types/client_addon_sapapi.rb
|
|
620
|
+
- lib/auth0/types/client_addon_sentry.rb
|
|
621
|
+
- lib/auth0/types/client_addon_share_point.rb
|
|
622
|
+
- lib/auth0/types/client_addon_share_point_external_url.rb
|
|
623
|
+
- lib/auth0/types/client_addon_slack.rb
|
|
624
|
+
- lib/auth0/types/client_addon_spring_cm.rb
|
|
625
|
+
- lib/auth0/types/client_addon_sso_integration.rb
|
|
626
|
+
- lib/auth0/types/client_addon_wams.rb
|
|
627
|
+
- lib/auth0/types/client_addon_ws_fed.rb
|
|
628
|
+
- lib/auth0/types/client_addon_zendesk.rb
|
|
629
|
+
- lib/auth0/types/client_addon_zoom.rb
|
|
630
|
+
- lib/auth0/types/client_addons.rb
|
|
631
|
+
- lib/auth0/types/client_app_type_enum.rb
|
|
632
|
+
- lib/auth0/types/client_async_approval_notifications_channels_api_patch_configuration.rb
|
|
633
|
+
- lib/auth0/types/client_async_approval_notifications_channels_api_post_configuration.rb
|
|
634
|
+
- lib/auth0/types/client_authentication_method.rb
|
|
635
|
+
- lib/auth0/types/client_authentication_method_private_key_jwt.rb
|
|
636
|
+
- lib/auth0/types/client_authentication_method_private_key_jwt_credentials.rb
|
|
637
|
+
- lib/auth0/types/client_authentication_method_self_signed_tls_client_auth.rb
|
|
638
|
+
- lib/auth0/types/client_authentication_method_self_signed_tls_client_auth_credentials.rb
|
|
639
|
+
- lib/auth0/types/client_authentication_method_tls_client_auth.rb
|
|
640
|
+
- lib/auth0/types/client_authentication_method_tls_client_auth_credentials.rb
|
|
641
|
+
- lib/auth0/types/client_compliance_level_enum.rb
|
|
642
|
+
- lib/auth0/types/client_create_authentication_method.rb
|
|
643
|
+
- lib/auth0/types/client_create_authentication_method_private_key_jwt.rb
|
|
644
|
+
- lib/auth0/types/client_create_authentication_method_private_key_jwt_credentials.rb
|
|
645
|
+
- lib/auth0/types/client_create_authentication_method_tls_client_auth.rb
|
|
646
|
+
- lib/auth0/types/client_create_authentication_method_tls_client_auth_credentials.rb
|
|
647
|
+
- lib/auth0/types/client_credential.rb
|
|
648
|
+
- lib/auth0/types/client_credential_algorithm_enum.rb
|
|
649
|
+
- lib/auth0/types/client_credential_type_enum.rb
|
|
650
|
+
- lib/auth0/types/client_default_organization.rb
|
|
651
|
+
- lib/auth0/types/client_default_organization_flows_enum.rb
|
|
652
|
+
- lib/auth0/types/client_encryption_key.rb
|
|
653
|
+
- lib/auth0/types/client_external_metadata_created_by_enum.rb
|
|
654
|
+
- lib/auth0/types/client_external_metadata_type_enum.rb
|
|
655
|
+
- lib/auth0/types/client_grant_allow_any_organization_enum.rb
|
|
656
|
+
- lib/auth0/types/client_grant_default_for_enum.rb
|
|
657
|
+
- lib/auth0/types/client_grant_organization_nullable_usage_enum.rb
|
|
658
|
+
- lib/auth0/types/client_grant_organization_usage_enum.rb
|
|
659
|
+
- lib/auth0/types/client_grant_response_content.rb
|
|
660
|
+
- lib/auth0/types/client_grant_subject_type_enum.rb
|
|
661
|
+
- lib/auth0/types/client_jwt_configuration.rb
|
|
662
|
+
- lib/auth0/types/client_jwt_configuration_scopes.rb
|
|
663
|
+
- lib/auth0/types/client_metadata.rb
|
|
664
|
+
- lib/auth0/types/client_mobile.rb
|
|
665
|
+
- lib/auth0/types/client_mobile_android.rb
|
|
666
|
+
- lib/auth0/types/client_mobilei_os.rb
|
|
667
|
+
- lib/auth0/types/client_my_organization_configuration_allowed_strategies_enum.rb
|
|
668
|
+
- lib/auth0/types/client_my_organization_deletion_behavior_enum.rb
|
|
669
|
+
- lib/auth0/types/client_my_organization_patch_configuration.rb
|
|
670
|
+
- lib/auth0/types/client_my_organization_post_configuration.rb
|
|
671
|
+
- lib/auth0/types/client_my_organization_response_configuration.rb
|
|
672
|
+
- lib/auth0/types/client_oidc_backchannel_logout_initiators.rb
|
|
673
|
+
- lib/auth0/types/client_oidc_backchannel_logout_initiators_enum.rb
|
|
674
|
+
- lib/auth0/types/client_oidc_backchannel_logout_initiators_mode_enum.rb
|
|
675
|
+
- lib/auth0/types/client_oidc_backchannel_logout_session_metadata.rb
|
|
676
|
+
- lib/auth0/types/client_oidc_backchannel_logout_settings.rb
|
|
677
|
+
- lib/auth0/types/client_organization_discovery_enum.rb
|
|
678
|
+
- lib/auth0/types/client_organization_require_behavior_enum.rb
|
|
679
|
+
- lib/auth0/types/client_organization_require_behavior_patch_enum.rb
|
|
680
|
+
- lib/auth0/types/client_organization_usage_enum.rb
|
|
681
|
+
- lib/auth0/types/client_organization_usage_patch_enum.rb
|
|
682
|
+
- lib/auth0/types/client_redirection_policy_enum.rb
|
|
683
|
+
- lib/auth0/types/client_refresh_token_configuration.rb
|
|
684
|
+
- lib/auth0/types/client_refresh_token_policy.rb
|
|
685
|
+
- lib/auth0/types/client_session_transfer_allowed_authentication_methods_enum.rb
|
|
686
|
+
- lib/auth0/types/client_session_transfer_configuration.rb
|
|
687
|
+
- lib/auth0/types/client_session_transfer_device_binding_enum.rb
|
|
688
|
+
- lib/auth0/types/client_signed_request_object_with_credential_id.rb
|
|
689
|
+
- lib/auth0/types/client_signed_request_object_with_public_key.rb
|
|
690
|
+
- lib/auth0/types/client_signing_key.rb
|
|
691
|
+
- lib/auth0/types/client_signing_keys.rb
|
|
692
|
+
- lib/auth0/types/client_third_party_security_mode_enum.rb
|
|
693
|
+
- lib/auth0/types/client_token_endpoint_auth_method_enum.rb
|
|
694
|
+
- lib/auth0/types/client_token_endpoint_auth_method_or_null_enum.rb
|
|
695
|
+
- lib/auth0/types/client_token_exchange_configuration.rb
|
|
696
|
+
- lib/auth0/types/client_token_exchange_configuration_or_null.rb
|
|
697
|
+
- lib/auth0/types/client_token_exchange_type_enum.rb
|
|
698
|
+
- lib/auth0/types/connected_account.rb
|
|
699
|
+
- lib/auth0/types/connected_account_access_type_enum.rb
|
|
700
|
+
- lib/auth0/types/connection_access_token_urlo_auth1.rb
|
|
701
|
+
- lib/auth0/types/connection_acr_values_supported.rb
|
|
702
|
+
- lib/auth0/types/connection_admin_access_token_expires_in_google_apps.rb
|
|
703
|
+
- lib/auth0/types/connection_admin_access_token_google_apps.rb
|
|
704
|
+
- lib/auth0/types/connection_admin_refresh_token_google_apps.rb
|
|
705
|
+
- lib/auth0/types/connection_agent_ipad.rb
|
|
706
|
+
- lib/auth0/types/connection_agent_mode_ad.rb
|
|
707
|
+
- lib/auth0/types/connection_agent_version_ad.rb
|
|
708
|
+
- lib/auth0/types/connection_allowed_audiences_google_o_auth2.rb
|
|
709
|
+
- lib/auth0/types/connection_api_behavior_enum.rb
|
|
710
|
+
- lib/auth0/types/connection_api_enable_groups.rb
|
|
711
|
+
- lib/auth0/types/connection_api_enable_groups_google_apps.rb
|
|
712
|
+
- lib/auth0/types/connection_api_enable_users.rb
|
|
713
|
+
- lib/auth0/types/connection_api_enable_users_google_apps.rb
|
|
714
|
+
- lib/auth0/types/connection_app_domain_azure_ad.rb
|
|
715
|
+
- lib/auth0/types/connection_attribute_identifier.rb
|
|
716
|
+
- lib/auth0/types/connection_attribute_map_attributes.rb
|
|
717
|
+
- lib/auth0/types/connection_attribute_map_oidc.rb
|
|
718
|
+
- lib/auth0/types/connection_attribute_map_okta.rb
|
|
719
|
+
- lib/auth0/types/connection_attribute_map_userinfo_scope.rb
|
|
720
|
+
- lib/auth0/types/connection_attributes.rb
|
|
721
|
+
- lib/auth0/types/connection_auth_params_additional_properties_o_auth2.rb
|
|
722
|
+
- lib/auth0/types/connection_auth_params_email.rb
|
|
723
|
+
- lib/auth0/types/connection_auth_params_map.rb
|
|
724
|
+
- lib/auth0/types/connection_auth_params_o_auth2.rb
|
|
725
|
+
- lib/auth0/types/connection_authentication_methods.rb
|
|
726
|
+
- lib/auth0/types/connection_authentication_purpose.rb
|
|
727
|
+
- lib/auth0/types/connection_authorization_endpoint.rb
|
|
728
|
+
- lib/auth0/types/connection_base_url_exact.rb
|
|
729
|
+
- lib/auth0/types/connection_brute_force_protection.rb
|
|
730
|
+
- lib/auth0/types/connection_calculated_thumbprint_saml.rb
|
|
731
|
+
- lib/auth0/types/connection_certs_ad.rb
|
|
732
|
+
- lib/auth0/types/connection_claim_types_supported.rb
|
|
733
|
+
- lib/auth0/types/connection_claims_locales_supported.rb
|
|
734
|
+
- lib/auth0/types/connection_claims_parameter_supported.rb
|
|
735
|
+
- lib/auth0/types/connection_claims_supported.rb
|
|
736
|
+
- lib/auth0/types/connection_client_id.rb
|
|
737
|
+
- lib/auth0/types/connection_client_id_amazon.rb
|
|
738
|
+
- lib/auth0/types/connection_client_id_azure_ad.rb
|
|
739
|
+
- lib/auth0/types/connection_client_id_bitbucket.rb
|
|
740
|
+
- lib/auth0/types/connection_client_id_exact.rb
|
|
741
|
+
- lib/auth0/types/connection_client_id_facebook.rb
|
|
742
|
+
- lib/auth0/types/connection_client_id_google_apps.rb
|
|
743
|
+
- lib/auth0/types/connection_client_id_google_o_auth2.rb
|
|
744
|
+
- lib/auth0/types/connection_client_id_line.rb
|
|
745
|
+
- lib/auth0/types/connection_client_id_linkedin.rb
|
|
746
|
+
- lib/auth0/types/connection_client_id_o_auth1.rb
|
|
747
|
+
- lib/auth0/types/connection_client_id_o_auth2.rb
|
|
748
|
+
- lib/auth0/types/connection_client_id_oidc.rb
|
|
749
|
+
- lib/auth0/types/connection_client_id_paypal.rb
|
|
750
|
+
- lib/auth0/types/connection_client_id_salesforce.rb
|
|
751
|
+
- lib/auth0/types/connection_client_id_windows_live.rb
|
|
752
|
+
- lib/auth0/types/connection_client_protocol_saml.rb
|
|
753
|
+
- lib/auth0/types/connection_client_secret.rb
|
|
754
|
+
- lib/auth0/types/connection_client_secret_amazon.rb
|
|
755
|
+
- lib/auth0/types/connection_client_secret_azure_ad.rb
|
|
756
|
+
- lib/auth0/types/connection_client_secret_bitbucket.rb
|
|
757
|
+
- lib/auth0/types/connection_client_secret_exact.rb
|
|
758
|
+
- lib/auth0/types/connection_client_secret_facebook.rb
|
|
759
|
+
- lib/auth0/types/connection_client_secret_google_apps.rb
|
|
760
|
+
- lib/auth0/types/connection_client_secret_google_o_auth2.rb
|
|
761
|
+
- lib/auth0/types/connection_client_secret_line.rb
|
|
762
|
+
- lib/auth0/types/connection_client_secret_linkedin.rb
|
|
763
|
+
- lib/auth0/types/connection_client_secret_o_auth1.rb
|
|
764
|
+
- lib/auth0/types/connection_client_secret_o_auth2.rb
|
|
765
|
+
- lib/auth0/types/connection_client_secret_oidc.rb
|
|
766
|
+
- lib/auth0/types/connection_client_secret_paypal.rb
|
|
767
|
+
- lib/auth0/types/connection_client_secret_salesforce.rb
|
|
768
|
+
- lib/auth0/types/connection_client_secret_windows_live.rb
|
|
769
|
+
- lib/auth0/types/connection_common.rb
|
|
770
|
+
- lib/auth0/types/connection_community_base_url_salesforce.rb
|
|
771
|
+
- lib/auth0/types/connection_configuration.rb
|
|
772
|
+
- lib/auth0/types/connection_connected_accounts_purpose.rb
|
|
773
|
+
- lib/auth0/types/connection_connected_accounts_purpose_xaa.rb
|
|
774
|
+
- lib/auth0/types/connection_connection_settings.rb
|
|
775
|
+
- lib/auth0/types/connection_connection_settings_pkce_enum.rb
|
|
776
|
+
- lib/auth0/types/connection_custom_headers_o_auth2.rb
|
|
777
|
+
- lib/auth0/types/connection_custom_scripts.rb
|
|
778
|
+
- lib/auth0/types/connection_debug_saml.rb
|
|
779
|
+
- lib/auth0/types/connection_decryption_key_saml.rb
|
|
780
|
+
- lib/auth0/types/connection_decryption_key_saml_cert.rb
|
|
781
|
+
- lib/auth0/types/connection_destination_url_saml.rb
|
|
782
|
+
- lib/auth0/types/connection_digest_algorithm_enum_saml.rb
|
|
783
|
+
- lib/auth0/types/connection_digest_algorithm_saml.rb
|
|
784
|
+
- lib/auth0/types/connection_disable_self_service_change_password.rb
|
|
785
|
+
- lib/auth0/types/connection_disable_signup.rb
|
|
786
|
+
- lib/auth0/types/connection_disable_signup_sms.rb
|
|
787
|
+
- lib/auth0/types/connection_discovery_url.rb
|
|
788
|
+
- lib/auth0/types/connection_display_name.rb
|
|
789
|
+
- lib/auth0/types/connection_display_values_supported.rb
|
|
790
|
+
- lib/auth0/types/connection_domain_aliases.rb
|
|
791
|
+
- lib/auth0/types/connection_domain_aliases_ad.rb
|
|
792
|
+
- lib/auth0/types/connection_domain_aliases_azure_ad.rb
|
|
793
|
+
- lib/auth0/types/connection_domain_aliases_items_one.rb
|
|
794
|
+
- lib/auth0/types/connection_domain_aliases_saml.rb
|
|
795
|
+
- lib/auth0/types/connection_domain_google_apps.rb
|
|
796
|
+
- lib/auth0/types/connection_domain_okta.rb
|
|
797
|
+
- lib/auth0/types/connection_dpop_signing_alg_enum.rb
|
|
798
|
+
- lib/auth0/types/connection_dpop_signing_alg_values_supported.rb
|
|
799
|
+
- lib/auth0/types/connection_email_body_email.rb
|
|
800
|
+
- lib/auth0/types/connection_email_email.rb
|
|
801
|
+
- lib/auth0/types/connection_email_email_syntax.rb
|
|
802
|
+
- lib/auth0/types/connection_email_from_email.rb
|
|
803
|
+
- lib/auth0/types/connection_email_otp_authentication_method.rb
|
|
804
|
+
- lib/auth0/types/connection_email_subject_email.rb
|
|
805
|
+
- lib/auth0/types/connection_enable_script_context.rb
|
|
806
|
+
- lib/auth0/types/connection_enabled_client.rb
|
|
807
|
+
- lib/auth0/types/connection_enabled_clients.rb
|
|
808
|
+
- lib/auth0/types/connection_enabled_database_customization.rb
|
|
809
|
+
- lib/auth0/types/connection_end_session_endpoint.rb
|
|
810
|
+
- lib/auth0/types/connection_entity_id_saml.rb
|
|
811
|
+
- lib/auth0/types/connection_ext_admin.rb
|
|
812
|
+
- lib/auth0/types/connection_ext_agreed_terms.rb
|
|
813
|
+
- lib/auth0/types/connection_ext_agreed_terms_google_apps.rb
|
|
814
|
+
- lib/auth0/types/connection_ext_assigned_plans.rb
|
|
815
|
+
- lib/auth0/types/connection_ext_groups.rb
|
|
816
|
+
- lib/auth0/types/connection_ext_groups_azure_ad.rb
|
|
817
|
+
- lib/auth0/types/connection_ext_groups_google_apps.rb
|
|
818
|
+
- lib/auth0/types/connection_ext_is_admin_google_apps.rb
|
|
819
|
+
- lib/auth0/types/connection_ext_is_suspended.rb
|
|
820
|
+
- lib/auth0/types/connection_ext_is_suspended_google_apps.rb
|
|
821
|
+
- lib/auth0/types/connection_ext_profile.rb
|
|
822
|
+
- lib/auth0/types/connection_federated_connections_access_tokens.rb
|
|
823
|
+
- lib/auth0/types/connection_fields_map.rb
|
|
824
|
+
- lib/auth0/types/connection_fields_map_saml.rb
|
|
825
|
+
- lib/auth0/types/connection_fields_map_saml_value.rb
|
|
826
|
+
- lib/auth0/types/connection_for_list.rb
|
|
827
|
+
- lib/auth0/types/connection_for_organization.rb
|
|
828
|
+
- lib/auth0/types/connection_forward_req_info_sms.rb
|
|
829
|
+
- lib/auth0/types/connection_freeform_scopes_amazon.rb
|
|
830
|
+
- lib/auth0/types/connection_freeform_scopes_google_o_auth2.rb
|
|
831
|
+
- lib/auth0/types/connection_freeform_scopes_linkedin.rb
|
|
832
|
+
- lib/auth0/types/connection_freeform_scopes_paypal.rb
|
|
833
|
+
- lib/auth0/types/connection_freeform_scopes_salesforce.rb
|
|
834
|
+
- lib/auth0/types/connection_freeform_scopes_windows_live.rb
|
|
835
|
+
- lib/auth0/types/connection_from_sms.rb
|
|
836
|
+
- lib/auth0/types/connection_gateway_authentication.rb
|
|
837
|
+
- lib/auth0/types/connection_gateway_authentication_audience_sms.rb
|
|
838
|
+
- lib/auth0/types/connection_gateway_authentication_method_sms.rb
|
|
839
|
+
- lib/auth0/types/connection_gateway_authentication_sms.rb
|
|
840
|
+
- lib/auth0/types/connection_gateway_authentication_subject_sms.rb
|
|
841
|
+
- lib/auth0/types/connection_gateway_url_sms.rb
|
|
842
|
+
- lib/auth0/types/connection_global_token_revocation_jwt_iss_saml.rb
|
|
843
|
+
- lib/auth0/types/connection_global_token_revocation_jwt_sub_saml.rb
|
|
844
|
+
- lib/auth0/types/connection_grant_types_supported.rb
|
|
845
|
+
- lib/auth0/types/connection_handle_login_from_social_google_apps.rb
|
|
846
|
+
- lib/auth0/types/connection_https_url_with_http_fallback.rb
|
|
847
|
+
- lib/auth0/types/connection_https_url_with_http_fallback2048.rb
|
|
848
|
+
- lib/auth0/types/connection_https_url_with_http_fallback255.rb
|
|
849
|
+
- lib/auth0/types/connection_icon_url.rb
|
|
850
|
+
- lib/auth0/types/connection_icon_url_adfs.rb
|
|
851
|
+
- lib/auth0/types/connection_icon_url_azure_ad.rb
|
|
852
|
+
- lib/auth0/types/connection_icon_url_google_apps.rb
|
|
853
|
+
- lib/auth0/types/connection_icon_url_google_o_auth2.rb
|
|
854
|
+
- lib/auth0/types/connection_icon_url_saml.rb
|
|
855
|
+
- lib/auth0/types/connection_id.rb
|
|
856
|
+
- lib/auth0/types/connection_id_token_encryption_alg_values_supported.rb
|
|
857
|
+
- lib/auth0/types/connection_id_token_encryption_enc_values_supported.rb
|
|
858
|
+
- lib/auth0/types/connection_id_token_signed_response_alg_enum.rb
|
|
859
|
+
- lib/auth0/types/connection_id_token_signed_response_algs.rb
|
|
860
|
+
- lib/auth0/types/connection_id_token_signing_alg_values_supported.rb
|
|
861
|
+
- lib/auth0/types/connection_identifier_precedence.rb
|
|
862
|
+
- lib/auth0/types/connection_identifier_precedence_enum.rb
|
|
863
|
+
- lib/auth0/types/connection_identity_api_azure_ad.rb
|
|
864
|
+
- lib/auth0/types/connection_identity_api_enum_azure_ad.rb
|
|
865
|
+
- lib/auth0/types/connection_identity_provider_enum.rb
|
|
866
|
+
- lib/auth0/types/connection_import_mode.rb
|
|
867
|
+
- lib/auth0/types/connection_ips_ad.rb
|
|
868
|
+
- lib/auth0/types/connection_is_domain_connection.rb
|
|
869
|
+
- lib/auth0/types/connection_issuer.rb
|
|
870
|
+
- lib/auth0/types/connection_jwks_uri.rb
|
|
871
|
+
- lib/auth0/types/connection_key.rb
|
|
872
|
+
- lib/auth0/types/connection_key_use_enum.rb
|
|
873
|
+
- lib/auth0/types/connection_mapping_mode_enum_oidc.rb
|
|
874
|
+
- lib/auth0/types/connection_mapping_mode_enum_okta.rb
|
|
875
|
+
- lib/auth0/types/connection_max_groups_to_retrieve.rb
|
|
876
|
+
- lib/auth0/types/connection_messaging_service_sid_sms.rb
|
|
877
|
+
- lib/auth0/types/connection_metadata_url_saml.rb
|
|
878
|
+
- lib/auth0/types/connection_metadata_xml.rb
|
|
879
|
+
- lib/auth0/types/connection_metadata_xml_adfs.rb
|
|
880
|
+
- lib/auth0/types/connection_metadata_xml_saml.rb
|
|
881
|
+
- lib/auth0/types/connection_mfa.rb
|
|
882
|
+
- lib/auth0/types/connection_name.rb
|
|
883
|
+
- lib/auth0/types/connection_name_prefix_template.rb
|
|
884
|
+
- lib/auth0/types/connection_non_persistent_attrs.rb
|
|
885
|
+
- lib/auth0/types/connection_op_policy_uri.rb
|
|
886
|
+
- lib/auth0/types/connection_op_tos_uri.rb
|
|
887
|
+
- lib/auth0/types/connection_options.rb
|
|
888
|
+
- lib/auth0/types/connection_options_ad.rb
|
|
889
|
+
- lib/auth0/types/connection_options_adfs.rb
|
|
890
|
+
- lib/auth0/types/connection_options_amazon.rb
|
|
891
|
+
- lib/auth0/types/connection_options_apple.rb
|
|
892
|
+
- lib/auth0/types/connection_options_auth0.rb
|
|
893
|
+
- lib/auth0/types/connection_options_auth0oidc.rb
|
|
894
|
+
- lib/auth0/types/connection_options_azure_ad.rb
|
|
895
|
+
- lib/auth0/types/connection_options_baidu.rb
|
|
896
|
+
- lib/auth0/types/connection_options_bitbucket.rb
|
|
897
|
+
- lib/auth0/types/connection_options_bitly.rb
|
|
898
|
+
- lib/auth0/types/connection_options_box.rb
|
|
899
|
+
- lib/auth0/types/connection_options_client_id_github.rb
|
|
900
|
+
- lib/auth0/types/connection_options_client_id_twitter.rb
|
|
901
|
+
- lib/auth0/types/connection_options_client_secret_github.rb
|
|
902
|
+
- lib/auth0/types/connection_options_client_secret_twitter.rb
|
|
903
|
+
- lib/auth0/types/connection_options_common.rb
|
|
904
|
+
- lib/auth0/types/connection_options_common_oidc.rb
|
|
905
|
+
- lib/auth0/types/connection_options_common_saml.rb
|
|
906
|
+
- lib/auth0/types/connection_options_custom.rb
|
|
907
|
+
- lib/auth0/types/connection_options_daccount.rb
|
|
908
|
+
- lib/auth0/types/connection_options_deflate_saml.rb
|
|
909
|
+
- lib/auth0/types/connection_options_dropbox.rb
|
|
910
|
+
- lib/auth0/types/connection_options_dwolla.rb
|
|
911
|
+
- lib/auth0/types/connection_options_email.rb
|
|
912
|
+
- lib/auth0/types/connection_options_evernote.rb
|
|
913
|
+
- lib/auth0/types/connection_options_exact.rb
|
|
914
|
+
- lib/auth0/types/connection_options_facebook.rb
|
|
915
|
+
- lib/auth0/types/connection_options_fitbit.rb
|
|
916
|
+
- lib/auth0/types/connection_options_freeform_scopes_github.rb
|
|
917
|
+
- lib/auth0/types/connection_options_git_hub.rb
|
|
918
|
+
- lib/auth0/types/connection_options_google_apps.rb
|
|
919
|
+
- lib/auth0/types/connection_options_google_o_auth2.rb
|
|
920
|
+
- lib/auth0/types/connection_options_idp_initiated_client_protocol_enum_saml.rb
|
|
921
|
+
- lib/auth0/types/connection_options_idpinitiated_saml.rb
|
|
922
|
+
- lib/auth0/types/connection_options_instagram.rb
|
|
923
|
+
- lib/auth0/types/connection_options_ip.rb
|
|
924
|
+
- lib/auth0/types/connection_options_line.rb
|
|
925
|
+
- lib/auth0/types/connection_options_linkedin.rb
|
|
926
|
+
- lib/auth0/types/connection_options_o_auth1.rb
|
|
927
|
+
- lib/auth0/types/connection_options_o_auth1common.rb
|
|
928
|
+
- lib/auth0/types/connection_options_o_auth2.rb
|
|
929
|
+
- lib/auth0/types/connection_options_o_auth2common.rb
|
|
930
|
+
- lib/auth0/types/connection_options_office365.rb
|
|
931
|
+
- lib/auth0/types/connection_options_oidc.rb
|
|
932
|
+
- lib/auth0/types/connection_options_oidc_metadata.rb
|
|
933
|
+
- lib/auth0/types/connection_options_okta.rb
|
|
934
|
+
- lib/auth0/types/connection_options_paypal.rb
|
|
935
|
+
- lib/auth0/types/connection_options_ping_federate.rb
|
|
936
|
+
- lib/auth0/types/connection_options_planning_center.rb
|
|
937
|
+
- lib/auth0/types/connection_options_protocol_enum_twitter.rb
|
|
938
|
+
- lib/auth0/types/connection_options_salesforce.rb
|
|
939
|
+
- lib/auth0/types/connection_options_salesforce_community.rb
|
|
940
|
+
- lib/auth0/types/connection_options_saml.rb
|
|
941
|
+
- lib/auth0/types/connection_options_scope_github.rb
|
|
942
|
+
- lib/auth0/types/connection_options_scope_twitter.rb
|
|
943
|
+
- lib/auth0/types/connection_options_sharepoint.rb
|
|
944
|
+
- lib/auth0/types/connection_options_shop.rb
|
|
945
|
+
- lib/auth0/types/connection_options_shopify.rb
|
|
946
|
+
- lib/auth0/types/connection_options_sms.rb
|
|
947
|
+
- lib/auth0/types/connection_options_soundcloud.rb
|
|
948
|
+
- lib/auth0/types/connection_options_thirty_seven_signals.rb
|
|
949
|
+
- lib/auth0/types/connection_options_twitter.rb
|
|
950
|
+
- lib/auth0/types/connection_options_untappd.rb
|
|
951
|
+
- lib/auth0/types/connection_options_vkontakte.rb
|
|
952
|
+
- lib/auth0/types/connection_options_weibo.rb
|
|
953
|
+
- lib/auth0/types/connection_options_windows_live.rb
|
|
954
|
+
- lib/auth0/types/connection_options_wordpress.rb
|
|
955
|
+
- lib/auth0/types/connection_options_yahoo.rb
|
|
956
|
+
- lib/auth0/types/connection_options_yandex.rb
|
|
957
|
+
- lib/auth0/types/connection_passkey_authentication_method.rb
|
|
958
|
+
- lib/auth0/types/connection_passkey_challenge_ui_enum.rb
|
|
959
|
+
- lib/auth0/types/connection_passkey_options.rb
|
|
960
|
+
- lib/auth0/types/connection_password_authentication_method.rb
|
|
961
|
+
- lib/auth0/types/connection_password_complexity_options.rb
|
|
962
|
+
- lib/auth0/types/connection_password_dictionary_options.rb
|
|
963
|
+
- lib/auth0/types/connection_password_history_options.rb
|
|
964
|
+
- lib/auth0/types/connection_password_no_personal_info_options.rb
|
|
965
|
+
- lib/auth0/types/connection_password_options.rb
|
|
966
|
+
- lib/auth0/types/connection_password_options_complexity.rb
|
|
967
|
+
- lib/auth0/types/connection_password_options_dictionary.rb
|
|
968
|
+
- lib/auth0/types/connection_password_options_history.rb
|
|
969
|
+
- lib/auth0/types/connection_password_options_profile_data.rb
|
|
970
|
+
- lib/auth0/types/connection_password_policy_enum.rb
|
|
971
|
+
- lib/auth0/types/connection_phone_otp_authentication_method.rb
|
|
972
|
+
- lib/auth0/types/connection_ping_federate_base_url.rb
|
|
973
|
+
- lib/auth0/types/connection_ping_federate_base_url_ping_federate.rb
|
|
974
|
+
- lib/auth0/types/connection_profile.rb
|
|
975
|
+
- lib/auth0/types/connection_profile_bitbucket.rb
|
|
976
|
+
- lib/auth0/types/connection_profile_config.rb
|
|
977
|
+
- lib/auth0/types/connection_profile_enabled_features.rb
|
|
978
|
+
- lib/auth0/types/connection_profile_id.rb
|
|
979
|
+
- lib/auth0/types/connection_profile_name.rb
|
|
980
|
+
- lib/auth0/types/connection_profile_organization.rb
|
|
981
|
+
- lib/auth0/types/connection_profile_organization_assign_membership_on_login_enum.rb
|
|
982
|
+
- lib/auth0/types/connection_profile_organization_show_as_button_enum.rb
|
|
983
|
+
- lib/auth0/types/connection_profile_strategy_override.rb
|
|
984
|
+
- lib/auth0/types/connection_profile_strategy_overrides.rb
|
|
985
|
+
- lib/auth0/types/connection_profile_strategy_overrides_connection_config.rb
|
|
986
|
+
- lib/auth0/types/connection_profile_strategy_overrides_enabled_features.rb
|
|
987
|
+
- lib/auth0/types/connection_profile_template.rb
|
|
988
|
+
- lib/auth0/types/connection_profile_template_item.rb
|
|
989
|
+
- lib/auth0/types/connection_properties_options.rb
|
|
990
|
+
- lib/auth0/types/connection_protocol_binding_enum_saml.rb
|
|
991
|
+
- lib/auth0/types/connection_protocol_binding_saml.rb
|
|
992
|
+
- lib/auth0/types/connection_provider_enum_sms.rb
|
|
993
|
+
- lib/auth0/types/connection_provider_sms.rb
|
|
994
|
+
- lib/auth0/types/connection_provisioning_ticket_url.rb
|
|
995
|
+
- lib/auth0/types/connection_purposes.rb
|
|
996
|
+
- lib/auth0/types/connection_realm_fallback.rb
|
|
997
|
+
- lib/auth0/types/connection_realms.rb
|
|
998
|
+
- lib/auth0/types/connection_recipient_url_saml.rb
|
|
999
|
+
- lib/auth0/types/connection_registration_endpoint.rb
|
|
1000
|
+
- lib/auth0/types/connection_request_object_encryption_alg_values_supported.rb
|
|
1001
|
+
- lib/auth0/types/connection_request_object_encryption_enc_values_supported.rb
|
|
1002
|
+
- lib/auth0/types/connection_request_object_signing_alg_values_supported.rb
|
|
1003
|
+
- lib/auth0/types/connection_request_parameter_supported.rb
|
|
1004
|
+
- lib/auth0/types/connection_request_template_saml.rb
|
|
1005
|
+
- lib/auth0/types/connection_request_token_urlo_auth1.rb
|
|
1006
|
+
- lib/auth0/types/connection_request_uri_parameter_supported.rb
|
|
1007
|
+
- lib/auth0/types/connection_require_request_uri_registration.rb
|
|
1008
|
+
- lib/auth0/types/connection_requires_username.rb
|
|
1009
|
+
- lib/auth0/types/connection_response_common.rb
|
|
1010
|
+
- lib/auth0/types/connection_response_content_ad.rb
|
|
1011
|
+
- lib/auth0/types/connection_response_content_ad_strategy.rb
|
|
1012
|
+
- lib/auth0/types/connection_response_content_adfs.rb
|
|
1013
|
+
- lib/auth0/types/connection_response_content_adfs_strategy.rb
|
|
1014
|
+
- lib/auth0/types/connection_response_content_amazon.rb
|
|
1015
|
+
- lib/auth0/types/connection_response_content_amazon_strategy.rb
|
|
1016
|
+
- lib/auth0/types/connection_response_content_apple.rb
|
|
1017
|
+
- lib/auth0/types/connection_response_content_apple_strategy.rb
|
|
1018
|
+
- lib/auth0/types/connection_response_content_auth0.rb
|
|
1019
|
+
- lib/auth0/types/connection_response_content_auth0oidc.rb
|
|
1020
|
+
- lib/auth0/types/connection_response_content_auth0oidc_strategy.rb
|
|
1021
|
+
- lib/auth0/types/connection_response_content_auth0strategy.rb
|
|
1022
|
+
- lib/auth0/types/connection_response_content_azure_ad.rb
|
|
1023
|
+
- lib/auth0/types/connection_response_content_azure_ad_strategy.rb
|
|
1024
|
+
- lib/auth0/types/connection_response_content_baidu.rb
|
|
1025
|
+
- lib/auth0/types/connection_response_content_baidu_strategy.rb
|
|
1026
|
+
- lib/auth0/types/connection_response_content_bitbucket.rb
|
|
1027
|
+
- lib/auth0/types/connection_response_content_bitbucket_strategy.rb
|
|
1028
|
+
- lib/auth0/types/connection_response_content_bitly.rb
|
|
1029
|
+
- lib/auth0/types/connection_response_content_bitly_strategy.rb
|
|
1030
|
+
- lib/auth0/types/connection_response_content_box.rb
|
|
1031
|
+
- lib/auth0/types/connection_response_content_box_strategy.rb
|
|
1032
|
+
- lib/auth0/types/connection_response_content_custom.rb
|
|
1033
|
+
- lib/auth0/types/connection_response_content_custom_strategy.rb
|
|
1034
|
+
- lib/auth0/types/connection_response_content_daccount.rb
|
|
1035
|
+
- lib/auth0/types/connection_response_content_daccount_strategy.rb
|
|
1036
|
+
- lib/auth0/types/connection_response_content_dropbox.rb
|
|
1037
|
+
- lib/auth0/types/connection_response_content_dropbox_strategy.rb
|
|
1038
|
+
- lib/auth0/types/connection_response_content_dwolla.rb
|
|
1039
|
+
- lib/auth0/types/connection_response_content_dwolla_strategy.rb
|
|
1040
|
+
- lib/auth0/types/connection_response_content_email.rb
|
|
1041
|
+
- lib/auth0/types/connection_response_content_email_strategy.rb
|
|
1042
|
+
- lib/auth0/types/connection_response_content_evernote.rb
|
|
1043
|
+
- lib/auth0/types/connection_response_content_evernote_sandbox.rb
|
|
1044
|
+
- lib/auth0/types/connection_response_content_evernote_sandbox_strategy.rb
|
|
1045
|
+
- lib/auth0/types/connection_response_content_evernote_strategy.rb
|
|
1046
|
+
- lib/auth0/types/connection_response_content_exact.rb
|
|
1047
|
+
- lib/auth0/types/connection_response_content_exact_strategy.rb
|
|
1048
|
+
- lib/auth0/types/connection_response_content_facebook.rb
|
|
1049
|
+
- lib/auth0/types/connection_response_content_facebook_strategy.rb
|
|
1050
|
+
- lib/auth0/types/connection_response_content_fitbit.rb
|
|
1051
|
+
- lib/auth0/types/connection_response_content_fitbit_strategy.rb
|
|
1052
|
+
- lib/auth0/types/connection_response_content_git_hub.rb
|
|
1053
|
+
- lib/auth0/types/connection_response_content_git_hub_strategy.rb
|
|
1054
|
+
- lib/auth0/types/connection_response_content_google_apps.rb
|
|
1055
|
+
- lib/auth0/types/connection_response_content_google_apps_strategy.rb
|
|
1056
|
+
- lib/auth0/types/connection_response_content_google_o_auth2.rb
|
|
1057
|
+
- lib/auth0/types/connection_response_content_google_o_auth2strategy.rb
|
|
1058
|
+
- lib/auth0/types/connection_response_content_instagram.rb
|
|
1059
|
+
- lib/auth0/types/connection_response_content_instagram_strategy.rb
|
|
1060
|
+
- lib/auth0/types/connection_response_content_ip.rb
|
|
1061
|
+
- lib/auth0/types/connection_response_content_ip_strategy.rb
|
|
1062
|
+
- lib/auth0/types/connection_response_content_line.rb
|
|
1063
|
+
- lib/auth0/types/connection_response_content_line_strategy.rb
|
|
1064
|
+
- lib/auth0/types/connection_response_content_linkedin.rb
|
|
1065
|
+
- lib/auth0/types/connection_response_content_linkedin_strategy.rb
|
|
1066
|
+
- lib/auth0/types/connection_response_content_o_auth1.rb
|
|
1067
|
+
- lib/auth0/types/connection_response_content_o_auth1strategy.rb
|
|
1068
|
+
- lib/auth0/types/connection_response_content_o_auth2.rb
|
|
1069
|
+
- lib/auth0/types/connection_response_content_o_auth2strategy.rb
|
|
1070
|
+
- lib/auth0/types/connection_response_content_office365.rb
|
|
1071
|
+
- lib/auth0/types/connection_response_content_office365strategy.rb
|
|
1072
|
+
- lib/auth0/types/connection_response_content_oidc.rb
|
|
1073
|
+
- lib/auth0/types/connection_response_content_oidc_strategy.rb
|
|
1074
|
+
- lib/auth0/types/connection_response_content_okta.rb
|
|
1075
|
+
- lib/auth0/types/connection_response_content_okta_strategy.rb
|
|
1076
|
+
- lib/auth0/types/connection_response_content_paypal.rb
|
|
1077
|
+
- lib/auth0/types/connection_response_content_paypal_sandbox.rb
|
|
1078
|
+
- lib/auth0/types/connection_response_content_paypal_sandbox_strategy.rb
|
|
1079
|
+
- lib/auth0/types/connection_response_content_paypal_strategy.rb
|
|
1080
|
+
- lib/auth0/types/connection_response_content_ping_federate.rb
|
|
1081
|
+
- lib/auth0/types/connection_response_content_ping_federate_strategy.rb
|
|
1082
|
+
- lib/auth0/types/connection_response_content_planning_center.rb
|
|
1083
|
+
- lib/auth0/types/connection_response_content_planning_center_strategy.rb
|
|
1084
|
+
- lib/auth0/types/connection_response_content_salesforce.rb
|
|
1085
|
+
- lib/auth0/types/connection_response_content_salesforce_community.rb
|
|
1086
|
+
- lib/auth0/types/connection_response_content_salesforce_community_strategy.rb
|
|
1087
|
+
- lib/auth0/types/connection_response_content_salesforce_sandbox.rb
|
|
1088
|
+
- lib/auth0/types/connection_response_content_salesforce_sandbox_strategy.rb
|
|
1089
|
+
- lib/auth0/types/connection_response_content_salesforce_strategy.rb
|
|
1090
|
+
- lib/auth0/types/connection_response_content_saml.rb
|
|
1091
|
+
- lib/auth0/types/connection_response_content_saml_strategy.rb
|
|
1092
|
+
- lib/auth0/types/connection_response_content_sharepoint.rb
|
|
1093
|
+
- lib/auth0/types/connection_response_content_sharepoint_strategy.rb
|
|
1094
|
+
- lib/auth0/types/connection_response_content_shop.rb
|
|
1095
|
+
- lib/auth0/types/connection_response_content_shop_strategy.rb
|
|
1096
|
+
- lib/auth0/types/connection_response_content_shopify.rb
|
|
1097
|
+
- lib/auth0/types/connection_response_content_shopify_strategy.rb
|
|
1098
|
+
- lib/auth0/types/connection_response_content_sms.rb
|
|
1099
|
+
- lib/auth0/types/connection_response_content_sms_strategy.rb
|
|
1100
|
+
- lib/auth0/types/connection_response_content_soundcloud.rb
|
|
1101
|
+
- lib/auth0/types/connection_response_content_soundcloud_strategy.rb
|
|
1102
|
+
- lib/auth0/types/connection_response_content_thirty_seven_signals.rb
|
|
1103
|
+
- lib/auth0/types/connection_response_content_thirty_seven_signals_strategy.rb
|
|
1104
|
+
- lib/auth0/types/connection_response_content_twitter.rb
|
|
1105
|
+
- lib/auth0/types/connection_response_content_twitter_strategy.rb
|
|
1106
|
+
- lib/auth0/types/connection_response_content_untappd.rb
|
|
1107
|
+
- lib/auth0/types/connection_response_content_untappd_strategy.rb
|
|
1108
|
+
- lib/auth0/types/connection_response_content_vkontakte.rb
|
|
1109
|
+
- lib/auth0/types/connection_response_content_vkontakte_strategy.rb
|
|
1110
|
+
- lib/auth0/types/connection_response_content_weibo.rb
|
|
1111
|
+
- lib/auth0/types/connection_response_content_weibo_strategy.rb
|
|
1112
|
+
- lib/auth0/types/connection_response_content_windows_live.rb
|
|
1113
|
+
- lib/auth0/types/connection_response_content_windows_live_strategy.rb
|
|
1114
|
+
- lib/auth0/types/connection_response_content_wordpress.rb
|
|
1115
|
+
- lib/auth0/types/connection_response_content_wordpress_strategy.rb
|
|
1116
|
+
- lib/auth0/types/connection_response_content_yahoo.rb
|
|
1117
|
+
- lib/auth0/types/connection_response_content_yahoo_strategy.rb
|
|
1118
|
+
- lib/auth0/types/connection_response_content_yandex.rb
|
|
1119
|
+
- lib/auth0/types/connection_response_content_yandex_strategy.rb
|
|
1120
|
+
- lib/auth0/types/connection_response_modes_supported.rb
|
|
1121
|
+
- lib/auth0/types/connection_response_types_supported.rb
|
|
1122
|
+
- lib/auth0/types/connection_scope_amazon.rb
|
|
1123
|
+
- lib/auth0/types/connection_scope_array.rb
|
|
1124
|
+
- lib/auth0/types/connection_scope_array_facebook.rb
|
|
1125
|
+
- lib/auth0/types/connection_scope_array_windows_live.rb
|
|
1126
|
+
- lib/auth0/types/connection_scope_azure_ad.rb
|
|
1127
|
+
- lib/auth0/types/connection_scope_facebook.rb
|
|
1128
|
+
- lib/auth0/types/connection_scope_google_apps.rb
|
|
1129
|
+
- lib/auth0/types/connection_scope_google_o_auth2.rb
|
|
1130
|
+
- lib/auth0/types/connection_scope_item.rb
|
|
1131
|
+
- lib/auth0/types/connection_scope_item_google_apps.rb
|
|
1132
|
+
- lib/auth0/types/connection_scope_linkedin.rb
|
|
1133
|
+
- lib/auth0/types/connection_scope_o_auth2.rb
|
|
1134
|
+
- lib/auth0/types/connection_scope_oidc.rb
|
|
1135
|
+
- lib/auth0/types/connection_scope_paypal.rb
|
|
1136
|
+
- lib/auth0/types/connection_scope_salesforce.rb
|
|
1137
|
+
- lib/auth0/types/connection_scopes_supported.rb
|
|
1138
|
+
- lib/auth0/types/connection_scripts_o_auth1.rb
|
|
1139
|
+
- lib/auth0/types/connection_scripts_o_auth2.rb
|
|
1140
|
+
- lib/auth0/types/connection_send_back_channel_nonce.rb
|
|
1141
|
+
- lib/auth0/types/connection_service_documentation.rb
|
|
1142
|
+
- lib/auth0/types/connection_set_user_root_attributes_enum.rb
|
|
1143
|
+
- lib/auth0/types/connection_sha1thumbprint.rb
|
|
1144
|
+
- lib/auth0/types/connection_should_trust_email_verified_connection_enum.rb
|
|
1145
|
+
- lib/auth0/types/connection_show_as_button.rb
|
|
1146
|
+
- lib/auth0/types/connection_sign_in_endpoint_ad.rb
|
|
1147
|
+
- lib/auth0/types/connection_sign_in_endpoint_adfs.rb
|
|
1148
|
+
- lib/auth0/types/connection_sign_in_endpoint_saml.rb
|
|
1149
|
+
- lib/auth0/types/connection_sign_out_endpoint_saml.rb
|
|
1150
|
+
- lib/auth0/types/connection_sign_saml_request_saml.rb
|
|
1151
|
+
- lib/auth0/types/connection_signature_algorithm_enum_saml.rb
|
|
1152
|
+
- lib/auth0/types/connection_signature_algorithm_saml.rb
|
|
1153
|
+
- lib/auth0/types/connection_signature_method_o_auth1.rb
|
|
1154
|
+
- lib/auth0/types/connection_signing_cert_saml.rb
|
|
1155
|
+
- lib/auth0/types/connection_signing_certificate_der_saml.rb
|
|
1156
|
+
- lib/auth0/types/connection_signing_certificate_pem_ping_federate.rb
|
|
1157
|
+
- lib/auth0/types/connection_signing_certificate_pem_saml.rb
|
|
1158
|
+
- lib/auth0/types/connection_signing_key_saml.rb
|
|
1159
|
+
- lib/auth0/types/connection_signup_behavior_enum.rb
|
|
1160
|
+
- lib/auth0/types/connection_strategy_enum.rb
|
|
1161
|
+
- lib/auth0/types/connection_strategy_version_enum_linkedin.rb
|
|
1162
|
+
- lib/auth0/types/connection_strategy_version_enum_windows_live.rb
|
|
1163
|
+
- lib/auth0/types/connection_subject_types_supported.rb
|
|
1164
|
+
- lib/auth0/types/connection_template_sms.rb
|
|
1165
|
+
- lib/auth0/types/connection_template_syntax_enum_sms.rb
|
|
1166
|
+
- lib/auth0/types/connection_tenant_domain.rb
|
|
1167
|
+
- lib/auth0/types/connection_tenant_domain_ad.rb
|
|
1168
|
+
- lib/auth0/types/connection_tenant_domain_azure_ad_one.rb
|
|
1169
|
+
- lib/auth0/types/connection_tenant_domain_google_apps.rb
|
|
1170
|
+
- lib/auth0/types/connection_tenant_domain_saml.rb
|
|
1171
|
+
- lib/auth0/types/connection_tenant_id_azure_ad.rb
|
|
1172
|
+
- lib/auth0/types/connection_thumbprints.rb
|
|
1173
|
+
- lib/auth0/types/connection_thumbprints_ad.rb
|
|
1174
|
+
- lib/auth0/types/connection_thumbprints_saml.rb
|
|
1175
|
+
- lib/auth0/types/connection_token_endpoint.rb
|
|
1176
|
+
- lib/auth0/types/connection_token_endpoint_auth_method_enum.rb
|
|
1177
|
+
- lib/auth0/types/connection_token_endpoint_auth_methods_supported.rb
|
|
1178
|
+
- lib/auth0/types/connection_token_endpoint_auth_signing_alg_enum.rb
|
|
1179
|
+
- lib/auth0/types/connection_token_endpoint_auth_signing_alg_values_supported.rb
|
|
1180
|
+
- lib/auth0/types/connection_totp_email.rb
|
|
1181
|
+
- lib/auth0/types/connection_totp_length_email.rb
|
|
1182
|
+
- lib/auth0/types/connection_totp_length_passwordless.rb
|
|
1183
|
+
- lib/auth0/types/connection_totp_length_sms.rb
|
|
1184
|
+
- lib/auth0/types/connection_totp_sms.rb
|
|
1185
|
+
- lib/auth0/types/connection_totp_time_step_email.rb
|
|
1186
|
+
- lib/auth0/types/connection_totp_time_step_passwordless.rb
|
|
1187
|
+
- lib/auth0/types/connection_totp_time_step_sms.rb
|
|
1188
|
+
- lib/auth0/types/connection_twilio_sid_sms.rb
|
|
1189
|
+
- lib/auth0/types/connection_twilio_token_sms.rb
|
|
1190
|
+
- lib/auth0/types/connection_type_enum_oidc.rb
|
|
1191
|
+
- lib/auth0/types/connection_type_enum_okta.rb
|
|
1192
|
+
- lib/auth0/types/connection_ui_locales_supported.rb
|
|
1193
|
+
- lib/auth0/types/connection_upstream_additional_properties.rb
|
|
1194
|
+
- lib/auth0/types/connection_upstream_alias.rb
|
|
1195
|
+
- lib/auth0/types/connection_upstream_alias_enum.rb
|
|
1196
|
+
- lib/auth0/types/connection_upstream_params.rb
|
|
1197
|
+
- lib/auth0/types/connection_upstream_params_facebook.rb
|
|
1198
|
+
- lib/auth0/types/connection_upstream_value.rb
|
|
1199
|
+
- lib/auth0/types/connection_use_common_endpoint_azure_ad.rb
|
|
1200
|
+
- lib/auth0/types/connection_user_authorization_urlo_auth1.rb
|
|
1201
|
+
- lib/auth0/types/connection_user_id_attribute_saml.rb
|
|
1202
|
+
- lib/auth0/types/connection_userid_attribute_azure_ad.rb
|
|
1203
|
+
- lib/auth0/types/connection_userid_attribute_enum_azure_ad.rb
|
|
1204
|
+
- lib/auth0/types/connection_userinfo_encryption_alg_values_supported.rb
|
|
1205
|
+
- lib/auth0/types/connection_userinfo_encryption_enc_values_supported.rb
|
|
1206
|
+
- lib/auth0/types/connection_userinfo_endpoint.rb
|
|
1207
|
+
- lib/auth0/types/connection_userinfo_signing_alg_values_supported.rb
|
|
1208
|
+
- lib/auth0/types/connection_username_validation_options.rb
|
|
1209
|
+
- lib/auth0/types/connection_validation_options.rb
|
|
1210
|
+
- lib/auth0/types/connection_waad_protocol.rb
|
|
1211
|
+
- lib/auth0/types/connection_waad_protocol_enum_azure_ad.rb
|
|
1212
|
+
- lib/auth0/types/connections_metadata.rb
|
|
1213
|
+
- lib/auth0/types/create_action_module_response_content.rb
|
|
1214
|
+
- lib/auth0/types/create_action_module_version_response_content.rb
|
|
1215
|
+
- lib/auth0/types/create_action_response_content.rb
|
|
1216
|
+
- lib/auth0/types/create_branding_phone_provider_response_content.rb
|
|
1217
|
+
- lib/auth0/types/create_branding_theme_response_content.rb
|
|
1218
|
+
- lib/auth0/types/create_client_authentication_method_self_signed_tls_client_auth.rb
|
|
1219
|
+
- lib/auth0/types/create_client_authentication_method_self_signed_tls_client_auth_credentials.rb
|
|
1220
|
+
- lib/auth0/types/create_client_grant_response_content.rb
|
|
1221
|
+
- lib/auth0/types/create_client_response_content.rb
|
|
1222
|
+
- lib/auth0/types/create_connection_common.rb
|
|
1223
|
+
- lib/auth0/types/create_connection_profile_response_content.rb
|
|
1224
|
+
- lib/auth0/types/create_connection_request_content_ad.rb
|
|
1225
|
+
- lib/auth0/types/create_connection_request_content_ad_strategy.rb
|
|
1226
|
+
- lib/auth0/types/create_connection_request_content_adfs.rb
|
|
1227
|
+
- lib/auth0/types/create_connection_request_content_adfs_strategy.rb
|
|
1228
|
+
- lib/auth0/types/create_connection_request_content_amazon.rb
|
|
1229
|
+
- lib/auth0/types/create_connection_request_content_amazon_strategy.rb
|
|
1230
|
+
- lib/auth0/types/create_connection_request_content_apple.rb
|
|
1231
|
+
- lib/auth0/types/create_connection_request_content_apple_strategy.rb
|
|
1232
|
+
- lib/auth0/types/create_connection_request_content_auth0.rb
|
|
1233
|
+
- lib/auth0/types/create_connection_request_content_auth0oidc.rb
|
|
1234
|
+
- lib/auth0/types/create_connection_request_content_auth0oidc_strategy.rb
|
|
1235
|
+
- lib/auth0/types/create_connection_request_content_auth0strategy.rb
|
|
1236
|
+
- lib/auth0/types/create_connection_request_content_azure_ad.rb
|
|
1237
|
+
- lib/auth0/types/create_connection_request_content_azure_ad_strategy.rb
|
|
1238
|
+
- lib/auth0/types/create_connection_request_content_baidu.rb
|
|
1239
|
+
- lib/auth0/types/create_connection_request_content_baidu_strategy.rb
|
|
1240
|
+
- lib/auth0/types/create_connection_request_content_bitbucket.rb
|
|
1241
|
+
- lib/auth0/types/create_connection_request_content_bitbucket_strategy.rb
|
|
1242
|
+
- lib/auth0/types/create_connection_request_content_bitly.rb
|
|
1243
|
+
- lib/auth0/types/create_connection_request_content_bitly_strategy.rb
|
|
1244
|
+
- lib/auth0/types/create_connection_request_content_box.rb
|
|
1245
|
+
- lib/auth0/types/create_connection_request_content_box_strategy.rb
|
|
1246
|
+
- lib/auth0/types/create_connection_request_content_custom.rb
|
|
1247
|
+
- lib/auth0/types/create_connection_request_content_custom_strategy.rb
|
|
1248
|
+
- lib/auth0/types/create_connection_request_content_daccount.rb
|
|
1249
|
+
- lib/auth0/types/create_connection_request_content_daccount_strategy.rb
|
|
1250
|
+
- lib/auth0/types/create_connection_request_content_dropbox.rb
|
|
1251
|
+
- lib/auth0/types/create_connection_request_content_dropbox_strategy.rb
|
|
1252
|
+
- lib/auth0/types/create_connection_request_content_dwolla.rb
|
|
1253
|
+
- lib/auth0/types/create_connection_request_content_dwolla_strategy.rb
|
|
1254
|
+
- lib/auth0/types/create_connection_request_content_email.rb
|
|
1255
|
+
- lib/auth0/types/create_connection_request_content_email_strategy.rb
|
|
1256
|
+
- lib/auth0/types/create_connection_request_content_evernote.rb
|
|
1257
|
+
- lib/auth0/types/create_connection_request_content_evernote_sandbox.rb
|
|
1258
|
+
- lib/auth0/types/create_connection_request_content_evernote_sandbox_strategy.rb
|
|
1259
|
+
- lib/auth0/types/create_connection_request_content_evernote_strategy.rb
|
|
1260
|
+
- lib/auth0/types/create_connection_request_content_exact.rb
|
|
1261
|
+
- lib/auth0/types/create_connection_request_content_exact_strategy.rb
|
|
1262
|
+
- lib/auth0/types/create_connection_request_content_facebook.rb
|
|
1263
|
+
- lib/auth0/types/create_connection_request_content_facebook_strategy.rb
|
|
1264
|
+
- lib/auth0/types/create_connection_request_content_fitbit.rb
|
|
1265
|
+
- lib/auth0/types/create_connection_request_content_fitbit_strategy.rb
|
|
1266
|
+
- lib/auth0/types/create_connection_request_content_git_hub.rb
|
|
1267
|
+
- lib/auth0/types/create_connection_request_content_git_hub_strategy.rb
|
|
1268
|
+
- lib/auth0/types/create_connection_request_content_google_apps.rb
|
|
1269
|
+
- lib/auth0/types/create_connection_request_content_google_apps_strategy.rb
|
|
1270
|
+
- lib/auth0/types/create_connection_request_content_google_o_auth2.rb
|
|
1271
|
+
- lib/auth0/types/create_connection_request_content_google_o_auth2strategy.rb
|
|
1272
|
+
- lib/auth0/types/create_connection_request_content_instagram.rb
|
|
1273
|
+
- lib/auth0/types/create_connection_request_content_instagram_strategy.rb
|
|
1274
|
+
- lib/auth0/types/create_connection_request_content_ip.rb
|
|
1275
|
+
- lib/auth0/types/create_connection_request_content_ip_strategy.rb
|
|
1276
|
+
- lib/auth0/types/create_connection_request_content_line.rb
|
|
1277
|
+
- lib/auth0/types/create_connection_request_content_line_strategy.rb
|
|
1278
|
+
- lib/auth0/types/create_connection_request_content_linkedin.rb
|
|
1279
|
+
- lib/auth0/types/create_connection_request_content_linkedin_strategy.rb
|
|
1280
|
+
- lib/auth0/types/create_connection_request_content_o_auth1.rb
|
|
1281
|
+
- lib/auth0/types/create_connection_request_content_o_auth1strategy.rb
|
|
1282
|
+
- lib/auth0/types/create_connection_request_content_o_auth2.rb
|
|
1283
|
+
- lib/auth0/types/create_connection_request_content_o_auth2strategy.rb
|
|
1284
|
+
- lib/auth0/types/create_connection_request_content_office365.rb
|
|
1285
|
+
- lib/auth0/types/create_connection_request_content_office365strategy.rb
|
|
1286
|
+
- lib/auth0/types/create_connection_request_content_oidc.rb
|
|
1287
|
+
- lib/auth0/types/create_connection_request_content_oidc_strategy.rb
|
|
1288
|
+
- lib/auth0/types/create_connection_request_content_okta.rb
|
|
1289
|
+
- lib/auth0/types/create_connection_request_content_okta_strategy.rb
|
|
1290
|
+
- lib/auth0/types/create_connection_request_content_paypal.rb
|
|
1291
|
+
- lib/auth0/types/create_connection_request_content_paypal_sandbox.rb
|
|
1292
|
+
- lib/auth0/types/create_connection_request_content_paypal_sandbox_strategy.rb
|
|
1293
|
+
- lib/auth0/types/create_connection_request_content_paypal_strategy.rb
|
|
1294
|
+
- lib/auth0/types/create_connection_request_content_ping_federate.rb
|
|
1295
|
+
- lib/auth0/types/create_connection_request_content_ping_federate_strategy.rb
|
|
1296
|
+
- lib/auth0/types/create_connection_request_content_planning_center.rb
|
|
1297
|
+
- lib/auth0/types/create_connection_request_content_planning_center_strategy.rb
|
|
1298
|
+
- lib/auth0/types/create_connection_request_content_salesforce.rb
|
|
1299
|
+
- lib/auth0/types/create_connection_request_content_salesforce_community.rb
|
|
1300
|
+
- lib/auth0/types/create_connection_request_content_salesforce_community_strategy.rb
|
|
1301
|
+
- lib/auth0/types/create_connection_request_content_salesforce_sandbox.rb
|
|
1302
|
+
- lib/auth0/types/create_connection_request_content_salesforce_sandbox_strategy.rb
|
|
1303
|
+
- lib/auth0/types/create_connection_request_content_salesforce_strategy.rb
|
|
1304
|
+
- lib/auth0/types/create_connection_request_content_saml.rb
|
|
1305
|
+
- lib/auth0/types/create_connection_request_content_saml_strategy.rb
|
|
1306
|
+
- lib/auth0/types/create_connection_request_content_sharepoint.rb
|
|
1307
|
+
- lib/auth0/types/create_connection_request_content_sharepoint_strategy.rb
|
|
1308
|
+
- lib/auth0/types/create_connection_request_content_shop.rb
|
|
1309
|
+
- lib/auth0/types/create_connection_request_content_shop_strategy.rb
|
|
1310
|
+
- lib/auth0/types/create_connection_request_content_shopify.rb
|
|
1311
|
+
- lib/auth0/types/create_connection_request_content_shopify_strategy.rb
|
|
1312
|
+
- lib/auth0/types/create_connection_request_content_sms.rb
|
|
1313
|
+
- lib/auth0/types/create_connection_request_content_sms_strategy.rb
|
|
1314
|
+
- lib/auth0/types/create_connection_request_content_soundcloud.rb
|
|
1315
|
+
- lib/auth0/types/create_connection_request_content_soundcloud_strategy.rb
|
|
1316
|
+
- lib/auth0/types/create_connection_request_content_thirty_seven_signals.rb
|
|
1317
|
+
- lib/auth0/types/create_connection_request_content_thirty_seven_signals_strategy.rb
|
|
1318
|
+
- lib/auth0/types/create_connection_request_content_twitter.rb
|
|
1319
|
+
- lib/auth0/types/create_connection_request_content_twitter_strategy.rb
|
|
1320
|
+
- lib/auth0/types/create_connection_request_content_untappd.rb
|
|
1321
|
+
- lib/auth0/types/create_connection_request_content_untappd_strategy.rb
|
|
1322
|
+
- lib/auth0/types/create_connection_request_content_vkontakte.rb
|
|
1323
|
+
- lib/auth0/types/create_connection_request_content_vkontakte_strategy.rb
|
|
1324
|
+
- lib/auth0/types/create_connection_request_content_weibo.rb
|
|
1325
|
+
- lib/auth0/types/create_connection_request_content_weibo_strategy.rb
|
|
1326
|
+
- lib/auth0/types/create_connection_request_content_windows_live.rb
|
|
1327
|
+
- lib/auth0/types/create_connection_request_content_windows_live_strategy.rb
|
|
1328
|
+
- lib/auth0/types/create_connection_request_content_wordpress.rb
|
|
1329
|
+
- lib/auth0/types/create_connection_request_content_wordpress_strategy.rb
|
|
1330
|
+
- lib/auth0/types/create_connection_request_content_yahoo.rb
|
|
1331
|
+
- lib/auth0/types/create_connection_request_content_yahoo_strategy.rb
|
|
1332
|
+
- lib/auth0/types/create_connection_request_content_yandex.rb
|
|
1333
|
+
- lib/auth0/types/create_connection_request_content_yandex_strategy.rb
|
|
1334
|
+
- lib/auth0/types/create_connection_response_content.rb
|
|
1335
|
+
- lib/auth0/types/create_custom_domain_response_content.rb
|
|
1336
|
+
- lib/auth0/types/create_directory_provisioning_request_content.rb
|
|
1337
|
+
- lib/auth0/types/create_directory_provisioning_response_content.rb
|
|
1338
|
+
- lib/auth0/types/create_directory_synchronization_response_content.rb
|
|
1339
|
+
- lib/auth0/types/create_email_provider_response_content.rb
|
|
1340
|
+
- lib/auth0/types/create_email_template_response_content.rb
|
|
1341
|
+
- lib/auth0/types/create_encryption_key_public_wrapping_response_content.rb
|
|
1342
|
+
- lib/auth0/types/create_encryption_key_response_content.rb
|
|
1343
|
+
- lib/auth0/types/create_encryption_key_type.rb
|
|
1344
|
+
- lib/auth0/types/create_event_stream_action_request_content.rb
|
|
1345
|
+
- lib/auth0/types/create_event_stream_event_bridge_request_content.rb
|
|
1346
|
+
- lib/auth0/types/create_event_stream_redelivery_response_content.rb
|
|
1347
|
+
- lib/auth0/types/create_event_stream_response_content.rb
|
|
1348
|
+
- lib/auth0/types/create_event_stream_test_event_response_content.rb
|
|
1349
|
+
- lib/auth0/types/create_event_stream_web_hook_request_content.rb
|
|
1350
|
+
- lib/auth0/types/create_export_users_fields.rb
|
|
1351
|
+
- lib/auth0/types/create_export_users_response_content.rb
|
|
1352
|
+
- lib/auth0/types/create_flow_response_content.rb
|
|
1353
|
+
- lib/auth0/types/create_flows_vault_connection_activecampaign.rb
|
|
1354
|
+
- lib/auth0/types/create_flows_vault_connection_activecampaign_api_key.rb
|
|
1355
|
+
- lib/auth0/types/create_flows_vault_connection_activecampaign_uninitialized.rb
|
|
1356
|
+
- lib/auth0/types/create_flows_vault_connection_airtable.rb
|
|
1357
|
+
- lib/auth0/types/create_flows_vault_connection_airtable_api_key.rb
|
|
1358
|
+
- lib/auth0/types/create_flows_vault_connection_airtable_uninitialized.rb
|
|
1359
|
+
- lib/auth0/types/create_flows_vault_connection_auth0.rb
|
|
1360
|
+
- lib/auth0/types/create_flows_vault_connection_auth0oauth_app.rb
|
|
1361
|
+
- lib/auth0/types/create_flows_vault_connection_auth0uninitialized.rb
|
|
1362
|
+
- lib/auth0/types/create_flows_vault_connection_bigquery.rb
|
|
1363
|
+
- lib/auth0/types/create_flows_vault_connection_bigquery_jwt.rb
|
|
1364
|
+
- lib/auth0/types/create_flows_vault_connection_bigquery_uninitialized.rb
|
|
1365
|
+
- lib/auth0/types/create_flows_vault_connection_clearbit.rb
|
|
1366
|
+
- lib/auth0/types/create_flows_vault_connection_clearbit_api_key.rb
|
|
1367
|
+
- lib/auth0/types/create_flows_vault_connection_clearbit_uninitialized.rb
|
|
1368
|
+
- lib/auth0/types/create_flows_vault_connection_docusign.rb
|
|
1369
|
+
- lib/auth0/types/create_flows_vault_connection_docusign_oauth_code.rb
|
|
1370
|
+
- lib/auth0/types/create_flows_vault_connection_docusign_uninitialized.rb
|
|
1371
|
+
- lib/auth0/types/create_flows_vault_connection_google_sheets.rb
|
|
1372
|
+
- lib/auth0/types/create_flows_vault_connection_google_sheets_oauth_code.rb
|
|
1373
|
+
- lib/auth0/types/create_flows_vault_connection_google_sheets_uninitialized.rb
|
|
1374
|
+
- lib/auth0/types/create_flows_vault_connection_http.rb
|
|
1375
|
+
- lib/auth0/types/create_flows_vault_connection_http_api_key.rb
|
|
1376
|
+
- lib/auth0/types/create_flows_vault_connection_http_basic_auth.rb
|
|
1377
|
+
- lib/auth0/types/create_flows_vault_connection_http_bearer.rb
|
|
1378
|
+
- lib/auth0/types/create_flows_vault_connection_http_oauth_client_credentials.rb
|
|
1379
|
+
- lib/auth0/types/create_flows_vault_connection_http_uninitialized.rb
|
|
1380
|
+
- lib/auth0/types/create_flows_vault_connection_hubspot.rb
|
|
1381
|
+
- lib/auth0/types/create_flows_vault_connection_hubspot_api_key.rb
|
|
1382
|
+
- lib/auth0/types/create_flows_vault_connection_hubspot_oauth_code.rb
|
|
1383
|
+
- lib/auth0/types/create_flows_vault_connection_hubspot_uninitialized.rb
|
|
1384
|
+
- lib/auth0/types/create_flows_vault_connection_jwt.rb
|
|
1385
|
+
- lib/auth0/types/create_flows_vault_connection_jwt_jwt.rb
|
|
1386
|
+
- lib/auth0/types/create_flows_vault_connection_jwt_uninitialized.rb
|
|
1387
|
+
- lib/auth0/types/create_flows_vault_connection_mailchimp.rb
|
|
1388
|
+
- lib/auth0/types/create_flows_vault_connection_mailchimp_api_key.rb
|
|
1389
|
+
- lib/auth0/types/create_flows_vault_connection_mailchimp_oauth_code.rb
|
|
1390
|
+
- lib/auth0/types/create_flows_vault_connection_mailchimp_uninitialized.rb
|
|
1391
|
+
- lib/auth0/types/create_flows_vault_connection_mailjet.rb
|
|
1392
|
+
- lib/auth0/types/create_flows_vault_connection_mailjet_api_key.rb
|
|
1393
|
+
- lib/auth0/types/create_flows_vault_connection_mailjet_uninitialized.rb
|
|
1394
|
+
- lib/auth0/types/create_flows_vault_connection_pipedrive.rb
|
|
1395
|
+
- lib/auth0/types/create_flows_vault_connection_pipedrive_oauth_code.rb
|
|
1396
|
+
- lib/auth0/types/create_flows_vault_connection_pipedrive_token.rb
|
|
1397
|
+
- lib/auth0/types/create_flows_vault_connection_pipedrive_uninitialized.rb
|
|
1398
|
+
- lib/auth0/types/create_flows_vault_connection_request_content.rb
|
|
1399
|
+
- lib/auth0/types/create_flows_vault_connection_response_content.rb
|
|
1400
|
+
- lib/auth0/types/create_flows_vault_connection_salesforce.rb
|
|
1401
|
+
- lib/auth0/types/create_flows_vault_connection_salesforce_oauth_code.rb
|
|
1402
|
+
- lib/auth0/types/create_flows_vault_connection_salesforce_uninitialized.rb
|
|
1403
|
+
- lib/auth0/types/create_flows_vault_connection_sendgrid.rb
|
|
1404
|
+
- lib/auth0/types/create_flows_vault_connection_sendgrid_api_key.rb
|
|
1405
|
+
- lib/auth0/types/create_flows_vault_connection_sendgrid_uninitialized.rb
|
|
1406
|
+
- lib/auth0/types/create_flows_vault_connection_slack.rb
|
|
1407
|
+
- lib/auth0/types/create_flows_vault_connection_slack_oauth_code.rb
|
|
1408
|
+
- lib/auth0/types/create_flows_vault_connection_slack_uninitialized.rb
|
|
1409
|
+
- lib/auth0/types/create_flows_vault_connection_slack_webhook.rb
|
|
1410
|
+
- lib/auth0/types/create_flows_vault_connection_stripe.rb
|
|
1411
|
+
- lib/auth0/types/create_flows_vault_connection_stripe_key_pair.rb
|
|
1412
|
+
- lib/auth0/types/create_flows_vault_connection_stripe_oauth_code.rb
|
|
1413
|
+
- lib/auth0/types/create_flows_vault_connection_stripe_uninitialized.rb
|
|
1414
|
+
- lib/auth0/types/create_flows_vault_connection_telegram.rb
|
|
1415
|
+
- lib/auth0/types/create_flows_vault_connection_telegram_token.rb
|
|
1416
|
+
- lib/auth0/types/create_flows_vault_connection_telegram_uninitialized.rb
|
|
1417
|
+
- lib/auth0/types/create_flows_vault_connection_twilio.rb
|
|
1418
|
+
- lib/auth0/types/create_flows_vault_connection_twilio_api_key.rb
|
|
1419
|
+
- lib/auth0/types/create_flows_vault_connection_twilio_uninitialized.rb
|
|
1420
|
+
- lib/auth0/types/create_flows_vault_connection_whatsapp.rb
|
|
1421
|
+
- lib/auth0/types/create_flows_vault_connection_whatsapp_token.rb
|
|
1422
|
+
- lib/auth0/types/create_flows_vault_connection_whatsapp_uninitialized.rb
|
|
1423
|
+
- lib/auth0/types/create_flows_vault_connection_zapier.rb
|
|
1424
|
+
- lib/auth0/types/create_flows_vault_connection_zapier_uninitialized.rb
|
|
1425
|
+
- lib/auth0/types/create_flows_vault_connection_zapier_webhook.rb
|
|
1426
|
+
- lib/auth0/types/create_form_response_content.rb
|
|
1427
|
+
- lib/auth0/types/create_guardian_enrollment_ticket_response_content.rb
|
|
1428
|
+
- lib/auth0/types/create_hook_response_content.rb
|
|
1429
|
+
- lib/auth0/types/create_hook_secret_request_content.rb
|
|
1430
|
+
- lib/auth0/types/create_import_users_response_content.rb
|
|
1431
|
+
- lib/auth0/types/create_log_stream_datadog_request_body.rb
|
|
1432
|
+
- lib/auth0/types/create_log_stream_event_bridge_request_body.rb
|
|
1433
|
+
- lib/auth0/types/create_log_stream_event_grid_request_body.rb
|
|
1434
|
+
- lib/auth0/types/create_log_stream_http_request_body.rb
|
|
1435
|
+
- lib/auth0/types/create_log_stream_mixpanel_request_body.rb
|
|
1436
|
+
- lib/auth0/types/create_log_stream_request_content.rb
|
|
1437
|
+
- lib/auth0/types/create_log_stream_response_content.rb
|
|
1438
|
+
- lib/auth0/types/create_log_stream_segment_request_body.rb
|
|
1439
|
+
- lib/auth0/types/create_log_stream_splunk_request_body.rb
|
|
1440
|
+
- lib/auth0/types/create_log_stream_sumo_request_body.rb
|
|
1441
|
+
- lib/auth0/types/create_organization_all_connection_response_content.rb
|
|
1442
|
+
- lib/auth0/types/create_organization_discovery_domain_response_content.rb
|
|
1443
|
+
- lib/auth0/types/create_organization_invitation_response_content.rb
|
|
1444
|
+
- lib/auth0/types/create_organization_response_content.rb
|
|
1445
|
+
- lib/auth0/types/create_phone_provider_send_test_response_content.rb
|
|
1446
|
+
- lib/auth0/types/create_phone_template_response_content.rb
|
|
1447
|
+
- lib/auth0/types/create_phone_template_test_notification_response_content.rb
|
|
1448
|
+
- lib/auth0/types/create_public_key_device_credential_response_content.rb
|
|
1449
|
+
- lib/auth0/types/create_resource_server_response_content.rb
|
|
1450
|
+
- lib/auth0/types/create_role_response_content.rb
|
|
1451
|
+
- lib/auth0/types/create_rule_response_content.rb
|
|
1452
|
+
- lib/auth0/types/create_scim_configuration_request_content.rb
|
|
1453
|
+
- lib/auth0/types/create_scim_configuration_response_content.rb
|
|
1454
|
+
- lib/auth0/types/create_scim_token_response_content.rb
|
|
1455
|
+
- lib/auth0/types/create_self_service_profile_response_content.rb
|
|
1456
|
+
- lib/auth0/types/create_self_service_profile_sso_ticket_response_content.rb
|
|
1457
|
+
- lib/auth0/types/create_token_exchange_profile_response_content.rb
|
|
1458
|
+
- lib/auth0/types/create_token_quota.rb
|
|
1459
|
+
- lib/auth0/types/create_user_attribute_profile_response_content.rb
|
|
1460
|
+
- lib/auth0/types/create_user_authentication_method_response_content.rb
|
|
1461
|
+
- lib/auth0/types/create_user_response_content.rb
|
|
1462
|
+
- lib/auth0/types/create_verifiable_credential_template_response_content.rb
|
|
1463
|
+
- lib/auth0/types/create_verification_email_response_content.rb
|
|
1464
|
+
- lib/auth0/types/created_authentication_method_type_enum.rb
|
|
1465
|
+
- lib/auth0/types/created_user_authentication_method_type_enum.rb
|
|
1466
|
+
- lib/auth0/types/credential_id.rb
|
|
1467
|
+
- lib/auth0/types/custom_domain.rb
|
|
1468
|
+
- lib/auth0/types/custom_domain_custom_client_ip_header.rb
|
|
1469
|
+
- lib/auth0/types/custom_domain_custom_client_ip_header_enum.rb
|
|
1470
|
+
- lib/auth0/types/custom_domain_provisioning_type_enum.rb
|
|
1471
|
+
- lib/auth0/types/custom_domain_status_filter_enum.rb
|
|
1472
|
+
- lib/auth0/types/custom_domain_tls_policy_enum.rb
|
|
1473
|
+
- lib/auth0/types/custom_domain_type_enum.rb
|
|
1474
|
+
- lib/auth0/types/custom_domain_verification_method_enum.rb
|
|
1475
|
+
- lib/auth0/types/custom_provider_configuration.rb
|
|
1476
|
+
- lib/auth0/types/custom_provider_credentials.rb
|
|
1477
|
+
- lib/auth0/types/custom_provider_delivery_method_enum.rb
|
|
1478
|
+
- lib/auth0/types/custom_signing_key_algorithm_enum.rb
|
|
1479
|
+
- lib/auth0/types/custom_signing_key_curve_enum.rb
|
|
1480
|
+
- lib/auth0/types/custom_signing_key_jwk.rb
|
|
1481
|
+
- lib/auth0/types/custom_signing_key_operation_enum.rb
|
|
1482
|
+
- lib/auth0/types/custom_signing_key_type_enum.rb
|
|
1483
|
+
- lib/auth0/types/custom_signing_key_use_enum.rb
|
|
1484
|
+
- lib/auth0/types/daily_stats.rb
|
|
1485
|
+
- lib/auth0/types/default_method_email_identifier_enum.rb
|
|
1486
|
+
- lib/auth0/types/default_token_quota.rb
|
|
1487
|
+
- lib/auth0/types/delete_hook_secret_request_content.rb
|
|
1488
|
+
- lib/auth0/types/delete_user_identity_response_content.rb
|
|
1489
|
+
- lib/auth0/types/delete_user_identity_response_content_item.rb
|
|
1490
|
+
- lib/auth0/types/deploy_action_response_content.rb
|
|
1491
|
+
- lib/auth0/types/deploy_action_version_request_content.rb
|
|
1492
|
+
- lib/auth0/types/deploy_action_version_response_content.rb
|
|
1493
|
+
- lib/auth0/types/device_credential.rb
|
|
1494
|
+
- lib/auth0/types/device_credential_public_key_type_enum.rb
|
|
1495
|
+
- lib/auth0/types/device_credential_type_enum.rb
|
|
1496
|
+
- lib/auth0/types/directory_provisioning.rb
|
|
1497
|
+
- lib/auth0/types/directory_provisioning_mapping_item.rb
|
|
1498
|
+
- lib/auth0/types/domain_certificate.rb
|
|
1499
|
+
- lib/auth0/types/domain_certificate_authority_enum.rb
|
|
1500
|
+
- lib/auth0/types/domain_certificate_status_enum.rb
|
|
1501
|
+
- lib/auth0/types/domain_metadata.rb
|
|
1502
|
+
- lib/auth0/types/domain_verification.rb
|
|
1503
|
+
- lib/auth0/types/domain_verification_method.rb
|
|
1504
|
+
- lib/auth0/types/domain_verification_method_name_enum.rb
|
|
1505
|
+
- lib/auth0/types/domain_verification_status_enum.rb
|
|
1506
|
+
- lib/auth0/types/email_attribute.rb
|
|
1507
|
+
- lib/auth0/types/email_mailgun_region_enum.rb
|
|
1508
|
+
- lib/auth0/types/email_provider_credentials.rb
|
|
1509
|
+
- lib/auth0/types/email_provider_credentials_schema.rb
|
|
1510
|
+
- lib/auth0/types/email_provider_credentials_schema_access_key_id.rb
|
|
1511
|
+
- lib/auth0/types/email_provider_credentials_schema_api_key.rb
|
|
1512
|
+
- lib/auth0/types/email_provider_credentials_schema_client_id.rb
|
|
1513
|
+
- lib/auth0/types/email_provider_credentials_schema_connection_string.rb
|
|
1514
|
+
- lib/auth0/types/email_provider_credentials_schema_smtp_host.rb
|
|
1515
|
+
- lib/auth0/types/email_provider_credentials_schema_three.rb
|
|
1516
|
+
- lib/auth0/types/email_provider_credentials_schema_zero.rb
|
|
1517
|
+
- lib/auth0/types/email_provider_name_enum.rb
|
|
1518
|
+
- lib/auth0/types/email_provider_settings.rb
|
|
1519
|
+
- lib/auth0/types/email_smtp_host.rb
|
|
1520
|
+
- lib/auth0/types/email_spark_post_region_enum.rb
|
|
1521
|
+
- lib/auth0/types/email_specific_provider_settings_with_additional_properties.rb
|
|
1522
|
+
- lib/auth0/types/email_template_name_enum.rb
|
|
1523
|
+
- lib/auth0/types/enabled_features_enum.rb
|
|
1524
|
+
- lib/auth0/types/encryption_key.rb
|
|
1525
|
+
- lib/auth0/types/encryption_key_public_wrapping_algorithm.rb
|
|
1526
|
+
- lib/auth0/types/encryption_key_state.rb
|
|
1527
|
+
- lib/auth0/types/encryption_key_type.rb
|
|
1528
|
+
- lib/auth0/types/event_stream_action_configuration.rb
|
|
1529
|
+
- lib/auth0/types/event_stream_action_destination.rb
|
|
1530
|
+
- lib/auth0/types/event_stream_action_destination_type_enum.rb
|
|
1531
|
+
- lib/auth0/types/event_stream_action_response_content.rb
|
|
1532
|
+
- lib/auth0/types/event_stream_cloud_event.rb
|
|
1533
|
+
- lib/auth0/types/event_stream_delivery.rb
|
|
1534
|
+
- lib/auth0/types/event_stream_delivery_attempt.rb
|
|
1535
|
+
- lib/auth0/types/event_stream_delivery_event_type_enum.rb
|
|
1536
|
+
- lib/auth0/types/event_stream_delivery_status_enum.rb
|
|
1537
|
+
- lib/auth0/types/event_stream_destination_patch.rb
|
|
1538
|
+
- lib/auth0/types/event_stream_event_bridge_aws_region_enum.rb
|
|
1539
|
+
- lib/auth0/types/event_stream_event_bridge_configuration.rb
|
|
1540
|
+
- lib/auth0/types/event_stream_event_bridge_destination.rb
|
|
1541
|
+
- lib/auth0/types/event_stream_event_bridge_destination_type_enum.rb
|
|
1542
|
+
- lib/auth0/types/event_stream_event_bridge_response_content.rb
|
|
1543
|
+
- lib/auth0/types/event_stream_event_type_enum.rb
|
|
1544
|
+
- lib/auth0/types/event_stream_response_content.rb
|
|
1545
|
+
- lib/auth0/types/event_stream_status_enum.rb
|
|
1546
|
+
- lib/auth0/types/event_stream_subscription.rb
|
|
1547
|
+
- lib/auth0/types/event_stream_test_event_type_enum.rb
|
|
1548
|
+
- lib/auth0/types/event_stream_webhook_authorization_response.rb
|
|
1549
|
+
- lib/auth0/types/event_stream_webhook_basic_auth.rb
|
|
1550
|
+
- lib/auth0/types/event_stream_webhook_basic_auth_method_enum.rb
|
|
1551
|
+
- lib/auth0/types/event_stream_webhook_bearer_auth.rb
|
|
1552
|
+
- lib/auth0/types/event_stream_webhook_bearer_auth_method_enum.rb
|
|
1553
|
+
- lib/auth0/types/event_stream_webhook_configuration.rb
|
|
1554
|
+
- lib/auth0/types/event_stream_webhook_custom_header_auth.rb
|
|
1555
|
+
- lib/auth0/types/event_stream_webhook_custom_header_auth_method_enum.rb
|
|
1556
|
+
- lib/auth0/types/event_stream_webhook_destination.rb
|
|
1557
|
+
- lib/auth0/types/event_stream_webhook_destination_type_enum.rb
|
|
1558
|
+
- lib/auth0/types/event_stream_webhook_response_content.rb
|
|
1559
|
+
- lib/auth0/types/express_configuration.rb
|
|
1560
|
+
- lib/auth0/types/express_configuration_or_null.rb
|
|
1561
|
+
- lib/auth0/types/extensibility_email_provider_credentials.rb
|
|
1562
|
+
- lib/auth0/types/federated_connection_token_set.rb
|
|
1563
|
+
- lib/auth0/types/flow_action.rb
|
|
1564
|
+
- lib/auth0/types/flow_action_activecampaign.rb
|
|
1565
|
+
- lib/auth0/types/flow_action_activecampaign_list_contacts.rb
|
|
1566
|
+
- lib/auth0/types/flow_action_activecampaign_list_contacts_action.rb
|
|
1567
|
+
- lib/auth0/types/flow_action_activecampaign_list_contacts_params.rb
|
|
1568
|
+
- lib/auth0/types/flow_action_activecampaign_list_contacts_type.rb
|
|
1569
|
+
- lib/auth0/types/flow_action_activecampaign_upsert_contact.rb
|
|
1570
|
+
- lib/auth0/types/flow_action_activecampaign_upsert_contact_action.rb
|
|
1571
|
+
- lib/auth0/types/flow_action_activecampaign_upsert_contact_params.rb
|
|
1572
|
+
- lib/auth0/types/flow_action_activecampaign_upsert_contact_params_custom_fields.rb
|
|
1573
|
+
- lib/auth0/types/flow_action_activecampaign_upsert_contact_type.rb
|
|
1574
|
+
- lib/auth0/types/flow_action_airtable.rb
|
|
1575
|
+
- lib/auth0/types/flow_action_airtable_create_record.rb
|
|
1576
|
+
- lib/auth0/types/flow_action_airtable_create_record_action.rb
|
|
1577
|
+
- lib/auth0/types/flow_action_airtable_create_record_params.rb
|
|
1578
|
+
- lib/auth0/types/flow_action_airtable_create_record_params_fields.rb
|
|
1579
|
+
- lib/auth0/types/flow_action_airtable_create_record_type.rb
|
|
1580
|
+
- lib/auth0/types/flow_action_airtable_list_records.rb
|
|
1581
|
+
- lib/auth0/types/flow_action_airtable_list_records_action.rb
|
|
1582
|
+
- lib/auth0/types/flow_action_airtable_list_records_params.rb
|
|
1583
|
+
- lib/auth0/types/flow_action_airtable_list_records_type.rb
|
|
1584
|
+
- lib/auth0/types/flow_action_airtable_update_record.rb
|
|
1585
|
+
- lib/auth0/types/flow_action_airtable_update_record_action.rb
|
|
1586
|
+
- lib/auth0/types/flow_action_airtable_update_record_params.rb
|
|
1587
|
+
- lib/auth0/types/flow_action_airtable_update_record_params_fields.rb
|
|
1588
|
+
- lib/auth0/types/flow_action_airtable_update_record_type.rb
|
|
1589
|
+
- lib/auth0/types/flow_action_auth0.rb
|
|
1590
|
+
- lib/auth0/types/flow_action_auth0create_user.rb
|
|
1591
|
+
- lib/auth0/types/flow_action_auth0create_user_action.rb
|
|
1592
|
+
- lib/auth0/types/flow_action_auth0create_user_params.rb
|
|
1593
|
+
- lib/auth0/types/flow_action_auth0create_user_params_payload.rb
|
|
1594
|
+
- lib/auth0/types/flow_action_auth0create_user_type.rb
|
|
1595
|
+
- lib/auth0/types/flow_action_auth0get_user.rb
|
|
1596
|
+
- lib/auth0/types/flow_action_auth0get_user_action.rb
|
|
1597
|
+
- lib/auth0/types/flow_action_auth0get_user_params.rb
|
|
1598
|
+
- lib/auth0/types/flow_action_auth0get_user_type.rb
|
|
1599
|
+
- lib/auth0/types/flow_action_auth0make_call.rb
|
|
1600
|
+
- lib/auth0/types/flow_action_auth0make_call_action.rb
|
|
1601
|
+
- lib/auth0/types/flow_action_auth0make_call_params.rb
|
|
1602
|
+
- lib/auth0/types/flow_action_auth0make_call_params_custom_vars.rb
|
|
1603
|
+
- lib/auth0/types/flow_action_auth0make_call_type.rb
|
|
1604
|
+
- lib/auth0/types/flow_action_auth0send_email.rb
|
|
1605
|
+
- lib/auth0/types/flow_action_auth0send_email_action.rb
|
|
1606
|
+
- lib/auth0/types/flow_action_auth0send_email_params.rb
|
|
1607
|
+
- lib/auth0/types/flow_action_auth0send_email_params_from.rb
|
|
1608
|
+
- lib/auth0/types/flow_action_auth0send_email_params_from_email.rb
|
|
1609
|
+
- lib/auth0/types/flow_action_auth0send_email_params_to.rb
|
|
1610
|
+
- lib/auth0/types/flow_action_auth0send_email_type.rb
|
|
1611
|
+
- lib/auth0/types/flow_action_auth0send_request.rb
|
|
1612
|
+
- lib/auth0/types/flow_action_auth0send_request_action.rb
|
|
1613
|
+
- lib/auth0/types/flow_action_auth0send_request_params.rb
|
|
1614
|
+
- lib/auth0/types/flow_action_auth0send_request_params_custom_vars.rb
|
|
1615
|
+
- lib/auth0/types/flow_action_auth0send_request_params_headers.rb
|
|
1616
|
+
- lib/auth0/types/flow_action_auth0send_request_params_method.rb
|
|
1617
|
+
- lib/auth0/types/flow_action_auth0send_request_params_payload.rb
|
|
1618
|
+
- lib/auth0/types/flow_action_auth0send_request_params_payload_object.rb
|
|
1619
|
+
- lib/auth0/types/flow_action_auth0send_request_params_query_params.rb
|
|
1620
|
+
- lib/auth0/types/flow_action_auth0send_request_params_query_params_value.rb
|
|
1621
|
+
- lib/auth0/types/flow_action_auth0send_request_type.rb
|
|
1622
|
+
- lib/auth0/types/flow_action_auth0send_sms.rb
|
|
1623
|
+
- lib/auth0/types/flow_action_auth0send_sms_action.rb
|
|
1624
|
+
- lib/auth0/types/flow_action_auth0send_sms_params.rb
|
|
1625
|
+
- lib/auth0/types/flow_action_auth0send_sms_params_custom_vars.rb
|
|
1626
|
+
- lib/auth0/types/flow_action_auth0send_sms_type.rb
|
|
1627
|
+
- lib/auth0/types/flow_action_auth0update_user.rb
|
|
1628
|
+
- lib/auth0/types/flow_action_auth0update_user_action.rb
|
|
1629
|
+
- lib/auth0/types/flow_action_auth0update_user_params.rb
|
|
1630
|
+
- lib/auth0/types/flow_action_auth0update_user_params_changes.rb
|
|
1631
|
+
- lib/auth0/types/flow_action_auth0update_user_type.rb
|
|
1632
|
+
- lib/auth0/types/flow_action_bigquery.rb
|
|
1633
|
+
- lib/auth0/types/flow_action_bigquery_insert_rows.rb
|
|
1634
|
+
- lib/auth0/types/flow_action_bigquery_insert_rows_action.rb
|
|
1635
|
+
- lib/auth0/types/flow_action_bigquery_insert_rows_params.rb
|
|
1636
|
+
- lib/auth0/types/flow_action_bigquery_insert_rows_params_data.rb
|
|
1637
|
+
- lib/auth0/types/flow_action_bigquery_insert_rows_type.rb
|
|
1638
|
+
- lib/auth0/types/flow_action_clearbit.rb
|
|
1639
|
+
- lib/auth0/types/flow_action_clearbit_find_company.rb
|
|
1640
|
+
- lib/auth0/types/flow_action_clearbit_find_company_action.rb
|
|
1641
|
+
- lib/auth0/types/flow_action_clearbit_find_company_params.rb
|
|
1642
|
+
- lib/auth0/types/flow_action_clearbit_find_company_type.rb
|
|
1643
|
+
- lib/auth0/types/flow_action_clearbit_find_person.rb
|
|
1644
|
+
- lib/auth0/types/flow_action_clearbit_find_person_action.rb
|
|
1645
|
+
- lib/auth0/types/flow_action_clearbit_find_person_params.rb
|
|
1646
|
+
- lib/auth0/types/flow_action_clearbit_find_person_type.rb
|
|
1647
|
+
- lib/auth0/types/flow_action_email.rb
|
|
1648
|
+
- lib/auth0/types/flow_action_email_verify_email.rb
|
|
1649
|
+
- lib/auth0/types/flow_action_email_verify_email_action.rb
|
|
1650
|
+
- lib/auth0/types/flow_action_email_verify_email_params.rb
|
|
1651
|
+
- lib/auth0/types/flow_action_email_verify_email_params_rules.rb
|
|
1652
|
+
- lib/auth0/types/flow_action_email_verify_email_type.rb
|
|
1653
|
+
- lib/auth0/types/flow_action_flow.rb
|
|
1654
|
+
- lib/auth0/types/flow_action_flow_boolean_condition.rb
|
|
1655
|
+
- lib/auth0/types/flow_action_flow_boolean_condition_action.rb
|
|
1656
|
+
- lib/auth0/types/flow_action_flow_boolean_condition_params.rb
|
|
1657
|
+
- lib/auth0/types/flow_action_flow_boolean_condition_type.rb
|
|
1658
|
+
- lib/auth0/types/flow_action_flow_delay_flow.rb
|
|
1659
|
+
- lib/auth0/types/flow_action_flow_delay_flow_action.rb
|
|
1660
|
+
- lib/auth0/types/flow_action_flow_delay_flow_params.rb
|
|
1661
|
+
- lib/auth0/types/flow_action_flow_delay_flow_params_number.rb
|
|
1662
|
+
- lib/auth0/types/flow_action_flow_delay_flow_params_units.rb
|
|
1663
|
+
- lib/auth0/types/flow_action_flow_delay_flow_type.rb
|
|
1664
|
+
- lib/auth0/types/flow_action_flow_do_nothing.rb
|
|
1665
|
+
- lib/auth0/types/flow_action_flow_do_nothing_action.rb
|
|
1666
|
+
- lib/auth0/types/flow_action_flow_do_nothing_params.rb
|
|
1667
|
+
- lib/auth0/types/flow_action_flow_do_nothing_type.rb
|
|
1668
|
+
- lib/auth0/types/flow_action_flow_error_message.rb
|
|
1669
|
+
- lib/auth0/types/flow_action_flow_error_message_action.rb
|
|
1670
|
+
- lib/auth0/types/flow_action_flow_error_message_params.rb
|
|
1671
|
+
- lib/auth0/types/flow_action_flow_error_message_type.rb
|
|
1672
|
+
- lib/auth0/types/flow_action_flow_map_value.rb
|
|
1673
|
+
- lib/auth0/types/flow_action_flow_map_value_action.rb
|
|
1674
|
+
- lib/auth0/types/flow_action_flow_map_value_params.rb
|
|
1675
|
+
- lib/auth0/types/flow_action_flow_map_value_params_cases.rb
|
|
1676
|
+
- lib/auth0/types/flow_action_flow_map_value_params_fallback.rb
|
|
1677
|
+
- lib/auth0/types/flow_action_flow_map_value_params_fallback_object.rb
|
|
1678
|
+
- lib/auth0/types/flow_action_flow_map_value_params_input.rb
|
|
1679
|
+
- lib/auth0/types/flow_action_flow_map_value_type.rb
|
|
1680
|
+
- lib/auth0/types/flow_action_flow_return_json.rb
|
|
1681
|
+
- lib/auth0/types/flow_action_flow_return_json_action.rb
|
|
1682
|
+
- lib/auth0/types/flow_action_flow_return_json_params.rb
|
|
1683
|
+
- lib/auth0/types/flow_action_flow_return_json_params_payload.rb
|
|
1684
|
+
- lib/auth0/types/flow_action_flow_return_json_params_payload_object.rb
|
|
1685
|
+
- lib/auth0/types/flow_action_flow_return_json_type.rb
|
|
1686
|
+
- lib/auth0/types/flow_action_flow_store_vars.rb
|
|
1687
|
+
- lib/auth0/types/flow_action_flow_store_vars_action.rb
|
|
1688
|
+
- lib/auth0/types/flow_action_flow_store_vars_params.rb
|
|
1689
|
+
- lib/auth0/types/flow_action_flow_store_vars_params_vars.rb
|
|
1690
|
+
- lib/auth0/types/flow_action_flow_store_vars_type.rb
|
|
1691
|
+
- lib/auth0/types/flow_action_google_sheets.rb
|
|
1692
|
+
- lib/auth0/types/flow_action_google_sheets_add_row.rb
|
|
1693
|
+
- lib/auth0/types/flow_action_google_sheets_add_row_action.rb
|
|
1694
|
+
- lib/auth0/types/flow_action_google_sheets_add_row_params.rb
|
|
1695
|
+
- lib/auth0/types/flow_action_google_sheets_add_row_params_sheet_id.rb
|
|
1696
|
+
- lib/auth0/types/flow_action_google_sheets_add_row_params_values.rb
|
|
1697
|
+
- lib/auth0/types/flow_action_google_sheets_add_row_type.rb
|
|
1698
|
+
- lib/auth0/types/flow_action_http.rb
|
|
1699
|
+
- lib/auth0/types/flow_action_http_send_request.rb
|
|
1700
|
+
- lib/auth0/types/flow_action_http_send_request_action.rb
|
|
1701
|
+
- lib/auth0/types/flow_action_http_send_request_params.rb
|
|
1702
|
+
- lib/auth0/types/flow_action_http_send_request_params_basic_auth.rb
|
|
1703
|
+
- lib/auth0/types/flow_action_http_send_request_params_content_type.rb
|
|
1704
|
+
- lib/auth0/types/flow_action_http_send_request_params_headers.rb
|
|
1705
|
+
- lib/auth0/types/flow_action_http_send_request_params_method.rb
|
|
1706
|
+
- lib/auth0/types/flow_action_http_send_request_params_payload.rb
|
|
1707
|
+
- lib/auth0/types/flow_action_http_send_request_params_payload_object.rb
|
|
1708
|
+
- lib/auth0/types/flow_action_http_send_request_params_query_params.rb
|
|
1709
|
+
- lib/auth0/types/flow_action_http_send_request_params_query_params_value.rb
|
|
1710
|
+
- lib/auth0/types/flow_action_http_send_request_type.rb
|
|
1711
|
+
- lib/auth0/types/flow_action_hubspot.rb
|
|
1712
|
+
- lib/auth0/types/flow_action_hubspot_enroll_contact.rb
|
|
1713
|
+
- lib/auth0/types/flow_action_hubspot_enroll_contact_action.rb
|
|
1714
|
+
- lib/auth0/types/flow_action_hubspot_enroll_contact_params.rb
|
|
1715
|
+
- lib/auth0/types/flow_action_hubspot_enroll_contact_params_workflow_id.rb
|
|
1716
|
+
- lib/auth0/types/flow_action_hubspot_enroll_contact_type.rb
|
|
1717
|
+
- lib/auth0/types/flow_action_hubspot_get_contact.rb
|
|
1718
|
+
- lib/auth0/types/flow_action_hubspot_get_contact_action.rb
|
|
1719
|
+
- lib/auth0/types/flow_action_hubspot_get_contact_params.rb
|
|
1720
|
+
- lib/auth0/types/flow_action_hubspot_get_contact_type.rb
|
|
1721
|
+
- lib/auth0/types/flow_action_hubspot_upsert_contact.rb
|
|
1722
|
+
- lib/auth0/types/flow_action_hubspot_upsert_contact_action.rb
|
|
1723
|
+
- lib/auth0/types/flow_action_hubspot_upsert_contact_params.rb
|
|
1724
|
+
- lib/auth0/types/flow_action_hubspot_upsert_contact_params_property.rb
|
|
1725
|
+
- lib/auth0/types/flow_action_hubspot_upsert_contact_type.rb
|
|
1726
|
+
- lib/auth0/types/flow_action_json.rb
|
|
1727
|
+
- lib/auth0/types/flow_action_json_create_json.rb
|
|
1728
|
+
- lib/auth0/types/flow_action_json_create_json_action.rb
|
|
1729
|
+
- lib/auth0/types/flow_action_json_create_json_params.rb
|
|
1730
|
+
- lib/auth0/types/flow_action_json_create_json_params_object.rb
|
|
1731
|
+
- lib/auth0/types/flow_action_json_create_json_type.rb
|
|
1732
|
+
- lib/auth0/types/flow_action_json_parse_json.rb
|
|
1733
|
+
- lib/auth0/types/flow_action_json_parse_json_action.rb
|
|
1734
|
+
- lib/auth0/types/flow_action_json_parse_json_params.rb
|
|
1735
|
+
- lib/auth0/types/flow_action_json_parse_json_type.rb
|
|
1736
|
+
- lib/auth0/types/flow_action_json_serialize_json.rb
|
|
1737
|
+
- lib/auth0/types/flow_action_json_serialize_json_action.rb
|
|
1738
|
+
- lib/auth0/types/flow_action_json_serialize_json_params.rb
|
|
1739
|
+
- lib/auth0/types/flow_action_json_serialize_json_params_object.rb
|
|
1740
|
+
- lib/auth0/types/flow_action_json_serialize_json_params_object_object.rb
|
|
1741
|
+
- lib/auth0/types/flow_action_json_serialize_json_type.rb
|
|
1742
|
+
- lib/auth0/types/flow_action_jwt.rb
|
|
1743
|
+
- lib/auth0/types/flow_action_jwt_decode_jwt.rb
|
|
1744
|
+
- lib/auth0/types/flow_action_jwt_decode_jwt_action.rb
|
|
1745
|
+
- lib/auth0/types/flow_action_jwt_decode_jwt_params.rb
|
|
1746
|
+
- lib/auth0/types/flow_action_jwt_decode_jwt_type.rb
|
|
1747
|
+
- lib/auth0/types/flow_action_jwt_sign_jwt.rb
|
|
1748
|
+
- lib/auth0/types/flow_action_jwt_sign_jwt_action.rb
|
|
1749
|
+
- lib/auth0/types/flow_action_jwt_sign_jwt_params.rb
|
|
1750
|
+
- lib/auth0/types/flow_action_jwt_sign_jwt_params_payload.rb
|
|
1751
|
+
- lib/auth0/types/flow_action_jwt_sign_jwt_type.rb
|
|
1752
|
+
- lib/auth0/types/flow_action_jwt_verify_jwt.rb
|
|
1753
|
+
- lib/auth0/types/flow_action_jwt_verify_jwt_action.rb
|
|
1754
|
+
- lib/auth0/types/flow_action_jwt_verify_jwt_params.rb
|
|
1755
|
+
- lib/auth0/types/flow_action_jwt_verify_jwt_type.rb
|
|
1756
|
+
- lib/auth0/types/flow_action_mailchimp.rb
|
|
1757
|
+
- lib/auth0/types/flow_action_mailchimp_upsert_member.rb
|
|
1758
|
+
- lib/auth0/types/flow_action_mailchimp_upsert_member_action.rb
|
|
1759
|
+
- lib/auth0/types/flow_action_mailchimp_upsert_member_params.rb
|
|
1760
|
+
- lib/auth0/types/flow_action_mailchimp_upsert_member_params_member.rb
|
|
1761
|
+
- lib/auth0/types/flow_action_mailchimp_upsert_member_params_member_merge_fields.rb
|
|
1762
|
+
- lib/auth0/types/flow_action_mailchimp_upsert_member_type.rb
|
|
1763
|
+
- lib/auth0/types/flow_action_mailjet.rb
|
|
1764
|
+
- lib/auth0/types/flow_action_mailjet_send_email.rb
|
|
1765
|
+
- lib/auth0/types/flow_action_mailjet_send_email_action.rb
|
|
1766
|
+
- lib/auth0/types/flow_action_mailjet_send_email_params.rb
|
|
1767
|
+
- lib/auth0/types/flow_action_mailjet_send_email_params_content.rb
|
|
1768
|
+
- lib/auth0/types/flow_action_mailjet_send_email_params_template_id.rb
|
|
1769
|
+
- lib/auth0/types/flow_action_mailjet_send_email_type.rb
|
|
1770
|
+
- lib/auth0/types/flow_action_otp.rb
|
|
1771
|
+
- lib/auth0/types/flow_action_otp_generate_code.rb
|
|
1772
|
+
- lib/auth0/types/flow_action_otp_generate_code_action.rb
|
|
1773
|
+
- lib/auth0/types/flow_action_otp_generate_code_params.rb
|
|
1774
|
+
- lib/auth0/types/flow_action_otp_generate_code_type.rb
|
|
1775
|
+
- lib/auth0/types/flow_action_otp_verify_code.rb
|
|
1776
|
+
- lib/auth0/types/flow_action_otp_verify_code_action.rb
|
|
1777
|
+
- lib/auth0/types/flow_action_otp_verify_code_params.rb
|
|
1778
|
+
- lib/auth0/types/flow_action_otp_verify_code_params_code.rb
|
|
1779
|
+
- lib/auth0/types/flow_action_otp_verify_code_type.rb
|
|
1780
|
+
- lib/auth0/types/flow_action_pipedrive.rb
|
|
1781
|
+
- lib/auth0/types/flow_action_pipedrive_add_deal.rb
|
|
1782
|
+
- lib/auth0/types/flow_action_pipedrive_add_deal_action.rb
|
|
1783
|
+
- lib/auth0/types/flow_action_pipedrive_add_deal_params.rb
|
|
1784
|
+
- lib/auth0/types/flow_action_pipedrive_add_deal_params_fields.rb
|
|
1785
|
+
- lib/auth0/types/flow_action_pipedrive_add_deal_params_organization_id.rb
|
|
1786
|
+
- lib/auth0/types/flow_action_pipedrive_add_deal_params_person_id.rb
|
|
1787
|
+
- lib/auth0/types/flow_action_pipedrive_add_deal_params_stage_id.rb
|
|
1788
|
+
- lib/auth0/types/flow_action_pipedrive_add_deal_params_user_id.rb
|
|
1789
|
+
- lib/auth0/types/flow_action_pipedrive_add_deal_type.rb
|
|
1790
|
+
- lib/auth0/types/flow_action_pipedrive_add_organization.rb
|
|
1791
|
+
- lib/auth0/types/flow_action_pipedrive_add_organization_action.rb
|
|
1792
|
+
- lib/auth0/types/flow_action_pipedrive_add_organization_params.rb
|
|
1793
|
+
- lib/auth0/types/flow_action_pipedrive_add_organization_params_fields.rb
|
|
1794
|
+
- lib/auth0/types/flow_action_pipedrive_add_organization_params_owner_id.rb
|
|
1795
|
+
- lib/auth0/types/flow_action_pipedrive_add_organization_type.rb
|
|
1796
|
+
- lib/auth0/types/flow_action_pipedrive_add_person.rb
|
|
1797
|
+
- lib/auth0/types/flow_action_pipedrive_add_person_action.rb
|
|
1798
|
+
- lib/auth0/types/flow_action_pipedrive_add_person_params.rb
|
|
1799
|
+
- lib/auth0/types/flow_action_pipedrive_add_person_params_fields.rb
|
|
1800
|
+
- lib/auth0/types/flow_action_pipedrive_add_person_params_organization_id.rb
|
|
1801
|
+
- lib/auth0/types/flow_action_pipedrive_add_person_params_owner_id.rb
|
|
1802
|
+
- lib/auth0/types/flow_action_pipedrive_add_person_type.rb
|
|
1803
|
+
- lib/auth0/types/flow_action_salesforce.rb
|
|
1804
|
+
- lib/auth0/types/flow_action_salesforce_create_lead.rb
|
|
1805
|
+
- lib/auth0/types/flow_action_salesforce_create_lead_action.rb
|
|
1806
|
+
- lib/auth0/types/flow_action_salesforce_create_lead_params.rb
|
|
1807
|
+
- lib/auth0/types/flow_action_salesforce_create_lead_params_payload.rb
|
|
1808
|
+
- lib/auth0/types/flow_action_salesforce_create_lead_type.rb
|
|
1809
|
+
- lib/auth0/types/flow_action_salesforce_get_lead.rb
|
|
1810
|
+
- lib/auth0/types/flow_action_salesforce_get_lead_action.rb
|
|
1811
|
+
- lib/auth0/types/flow_action_salesforce_get_lead_params.rb
|
|
1812
|
+
- lib/auth0/types/flow_action_salesforce_get_lead_type.rb
|
|
1813
|
+
- lib/auth0/types/flow_action_salesforce_search_leads.rb
|
|
1814
|
+
- lib/auth0/types/flow_action_salesforce_search_leads_action.rb
|
|
1815
|
+
- lib/auth0/types/flow_action_salesforce_search_leads_params.rb
|
|
1816
|
+
- lib/auth0/types/flow_action_salesforce_search_leads_params_search_field.rb
|
|
1817
|
+
- lib/auth0/types/flow_action_salesforce_search_leads_type.rb
|
|
1818
|
+
- lib/auth0/types/flow_action_salesforce_update_lead.rb
|
|
1819
|
+
- lib/auth0/types/flow_action_salesforce_update_lead_action.rb
|
|
1820
|
+
- lib/auth0/types/flow_action_salesforce_update_lead_params.rb
|
|
1821
|
+
- lib/auth0/types/flow_action_salesforce_update_lead_params_payload.rb
|
|
1822
|
+
- lib/auth0/types/flow_action_salesforce_update_lead_type.rb
|
|
1823
|
+
- lib/auth0/types/flow_action_sendgrid.rb
|
|
1824
|
+
- lib/auth0/types/flow_action_sendgrid_send_email.rb
|
|
1825
|
+
- lib/auth0/types/flow_action_sendgrid_send_email_action.rb
|
|
1826
|
+
- lib/auth0/types/flow_action_sendgrid_send_email_params.rb
|
|
1827
|
+
- lib/auth0/types/flow_action_sendgrid_send_email_params_person.rb
|
|
1828
|
+
- lib/auth0/types/flow_action_sendgrid_send_email_type.rb
|
|
1829
|
+
- lib/auth0/types/flow_action_slack.rb
|
|
1830
|
+
- lib/auth0/types/flow_action_slack_post_message.rb
|
|
1831
|
+
- lib/auth0/types/flow_action_slack_post_message_action.rb
|
|
1832
|
+
- lib/auth0/types/flow_action_slack_post_message_params.rb
|
|
1833
|
+
- lib/auth0/types/flow_action_slack_post_message_params_attachment.rb
|
|
1834
|
+
- lib/auth0/types/flow_action_slack_post_message_params_attachment_color.rb
|
|
1835
|
+
- lib/auth0/types/flow_action_slack_post_message_params_attachment_field.rb
|
|
1836
|
+
- lib/auth0/types/flow_action_slack_post_message_type.rb
|
|
1837
|
+
- lib/auth0/types/flow_action_stripe.rb
|
|
1838
|
+
- lib/auth0/types/flow_action_stripe_add_tax_id.rb
|
|
1839
|
+
- lib/auth0/types/flow_action_stripe_add_tax_id_action.rb
|
|
1840
|
+
- lib/auth0/types/flow_action_stripe_add_tax_id_params.rb
|
|
1841
|
+
- lib/auth0/types/flow_action_stripe_add_tax_id_type.rb
|
|
1842
|
+
- lib/auth0/types/flow_action_stripe_address.rb
|
|
1843
|
+
- lib/auth0/types/flow_action_stripe_create_customer.rb
|
|
1844
|
+
- lib/auth0/types/flow_action_stripe_create_customer_action.rb
|
|
1845
|
+
- lib/auth0/types/flow_action_stripe_create_customer_params.rb
|
|
1846
|
+
- lib/auth0/types/flow_action_stripe_create_customer_type.rb
|
|
1847
|
+
- lib/auth0/types/flow_action_stripe_create_portal_session.rb
|
|
1848
|
+
- lib/auth0/types/flow_action_stripe_create_portal_session_action.rb
|
|
1849
|
+
- lib/auth0/types/flow_action_stripe_create_portal_session_params.rb
|
|
1850
|
+
- lib/auth0/types/flow_action_stripe_create_portal_session_type.rb
|
|
1851
|
+
- lib/auth0/types/flow_action_stripe_delete_tax_id.rb
|
|
1852
|
+
- lib/auth0/types/flow_action_stripe_delete_tax_id_action.rb
|
|
1853
|
+
- lib/auth0/types/flow_action_stripe_delete_tax_id_params.rb
|
|
1854
|
+
- lib/auth0/types/flow_action_stripe_delete_tax_id_type.rb
|
|
1855
|
+
- lib/auth0/types/flow_action_stripe_find_customers.rb
|
|
1856
|
+
- lib/auth0/types/flow_action_stripe_find_customers_action.rb
|
|
1857
|
+
- lib/auth0/types/flow_action_stripe_find_customers_params.rb
|
|
1858
|
+
- lib/auth0/types/flow_action_stripe_find_customers_type.rb
|
|
1859
|
+
- lib/auth0/types/flow_action_stripe_get_customer.rb
|
|
1860
|
+
- lib/auth0/types/flow_action_stripe_get_customer_action.rb
|
|
1861
|
+
- lib/auth0/types/flow_action_stripe_get_customer_params.rb
|
|
1862
|
+
- lib/auth0/types/flow_action_stripe_get_customer_type.rb
|
|
1863
|
+
- lib/auth0/types/flow_action_stripe_metadata.rb
|
|
1864
|
+
- lib/auth0/types/flow_action_stripe_tax_id.rb
|
|
1865
|
+
- lib/auth0/types/flow_action_stripe_update_customer.rb
|
|
1866
|
+
- lib/auth0/types/flow_action_stripe_update_customer_action.rb
|
|
1867
|
+
- lib/auth0/types/flow_action_stripe_update_customer_params.rb
|
|
1868
|
+
- lib/auth0/types/flow_action_stripe_update_customer_type.rb
|
|
1869
|
+
- lib/auth0/types/flow_action_telegram.rb
|
|
1870
|
+
- lib/auth0/types/flow_action_telegram_send_message.rb
|
|
1871
|
+
- lib/auth0/types/flow_action_telegram_send_message_action.rb
|
|
1872
|
+
- lib/auth0/types/flow_action_telegram_send_message_params.rb
|
|
1873
|
+
- lib/auth0/types/flow_action_telegram_send_message_type.rb
|
|
1874
|
+
- lib/auth0/types/flow_action_twilio.rb
|
|
1875
|
+
- lib/auth0/types/flow_action_twilio_make_call.rb
|
|
1876
|
+
- lib/auth0/types/flow_action_twilio_make_call_action.rb
|
|
1877
|
+
- lib/auth0/types/flow_action_twilio_make_call_params.rb
|
|
1878
|
+
- lib/auth0/types/flow_action_twilio_make_call_type.rb
|
|
1879
|
+
- lib/auth0/types/flow_action_twilio_send_sms.rb
|
|
1880
|
+
- lib/auth0/types/flow_action_twilio_send_sms_action.rb
|
|
1881
|
+
- lib/auth0/types/flow_action_twilio_send_sms_params.rb
|
|
1882
|
+
- lib/auth0/types/flow_action_twilio_send_sms_type.rb
|
|
1883
|
+
- lib/auth0/types/flow_action_whatsapp.rb
|
|
1884
|
+
- lib/auth0/types/flow_action_whatsapp_send_message.rb
|
|
1885
|
+
- lib/auth0/types/flow_action_whatsapp_send_message_action.rb
|
|
1886
|
+
- lib/auth0/types/flow_action_whatsapp_send_message_params.rb
|
|
1887
|
+
- lib/auth0/types/flow_action_whatsapp_send_message_params_payload.rb
|
|
1888
|
+
- lib/auth0/types/flow_action_whatsapp_send_message_params_payload_object.rb
|
|
1889
|
+
- lib/auth0/types/flow_action_whatsapp_send_message_params_type.rb
|
|
1890
|
+
- lib/auth0/types/flow_action_whatsapp_send_message_type.rb
|
|
1891
|
+
- lib/auth0/types/flow_action_xml.rb
|
|
1892
|
+
- lib/auth0/types/flow_action_xml_parse_xml.rb
|
|
1893
|
+
- lib/auth0/types/flow_action_xml_parse_xml_action.rb
|
|
1894
|
+
- lib/auth0/types/flow_action_xml_parse_xml_params.rb
|
|
1895
|
+
- lib/auth0/types/flow_action_xml_parse_xml_type.rb
|
|
1896
|
+
- lib/auth0/types/flow_action_xml_serialize_xml.rb
|
|
1897
|
+
- lib/auth0/types/flow_action_xml_serialize_xml_action.rb
|
|
1898
|
+
- lib/auth0/types/flow_action_xml_serialize_xml_params.rb
|
|
1899
|
+
- lib/auth0/types/flow_action_xml_serialize_xml_params_object.rb
|
|
1900
|
+
- lib/auth0/types/flow_action_xml_serialize_xml_params_object_object.rb
|
|
1901
|
+
- lib/auth0/types/flow_action_xml_serialize_xml_type.rb
|
|
1902
|
+
- lib/auth0/types/flow_action_zapier.rb
|
|
1903
|
+
- lib/auth0/types/flow_action_zapier_trigger_webhook.rb
|
|
1904
|
+
- lib/auth0/types/flow_action_zapier_trigger_webhook_action.rb
|
|
1905
|
+
- lib/auth0/types/flow_action_zapier_trigger_webhook_params.rb
|
|
1906
|
+
- lib/auth0/types/flow_action_zapier_trigger_webhook_params_method.rb
|
|
1907
|
+
- lib/auth0/types/flow_action_zapier_trigger_webhook_type.rb
|
|
1908
|
+
- lib/auth0/types/flow_execution_debug.rb
|
|
1909
|
+
- lib/auth0/types/flow_execution_summary.rb
|
|
1910
|
+
- lib/auth0/types/flow_summary.rb
|
|
1911
|
+
- lib/auth0/types/flows_vault_connectio_setup_api_key.rb
|
|
1912
|
+
- lib/auth0/types/flows_vault_connectio_setup_api_key_with_base_url.rb
|
|
1913
|
+
- lib/auth0/types/flows_vault_connectio_setup_bigquery_oauth_jwt.rb
|
|
1914
|
+
- lib/auth0/types/flows_vault_connectio_setup_http_bearer.rb
|
|
1915
|
+
- lib/auth0/types/flows_vault_connectio_setup_jwt.rb
|
|
1916
|
+
- lib/auth0/types/flows_vault_connectio_setup_jwt_algorithm_enum.rb
|
|
1917
|
+
- lib/auth0/types/flows_vault_connectio_setup_mailjet_api_key.rb
|
|
1918
|
+
- lib/auth0/types/flows_vault_connectio_setup_oauth_app.rb
|
|
1919
|
+
- lib/auth0/types/flows_vault_connectio_setup_oauth_code.rb
|
|
1920
|
+
- lib/auth0/types/flows_vault_connectio_setup_secret_api_key.rb
|
|
1921
|
+
- lib/auth0/types/flows_vault_connectio_setup_stripe_key_pair.rb
|
|
1922
|
+
- lib/auth0/types/flows_vault_connectio_setup_token.rb
|
|
1923
|
+
- lib/auth0/types/flows_vault_connectio_setup_twilio_api_key.rb
|
|
1924
|
+
- lib/auth0/types/flows_vault_connectio_setup_type_api_key_enum.rb
|
|
1925
|
+
- lib/auth0/types/flows_vault_connectio_setup_type_bearer_enum.rb
|
|
1926
|
+
- lib/auth0/types/flows_vault_connectio_setup_type_jwt_enum.rb
|
|
1927
|
+
- lib/auth0/types/flows_vault_connectio_setup_type_key_pair_enum.rb
|
|
1928
|
+
- lib/auth0/types/flows_vault_connectio_setup_type_oauth_app_enum.rb
|
|
1929
|
+
- lib/auth0/types/flows_vault_connectio_setup_type_oauth_code_enum.rb
|
|
1930
|
+
- lib/auth0/types/flows_vault_connectio_setup_type_oauth_jwt_enum.rb
|
|
1931
|
+
- lib/auth0/types/flows_vault_connectio_setup_type_token_enum.rb
|
|
1932
|
+
- lib/auth0/types/flows_vault_connectio_setup_type_webhook_enum.rb
|
|
1933
|
+
- lib/auth0/types/flows_vault_connectio_setup_webhook.rb
|
|
1934
|
+
- lib/auth0/types/flows_vault_connection_app_id_activecampaign_enum.rb
|
|
1935
|
+
- lib/auth0/types/flows_vault_connection_app_id_airtable_enum.rb
|
|
1936
|
+
- lib/auth0/types/flows_vault_connection_app_id_auth0enum.rb
|
|
1937
|
+
- lib/auth0/types/flows_vault_connection_app_id_bigquery_enum.rb
|
|
1938
|
+
- lib/auth0/types/flows_vault_connection_app_id_clearbit_enum.rb
|
|
1939
|
+
- lib/auth0/types/flows_vault_connection_app_id_docusign_enum.rb
|
|
1940
|
+
- lib/auth0/types/flows_vault_connection_app_id_google_sheets_enum.rb
|
|
1941
|
+
- lib/auth0/types/flows_vault_connection_app_id_http_enum.rb
|
|
1942
|
+
- lib/auth0/types/flows_vault_connection_app_id_hubspot_enum.rb
|
|
1943
|
+
- lib/auth0/types/flows_vault_connection_app_id_jwt_enum.rb
|
|
1944
|
+
- lib/auth0/types/flows_vault_connection_app_id_mailchimp_enum.rb
|
|
1945
|
+
- lib/auth0/types/flows_vault_connection_app_id_mailjet_enum.rb
|
|
1946
|
+
- lib/auth0/types/flows_vault_connection_app_id_pipedrive_enum.rb
|
|
1947
|
+
- lib/auth0/types/flows_vault_connection_app_id_salesforce_enum.rb
|
|
1948
|
+
- lib/auth0/types/flows_vault_connection_app_id_sendgrid_enum.rb
|
|
1949
|
+
- lib/auth0/types/flows_vault_connection_app_id_slack_enum.rb
|
|
1950
|
+
- lib/auth0/types/flows_vault_connection_app_id_stripe_enum.rb
|
|
1951
|
+
- lib/auth0/types/flows_vault_connection_app_id_telegram_enum.rb
|
|
1952
|
+
- lib/auth0/types/flows_vault_connection_app_id_twilio_enum.rb
|
|
1953
|
+
- lib/auth0/types/flows_vault_connection_app_id_whatsapp_enum.rb
|
|
1954
|
+
- lib/auth0/types/flows_vault_connection_app_id_zapier_enum.rb
|
|
1955
|
+
- lib/auth0/types/flows_vault_connection_http_api_key_setup.rb
|
|
1956
|
+
- lib/auth0/types/flows_vault_connection_http_api_key_setup_in_enum.rb
|
|
1957
|
+
- lib/auth0/types/flows_vault_connection_http_basic_auth_setup.rb
|
|
1958
|
+
- lib/auth0/types/flows_vault_connection_http_oauth_client_credentials_setup.rb
|
|
1959
|
+
- lib/auth0/types/flows_vault_connection_setup_type_api_key_enum.rb
|
|
1960
|
+
- lib/auth0/types/flows_vault_connection_setup_type_basic_auth_enum.rb
|
|
1961
|
+
- lib/auth0/types/flows_vault_connection_setup_type_oauth_client_credentials_enum.rb
|
|
1962
|
+
- lib/auth0/types/flows_vault_connection_summary.rb
|
|
1963
|
+
- lib/auth0/types/form_block.rb
|
|
1964
|
+
- lib/auth0/types/form_block_divider.rb
|
|
1965
|
+
- lib/auth0/types/form_block_divider_config.rb
|
|
1966
|
+
- lib/auth0/types/form_block_html.rb
|
|
1967
|
+
- lib/auth0/types/form_block_html_config.rb
|
|
1968
|
+
- lib/auth0/types/form_block_image.rb
|
|
1969
|
+
- lib/auth0/types/form_block_image_config.rb
|
|
1970
|
+
- lib/auth0/types/form_block_image_config_position_enum.rb
|
|
1971
|
+
- lib/auth0/types/form_block_jump_button.rb
|
|
1972
|
+
- lib/auth0/types/form_block_jump_button_config.rb
|
|
1973
|
+
- lib/auth0/types/form_block_jump_button_config_style.rb
|
|
1974
|
+
- lib/auth0/types/form_block_next_button.rb
|
|
1975
|
+
- lib/auth0/types/form_block_next_button_config.rb
|
|
1976
|
+
- lib/auth0/types/form_block_previous_button.rb
|
|
1977
|
+
- lib/auth0/types/form_block_previous_button_config.rb
|
|
1978
|
+
- lib/auth0/types/form_block_resend_button.rb
|
|
1979
|
+
- lib/auth0/types/form_block_resend_button_config.rb
|
|
1980
|
+
- lib/auth0/types/form_block_resend_button_config_text_alignment_enum.rb
|
|
1981
|
+
- lib/auth0/types/form_block_rich_text.rb
|
|
1982
|
+
- lib/auth0/types/form_block_rich_text_config.rb
|
|
1983
|
+
- lib/auth0/types/form_block_type_divider_const.rb
|
|
1984
|
+
- lib/auth0/types/form_block_type_html_const.rb
|
|
1985
|
+
- lib/auth0/types/form_block_type_image_const.rb
|
|
1986
|
+
- lib/auth0/types/form_block_type_jump_button_const.rb
|
|
1987
|
+
- lib/auth0/types/form_block_type_next_button_const.rb
|
|
1988
|
+
- lib/auth0/types/form_block_type_previous_button_const.rb
|
|
1989
|
+
- lib/auth0/types/form_block_type_resend_button_const.rb
|
|
1990
|
+
- lib/auth0/types/form_block_type_rich_text_const.rb
|
|
1991
|
+
- lib/auth0/types/form_component.rb
|
|
1992
|
+
- lib/auth0/types/form_component_category_block_const.rb
|
|
1993
|
+
- lib/auth0/types/form_component_category_field_const.rb
|
|
1994
|
+
- lib/auth0/types/form_component_category_widget_const.rb
|
|
1995
|
+
- lib/auth0/types/form_ending_node.rb
|
|
1996
|
+
- lib/auth0/types/form_ending_node_after_submit.rb
|
|
1997
|
+
- lib/auth0/types/form_ending_node_id.rb
|
|
1998
|
+
- lib/auth0/types/form_ending_node_nullable.rb
|
|
1999
|
+
- lib/auth0/types/form_ending_node_redirection.rb
|
|
2000
|
+
- lib/auth0/types/form_ending_node_resume_flow_true_const.rb
|
|
2001
|
+
- lib/auth0/types/form_field.rb
|
|
2002
|
+
- lib/auth0/types/form_field_boolean.rb
|
|
2003
|
+
- lib/auth0/types/form_field_boolean_config.rb
|
|
2004
|
+
- lib/auth0/types/form_field_boolean_config_options.rb
|
|
2005
|
+
- lib/auth0/types/form_field_cards.rb
|
|
2006
|
+
- lib/auth0/types/form_field_cards_config.rb
|
|
2007
|
+
- lib/auth0/types/form_field_cards_config_option.rb
|
|
2008
|
+
- lib/auth0/types/form_field_choice.rb
|
|
2009
|
+
- lib/auth0/types/form_field_choice_config.rb
|
|
2010
|
+
- lib/auth0/types/form_field_choice_config_allow_other.rb
|
|
2011
|
+
- lib/auth0/types/form_field_choice_config_allow_other_enabled_true_enum.rb
|
|
2012
|
+
- lib/auth0/types/form_field_choice_config_option.rb
|
|
2013
|
+
- lib/auth0/types/form_field_custom.rb
|
|
2014
|
+
- lib/auth0/types/form_field_custom_config.rb
|
|
2015
|
+
- lib/auth0/types/form_field_custom_config_params.rb
|
|
2016
|
+
- lib/auth0/types/form_field_custom_config_schema.rb
|
|
2017
|
+
- lib/auth0/types/form_field_date.rb
|
|
2018
|
+
- lib/auth0/types/form_field_date_config.rb
|
|
2019
|
+
- lib/auth0/types/form_field_date_config_format_enum.rb
|
|
2020
|
+
- lib/auth0/types/form_field_dropdown.rb
|
|
2021
|
+
- lib/auth0/types/form_field_dropdown_config.rb
|
|
2022
|
+
- lib/auth0/types/form_field_dropdown_config_option.rb
|
|
2023
|
+
- lib/auth0/types/form_field_email.rb
|
|
2024
|
+
- lib/auth0/types/form_field_email_config.rb
|
|
2025
|
+
- lib/auth0/types/form_field_file.rb
|
|
2026
|
+
- lib/auth0/types/form_field_file_config.rb
|
|
2027
|
+
- lib/auth0/types/form_field_file_config_category_enum.rb
|
|
2028
|
+
- lib/auth0/types/form_field_file_config_storage.rb
|
|
2029
|
+
- lib/auth0/types/form_field_file_config_storage_type_enum.rb
|
|
2030
|
+
- lib/auth0/types/form_field_legal.rb
|
|
2031
|
+
- lib/auth0/types/form_field_legal_config.rb
|
|
2032
|
+
- lib/auth0/types/form_field_number.rb
|
|
2033
|
+
- lib/auth0/types/form_field_number_config.rb
|
|
2034
|
+
- lib/auth0/types/form_field_password.rb
|
|
2035
|
+
- lib/auth0/types/form_field_password_config.rb
|
|
2036
|
+
- lib/auth0/types/form_field_password_config_hash_enum.rb
|
|
2037
|
+
- lib/auth0/types/form_field_payment.rb
|
|
2038
|
+
- lib/auth0/types/form_field_payment_config.rb
|
|
2039
|
+
- lib/auth0/types/form_field_payment_config_charge.rb
|
|
2040
|
+
- lib/auth0/types/form_field_payment_config_charge_one_off.rb
|
|
2041
|
+
- lib/auth0/types/form_field_payment_config_charge_one_off_currency_enum.rb
|
|
2042
|
+
- lib/auth0/types/form_field_payment_config_charge_one_off_one_off.rb
|
|
2043
|
+
- lib/auth0/types/form_field_payment_config_charge_one_off_one_off_amount.rb
|
|
2044
|
+
- lib/auth0/types/form_field_payment_config_charge_subscription.rb
|
|
2045
|
+
- lib/auth0/types/form_field_payment_config_charge_type_one_off_const.rb
|
|
2046
|
+
- lib/auth0/types/form_field_payment_config_charge_type_subscription_const.rb
|
|
2047
|
+
- lib/auth0/types/form_field_payment_config_credentials.rb
|
|
2048
|
+
- lib/auth0/types/form_field_payment_config_customer.rb
|
|
2049
|
+
- lib/auth0/types/form_field_payment_config_field_properties.rb
|
|
2050
|
+
- lib/auth0/types/form_field_payment_config_fields.rb
|
|
2051
|
+
- lib/auth0/types/form_field_payment_config_provider_enum.rb
|
|
2052
|
+
- lib/auth0/types/form_field_payment_config_subscription.rb
|
|
2053
|
+
- lib/auth0/types/form_field_social.rb
|
|
2054
|
+
- lib/auth0/types/form_field_social_config.rb
|
|
2055
|
+
- lib/auth0/types/form_field_tel.rb
|
|
2056
|
+
- lib/auth0/types/form_field_tel_config.rb
|
|
2057
|
+
- lib/auth0/types/form_field_tel_config_strings.rb
|
|
2058
|
+
- lib/auth0/types/form_field_text.rb
|
|
2059
|
+
- lib/auth0/types/form_field_text_config.rb
|
|
2060
|
+
- lib/auth0/types/form_field_type_boolean_const.rb
|
|
2061
|
+
- lib/auth0/types/form_field_type_cards_const.rb
|
|
2062
|
+
- lib/auth0/types/form_field_type_choice_const.rb
|
|
2063
|
+
- lib/auth0/types/form_field_type_custom_const.rb
|
|
2064
|
+
- lib/auth0/types/form_field_type_date_const.rb
|
|
2065
|
+
- lib/auth0/types/form_field_type_dropdown_const.rb
|
|
2066
|
+
- lib/auth0/types/form_field_type_email_const.rb
|
|
2067
|
+
- lib/auth0/types/form_field_type_file_const.rb
|
|
2068
|
+
- lib/auth0/types/form_field_type_legal_const.rb
|
|
2069
|
+
- lib/auth0/types/form_field_type_number_const.rb
|
|
2070
|
+
- lib/auth0/types/form_field_type_password_const.rb
|
|
2071
|
+
- lib/auth0/types/form_field_type_payment_const.rb
|
|
2072
|
+
- lib/auth0/types/form_field_type_social_const.rb
|
|
2073
|
+
- lib/auth0/types/form_field_type_tel_const.rb
|
|
2074
|
+
- lib/auth0/types/form_field_type_text_const.rb
|
|
2075
|
+
- lib/auth0/types/form_field_type_url_const.rb
|
|
2076
|
+
- lib/auth0/types/form_field_url.rb
|
|
2077
|
+
- lib/auth0/types/form_field_url_config.rb
|
|
2078
|
+
- lib/auth0/types/form_flow.rb
|
|
2079
|
+
- lib/auth0/types/form_flow_config.rb
|
|
2080
|
+
- lib/auth0/types/form_hidden_field.rb
|
|
2081
|
+
- lib/auth0/types/form_languages.rb
|
|
2082
|
+
- lib/auth0/types/form_languages_nullable.rb
|
|
2083
|
+
- lib/auth0/types/form_messages.rb
|
|
2084
|
+
- lib/auth0/types/form_messages_custom.rb
|
|
2085
|
+
- lib/auth0/types/form_messages_error.rb
|
|
2086
|
+
- lib/auth0/types/form_messages_nullable.rb
|
|
2087
|
+
- lib/auth0/types/form_node.rb
|
|
2088
|
+
- lib/auth0/types/form_node_coordinates.rb
|
|
2089
|
+
- lib/auth0/types/form_node_list.rb
|
|
2090
|
+
- lib/auth0/types/form_node_list_nullable.rb
|
|
2091
|
+
- lib/auth0/types/form_node_pointer.rb
|
|
2092
|
+
- lib/auth0/types/form_node_type_flow_const.rb
|
|
2093
|
+
- lib/auth0/types/form_node_type_router_const.rb
|
|
2094
|
+
- lib/auth0/types/form_node_type_step_const.rb
|
|
2095
|
+
- lib/auth0/types/form_router.rb
|
|
2096
|
+
- lib/auth0/types/form_router_config.rb
|
|
2097
|
+
- lib/auth0/types/form_router_rule.rb
|
|
2098
|
+
- lib/auth0/types/form_start_node.rb
|
|
2099
|
+
- lib/auth0/types/form_start_node_nullable.rb
|
|
2100
|
+
- lib/auth0/types/form_step.rb
|
|
2101
|
+
- lib/auth0/types/form_step_component_list.rb
|
|
2102
|
+
- lib/auth0/types/form_step_config.rb
|
|
2103
|
+
- lib/auth0/types/form_style.rb
|
|
2104
|
+
- lib/auth0/types/form_style_nullable.rb
|
|
2105
|
+
- lib/auth0/types/form_summary.rb
|
|
2106
|
+
- lib/auth0/types/form_translations.rb
|
|
2107
|
+
- lib/auth0/types/form_translations_nullable.rb
|
|
2108
|
+
- lib/auth0/types/form_widget.rb
|
|
2109
|
+
- lib/auth0/types/form_widget_auth0verifiable_credentials.rb
|
|
2110
|
+
- lib/auth0/types/form_widget_auth0verifiable_credentials_config.rb
|
|
2111
|
+
- lib/auth0/types/form_widget_g_maps_address.rb
|
|
2112
|
+
- lib/auth0/types/form_widget_g_maps_address_config.rb
|
|
2113
|
+
- lib/auth0/types/form_widget_recaptcha.rb
|
|
2114
|
+
- lib/auth0/types/form_widget_recaptcha_config.rb
|
|
2115
|
+
- lib/auth0/types/form_widget_type_auth0verifiable_credentials_const.rb
|
|
2116
|
+
- lib/auth0/types/form_widget_type_g_maps_address_const.rb
|
|
2117
|
+
- lib/auth0/types/form_widget_type_recaptcha_const.rb
|
|
2118
|
+
- lib/auth0/types/forms_request_parameters_hydrate_enum.rb
|
|
2119
|
+
- lib/auth0/types/get_action_execution_response_content.rb
|
|
2120
|
+
- lib/auth0/types/get_action_module_actions_response_content.rb
|
|
2121
|
+
- lib/auth0/types/get_action_module_response_content.rb
|
|
2122
|
+
- lib/auth0/types/get_action_module_version_response_content.rb
|
|
2123
|
+
- lib/auth0/types/get_action_module_versions_response_content.rb
|
|
2124
|
+
- lib/auth0/types/get_action_modules_response_content.rb
|
|
2125
|
+
- lib/auth0/types/get_action_response_content.rb
|
|
2126
|
+
- lib/auth0/types/get_action_version_response_content.rb
|
|
2127
|
+
- lib/auth0/types/get_active_users_count_stats_response_content.rb
|
|
2128
|
+
- lib/auth0/types/get_acul_response_content.rb
|
|
2129
|
+
- lib/auth0/types/get_attack_protection_captcha_response_content.rb
|
|
2130
|
+
- lib/auth0/types/get_bot_detection_settings_response_content.rb
|
|
2131
|
+
- lib/auth0/types/get_branding_default_theme_response_content.rb
|
|
2132
|
+
- lib/auth0/types/get_branding_phone_provider_response_content.rb
|
|
2133
|
+
- lib/auth0/types/get_branding_response_content.rb
|
|
2134
|
+
- lib/auth0/types/get_branding_theme_response_content.rb
|
|
2135
|
+
- lib/auth0/types/get_breached_password_detection_settings_response_content.rb
|
|
2136
|
+
- lib/auth0/types/get_brute_force_settings_response_content.rb
|
|
2137
|
+
- lib/auth0/types/get_client_credential_response_content.rb
|
|
2138
|
+
- lib/auth0/types/get_client_grant_response_content.rb
|
|
2139
|
+
- lib/auth0/types/get_client_response_content.rb
|
|
2140
|
+
- lib/auth0/types/get_connection_enabled_clients_response_content.rb
|
|
2141
|
+
- lib/auth0/types/get_connection_profile_response_content.rb
|
|
2142
|
+
- lib/auth0/types/get_connection_profile_template_response_content.rb
|
|
2143
|
+
- lib/auth0/types/get_connection_response_content.rb
|
|
2144
|
+
- lib/auth0/types/get_custom_domain_response_content.rb
|
|
2145
|
+
- lib/auth0/types/get_custom_signing_keys_response_content.rb
|
|
2146
|
+
- lib/auth0/types/get_custom_texts_by_language_response_content.rb
|
|
2147
|
+
- lib/auth0/types/get_default_canonical_domain_response_content.rb
|
|
2148
|
+
- lib/auth0/types/get_default_custom_domain_response_content.rb
|
|
2149
|
+
- lib/auth0/types/get_default_domain_response_content.rb
|
|
2150
|
+
- lib/auth0/types/get_directory_provisioning_default_mapping_response_content.rb
|
|
2151
|
+
- lib/auth0/types/get_directory_provisioning_response_content.rb
|
|
2152
|
+
- lib/auth0/types/get_email_provider_response_content.rb
|
|
2153
|
+
- lib/auth0/types/get_email_template_response_content.rb
|
|
2154
|
+
- lib/auth0/types/get_encryption_key_response_content.rb
|
|
2155
|
+
- lib/auth0/types/get_event_stream_delivery_history_response_content.rb
|
|
2156
|
+
- lib/auth0/types/get_event_stream_response_content.rb
|
|
2157
|
+
- lib/auth0/types/get_flow_execution_request_parameters_hydrate_enum.rb
|
|
2158
|
+
- lib/auth0/types/get_flow_execution_response_content.rb
|
|
2159
|
+
- lib/auth0/types/get_flow_request_parameters_hydrate_enum.rb
|
|
2160
|
+
- lib/auth0/types/get_flow_response_content.rb
|
|
2161
|
+
- lib/auth0/types/get_flows_vault_connection_response_content.rb
|
|
2162
|
+
- lib/auth0/types/get_form_response_content.rb
|
|
2163
|
+
- lib/auth0/types/get_group_members_response_content.rb
|
|
2164
|
+
- lib/auth0/types/get_group_response_content.rb
|
|
2165
|
+
- lib/auth0/types/get_guardian_enrollment_response_content.rb
|
|
2166
|
+
- lib/auth0/types/get_guardian_factor_duo_settings_response_content.rb
|
|
2167
|
+
- lib/auth0/types/get_guardian_factor_phone_message_types_response_content.rb
|
|
2168
|
+
- lib/auth0/types/get_guardian_factor_phone_templates_response_content.rb
|
|
2169
|
+
- lib/auth0/types/get_guardian_factor_sms_templates_response_content.rb
|
|
2170
|
+
- lib/auth0/types/get_guardian_factors_provider_apns_response_content.rb
|
|
2171
|
+
- lib/auth0/types/get_guardian_factors_provider_phone_response_content.rb
|
|
2172
|
+
- lib/auth0/types/get_guardian_factors_provider_phone_twilio_response_content.rb
|
|
2173
|
+
- lib/auth0/types/get_guardian_factors_provider_push_notification_response_content.rb
|
|
2174
|
+
- lib/auth0/types/get_guardian_factors_provider_sms_response_content.rb
|
|
2175
|
+
- lib/auth0/types/get_guardian_factors_provider_sms_twilio_response_content.rb
|
|
2176
|
+
- lib/auth0/types/get_guardian_factors_provider_sns_response_content.rb
|
|
2177
|
+
- lib/auth0/types/get_hook_response_content.rb
|
|
2178
|
+
- lib/auth0/types/get_hook_secret_response_content.rb
|
|
2179
|
+
- lib/auth0/types/get_job_error_response_content.rb
|
|
2180
|
+
- lib/auth0/types/get_job_generic_error_response_content.rb
|
|
2181
|
+
- lib/auth0/types/get_job_import_user_error.rb
|
|
2182
|
+
- lib/auth0/types/get_job_response_content.rb
|
|
2183
|
+
- lib/auth0/types/get_job_summary.rb
|
|
2184
|
+
- lib/auth0/types/get_job_user_error.rb
|
|
2185
|
+
- lib/auth0/types/get_log_response_content.rb
|
|
2186
|
+
- lib/auth0/types/get_log_stream_response_content.rb
|
|
2187
|
+
- lib/auth0/types/get_network_acls_response_content.rb
|
|
2188
|
+
- lib/auth0/types/get_organization_all_connection_response_content.rb
|
|
2189
|
+
- lib/auth0/types/get_organization_by_name_response_content.rb
|
|
2190
|
+
- lib/auth0/types/get_organization_connection_response_content.rb
|
|
2191
|
+
- lib/auth0/types/get_organization_discovery_domain_by_name_response_content.rb
|
|
2192
|
+
- lib/auth0/types/get_organization_discovery_domain_response_content.rb
|
|
2193
|
+
- lib/auth0/types/get_organization_invitation_response_content.rb
|
|
2194
|
+
- lib/auth0/types/get_organization_response_content.rb
|
|
2195
|
+
- lib/auth0/types/get_partials_response_content.rb
|
|
2196
|
+
- lib/auth0/types/get_phone_template_response_content.rb
|
|
2197
|
+
- lib/auth0/types/get_refresh_token_response_content.rb
|
|
2198
|
+
- lib/auth0/types/get_refresh_tokens_paginated_response_content.rb
|
|
2199
|
+
- lib/auth0/types/get_resource_server_response_content.rb
|
|
2200
|
+
- lib/auth0/types/get_risk_assessments_settings_new_device_response_content.rb
|
|
2201
|
+
- lib/auth0/types/get_risk_assessments_settings_response_content.rb
|
|
2202
|
+
- lib/auth0/types/get_role_response_content.rb
|
|
2203
|
+
- lib/auth0/types/get_rule_response_content.rb
|
|
2204
|
+
- lib/auth0/types/get_scim_configuration_default_mapping_response_content.rb
|
|
2205
|
+
- lib/auth0/types/get_scim_configuration_response_content.rb
|
|
2206
|
+
- lib/auth0/types/get_scim_tokens_response_content.rb
|
|
2207
|
+
- lib/auth0/types/get_self_service_profile_response_content.rb
|
|
2208
|
+
- lib/auth0/types/get_session_response_content.rb
|
|
2209
|
+
- lib/auth0/types/get_settings_response_content.rb
|
|
2210
|
+
- lib/auth0/types/get_signing_keys_response_content.rb
|
|
2211
|
+
- lib/auth0/types/get_supplemental_signals_response_content.rb
|
|
2212
|
+
- lib/auth0/types/get_suspicious_ip_throttling_settings_response_content.rb
|
|
2213
|
+
- lib/auth0/types/get_tenant_settings_response_content.rb
|
|
2214
|
+
- lib/auth0/types/get_token_exchange_profile_response_content.rb
|
|
2215
|
+
- lib/auth0/types/get_universal_login_template.rb
|
|
2216
|
+
- lib/auth0/types/get_universal_login_template_response_content.rb
|
|
2217
|
+
- lib/auth0/types/get_user_attribute_profile_response_content.rb
|
|
2218
|
+
- lib/auth0/types/get_user_attribute_profile_template_response_content.rb
|
|
2219
|
+
- lib/auth0/types/get_user_authentication_method_response_content.rb
|
|
2220
|
+
- lib/auth0/types/get_user_groups_paginated_response_content.rb
|
|
2221
|
+
- lib/auth0/types/get_user_response_content.rb
|
|
2222
|
+
- lib/auth0/types/get_verifiable_credential_template_response_content.rb
|
|
2223
|
+
- lib/auth0/types/group.rb
|
|
2224
|
+
- lib/auth0/types/group_member.rb
|
|
2225
|
+
- lib/auth0/types/group_member_type_enum.rb
|
|
2226
|
+
- lib/auth0/types/group_type_enum.rb
|
|
2227
|
+
- lib/auth0/types/guardian_enrollment_date.rb
|
|
2228
|
+
- lib/auth0/types/guardian_enrollment_factor_enum.rb
|
|
2229
|
+
- lib/auth0/types/guardian_enrollment_status.rb
|
|
2230
|
+
- lib/auth0/types/guardian_factor.rb
|
|
2231
|
+
- lib/auth0/types/guardian_factor_name_enum.rb
|
|
2232
|
+
- lib/auth0/types/guardian_factor_phone_factor_message_type_enum.rb
|
|
2233
|
+
- lib/auth0/types/guardian_factors_provider_push_notification_provider_data_enum.rb
|
|
2234
|
+
- lib/auth0/types/guardian_factors_provider_sms_provider_enum.rb
|
|
2235
|
+
- lib/auth0/types/hook.rb
|
|
2236
|
+
- lib/auth0/types/hook_dependencies.rb
|
|
2237
|
+
- lib/auth0/types/hook_trigger_id_enum.rb
|
|
2238
|
+
- lib/auth0/types/http_custom_header.rb
|
|
2239
|
+
- lib/auth0/types/identity.rb
|
|
2240
|
+
- lib/auth0/types/identity_provider_enum.rb
|
|
2241
|
+
- lib/auth0/types/identity_provider_only_auth0enum.rb
|
|
2242
|
+
- lib/auth0/types/import_encryption_key_response_content.rb
|
|
2243
|
+
- lib/auth0/types/integration.rb
|
|
2244
|
+
- lib/auth0/types/integration_feature_type_enum.rb
|
|
2245
|
+
- lib/auth0/types/integration_release.rb
|
|
2246
|
+
- lib/auth0/types/integration_required_param.rb
|
|
2247
|
+
- lib/auth0/types/integration_required_param_option.rb
|
|
2248
|
+
- lib/auth0/types/integration_required_param_type_enum.rb
|
|
2249
|
+
- lib/auth0/types/integration_sem_ver.rb
|
|
2250
|
+
- lib/auth0/types/job_file_format_enum.rb
|
|
2251
|
+
- lib/auth0/types/linked_client_configuration.rb
|
|
2252
|
+
- lib/auth0/types/list_action_bindings_paginated_response_content.rb
|
|
2253
|
+
- lib/auth0/types/list_action_triggers_response_content.rb
|
|
2254
|
+
- lib/auth0/types/list_action_versions_paginated_response_content.rb
|
|
2255
|
+
- lib/auth0/types/list_actions_paginated_response_content.rb
|
|
2256
|
+
- lib/auth0/types/list_aculs_offset_paginated_response_content.rb
|
|
2257
|
+
- lib/auth0/types/list_aculs_response_content_item.rb
|
|
2258
|
+
- lib/auth0/types/list_branding_phone_providers_response_content.rb
|
|
2259
|
+
- lib/auth0/types/list_client_connections_response_content.rb
|
|
2260
|
+
- lib/auth0/types/list_client_grant_organizations_paginated_response_content.rb
|
|
2261
|
+
- lib/auth0/types/list_client_grant_paginated_response_content.rb
|
|
2262
|
+
- lib/auth0/types/list_clients_offset_paginated_response_content.rb
|
|
2263
|
+
- lib/auth0/types/list_connection_profile_template_response_content.rb
|
|
2264
|
+
- lib/auth0/types/list_connection_profiles_paginated_response_content.rb
|
|
2265
|
+
- lib/auth0/types/list_connections_checkpoint_paginated_response_content.rb
|
|
2266
|
+
- lib/auth0/types/list_custom_domains_response_content.rb
|
|
2267
|
+
- lib/auth0/types/list_device_credentials_offset_paginated_response_content.rb
|
|
2268
|
+
- lib/auth0/types/list_directory_provisionings_response_content.rb
|
|
2269
|
+
- lib/auth0/types/list_encryption_key_offset_paginated_response_content.rb
|
|
2270
|
+
- lib/auth0/types/list_event_streams_response_content.rb
|
|
2271
|
+
- lib/auth0/types/list_flow_executions_paginated_response_content.rb
|
|
2272
|
+
- lib/auth0/types/list_flows_offset_paginated_response_content.rb
|
|
2273
|
+
- lib/auth0/types/list_flows_request_parameters_hydrate_enum.rb
|
|
2274
|
+
- lib/auth0/types/list_flows_vault_connections_offset_paginated_response_content.rb
|
|
2275
|
+
- lib/auth0/types/list_forms_offset_paginated_response_content.rb
|
|
2276
|
+
- lib/auth0/types/list_groups_paginated_response_content.rb
|
|
2277
|
+
- lib/auth0/types/list_guardian_policies_response_content.rb
|
|
2278
|
+
- lib/auth0/types/list_hooks_offset_paginated_response_content.rb
|
|
2279
|
+
- lib/auth0/types/list_log_offset_paginated_response_content.rb
|
|
2280
|
+
- lib/auth0/types/list_network_acls_offset_paginated_response_content.rb
|
|
2281
|
+
- lib/auth0/types/list_organization_all_connections_offset_paginated_response_content.rb
|
|
2282
|
+
- lib/auth0/types/list_organization_client_grants_offset_paginated_response_content.rb
|
|
2283
|
+
- lib/auth0/types/list_organization_connections_offset_paginated_response_content.rb
|
|
2284
|
+
- lib/auth0/types/list_organization_discovery_domains_response_content.rb
|
|
2285
|
+
- lib/auth0/types/list_organization_invitations_offset_paginated_response_content.rb
|
|
2286
|
+
- lib/auth0/types/list_organization_member_roles_offset_paginated_response_content.rb
|
|
2287
|
+
- lib/auth0/types/list_organization_members_paginated_response_content.rb
|
|
2288
|
+
- lib/auth0/types/list_organizations_paginated_response_content.rb
|
|
2289
|
+
- lib/auth0/types/list_phone_templates_response_content.rb
|
|
2290
|
+
- lib/auth0/types/list_refresh_tokens_paginated_response_content.rb
|
|
2291
|
+
- lib/auth0/types/list_resource_server_offset_paginated_response_content.rb
|
|
2292
|
+
- lib/auth0/types/list_role_permissions_offset_paginated_response_content.rb
|
|
2293
|
+
- lib/auth0/types/list_role_users_paginated_response_content.rb
|
|
2294
|
+
- lib/auth0/types/list_roles_offset_paginated_response_content.rb
|
|
2295
|
+
- lib/auth0/types/list_rules_offset_paginated_response_content.rb
|
|
2296
|
+
- lib/auth0/types/list_scim_configurations_response_content.rb
|
|
2297
|
+
- lib/auth0/types/list_self_service_profile_custom_text_response_content.rb
|
|
2298
|
+
- lib/auth0/types/list_self_service_profiles_paginated_response_content.rb
|
|
2299
|
+
- lib/auth0/types/list_synchronized_groups_response_content.rb
|
|
2300
|
+
- lib/auth0/types/list_token_exchange_profile_response_content.rb
|
|
2301
|
+
- lib/auth0/types/list_user_attribute_profile_template_response_content.rb
|
|
2302
|
+
- lib/auth0/types/list_user_attribute_profiles_paginated_response_content.rb
|
|
2303
|
+
- lib/auth0/types/list_user_authentication_methods_offset_paginated_response_content.rb
|
|
2304
|
+
- lib/auth0/types/list_user_blocks_by_identifier_response_content.rb
|
|
2305
|
+
- lib/auth0/types/list_user_blocks_response_content.rb
|
|
2306
|
+
- lib/auth0/types/list_user_connected_accounts_response_content.rb
|
|
2307
|
+
- lib/auth0/types/list_user_grants_offset_paginated_response_content.rb
|
|
2308
|
+
- lib/auth0/types/list_user_organizations_offset_paginated_response_content.rb
|
|
2309
|
+
- lib/auth0/types/list_user_permissions_offset_paginated_response_content.rb
|
|
2310
|
+
- lib/auth0/types/list_user_roles_offset_paginated_response_content.rb
|
|
2311
|
+
- lib/auth0/types/list_user_sessions_paginated_response_content.rb
|
|
2312
|
+
- lib/auth0/types/list_users_offset_paginated_response_content.rb
|
|
2313
|
+
- lib/auth0/types/list_verifiable_credential_templates_paginated_response_content.rb
|
|
2314
|
+
- lib/auth0/types/log.rb
|
|
2315
|
+
- lib/auth0/types/log_date.rb
|
|
2316
|
+
- lib/auth0/types/log_date_object.rb
|
|
2317
|
+
- lib/auth0/types/log_details.rb
|
|
2318
|
+
- lib/auth0/types/log_location_info.rb
|
|
2319
|
+
- lib/auth0/types/log_security_context.rb
|
|
2320
|
+
- lib/auth0/types/log_stream_datadog_enum.rb
|
|
2321
|
+
- lib/auth0/types/log_stream_datadog_region_enum.rb
|
|
2322
|
+
- lib/auth0/types/log_stream_datadog_response_schema.rb
|
|
2323
|
+
- lib/auth0/types/log_stream_datadog_sink.rb
|
|
2324
|
+
- lib/auth0/types/log_stream_event_bridge_enum.rb
|
|
2325
|
+
- lib/auth0/types/log_stream_event_bridge_response_schema.rb
|
|
2326
|
+
- lib/auth0/types/log_stream_event_bridge_sink.rb
|
|
2327
|
+
- lib/auth0/types/log_stream_event_bridge_sink_region_enum.rb
|
|
2328
|
+
- lib/auth0/types/log_stream_event_grid_enum.rb
|
|
2329
|
+
- lib/auth0/types/log_stream_event_grid_region_enum.rb
|
|
2330
|
+
- lib/auth0/types/log_stream_event_grid_response_schema.rb
|
|
2331
|
+
- lib/auth0/types/log_stream_event_grid_sink.rb
|
|
2332
|
+
- lib/auth0/types/log_stream_filter.rb
|
|
2333
|
+
- lib/auth0/types/log_stream_filter_group_name_enum.rb
|
|
2334
|
+
- lib/auth0/types/log_stream_filter_type_enum.rb
|
|
2335
|
+
- lib/auth0/types/log_stream_http_content_format_enum.rb
|
|
2336
|
+
- lib/auth0/types/log_stream_http_enum.rb
|
|
2337
|
+
- lib/auth0/types/log_stream_http_response_schema.rb
|
|
2338
|
+
- lib/auth0/types/log_stream_http_sink.rb
|
|
2339
|
+
- lib/auth0/types/log_stream_mixpanel_enum.rb
|
|
2340
|
+
- lib/auth0/types/log_stream_mixpanel_region_enum.rb
|
|
2341
|
+
- lib/auth0/types/log_stream_mixpanel_response_schema.rb
|
|
2342
|
+
- lib/auth0/types/log_stream_mixpanel_sink.rb
|
|
2343
|
+
- lib/auth0/types/log_stream_mixpanel_sink_patch.rb
|
|
2344
|
+
- lib/auth0/types/log_stream_pii_algorithm_enum.rb
|
|
2345
|
+
- lib/auth0/types/log_stream_pii_config.rb
|
|
2346
|
+
- lib/auth0/types/log_stream_pii_log_fields_enum.rb
|
|
2347
|
+
- lib/auth0/types/log_stream_pii_method_enum.rb
|
|
2348
|
+
- lib/auth0/types/log_stream_response_schema.rb
|
|
2349
|
+
- lib/auth0/types/log_stream_segment_enum.rb
|
|
2350
|
+
- lib/auth0/types/log_stream_segment_response_schema.rb
|
|
2351
|
+
- lib/auth0/types/log_stream_segment_sink.rb
|
|
2352
|
+
- lib/auth0/types/log_stream_segment_sink_write_key.rb
|
|
2353
|
+
- lib/auth0/types/log_stream_sink_patch.rb
|
|
2354
|
+
- lib/auth0/types/log_stream_splunk_enum.rb
|
|
2355
|
+
- lib/auth0/types/log_stream_splunk_response_schema.rb
|
|
2356
|
+
- lib/auth0/types/log_stream_splunk_sink.rb
|
|
2357
|
+
- lib/auth0/types/log_stream_status_enum.rb
|
|
2358
|
+
- lib/auth0/types/log_stream_sumo_enum.rb
|
|
2359
|
+
- lib/auth0/types/log_stream_sumo_response_schema.rb
|
|
2360
|
+
- lib/auth0/types/log_stream_sumo_sink.rb
|
|
2361
|
+
- lib/auth0/types/mdl_presentation_properties.rb
|
|
2362
|
+
- lib/auth0/types/mdl_presentation_request.rb
|
|
2363
|
+
- lib/auth0/types/mdl_presentation_request_properties.rb
|
|
2364
|
+
- lib/auth0/types/mfa_policy_enum.rb
|
|
2365
|
+
- lib/auth0/types/native_social_login.rb
|
|
2366
|
+
- lib/auth0/types/native_social_login_apple.rb
|
|
2367
|
+
- lib/auth0/types/native_social_login_facebook.rb
|
|
2368
|
+
- lib/auth0/types/native_social_login_google.rb
|
|
2369
|
+
- lib/auth0/types/network_acl_action.rb
|
|
2370
|
+
- lib/auth0/types/network_acl_action_allow_enum.rb
|
|
2371
|
+
- lib/auth0/types/network_acl_action_block_enum.rb
|
|
2372
|
+
- lib/auth0/types/network_acl_action_log_enum.rb
|
|
2373
|
+
- lib/auth0/types/network_acl_action_redirect_enum.rb
|
|
2374
|
+
- lib/auth0/types/network_acl_match.rb
|
|
2375
|
+
- lib/auth0/types/network_acl_match_connecting_ipv4cidr.rb
|
|
2376
|
+
- lib/auth0/types/network_acl_match_connecting_ipv6cidr.rb
|
|
2377
|
+
- lib/auth0/types/network_acl_match_ipv4cidr.rb
|
|
2378
|
+
- lib/auth0/types/network_acl_match_ipv6cidr.rb
|
|
2379
|
+
- lib/auth0/types/network_acl_rule.rb
|
|
2380
|
+
- lib/auth0/types/network_acl_rule_scope_enum.rb
|
|
2381
|
+
- lib/auth0/types/network_acls_response_content.rb
|
|
2382
|
+
- lib/auth0/types/oauth_scope.rb
|
|
2383
|
+
- lib/auth0/types/organization.rb
|
|
2384
|
+
- lib/auth0/types/organization_access_level_enum.rb
|
|
2385
|
+
- lib/auth0/types/organization_access_level_enum_with_null.rb
|
|
2386
|
+
- lib/auth0/types/organization_all_connection_post.rb
|
|
2387
|
+
- lib/auth0/types/organization_branding.rb
|
|
2388
|
+
- lib/auth0/types/organization_branding_colors.rb
|
|
2389
|
+
- lib/auth0/types/organization_client_grant.rb
|
|
2390
|
+
- lib/auth0/types/organization_connection.rb
|
|
2391
|
+
- lib/auth0/types/organization_connection_information.rb
|
|
2392
|
+
- lib/auth0/types/organization_discovery_domain.rb
|
|
2393
|
+
- lib/auth0/types/organization_discovery_domain_status.rb
|
|
2394
|
+
- lib/auth0/types/organization_enabled_connection.rb
|
|
2395
|
+
- lib/auth0/types/organization_invitation.rb
|
|
2396
|
+
- lib/auth0/types/organization_invitation_invitee.rb
|
|
2397
|
+
- lib/auth0/types/organization_invitation_inviter.rb
|
|
2398
|
+
- lib/auth0/types/organization_member.rb
|
|
2399
|
+
- lib/auth0/types/organization_member_role.rb
|
|
2400
|
+
- lib/auth0/types/organization_metadata.rb
|
|
2401
|
+
- lib/auth0/types/organization_usage_enum.rb
|
|
2402
|
+
- lib/auth0/types/partial_groups_enum.rb
|
|
2403
|
+
- lib/auth0/types/partial_phone_template_content.rb
|
|
2404
|
+
- lib/auth0/types/password_character_type_enum.rb
|
|
2405
|
+
- lib/auth0/types/password_character_type_rule_policy_enum.rb
|
|
2406
|
+
- lib/auth0/types/password_default_dictionaries_enum.rb
|
|
2407
|
+
- lib/auth0/types/password_identical_characters_policy_enum.rb
|
|
2408
|
+
- lib/auth0/types/password_max_length_exceeded_policy_enum.rb
|
|
2409
|
+
- lib/auth0/types/password_sequential_characters_policy_enum.rb
|
|
2410
|
+
- lib/auth0/types/patch_client_credential_response_content.rb
|
|
2411
|
+
- lib/auth0/types/patch_supplemental_signals_response_content.rb
|
|
2412
|
+
- lib/auth0/types/permission_request_payload.rb
|
|
2413
|
+
- lib/auth0/types/permissions_response_payload.rb
|
|
2414
|
+
- lib/auth0/types/phone_attribute.rb
|
|
2415
|
+
- lib/auth0/types/phone_provider_channel_enum.rb
|
|
2416
|
+
- lib/auth0/types/phone_provider_configuration.rb
|
|
2417
|
+
- lib/auth0/types/phone_provider_credentials.rb
|
|
2418
|
+
- lib/auth0/types/phone_provider_delivery_method_enum.rb
|
|
2419
|
+
- lib/auth0/types/phone_provider_name_enum.rb
|
|
2420
|
+
- lib/auth0/types/phone_provider_schema_masked.rb
|
|
2421
|
+
- lib/auth0/types/phone_template.rb
|
|
2422
|
+
- lib/auth0/types/phone_template_body.rb
|
|
2423
|
+
- lib/auth0/types/phone_template_content.rb
|
|
2424
|
+
- lib/auth0/types/phone_template_notification_type_enum.rb
|
|
2425
|
+
- lib/auth0/types/post_client_credential_response_content.rb
|
|
2426
|
+
- lib/auth0/types/post_connection_keys_alg_enum.rb
|
|
2427
|
+
- lib/auth0/types/post_connection_keys_request_content.rb
|
|
2428
|
+
- lib/auth0/types/post_connections_keys_response_content.rb
|
|
2429
|
+
- lib/auth0/types/post_connections_keys_response_content_item.rb
|
|
2430
|
+
- lib/auth0/types/preferred_authentication_method_enum.rb
|
|
2431
|
+
- lib/auth0/types/preview_cimd_metadata_response_content.rb
|
|
2432
|
+
- lib/auth0/types/prompt_group_name_enum.rb
|
|
2433
|
+
- lib/auth0/types/prompt_language_enum.rb
|
|
2434
|
+
- lib/auth0/types/public_key_credential.rb
|
|
2435
|
+
- lib/auth0/types/public_key_credential_algorithm_enum.rb
|
|
2436
|
+
- lib/auth0/types/public_key_credential_type_enum.rb
|
|
2437
|
+
- lib/auth0/types/refresh_token_date.rb
|
|
2438
|
+
- lib/auth0/types/refresh_token_date_object.rb
|
|
2439
|
+
- lib/auth0/types/refresh_token_device.rb
|
|
2440
|
+
- lib/auth0/types/refresh_token_expiration_type_enum.rb
|
|
2441
|
+
- lib/auth0/types/refresh_token_metadata.rb
|
|
2442
|
+
- lib/auth0/types/refresh_token_resource_server.rb
|
|
2443
|
+
- lib/auth0/types/refresh_token_response_content.rb
|
|
2444
|
+
- lib/auth0/types/refresh_token_rotation_type_enum.rb
|
|
2445
|
+
- lib/auth0/types/refresh_token_session_id.rb
|
|
2446
|
+
- lib/auth0/types/regenerate_users_recovery_code_response_content.rb
|
|
2447
|
+
- lib/auth0/types/register_cimd_client_response_content.rb
|
|
2448
|
+
- lib/auth0/types/reset_phone_template_request_content.rb
|
|
2449
|
+
- lib/auth0/types/reset_phone_template_response_content.rb
|
|
2450
|
+
- lib/auth0/types/resource_server.rb
|
|
2451
|
+
- lib/auth0/types/resource_server_consent_policy_enum.rb
|
|
2452
|
+
- lib/auth0/types/resource_server_proof_of_possession.rb
|
|
2453
|
+
- lib/auth0/types/resource_server_proof_of_possession_mechanism_enum.rb
|
|
2454
|
+
- lib/auth0/types/resource_server_proof_of_possession_required_for_enum.rb
|
|
2455
|
+
- lib/auth0/types/resource_server_scope.rb
|
|
2456
|
+
- lib/auth0/types/resource_server_subject_type_authorization.rb
|
|
2457
|
+
- lib/auth0/types/resource_server_subject_type_authorization_client.rb
|
|
2458
|
+
- lib/auth0/types/resource_server_subject_type_authorization_client_policy_enum.rb
|
|
2459
|
+
- lib/auth0/types/resource_server_subject_type_authorization_user.rb
|
|
2460
|
+
- lib/auth0/types/resource_server_subject_type_authorization_user_policy_enum.rb
|
|
2461
|
+
- lib/auth0/types/resource_server_token_dialect_response_enum.rb
|
|
2462
|
+
- lib/auth0/types/resource_server_token_dialect_schema_enum.rb
|
|
2463
|
+
- lib/auth0/types/resource_server_token_encryption.rb
|
|
2464
|
+
- lib/auth0/types/resource_server_token_encryption_algorithm_enum.rb
|
|
2465
|
+
- lib/auth0/types/resource_server_token_encryption_format_enum.rb
|
|
2466
|
+
- lib/auth0/types/resource_server_token_encryption_key.rb
|
|
2467
|
+
- lib/auth0/types/resource_server_verification_key_pem_certificate.rb
|
|
2468
|
+
- lib/auth0/types/revoked_signing_keys_response_content.rb
|
|
2469
|
+
- lib/auth0/types/role.rb
|
|
2470
|
+
- lib/auth0/types/role_user.rb
|
|
2471
|
+
- lib/auth0/types/rollback_action_module_response_content.rb
|
|
2472
|
+
- lib/auth0/types/rotate_client_secret_response_content.rb
|
|
2473
|
+
- lib/auth0/types/rotate_connection_keys_request_content.rb
|
|
2474
|
+
- lib/auth0/types/rotate_connection_keys_signing_alg_enum.rb
|
|
2475
|
+
- lib/auth0/types/rotate_connections_keys_response_content.rb
|
|
2476
|
+
- lib/auth0/types/rotate_signing_keys_response_content.rb
|
|
2477
|
+
- lib/auth0/types/rule.rb
|
|
2478
|
+
- lib/auth0/types/rules_config.rb
|
|
2479
|
+
- lib/auth0/types/scim_configuration.rb
|
|
2480
|
+
- lib/auth0/types/scim_mapping_item.rb
|
|
2481
|
+
- lib/auth0/types/scim_token_item.rb
|
|
2482
|
+
- lib/auth0/types/screen_group_name_enum.rb
|
|
2483
|
+
- lib/auth0/types/search_engine_versions_enum.rb
|
|
2484
|
+
- lib/auth0/types/self_service_profile.rb
|
|
2485
|
+
- lib/auth0/types/self_service_profile_allowed_strategy_enum.rb
|
|
2486
|
+
- lib/auth0/types/self_service_profile_branding.rb
|
|
2487
|
+
- lib/auth0/types/self_service_profile_branding_colors.rb
|
|
2488
|
+
- lib/auth0/types/self_service_profile_branding_properties.rb
|
|
2489
|
+
- lib/auth0/types/self_service_profile_custom_text_language_enum.rb
|
|
2490
|
+
- lib/auth0/types/self_service_profile_custom_text_page_enum.rb
|
|
2491
|
+
- lib/auth0/types/self_service_profile_description.rb
|
|
2492
|
+
- lib/auth0/types/self_service_profile_sso_ticket_connection_config.rb
|
|
2493
|
+
- lib/auth0/types/self_service_profile_sso_ticket_connection_options.rb
|
|
2494
|
+
- lib/auth0/types/self_service_profile_sso_ticket_domain_aliases_config.rb
|
|
2495
|
+
- lib/auth0/types/self_service_profile_sso_ticket_domain_verification_enum.rb
|
|
2496
|
+
- lib/auth0/types/self_service_profile_sso_ticket_enabled_features.rb
|
|
2497
|
+
- lib/auth0/types/self_service_profile_sso_ticket_enabled_organization.rb
|
|
2498
|
+
- lib/auth0/types/self_service_profile_sso_ticket_google_workspace_config.rb
|
|
2499
|
+
- lib/auth0/types/self_service_profile_sso_ticket_idp_initiated_client_protocol_enum.rb
|
|
2500
|
+
- lib/auth0/types/self_service_profile_sso_ticket_idp_initiated_options.rb
|
|
2501
|
+
- lib/auth0/types/self_service_profile_sso_ticket_provisioning_config.rb
|
|
2502
|
+
- lib/auth0/types/self_service_profile_sso_ticket_provisioning_scope_enum.rb
|
|
2503
|
+
- lib/auth0/types/self_service_profile_user_attribute.rb
|
|
2504
|
+
- lib/auth0/types/self_service_profile_user_attributes.rb
|
|
2505
|
+
- lib/auth0/types/session_authentication_signal.rb
|
|
2506
|
+
- lib/auth0/types/session_authentication_signals.rb
|
|
2507
|
+
- lib/auth0/types/session_client_metadata.rb
|
|
2508
|
+
- lib/auth0/types/session_cookie_metadata.rb
|
|
2509
|
+
- lib/auth0/types/session_cookie_metadata_mode_enum.rb
|
|
2510
|
+
- lib/auth0/types/session_cookie_mode_enum.rb
|
|
2511
|
+
- lib/auth0/types/session_cookie_schema.rb
|
|
2512
|
+
- lib/auth0/types/session_date.rb
|
|
2513
|
+
- lib/auth0/types/session_device_metadata.rb
|
|
2514
|
+
- lib/auth0/types/session_ip.rb
|
|
2515
|
+
- lib/auth0/types/session_metadata.rb
|
|
2516
|
+
- lib/auth0/types/session_response_content.rb
|
|
2517
|
+
- lib/auth0/types/set_custom_signing_keys_response_content.rb
|
|
2518
|
+
- lib/auth0/types/set_email_template_response_content.rb
|
|
2519
|
+
- lib/auth0/types/set_guardian_factor_duo_settings_response_content.rb
|
|
2520
|
+
- lib/auth0/types/set_guardian_factor_phone_message_types_response_content.rb
|
|
2521
|
+
- lib/auth0/types/set_guardian_factor_phone_templates_response_content.rb
|
|
2522
|
+
- lib/auth0/types/set_guardian_factor_response_content.rb
|
|
2523
|
+
- lib/auth0/types/set_guardian_factor_sms_templates_response_content.rb
|
|
2524
|
+
- lib/auth0/types/set_guardian_factors_provider_phone_response_content.rb
|
|
2525
|
+
- lib/auth0/types/set_guardian_factors_provider_phone_twilio_response_content.rb
|
|
2526
|
+
- lib/auth0/types/set_guardian_factors_provider_push_notification_apns_response_content.rb
|
|
2527
|
+
- lib/auth0/types/set_guardian_factors_provider_push_notification_fcm_response_content.rb
|
|
2528
|
+
- lib/auth0/types/set_guardian_factors_provider_push_notification_fcmv1response_content.rb
|
|
2529
|
+
- lib/auth0/types/set_guardian_factors_provider_push_notification_response_content.rb
|
|
2530
|
+
- lib/auth0/types/set_guardian_factors_provider_push_notification_sns_response_content.rb
|
|
2531
|
+
- lib/auth0/types/set_guardian_factors_provider_sms_response_content.rb
|
|
2532
|
+
- lib/auth0/types/set_guardian_factors_provider_sms_twilio_response_content.rb
|
|
2533
|
+
- lib/auth0/types/set_guardian_policies_request_content.rb
|
|
2534
|
+
- lib/auth0/types/set_guardian_policies_response_content.rb
|
|
2535
|
+
- lib/auth0/types/set_network_acls_response_content.rb
|
|
2536
|
+
- lib/auth0/types/set_partials_request_content.rb
|
|
2537
|
+
- lib/auth0/types/set_rules_config_response_content.rb
|
|
2538
|
+
- lib/auth0/types/set_self_service_profile_custom_text_request_content.rb
|
|
2539
|
+
- lib/auth0/types/set_self_service_profile_custom_text_response_content.rb
|
|
2540
|
+
- lib/auth0/types/set_user_authentication_method_response_content.rb
|
|
2541
|
+
- lib/auth0/types/set_user_authentication_methods.rb
|
|
2542
|
+
- lib/auth0/types/set_user_authentication_methods_request_content.rb
|
|
2543
|
+
- lib/auth0/types/sets_custom_texts_by_language_request_content.rb
|
|
2544
|
+
- lib/auth0/types/signing_algorithm_enum.rb
|
|
2545
|
+
- lib/auth0/types/signing_keys.rb
|
|
2546
|
+
- lib/auth0/types/signing_keys_date.rb
|
|
2547
|
+
- lib/auth0/types/signup_schema.rb
|
|
2548
|
+
- lib/auth0/types/signup_status_enum.rb
|
|
2549
|
+
- lib/auth0/types/signup_verification.rb
|
|
2550
|
+
- lib/auth0/types/signup_verified.rb
|
|
2551
|
+
- lib/auth0/types/supported_locales.rb
|
|
2552
|
+
- lib/auth0/types/suspicious_ip_throttling_allowlist.rb
|
|
2553
|
+
- lib/auth0/types/suspicious_ip_throttling_allowlist_item.rb
|
|
2554
|
+
- lib/auth0/types/suspicious_ip_throttling_pre_login_stage.rb
|
|
2555
|
+
- lib/auth0/types/suspicious_ip_throttling_pre_user_registration_stage.rb
|
|
2556
|
+
- lib/auth0/types/suspicious_ip_throttling_shields_enum.rb
|
|
2557
|
+
- lib/auth0/types/suspicious_ip_throttling_stage.rb
|
|
2558
|
+
- lib/auth0/types/synchronize_groups_enum.rb
|
|
2559
|
+
- lib/auth0/types/synchronized_group_payload.rb
|
|
2560
|
+
- lib/auth0/types/tenant_oidc_logout_settings.rb
|
|
2561
|
+
- lib/auth0/types/tenant_settings_device_flow.rb
|
|
2562
|
+
- lib/auth0/types/tenant_settings_device_flow_charset.rb
|
|
2563
|
+
- lib/auth0/types/tenant_settings_dynamic_client_registration_security_mode.rb
|
|
2564
|
+
- lib/auth0/types/tenant_settings_error_page.rb
|
|
2565
|
+
- lib/auth0/types/tenant_settings_flags.rb
|
|
2566
|
+
- lib/auth0/types/tenant_settings_guardian_page.rb
|
|
2567
|
+
- lib/auth0/types/tenant_settings_mtls.rb
|
|
2568
|
+
- lib/auth0/types/tenant_settings_password_page.rb
|
|
2569
|
+
- lib/auth0/types/tenant_settings_resource_parameter_profile.rb
|
|
2570
|
+
- lib/auth0/types/tenant_settings_sessions.rb
|
|
2571
|
+
- lib/auth0/types/tenant_settings_supported_locales_enum.rb
|
|
2572
|
+
- lib/auth0/types/test_action_payload.rb
|
|
2573
|
+
- lib/auth0/types/test_action_response_content.rb
|
|
2574
|
+
- lib/auth0/types/test_action_result_payload.rb
|
|
2575
|
+
- lib/auth0/types/test_custom_domain_response_content.rb
|
|
2576
|
+
- lib/auth0/types/test_event_data_content.rb
|
|
2577
|
+
- lib/auth0/types/token_exchange_profile_response_content.rb
|
|
2578
|
+
- lib/auth0/types/token_exchange_profile_type_enum.rb
|
|
2579
|
+
- lib/auth0/types/token_quota.rb
|
|
2580
|
+
- lib/auth0/types/token_quota_client_credentials.rb
|
|
2581
|
+
- lib/auth0/types/token_quota_configuration.rb
|
|
2582
|
+
- lib/auth0/types/twilio_provider_configuration.rb
|
|
2583
|
+
- lib/auth0/types/twilio_provider_credentials.rb
|
|
2584
|
+
- lib/auth0/types/twilio_provider_delivery_method_enum.rb
|
|
2585
|
+
- lib/auth0/types/universal_login_experience_enum.rb
|
|
2586
|
+
- lib/auth0/types/update_action_bindings_response_content.rb
|
|
2587
|
+
- lib/auth0/types/update_action_module_response_content.rb
|
|
2588
|
+
- lib/auth0/types/update_action_response_content.rb
|
|
2589
|
+
- lib/auth0/types/update_acul_response_content.rb
|
|
2590
|
+
- lib/auth0/types/update_attack_protection_captcha_response_content.rb
|
|
2591
|
+
- lib/auth0/types/update_bot_detection_settings_response_content.rb
|
|
2592
|
+
- lib/auth0/types/update_branding_colors.rb
|
|
2593
|
+
- lib/auth0/types/update_branding_font.rb
|
|
2594
|
+
- lib/auth0/types/update_branding_page_background.rb
|
|
2595
|
+
- lib/auth0/types/update_branding_phone_provider_response_content.rb
|
|
2596
|
+
- lib/auth0/types/update_branding_response_content.rb
|
|
2597
|
+
- lib/auth0/types/update_branding_theme_response_content.rb
|
|
2598
|
+
- lib/auth0/types/update_breached_password_detection_settings_response_content.rb
|
|
2599
|
+
- lib/auth0/types/update_brute_force_settings_response_content.rb
|
|
2600
|
+
- lib/auth0/types/update_client_grant_response_content.rb
|
|
2601
|
+
- lib/auth0/types/update_client_response_content.rb
|
|
2602
|
+
- lib/auth0/types/update_connection_options.rb
|
|
2603
|
+
- lib/auth0/types/update_connection_profile_response_content.rb
|
|
2604
|
+
- lib/auth0/types/update_connection_request_content_ad.rb
|
|
2605
|
+
- lib/auth0/types/update_connection_request_content_adfs.rb
|
|
2606
|
+
- lib/auth0/types/update_connection_request_content_amazon.rb
|
|
2607
|
+
- lib/auth0/types/update_connection_request_content_apple.rb
|
|
2608
|
+
- lib/auth0/types/update_connection_request_content_auth0.rb
|
|
2609
|
+
- lib/auth0/types/update_connection_request_content_auth0oidc.rb
|
|
2610
|
+
- lib/auth0/types/update_connection_request_content_azure_ad.rb
|
|
2611
|
+
- lib/auth0/types/update_connection_request_content_baidu.rb
|
|
2612
|
+
- lib/auth0/types/update_connection_request_content_bitbucket.rb
|
|
2613
|
+
- lib/auth0/types/update_connection_request_content_bitly.rb
|
|
2614
|
+
- lib/auth0/types/update_connection_request_content_box.rb
|
|
2615
|
+
- lib/auth0/types/update_connection_request_content_custom.rb
|
|
2616
|
+
- lib/auth0/types/update_connection_request_content_daccount.rb
|
|
2617
|
+
- lib/auth0/types/update_connection_request_content_dropbox.rb
|
|
2618
|
+
- lib/auth0/types/update_connection_request_content_dwolla.rb
|
|
2619
|
+
- lib/auth0/types/update_connection_request_content_email.rb
|
|
2620
|
+
- lib/auth0/types/update_connection_request_content_evernote.rb
|
|
2621
|
+
- lib/auth0/types/update_connection_request_content_evernote_sandbox.rb
|
|
2622
|
+
- lib/auth0/types/update_connection_request_content_exact.rb
|
|
2623
|
+
- lib/auth0/types/update_connection_request_content_facebook.rb
|
|
2624
|
+
- lib/auth0/types/update_connection_request_content_fitbit.rb
|
|
2625
|
+
- lib/auth0/types/update_connection_request_content_git_hub.rb
|
|
2626
|
+
- lib/auth0/types/update_connection_request_content_google_apps.rb
|
|
2627
|
+
- lib/auth0/types/update_connection_request_content_google_o_auth2.rb
|
|
2628
|
+
- lib/auth0/types/update_connection_request_content_instagram.rb
|
|
2629
|
+
- lib/auth0/types/update_connection_request_content_ip.rb
|
|
2630
|
+
- lib/auth0/types/update_connection_request_content_line.rb
|
|
2631
|
+
- lib/auth0/types/update_connection_request_content_linkedin.rb
|
|
2632
|
+
- lib/auth0/types/update_connection_request_content_o_auth1.rb
|
|
2633
|
+
- lib/auth0/types/update_connection_request_content_o_auth2.rb
|
|
2634
|
+
- lib/auth0/types/update_connection_request_content_office365.rb
|
|
2635
|
+
- lib/auth0/types/update_connection_request_content_oidc.rb
|
|
2636
|
+
- lib/auth0/types/update_connection_request_content_okta.rb
|
|
2637
|
+
- lib/auth0/types/update_connection_request_content_paypal.rb
|
|
2638
|
+
- lib/auth0/types/update_connection_request_content_paypal_sandbox.rb
|
|
2639
|
+
- lib/auth0/types/update_connection_request_content_ping_federate.rb
|
|
2640
|
+
- lib/auth0/types/update_connection_request_content_planning_center.rb
|
|
2641
|
+
- lib/auth0/types/update_connection_request_content_salesforce.rb
|
|
2642
|
+
- lib/auth0/types/update_connection_request_content_salesforce_community.rb
|
|
2643
|
+
- lib/auth0/types/update_connection_request_content_salesforce_sandbox.rb
|
|
2644
|
+
- lib/auth0/types/update_connection_request_content_saml.rb
|
|
2645
|
+
- lib/auth0/types/update_connection_request_content_sharepoint.rb
|
|
2646
|
+
- lib/auth0/types/update_connection_request_content_shop.rb
|
|
2647
|
+
- lib/auth0/types/update_connection_request_content_shopify.rb
|
|
2648
|
+
- lib/auth0/types/update_connection_request_content_sms.rb
|
|
2649
|
+
- lib/auth0/types/update_connection_request_content_soundcloud.rb
|
|
2650
|
+
- lib/auth0/types/update_connection_request_content_thirty_seven_signals.rb
|
|
2651
|
+
- lib/auth0/types/update_connection_request_content_twitter.rb
|
|
2652
|
+
- lib/auth0/types/update_connection_request_content_untappd.rb
|
|
2653
|
+
- lib/auth0/types/update_connection_request_content_vkontakte.rb
|
|
2654
|
+
- lib/auth0/types/update_connection_request_content_weibo.rb
|
|
2655
|
+
- lib/auth0/types/update_connection_request_content_windows_live.rb
|
|
2656
|
+
- lib/auth0/types/update_connection_request_content_wordpress.rb
|
|
2657
|
+
- lib/auth0/types/update_connection_request_content_yahoo.rb
|
|
2658
|
+
- lib/auth0/types/update_connection_request_content_yandex.rb
|
|
2659
|
+
- lib/auth0/types/update_connection_response_content.rb
|
|
2660
|
+
- lib/auth0/types/update_custom_domain_response_content.rb
|
|
2661
|
+
- lib/auth0/types/update_default_canonical_domain_response_content.rb
|
|
2662
|
+
- lib/auth0/types/update_default_custom_domain_response_content.rb
|
|
2663
|
+
- lib/auth0/types/update_default_domain_response_content.rb
|
|
2664
|
+
- lib/auth0/types/update_directory_provisioning_request_content.rb
|
|
2665
|
+
- lib/auth0/types/update_directory_provisioning_response_content.rb
|
|
2666
|
+
- lib/auth0/types/update_email_provider_response_content.rb
|
|
2667
|
+
- lib/auth0/types/update_email_template_response_content.rb
|
|
2668
|
+
- lib/auth0/types/update_enabled_client_connections_request_content.rb
|
|
2669
|
+
- lib/auth0/types/update_enabled_client_connections_request_content_item.rb
|
|
2670
|
+
- lib/auth0/types/update_event_stream_response_content.rb
|
|
2671
|
+
- lib/auth0/types/update_flow_response_content.rb
|
|
2672
|
+
- lib/auth0/types/update_flows_vault_connection_response_content.rb
|
|
2673
|
+
- lib/auth0/types/update_flows_vault_connection_setup.rb
|
|
2674
|
+
- lib/auth0/types/update_form_response_content.rb
|
|
2675
|
+
- lib/auth0/types/update_guardian_factor_duo_settings_response_content.rb
|
|
2676
|
+
- lib/auth0/types/update_guardian_factors_provider_push_notification_apns_response_content.rb
|
|
2677
|
+
- lib/auth0/types/update_guardian_factors_provider_push_notification_fcm_response_content.rb
|
|
2678
|
+
- lib/auth0/types/update_guardian_factors_provider_push_notification_fcmv1response_content.rb
|
|
2679
|
+
- lib/auth0/types/update_guardian_factors_provider_push_notification_sns_response_content.rb
|
|
2680
|
+
- lib/auth0/types/update_hook_response_content.rb
|
|
2681
|
+
- lib/auth0/types/update_hook_secret_request_content.rb
|
|
2682
|
+
- lib/auth0/types/update_log_stream_response_content.rb
|
|
2683
|
+
- lib/auth0/types/update_network_acl_response_content.rb
|
|
2684
|
+
- lib/auth0/types/update_organization_all_connection_response_content.rb
|
|
2685
|
+
- lib/auth0/types/update_organization_connection_response_content.rb
|
|
2686
|
+
- lib/auth0/types/update_organization_discovery_domain_response_content.rb
|
|
2687
|
+
- lib/auth0/types/update_organization_response_content.rb
|
|
2688
|
+
- lib/auth0/types/update_phone_template_response_content.rb
|
|
2689
|
+
- lib/auth0/types/update_refresh_token_response_content.rb
|
|
2690
|
+
- lib/auth0/types/update_resource_server_response_content.rb
|
|
2691
|
+
- lib/auth0/types/update_risk_assessments_settings_new_device_response_content.rb
|
|
2692
|
+
- lib/auth0/types/update_risk_assessments_settings_response_content.rb
|
|
2693
|
+
- lib/auth0/types/update_role_response_content.rb
|
|
2694
|
+
- lib/auth0/types/update_rule_response_content.rb
|
|
2695
|
+
- lib/auth0/types/update_scim_configuration_response_content.rb
|
|
2696
|
+
- lib/auth0/types/update_self_service_profile_response_content.rb
|
|
2697
|
+
- lib/auth0/types/update_session_response_content.rb
|
|
2698
|
+
- lib/auth0/types/update_settings_response_content.rb
|
|
2699
|
+
- lib/auth0/types/update_suspicious_ip_throttling_settings_response_content.rb
|
|
2700
|
+
- lib/auth0/types/update_tenant_settings_response_content.rb
|
|
2701
|
+
- lib/auth0/types/update_token_quota.rb
|
|
2702
|
+
- lib/auth0/types/update_universal_login_template_request_content.rb
|
|
2703
|
+
- lib/auth0/types/update_universal_login_template_request_content_template.rb
|
|
2704
|
+
- lib/auth0/types/update_user_attribute_profile_response_content.rb
|
|
2705
|
+
- lib/auth0/types/update_user_authentication_method_response_content.rb
|
|
2706
|
+
- lib/auth0/types/update_user_response_content.rb
|
|
2707
|
+
- lib/auth0/types/update_verifiable_credential_template_response_content.rb
|
|
2708
|
+
- lib/auth0/types/user_app_metadata_schema.rb
|
|
2709
|
+
- lib/auth0/types/user_attribute_profile.rb
|
|
2710
|
+
- lib/auth0/types/user_attribute_profile_id.rb
|
|
2711
|
+
- lib/auth0/types/user_attribute_profile_name.rb
|
|
2712
|
+
- lib/auth0/types/user_attribute_profile_oidc_mapping.rb
|
|
2713
|
+
- lib/auth0/types/user_attribute_profile_patch_user_id.rb
|
|
2714
|
+
- lib/auth0/types/user_attribute_profile_saml_mapping.rb
|
|
2715
|
+
- lib/auth0/types/user_attribute_profile_strategy_overrides.rb
|
|
2716
|
+
- lib/auth0/types/user_attribute_profile_strategy_overrides_mapping.rb
|
|
2717
|
+
- lib/auth0/types/user_attribute_profile_strategy_overrides_user_id.rb
|
|
2718
|
+
- lib/auth0/types/user_attribute_profile_strategy_overrides_user_id_mapping.rb
|
|
2719
|
+
- lib/auth0/types/user_attribute_profile_template.rb
|
|
2720
|
+
- lib/auth0/types/user_attribute_profile_template_item.rb
|
|
2721
|
+
- lib/auth0/types/user_attribute_profile_user_attribute_additional_properties.rb
|
|
2722
|
+
- lib/auth0/types/user_attribute_profile_user_attributes.rb
|
|
2723
|
+
- lib/auth0/types/user_attribute_profile_user_id.rb
|
|
2724
|
+
- lib/auth0/types/user_attribute_profile_user_id_oidc_mapping_enum.rb
|
|
2725
|
+
- lib/auth0/types/user_attribute_profile_user_id_oidc_strategy_override_mapping.rb
|
|
2726
|
+
- lib/auth0/types/user_attribute_profile_user_id_saml_mapping.rb
|
|
2727
|
+
- lib/auth0/types/user_authentication_method.rb
|
|
2728
|
+
- lib/auth0/types/user_authentication_method_properties.rb
|
|
2729
|
+
- lib/auth0/types/user_authentication_method_properties_enum.rb
|
|
2730
|
+
- lib/auth0/types/user_block_identifier.rb
|
|
2731
|
+
- lib/auth0/types/user_date_schema.rb
|
|
2732
|
+
- lib/auth0/types/user_enrollment_auth_method_enum.rb
|
|
2733
|
+
- lib/auth0/types/user_enrollment_status_enum.rb
|
|
2734
|
+
- lib/auth0/types/user_grant.rb
|
|
2735
|
+
- lib/auth0/types/user_groups_response_schema.rb
|
|
2736
|
+
- lib/auth0/types/user_id.rb
|
|
2737
|
+
- lib/auth0/types/user_identity.rb
|
|
2738
|
+
- lib/auth0/types/user_identity_provider_enum.rb
|
|
2739
|
+
- lib/auth0/types/user_identity_schema.rb
|
|
2740
|
+
- lib/auth0/types/user_list_log_offset_paginated_response_content.rb
|
|
2741
|
+
- lib/auth0/types/user_metadata.rb
|
|
2742
|
+
- lib/auth0/types/user_metadata_schema.rb
|
|
2743
|
+
- lib/auth0/types/user_multifactor_provider_enum.rb
|
|
2744
|
+
- lib/auth0/types/user_permission_schema.rb
|
|
2745
|
+
- lib/auth0/types/user_profile_data.rb
|
|
2746
|
+
- lib/auth0/types/user_response_schema.rb
|
|
2747
|
+
- lib/auth0/types/username_allowed_types.rb
|
|
2748
|
+
- lib/auth0/types/username_attribute.rb
|
|
2749
|
+
- lib/auth0/types/username_validation.rb
|
|
2750
|
+
- lib/auth0/types/users_enrollment.rb
|
|
2751
|
+
- lib/auth0/types/verifiable_credential_template_response.rb
|
|
2752
|
+
- lib/auth0/types/verification_method_enum.rb
|
|
2753
|
+
- lib/auth0/types/verify_custom_domain_response_content.rb
|
|
2754
|
+
- lib/auth0/types/verify_email_ticket_response_content.rb
|
|
2755
|
+
- lib/auth0/types/x509certificate_credential.rb
|
|
2756
|
+
- lib/auth0/types/x509certificate_credential_type_enum.rb
|
|
2757
|
+
- lib/auth0/user_attribute_profiles/client.rb
|
|
2758
|
+
- lib/auth0/user_attribute_profiles/types/create_user_attribute_profile_request_content.rb
|
|
2759
|
+
- lib/auth0/user_attribute_profiles/types/list_user_attribute_profile_request_parameters.rb
|
|
2760
|
+
- lib/auth0/user_attribute_profiles/types/update_user_attribute_profile_request_content.rb
|
|
2761
|
+
- lib/auth0/user_blocks/client.rb
|
|
2762
|
+
- lib/auth0/user_blocks/types/delete_user_blocks_by_identifier_request_parameters.rb
|
|
2763
|
+
- lib/auth0/user_blocks/types/list_user_blocks_by_identifier_request_parameters.rb
|
|
2764
|
+
- lib/auth0/user_blocks/types/list_user_blocks_request_parameters.rb
|
|
2765
|
+
- lib/auth0/user_grants/client.rb
|
|
2766
|
+
- lib/auth0/user_grants/types/delete_user_grant_by_user_id_request_parameters.rb
|
|
2767
|
+
- lib/auth0/user_grants/types/list_user_grants_request_parameters.rb
|
|
2768
|
+
- lib/auth0/users/authentication_methods/client.rb
|
|
2769
|
+
- lib/auth0/users/authentication_methods/types/create_user_authentication_method_request_content.rb
|
|
2770
|
+
- lib/auth0/users/authentication_methods/types/list_user_authentication_methods_request_parameters.rb
|
|
2771
|
+
- lib/auth0/users/authentication_methods/types/update_user_authentication_method_request_content.rb
|
|
2772
|
+
- lib/auth0/users/authenticators/client.rb
|
|
2773
|
+
- lib/auth0/users/client.rb
|
|
2774
|
+
- lib/auth0/users/connected_accounts/client.rb
|
|
2775
|
+
- lib/auth0/users/connected_accounts/types/get_user_connected_accounts_request_parameters.rb
|
|
2776
|
+
- lib/auth0/users/enrollments/client.rb
|
|
2777
|
+
- lib/auth0/users/federated_connections_tokensets/client.rb
|
|
2778
|
+
- lib/auth0/users/groups/client.rb
|
|
2779
|
+
- lib/auth0/users/groups/types/get_user_groups_request_parameters.rb
|
|
2780
|
+
- lib/auth0/users/identities/client.rb
|
|
2781
|
+
- lib/auth0/users/identities/types/link_user_identity_request_content.rb
|
|
2782
|
+
- lib/auth0/users/logs/client.rb
|
|
2783
|
+
- lib/auth0/users/logs/types/list_user_logs_request_parameters.rb
|
|
2784
|
+
- lib/auth0/users/multifactor/client.rb
|
|
2785
|
+
- lib/auth0/users/organizations/client.rb
|
|
2786
|
+
- lib/auth0/users/organizations/types/list_user_organizations_request_parameters.rb
|
|
2787
|
+
- lib/auth0/users/permissions/client.rb
|
|
2788
|
+
- lib/auth0/users/permissions/types/create_user_permissions_request_content.rb
|
|
2789
|
+
- lib/auth0/users/permissions/types/delete_user_permissions_request_content.rb
|
|
2790
|
+
- lib/auth0/users/permissions/types/list_user_permissions_request_parameters.rb
|
|
2791
|
+
- lib/auth0/users/refresh_token/client.rb
|
|
2792
|
+
- lib/auth0/users/refresh_token/types/list_refresh_tokens_request_parameters.rb
|
|
2793
|
+
- lib/auth0/users/risk_assessments/client.rb
|
|
2794
|
+
- lib/auth0/users/risk_assessments/types/clear_assessors_request_content.rb
|
|
2795
|
+
- lib/auth0/users/roles/client.rb
|
|
2796
|
+
- lib/auth0/users/roles/types/assign_user_roles_request_content.rb
|
|
2797
|
+
- lib/auth0/users/roles/types/delete_user_roles_request_content.rb
|
|
2798
|
+
- lib/auth0/users/roles/types/list_user_roles_request_parameters.rb
|
|
2799
|
+
- lib/auth0/users/sessions/client.rb
|
|
2800
|
+
- lib/auth0/users/sessions/types/list_user_sessions_request_parameters.rb
|
|
2801
|
+
- lib/auth0/users/types/create_user_request_content.rb
|
|
2802
|
+
- lib/auth0/users/types/get_user_request_parameters.rb
|
|
2803
|
+
- lib/auth0/users/types/list_users_by_email_request_parameters.rb
|
|
2804
|
+
- lib/auth0/users/types/list_users_request_parameters.rb
|
|
2805
|
+
- lib/auth0/users/types/revoke_user_access_request_content.rb
|
|
2806
|
+
- lib/auth0/users/types/update_user_request_content.rb
|
|
2807
|
+
- lib/auth0/verifiable_credentials/client.rb
|
|
2808
|
+
- lib/auth0/verifiable_credentials/verification/client.rb
|
|
2809
|
+
- lib/auth0/verifiable_credentials/verification/templates/client.rb
|
|
2810
|
+
- lib/auth0/verifiable_credentials/verification/templates/types/create_verifiable_credential_template_request_content.rb
|
|
2811
|
+
- lib/auth0/verifiable_credentials/verification/templates/types/list_verifiable_credential_templates_request_parameters.rb
|
|
2812
|
+
- lib/auth0/verifiable_credentials/verification/templates/types/update_verifiable_credential_template_request_content.rb
|
|
367
2813
|
- lib/auth0/version.rb
|
|
368
2814
|
- lib/auth0_client.rb
|
|
369
|
-
-
|
|
370
|
-
-
|
|
371
|
-
-
|
|
372
|
-
-
|
|
373
|
-
- spec/fixtures/vcr_cassettes/Auth0_Api_AuthenticationEndpoints/_login_with_resource_owner/should_fail_with_an_incorrect_password.yml
|
|
374
|
-
- spec/fixtures/vcr_cassettes/Auth0_Api_AuthenticationEndpoints/_login_with_resource_owner/should_fail_with_an_invalid_audience.yml
|
|
375
|
-
- spec/fixtures/vcr_cassettes/Auth0_Api_AuthenticationEndpoints/_login_with_resource_owner/should_login_successfully_with_a_custom_audience.yml
|
|
376
|
-
- spec/fixtures/vcr_cassettes/Auth0_Api_AuthenticationEndpoints/_login_with_resource_owner/should_login_successfully_with_a_default_scope.yml
|
|
377
|
-
- spec/fixtures/vcr_cassettes/Auth0_Api_AuthenticationEndpoints/_saml_metadata/should_retrieve_SAML_metadata.yml
|
|
378
|
-
- spec/fixtures/vcr_cassettes/Auth0_Api_AuthenticationEndpoints/_userinfo/should_fail_as_not_authorized.yml
|
|
379
|
-
- spec/fixtures/vcr_cassettes/Auth0_Api_AuthenticationEndpoints/_userinfo/should_return_the_userinfo.yml
|
|
380
|
-
- spec/fixtures/vcr_cassettes/Auth0_Api_AuthenticationEndpoints/_wsfed_metadata/should_retrieve_WSFED_metadata.yml
|
|
381
|
-
- spec/fixtures/vcr_cassettes/Auth0_Api_AuthenticationEndpoints/create_test_user.yml
|
|
382
|
-
- spec/fixtures/vcr_cassettes/Auth0_Api_AuthenticationEndpoints/delete_test_user.yml
|
|
383
|
-
- spec/fixtures/vcr_cassettes/Auth0_Api_V2_Blacklists/_add_token_to_blacklist/should_add_a_token_to_the_blacklist.yml
|
|
384
|
-
- spec/fixtures/vcr_cassettes/Auth0_Api_V2_Blacklists/_blacklisted_tokens/should_get_the_added_token_from_the_blacklist.yml
|
|
385
|
-
- spec/fixtures/vcr_cassettes/Auth0_Api_V2_ClientGrants/_client_grants/should_return_at_least_1_result.yml
|
|
386
|
-
- spec/fixtures/vcr_cassettes/Auth0_Api_V2_ClientGrants/_client_grants/should_return_the_test_client_grant.yml
|
|
387
|
-
- spec/fixtures/vcr_cassettes/Auth0_Api_V2_ClientGrants/_delete_client_grant/should_delete_the_test_client_grant.yml
|
|
388
|
-
- spec/fixtures/vcr_cassettes/Auth0_Api_V2_ClientGrants/_patch_client_grant/should_update_the_test_client_grant.yml
|
|
389
|
-
- spec/fixtures/vcr_cassettes/Auth0_Api_V2_ClientGrants/create_test_client.yml
|
|
390
|
-
- spec/fixtures/vcr_cassettes/Auth0_Api_V2_ClientGrants/create_test_client_grant.yml
|
|
391
|
-
- spec/fixtures/vcr_cassettes/Auth0_Api_V2_ClientGrants/delete_test_client.yml
|
|
392
|
-
- spec/fixtures/vcr_cassettes/Auth0_Api_V2_ClientGrants/delete_test_client_grant.yml
|
|
393
|
-
- spec/fixtures/vcr_cassettes/Auth0_Api_V2_Clients/_client/_filters/should_exclude_and_include_fields_properly.yml
|
|
394
|
-
- spec/fixtures/vcr_cassettes/Auth0_Api_V2_Clients/_client/_filters/should_include_the_specified_fields.yml
|
|
395
|
-
- spec/fixtures/vcr_cassettes/Auth0_Api_V2_Clients/_client/should_get_the_test_client.yml
|
|
396
|
-
- spec/fixtures/vcr_cassettes/Auth0_Api_V2_Clients/_clients/_filters/should_exclude_fields_not_specified.yml
|
|
397
|
-
- spec/fixtures/vcr_cassettes/Auth0_Api_V2_Clients/_clients/_filters/should_exclude_the_specified_fields.yml
|
|
398
|
-
- spec/fixtures/vcr_cassettes/Auth0_Api_V2_Clients/_clients/_filters/should_include_the_specified_fields.yml
|
|
399
|
-
- spec/fixtures/vcr_cassettes/Auth0_Api_V2_Clients/_clients/_filters/should_paginate_results.yml
|
|
400
|
-
- spec/fixtures/vcr_cassettes/Auth0_Api_V2_Clients/_clients/should_get_at_least_one_client.yml
|
|
401
|
-
- spec/fixtures/vcr_cassettes/Auth0_Api_V2_Clients/_delete_client/should_delete_the_test_client_without_an_error.yml
|
|
402
|
-
- spec/fixtures/vcr_cassettes/Auth0_Api_V2_Clients/_patch_client/should_update_the_client_with_the_correct_attributes.yml
|
|
403
|
-
- spec/fixtures/vcr_cassettes/Auth0_Api_V2_Clients/create_test_client.yml
|
|
404
|
-
- spec/fixtures/vcr_cassettes/Auth0_Api_V2_Connections/_connection/_filters/should_exclude_the_fields_indicated.yml
|
|
405
|
-
- spec/fixtures/vcr_cassettes/Auth0_Api_V2_Connections/_connection/_filters/should_include_the_fields_indicated.yml
|
|
406
|
-
- spec/fixtures/vcr_cassettes/Auth0_Api_V2_Connections/_connection/should_find_the_correct_connection.yml
|
|
407
|
-
- spec/fixtures/vcr_cassettes/Auth0_Api_V2_Connections/_connections/_filters/should_include_previously-created_connection_when_filtered.yml
|
|
408
|
-
- spec/fixtures/vcr_cassettes/Auth0_Api_V2_Connections/_connections/_filters/should_should_exclude_the_fields_indicated_from_filtered_results.yml
|
|
409
|
-
- spec/fixtures/vcr_cassettes/Auth0_Api_V2_Connections/_connections/_filters/should_should_include_the_fields_indicated_from_filtered_results.yml
|
|
410
|
-
- spec/fixtures/vcr_cassettes/Auth0_Api_V2_Connections/_connections/should_include_the_previously_created_connection.yml
|
|
411
|
-
- spec/fixtures/vcr_cassettes/Auth0_Api_V2_Connections/_connections/should_not_be_empty.yml
|
|
412
|
-
- spec/fixtures/vcr_cassettes/Auth0_Api_V2_Connections/_delete_connection/should_delete_the_connection.yml
|
|
413
|
-
- spec/fixtures/vcr_cassettes/Auth0_Api_V2_Connections/_delete_connection_user/should_delete_the_user_created.yml
|
|
414
|
-
- spec/fixtures/vcr_cassettes/Auth0_Api_V2_Connections/_update_connection/should_update_the_connection.yml
|
|
415
|
-
- spec/fixtures/vcr_cassettes/Auth0_Api_V2_Connections/create_test_connection.yml
|
|
416
|
-
- spec/fixtures/vcr_cassettes/Auth0_Api_V2_Connections/create_test_user.yml
|
|
417
|
-
- spec/fixtures/vcr_cassettes/Auth0_Api_V2_DeviceCredentials/create_test_credential.yml
|
|
418
|
-
- spec/fixtures/vcr_cassettes/Auth0_Api_V2_DeviceCredentials/create_test_user.yml
|
|
419
|
-
- spec/fixtures/vcr_cassettes/Auth0_Api_V2_DeviceCredentials/delete_test_user.yml
|
|
420
|
-
- spec/fixtures/vcr_cassettes/Auth0_Api_V2_Emails/_configure_provider/should_configure_a_new_email_provider.yml
|
|
421
|
-
- spec/fixtures/vcr_cassettes/Auth0_Api_V2_Emails/_delete_provider/should_delete_the_existing_email_provider_without_an_error.yml
|
|
422
|
-
- spec/fixtures/vcr_cassettes/Auth0_Api_V2_Emails/_delete_provider/should_throw_an_error_trying_to_get_the_email_provider.yml
|
|
423
|
-
- spec/fixtures/vcr_cassettes/Auth0_Api_V2_Emails/_get_provider/_filters/should_get_the_existing_email_provider_with_specific_fields.yml
|
|
424
|
-
- spec/fixtures/vcr_cassettes/Auth0_Api_V2_Emails/_get_provider/_filters/should_get_the_existing_email_provider_without_specific_fields.yml
|
|
425
|
-
- spec/fixtures/vcr_cassettes/Auth0_Api_V2_Emails/_get_provider/should_get_the_existing_email_provider.yml
|
|
426
|
-
- spec/fixtures/vcr_cassettes/Auth0_Api_V2_Emails/_update_provider/should_update_the_existing_email_provider.yml
|
|
427
|
-
- spec/fixtures/vcr_cassettes/Auth0_Api_V2_Emails/delete_existing_provider.yml
|
|
428
|
-
- spec/fixtures/vcr_cassettes/Auth0_Api_V2_Jobs/_export_users_and_get_job/should_create_an_export_users_job_successfully.yml
|
|
429
|
-
- spec/fixtures/vcr_cassettes/Auth0_Api_V2_Jobs/_export_users_and_get_job/should_get_the_export_users_job.yml
|
|
430
|
-
- spec/fixtures/vcr_cassettes/Auth0_Api_V2_Jobs/_import_users_and_get_job/should_create_an_import_users_job_successfully.yml
|
|
431
|
-
- spec/fixtures/vcr_cassettes/Auth0_Api_V2_Jobs/_import_users_and_get_job/should_get_the_import_users_job.yml
|
|
432
|
-
- spec/fixtures/vcr_cassettes/Auth0_Api_V2_Jobs/_send_verification_email_and_get_job/should_create_a_new_verification_email_job.yml
|
|
433
|
-
- spec/fixtures/vcr_cassettes/Auth0_Api_V2_Jobs/_send_verification_email_and_get_job/should_get_the_completed_verification_email.yml
|
|
434
|
-
- spec/fixtures/vcr_cassettes/Auth0_Api_V2_Jobs/_send_verification_email_and_get_job/should_reject_an_invalid_client_id.yml
|
|
435
|
-
- spec/fixtures/vcr_cassettes/Auth0_Api_V2_Jobs/delete_imported_user.yml
|
|
436
|
-
- spec/fixtures/vcr_cassettes/Auth0_Api_V2_Jobs/search_for_connection_id.yml
|
|
437
|
-
- spec/fixtures/vcr_cassettes/Auth0_Api_V2_Logs/_log/should_match_the_created_log_entry.yml
|
|
438
|
-
- spec/fixtures/vcr_cassettes/Auth0_Api_V2_Logs/_log/should_not_be_empty.yml
|
|
439
|
-
- spec/fixtures/vcr_cassettes/Auth0_Api_V2_Logs/_logs/_filters/should_exclude_fields_not_specified.yml
|
|
440
|
-
- spec/fixtures/vcr_cassettes/Auth0_Api_V2_Logs/_logs/_filters/should_exclude_the_specified_fields.yml
|
|
441
|
-
- spec/fixtures/vcr_cassettes/Auth0_Api_V2_Logs/_logs/_filters/should_have_one_log_entry.yml
|
|
442
|
-
- spec/fixtures/vcr_cassettes/Auth0_Api_V2_Logs/_logs/_filters/should_include_the_specified_fields.yml
|
|
443
|
-
- spec/fixtures/vcr_cassettes/Auth0_Api_V2_Logs/_logs/_from/should_take_one_log_entry.yml
|
|
444
|
-
- spec/fixtures/vcr_cassettes/Auth0_Api_V2_Logs/create_test_user.yml
|
|
445
|
-
- spec/fixtures/vcr_cassettes/Auth0_Api_V2_Logs/delete_test_disabled_rule.yml
|
|
446
|
-
- spec/fixtures/vcr_cassettes/Auth0_Api_V2_Logs/delete_test_enabled_rule.yml
|
|
447
|
-
- spec/fixtures/vcr_cassettes/Auth0_Api_V2_Logs/delete_test_user.yml
|
|
448
|
-
- spec/fixtures/vcr_cassettes/Auth0_Api_V2_ResourceServers/_delete_resource_server/should_delete_the_test_server_without_an_error.yml
|
|
449
|
-
- spec/fixtures/vcr_cassettes/Auth0_Api_V2_ResourceServers/_patch_resource_server/should_update_the_resource_server_with_the_correct_attributes.yml
|
|
450
|
-
- spec/fixtures/vcr_cassettes/Auth0_Api_V2_ResourceServers/_resource_server/should_get_the_test_server.yml
|
|
451
|
-
- spec/fixtures/vcr_cassettes/Auth0_Api_V2_ResourceServers/_resource_servers/should_get_the_test_server.yml
|
|
452
|
-
- spec/fixtures/vcr_cassettes/Auth0_Api_V2_ResourceServers/_resource_servers/should_return_at_least_1_result.yml
|
|
453
|
-
- spec/fixtures/vcr_cassettes/Auth0_Api_V2_ResourceServers/_resource_servers/should_return_the_first_page_of_one_result.yml
|
|
454
|
-
- spec/fixtures/vcr_cassettes/Auth0_Api_V2_ResourceServers/create_test_server.yml
|
|
455
|
-
- spec/fixtures/vcr_cassettes/Auth0_Api_V2_ResourceServers/delete_test_server.yml
|
|
456
|
-
- spec/fixtures/vcr_cassettes/Auth0_Api_V2_Roles/_add_role_permissions/should_add_a_Permission_to_the_Role_successfully.yml
|
|
457
|
-
- spec/fixtures/vcr_cassettes/Auth0_Api_V2_Roles/_add_role_users/should_add_a_User_to_the_Role_successfully.yml
|
|
458
|
-
- spec/fixtures/vcr_cassettes/Auth0_Api_V2_Roles/_delete_role/should_delete_the_Role_successfully.yml
|
|
459
|
-
- spec/fixtures/vcr_cassettes/Auth0_Api_V2_Roles/_get_role/should_get_the_Role_successfully.yml
|
|
460
|
-
- spec/fixtures/vcr_cassettes/Auth0_Api_V2_Roles/_get_role_permissions/should_get_exactly_1_Permission.yml
|
|
461
|
-
- spec/fixtures/vcr_cassettes/Auth0_Api_V2_Roles/_get_role_permissions/should_get_the_added_Permission_from_the_Role_successfully.yml
|
|
462
|
-
- spec/fixtures/vcr_cassettes/Auth0_Api_V2_Roles/_get_role_users/should_get_exactly_1_User.yml
|
|
463
|
-
- spec/fixtures/vcr_cassettes/Auth0_Api_V2_Roles/_get_role_users/should_get_the_added_User_from_the_Role_successfully.yml
|
|
464
|
-
- spec/fixtures/vcr_cassettes/Auth0_Api_V2_Roles/_get_roles/should_get_the_Role_successfully.yml
|
|
465
|
-
- spec/fixtures/vcr_cassettes/Auth0_Api_V2_Roles/_remove_role_permissions/should_remove_a_Permission_from_the_Role_successfully.yml
|
|
466
|
-
- spec/fixtures/vcr_cassettes/Auth0_Api_V2_Roles/_update_role/should_update_the_Role_successfully.yml
|
|
467
|
-
- spec/fixtures/vcr_cassettes/Auth0_Api_V2_Roles/create_test_api.yml
|
|
468
|
-
- spec/fixtures/vcr_cassettes/Auth0_Api_V2_Roles/create_test_role.yml
|
|
469
|
-
- spec/fixtures/vcr_cassettes/Auth0_Api_V2_Roles/create_test_user.yml
|
|
470
|
-
- spec/fixtures/vcr_cassettes/Auth0_Api_V2_Roles/delete_test_api.yml
|
|
471
|
-
- spec/fixtures/vcr_cassettes/Auth0_Api_V2_Roles/delete_test_user.yml
|
|
472
|
-
- spec/fixtures/vcr_cassettes/Auth0_Api_V2_Rules/_delete_rule/should_delete_the_test_disabled_rule_without_an_error.yml
|
|
473
|
-
- spec/fixtures/vcr_cassettes/Auth0_Api_V2_Rules/_delete_rule/should_delete_the_test_enabled_rule_without_an_error.yml
|
|
474
|
-
- spec/fixtures/vcr_cassettes/Auth0_Api_V2_Rules/_rule/_filters/should_exclude_the_fields_not_specified.yml
|
|
475
|
-
- spec/fixtures/vcr_cassettes/Auth0_Api_V2_Rules/_rule/_filters/should_exclude_the_specified_fields.yml
|
|
476
|
-
- spec/fixtures/vcr_cassettes/Auth0_Api_V2_Rules/_rule/_filters/should_include_the_specified_fields.yml
|
|
477
|
-
- spec/fixtures/vcr_cassettes/Auth0_Api_V2_Rules/_rule/should_get_a_specific_rule.yml
|
|
478
|
-
- spec/fixtures/vcr_cassettes/Auth0_Api_V2_Rules/_rules/_filters/should_exclude_fields_not_specified.yml
|
|
479
|
-
- spec/fixtures/vcr_cassettes/Auth0_Api_V2_Rules/_rules/_filters/should_include_the_specified_fields.yml
|
|
480
|
-
- spec/fixtures/vcr_cassettes/Auth0_Api_V2_Rules/_rules/_filters/should_return_at_least_1_disabled_rule.yml
|
|
481
|
-
- spec/fixtures/vcr_cassettes/Auth0_Api_V2_Rules/_rules/_filters/should_return_at_least_1_enabled_rule.yml
|
|
482
|
-
- spec/fixtures/vcr_cassettes/Auth0_Api_V2_Rules/_rules/_filters/should_return_paginated_results.yml
|
|
483
|
-
- spec/fixtures/vcr_cassettes/Auth0_Api_V2_Rules/_rules/should_return_at_least_1_rule.yml
|
|
484
|
-
- spec/fixtures/vcr_cassettes/Auth0_Api_V2_Rules/_update_rule/should_update_the_disabled_rule_to_be_enabled.yml
|
|
485
|
-
- spec/fixtures/vcr_cassettes/Auth0_Api_V2_Rules/create_test_disabled_rule.yml
|
|
486
|
-
- spec/fixtures/vcr_cassettes/Auth0_Api_V2_Rules/create_test_enabled_rule.yml
|
|
487
|
-
- spec/fixtures/vcr_cassettes/Auth0_Api_V2_Stats/_active_users/should_have_at_least_one_active_user.yml
|
|
488
|
-
- spec/fixtures/vcr_cassettes/Auth0_Api_V2_Stats/_daily_stats/should_have_at_least_one_stats_entry_for_the_timeframe.yml
|
|
489
|
-
- spec/fixtures/vcr_cassettes/Auth0_Api_V2_Tenants/_get_tenant_settings/should_get_the_tenant_settings.yml
|
|
490
|
-
- spec/fixtures/vcr_cassettes/Auth0_Api_V2_Tenants/_get_tenant_settings_with_specific_fields/should_exclude_a_field_not_requested.yml
|
|
491
|
-
- spec/fixtures/vcr_cassettes/Auth0_Api_V2_Tenants/_get_tenant_settings_with_specific_fields/should_include_the_field_requested.yml
|
|
492
|
-
- spec/fixtures/vcr_cassettes/Auth0_Api_V2_Tenants/_update_tenant_settings/should_revert_the_tenant_name.yml
|
|
493
|
-
- spec/fixtures/vcr_cassettes/Auth0_Api_V2_Tenants/_update_tenant_settings/should_update_the_tenant_settings_with_a_new_tenant_name.yml
|
|
494
|
-
- spec/fixtures/vcr_cassettes/Auth0_Api_V2_Tickets/_post_email_verification/should_create_an_email_verification_ticket.yml
|
|
495
|
-
- spec/fixtures/vcr_cassettes/Auth0_Api_V2_Tickets/_post_password_change/should_create_a_password_change_ticket.yml
|
|
496
|
-
- spec/fixtures/vcr_cassettes/Auth0_Api_V2_Tickets/create_test_user.yml
|
|
497
|
-
- spec/fixtures/vcr_cassettes/Auth0_Api_V2_Tickets/delete_test_user.yml
|
|
498
|
-
- spec/fixtures/vcr_cassettes/Auth0_Api_V2_Users/_add_user_permissions/should_add_a_Permissions_for_a_User_successfully.yml
|
|
499
|
-
- spec/fixtures/vcr_cassettes/Auth0_Api_V2_Users/_add_user_roles/should_add_a_Role_to_a_User_successfully.yml
|
|
500
|
-
- spec/fixtures/vcr_cassettes/Auth0_Api_V2_Users/_delete_user/should_delete_the_User_successfully.yml
|
|
501
|
-
- spec/fixtures/vcr_cassettes/Auth0_Api_V2_Users/_delete_user/should_delete_the_secondary_User_successfully.yml
|
|
502
|
-
- spec/fixtures/vcr_cassettes/Auth0_Api_V2_Users/_delete_user_provider/should_attempt_to_delete_the_MFA_provider_for_the_User.yml
|
|
503
|
-
- spec/fixtures/vcr_cassettes/Auth0_Api_V2_Users/_get_enrollments/should_get_Enrollments_for_a_User_successfully.yml
|
|
504
|
-
- spec/fixtures/vcr_cassettes/Auth0_Api_V2_Users/_get_user_permissions/should_get_exactly_1_Permission_for_a_User_successfully.yml
|
|
505
|
-
- spec/fixtures/vcr_cassettes/Auth0_Api_V2_Users/_get_user_permissions/should_get_the_correct_Permission_for_a_User_successfully.yml
|
|
506
|
-
- spec/fixtures/vcr_cassettes/Auth0_Api_V2_Users/_get_user_roles/should_get_Roles_for_a_User_successfully.yml
|
|
507
|
-
- spec/fixtures/vcr_cassettes/Auth0_Api_V2_Users/_invalidate_browsers/should_invalidate_MFA_browsers_for_the_User_successfully.yml
|
|
508
|
-
- spec/fixtures/vcr_cassettes/Auth0_Api_V2_Users/_link_user_account/should_link_two_Users_successfully.yml
|
|
509
|
-
- spec/fixtures/vcr_cassettes/Auth0_Api_V2_Users/_patch_user/should_patch_the_User_successfully.yml
|
|
510
|
-
- spec/fixtures/vcr_cassettes/Auth0_Api_V2_Users/_remove_user_permissions/should_remove_a_Permission_from_a_User_successfully.yml
|
|
511
|
-
- spec/fixtures/vcr_cassettes/Auth0_Api_V2_Users/_remove_user_roles/should_remove_a_Role_from_a_User_successfully.yml
|
|
512
|
-
- spec/fixtures/vcr_cassettes/Auth0_Api_V2_Users/_unlink_user_account/should_unlink_two_Users_successfully.yml
|
|
513
|
-
- spec/fixtures/vcr_cassettes/Auth0_Api_V2_Users/_user/_filters/should_exclude_fields_not_indicated.yml
|
|
514
|
-
- spec/fixtures/vcr_cassettes/Auth0_Api_V2_Users/_user/_filters/should_exclude_the_fields_indicated.yml
|
|
515
|
-
- spec/fixtures/vcr_cassettes/Auth0_Api_V2_Users/_user/_filters/should_include_the_fields_indicated.yml
|
|
516
|
-
- spec/fixtures/vcr_cassettes/Auth0_Api_V2_Users/_user/should_retrieve_the_created_user.yml
|
|
517
|
-
- spec/fixtures/vcr_cassettes/Auth0_Api_V2_Users/_user_logs/should_get_Logs_for_a_User_successfully.yml
|
|
518
|
-
- spec/fixtures/vcr_cassettes/Auth0_Api_V2_Users/_users/_filters/is_expected_to_find_a_user_with_a_v2_search_engine_query.yml
|
|
519
|
-
- spec/fixtures/vcr_cassettes/Auth0_Api_V2_Users/_users/_filters/is_expected_to_find_a_user_with_a_v3_search_engine_query.yml
|
|
520
|
-
- spec/fixtures/vcr_cassettes/Auth0_Api_V2_Users/_users/_filters/should_exclude_the_indicated_fields_when_paginated.yml
|
|
521
|
-
- spec/fixtures/vcr_cassettes/Auth0_Api_V2_Users/_users/_filters/should_include_the_indicated_fields_when_paginated.yml
|
|
522
|
-
- spec/fixtures/vcr_cassettes/Auth0_Api_V2_Users/_users/_filters/should_not_include_other_fields_when_paginated.yml
|
|
523
|
-
- spec/fixtures/vcr_cassettes/Auth0_Api_V2_Users/_users/_filters/should_return_the_correct_number_of_results_when_paginated.yml
|
|
524
|
-
- spec/fixtures/vcr_cassettes/Auth0_Api_V2_Users/_users/should_have_at_least_one_user.yml
|
|
525
|
-
- spec/fixtures/vcr_cassettes/Auth0_Api_V2_Users/create_secondary_test_user.yml
|
|
526
|
-
- spec/fixtures/vcr_cassettes/Auth0_Api_V2_Users/create_test_api.yml
|
|
527
|
-
- spec/fixtures/vcr_cassettes/Auth0_Api_V2_Users/create_test_role.yml
|
|
528
|
-
- spec/fixtures/vcr_cassettes/Auth0_Api_V2_Users/create_test_user.yml
|
|
529
|
-
- spec/fixtures/vcr_cassettes/Auth0_Api_V2_Users/delete_test_api.yml
|
|
530
|
-
- spec/fixtures/vcr_cassettes/Auth0_Api_V2_Users/delete_test_role.yml
|
|
531
|
-
- spec/integration/lib/auth0/api/api_authentication_spec.rb
|
|
532
|
-
- spec/integration/lib/auth0/api/v2/api_blacklist_spec.rb
|
|
533
|
-
- spec/integration/lib/auth0/api/v2/api_client_grants_spec.rb
|
|
534
|
-
- spec/integration/lib/auth0/api/v2/api_clients_spec.rb
|
|
535
|
-
- spec/integration/lib/auth0/api/v2/api_connections_spec.rb
|
|
536
|
-
- spec/integration/lib/auth0/api/v2/api_email_spec.rb
|
|
537
|
-
- spec/integration/lib/auth0/api/v2/api_jobs_spec.rb
|
|
538
|
-
- spec/integration/lib/auth0/api/v2/api_logs_spec.rb
|
|
539
|
-
- spec/integration/lib/auth0/api/v2/api_resource_servers_spec.rb
|
|
540
|
-
- spec/integration/lib/auth0/api/v2/api_roles_spec.rb
|
|
541
|
-
- spec/integration/lib/auth0/api/v2/api_rules_spec.rb
|
|
542
|
-
- spec/integration/lib/auth0/api/v2/api_stats_spec.rb
|
|
543
|
-
- spec/integration/lib/auth0/api/v2/api_tenants_spec.rb
|
|
544
|
-
- spec/integration/lib/auth0/api/v2/api_tickets_spec.rb
|
|
545
|
-
- spec/integration/lib/auth0/api/v2/api_user_blocks_spec.rb
|
|
546
|
-
- spec/integration/lib/auth0/api/v2/api_users_spec.rb
|
|
547
|
-
- spec/integration/lib/auth0/auth0_client_spec.rb
|
|
548
|
-
- spec/lib/auth0/api/authentication_endpoints_spec.rb
|
|
549
|
-
- spec/lib/auth0/api/v2/actions_spec.rb
|
|
550
|
-
- spec/lib/auth0/api/v2/anomaly_spec.rb
|
|
551
|
-
- spec/lib/auth0/api/v2/attack_protection_spec.rb
|
|
552
|
-
- spec/lib/auth0/api/v2/blacklists_spec.rb
|
|
553
|
-
- spec/lib/auth0/api/v2/branding_spec.rb
|
|
554
|
-
- spec/lib/auth0/api/v2/client_grants_spec.rb
|
|
555
|
-
- spec/lib/auth0/api/v2/clients_spec.rb
|
|
556
|
-
- spec/lib/auth0/api/v2/connections_spec.rb
|
|
557
|
-
- spec/lib/auth0/api/v2/device_credentials_spec.rb
|
|
558
|
-
- spec/lib/auth0/api/v2/emails_spec.rb
|
|
559
|
-
- spec/lib/auth0/api/v2/grants_spec.rb
|
|
560
|
-
- spec/lib/auth0/api/v2/guardian_spec.rb
|
|
561
|
-
- spec/lib/auth0/api/v2/jobs_spec.rb
|
|
562
|
-
- spec/lib/auth0/api/v2/log_streams_spec.rb
|
|
563
|
-
- spec/lib/auth0/api/v2/logs_spec.rb
|
|
564
|
-
- spec/lib/auth0/api/v2/organizations_spec.rb
|
|
565
|
-
- spec/lib/auth0/api/v2/prompts_spec.rb
|
|
566
|
-
- spec/lib/auth0/api/v2/refresh_tokens_spec.rb
|
|
567
|
-
- spec/lib/auth0/api/v2/resource_servers_spec.rb
|
|
568
|
-
- spec/lib/auth0/api/v2/roles_spec.rb
|
|
569
|
-
- spec/lib/auth0/api/v2/rules_spec.rb
|
|
570
|
-
- spec/lib/auth0/api/v2/sessions_spec.rb
|
|
571
|
-
- spec/lib/auth0/api/v2/stats_spec.rb
|
|
572
|
-
- spec/lib/auth0/api/v2/tenants_spec.rb
|
|
573
|
-
- spec/lib/auth0/api/v2/tickets_spec.rb
|
|
574
|
-
- spec/lib/auth0/api/v2/user_blocks_spec.rb
|
|
575
|
-
- spec/lib/auth0/api/v2/users_by_email_spec.rb
|
|
576
|
-
- spec/lib/auth0/api/v2/users_spec.rb
|
|
577
|
-
- spec/lib/auth0/client_spec.rb
|
|
578
|
-
- spec/lib/auth0/mixins/httpproxy_spec.rb
|
|
579
|
-
- spec/lib/auth0/mixins/initializer_spec.rb
|
|
580
|
-
- spec/lib/auth0/mixins/token_management_spec.rb
|
|
581
|
-
- spec/lib/auth0/mixins/validation_spec.rb
|
|
582
|
-
- spec/spec_helper.rb
|
|
583
|
-
- spec/support/credentials.rb
|
|
584
|
-
- spec/support/dummy_class.rb
|
|
585
|
-
- spec/support/dummy_class_for_proxy.rb
|
|
586
|
-
- spec/support/dummy_class_for_restclient.rb
|
|
587
|
-
- spec/support/dummy_class_for_tokens.rb
|
|
588
|
-
- spec/support/import_users.json
|
|
589
|
-
- spec/support/stub_response.rb
|
|
2815
|
+
- reference.md
|
|
2816
|
+
- v6_MIGRATION_GUIDE.md
|
|
2817
|
+
- wiremock/docker-compose.test.yml
|
|
2818
|
+
- wiremock/wiremock-mappings.json
|
|
590
2819
|
homepage: https://github.com/auth0/ruby-auth0
|
|
591
2820
|
licenses:
|
|
592
2821
|
- MIT
|
|
593
|
-
metadata:
|
|
594
|
-
|
|
2822
|
+
metadata:
|
|
2823
|
+
rubygems_mfa_required: 'true'
|
|
2824
|
+
post_install_message:
|
|
595
2825
|
rdoc_options: []
|
|
596
2826
|
require_paths:
|
|
597
2827
|
- lib
|
|
@@ -599,15 +2829,15 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
599
2829
|
requirements:
|
|
600
2830
|
- - ">="
|
|
601
2831
|
- !ruby/object:Gem::Version
|
|
602
|
-
version:
|
|
2832
|
+
version: 3.3.0
|
|
603
2833
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
604
2834
|
requirements:
|
|
605
2835
|
- - ">="
|
|
606
2836
|
- !ruby/object:Gem::Version
|
|
607
2837
|
version: '0'
|
|
608
2838
|
requirements: []
|
|
609
|
-
rubygems_version: 3.
|
|
610
|
-
signing_key:
|
|
2839
|
+
rubygems_version: 3.5.22
|
|
2840
|
+
signing_key:
|
|
611
2841
|
specification_version: 4
|
|
612
|
-
summary: Auth0 API
|
|
2842
|
+
summary: Ruby client library for the Auth0 API
|
|
613
2843
|
test_files: []
|