authentik-api 2025.12.4
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 +7 -0
- data/CODE_OF_CONDUCT.md +10 -0
- data/LICENSE.md +27 -0
- data/README.md +90 -0
- data/README_API.md +2016 -0
- data/Rakefile +10 -0
- data/lib/authentik/api/api/admin_api.rb +876 -0
- data/lib/authentik/api/api/authenticators_api.rb +5465 -0
- data/lib/authentik/api/api/core_api.rb +4576 -0
- data/lib/authentik/api/api/crypto_api.rb +685 -0
- data/lib/authentik/api/api/endpoints_api.rb +3196 -0
- data/lib/authentik/api/api/enterprise_api.rb +643 -0
- data/lib/authentik/api/api/events_api.rb +2210 -0
- data/lib/authentik/api/api/flows_api.rb +1552 -0
- data/lib/authentik/api/api/managed_api.rb +594 -0
- data/lib/authentik/api/api/oauth2_api.rb +784 -0
- data/lib/authentik/api/api/outposts_api.rb +2282 -0
- data/lib/authentik/api/api/policies_api.rb +5147 -0
- data/lib/authentik/api/api/propertymappings_api.rb +7382 -0
- data/lib/authentik/api/api/providers_api.rb +7879 -0
- data/lib/authentik/api/api/rac_api.rb +880 -0
- data/lib/authentik/api/api/rbac_api.rb +1528 -0
- data/lib/authentik/api/api/reports_api.rb +199 -0
- data/lib/authentik/api/api/root_api.rb +71 -0
- data/lib/authentik/api/api/schema_api.rb +85 -0
- data/lib/authentik/api/api/sources_api.rb +11729 -0
- data/lib/authentik/api/api/ssf_api.rb +157 -0
- data/lib/authentik/api/api/stages_api.rb +13639 -0
- data/lib/authentik/api/api/tasks_api.rb +682 -0
- data/lib/authentik/api/api/tenants_api.rb +950 -0
- data/lib/authentik/api/api_client.rb +391 -0
- data/lib/authentik/api/api_error.rb +52 -0
- data/lib/authentik/api/api_model_base.rb +82 -0
- data/lib/authentik/api/configuration.rb +302 -0
- data/lib/authentik/api/inflector.rb +31 -0
- data/lib/authentik/api/models/access_denied_challenge.rb +225 -0
- data/lib/authentik/api/models/agent_authentication_response.rb +159 -0
- data/lib/authentik/api/models/agent_config.rb +377 -0
- data/lib/authentik/api/models/agent_connector.rb +443 -0
- data/lib/authentik/api/models/agent_connector_request.rb +420 -0
- data/lib/authentik/api/models/agent_psso_device_registration_request.rb +273 -0
- data/lib/authentik/api/models/agent_psso_device_registration_response.rb +289 -0
- data/lib/authentik/api/models/agent_psso_user_registration_request.rb +238 -0
- data/lib/authentik/api/models/agent_token_response.rb +168 -0
- data/lib/authentik/api/models/alg_enum.rb +34 -0
- data/lib/authentik/api/models/app.rb +185 -0
- data/lib/authentik/api/models/app_enum.rb +108 -0
- data/lib/authentik/api/models/apple_challenge_response_request.rb +163 -0
- data/lib/authentik/api/models/apple_login_challenge.rb +268 -0
- data/lib/authentik/api/models/application.rb +423 -0
- data/lib/authentik/api/models/application_entitlement.rb +222 -0
- data/lib/authentik/api/models/application_entitlement_request.rb +205 -0
- data/lib/authentik/api/models/application_request.rb +323 -0
- data/lib/authentik/api/models/auth_type_enum.rb +34 -0
- data/lib/authentik/api/models/authenticated_session.rb +349 -0
- data/lib/authentik/api/models/authenticated_session_asn.rb +169 -0
- data/lib/authentik/api/models/authenticated_session_geo_ip.rb +207 -0
- data/lib/authentik/api/models/authenticated_session_user_agent.rb +237 -0
- data/lib/authentik/api/models/authenticated_session_user_agent_device.rb +211 -0
- data/lib/authentik/api/models/authenticated_session_user_agent_os.rb +263 -0
- data/lib/authentik/api/models/authenticated_session_user_agent_user_agent.rb +237 -0
- data/lib/authentik/api/models/authentication_enum.rb +38 -0
- data/lib/authentik/api/models/authenticator_attachment_enum.rb +34 -0
- data/lib/authentik/api/models/authenticator_duo_challenge.rb +294 -0
- data/lib/authentik/api/models/authenticator_duo_challenge_response_request.rb +163 -0
- data/lib/authentik/api/models/authenticator_duo_stage.rb +402 -0
- data/lib/authentik/api/models/authenticator_duo_stage_device_import_response.rb +184 -0
- data/lib/authentik/api/models/authenticator_duo_stage_manual_device_import_request.rb +202 -0
- data/lib/authentik/api/models/authenticator_duo_stage_request.rb +311 -0
- data/lib/authentik/api/models/authenticator_email_challenge.rb +237 -0
- data/lib/authentik/api/models/authenticator_email_challenge_response_request.rb +219 -0
- data/lib/authentik/api/models/authenticator_email_stage.rb +526 -0
- data/lib/authentik/api/models/authenticator_email_stage_request.rb +458 -0
- data/lib/authentik/api/models/authenticator_endpoint_gdtc_stage.rb +369 -0
- data/lib/authentik/api/models/authenticator_endpoint_gdtc_stage_request.rb +216 -0
- data/lib/authentik/api/models/authenticator_sms_challenge.rb +227 -0
- data/lib/authentik/api/models/authenticator_sms_challenge_response_request.rb +219 -0
- data/lib/authentik/api/models/authenticator_sms_stage.rb +506 -0
- data/lib/authentik/api/models/authenticator_sms_stage_request.rb +380 -0
- data/lib/authentik/api/models/authenticator_static_challenge.rb +244 -0
- data/lib/authentik/api/models/authenticator_static_challenge_response_request.rb +163 -0
- data/lib/authentik/api/models/authenticator_static_stage.rb +415 -0
- data/lib/authentik/api/models/authenticator_static_stage_request.rb +262 -0
- data/lib/authentik/api/models/authenticator_totp_challenge.rb +242 -0
- data/lib/authentik/api/models/authenticator_totp_challenge_response_request.rb +198 -0
- data/lib/authentik/api/models/authenticator_totp_stage.rb +389 -0
- data/lib/authentik/api/models/authenticator_totp_stage_request.rb +236 -0
- data/lib/authentik/api/models/authenticator_validate_stage.rb +435 -0
- data/lib/authentik/api/models/authenticator_validate_stage_request.rb +273 -0
- data/lib/authentik/api/models/authenticator_validation_challenge.rb +272 -0
- data/lib/authentik/api/models/authenticator_validation_challenge_response_request.rb +248 -0
- data/lib/authentik/api/models/authenticator_web_authn_challenge.rb +244 -0
- data/lib/authentik/api/models/authenticator_web_authn_challenge_response_request.rb +191 -0
- data/lib/authentik/api/models/authenticator_web_authn_stage.rb +467 -0
- data/lib/authentik/api/models/authenticator_web_authn_stage_request.rb +286 -0
- data/lib/authentik/api/models/authorization_code_auth_method_enum.rb +34 -0
- data/lib/authentik/api/models/auto_submit_challenge_response_request.rb +163 -0
- data/lib/authentik/api/models/autosubmit_challenge.rb +227 -0
- data/lib/authentik/api/models/backends_enum.rb +36 -0
- data/lib/authentik/api/models/binding_type_enum.rb +35 -0
- data/lib/authentik/api/models/blueprint_file.rb +236 -0
- data/lib/authentik/api/models/blueprint_instance.rb +381 -0
- data/lib/authentik/api/models/blueprint_instance_request.rb +208 -0
- data/lib/authentik/api/models/blueprint_instance_status_enum.rb +37 -0
- data/lib/authentik/api/models/brand.rb +345 -0
- data/lib/authentik/api/models/brand_request.rb +404 -0
- data/lib/authentik/api/models/cache.rb +159 -0
- data/lib/authentik/api/models/capabilities_enum.rb +39 -0
- data/lib/authentik/api/models/captcha_challenge.rb +294 -0
- data/lib/authentik/api/models/captcha_challenge_response_request.rb +198 -0
- data/lib/authentik/api/models/captcha_stage.rb +403 -0
- data/lib/authentik/api/models/captcha_stage_request.rb +333 -0
- data/lib/authentik/api/models/cert_attribute_enum.rb +35 -0
- data/lib/authentik/api/models/certificate_data.rb +159 -0
- data/lib/authentik/api/models/certificate_generation_request.rb +234 -0
- data/lib/authentik/api/models/certificate_key_pair.rb +365 -0
- data/lib/authentik/api/models/certificate_key_pair_request.rb +214 -0
- data/lib/authentik/api/models/challenge_types.rb +105 -0
- data/lib/authentik/api/models/client_type_enum.rb +34 -0
- data/lib/authentik/api/models/compatibility_mode_enum.rb +36 -0
- data/lib/authentik/api/models/config.rb +265 -0
- data/lib/authentik/api/models/connection_token.rb +272 -0
- data/lib/authentik/api/models/connection_token_request.rb +194 -0
- data/lib/authentik/api/models/connector.rb +284 -0
- data/lib/authentik/api/models/consent_challenge.rb +307 -0
- data/lib/authentik/api/models/consent_challenge_response_request.rb +198 -0
- data/lib/authentik/api/models/consent_permission.rb +185 -0
- data/lib/authentik/api/models/consent_stage.rb +362 -0
- data/lib/authentik/api/models/consent_stage_mode_enum.rb +35 -0
- data/lib/authentik/api/models/consent_stage_request.rb +228 -0
- data/lib/authentik/api/models/content_type.rb +236 -0
- data/lib/authentik/api/models/contextual_flow_info.rb +235 -0
- data/lib/authentik/api/models/contextual_flow_info_layout_enum.rb +37 -0
- data/lib/authentik/api/models/country_code_enum.rb +281 -0
- data/lib/authentik/api/models/current_brand.rb +469 -0
- data/lib/authentik/api/models/current_brand_flags.rb +184 -0
- data/lib/authentik/api/models/data_export.rb +317 -0
- data/lib/authentik/api/models/delivery_method_enum.rb +34 -0
- data/lib/authentik/api/models/denied_action_enum.rb +35 -0
- data/lib/authentik/api/models/deny_stage.rb +330 -0
- data/lib/authentik/api/models/deny_stage_request.rb +177 -0
- data/lib/authentik/api/models/detailed_country.rb +206 -0
- data/lib/authentik/api/models/detailed_country_field.rb +206 -0
- data/lib/authentik/api/models/device.rb +409 -0
- data/lib/authentik/api/models/device_access_group.rb +184 -0
- data/lib/authentik/api/models/device_access_group_request.rb +167 -0
- data/lib/authentik/api/models/device_challenge.rb +247 -0
- data/lib/authentik/api/models/device_challenge_request.rb +256 -0
- data/lib/authentik/api/models/device_classes_enum.rb +38 -0
- data/lib/authentik/api/models/device_connection.rb +222 -0
- data/lib/authentik/api/models/device_fact_snapshot.rb +222 -0
- data/lib/authentik/api/models/device_facts.rb +233 -0
- data/lib/authentik/api/models/device_facts_os_family.rb +40 -0
- data/lib/authentik/api/models/device_facts_request.rb +233 -0
- data/lib/authentik/api/models/device_group.rb +167 -0
- data/lib/authentik/api/models/device_group_request.rb +195 -0
- data/lib/authentik/api/models/device_summary.rb +211 -0
- data/lib/authentik/api/models/device_user.rb +185 -0
- data/lib/authentik/api/models/device_user_binding.rb +451 -0
- data/lib/authentik/api/models/device_user_binding_request.rb +309 -0
- data/lib/authentik/api/models/device_user_request.rb +251 -0
- data/lib/authentik/api/models/digest_algorithm_enum.rb +36 -0
- data/lib/authentik/api/models/digits_enum.rb +34 -0
- data/lib/authentik/api/models/disk.rb +222 -0
- data/lib/authentik/api/models/disk_request.rb +240 -0
- data/lib/authentik/api/models/docker_service_connection.rb +351 -0
- data/lib/authentik/api/models/docker_service_connection_request.rb +236 -0
- data/lib/authentik/api/models/domain.rb +229 -0
- data/lib/authentik/api/models/domain_request.rb +212 -0
- data/lib/authentik/api/models/dummy_challenge.rb +190 -0
- data/lib/authentik/api/models/dummy_challenge_response_request.rb +163 -0
- data/lib/authentik/api/models/dummy_policy.rb +413 -0
- data/lib/authentik/api/models/dummy_policy_request.rb +261 -0
- data/lib/authentik/api/models/dummy_stage.rb +330 -0
- data/lib/authentik/api/models/dummy_stage_request.rb +177 -0
- data/lib/authentik/api/models/duo_device.rb +221 -0
- data/lib/authentik/api/models/duo_device_enrollment_status.rb +180 -0
- data/lib/authentik/api/models/duo_device_request.rb +178 -0
- data/lib/authentik/api/models/duo_response_enum.rb +35 -0
- data/lib/authentik/api/models/email_challenge.rb +164 -0
- data/lib/authentik/api/models/email_challenge_response_request.rb +163 -0
- data/lib/authentik/api/models/email_device.rb +247 -0
- data/lib/authentik/api/models/email_device_request.rb +178 -0
- data/lib/authentik/api/models/email_stage.rb +554 -0
- data/lib/authentik/api/models/email_stage_request.rb +514 -0
- data/lib/authentik/api/models/endpoint.rb +409 -0
- data/lib/authentik/api/models/endpoint_agent_challenge.rb +216 -0
- data/lib/authentik/api/models/endpoint_agent_challenge_response_request.rb +188 -0
- data/lib/authentik/api/models/endpoint_auth_mode_enum.rb +34 -0
- data/lib/authentik/api/models/endpoint_device.rb +268 -0
- data/lib/authentik/api/models/endpoint_device_details.rb +352 -0
- data/lib/authentik/api/models/endpoint_device_request.rb +225 -0
- data/lib/authentik/api/models/endpoint_request.rb +362 -0
- data/lib/authentik/api/models/endpoint_stage.rb +404 -0
- data/lib/authentik/api/models/endpoint_stage_request.rb +225 -0
- data/lib/authentik/api/models/enroll_request.rb +203 -0
- data/lib/authentik/api/models/enrollment_token.rb +265 -0
- data/lib/authentik/api/models/enrollment_token_request.rb +222 -0
- data/lib/authentik/api/models/error_detail.rb +185 -0
- data/lib/authentik/api/models/error_reporting_config.rb +263 -0
- data/lib/authentik/api/models/event.rb +311 -0
- data/lib/authentik/api/models/event_actions.rb +60 -0
- data/lib/authentik/api/models/event_matcher_policy.rb +396 -0
- data/lib/authentik/api/models/event_matcher_policy_request.rb +259 -0
- data/lib/authentik/api/models/event_request.rb +283 -0
- data/lib/authentik/api/models/event_top_per_user.rb +213 -0
- data/lib/authentik/api/models/event_volume.rb +233 -0
- data/lib/authentik/api/models/events_requested_enum.rb +35 -0
- data/lib/authentik/api/models/expiring_base_grant_model.rb +276 -0
- data/lib/authentik/api/models/expression_policy.rb +356 -0
- data/lib/authentik/api/models/expression_policy_request.rb +213 -0
- data/lib/authentik/api/models/extra_role_object_permission.rb +356 -0
- data/lib/authentik/api/models/file_list.rb +221 -0
- data/lib/authentik/api/models/flow.rb +532 -0
- data/lib/authentik/api/models/flow_challenge_response_request.rb +97 -0
- data/lib/authentik/api/models/flow_designation_enum.rb +39 -0
- data/lib/authentik/api/models/flow_diagram.rb +159 -0
- data/lib/authentik/api/models/flow_error_challenge.rb +208 -0
- data/lib/authentik/api/models/flow_import_result.rb +187 -0
- data/lib/authentik/api/models/flow_inspection.rb +196 -0
- data/lib/authentik/api/models/flow_inspector_plan.rb +241 -0
- data/lib/authentik/api/models/flow_layout_enum.rb +37 -0
- data/lib/authentik/api/models/flow_request.rb +358 -0
- data/lib/authentik/api/models/flow_set.rb +417 -0
- data/lib/authentik/api/models/flow_stage_binding.rb +368 -0
- data/lib/authentik/api/models/flow_stage_binding_request.rb +290 -0
- data/lib/authentik/api/models/footer_link.rb +171 -0
- data/lib/authentik/api/models/frame_challenge.rb +227 -0
- data/lib/authentik/api/models/frame_challenge_response_request.rb +163 -0
- data/lib/authentik/api/models/generic_error.rb +168 -0
- data/lib/authentik/api/models/geo_ip_policy.rb +572 -0
- data/lib/authentik/api/models/geo_ip_policy_request.rb +392 -0
- data/lib/authentik/api/models/geoip_binding_enum.rb +36 -0
- data/lib/authentik/api/models/global_task_status.rb +392 -0
- data/lib/authentik/api/models/google_endpoint_device.rb +178 -0
- data/lib/authentik/api/models/google_endpoint_device_request.rb +187 -0
- data/lib/authentik/api/models/google_workspace_provider.rb +557 -0
- data/lib/authentik/api/models/google_workspace_provider_group.rb +291 -0
- data/lib/authentik/api/models/google_workspace_provider_group_request.rb +220 -0
- data/lib/authentik/api/models/google_workspace_provider_mapping.rb +330 -0
- data/lib/authentik/api/models/google_workspace_provider_mapping_request.rb +229 -0
- data/lib/authentik/api/models/google_workspace_provider_request.rb +462 -0
- data/lib/authentik/api/models/google_workspace_provider_user.rb +291 -0
- data/lib/authentik/api/models/google_workspace_provider_user_request.rb +220 -0
- data/lib/authentik/api/models/group.rb +377 -0
- data/lib/authentik/api/models/group_kerberos_source_connection.rb +315 -0
- data/lib/authentik/api/models/group_kerberos_source_connection_request.rb +220 -0
- data/lib/authentik/api/models/group_ldap_source_connection.rb +315 -0
- data/lib/authentik/api/models/group_ldap_source_connection_request.rb +220 -0
- data/lib/authentik/api/models/group_matching_mode_enum.rb +35 -0
- data/lib/authentik/api/models/group_o_auth_source_connection.rb +315 -0
- data/lib/authentik/api/models/group_o_auth_source_connection_request.rb +220 -0
- data/lib/authentik/api/models/group_plex_source_connection.rb +315 -0
- data/lib/authentik/api/models/group_plex_source_connection_request.rb +220 -0
- data/lib/authentik/api/models/group_request.rb +222 -0
- data/lib/authentik/api/models/group_saml_source_connection.rb +315 -0
- data/lib/authentik/api/models/group_saml_source_connection_request.rb +220 -0
- data/lib/authentik/api/models/group_source_connection.rb +315 -0
- data/lib/authentik/api/models/group_source_connection_request.rb +220 -0
- data/lib/authentik/api/models/group_telegram_source_connection.rb +315 -0
- data/lib/authentik/api/models/group_telegram_source_connection_request.rb +220 -0
- data/lib/authentik/api/models/hardware.rb +203 -0
- data/lib/authentik/api/models/hardware_request.rb +269 -0
- data/lib/authentik/api/models/identification_challenge.rb +395 -0
- data/lib/authentik/api/models/identification_challenge_response_request.rb +205 -0
- data/lib/authentik/api/models/identification_stage.rb +460 -0
- data/lib/authentik/api/models/identification_stage_request.rb +307 -0
- data/lib/authentik/api/models/iframe_logout_challenge.rb +175 -0
- data/lib/authentik/api/models/iframe_logout_challenge_response_request.rb +163 -0
- data/lib/authentik/api/models/impersonation_request.rb +167 -0
- data/lib/authentik/api/models/initial_permissions.rb +259 -0
- data/lib/authentik/api/models/initial_permissions_request.rb +214 -0
- data/lib/authentik/api/models/install_id.rb +158 -0
- data/lib/authentik/api/models/intent_enum.rb +36 -0
- data/lib/authentik/api/models/invalid_response_action_enum.rb +35 -0
- data/lib/authentik/api/models/invitation.rb +290 -0
- data/lib/authentik/api/models/invitation_request.rb +221 -0
- data/lib/authentik/api/models/invitation_stage.rb +331 -0
- data/lib/authentik/api/models/invitation_stage_request.rb +178 -0
- data/lib/authentik/api/models/issuer_mode_enum.rb +34 -0
- data/lib/authentik/api/models/kadmin_type_enum.rb +34 -0
- data/lib/authentik/api/models/kerberos_source.rb +657 -0
- data/lib/authentik/api/models/kerberos_source_property_mapping.rb +330 -0
- data/lib/authentik/api/models/kerberos_source_property_mapping_request.rb +229 -0
- data/lib/authentik/api/models/kerberos_source_request.rb +533 -0
- data/lib/authentik/api/models/key_type_enum.rb +37 -0
- data/lib/authentik/api/models/kubernetes_service_connection.rb +324 -0
- data/lib/authentik/api/models/kubernetes_service_connection_request.rb +200 -0
- data/lib/authentik/api/models/last_task_status_enum.rb +42 -0
- data/lib/authentik/api/models/ldap_check_access.rb +168 -0
- data/lib/authentik/api/models/ldap_debug.rb +216 -0
- data/lib/authentik/api/models/ldap_outpost_config.rb +406 -0
- data/lib/authentik/api/models/ldap_provider.rb +604 -0
- data/lib/authentik/api/models/ldap_provider_request.rb +418 -0
- data/lib/authentik/api/models/ldap_source.rb +769 -0
- data/lib/authentik/api/models/ldap_source_property_mapping.rb +330 -0
- data/lib/authentik/api/models/ldap_source_property_mapping_request.rb +229 -0
- data/lib/authentik/api/models/ldap_source_request.rb +728 -0
- data/lib/authentik/api/models/ldapapi_access_mode.rb +34 -0
- data/lib/authentik/api/models/license.rb +289 -0
- data/lib/authentik/api/models/license_flags_enum.rb +34 -0
- data/lib/authentik/api/models/license_forecast.rb +237 -0
- data/lib/authentik/api/models/license_request.rb +168 -0
- data/lib/authentik/api/models/license_status_enum.rb +39 -0
- data/lib/authentik/api/models/license_summary.rb +287 -0
- data/lib/authentik/api/models/license_summary_status_enum.rb +39 -0
- data/lib/authentik/api/models/link.rb +159 -0
- data/lib/authentik/api/models/log_event.rb +287 -0
- data/lib/authentik/api/models/log_level_enum.rb +40 -0
- data/lib/authentik/api/models/login_challenge_types.rb +53 -0
- data/lib/authentik/api/models/login_source.rb +206 -0
- data/lib/authentik/api/models/matching_mode_enum.rb +34 -0
- data/lib/authentik/api/models/mdm_config_request.rb +207 -0
- data/lib/authentik/api/models/mdm_config_response.rb +211 -0
- data/lib/authentik/api/models/metadata.rb +187 -0
- data/lib/authentik/api/models/microsoft_entra_provider.rb +537 -0
- data/lib/authentik/api/models/microsoft_entra_provider_group.rb +291 -0
- data/lib/authentik/api/models/microsoft_entra_provider_group_request.rb +220 -0
- data/lib/authentik/api/models/microsoft_entra_provider_mapping.rb +330 -0
- data/lib/authentik/api/models/microsoft_entra_provider_mapping_request.rb +229 -0
- data/lib/authentik/api/models/microsoft_entra_provider_request.rb +432 -0
- data/lib/authentik/api/models/microsoft_entra_provider_user.rb +291 -0
- data/lib/authentik/api/models/microsoft_entra_provider_user_request.rb +220 -0
- data/lib/authentik/api/models/model_enum.rb +147 -0
- data/lib/authentik/api/models/model_request.rb +65 -0
- data/lib/authentik/api/models/mutual_tls_stage.rb +433 -0
- data/lib/authentik/api/models/mutual_tls_stage_request.rb +280 -0
- data/lib/authentik/api/models/native_logout_challenge.rb +229 -0
- data/lib/authentik/api/models/native_logout_challenge_response_request.rb +163 -0
- data/lib/authentik/api/models/network.rb +204 -0
- data/lib/authentik/api/models/network_binding_enum.rb +36 -0
- data/lib/authentik/api/models/network_interface.rb +206 -0
- data/lib/authentik/api/models/network_interface_request.rb +224 -0
- data/lib/authentik/api/models/network_request.rb +232 -0
- data/lib/authentik/api/models/not_configured_action_enum.rb +35 -0
- data/lib/authentik/api/models/notification.rb +312 -0
- data/lib/authentik/api/models/notification_request.rb +186 -0
- data/lib/authentik/api/models/notification_rule.rb +276 -0
- data/lib/authentik/api/models/notification_rule_request.rb +233 -0
- data/lib/authentik/api/models/notification_transport.rb +302 -0
- data/lib/authentik/api/models/notification_transport_mode_enum.rb +36 -0
- data/lib/authentik/api/models/notification_transport_request.rb +277 -0
- data/lib/authentik/api/models/notification_transport_test.rb +161 -0
- data/lib/authentik/api/models/notification_webhook_mapping.rb +211 -0
- data/lib/authentik/api/models/notification_webhook_mapping_request.rb +203 -0
- data/lib/authentik/api/models/o_auth2_provider.rb +670 -0
- data/lib/authentik/api/models/o_auth2_provider_logout_method_enum.rb +34 -0
- data/lib/authentik/api/models/o_auth2_provider_request.rb +578 -0
- data/lib/authentik/api/models/o_auth2_provider_setup_urls.rb +315 -0
- data/lib/authentik/api/models/o_auth_device_code_challenge.rb +164 -0
- data/lib/authentik/api/models/o_auth_device_code_challenge_response_request.rb +198 -0
- data/lib/authentik/api/models/o_auth_device_code_finish_challenge.rb +164 -0
- data/lib/authentik/api/models/o_auth_device_code_finish_challenge_response_request.rb +163 -0
- data/lib/authentik/api/models/o_auth_source.rb +767 -0
- data/lib/authentik/api/models/o_auth_source_property_mapping.rb +330 -0
- data/lib/authentik/api/models/o_auth_source_property_mapping_request.rb +229 -0
- data/lib/authentik/api/models/o_auth_source_request.rb +624 -0
- data/lib/authentik/api/models/open_id_connect_configuration.rb +427 -0
- data/lib/authentik/api/models/operating_system.rb +224 -0
- data/lib/authentik/api/models/operating_system_request.rb +271 -0
- data/lib/authentik/api/models/outgoing_sync_delete_action.rb +35 -0
- data/lib/authentik/api/models/outpost.rb +404 -0
- data/lib/authentik/api/models/outpost_default_config.rb +161 -0
- data/lib/authentik/api/models/outpost_health.rb +432 -0
- data/lib/authentik/api/models/outpost_request.rb +309 -0
- data/lib/authentik/api/models/outpost_type_enum.rb +36 -0
- data/lib/authentik/api/models/paginated_agent_connector_list.rb +214 -0
- data/lib/authentik/api/models/paginated_application_entitlement_list.rb +214 -0
- data/lib/authentik/api/models/paginated_application_list.rb +214 -0
- data/lib/authentik/api/models/paginated_authenticated_session_list.rb +214 -0
- data/lib/authentik/api/models/paginated_authenticator_duo_stage_list.rb +214 -0
- data/lib/authentik/api/models/paginated_authenticator_email_stage_list.rb +214 -0
- data/lib/authentik/api/models/paginated_authenticator_endpoint_gdtc_stage_list.rb +214 -0
- data/lib/authentik/api/models/paginated_authenticator_sms_stage_list.rb +214 -0
- data/lib/authentik/api/models/paginated_authenticator_static_stage_list.rb +214 -0
- data/lib/authentik/api/models/paginated_authenticator_totp_stage_list.rb +214 -0
- data/lib/authentik/api/models/paginated_authenticator_validate_stage_list.rb +214 -0
- data/lib/authentik/api/models/paginated_authenticator_web_authn_stage_list.rb +214 -0
- data/lib/authentik/api/models/paginated_blueprint_instance_list.rb +214 -0
- data/lib/authentik/api/models/paginated_brand_list.rb +214 -0
- data/lib/authentik/api/models/paginated_captcha_stage_list.rb +214 -0
- data/lib/authentik/api/models/paginated_certificate_key_pair_list.rb +214 -0
- data/lib/authentik/api/models/paginated_connection_token_list.rb +214 -0
- data/lib/authentik/api/models/paginated_connector_list.rb +214 -0
- data/lib/authentik/api/models/paginated_consent_stage_list.rb +214 -0
- data/lib/authentik/api/models/paginated_data_export_list.rb +214 -0
- data/lib/authentik/api/models/paginated_deny_stage_list.rb +214 -0
- data/lib/authentik/api/models/paginated_device_access_group_list.rb +214 -0
- data/lib/authentik/api/models/paginated_device_user_binding_list.rb +214 -0
- data/lib/authentik/api/models/paginated_docker_service_connection_list.rb +214 -0
- data/lib/authentik/api/models/paginated_domain_list.rb +214 -0
- data/lib/authentik/api/models/paginated_dummy_policy_list.rb +214 -0
- data/lib/authentik/api/models/paginated_dummy_stage_list.rb +214 -0
- data/lib/authentik/api/models/paginated_duo_device_list.rb +214 -0
- data/lib/authentik/api/models/paginated_email_device_list.rb +214 -0
- data/lib/authentik/api/models/paginated_email_stage_list.rb +214 -0
- data/lib/authentik/api/models/paginated_endpoint_device_list.rb +214 -0
- data/lib/authentik/api/models/paginated_endpoint_list.rb +214 -0
- data/lib/authentik/api/models/paginated_endpoint_stage_list.rb +214 -0
- data/lib/authentik/api/models/paginated_enrollment_token_list.rb +214 -0
- data/lib/authentik/api/models/paginated_event_list.rb +214 -0
- data/lib/authentik/api/models/paginated_event_matcher_policy_list.rb +214 -0
- data/lib/authentik/api/models/paginated_expiring_base_grant_model_list.rb +214 -0
- data/lib/authentik/api/models/paginated_expression_policy_list.rb +214 -0
- data/lib/authentik/api/models/paginated_extra_role_object_permission_list.rb +186 -0
- data/lib/authentik/api/models/paginated_flow_list.rb +214 -0
- data/lib/authentik/api/models/paginated_flow_stage_binding_list.rb +214 -0
- data/lib/authentik/api/models/paginated_geo_ip_policy_list.rb +214 -0
- data/lib/authentik/api/models/paginated_google_endpoint_device_list.rb +214 -0
- data/lib/authentik/api/models/paginated_google_workspace_provider_group_list.rb +214 -0
- data/lib/authentik/api/models/paginated_google_workspace_provider_list.rb +214 -0
- data/lib/authentik/api/models/paginated_google_workspace_provider_mapping_list.rb +214 -0
- data/lib/authentik/api/models/paginated_google_workspace_provider_user_list.rb +214 -0
- data/lib/authentik/api/models/paginated_group_kerberos_source_connection_list.rb +214 -0
- data/lib/authentik/api/models/paginated_group_ldap_source_connection_list.rb +214 -0
- data/lib/authentik/api/models/paginated_group_list.rb +214 -0
- data/lib/authentik/api/models/paginated_group_o_auth_source_connection_list.rb +214 -0
- data/lib/authentik/api/models/paginated_group_plex_source_connection_list.rb +214 -0
- data/lib/authentik/api/models/paginated_group_saml_source_connection_list.rb +214 -0
- data/lib/authentik/api/models/paginated_group_source_connection_list.rb +214 -0
- data/lib/authentik/api/models/paginated_group_telegram_source_connection_list.rb +214 -0
- data/lib/authentik/api/models/paginated_identification_stage_list.rb +214 -0
- data/lib/authentik/api/models/paginated_initial_permissions_list.rb +214 -0
- data/lib/authentik/api/models/paginated_invitation_list.rb +214 -0
- data/lib/authentik/api/models/paginated_invitation_stage_list.rb +214 -0
- data/lib/authentik/api/models/paginated_kerberos_source_list.rb +214 -0
- data/lib/authentik/api/models/paginated_kerberos_source_property_mapping_list.rb +214 -0
- data/lib/authentik/api/models/paginated_kubernetes_service_connection_list.rb +214 -0
- data/lib/authentik/api/models/paginated_ldap_outpost_config_list.rb +214 -0
- data/lib/authentik/api/models/paginated_ldap_provider_list.rb +214 -0
- data/lib/authentik/api/models/paginated_ldap_source_list.rb +214 -0
- data/lib/authentik/api/models/paginated_ldap_source_property_mapping_list.rb +214 -0
- data/lib/authentik/api/models/paginated_license_list.rb +214 -0
- data/lib/authentik/api/models/paginated_microsoft_entra_provider_group_list.rb +214 -0
- data/lib/authentik/api/models/paginated_microsoft_entra_provider_list.rb +214 -0
- data/lib/authentik/api/models/paginated_microsoft_entra_provider_mapping_list.rb +214 -0
- data/lib/authentik/api/models/paginated_microsoft_entra_provider_user_list.rb +214 -0
- data/lib/authentik/api/models/paginated_mutual_tls_stage_list.rb +214 -0
- data/lib/authentik/api/models/paginated_notification_list.rb +214 -0
- data/lib/authentik/api/models/paginated_notification_rule_list.rb +214 -0
- data/lib/authentik/api/models/paginated_notification_transport_list.rb +214 -0
- data/lib/authentik/api/models/paginated_notification_webhook_mapping_list.rb +214 -0
- data/lib/authentik/api/models/paginated_o_auth2_provider_list.rb +214 -0
- data/lib/authentik/api/models/paginated_o_auth_source_list.rb +214 -0
- data/lib/authentik/api/models/paginated_o_auth_source_property_mapping_list.rb +214 -0
- data/lib/authentik/api/models/paginated_outpost_list.rb +214 -0
- data/lib/authentik/api/models/paginated_password_expiry_policy_list.rb +214 -0
- data/lib/authentik/api/models/paginated_password_policy_list.rb +214 -0
- data/lib/authentik/api/models/paginated_password_stage_list.rb +214 -0
- data/lib/authentik/api/models/paginated_permission_list.rb +214 -0
- data/lib/authentik/api/models/paginated_plex_source_list.rb +214 -0
- data/lib/authentik/api/models/paginated_plex_source_property_mapping_list.rb +214 -0
- data/lib/authentik/api/models/paginated_policy_binding_list.rb +214 -0
- data/lib/authentik/api/models/paginated_policy_list.rb +214 -0
- data/lib/authentik/api/models/paginated_prompt_list.rb +214 -0
- data/lib/authentik/api/models/paginated_prompt_stage_list.rb +214 -0
- data/lib/authentik/api/models/paginated_property_mapping_list.rb +214 -0
- data/lib/authentik/api/models/paginated_provider_list.rb +214 -0
- data/lib/authentik/api/models/paginated_proxy_outpost_config_list.rb +214 -0
- data/lib/authentik/api/models/paginated_proxy_provider_list.rb +214 -0
- data/lib/authentik/api/models/paginated_rac_property_mapping_list.rb +214 -0
- data/lib/authentik/api/models/paginated_rac_provider_list.rb +214 -0
- data/lib/authentik/api/models/paginated_radius_outpost_config_list.rb +214 -0
- data/lib/authentik/api/models/paginated_radius_provider_list.rb +214 -0
- data/lib/authentik/api/models/paginated_radius_provider_property_mapping_list.rb +214 -0
- data/lib/authentik/api/models/paginated_redirect_stage_list.rb +214 -0
- data/lib/authentik/api/models/paginated_reputation_list.rb +214 -0
- data/lib/authentik/api/models/paginated_reputation_policy_list.rb +214 -0
- data/lib/authentik/api/models/paginated_role_assigned_object_permission_list.rb +214 -0
- data/lib/authentik/api/models/paginated_role_list.rb +214 -0
- data/lib/authentik/api/models/paginated_saml_property_mapping_list.rb +214 -0
- data/lib/authentik/api/models/paginated_saml_provider_list.rb +214 -0
- data/lib/authentik/api/models/paginated_saml_source_list.rb +214 -0
- data/lib/authentik/api/models/paginated_saml_source_property_mapping_list.rb +214 -0
- data/lib/authentik/api/models/paginated_schedule_list.rb +214 -0
- data/lib/authentik/api/models/paginated_scim_mapping_list.rb +214 -0
- data/lib/authentik/api/models/paginated_scim_provider_group_list.rb +214 -0
- data/lib/authentik/api/models/paginated_scim_provider_list.rb +214 -0
- data/lib/authentik/api/models/paginated_scim_provider_user_list.rb +214 -0
- data/lib/authentik/api/models/paginated_scim_source_group_list.rb +214 -0
- data/lib/authentik/api/models/paginated_scim_source_list.rb +214 -0
- data/lib/authentik/api/models/paginated_scim_source_property_mapping_list.rb +214 -0
- data/lib/authentik/api/models/paginated_scim_source_user_list.rb +214 -0
- data/lib/authentik/api/models/paginated_scope_mapping_list.rb +214 -0
- data/lib/authentik/api/models/paginated_service_connection_list.rb +214 -0
- data/lib/authentik/api/models/paginated_sms_device_list.rb +214 -0
- data/lib/authentik/api/models/paginated_source_list.rb +214 -0
- data/lib/authentik/api/models/paginated_source_stage_list.rb +214 -0
- data/lib/authentik/api/models/paginated_ssf_provider_list.rb +214 -0
- data/lib/authentik/api/models/paginated_ssf_stream_list.rb +214 -0
- data/lib/authentik/api/models/paginated_stage_list.rb +214 -0
- data/lib/authentik/api/models/paginated_static_device_list.rb +214 -0
- data/lib/authentik/api/models/paginated_task_list.rb +214 -0
- data/lib/authentik/api/models/paginated_telegram_source_list.rb +214 -0
- data/lib/authentik/api/models/paginated_telegram_source_property_mapping_list.rb +214 -0
- data/lib/authentik/api/models/paginated_tenant_list.rb +214 -0
- data/lib/authentik/api/models/paginated_token_list.rb +214 -0
- data/lib/authentik/api/models/paginated_token_model_list.rb +214 -0
- data/lib/authentik/api/models/paginated_totp_device_list.rb +214 -0
- data/lib/authentik/api/models/paginated_unique_password_policy_list.rb +214 -0
- data/lib/authentik/api/models/paginated_user_consent_list.rb +214 -0
- data/lib/authentik/api/models/paginated_user_delete_stage_list.rb +214 -0
- data/lib/authentik/api/models/paginated_user_kerberos_source_connection_list.rb +214 -0
- data/lib/authentik/api/models/paginated_user_ldap_source_connection_list.rb +214 -0
- data/lib/authentik/api/models/paginated_user_list.rb +214 -0
- data/lib/authentik/api/models/paginated_user_login_stage_list.rb +214 -0
- data/lib/authentik/api/models/paginated_user_logout_stage_list.rb +214 -0
- data/lib/authentik/api/models/paginated_user_o_auth_source_connection_list.rb +214 -0
- data/lib/authentik/api/models/paginated_user_plex_source_connection_list.rb +214 -0
- data/lib/authentik/api/models/paginated_user_saml_source_connection_list.rb +214 -0
- data/lib/authentik/api/models/paginated_user_source_connection_list.rb +214 -0
- data/lib/authentik/api/models/paginated_user_telegram_source_connection_list.rb +214 -0
- data/lib/authentik/api/models/paginated_user_write_stage_list.rb +214 -0
- data/lib/authentik/api/models/paginated_web_authn_device_list.rb +214 -0
- data/lib/authentik/api/models/paginated_web_authn_device_type_list.rb +214 -0
- data/lib/authentik/api/models/pagination.rb +314 -0
- data/lib/authentik/api/models/partial_group.rb +233 -0
- data/lib/authentik/api/models/partial_user.rb +318 -0
- data/lib/authentik/api/models/password_challenge.rb +236 -0
- data/lib/authentik/api/models/password_challenge_response_request.rb +198 -0
- data/lib/authentik/api/models/password_expiry_policy.rb +383 -0
- data/lib/authentik/api/models/password_expiry_policy_request.rb +231 -0
- data/lib/authentik/api/models/password_policy.rb +646 -0
- data/lib/authentik/api/models/password_policy_request.rb +532 -0
- data/lib/authentik/api/models/password_stage.rb +409 -0
- data/lib/authentik/api/models/password_stage_request.rb +256 -0
- data/lib/authentik/api/models/patched_agent_connector_request.rb +413 -0
- data/lib/authentik/api/models/patched_application_entitlement_request.rb +181 -0
- data/lib/authentik/api/models/patched_application_request.rb +309 -0
- data/lib/authentik/api/models/patched_authenticator_duo_stage_request.rb +283 -0
- data/lib/authentik/api/models/patched_authenticator_email_stage_request.rb +451 -0
- data/lib/authentik/api/models/patched_authenticator_endpoint_gdtc_stage_request.rb +192 -0
- data/lib/authentik/api/models/patched_authenticator_sms_stage_request.rb +335 -0
- data/lib/authentik/api/models/patched_authenticator_static_stage_request.rb +255 -0
- data/lib/authentik/api/models/patched_authenticator_totp_stage_request.rb +212 -0
- data/lib/authentik/api/models/patched_authenticator_validate_stage_request.rb +266 -0
- data/lib/authentik/api/models/patched_authenticator_web_authn_stage_request.rb +279 -0
- data/lib/authentik/api/models/patched_blueprint_instance_request.rb +201 -0
- data/lib/authentik/api/models/patched_brand_request.rb +397 -0
- data/lib/authentik/api/models/patched_captcha_stage_request.rb +312 -0
- data/lib/authentik/api/models/patched_certificate_key_pair_request.rb +200 -0
- data/lib/authentik/api/models/patched_connection_token_request.rb +160 -0
- data/lib/authentik/api/models/patched_consent_stage_request.rb +221 -0
- data/lib/authentik/api/models/patched_deny_stage_request.rb +170 -0
- data/lib/authentik/api/models/patched_device_access_group_request.rb +160 -0
- data/lib/authentik/api/models/patched_device_user_binding_request.rb +285 -0
- data/lib/authentik/api/models/patched_docker_service_connection_request.rb +222 -0
- data/lib/authentik/api/models/patched_domain_request.rb +188 -0
- data/lib/authentik/api/models/patched_dummy_policy_request.rb +254 -0
- data/lib/authentik/api/models/patched_dummy_stage_request.rb +170 -0
- data/lib/authentik/api/models/patched_duo_device_request.rb +171 -0
- data/lib/authentik/api/models/patched_email_device_request.rb +171 -0
- data/lib/authentik/api/models/patched_email_stage_request.rb +507 -0
- data/lib/authentik/api/models/patched_endpoint_device_request.rb +218 -0
- data/lib/authentik/api/models/patched_endpoint_request.rb +297 -0
- data/lib/authentik/api/models/patched_endpoint_stage_request.rb +201 -0
- data/lib/authentik/api/models/patched_enrollment_token_request.rb +198 -0
- data/lib/authentik/api/models/patched_event_matcher_policy_request.rb +252 -0
- data/lib/authentik/api/models/patched_event_request.rb +259 -0
- data/lib/authentik/api/models/patched_expression_policy_request.rb +199 -0
- data/lib/authentik/api/models/patched_flow_request.rb +320 -0
- data/lib/authentik/api/models/patched_flow_stage_binding_request.rb +249 -0
- data/lib/authentik/api/models/patched_geo_ip_policy_request.rb +378 -0
- data/lib/authentik/api/models/patched_google_endpoint_device_request.rb +180 -0
- data/lib/authentik/api/models/patched_google_workspace_provider_mapping_request.rb +215 -0
- data/lib/authentik/api/models/patched_google_workspace_provider_request.rb +424 -0
- data/lib/authentik/api/models/patched_group_kerberos_source_connection_request.rb +179 -0
- data/lib/authentik/api/models/patched_group_ldap_source_connection_request.rb +179 -0
- data/lib/authentik/api/models/patched_group_o_auth_source_connection_request.rb +179 -0
- data/lib/authentik/api/models/patched_group_plex_source_connection_request.rb +179 -0
- data/lib/authentik/api/models/patched_group_request.rb +215 -0
- data/lib/authentik/api/models/patched_group_saml_source_connection_request.rb +179 -0
- data/lib/authentik/api/models/patched_group_source_connection_request.rb +179 -0
- data/lib/authentik/api/models/patched_group_telegram_source_connection_request.rb +179 -0
- data/lib/authentik/api/models/patched_identification_stage_request.rb +300 -0
- data/lib/authentik/api/models/patched_initial_permissions_request.rb +190 -0
- data/lib/authentik/api/models/patched_invitation_request.rb +214 -0
- data/lib/authentik/api/models/patched_invitation_stage_request.rb +171 -0
- data/lib/authentik/api/models/patched_kerberos_source_property_mapping_request.rb +215 -0
- data/lib/authentik/api/models/patched_kerberos_source_request.rb +512 -0
- data/lib/authentik/api/models/patched_kubernetes_service_connection_request.rb +193 -0
- data/lib/authentik/api/models/patched_ldap_provider_request.rb +377 -0
- data/lib/authentik/api/models/patched_ldap_source_property_mapping_request.rb +215 -0
- data/lib/authentik/api/models/patched_ldap_source_request.rb +700 -0
- data/lib/authentik/api/models/patched_license_request.rb +161 -0
- data/lib/authentik/api/models/patched_microsoft_entra_provider_mapping_request.rb +215 -0
- data/lib/authentik/api/models/patched_microsoft_entra_provider_request.rb +404 -0
- data/lib/authentik/api/models/patched_mutual_tls_stage_request.rb +222 -0
- data/lib/authentik/api/models/patched_notification_request.rb +186 -0
- data/lib/authentik/api/models/patched_notification_rule_request.rb +226 -0
- data/lib/authentik/api/models/patched_notification_transport_request.rb +270 -0
- data/lib/authentik/api/models/patched_notification_webhook_mapping_request.rb +189 -0
- data/lib/authentik/api/models/patched_o_auth2_provider_request.rb +520 -0
- data/lib/authentik/api/models/patched_o_auth_source_property_mapping_request.rb +215 -0
- data/lib/authentik/api/models/patched_o_auth_source_request.rb +579 -0
- data/lib/authentik/api/models/patched_outpost_request.rb +251 -0
- data/lib/authentik/api/models/patched_password_expiry_policy_request.rb +217 -0
- data/lib/authentik/api/models/patched_password_policy_request.rb +525 -0
- data/lib/authentik/api/models/patched_password_stage_request.rb +232 -0
- data/lib/authentik/api/models/patched_permission_assign_request.rb +203 -0
- data/lib/authentik/api/models/patched_plex_source_property_mapping_request.rb +215 -0
- data/lib/authentik/api/models/patched_plex_source_request.rb +433 -0
- data/lib/authentik/api/models/patched_policy_binding_request.rb +276 -0
- data/lib/authentik/api/models/patched_prompt_request.rb +342 -0
- data/lib/authentik/api/models/patched_prompt_stage_request.rb +183 -0
- data/lib/authentik/api/models/patched_proxy_provider_request.rb +431 -0
- data/lib/authentik/api/models/patched_rac_property_mapping_request.rb +207 -0
- data/lib/authentik/api/models/patched_rac_provider_request.rb +243 -0
- data/lib/authentik/api/models/patched_radius_provider_property_mapping_request.rb +215 -0
- data/lib/authentik/api/models/patched_radius_provider_request.rb +281 -0
- data/lib/authentik/api/models/patched_redirect_stage_request.rb +220 -0
- data/lib/authentik/api/models/patched_reputation_policy_request.rb +226 -0
- data/lib/authentik/api/models/patched_role_request.rb +170 -0
- data/lib/authentik/api/models/patched_saml_property_mapping_request.rb +253 -0
- data/lib/authentik/api/models/patched_saml_provider_request.rb +538 -0
- data/lib/authentik/api/models/patched_saml_source_property_mapping_request.rb +215 -0
- data/lib/authentik/api/models/patched_saml_source_request.rb +540 -0
- data/lib/authentik/api/models/patched_schedule_request.rb +196 -0
- data/lib/authentik/api/models/patched_scim_mapping_request.rb +215 -0
- data/lib/authentik/api/models/patched_scim_provider_request.rb +421 -0
- data/lib/authentik/api/models/patched_scim_source_group_request.rb +218 -0
- data/lib/authentik/api/models/patched_scim_source_property_mapping_request.rb +215 -0
- data/lib/authentik/api/models/patched_scim_source_request.rb +261 -0
- data/lib/authentik/api/models/patched_scim_source_user_request.rb +218 -0
- data/lib/authentik/api/models/patched_scope_mapping_request.rb +254 -0
- data/lib/authentik/api/models/patched_settings_request.rb +489 -0
- data/lib/authentik/api/models/patched_settings_request_flags.rb +184 -0
- data/lib/authentik/api/models/patched_sms_device_request.rb +171 -0
- data/lib/authentik/api/models/patched_source_stage_request.rb +199 -0
- data/lib/authentik/api/models/patched_ssf_provider_request.rb +210 -0
- data/lib/authentik/api/models/patched_static_device_request.rb +171 -0
- data/lib/authentik/api/models/patched_telegram_source_property_mapping_request.rb +215 -0
- data/lib/authentik/api/models/patched_telegram_source_request.rb +421 -0
- data/lib/authentik/api/models/patched_tenant_request.rb +207 -0
- data/lib/authentik/api/models/patched_token_request.rb +275 -0
- data/lib/authentik/api/models/patched_totp_device_request.rb +171 -0
- data/lib/authentik/api/models/patched_unique_password_policy_request.rb +238 -0
- data/lib/authentik/api/models/patched_user_delete_stage_request.rb +161 -0
- data/lib/authentik/api/models/patched_user_kerberos_source_connection_request.rb +179 -0
- data/lib/authentik/api/models/patched_user_ldap_source_connection_request.rb +179 -0
- data/lib/authentik/api/models/patched_user_login_stage_request.rb +300 -0
- data/lib/authentik/api/models/patched_user_logout_stage_request.rb +161 -0
- data/lib/authentik/api/models/patched_user_o_auth_source_connection_request.rb +198 -0
- data/lib/authentik/api/models/patched_user_plex_source_connection_request.rb +207 -0
- data/lib/authentik/api/models/patched_user_request.rb +320 -0
- data/lib/authentik/api/models/patched_user_saml_source_connection_request.rb +179 -0
- data/lib/authentik/api/models/patched_user_source_connection_request.rb +179 -0
- data/lib/authentik/api/models/patched_user_telegram_source_connection_request.rb +179 -0
- data/lib/authentik/api/models/patched_user_write_stage_request.rb +231 -0
- data/lib/authentik/api/models/patched_web_authn_device_request.rb +170 -0
- data/lib/authentik/api/models/permission.rb +335 -0
- data/lib/authentik/api/models/permission_assign_request.rb +220 -0
- data/lib/authentik/api/models/permission_assign_result.rb +159 -0
- data/lib/authentik/api/models/pkce_method_enum.rb +35 -0
- data/lib/authentik/api/models/plex_authentication_challenge.rb +216 -0
- data/lib/authentik/api/models/plex_authentication_challenge_response_request.rb +163 -0
- data/lib/authentik/api/models/plex_source.rb +574 -0
- data/lib/authentik/api/models/plex_source_property_mapping.rb +330 -0
- data/lib/authentik/api/models/plex_source_property_mapping_request.rb +229 -0
- data/lib/authentik/api/models/plex_source_request.rb +454 -0
- data/lib/authentik/api/models/plex_token_redeem_request.rb +168 -0
- data/lib/authentik/api/models/policy.rb +330 -0
- data/lib/authentik/api/models/policy_binding.rb +404 -0
- data/lib/authentik/api/models/policy_binding_request.rb +300 -0
- data/lib/authentik/api/models/policy_engine_mode.rb +34 -0
- data/lib/authentik/api/models/policy_test_request.rb +170 -0
- data/lib/authentik/api/models/policy_test_result.rb +215 -0
- data/lib/authentik/api/models/process.rb +193 -0
- data/lib/authentik/api/models/process_request.rb +221 -0
- data/lib/authentik/api/models/prompt.rb +407 -0
- data/lib/authentik/api/models/prompt_challenge.rb +192 -0
- data/lib/authentik/api/models/prompt_challenge_response_request.rb +163 -0
- data/lib/authentik/api/models/prompt_choice.rb +185 -0
- data/lib/authentik/api/models/prompt_request.rb +380 -0
- data/lib/authentik/api/models/prompt_stage.rb +360 -0
- data/lib/authentik/api/models/prompt_stage_request.rb +207 -0
- data/lib/authentik/api/models/prompt_type_enum.rb +50 -0
- data/lib/authentik/api/models/property_mapping.rb +330 -0
- data/lib/authentik/api/models/property_mapping_preview.rb +161 -0
- data/lib/authentik/api/models/property_mapping_test_request.rb +164 -0
- data/lib/authentik/api/models/property_mapping_test_result.rb +185 -0
- data/lib/authentik/api/models/protocol_enum.rb +35 -0
- data/lib/authentik/api/models/provider.rb +421 -0
- data/lib/authentik/api/models/provider_enum.rb +34 -0
- data/lib/authentik/api/models/provider_model_enum.rb +42 -0
- data/lib/authentik/api/models/provider_type_enum.rb +49 -0
- data/lib/authentik/api/models/proxy_mode.rb +35 -0
- data/lib/authentik/api/models/proxy_outpost_config.rb +518 -0
- data/lib/authentik/api/models/proxy_provider.rb +691 -0
- data/lib/authentik/api/models/proxy_provider_request.rb +479 -0
- data/lib/authentik/api/models/rac_property_mapping.rb +341 -0
- data/lib/authentik/api/models/rac_property_mapping_request.rb +231 -0
- data/lib/authentik/api/models/rac_provider.rb +453 -0
- data/lib/authentik/api/models/rac_provider_request.rb +267 -0
- data/lib/authentik/api/models/radius_check_access.rb +168 -0
- data/lib/authentik/api/models/radius_outpost_config.rb +277 -0
- data/lib/authentik/api/models/radius_provider.rb +489 -0
- data/lib/authentik/api/models/radius_provider_property_mapping.rb +330 -0
- data/lib/authentik/api/models/radius_provider_property_mapping_request.rb +229 -0
- data/lib/authentik/api/models/radius_provider_request.rb +322 -0
- data/lib/authentik/api/models/redirect_challenge.rb +190 -0
- data/lib/authentik/api/models/redirect_challenge_response_request.rb +198 -0
- data/lib/authentik/api/models/redirect_stage.rb +397 -0
- data/lib/authentik/api/models/redirect_stage_mode_enum.rb +34 -0
- data/lib/authentik/api/models/redirect_stage_request.rb +244 -0
- data/lib/authentik/api/models/redirect_uri.rb +207 -0
- data/lib/authentik/api/models/redirect_uri_request.rb +216 -0
- data/lib/authentik/api/models/related_group.rb +232 -0
- data/lib/authentik/api/models/reputation.rb +279 -0
- data/lib/authentik/api/models/reputation_policy.rb +385 -0
- data/lib/authentik/api/models/reputation_policy_request.rb +233 -0
- data/lib/authentik/api/models/resident_key_requirement_enum.rb +35 -0
- data/lib/authentik/api/models/role.rb +194 -0
- data/lib/authentik/api/models/role_assigned_object_permission.rb +241 -0
- data/lib/authentik/api/models/role_model_permission.rb +263 -0
- data/lib/authentik/api/models/role_object_permission.rb +289 -0
- data/lib/authentik/api/models/role_request.rb +177 -0
- data/lib/authentik/api/models/saml_bindings_enum.rb +34 -0
- data/lib/authentik/api/models/saml_metadata.rb +185 -0
- data/lib/authentik/api/models/saml_name_id_policy_enum.rb +38 -0
- data/lib/authentik/api/models/saml_property_mapping.rb +366 -0
- data/lib/authentik/api/models/saml_property_mapping_request.rb +274 -0
- data/lib/authentik/api/models/saml_provider.rb +840 -0
- data/lib/authentik/api/models/saml_provider_logout_method_enum.rb +35 -0
- data/lib/authentik/api/models/saml_provider_request.rb +586 -0
- data/lib/authentik/api/models/saml_source.rb +698 -0
- data/lib/authentik/api/models/saml_source_property_mapping.rb +330 -0
- data/lib/authentik/api/models/saml_source_property_mapping_request.rb +229 -0
- data/lib/authentik/api/models/saml_source_request.rb +578 -0
- data/lib/authentik/api/models/schedule.rb +395 -0
- data/lib/authentik/api/models/schedule_request.rb +203 -0
- data/lib/authentik/api/models/scim_authentication_mode_enum.rb +34 -0
- data/lib/authentik/api/models/scim_mapping.rb +330 -0
- data/lib/authentik/api/models/scim_mapping_request.rb +229 -0
- data/lib/authentik/api/models/scim_provider.rb +539 -0
- data/lib/authentik/api/models/scim_provider_group.rb +291 -0
- data/lib/authentik/api/models/scim_provider_group_request.rb +220 -0
- data/lib/authentik/api/models/scim_provider_request.rb +435 -0
- data/lib/authentik/api/models/scim_provider_user.rb +291 -0
- data/lib/authentik/api/models/scim_provider_user_request.rb +220 -0
- data/lib/authentik/api/models/scim_source.rb +438 -0
- data/lib/authentik/api/models/scim_source_group.rb +257 -0
- data/lib/authentik/api/models/scim_source_group_request.rb +259 -0
- data/lib/authentik/api/models/scim_source_property_mapping.rb +330 -0
- data/lib/authentik/api/models/scim_source_property_mapping_request.rb +229 -0
- data/lib/authentik/api/models/scim_source_request.rb +275 -0
- data/lib/authentik/api/models/scim_source_user.rb +257 -0
- data/lib/authentik/api/models/scim_source_user_request.rb +259 -0
- data/lib/authentik/api/models/scope_mapping.rb +367 -0
- data/lib/authentik/api/models/scope_mapping_request.rb +275 -0
- data/lib/authentik/api/models/selectable_stage.rb +237 -0
- data/lib/authentik/api/models/service_connection.rb +303 -0
- data/lib/authentik/api/models/service_connection_state.rb +185 -0
- data/lib/authentik/api/models/session_end_challenge.rb +269 -0
- data/lib/authentik/api/models/session_user.rb +168 -0
- data/lib/authentik/api/models/settings.rb +449 -0
- data/lib/authentik/api/models/settings_request.rb +506 -0
- data/lib/authentik/api/models/severity_enum.rb +35 -0
- data/lib/authentik/api/models/shell_challenge.rb +190 -0
- data/lib/authentik/api/models/signature_algorithm_enum.rb +41 -0
- data/lib/authentik/api/models/sms_device.rb +247 -0
- data/lib/authentik/api/models/sms_device_request.rb +178 -0
- data/lib/authentik/api/models/software.rb +202 -0
- data/lib/authentik/api/models/software_request.rb +239 -0
- data/lib/authentik/api/models/source.rb +492 -0
- data/lib/authentik/api/models/source_stage.rb +357 -0
- data/lib/authentik/api/models/source_stage_request.rb +223 -0
- data/lib/authentik/api/models/source_type.rb +283 -0
- data/lib/authentik/api/models/ssf_provider.rb +378 -0
- data/lib/authentik/api/models/ssf_provider_request.rb +234 -0
- data/lib/authentik/api/models/ssf_stream.rb +343 -0
- data/lib/authentik/api/models/stage.rb +321 -0
- data/lib/authentik/api/models/stage_mode_enum.rb +34 -0
- data/lib/authentik/api/models/stage_prompt.rb +377 -0
- data/lib/authentik/api/models/state_enum.rb +39 -0
- data/lib/authentik/api/models/static_device.rb +249 -0
- data/lib/authentik/api/models/static_device_request.rb +178 -0
- data/lib/authentik/api/models/static_device_token.rb +168 -0
- data/lib/authentik/api/models/sub_mode_enum.rb +38 -0
- data/lib/authentik/api/models/sync_object_model_enum.rb +34 -0
- data/lib/authentik/api/models/sync_object_request.rb +227 -0
- data/lib/authentik/api/models/sync_object_result.rb +161 -0
- data/lib/authentik/api/models/sync_outgoing_trigger_mode_enum.rb +35 -0
- data/lib/authentik/api/models/sync_status.rb +199 -0
- data/lib/authentik/api/models/system_info.rb +350 -0
- data/lib/authentik/api/models/system_info_runtime.rb +327 -0
- data/lib/authentik/api/models/task.rb +451 -0
- data/lib/authentik/api/models/task_aggregated_status_enum.rb +42 -0
- data/lib/authentik/api/models/telegram_auth_request.rb +367 -0
- data/lib/authentik/api/models/telegram_challenge_response_request.rb +398 -0
- data/lib/authentik/api/models/telegram_login_challenge.rb +217 -0
- data/lib/authentik/api/models/telegram_source.rb +555 -0
- data/lib/authentik/api/models/telegram_source_property_mapping.rb +330 -0
- data/lib/authentik/api/models/telegram_source_property_mapping_request.rb +229 -0
- data/lib/authentik/api/models/telegram_source_request.rb +466 -0
- data/lib/authentik/api/models/tenant.rb +229 -0
- data/lib/authentik/api/models/tenant_admin_group_request_request.rb +168 -0
- data/lib/authentik/api/models/tenant_recovery_key_request_request.rb +194 -0
- data/lib/authentik/api/models/tenant_recovery_key_response.rb +185 -0
- data/lib/authentik/api/models/tenant_request.rb +221 -0
- data/lib/authentik/api/models/themed_urls.rb +153 -0
- data/lib/authentik/api/models/token.rb +310 -0
- data/lib/authentik/api/models/token_model.rb +312 -0
- data/lib/authentik/api/models/token_request.rb +282 -0
- data/lib/authentik/api/models/token_set_key_request.rb +168 -0
- data/lib/authentik/api/models/token_view.rb +159 -0
- data/lib/authentik/api/models/totp_device.rb +221 -0
- data/lib/authentik/api/models/totp_device_request.rb +178 -0
- data/lib/authentik/api/models/transaction_application_request.rb +244 -0
- data/lib/authentik/api/models/transaction_application_response.rb +187 -0
- data/lib/authentik/api/models/transaction_policy_binding_request.rb +274 -0
- data/lib/authentik/api/models/type_create.rb +268 -0
- data/lib/authentik/api/models/ui_theme_enum.rb +35 -0
- data/lib/authentik/api/models/unique_password_policy.rb +378 -0
- data/lib/authentik/api/models/unique_password_policy_request.rb +245 -0
- data/lib/authentik/api/models/used_by.rb +285 -0
- data/lib/authentik/api/models/used_by_action_enum.rb +37 -0
- data/lib/authentik/api/models/user.rb +553 -0
- data/lib/authentik/api/models/user_account_request.rb +159 -0
- data/lib/authentik/api/models/user_account_serializer_for_role_request.rb +159 -0
- data/lib/authentik/api/models/user_attribute_enum.rb +34 -0
- data/lib/authentik/api/models/user_consent.rb +241 -0
- data/lib/authentik/api/models/user_creation_mode_enum.rb +35 -0
- data/lib/authentik/api/models/user_delete_stage.rb +321 -0
- data/lib/authentik/api/models/user_delete_stage_request.rb +168 -0
- data/lib/authentik/api/models/user_fields_enum.rb +35 -0
- data/lib/authentik/api/models/user_kerberos_source_connection.rb +315 -0
- data/lib/authentik/api/models/user_kerberos_source_connection_request.rb +220 -0
- data/lib/authentik/api/models/user_ldap_source_connection.rb +315 -0
- data/lib/authentik/api/models/user_ldap_source_connection_request.rb +220 -0
- data/lib/authentik/api/models/user_login_challenge.rb +216 -0
- data/lib/authentik/api/models/user_login_challenge_response_request.rb +189 -0
- data/lib/authentik/api/models/user_login_stage.rb +403 -0
- data/lib/authentik/api/models/user_login_stage_request.rb +307 -0
- data/lib/authentik/api/models/user_logout_stage.rb +321 -0
- data/lib/authentik/api/models/user_logout_stage_request.rb +168 -0
- data/lib/authentik/api/models/user_matching_mode_enum.rb +37 -0
- data/lib/authentik/api/models/user_o_auth_source_connection.rb +324 -0
- data/lib/authentik/api/models/user_o_auth_source_connection_request.rb +239 -0
- data/lib/authentik/api/models/user_password_set_request.rb +168 -0
- data/lib/authentik/api/models/user_path.rb +160 -0
- data/lib/authentik/api/models/user_plex_source_connection.rb +315 -0
- data/lib/authentik/api/models/user_plex_source_connection_request.rb +255 -0
- data/lib/authentik/api/models/user_request.rb +344 -0
- data/lib/authentik/api/models/user_saml_source_connection.rb +315 -0
- data/lib/authentik/api/models/user_saml_source_connection_request.rb +220 -0
- data/lib/authentik/api/models/user_self.rb +512 -0
- data/lib/authentik/api/models/user_self_groups.rb +184 -0
- data/lib/authentik/api/models/user_self_roles.rb +184 -0
- data/lib/authentik/api/models/user_service_account_request.rb +200 -0
- data/lib/authentik/api/models/user_service_account_response.rb +245 -0
- data/lib/authentik/api/models/user_setting.rb +229 -0
- data/lib/authentik/api/models/user_source_connection.rb +315 -0
- data/lib/authentik/api/models/user_source_connection_request.rb +220 -0
- data/lib/authentik/api/models/user_telegram_source_connection.rb +315 -0
- data/lib/authentik/api/models/user_telegram_source_connection_request.rb +220 -0
- data/lib/authentik/api/models/user_type_enum.rb +36 -0
- data/lib/authentik/api/models/user_verification_enum.rb +35 -0
- data/lib/authentik/api/models/user_write_stage.rb +391 -0
- data/lib/authentik/api/models/user_write_stage_request.rb +238 -0
- data/lib/authentik/api/models/validation_error.rb +153 -0
- data/lib/authentik/api/models/version.rb +295 -0
- data/lib/authentik/api/models/version_history.rb +237 -0
- data/lib/authentik/api/models/web_authn_device.rb +284 -0
- data/lib/authentik/api/models/web_authn_device_request.rb +177 -0
- data/lib/authentik/api/models/web_authn_device_type.rb +185 -0
- data/lib/authentik/api/models/worker.rb +210 -0
- data/lib/authentik/api/version.rb +11 -0
- data/lib/authentik/api.rb +33 -0
- data/spec/api/admin_api_spec.rb +184 -0
- data/spec/api/authenticators_api_spec.rb +1023 -0
- data/spec/api/core_api_spec.rb +890 -0
- data/spec/api/crypto_api_spec.rb +151 -0
- data/spec/api/endpoints_api_spec.rb +606 -0
- data/spec/api/enterprise_api_spec.rb +143 -0
- data/spec/api/events_api_spec.rb +443 -0
- data/spec/api/flows_api_spec.rb +309 -0
- data/spec/api/managed_api_spec.rb +134 -0
- data/spec/api/oauth2_api_spec.rb +176 -0
- data/spec/api/outposts_api_spec.rb +459 -0
- data/spec/api/policies_api_spec.rb +990 -0
- data/spec/api/propertymappings_api_spec.rb +1379 -0
- data/spec/api/providers_api_spec.rb +1490 -0
- data/spec/api/rac_api_spec.rb +188 -0
- data/spec/api/rbac_api_spec.rb +309 -0
- data/spec/api/reports_api_spec.rb +62 -0
- data/spec/api/root_api_spec.rb +39 -0
- data/spec/api/schema_api_spec.rb +41 -0
- data/spec/api/sources_api_spec.rb +2192 -0
- data/spec/api/ssf_api_spec.rb +57 -0
- data/spec/api/stages_api_spec.rb +2538 -0
- data/spec/api/tasks_api_spec.rb +153 -0
- data/spec/api/tenants_api_spec.rb +195 -0
- data/spec/models/access_denied_challenge_spec.rb +60 -0
- data/spec/models/agent_authentication_response_spec.rb +30 -0
- data/spec/models/agent_config_spec.rb +84 -0
- data/spec/models/agent_connector_request_spec.rb +108 -0
- data/spec/models/agent_connector_spec.rb +132 -0
- data/spec/models/agent_psso_device_registration_request_spec.rb +48 -0
- data/spec/models/agent_psso_device_registration_response_spec.rb +60 -0
- data/spec/models/agent_psso_user_registration_request_spec.rb +42 -0
- data/spec/models/agent_token_response_spec.rb +36 -0
- data/spec/models/alg_enum_spec.rb +24 -0
- data/spec/models/app_enum_spec.rb +24 -0
- data/spec/models/app_spec.rb +36 -0
- data/spec/models/apple_challenge_response_request_spec.rb +30 -0
- data/spec/models/apple_login_challenge_spec.rb +66 -0
- data/spec/models/application_entitlement_request_spec.rb +42 -0
- data/spec/models/application_entitlement_spec.rb +48 -0
- data/spec/models/application_request_spec.rb +90 -0
- data/spec/models/application_spec.rb +126 -0
- data/spec/models/auth_type_enum_spec.rb +24 -0
- data/spec/models/authenticated_session_asn_spec.rb +42 -0
- data/spec/models/authenticated_session_geo_ip_spec.rb +54 -0
- data/spec/models/authenticated_session_spec.rb +84 -0
- data/spec/models/authenticated_session_user_agent_device_spec.rb +42 -0
- data/spec/models/authenticated_session_user_agent_os_spec.rb +54 -0
- data/spec/models/authenticated_session_user_agent_spec.rb +48 -0
- data/spec/models/authenticated_session_user_agent_user_agent_spec.rb +48 -0
- data/spec/models/authentication_enum_spec.rb +24 -0
- data/spec/models/authenticator_attachment_enum_spec.rb +24 -0
- data/spec/models/authenticator_duo_challenge_response_request_spec.rb +30 -0
- data/spec/models/authenticator_duo_challenge_spec.rb +72 -0
- data/spec/models/authenticator_duo_stage_device_import_response_spec.rb +36 -0
- data/spec/models/authenticator_duo_stage_manual_device_import_request_spec.rb +36 -0
- data/spec/models/authenticator_duo_stage_request_spec.rb +72 -0
- data/spec/models/authenticator_duo_stage_spec.rb +96 -0
- data/spec/models/authenticator_email_challenge_response_request_spec.rb +42 -0
- data/spec/models/authenticator_email_challenge_spec.rb +66 -0
- data/spec/models/authenticator_email_stage_request_spec.rb +114 -0
- data/spec/models/authenticator_email_stage_spec.rb +150 -0
- data/spec/models/authenticator_endpoint_gdtc_stage_request_spec.rb +48 -0
- data/spec/models/authenticator_endpoint_gdtc_stage_spec.rb +84 -0
- data/spec/models/authenticator_sms_challenge_response_request_spec.rb +42 -0
- data/spec/models/authenticator_sms_challenge_spec.rb +60 -0
- data/spec/models/authenticator_sms_stage_request_spec.rb +90 -0
- data/spec/models/authenticator_sms_stage_spec.rb +126 -0
- data/spec/models/authenticator_static_challenge_response_request_spec.rb +30 -0
- data/spec/models/authenticator_static_challenge_spec.rb +60 -0
- data/spec/models/authenticator_static_stage_request_spec.rb +54 -0
- data/spec/models/authenticator_static_stage_spec.rb +90 -0
- data/spec/models/authenticator_totp_challenge_response_request_spec.rb +36 -0
- data/spec/models/authenticator_totp_challenge_spec.rb +60 -0
- data/spec/models/authenticator_totp_stage_request_spec.rb +48 -0
- data/spec/models/authenticator_totp_stage_spec.rb +84 -0
- data/spec/models/authenticator_validate_stage_request_spec.rb +66 -0
- data/spec/models/authenticator_validate_stage_spec.rb +108 -0
- data/spec/models/authenticator_validation_challenge_response_request_spec.rb +60 -0
- data/spec/models/authenticator_validation_challenge_spec.rb +66 -0
- data/spec/models/authenticator_web_authn_challenge_response_request_spec.rb +36 -0
- data/spec/models/authenticator_web_authn_challenge_spec.rb +60 -0
- data/spec/models/authenticator_web_authn_stage_request_spec.rb +72 -0
- data/spec/models/authenticator_web_authn_stage_spec.rb +114 -0
- data/spec/models/authorization_code_auth_method_enum_spec.rb +24 -0
- data/spec/models/auto_submit_challenge_response_request_spec.rb +30 -0
- data/spec/models/autosubmit_challenge_spec.rb +60 -0
- data/spec/models/backends_enum_spec.rb +24 -0
- data/spec/models/binding_type_enum_spec.rb +24 -0
- data/spec/models/blueprint_file_spec.rb +48 -0
- data/spec/models/blueprint_instance_request_spec.rb +54 -0
- data/spec/models/blueprint_instance_spec.rb +90 -0
- data/spec/models/blueprint_instance_status_enum_spec.rb +24 -0
- data/spec/models/brand_request_spec.rb +126 -0
- data/spec/models/brand_spec.rb +132 -0
- data/spec/models/cache_spec.rb +30 -0
- data/spec/models/capabilities_enum_spec.rb +24 -0
- data/spec/models/captcha_challenge_response_request_spec.rb +36 -0
- data/spec/models/captcha_challenge_spec.rb +72 -0
- data/spec/models/captcha_stage_request_spec.rb +78 -0
- data/spec/models/captcha_stage_spec.rb +108 -0
- data/spec/models/cert_attribute_enum_spec.rb +24 -0
- data/spec/models/certificate_data_spec.rb +30 -0
- data/spec/models/certificate_generation_request_spec.rb +48 -0
- data/spec/models/certificate_key_pair_request_spec.rb +42 -0
- data/spec/models/certificate_key_pair_spec.rb +90 -0
- data/spec/models/challenge_types_spec.rb +38 -0
- data/spec/models/client_type_enum_spec.rb +24 -0
- data/spec/models/compatibility_mode_enum_spec.rb +24 -0
- data/spec/models/config_spec.rb +54 -0
- data/spec/models/connection_token_request_spec.rb +42 -0
- data/spec/models/connection_token_spec.rb +60 -0
- data/spec/models/connector_spec.rb +66 -0
- data/spec/models/consent_challenge_response_request_spec.rb +36 -0
- data/spec/models/consent_challenge_spec.rb +78 -0
- data/spec/models/consent_permission_spec.rb +36 -0
- data/spec/models/consent_stage_mode_enum_spec.rb +24 -0
- data/spec/models/consent_stage_request_spec.rb +42 -0
- data/spec/models/consent_stage_spec.rb +78 -0
- data/spec/models/content_type_spec.rb +48 -0
- data/spec/models/contextual_flow_info_layout_enum_spec.rb +24 -0
- data/spec/models/contextual_flow_info_spec.rb +54 -0
- data/spec/models/country_code_enum_spec.rb +24 -0
- data/spec/models/current_brand_flags_spec.rb +36 -0
- data/spec/models/current_brand_spec.rb +126 -0
- data/spec/models/data_export_spec.rb +66 -0
- data/spec/models/delivery_method_enum_spec.rb +24 -0
- data/spec/models/denied_action_enum_spec.rb +24 -0
- data/spec/models/deny_stage_request_spec.rb +36 -0
- data/spec/models/deny_stage_spec.rb +72 -0
- data/spec/models/detailed_country_field_spec.rb +36 -0
- data/spec/models/detailed_country_spec.rb +36 -0
- data/spec/models/device_access_group_request_spec.rb +30 -0
- data/spec/models/device_access_group_spec.rb +36 -0
- data/spec/models/device_challenge_request_spec.rb +48 -0
- data/spec/models/device_challenge_spec.rb +48 -0
- data/spec/models/device_classes_enum_spec.rb +24 -0
- data/spec/models/device_connection_spec.rb +48 -0
- data/spec/models/device_fact_snapshot_spec.rb +48 -0
- data/spec/models/device_facts_os_family_spec.rb +24 -0
- data/spec/models/device_facts_request_spec.rb +78 -0
- data/spec/models/device_facts_spec.rb +78 -0
- data/spec/models/device_group_request_spec.rb +36 -0
- data/spec/models/device_group_spec.rb +36 -0
- data/spec/models/device_spec.rb +96 -0
- data/spec/models/device_summary_spec.rb +42 -0
- data/spec/models/device_user_binding_request_spec.rb +84 -0
- data/spec/models/device_user_binding_spec.rb +120 -0
- data/spec/models/device_user_request_spec.rb +48 -0
- data/spec/models/device_user_spec.rb +48 -0
- data/spec/models/digest_algorithm_enum_spec.rb +24 -0
- data/spec/models/digits_enum_spec.rb +24 -0
- data/spec/models/disk_request_spec.rb +60 -0
- data/spec/models/disk_spec.rb +60 -0
- data/spec/models/docker_service_connection_request_spec.rb +54 -0
- data/spec/models/docker_service_connection_spec.rb +84 -0
- data/spec/models/domain_request_spec.rb +42 -0
- data/spec/models/domain_spec.rb +48 -0
- data/spec/models/dummy_challenge_response_request_spec.rb +30 -0
- data/spec/models/dummy_challenge_spec.rb +48 -0
- data/spec/models/dummy_policy_request_spec.rb +54 -0
- data/spec/models/dummy_policy_spec.rb +90 -0
- data/spec/models/dummy_stage_request_spec.rb +36 -0
- data/spec/models/dummy_stage_spec.rb +72 -0
- data/spec/models/duo_device_enrollment_status_spec.rb +30 -0
- data/spec/models/duo_device_request_spec.rb +30 -0
- data/spec/models/duo_device_spec.rb +42 -0
- data/spec/models/duo_response_enum_spec.rb +24 -0
- data/spec/models/email_challenge_response_request_spec.rb +30 -0
- data/spec/models/email_challenge_spec.rb +42 -0
- data/spec/models/email_device_request_spec.rb +30 -0
- data/spec/models/email_device_spec.rb +48 -0
- data/spec/models/email_stage_request_spec.rb +120 -0
- data/spec/models/email_stage_spec.rb +150 -0
- data/spec/models/endpoint_agent_challenge_response_request_spec.rb +36 -0
- data/spec/models/endpoint_agent_challenge_spec.rb +54 -0
- data/spec/models/endpoint_auth_mode_enum_spec.rb +24 -0
- data/spec/models/endpoint_device_details_spec.rb +96 -0
- data/spec/models/endpoint_device_request_spec.rb +66 -0
- data/spec/models/endpoint_device_spec.rb +78 -0
- data/spec/models/endpoint_request_spec.rb +72 -0
- data/spec/models/endpoint_spec.rb +90 -0
- data/spec/models/endpoint_stage_request_spec.rb +42 -0
- data/spec/models/endpoint_stage_spec.rb +84 -0
- data/spec/models/enroll_request_spec.rb +36 -0
- data/spec/models/enrollment_token_request_spec.rb +54 -0
- data/spec/models/enrollment_token_spec.rb +66 -0
- data/spec/models/error_detail_spec.rb +36 -0
- data/spec/models/error_reporting_config_spec.rb +54 -0
- data/spec/models/event_actions_spec.rb +24 -0
- data/spec/models/event_matcher_policy_request_spec.rb +60 -0
- data/spec/models/event_matcher_policy_spec.rb +96 -0
- data/spec/models/event_request_spec.rb +66 -0
- data/spec/models/event_spec.rb +78 -0
- data/spec/models/event_top_per_user_spec.rb +42 -0
- data/spec/models/event_volume_spec.rb +42 -0
- data/spec/models/events_requested_enum_spec.rb +24 -0
- data/spec/models/expiring_base_grant_model_spec.rb +60 -0
- data/spec/models/expression_policy_request_spec.rb +42 -0
- data/spec/models/expression_policy_spec.rb +78 -0
- data/spec/models/extra_role_object_permission_spec.rb +78 -0
- data/spec/models/file_list_spec.rb +48 -0
- data/spec/models/flow_challenge_response_request_spec.rb +38 -0
- data/spec/models/flow_designation_enum_spec.rb +24 -0
- data/spec/models/flow_diagram_spec.rb +30 -0
- data/spec/models/flow_error_challenge_spec.rb +60 -0
- data/spec/models/flow_import_result_spec.rb +36 -0
- data/spec/models/flow_inspection_spec.rb +42 -0
- data/spec/models/flow_inspector_plan_spec.rb +48 -0
- data/spec/models/flow_layout_enum_spec.rb +24 -0
- data/spec/models/flow_request_spec.rb +84 -0
- data/spec/models/flow_set_spec.rb +96 -0
- data/spec/models/flow_spec.rb +132 -0
- data/spec/models/flow_stage_binding_request_spec.rb +66 -0
- data/spec/models/flow_stage_binding_spec.rb +84 -0
- data/spec/models/footer_link_spec.rb +36 -0
- data/spec/models/frame_challenge_response_request_spec.rb +30 -0
- data/spec/models/frame_challenge_spec.rb +60 -0
- data/spec/models/generic_error_spec.rb +36 -0
- data/spec/models/geo_ip_policy_request_spec.rb +84 -0
- data/spec/models/geo_ip_policy_spec.rb +126 -0
- data/spec/models/geoip_binding_enum_spec.rb +24 -0
- data/spec/models/global_task_status_spec.rb +84 -0
- data/spec/models/google_endpoint_device_request_spec.rb +36 -0
- data/spec/models/google_endpoint_device_spec.rb +36 -0
- data/spec/models/google_workspace_provider_group_request_spec.rb +42 -0
- data/spec/models/google_workspace_provider_group_spec.rb +60 -0
- data/spec/models/google_workspace_provider_mapping_request_spec.rb +42 -0
- data/spec/models/google_workspace_provider_mapping_spec.rb +72 -0
- data/spec/models/google_workspace_provider_request_spec.rb +108 -0
- data/spec/models/google_workspace_provider_spec.rb +150 -0
- data/spec/models/google_workspace_provider_user_request_spec.rb +42 -0
- data/spec/models/google_workspace_provider_user_spec.rb +60 -0
- data/spec/models/group_kerberos_source_connection_request_spec.rb +42 -0
- data/spec/models/group_kerberos_source_connection_spec.rb +66 -0
- data/spec/models/group_ldap_source_connection_request_spec.rb +42 -0
- data/spec/models/group_ldap_source_connection_spec.rb +66 -0
- data/spec/models/group_matching_mode_enum_spec.rb +24 -0
- data/spec/models/group_o_auth_source_connection_request_spec.rb +42 -0
- data/spec/models/group_o_auth_source_connection_spec.rb +66 -0
- data/spec/models/group_plex_source_connection_request_spec.rb +42 -0
- data/spec/models/group_plex_source_connection_spec.rb +66 -0
- data/spec/models/group_request_spec.rb +60 -0
- data/spec/models/group_saml_source_connection_request_spec.rb +42 -0
- data/spec/models/group_saml_source_connection_spec.rb +66 -0
- data/spec/models/group_source_connection_request_spec.rb +42 -0
- data/spec/models/group_source_connection_spec.rb +66 -0
- data/spec/models/group_spec.rb +108 -0
- data/spec/models/group_telegram_source_connection_request_spec.rb +42 -0
- data/spec/models/group_telegram_source_connection_spec.rb +66 -0
- data/spec/models/hardware_request_spec.rb +60 -0
- data/spec/models/hardware_spec.rb +60 -0
- data/spec/models/identification_challenge_response_request_spec.rb +54 -0
- data/spec/models/identification_challenge_spec.rb +126 -0
- data/spec/models/identification_stage_request_spec.rb +108 -0
- data/spec/models/identification_stage_spec.rb +144 -0
- data/spec/models/iframe_logout_challenge_response_request_spec.rb +30 -0
- data/spec/models/iframe_logout_challenge_spec.rb +48 -0
- data/spec/models/impersonation_request_spec.rb +30 -0
- data/spec/models/initial_permissions_request_spec.rb +42 -0
- data/spec/models/initial_permissions_spec.rb +54 -0
- data/spec/models/install_id_spec.rb +30 -0
- data/spec/models/intent_enum_spec.rb +24 -0
- data/spec/models/invalid_response_action_enum_spec.rb +24 -0
- data/spec/models/invitation_request_spec.rb +54 -0
- data/spec/models/invitation_spec.rb +72 -0
- data/spec/models/invitation_stage_request_spec.rb +36 -0
- data/spec/models/invitation_stage_spec.rb +72 -0
- data/spec/models/issuer_mode_enum_spec.rb +24 -0
- data/spec/models/kadmin_type_enum_spec.rb +24 -0
- data/spec/models/kerberos_source_property_mapping_request_spec.rb +42 -0
- data/spec/models/kerberos_source_property_mapping_spec.rb +72 -0
- data/spec/models/kerberos_source_request_spec.rb +186 -0
- data/spec/models/kerberos_source_spec.rb +222 -0
- data/spec/models/key_type_enum_spec.rb +24 -0
- data/spec/models/kubernetes_service_connection_request_spec.rb +48 -0
- data/spec/models/kubernetes_service_connection_spec.rb +78 -0
- data/spec/models/last_task_status_enum_spec.rb +24 -0
- data/spec/models/ldap_check_access_spec.rb +36 -0
- data/spec/models/ldap_debug_spec.rb +42 -0
- data/spec/models/ldap_outpost_config_spec.rb +102 -0
- data/spec/models/ldap_provider_request_spec.rb +102 -0
- data/spec/models/ldap_provider_spec.rb +162 -0
- data/spec/models/ldap_source_property_mapping_request_spec.rb +42 -0
- data/spec/models/ldap_source_property_mapping_spec.rb +72 -0
- data/spec/models/ldap_source_request_spec.rb +234 -0
- data/spec/models/ldap_source_spec.rb +282 -0
- data/spec/models/ldapapi_access_mode_spec.rb +24 -0
- data/spec/models/license_flags_enum_spec.rb +24 -0
- data/spec/models/license_forecast_spec.rb +48 -0
- data/spec/models/license_request_spec.rb +30 -0
- data/spec/models/license_spec.rb +60 -0
- data/spec/models/license_status_enum_spec.rb +24 -0
- data/spec/models/license_summary_spec.rb +54 -0
- data/spec/models/license_summary_status_enum_spec.rb +24 -0
- data/spec/models/link_spec.rb +30 -0
- data/spec/models/log_event_spec.rb +54 -0
- data/spec/models/log_level_enum_spec.rb +24 -0
- data/spec/models/login_challenge_types_spec.rb +38 -0
- data/spec/models/login_source_spec.rb +48 -0
- data/spec/models/matching_mode_enum_spec.rb +24 -0
- data/spec/models/mdm_config_request_spec.rb +36 -0
- data/spec/models/mdm_config_response_spec.rb +42 -0
- data/spec/models/metadata_spec.rb +36 -0
- data/spec/models/microsoft_entra_provider_group_request_spec.rb +42 -0
- data/spec/models/microsoft_entra_provider_group_spec.rb +60 -0
- data/spec/models/microsoft_entra_provider_mapping_request_spec.rb +42 -0
- data/spec/models/microsoft_entra_provider_mapping_spec.rb +72 -0
- data/spec/models/microsoft_entra_provider_request_spec.rb +102 -0
- data/spec/models/microsoft_entra_provider_spec.rb +144 -0
- data/spec/models/microsoft_entra_provider_user_request_spec.rb +42 -0
- data/spec/models/microsoft_entra_provider_user_spec.rb +60 -0
- data/spec/models/model_enum_spec.rb +24 -0
- data/spec/models/model_request_spec.rb +38 -0
- data/spec/models/mutual_tls_stage_request_spec.rb +54 -0
- data/spec/models/mutual_tls_stage_spec.rb +90 -0
- data/spec/models/native_logout_challenge_response_request_spec.rb +30 -0
- data/spec/models/native_logout_challenge_spec.rb +84 -0
- data/spec/models/network_binding_enum_spec.rb +24 -0
- data/spec/models/network_interface_request_spec.rb +48 -0
- data/spec/models/network_interface_spec.rb +48 -0
- data/spec/models/network_request_spec.rb +48 -0
- data/spec/models/network_spec.rb +48 -0
- data/spec/models/not_configured_action_enum_spec.rb +24 -0
- data/spec/models/notification_request_spec.rb +48 -0
- data/spec/models/notification_rule_request_spec.rb +54 -0
- data/spec/models/notification_rule_spec.rb +66 -0
- data/spec/models/notification_spec.rb +72 -0
- data/spec/models/notification_transport_mode_enum_spec.rb +24 -0
- data/spec/models/notification_transport_request_spec.rb +72 -0
- data/spec/models/notification_transport_spec.rb +84 -0
- data/spec/models/notification_transport_test_spec.rb +30 -0
- data/spec/models/notification_webhook_mapping_request_spec.rb +36 -0
- data/spec/models/notification_webhook_mapping_spec.rb +42 -0
- data/spec/models/o_auth2_provider_logout_method_enum_spec.rb +24 -0
- data/spec/models/o_auth2_provider_request_spec.rb +156 -0
- data/spec/models/o_auth2_provider_setup_urls_spec.rb +66 -0
- data/spec/models/o_auth2_provider_spec.rb +210 -0
- data/spec/models/o_auth_device_code_challenge_response_request_spec.rb +36 -0
- data/spec/models/o_auth_device_code_challenge_spec.rb +42 -0
- data/spec/models/o_auth_device_code_finish_challenge_response_request_spec.rb +30 -0
- data/spec/models/o_auth_device_code_finish_challenge_spec.rb +42 -0
- data/spec/models/o_auth_source_property_mapping_request_spec.rb +42 -0
- data/spec/models/o_auth_source_property_mapping_spec.rb +72 -0
- data/spec/models/o_auth_source_request_spec.rb +180 -0
- data/spec/models/o_auth_source_spec.rb +234 -0
- data/spec/models/open_id_connect_configuration_spec.rb +90 -0
- data/spec/models/operating_system_request_spec.rb +48 -0
- data/spec/models/operating_system_spec.rb +48 -0
- data/spec/models/outgoing_sync_delete_action_spec.rb +24 -0
- data/spec/models/outpost_default_config_spec.rb +30 -0
- data/spec/models/outpost_health_spec.rb +96 -0
- data/spec/models/outpost_request_spec.rb +60 -0
- data/spec/models/outpost_spec.rb +90 -0
- data/spec/models/outpost_type_enum_spec.rb +24 -0
- data/spec/models/paginated_agent_connector_list_spec.rb +42 -0
- data/spec/models/paginated_application_entitlement_list_spec.rb +42 -0
- data/spec/models/paginated_application_list_spec.rb +42 -0
- data/spec/models/paginated_authenticated_session_list_spec.rb +42 -0
- data/spec/models/paginated_authenticator_duo_stage_list_spec.rb +42 -0
- data/spec/models/paginated_authenticator_email_stage_list_spec.rb +42 -0
- data/spec/models/paginated_authenticator_endpoint_gdtc_stage_list_spec.rb +42 -0
- data/spec/models/paginated_authenticator_sms_stage_list_spec.rb +42 -0
- data/spec/models/paginated_authenticator_static_stage_list_spec.rb +42 -0
- data/spec/models/paginated_authenticator_totp_stage_list_spec.rb +42 -0
- data/spec/models/paginated_authenticator_validate_stage_list_spec.rb +42 -0
- data/spec/models/paginated_authenticator_web_authn_stage_list_spec.rb +42 -0
- data/spec/models/paginated_blueprint_instance_list_spec.rb +42 -0
- data/spec/models/paginated_brand_list_spec.rb +42 -0
- data/spec/models/paginated_captcha_stage_list_spec.rb +42 -0
- data/spec/models/paginated_certificate_key_pair_list_spec.rb +42 -0
- data/spec/models/paginated_connection_token_list_spec.rb +42 -0
- data/spec/models/paginated_connector_list_spec.rb +42 -0
- data/spec/models/paginated_consent_stage_list_spec.rb +42 -0
- data/spec/models/paginated_data_export_list_spec.rb +42 -0
- data/spec/models/paginated_deny_stage_list_spec.rb +42 -0
- data/spec/models/paginated_device_access_group_list_spec.rb +42 -0
- data/spec/models/paginated_device_user_binding_list_spec.rb +42 -0
- data/spec/models/paginated_docker_service_connection_list_spec.rb +42 -0
- data/spec/models/paginated_domain_list_spec.rb +42 -0
- data/spec/models/paginated_dummy_policy_list_spec.rb +42 -0
- data/spec/models/paginated_dummy_stage_list_spec.rb +42 -0
- data/spec/models/paginated_duo_device_list_spec.rb +42 -0
- data/spec/models/paginated_email_device_list_spec.rb +42 -0
- data/spec/models/paginated_email_stage_list_spec.rb +42 -0
- data/spec/models/paginated_endpoint_device_list_spec.rb +42 -0
- data/spec/models/paginated_endpoint_list_spec.rb +42 -0
- data/spec/models/paginated_endpoint_stage_list_spec.rb +42 -0
- data/spec/models/paginated_enrollment_token_list_spec.rb +42 -0
- data/spec/models/paginated_event_list_spec.rb +42 -0
- data/spec/models/paginated_event_matcher_policy_list_spec.rb +42 -0
- data/spec/models/paginated_expiring_base_grant_model_list_spec.rb +42 -0
- data/spec/models/paginated_expression_policy_list_spec.rb +42 -0
- data/spec/models/paginated_extra_role_object_permission_list_spec.rb +36 -0
- data/spec/models/paginated_flow_list_spec.rb +42 -0
- data/spec/models/paginated_flow_stage_binding_list_spec.rb +42 -0
- data/spec/models/paginated_geo_ip_policy_list_spec.rb +42 -0
- data/spec/models/paginated_google_endpoint_device_list_spec.rb +42 -0
- data/spec/models/paginated_google_workspace_provider_group_list_spec.rb +42 -0
- data/spec/models/paginated_google_workspace_provider_list_spec.rb +42 -0
- data/spec/models/paginated_google_workspace_provider_mapping_list_spec.rb +42 -0
- data/spec/models/paginated_google_workspace_provider_user_list_spec.rb +42 -0
- data/spec/models/paginated_group_kerberos_source_connection_list_spec.rb +42 -0
- data/spec/models/paginated_group_ldap_source_connection_list_spec.rb +42 -0
- data/spec/models/paginated_group_list_spec.rb +42 -0
- data/spec/models/paginated_group_o_auth_source_connection_list_spec.rb +42 -0
- data/spec/models/paginated_group_plex_source_connection_list_spec.rb +42 -0
- data/spec/models/paginated_group_saml_source_connection_list_spec.rb +42 -0
- data/spec/models/paginated_group_source_connection_list_spec.rb +42 -0
- data/spec/models/paginated_group_telegram_source_connection_list_spec.rb +42 -0
- data/spec/models/paginated_identification_stage_list_spec.rb +42 -0
- data/spec/models/paginated_initial_permissions_list_spec.rb +42 -0
- data/spec/models/paginated_invitation_list_spec.rb +42 -0
- data/spec/models/paginated_invitation_stage_list_spec.rb +42 -0
- data/spec/models/paginated_kerberos_source_list_spec.rb +42 -0
- data/spec/models/paginated_kerberos_source_property_mapping_list_spec.rb +42 -0
- data/spec/models/paginated_kubernetes_service_connection_list_spec.rb +42 -0
- data/spec/models/paginated_ldap_outpost_config_list_spec.rb +42 -0
- data/spec/models/paginated_ldap_provider_list_spec.rb +42 -0
- data/spec/models/paginated_ldap_source_list_spec.rb +42 -0
- data/spec/models/paginated_ldap_source_property_mapping_list_spec.rb +42 -0
- data/spec/models/paginated_license_list_spec.rb +42 -0
- data/spec/models/paginated_microsoft_entra_provider_group_list_spec.rb +42 -0
- data/spec/models/paginated_microsoft_entra_provider_list_spec.rb +42 -0
- data/spec/models/paginated_microsoft_entra_provider_mapping_list_spec.rb +42 -0
- data/spec/models/paginated_microsoft_entra_provider_user_list_spec.rb +42 -0
- data/spec/models/paginated_mutual_tls_stage_list_spec.rb +42 -0
- data/spec/models/paginated_notification_list_spec.rb +42 -0
- data/spec/models/paginated_notification_rule_list_spec.rb +42 -0
- data/spec/models/paginated_notification_transport_list_spec.rb +42 -0
- data/spec/models/paginated_notification_webhook_mapping_list_spec.rb +42 -0
- data/spec/models/paginated_o_auth2_provider_list_spec.rb +42 -0
- data/spec/models/paginated_o_auth_source_list_spec.rb +42 -0
- data/spec/models/paginated_o_auth_source_property_mapping_list_spec.rb +42 -0
- data/spec/models/paginated_outpost_list_spec.rb +42 -0
- data/spec/models/paginated_password_expiry_policy_list_spec.rb +42 -0
- data/spec/models/paginated_password_policy_list_spec.rb +42 -0
- data/spec/models/paginated_password_stage_list_spec.rb +42 -0
- data/spec/models/paginated_permission_list_spec.rb +42 -0
- data/spec/models/paginated_plex_source_list_spec.rb +42 -0
- data/spec/models/paginated_plex_source_property_mapping_list_spec.rb +42 -0
- data/spec/models/paginated_policy_binding_list_spec.rb +42 -0
- data/spec/models/paginated_policy_list_spec.rb +42 -0
- data/spec/models/paginated_prompt_list_spec.rb +42 -0
- data/spec/models/paginated_prompt_stage_list_spec.rb +42 -0
- data/spec/models/paginated_property_mapping_list_spec.rb +42 -0
- data/spec/models/paginated_provider_list_spec.rb +42 -0
- data/spec/models/paginated_proxy_outpost_config_list_spec.rb +42 -0
- data/spec/models/paginated_proxy_provider_list_spec.rb +42 -0
- data/spec/models/paginated_rac_property_mapping_list_spec.rb +42 -0
- data/spec/models/paginated_rac_provider_list_spec.rb +42 -0
- data/spec/models/paginated_radius_outpost_config_list_spec.rb +42 -0
- data/spec/models/paginated_radius_provider_list_spec.rb +42 -0
- data/spec/models/paginated_radius_provider_property_mapping_list_spec.rb +42 -0
- data/spec/models/paginated_redirect_stage_list_spec.rb +42 -0
- data/spec/models/paginated_reputation_list_spec.rb +42 -0
- data/spec/models/paginated_reputation_policy_list_spec.rb +42 -0
- data/spec/models/paginated_role_assigned_object_permission_list_spec.rb +42 -0
- data/spec/models/paginated_role_list_spec.rb +42 -0
- data/spec/models/paginated_saml_property_mapping_list_spec.rb +42 -0
- data/spec/models/paginated_saml_provider_list_spec.rb +42 -0
- data/spec/models/paginated_saml_source_list_spec.rb +42 -0
- data/spec/models/paginated_saml_source_property_mapping_list_spec.rb +42 -0
- data/spec/models/paginated_schedule_list_spec.rb +42 -0
- data/spec/models/paginated_scim_mapping_list_spec.rb +42 -0
- data/spec/models/paginated_scim_provider_group_list_spec.rb +42 -0
- data/spec/models/paginated_scim_provider_list_spec.rb +42 -0
- data/spec/models/paginated_scim_provider_user_list_spec.rb +42 -0
- data/spec/models/paginated_scim_source_group_list_spec.rb +42 -0
- data/spec/models/paginated_scim_source_list_spec.rb +42 -0
- data/spec/models/paginated_scim_source_property_mapping_list_spec.rb +42 -0
- data/spec/models/paginated_scim_source_user_list_spec.rb +42 -0
- data/spec/models/paginated_scope_mapping_list_spec.rb +42 -0
- data/spec/models/paginated_service_connection_list_spec.rb +42 -0
- data/spec/models/paginated_sms_device_list_spec.rb +42 -0
- data/spec/models/paginated_source_list_spec.rb +42 -0
- data/spec/models/paginated_source_stage_list_spec.rb +42 -0
- data/spec/models/paginated_ssf_provider_list_spec.rb +42 -0
- data/spec/models/paginated_ssf_stream_list_spec.rb +42 -0
- data/spec/models/paginated_stage_list_spec.rb +42 -0
- data/spec/models/paginated_static_device_list_spec.rb +42 -0
- data/spec/models/paginated_task_list_spec.rb +42 -0
- data/spec/models/paginated_telegram_source_list_spec.rb +42 -0
- data/spec/models/paginated_telegram_source_property_mapping_list_spec.rb +42 -0
- data/spec/models/paginated_tenant_list_spec.rb +42 -0
- data/spec/models/paginated_token_list_spec.rb +42 -0
- data/spec/models/paginated_token_model_list_spec.rb +42 -0
- data/spec/models/paginated_totp_device_list_spec.rb +42 -0
- data/spec/models/paginated_unique_password_policy_list_spec.rb +42 -0
- data/spec/models/paginated_user_consent_list_spec.rb +42 -0
- data/spec/models/paginated_user_delete_stage_list_spec.rb +42 -0
- data/spec/models/paginated_user_kerberos_source_connection_list_spec.rb +42 -0
- data/spec/models/paginated_user_ldap_source_connection_list_spec.rb +42 -0
- data/spec/models/paginated_user_list_spec.rb +42 -0
- data/spec/models/paginated_user_login_stage_list_spec.rb +42 -0
- data/spec/models/paginated_user_logout_stage_list_spec.rb +42 -0
- data/spec/models/paginated_user_o_auth_source_connection_list_spec.rb +42 -0
- data/spec/models/paginated_user_plex_source_connection_list_spec.rb +42 -0
- data/spec/models/paginated_user_saml_source_connection_list_spec.rb +42 -0
- data/spec/models/paginated_user_source_connection_list_spec.rb +42 -0
- data/spec/models/paginated_user_telegram_source_connection_list_spec.rb +42 -0
- data/spec/models/paginated_user_write_stage_list_spec.rb +42 -0
- data/spec/models/paginated_web_authn_device_list_spec.rb +42 -0
- data/spec/models/paginated_web_authn_device_type_list_spec.rb +42 -0
- data/spec/models/pagination_spec.rb +66 -0
- data/spec/models/partial_group_spec.rb +54 -0
- data/spec/models/partial_user_spec.rb +72 -0
- data/spec/models/password_challenge_response_request_spec.rb +36 -0
- data/spec/models/password_challenge_spec.rb +66 -0
- data/spec/models/password_expiry_policy_request_spec.rb +48 -0
- data/spec/models/password_expiry_policy_spec.rb +84 -0
- data/spec/models/password_policy_request_spec.rb +114 -0
- data/spec/models/password_policy_spec.rb +150 -0
- data/spec/models/password_stage_request_spec.rb +54 -0
- data/spec/models/password_stage_spec.rb +90 -0
- data/spec/models/patched_agent_connector_request_spec.rb +108 -0
- data/spec/models/patched_application_entitlement_request_spec.rb +42 -0
- data/spec/models/patched_application_request_spec.rb +90 -0
- data/spec/models/patched_authenticator_duo_stage_request_spec.rb +72 -0
- data/spec/models/patched_authenticator_email_stage_request_spec.rb +114 -0
- data/spec/models/patched_authenticator_endpoint_gdtc_stage_request_spec.rb +48 -0
- data/spec/models/patched_authenticator_sms_stage_request_spec.rb +90 -0
- data/spec/models/patched_authenticator_static_stage_request_spec.rb +54 -0
- data/spec/models/patched_authenticator_totp_stage_request_spec.rb +48 -0
- data/spec/models/patched_authenticator_validate_stage_request_spec.rb +66 -0
- data/spec/models/patched_authenticator_web_authn_stage_request_spec.rb +72 -0
- data/spec/models/patched_blueprint_instance_request_spec.rb +54 -0
- data/spec/models/patched_brand_request_spec.rb +126 -0
- data/spec/models/patched_captcha_stage_request_spec.rb +78 -0
- data/spec/models/patched_certificate_key_pair_request_spec.rb +42 -0
- data/spec/models/patched_connection_token_request_spec.rb +42 -0
- data/spec/models/patched_consent_stage_request_spec.rb +42 -0
- data/spec/models/patched_deny_stage_request_spec.rb +36 -0
- data/spec/models/patched_device_access_group_request_spec.rb +30 -0
- data/spec/models/patched_device_user_binding_request_spec.rb +84 -0
- data/spec/models/patched_docker_service_connection_request_spec.rb +54 -0
- data/spec/models/patched_domain_request_spec.rb +42 -0
- data/spec/models/patched_dummy_policy_request_spec.rb +54 -0
- data/spec/models/patched_dummy_stage_request_spec.rb +36 -0
- data/spec/models/patched_duo_device_request_spec.rb +30 -0
- data/spec/models/patched_email_device_request_spec.rb +30 -0
- data/spec/models/patched_email_stage_request_spec.rb +120 -0
- data/spec/models/patched_endpoint_device_request_spec.rb +66 -0
- data/spec/models/patched_endpoint_request_spec.rb +72 -0
- data/spec/models/patched_endpoint_stage_request_spec.rb +42 -0
- data/spec/models/patched_enrollment_token_request_spec.rb +54 -0
- data/spec/models/patched_event_matcher_policy_request_spec.rb +60 -0
- data/spec/models/patched_event_request_spec.rb +66 -0
- data/spec/models/patched_expression_policy_request_spec.rb +42 -0
- data/spec/models/patched_flow_request_spec.rb +84 -0
- data/spec/models/patched_flow_stage_binding_request_spec.rb +66 -0
- data/spec/models/patched_geo_ip_policy_request_spec.rb +84 -0
- data/spec/models/patched_google_endpoint_device_request_spec.rb +36 -0
- data/spec/models/patched_google_workspace_provider_mapping_request_spec.rb +42 -0
- data/spec/models/patched_google_workspace_provider_request_spec.rb +108 -0
- data/spec/models/patched_group_kerberos_source_connection_request_spec.rb +42 -0
- data/spec/models/patched_group_ldap_source_connection_request_spec.rb +42 -0
- data/spec/models/patched_group_o_auth_source_connection_request_spec.rb +42 -0
- data/spec/models/patched_group_plex_source_connection_request_spec.rb +42 -0
- data/spec/models/patched_group_request_spec.rb +60 -0
- data/spec/models/patched_group_saml_source_connection_request_spec.rb +42 -0
- data/spec/models/patched_group_source_connection_request_spec.rb +42 -0
- data/spec/models/patched_group_telegram_source_connection_request_spec.rb +42 -0
- data/spec/models/patched_identification_stage_request_spec.rb +108 -0
- data/spec/models/patched_initial_permissions_request_spec.rb +42 -0
- data/spec/models/patched_invitation_request_spec.rb +54 -0
- data/spec/models/patched_invitation_stage_request_spec.rb +36 -0
- data/spec/models/patched_kerberos_source_property_mapping_request_spec.rb +42 -0
- data/spec/models/patched_kerberos_source_request_spec.rb +186 -0
- data/spec/models/patched_kubernetes_service_connection_request_spec.rb +48 -0
- data/spec/models/patched_ldap_provider_request_spec.rb +102 -0
- data/spec/models/patched_ldap_source_property_mapping_request_spec.rb +42 -0
- data/spec/models/patched_ldap_source_request_spec.rb +234 -0
- data/spec/models/patched_license_request_spec.rb +30 -0
- data/spec/models/patched_microsoft_entra_provider_mapping_request_spec.rb +42 -0
- data/spec/models/patched_microsoft_entra_provider_request_spec.rb +102 -0
- data/spec/models/patched_mutual_tls_stage_request_spec.rb +54 -0
- data/spec/models/patched_notification_request_spec.rb +48 -0
- data/spec/models/patched_notification_rule_request_spec.rb +54 -0
- data/spec/models/patched_notification_transport_request_spec.rb +72 -0
- data/spec/models/patched_notification_webhook_mapping_request_spec.rb +36 -0
- data/spec/models/patched_o_auth2_provider_request_spec.rb +156 -0
- data/spec/models/patched_o_auth_source_property_mapping_request_spec.rb +42 -0
- data/spec/models/patched_o_auth_source_request_spec.rb +180 -0
- data/spec/models/patched_outpost_request_spec.rb +60 -0
- data/spec/models/patched_password_expiry_policy_request_spec.rb +48 -0
- data/spec/models/patched_password_policy_request_spec.rb +114 -0
- data/spec/models/patched_password_stage_request_spec.rb +54 -0
- data/spec/models/patched_permission_assign_request_spec.rb +42 -0
- data/spec/models/patched_plex_source_property_mapping_request_spec.rb +42 -0
- data/spec/models/patched_plex_source_request_spec.rb +126 -0
- data/spec/models/patched_policy_binding_request_spec.rb +78 -0
- data/spec/models/patched_prompt_request_spec.rb +90 -0
- data/spec/models/patched_prompt_stage_request_spec.rb +42 -0
- data/spec/models/patched_proxy_provider_request_spec.rb +144 -0
- data/spec/models/patched_rac_property_mapping_request_spec.rb +48 -0
- data/spec/models/patched_rac_provider_request_spec.rb +66 -0
- data/spec/models/patched_radius_provider_property_mapping_request_spec.rb +42 -0
- data/spec/models/patched_radius_provider_request_spec.rb +78 -0
- data/spec/models/patched_redirect_stage_request_spec.rb +54 -0
- data/spec/models/patched_reputation_policy_request_spec.rb +54 -0
- data/spec/models/patched_role_request_spec.rb +30 -0
- data/spec/models/patched_saml_property_mapping_request_spec.rb +54 -0
- data/spec/models/patched_saml_provider_request_spec.rb +186 -0
- data/spec/models/patched_saml_source_property_mapping_request_spec.rb +42 -0
- data/spec/models/patched_saml_source_request_spec.rb +192 -0
- data/spec/models/patched_schedule_request_spec.rb +42 -0
- data/spec/models/patched_scim_mapping_request_spec.rb +42 -0
- data/spec/models/patched_scim_provider_request_spec.rb +120 -0
- data/spec/models/patched_scim_source_group_request_spec.rb +54 -0
- data/spec/models/patched_scim_source_property_mapping_request_spec.rb +42 -0
- data/spec/models/patched_scim_source_request_spec.rb +60 -0
- data/spec/models/patched_scim_source_user_request_spec.rb +54 -0
- data/spec/models/patched_scope_mapping_request_spec.rb +54 -0
- data/spec/models/patched_settings_request_flags_spec.rb +36 -0
- data/spec/models/patched_settings_request_spec.rb +120 -0
- data/spec/models/patched_sms_device_request_spec.rb +30 -0
- data/spec/models/patched_source_stage_request_spec.rb +42 -0
- data/spec/models/patched_ssf_provider_request_spec.rb +48 -0
- data/spec/models/patched_static_device_request_spec.rb +30 -0
- data/spec/models/patched_telegram_source_property_mapping_request_spec.rb +42 -0
- data/spec/models/patched_telegram_source_request_spec.rb +120 -0
- data/spec/models/patched_tenant_request_spec.rb +42 -0
- data/spec/models/patched_token_request_spec.rb +66 -0
- data/spec/models/patched_totp_device_request_spec.rb +30 -0
- data/spec/models/patched_unique_password_policy_request_spec.rb +48 -0
- data/spec/models/patched_user_delete_stage_request_spec.rb +30 -0
- data/spec/models/patched_user_kerberos_source_connection_request_spec.rb +42 -0
- data/spec/models/patched_user_ldap_source_connection_request_spec.rb +42 -0
- data/spec/models/patched_user_login_stage_request_spec.rb +66 -0
- data/spec/models/patched_user_logout_stage_request_spec.rb +30 -0
- data/spec/models/patched_user_o_auth_source_connection_request_spec.rb +54 -0
- data/spec/models/patched_user_plex_source_connection_request_spec.rb +48 -0
- data/spec/models/patched_user_request_spec.rb +84 -0
- data/spec/models/patched_user_saml_source_connection_request_spec.rb +42 -0
- data/spec/models/patched_user_source_connection_request_spec.rb +42 -0
- data/spec/models/patched_user_telegram_source_connection_request_spec.rb +42 -0
- data/spec/models/patched_user_write_stage_request_spec.rb +60 -0
- data/spec/models/patched_web_authn_device_request_spec.rb +30 -0
- data/spec/models/permission_assign_request_spec.rb +42 -0
- data/spec/models/permission_assign_result_spec.rb +30 -0
- data/spec/models/permission_spec.rb +66 -0
- data/spec/models/pkce_method_enum_spec.rb +24 -0
- data/spec/models/plex_authentication_challenge_response_request_spec.rb +30 -0
- data/spec/models/plex_authentication_challenge_spec.rb +54 -0
- data/spec/models/plex_source_property_mapping_request_spec.rb +42 -0
- data/spec/models/plex_source_property_mapping_spec.rb +72 -0
- data/spec/models/plex_source_request_spec.rb +126 -0
- data/spec/models/plex_source_spec.rb +174 -0
- data/spec/models/plex_token_redeem_request_spec.rb +30 -0
- data/spec/models/policy_binding_request_spec.rb +78 -0
- data/spec/models/policy_binding_spec.rb +102 -0
- data/spec/models/policy_engine_mode_spec.rb +24 -0
- data/spec/models/policy_spec.rb +72 -0
- data/spec/models/policy_test_request_spec.rb +36 -0
- data/spec/models/policy_test_result_spec.rb +42 -0
- data/spec/models/process_request_spec.rb +42 -0
- data/spec/models/process_spec.rb +42 -0
- data/spec/models/prompt_challenge_response_request_spec.rb +30 -0
- data/spec/models/prompt_challenge_spec.rb +48 -0
- data/spec/models/prompt_choice_spec.rb +36 -0
- data/spec/models/prompt_request_spec.rb +90 -0
- data/spec/models/prompt_spec.rb +102 -0
- data/spec/models/prompt_stage_request_spec.rb +42 -0
- data/spec/models/prompt_stage_spec.rb +78 -0
- data/spec/models/prompt_type_enum_spec.rb +24 -0
- data/spec/models/property_mapping_preview_spec.rb +30 -0
- data/spec/models/property_mapping_spec.rb +72 -0
- data/spec/models/property_mapping_test_request_spec.rb +42 -0
- data/spec/models/property_mapping_test_result_spec.rb +36 -0
- data/spec/models/protocol_enum_spec.rb +24 -0
- data/spec/models/provider_enum_spec.rb +24 -0
- data/spec/models/provider_model_enum_spec.rb +24 -0
- data/spec/models/provider_spec.rb +108 -0
- data/spec/models/provider_type_enum_spec.rb +24 -0
- data/spec/models/proxy_mode_spec.rb +24 -0
- data/spec/models/proxy_outpost_config_spec.rb +150 -0
- data/spec/models/proxy_provider_request_spec.rb +144 -0
- data/spec/models/proxy_provider_spec.rb +216 -0
- data/spec/models/rac_property_mapping_request_spec.rb +48 -0
- data/spec/models/rac_property_mapping_spec.rb +78 -0
- data/spec/models/rac_provider_request_spec.rb +66 -0
- data/spec/models/rac_provider_spec.rb +126 -0
- data/spec/models/radius_check_access_spec.rb +36 -0
- data/spec/models/radius_outpost_config_spec.rb +72 -0
- data/spec/models/radius_provider_property_mapping_request_spec.rb +42 -0
- data/spec/models/radius_provider_property_mapping_spec.rb +72 -0
- data/spec/models/radius_provider_request_spec.rb +78 -0
- data/spec/models/radius_provider_spec.rb +138 -0
- data/spec/models/redirect_challenge_response_request_spec.rb +36 -0
- data/spec/models/redirect_challenge_spec.rb +48 -0
- data/spec/models/redirect_stage_mode_enum_spec.rb +24 -0
- data/spec/models/redirect_stage_request_spec.rb +54 -0
- data/spec/models/redirect_stage_spec.rb +90 -0
- data/spec/models/redirect_uri_request_spec.rb +36 -0
- data/spec/models/redirect_uri_spec.rb +36 -0
- data/spec/models/related_group_spec.rb +54 -0
- data/spec/models/reputation_policy_request_spec.rb +54 -0
- data/spec/models/reputation_policy_spec.rb +90 -0
- data/spec/models/reputation_spec.rb +66 -0
- data/spec/models/resident_key_requirement_enum_spec.rb +24 -0
- data/spec/models/role_assigned_object_permission_spec.rb +48 -0
- data/spec/models/role_model_permission_spec.rb +54 -0
- data/spec/models/role_object_permission_spec.rb +60 -0
- data/spec/models/role_request_spec.rb +30 -0
- data/spec/models/role_spec.rb +36 -0
- data/spec/models/saml_bindings_enum_spec.rb +24 -0
- data/spec/models/saml_metadata_spec.rb +36 -0
- data/spec/models/saml_name_id_policy_enum_spec.rb +24 -0
- data/spec/models/saml_property_mapping_request_spec.rb +54 -0
- data/spec/models/saml_property_mapping_spec.rb +84 -0
- data/spec/models/saml_provider_logout_method_enum_spec.rb +24 -0
- data/spec/models/saml_provider_request_spec.rb +186 -0
- data/spec/models/saml_provider_spec.rb +276 -0
- data/spec/models/saml_source_property_mapping_request_spec.rb +42 -0
- data/spec/models/saml_source_property_mapping_spec.rb +72 -0
- data/spec/models/saml_source_request_spec.rb +192 -0
- data/spec/models/saml_source_spec.rb +240 -0
- data/spec/models/schedule_request_spec.rb +42 -0
- data/spec/models/schedule_spec.rb +96 -0
- data/spec/models/scim_authentication_mode_enum_spec.rb +24 -0
- data/spec/models/scim_mapping_request_spec.rb +42 -0
- data/spec/models/scim_mapping_spec.rb +72 -0
- data/spec/models/scim_provider_group_request_spec.rb +42 -0
- data/spec/models/scim_provider_group_spec.rb +60 -0
- data/spec/models/scim_provider_request_spec.rb +120 -0
- data/spec/models/scim_provider_spec.rb +162 -0
- data/spec/models/scim_provider_user_request_spec.rb +42 -0
- data/spec/models/scim_provider_user_spec.rb +60 -0
- data/spec/models/scim_source_group_request_spec.rb +54 -0
- data/spec/models/scim_source_group_spec.rb +60 -0
- data/spec/models/scim_source_property_mapping_request_spec.rb +42 -0
- data/spec/models/scim_source_property_mapping_spec.rb +72 -0
- data/spec/models/scim_source_request_spec.rb +60 -0
- data/spec/models/scim_source_spec.rb +108 -0
- data/spec/models/scim_source_user_request_spec.rb +54 -0
- data/spec/models/scim_source_user_spec.rb +60 -0
- data/spec/models/scope_mapping_request_spec.rb +54 -0
- data/spec/models/scope_mapping_spec.rb +84 -0
- data/spec/models/selectable_stage_spec.rb +48 -0
- data/spec/models/service_connection_spec.rb +66 -0
- data/spec/models/service_connection_state_spec.rb +36 -0
- data/spec/models/session_end_challenge_spec.rb +78 -0
- data/spec/models/session_user_spec.rb +36 -0
- data/spec/models/settings_request_spec.rb +120 -0
- data/spec/models/settings_spec.rb +120 -0
- data/spec/models/severity_enum_spec.rb +24 -0
- data/spec/models/shell_challenge_spec.rb +48 -0
- data/spec/models/signature_algorithm_enum_spec.rb +24 -0
- data/spec/models/sms_device_request_spec.rb +30 -0
- data/spec/models/sms_device_spec.rb +48 -0
- data/spec/models/software_request_spec.rb +48 -0
- data/spec/models/software_spec.rb +48 -0
- data/spec/models/source_spec.rb +144 -0
- data/spec/models/source_stage_request_spec.rb +42 -0
- data/spec/models/source_stage_spec.rb +78 -0
- data/spec/models/source_type_spec.rb +78 -0
- data/spec/models/ssf_provider_request_spec.rb +48 -0
- data/spec/models/ssf_provider_spec.rb +90 -0
- data/spec/models/ssf_stream_spec.rb +78 -0
- data/spec/models/stage_mode_enum_spec.rb +24 -0
- data/spec/models/stage_prompt_spec.rb +78 -0
- data/spec/models/stage_spec.rb +66 -0
- data/spec/models/state_enum_spec.rb +24 -0
- data/spec/models/static_device_request_spec.rb +30 -0
- data/spec/models/static_device_spec.rb +48 -0
- data/spec/models/static_device_token_spec.rb +30 -0
- data/spec/models/sub_mode_enum_spec.rb +24 -0
- data/spec/models/sync_object_model_enum_spec.rb +24 -0
- data/spec/models/sync_object_request_spec.rb +42 -0
- data/spec/models/sync_object_result_spec.rb +30 -0
- data/spec/models/sync_outgoing_trigger_mode_enum_spec.rb +24 -0
- data/spec/models/sync_status_spec.rb +42 -0
- data/spec/models/system_info_runtime_spec.rb +72 -0
- data/spec/models/system_info_spec.rb +72 -0
- data/spec/models/task_aggregated_status_enum_spec.rb +24 -0
- data/spec/models/task_spec.rb +114 -0
- data/spec/models/telegram_auth_request_spec.rb +66 -0
- data/spec/models/telegram_challenge_response_request_spec.rb +72 -0
- data/spec/models/telegram_login_challenge_spec.rb +54 -0
- data/spec/models/telegram_source_property_mapping_request_spec.rb +42 -0
- data/spec/models/telegram_source_property_mapping_spec.rb +72 -0
- data/spec/models/telegram_source_request_spec.rb +120 -0
- data/spec/models/telegram_source_spec.rb +162 -0
- data/spec/models/tenant_admin_group_request_request_spec.rb +30 -0
- data/spec/models/tenant_recovery_key_request_request_spec.rb +36 -0
- data/spec/models/tenant_recovery_key_response_spec.rb +36 -0
- data/spec/models/tenant_request_spec.rb +42 -0
- data/spec/models/tenant_spec.rb +48 -0
- data/spec/models/themed_urls_spec.rb +36 -0
- data/spec/models/token_model_spec.rb +72 -0
- data/spec/models/token_request_spec.rb +66 -0
- data/spec/models/token_set_key_request_spec.rb +30 -0
- data/spec/models/token_spec.rb +78 -0
- data/spec/models/token_view_spec.rb +30 -0
- data/spec/models/totp_device_request_spec.rb +30 -0
- data/spec/models/totp_device_spec.rb +42 -0
- data/spec/models/transaction_application_request_spec.rb +48 -0
- data/spec/models/transaction_application_response_spec.rb +36 -0
- data/spec/models/transaction_policy_binding_request_spec.rb +72 -0
- data/spec/models/type_create_spec.rb +66 -0
- data/spec/models/ui_theme_enum_spec.rb +24 -0
- data/spec/models/unique_password_policy_request_spec.rb +48 -0
- data/spec/models/unique_password_policy_spec.rb +84 -0
- data/spec/models/used_by_action_enum_spec.rb +24 -0
- data/spec/models/used_by_spec.rb +54 -0
- data/spec/models/user_account_request_spec.rb +30 -0
- data/spec/models/user_account_serializer_for_role_request_spec.rb +30 -0
- data/spec/models/user_attribute_enum_spec.rb +24 -0
- data/spec/models/user_consent_spec.rb +60 -0
- data/spec/models/user_creation_mode_enum_spec.rb +24 -0
- data/spec/models/user_delete_stage_request_spec.rb +30 -0
- data/spec/models/user_delete_stage_spec.rb +66 -0
- data/spec/models/user_fields_enum_spec.rb +24 -0
- data/spec/models/user_kerberos_source_connection_request_spec.rb +42 -0
- data/spec/models/user_kerberos_source_connection_spec.rb +66 -0
- data/spec/models/user_ldap_source_connection_request_spec.rb +42 -0
- data/spec/models/user_ldap_source_connection_spec.rb +66 -0
- data/spec/models/user_login_challenge_response_request_spec.rb +36 -0
- data/spec/models/user_login_challenge_spec.rb +54 -0
- data/spec/models/user_login_stage_request_spec.rb +66 -0
- data/spec/models/user_login_stage_spec.rb +102 -0
- data/spec/models/user_logout_stage_request_spec.rb +30 -0
- data/spec/models/user_logout_stage_spec.rb +66 -0
- data/spec/models/user_matching_mode_enum_spec.rb +24 -0
- data/spec/models/user_o_auth_source_connection_request_spec.rb +54 -0
- data/spec/models/user_o_auth_source_connection_spec.rb +72 -0
- data/spec/models/user_password_set_request_spec.rb +30 -0
- data/spec/models/user_path_spec.rb +30 -0
- data/spec/models/user_plex_source_connection_request_spec.rb +48 -0
- data/spec/models/user_plex_source_connection_spec.rb +66 -0
- data/spec/models/user_request_spec.rb +84 -0
- data/spec/models/user_saml_source_connection_request_spec.rb +42 -0
- data/spec/models/user_saml_source_connection_spec.rb +66 -0
- data/spec/models/user_self_groups_spec.rb +36 -0
- data/spec/models/user_self_roles_spec.rb +36 -0
- data/spec/models/user_self_spec.rb +102 -0
- data/spec/models/user_service_account_request_spec.rb +48 -0
- data/spec/models/user_service_account_response_spec.rb +54 -0
- data/spec/models/user_setting_spec.rb +54 -0
- data/spec/models/user_source_connection_request_spec.rb +42 -0
- data/spec/models/user_source_connection_spec.rb +66 -0
- data/spec/models/user_spec.rb +144 -0
- data/spec/models/user_telegram_source_connection_request_spec.rb +42 -0
- data/spec/models/user_telegram_source_connection_spec.rb +66 -0
- data/spec/models/user_type_enum_spec.rb +24 -0
- data/spec/models/user_verification_enum_spec.rb +24 -0
- data/spec/models/user_write_stage_request_spec.rb +60 -0
- data/spec/models/user_write_stage_spec.rb +96 -0
- data/spec/models/validation_error_spec.rb +36 -0
- data/spec/models/version_history_spec.rb +48 -0
- data/spec/models/version_spec.rb +60 -0
- data/spec/models/web_authn_device_request_spec.rb +30 -0
- data/spec/models/web_authn_device_spec.rb +60 -0
- data/spec/models/web_authn_device_type_spec.rb +36 -0
- data/spec/models/worker_spec.rb +42 -0
- data/spec/spec_helper.rb +105 -0
- metadata +2705 -0
|
@@ -0,0 +1,1023 @@
|
|
|
1
|
+
=begin
|
|
2
|
+
This file is automatically generated by: https://openapi-generator.tech.
|
|
3
|
+
Any manual changes will be lost when the OpenAPI scheme changes.
|
|
4
|
+
|
|
5
|
+
=end
|
|
6
|
+
|
|
7
|
+
require 'spec_helper'
|
|
8
|
+
require 'json'
|
|
9
|
+
|
|
10
|
+
# Unit tests for Authentik::Api::AuthenticatorsApi
|
|
11
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
|
12
|
+
# Please update as you see appropriate
|
|
13
|
+
describe 'AuthenticatorsApi' do
|
|
14
|
+
before do
|
|
15
|
+
# run before each test
|
|
16
|
+
@api_instance = Authentik::Api::AuthenticatorsApi.new
|
|
17
|
+
end
|
|
18
|
+
|
|
19
|
+
after do
|
|
20
|
+
# run after each test
|
|
21
|
+
end
|
|
22
|
+
|
|
23
|
+
describe 'test an instance of AuthenticatorsApi' do
|
|
24
|
+
it 'should create an instance of AuthenticatorsApi' do
|
|
25
|
+
expect(@api_instance).to be_instance_of(Authentik::Api::AuthenticatorsApi)
|
|
26
|
+
end
|
|
27
|
+
end
|
|
28
|
+
|
|
29
|
+
# unit tests for authenticators_admin_all_list
|
|
30
|
+
# Get all devices for current user
|
|
31
|
+
# @param [Hash] opts the optional parameters
|
|
32
|
+
# @option opts [Integer] :user
|
|
33
|
+
# @return [Array<Device>]
|
|
34
|
+
describe 'authenticators_admin_all_list test' do
|
|
35
|
+
it 'should work' do
|
|
36
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
37
|
+
end
|
|
38
|
+
end
|
|
39
|
+
|
|
40
|
+
# unit tests for authenticators_admin_duo_create
|
|
41
|
+
# Viewset for Duo authenticator devices (for admins)
|
|
42
|
+
# @param duo_device_request
|
|
43
|
+
# @param [Hash] opts the optional parameters
|
|
44
|
+
# @return [DuoDevice]
|
|
45
|
+
describe 'authenticators_admin_duo_create test' do
|
|
46
|
+
it 'should work' do
|
|
47
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
48
|
+
end
|
|
49
|
+
end
|
|
50
|
+
|
|
51
|
+
# unit tests for authenticators_admin_duo_destroy
|
|
52
|
+
# Viewset for Duo authenticator devices (for admins)
|
|
53
|
+
# @param id A unique integer value identifying this Duo Device.
|
|
54
|
+
# @param [Hash] opts the optional parameters
|
|
55
|
+
# @return [nil]
|
|
56
|
+
describe 'authenticators_admin_duo_destroy test' do
|
|
57
|
+
it 'should work' do
|
|
58
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
59
|
+
end
|
|
60
|
+
end
|
|
61
|
+
|
|
62
|
+
# unit tests for authenticators_admin_duo_list
|
|
63
|
+
# Viewset for Duo authenticator devices (for admins)
|
|
64
|
+
# @param [Hash] opts the optional parameters
|
|
65
|
+
# @option opts [String] :name
|
|
66
|
+
# @option opts [String] :ordering Which field to use when ordering the results.
|
|
67
|
+
# @option opts [Integer] :page A page number within the paginated result set.
|
|
68
|
+
# @option opts [Integer] :page_size Number of results to return per page.
|
|
69
|
+
# @option opts [String] :search A search term.
|
|
70
|
+
# @return [PaginatedDuoDeviceList]
|
|
71
|
+
describe 'authenticators_admin_duo_list test' do
|
|
72
|
+
it 'should work' do
|
|
73
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
74
|
+
end
|
|
75
|
+
end
|
|
76
|
+
|
|
77
|
+
# unit tests for authenticators_admin_duo_partial_update
|
|
78
|
+
# Viewset for Duo authenticator devices (for admins)
|
|
79
|
+
# @param id A unique integer value identifying this Duo Device.
|
|
80
|
+
# @param [Hash] opts the optional parameters
|
|
81
|
+
# @option opts [PatchedDuoDeviceRequest] :patched_duo_device_request
|
|
82
|
+
# @return [DuoDevice]
|
|
83
|
+
describe 'authenticators_admin_duo_partial_update test' do
|
|
84
|
+
it 'should work' do
|
|
85
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
86
|
+
end
|
|
87
|
+
end
|
|
88
|
+
|
|
89
|
+
# unit tests for authenticators_admin_duo_retrieve
|
|
90
|
+
# Viewset for Duo authenticator devices (for admins)
|
|
91
|
+
# @param id A unique integer value identifying this Duo Device.
|
|
92
|
+
# @param [Hash] opts the optional parameters
|
|
93
|
+
# @return [DuoDevice]
|
|
94
|
+
describe 'authenticators_admin_duo_retrieve test' do
|
|
95
|
+
it 'should work' do
|
|
96
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
97
|
+
end
|
|
98
|
+
end
|
|
99
|
+
|
|
100
|
+
# unit tests for authenticators_admin_duo_update
|
|
101
|
+
# Viewset for Duo authenticator devices (for admins)
|
|
102
|
+
# @param id A unique integer value identifying this Duo Device.
|
|
103
|
+
# @param duo_device_request
|
|
104
|
+
# @param [Hash] opts the optional parameters
|
|
105
|
+
# @return [DuoDevice]
|
|
106
|
+
describe 'authenticators_admin_duo_update test' do
|
|
107
|
+
it 'should work' do
|
|
108
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
109
|
+
end
|
|
110
|
+
end
|
|
111
|
+
|
|
112
|
+
# unit tests for authenticators_admin_email_create
|
|
113
|
+
# Viewset for email authenticator devices (for admins)
|
|
114
|
+
# @param email_device_request
|
|
115
|
+
# @param [Hash] opts the optional parameters
|
|
116
|
+
# @return [EmailDevice]
|
|
117
|
+
describe 'authenticators_admin_email_create test' do
|
|
118
|
+
it 'should work' do
|
|
119
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
120
|
+
end
|
|
121
|
+
end
|
|
122
|
+
|
|
123
|
+
# unit tests for authenticators_admin_email_destroy
|
|
124
|
+
# Viewset for email authenticator devices (for admins)
|
|
125
|
+
# @param id A unique integer value identifying this Email Device.
|
|
126
|
+
# @param [Hash] opts the optional parameters
|
|
127
|
+
# @return [nil]
|
|
128
|
+
describe 'authenticators_admin_email_destroy test' do
|
|
129
|
+
it 'should work' do
|
|
130
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
131
|
+
end
|
|
132
|
+
end
|
|
133
|
+
|
|
134
|
+
# unit tests for authenticators_admin_email_list
|
|
135
|
+
# Viewset for email authenticator devices (for admins)
|
|
136
|
+
# @param [Hash] opts the optional parameters
|
|
137
|
+
# @option opts [String] :name
|
|
138
|
+
# @option opts [String] :ordering Which field to use when ordering the results.
|
|
139
|
+
# @option opts [Integer] :page A page number within the paginated result set.
|
|
140
|
+
# @option opts [Integer] :page_size Number of results to return per page.
|
|
141
|
+
# @option opts [String] :search A search term.
|
|
142
|
+
# @return [PaginatedEmailDeviceList]
|
|
143
|
+
describe 'authenticators_admin_email_list test' do
|
|
144
|
+
it 'should work' do
|
|
145
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
146
|
+
end
|
|
147
|
+
end
|
|
148
|
+
|
|
149
|
+
# unit tests for authenticators_admin_email_partial_update
|
|
150
|
+
# Viewset for email authenticator devices (for admins)
|
|
151
|
+
# @param id A unique integer value identifying this Email Device.
|
|
152
|
+
# @param [Hash] opts the optional parameters
|
|
153
|
+
# @option opts [PatchedEmailDeviceRequest] :patched_email_device_request
|
|
154
|
+
# @return [EmailDevice]
|
|
155
|
+
describe 'authenticators_admin_email_partial_update test' do
|
|
156
|
+
it 'should work' do
|
|
157
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
158
|
+
end
|
|
159
|
+
end
|
|
160
|
+
|
|
161
|
+
# unit tests for authenticators_admin_email_retrieve
|
|
162
|
+
# Viewset for email authenticator devices (for admins)
|
|
163
|
+
# @param id A unique integer value identifying this Email Device.
|
|
164
|
+
# @param [Hash] opts the optional parameters
|
|
165
|
+
# @return [EmailDevice]
|
|
166
|
+
describe 'authenticators_admin_email_retrieve test' do
|
|
167
|
+
it 'should work' do
|
|
168
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
169
|
+
end
|
|
170
|
+
end
|
|
171
|
+
|
|
172
|
+
# unit tests for authenticators_admin_email_update
|
|
173
|
+
# Viewset for email authenticator devices (for admins)
|
|
174
|
+
# @param id A unique integer value identifying this Email Device.
|
|
175
|
+
# @param email_device_request
|
|
176
|
+
# @param [Hash] opts the optional parameters
|
|
177
|
+
# @return [EmailDevice]
|
|
178
|
+
describe 'authenticators_admin_email_update test' do
|
|
179
|
+
it 'should work' do
|
|
180
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
181
|
+
end
|
|
182
|
+
end
|
|
183
|
+
|
|
184
|
+
# unit tests for authenticators_admin_endpoint_create
|
|
185
|
+
# Viewset for Endpoint authenticator devices (for admins)
|
|
186
|
+
# @param google_endpoint_device_request
|
|
187
|
+
# @param [Hash] opts the optional parameters
|
|
188
|
+
# @return [GoogleEndpointDevice]
|
|
189
|
+
describe 'authenticators_admin_endpoint_create test' do
|
|
190
|
+
it 'should work' do
|
|
191
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
192
|
+
end
|
|
193
|
+
end
|
|
194
|
+
|
|
195
|
+
# unit tests for authenticators_admin_endpoint_destroy
|
|
196
|
+
# Viewset for Endpoint authenticator devices (for admins)
|
|
197
|
+
# @param uuid A UUID string identifying this Endpoint Device.
|
|
198
|
+
# @param [Hash] opts the optional parameters
|
|
199
|
+
# @return [nil]
|
|
200
|
+
describe 'authenticators_admin_endpoint_destroy test' do
|
|
201
|
+
it 'should work' do
|
|
202
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
203
|
+
end
|
|
204
|
+
end
|
|
205
|
+
|
|
206
|
+
# unit tests for authenticators_admin_endpoint_list
|
|
207
|
+
# Viewset for Endpoint authenticator devices (for admins)
|
|
208
|
+
# @param [Hash] opts the optional parameters
|
|
209
|
+
# @option opts [String] :name
|
|
210
|
+
# @option opts [String] :ordering Which field to use when ordering the results.
|
|
211
|
+
# @option opts [Integer] :page A page number within the paginated result set.
|
|
212
|
+
# @option opts [Integer] :page_size Number of results to return per page.
|
|
213
|
+
# @option opts [String] :search A search term.
|
|
214
|
+
# @return [PaginatedGoogleEndpointDeviceList]
|
|
215
|
+
describe 'authenticators_admin_endpoint_list test' do
|
|
216
|
+
it 'should work' do
|
|
217
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
218
|
+
end
|
|
219
|
+
end
|
|
220
|
+
|
|
221
|
+
# unit tests for authenticators_admin_endpoint_partial_update
|
|
222
|
+
# Viewset for Endpoint authenticator devices (for admins)
|
|
223
|
+
# @param uuid A UUID string identifying this Endpoint Device.
|
|
224
|
+
# @param [Hash] opts the optional parameters
|
|
225
|
+
# @option opts [PatchedGoogleEndpointDeviceRequest] :patched_google_endpoint_device_request
|
|
226
|
+
# @return [GoogleEndpointDevice]
|
|
227
|
+
describe 'authenticators_admin_endpoint_partial_update test' do
|
|
228
|
+
it 'should work' do
|
|
229
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
230
|
+
end
|
|
231
|
+
end
|
|
232
|
+
|
|
233
|
+
# unit tests for authenticators_admin_endpoint_retrieve
|
|
234
|
+
# Viewset for Endpoint authenticator devices (for admins)
|
|
235
|
+
# @param uuid A UUID string identifying this Endpoint Device.
|
|
236
|
+
# @param [Hash] opts the optional parameters
|
|
237
|
+
# @return [GoogleEndpointDevice]
|
|
238
|
+
describe 'authenticators_admin_endpoint_retrieve test' do
|
|
239
|
+
it 'should work' do
|
|
240
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
241
|
+
end
|
|
242
|
+
end
|
|
243
|
+
|
|
244
|
+
# unit tests for authenticators_admin_endpoint_update
|
|
245
|
+
# Viewset for Endpoint authenticator devices (for admins)
|
|
246
|
+
# @param uuid A UUID string identifying this Endpoint Device.
|
|
247
|
+
# @param google_endpoint_device_request
|
|
248
|
+
# @param [Hash] opts the optional parameters
|
|
249
|
+
# @return [GoogleEndpointDevice]
|
|
250
|
+
describe 'authenticators_admin_endpoint_update test' do
|
|
251
|
+
it 'should work' do
|
|
252
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
253
|
+
end
|
|
254
|
+
end
|
|
255
|
+
|
|
256
|
+
# unit tests for authenticators_admin_sms_create
|
|
257
|
+
# Viewset for sms authenticator devices (for admins)
|
|
258
|
+
# @param sms_device_request
|
|
259
|
+
# @param [Hash] opts the optional parameters
|
|
260
|
+
# @return [SMSDevice]
|
|
261
|
+
describe 'authenticators_admin_sms_create test' do
|
|
262
|
+
it 'should work' do
|
|
263
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
264
|
+
end
|
|
265
|
+
end
|
|
266
|
+
|
|
267
|
+
# unit tests for authenticators_admin_sms_destroy
|
|
268
|
+
# Viewset for sms authenticator devices (for admins)
|
|
269
|
+
# @param id A unique integer value identifying this SMS Device.
|
|
270
|
+
# @param [Hash] opts the optional parameters
|
|
271
|
+
# @return [nil]
|
|
272
|
+
describe 'authenticators_admin_sms_destroy test' do
|
|
273
|
+
it 'should work' do
|
|
274
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
275
|
+
end
|
|
276
|
+
end
|
|
277
|
+
|
|
278
|
+
# unit tests for authenticators_admin_sms_list
|
|
279
|
+
# Viewset for sms authenticator devices (for admins)
|
|
280
|
+
# @param [Hash] opts the optional parameters
|
|
281
|
+
# @option opts [String] :name
|
|
282
|
+
# @option opts [String] :ordering Which field to use when ordering the results.
|
|
283
|
+
# @option opts [Integer] :page A page number within the paginated result set.
|
|
284
|
+
# @option opts [Integer] :page_size Number of results to return per page.
|
|
285
|
+
# @option opts [String] :search A search term.
|
|
286
|
+
# @return [PaginatedSMSDeviceList]
|
|
287
|
+
describe 'authenticators_admin_sms_list test' do
|
|
288
|
+
it 'should work' do
|
|
289
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
290
|
+
end
|
|
291
|
+
end
|
|
292
|
+
|
|
293
|
+
# unit tests for authenticators_admin_sms_partial_update
|
|
294
|
+
# Viewset for sms authenticator devices (for admins)
|
|
295
|
+
# @param id A unique integer value identifying this SMS Device.
|
|
296
|
+
# @param [Hash] opts the optional parameters
|
|
297
|
+
# @option opts [PatchedSMSDeviceRequest] :patched_sms_device_request
|
|
298
|
+
# @return [SMSDevice]
|
|
299
|
+
describe 'authenticators_admin_sms_partial_update test' do
|
|
300
|
+
it 'should work' do
|
|
301
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
302
|
+
end
|
|
303
|
+
end
|
|
304
|
+
|
|
305
|
+
# unit tests for authenticators_admin_sms_retrieve
|
|
306
|
+
# Viewset for sms authenticator devices (for admins)
|
|
307
|
+
# @param id A unique integer value identifying this SMS Device.
|
|
308
|
+
# @param [Hash] opts the optional parameters
|
|
309
|
+
# @return [SMSDevice]
|
|
310
|
+
describe 'authenticators_admin_sms_retrieve test' do
|
|
311
|
+
it 'should work' do
|
|
312
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
313
|
+
end
|
|
314
|
+
end
|
|
315
|
+
|
|
316
|
+
# unit tests for authenticators_admin_sms_update
|
|
317
|
+
# Viewset for sms authenticator devices (for admins)
|
|
318
|
+
# @param id A unique integer value identifying this SMS Device.
|
|
319
|
+
# @param sms_device_request
|
|
320
|
+
# @param [Hash] opts the optional parameters
|
|
321
|
+
# @return [SMSDevice]
|
|
322
|
+
describe 'authenticators_admin_sms_update test' do
|
|
323
|
+
it 'should work' do
|
|
324
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
325
|
+
end
|
|
326
|
+
end
|
|
327
|
+
|
|
328
|
+
# unit tests for authenticators_admin_static_create
|
|
329
|
+
# Viewset for static authenticator devices (for admins)
|
|
330
|
+
# @param static_device_request
|
|
331
|
+
# @param [Hash] opts the optional parameters
|
|
332
|
+
# @return [StaticDevice]
|
|
333
|
+
describe 'authenticators_admin_static_create test' do
|
|
334
|
+
it 'should work' do
|
|
335
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
336
|
+
end
|
|
337
|
+
end
|
|
338
|
+
|
|
339
|
+
# unit tests for authenticators_admin_static_destroy
|
|
340
|
+
# Viewset for static authenticator devices (for admins)
|
|
341
|
+
# @param id A unique integer value identifying this Static Device.
|
|
342
|
+
# @param [Hash] opts the optional parameters
|
|
343
|
+
# @return [nil]
|
|
344
|
+
describe 'authenticators_admin_static_destroy test' do
|
|
345
|
+
it 'should work' do
|
|
346
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
347
|
+
end
|
|
348
|
+
end
|
|
349
|
+
|
|
350
|
+
# unit tests for authenticators_admin_static_list
|
|
351
|
+
# Viewset for static authenticator devices (for admins)
|
|
352
|
+
# @param [Hash] opts the optional parameters
|
|
353
|
+
# @option opts [String] :name
|
|
354
|
+
# @option opts [String] :ordering Which field to use when ordering the results.
|
|
355
|
+
# @option opts [Integer] :page A page number within the paginated result set.
|
|
356
|
+
# @option opts [Integer] :page_size Number of results to return per page.
|
|
357
|
+
# @option opts [String] :search A search term.
|
|
358
|
+
# @return [PaginatedStaticDeviceList]
|
|
359
|
+
describe 'authenticators_admin_static_list test' do
|
|
360
|
+
it 'should work' do
|
|
361
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
362
|
+
end
|
|
363
|
+
end
|
|
364
|
+
|
|
365
|
+
# unit tests for authenticators_admin_static_partial_update
|
|
366
|
+
# Viewset for static authenticator devices (for admins)
|
|
367
|
+
# @param id A unique integer value identifying this Static Device.
|
|
368
|
+
# @param [Hash] opts the optional parameters
|
|
369
|
+
# @option opts [PatchedStaticDeviceRequest] :patched_static_device_request
|
|
370
|
+
# @return [StaticDevice]
|
|
371
|
+
describe 'authenticators_admin_static_partial_update test' do
|
|
372
|
+
it 'should work' do
|
|
373
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
374
|
+
end
|
|
375
|
+
end
|
|
376
|
+
|
|
377
|
+
# unit tests for authenticators_admin_static_retrieve
|
|
378
|
+
# Viewset for static authenticator devices (for admins)
|
|
379
|
+
# @param id A unique integer value identifying this Static Device.
|
|
380
|
+
# @param [Hash] opts the optional parameters
|
|
381
|
+
# @return [StaticDevice]
|
|
382
|
+
describe 'authenticators_admin_static_retrieve test' do
|
|
383
|
+
it 'should work' do
|
|
384
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
385
|
+
end
|
|
386
|
+
end
|
|
387
|
+
|
|
388
|
+
# unit tests for authenticators_admin_static_update
|
|
389
|
+
# Viewset for static authenticator devices (for admins)
|
|
390
|
+
# @param id A unique integer value identifying this Static Device.
|
|
391
|
+
# @param static_device_request
|
|
392
|
+
# @param [Hash] opts the optional parameters
|
|
393
|
+
# @return [StaticDevice]
|
|
394
|
+
describe 'authenticators_admin_static_update test' do
|
|
395
|
+
it 'should work' do
|
|
396
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
397
|
+
end
|
|
398
|
+
end
|
|
399
|
+
|
|
400
|
+
# unit tests for authenticators_admin_totp_create
|
|
401
|
+
# Viewset for totp authenticator devices (for admins)
|
|
402
|
+
# @param totp_device_request
|
|
403
|
+
# @param [Hash] opts the optional parameters
|
|
404
|
+
# @return [TOTPDevice]
|
|
405
|
+
describe 'authenticators_admin_totp_create test' do
|
|
406
|
+
it 'should work' do
|
|
407
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
408
|
+
end
|
|
409
|
+
end
|
|
410
|
+
|
|
411
|
+
# unit tests for authenticators_admin_totp_destroy
|
|
412
|
+
# Viewset for totp authenticator devices (for admins)
|
|
413
|
+
# @param id A unique integer value identifying this TOTP Device.
|
|
414
|
+
# @param [Hash] opts the optional parameters
|
|
415
|
+
# @return [nil]
|
|
416
|
+
describe 'authenticators_admin_totp_destroy test' do
|
|
417
|
+
it 'should work' do
|
|
418
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
419
|
+
end
|
|
420
|
+
end
|
|
421
|
+
|
|
422
|
+
# unit tests for authenticators_admin_totp_list
|
|
423
|
+
# Viewset for totp authenticator devices (for admins)
|
|
424
|
+
# @param [Hash] opts the optional parameters
|
|
425
|
+
# @option opts [String] :name
|
|
426
|
+
# @option opts [String] :ordering Which field to use when ordering the results.
|
|
427
|
+
# @option opts [Integer] :page A page number within the paginated result set.
|
|
428
|
+
# @option opts [Integer] :page_size Number of results to return per page.
|
|
429
|
+
# @option opts [String] :search A search term.
|
|
430
|
+
# @return [PaginatedTOTPDeviceList]
|
|
431
|
+
describe 'authenticators_admin_totp_list test' do
|
|
432
|
+
it 'should work' do
|
|
433
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
434
|
+
end
|
|
435
|
+
end
|
|
436
|
+
|
|
437
|
+
# unit tests for authenticators_admin_totp_partial_update
|
|
438
|
+
# Viewset for totp authenticator devices (for admins)
|
|
439
|
+
# @param id A unique integer value identifying this TOTP Device.
|
|
440
|
+
# @param [Hash] opts the optional parameters
|
|
441
|
+
# @option opts [PatchedTOTPDeviceRequest] :patched_totp_device_request
|
|
442
|
+
# @return [TOTPDevice]
|
|
443
|
+
describe 'authenticators_admin_totp_partial_update test' do
|
|
444
|
+
it 'should work' do
|
|
445
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
446
|
+
end
|
|
447
|
+
end
|
|
448
|
+
|
|
449
|
+
# unit tests for authenticators_admin_totp_retrieve
|
|
450
|
+
# Viewset for totp authenticator devices (for admins)
|
|
451
|
+
# @param id A unique integer value identifying this TOTP Device.
|
|
452
|
+
# @param [Hash] opts the optional parameters
|
|
453
|
+
# @return [TOTPDevice]
|
|
454
|
+
describe 'authenticators_admin_totp_retrieve test' do
|
|
455
|
+
it 'should work' do
|
|
456
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
457
|
+
end
|
|
458
|
+
end
|
|
459
|
+
|
|
460
|
+
# unit tests for authenticators_admin_totp_update
|
|
461
|
+
# Viewset for totp authenticator devices (for admins)
|
|
462
|
+
# @param id A unique integer value identifying this TOTP Device.
|
|
463
|
+
# @param totp_device_request
|
|
464
|
+
# @param [Hash] opts the optional parameters
|
|
465
|
+
# @return [TOTPDevice]
|
|
466
|
+
describe 'authenticators_admin_totp_update test' do
|
|
467
|
+
it 'should work' do
|
|
468
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
469
|
+
end
|
|
470
|
+
end
|
|
471
|
+
|
|
472
|
+
# unit tests for authenticators_admin_webauthn_create
|
|
473
|
+
# Viewset for WebAuthn authenticator devices (for admins)
|
|
474
|
+
# @param web_authn_device_request
|
|
475
|
+
# @param [Hash] opts the optional parameters
|
|
476
|
+
# @return [WebAuthnDevice]
|
|
477
|
+
describe 'authenticators_admin_webauthn_create test' do
|
|
478
|
+
it 'should work' do
|
|
479
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
480
|
+
end
|
|
481
|
+
end
|
|
482
|
+
|
|
483
|
+
# unit tests for authenticators_admin_webauthn_destroy
|
|
484
|
+
# Viewset for WebAuthn authenticator devices (for admins)
|
|
485
|
+
# @param id A unique integer value identifying this WebAuthn Device.
|
|
486
|
+
# @param [Hash] opts the optional parameters
|
|
487
|
+
# @return [nil]
|
|
488
|
+
describe 'authenticators_admin_webauthn_destroy test' do
|
|
489
|
+
it 'should work' do
|
|
490
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
491
|
+
end
|
|
492
|
+
end
|
|
493
|
+
|
|
494
|
+
# unit tests for authenticators_admin_webauthn_list
|
|
495
|
+
# Viewset for WebAuthn authenticator devices (for admins)
|
|
496
|
+
# @param [Hash] opts the optional parameters
|
|
497
|
+
# @option opts [String] :name
|
|
498
|
+
# @option opts [String] :ordering Which field to use when ordering the results.
|
|
499
|
+
# @option opts [Integer] :page A page number within the paginated result set.
|
|
500
|
+
# @option opts [Integer] :page_size Number of results to return per page.
|
|
501
|
+
# @option opts [String] :search A search term.
|
|
502
|
+
# @return [PaginatedWebAuthnDeviceList]
|
|
503
|
+
describe 'authenticators_admin_webauthn_list test' do
|
|
504
|
+
it 'should work' do
|
|
505
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
506
|
+
end
|
|
507
|
+
end
|
|
508
|
+
|
|
509
|
+
# unit tests for authenticators_admin_webauthn_partial_update
|
|
510
|
+
# Viewset for WebAuthn authenticator devices (for admins)
|
|
511
|
+
# @param id A unique integer value identifying this WebAuthn Device.
|
|
512
|
+
# @param [Hash] opts the optional parameters
|
|
513
|
+
# @option opts [PatchedWebAuthnDeviceRequest] :patched_web_authn_device_request
|
|
514
|
+
# @return [WebAuthnDevice]
|
|
515
|
+
describe 'authenticators_admin_webauthn_partial_update test' do
|
|
516
|
+
it 'should work' do
|
|
517
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
518
|
+
end
|
|
519
|
+
end
|
|
520
|
+
|
|
521
|
+
# unit tests for authenticators_admin_webauthn_retrieve
|
|
522
|
+
# Viewset for WebAuthn authenticator devices (for admins)
|
|
523
|
+
# @param id A unique integer value identifying this WebAuthn Device.
|
|
524
|
+
# @param [Hash] opts the optional parameters
|
|
525
|
+
# @return [WebAuthnDevice]
|
|
526
|
+
describe 'authenticators_admin_webauthn_retrieve test' do
|
|
527
|
+
it 'should work' do
|
|
528
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
529
|
+
end
|
|
530
|
+
end
|
|
531
|
+
|
|
532
|
+
# unit tests for authenticators_admin_webauthn_update
|
|
533
|
+
# Viewset for WebAuthn authenticator devices (for admins)
|
|
534
|
+
# @param id A unique integer value identifying this WebAuthn Device.
|
|
535
|
+
# @param web_authn_device_request
|
|
536
|
+
# @param [Hash] opts the optional parameters
|
|
537
|
+
# @return [WebAuthnDevice]
|
|
538
|
+
describe 'authenticators_admin_webauthn_update test' do
|
|
539
|
+
it 'should work' do
|
|
540
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
541
|
+
end
|
|
542
|
+
end
|
|
543
|
+
|
|
544
|
+
# unit tests for authenticators_all_list
|
|
545
|
+
# Get all devices for current user
|
|
546
|
+
# @param [Hash] opts the optional parameters
|
|
547
|
+
# @return [Array<Device>]
|
|
548
|
+
describe 'authenticators_all_list test' do
|
|
549
|
+
it 'should work' do
|
|
550
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
551
|
+
end
|
|
552
|
+
end
|
|
553
|
+
|
|
554
|
+
# unit tests for authenticators_duo_destroy
|
|
555
|
+
# Viewset for Duo authenticator devices
|
|
556
|
+
# @param id A unique integer value identifying this Duo Device.
|
|
557
|
+
# @param [Hash] opts the optional parameters
|
|
558
|
+
# @return [nil]
|
|
559
|
+
describe 'authenticators_duo_destroy test' do
|
|
560
|
+
it 'should work' do
|
|
561
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
562
|
+
end
|
|
563
|
+
end
|
|
564
|
+
|
|
565
|
+
# unit tests for authenticators_duo_list
|
|
566
|
+
# Viewset for Duo authenticator devices
|
|
567
|
+
# @param [Hash] opts the optional parameters
|
|
568
|
+
# @option opts [String] :name
|
|
569
|
+
# @option opts [String] :ordering Which field to use when ordering the results.
|
|
570
|
+
# @option opts [Integer] :page A page number within the paginated result set.
|
|
571
|
+
# @option opts [Integer] :page_size Number of results to return per page.
|
|
572
|
+
# @option opts [String] :search A search term.
|
|
573
|
+
# @return [PaginatedDuoDeviceList]
|
|
574
|
+
describe 'authenticators_duo_list test' do
|
|
575
|
+
it 'should work' do
|
|
576
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
577
|
+
end
|
|
578
|
+
end
|
|
579
|
+
|
|
580
|
+
# unit tests for authenticators_duo_partial_update
|
|
581
|
+
# Viewset for Duo authenticator devices
|
|
582
|
+
# @param id A unique integer value identifying this Duo Device.
|
|
583
|
+
# @param [Hash] opts the optional parameters
|
|
584
|
+
# @option opts [PatchedDuoDeviceRequest] :patched_duo_device_request
|
|
585
|
+
# @return [DuoDevice]
|
|
586
|
+
describe 'authenticators_duo_partial_update test' do
|
|
587
|
+
it 'should work' do
|
|
588
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
589
|
+
end
|
|
590
|
+
end
|
|
591
|
+
|
|
592
|
+
# unit tests for authenticators_duo_retrieve
|
|
593
|
+
# Viewset for Duo authenticator devices
|
|
594
|
+
# @param id A unique integer value identifying this Duo Device.
|
|
595
|
+
# @param [Hash] opts the optional parameters
|
|
596
|
+
# @return [DuoDevice]
|
|
597
|
+
describe 'authenticators_duo_retrieve test' do
|
|
598
|
+
it 'should work' do
|
|
599
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
600
|
+
end
|
|
601
|
+
end
|
|
602
|
+
|
|
603
|
+
# unit tests for authenticators_duo_update
|
|
604
|
+
# Viewset for Duo authenticator devices
|
|
605
|
+
# @param id A unique integer value identifying this Duo Device.
|
|
606
|
+
# @param duo_device_request
|
|
607
|
+
# @param [Hash] opts the optional parameters
|
|
608
|
+
# @return [DuoDevice]
|
|
609
|
+
describe 'authenticators_duo_update test' do
|
|
610
|
+
it 'should work' do
|
|
611
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
612
|
+
end
|
|
613
|
+
end
|
|
614
|
+
|
|
615
|
+
# unit tests for authenticators_duo_used_by_list
|
|
616
|
+
# Get a list of all objects that use this object
|
|
617
|
+
# @param id A unique integer value identifying this Duo Device.
|
|
618
|
+
# @param [Hash] opts the optional parameters
|
|
619
|
+
# @return [Array<UsedBy>]
|
|
620
|
+
describe 'authenticators_duo_used_by_list test' do
|
|
621
|
+
it 'should work' do
|
|
622
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
623
|
+
end
|
|
624
|
+
end
|
|
625
|
+
|
|
626
|
+
# unit tests for authenticators_email_destroy
|
|
627
|
+
# Viewset for email authenticator devices
|
|
628
|
+
# @param id A unique integer value identifying this Email Device.
|
|
629
|
+
# @param [Hash] opts the optional parameters
|
|
630
|
+
# @return [nil]
|
|
631
|
+
describe 'authenticators_email_destroy test' do
|
|
632
|
+
it 'should work' do
|
|
633
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
634
|
+
end
|
|
635
|
+
end
|
|
636
|
+
|
|
637
|
+
# unit tests for authenticators_email_list
|
|
638
|
+
# Viewset for email authenticator devices
|
|
639
|
+
# @param [Hash] opts the optional parameters
|
|
640
|
+
# @option opts [String] :name
|
|
641
|
+
# @option opts [String] :ordering Which field to use when ordering the results.
|
|
642
|
+
# @option opts [Integer] :page A page number within the paginated result set.
|
|
643
|
+
# @option opts [Integer] :page_size Number of results to return per page.
|
|
644
|
+
# @option opts [String] :search A search term.
|
|
645
|
+
# @return [PaginatedEmailDeviceList]
|
|
646
|
+
describe 'authenticators_email_list test' do
|
|
647
|
+
it 'should work' do
|
|
648
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
649
|
+
end
|
|
650
|
+
end
|
|
651
|
+
|
|
652
|
+
# unit tests for authenticators_email_partial_update
|
|
653
|
+
# Viewset for email authenticator devices
|
|
654
|
+
# @param id A unique integer value identifying this Email Device.
|
|
655
|
+
# @param [Hash] opts the optional parameters
|
|
656
|
+
# @option opts [PatchedEmailDeviceRequest] :patched_email_device_request
|
|
657
|
+
# @return [EmailDevice]
|
|
658
|
+
describe 'authenticators_email_partial_update test' do
|
|
659
|
+
it 'should work' do
|
|
660
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
661
|
+
end
|
|
662
|
+
end
|
|
663
|
+
|
|
664
|
+
# unit tests for authenticators_email_retrieve
|
|
665
|
+
# Viewset for email authenticator devices
|
|
666
|
+
# @param id A unique integer value identifying this Email Device.
|
|
667
|
+
# @param [Hash] opts the optional parameters
|
|
668
|
+
# @return [EmailDevice]
|
|
669
|
+
describe 'authenticators_email_retrieve test' do
|
|
670
|
+
it 'should work' do
|
|
671
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
672
|
+
end
|
|
673
|
+
end
|
|
674
|
+
|
|
675
|
+
# unit tests for authenticators_email_update
|
|
676
|
+
# Viewset for email authenticator devices
|
|
677
|
+
# @param id A unique integer value identifying this Email Device.
|
|
678
|
+
# @param email_device_request
|
|
679
|
+
# @param [Hash] opts the optional parameters
|
|
680
|
+
# @return [EmailDevice]
|
|
681
|
+
describe 'authenticators_email_update test' do
|
|
682
|
+
it 'should work' do
|
|
683
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
684
|
+
end
|
|
685
|
+
end
|
|
686
|
+
|
|
687
|
+
# unit tests for authenticators_email_used_by_list
|
|
688
|
+
# Get a list of all objects that use this object
|
|
689
|
+
# @param id A unique integer value identifying this Email Device.
|
|
690
|
+
# @param [Hash] opts the optional parameters
|
|
691
|
+
# @return [Array<UsedBy>]
|
|
692
|
+
describe 'authenticators_email_used_by_list test' do
|
|
693
|
+
it 'should work' do
|
|
694
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
695
|
+
end
|
|
696
|
+
end
|
|
697
|
+
|
|
698
|
+
# unit tests for authenticators_endpoint_list
|
|
699
|
+
# Viewset for Endpoint authenticator devices
|
|
700
|
+
# @param [Hash] opts the optional parameters
|
|
701
|
+
# @option opts [String] :name
|
|
702
|
+
# @option opts [String] :ordering Which field to use when ordering the results.
|
|
703
|
+
# @option opts [Integer] :page A page number within the paginated result set.
|
|
704
|
+
# @option opts [Integer] :page_size Number of results to return per page.
|
|
705
|
+
# @option opts [String] :search A search term.
|
|
706
|
+
# @return [PaginatedGoogleEndpointDeviceList]
|
|
707
|
+
describe 'authenticators_endpoint_list test' do
|
|
708
|
+
it 'should work' do
|
|
709
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
710
|
+
end
|
|
711
|
+
end
|
|
712
|
+
|
|
713
|
+
# unit tests for authenticators_endpoint_retrieve
|
|
714
|
+
# Viewset for Endpoint authenticator devices
|
|
715
|
+
# @param uuid A UUID string identifying this Endpoint Device.
|
|
716
|
+
# @param [Hash] opts the optional parameters
|
|
717
|
+
# @return [GoogleEndpointDevice]
|
|
718
|
+
describe 'authenticators_endpoint_retrieve test' do
|
|
719
|
+
it 'should work' do
|
|
720
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
721
|
+
end
|
|
722
|
+
end
|
|
723
|
+
|
|
724
|
+
# unit tests for authenticators_endpoint_used_by_list
|
|
725
|
+
# Get a list of all objects that use this object
|
|
726
|
+
# @param uuid A UUID string identifying this Endpoint Device.
|
|
727
|
+
# @param [Hash] opts the optional parameters
|
|
728
|
+
# @return [Array<UsedBy>]
|
|
729
|
+
describe 'authenticators_endpoint_used_by_list test' do
|
|
730
|
+
it 'should work' do
|
|
731
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
732
|
+
end
|
|
733
|
+
end
|
|
734
|
+
|
|
735
|
+
# unit tests for authenticators_sms_destroy
|
|
736
|
+
# Viewset for sms authenticator devices
|
|
737
|
+
# @param id A unique integer value identifying this SMS Device.
|
|
738
|
+
# @param [Hash] opts the optional parameters
|
|
739
|
+
# @return [nil]
|
|
740
|
+
describe 'authenticators_sms_destroy test' do
|
|
741
|
+
it 'should work' do
|
|
742
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
743
|
+
end
|
|
744
|
+
end
|
|
745
|
+
|
|
746
|
+
# unit tests for authenticators_sms_list
|
|
747
|
+
# Viewset for sms authenticator devices
|
|
748
|
+
# @param [Hash] opts the optional parameters
|
|
749
|
+
# @option opts [String] :name
|
|
750
|
+
# @option opts [String] :ordering Which field to use when ordering the results.
|
|
751
|
+
# @option opts [Integer] :page A page number within the paginated result set.
|
|
752
|
+
# @option opts [Integer] :page_size Number of results to return per page.
|
|
753
|
+
# @option opts [String] :search A search term.
|
|
754
|
+
# @return [PaginatedSMSDeviceList]
|
|
755
|
+
describe 'authenticators_sms_list test' do
|
|
756
|
+
it 'should work' do
|
|
757
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
758
|
+
end
|
|
759
|
+
end
|
|
760
|
+
|
|
761
|
+
# unit tests for authenticators_sms_partial_update
|
|
762
|
+
# Viewset for sms authenticator devices
|
|
763
|
+
# @param id A unique integer value identifying this SMS Device.
|
|
764
|
+
# @param [Hash] opts the optional parameters
|
|
765
|
+
# @option opts [PatchedSMSDeviceRequest] :patched_sms_device_request
|
|
766
|
+
# @return [SMSDevice]
|
|
767
|
+
describe 'authenticators_sms_partial_update test' do
|
|
768
|
+
it 'should work' do
|
|
769
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
770
|
+
end
|
|
771
|
+
end
|
|
772
|
+
|
|
773
|
+
# unit tests for authenticators_sms_retrieve
|
|
774
|
+
# Viewset for sms authenticator devices
|
|
775
|
+
# @param id A unique integer value identifying this SMS Device.
|
|
776
|
+
# @param [Hash] opts the optional parameters
|
|
777
|
+
# @return [SMSDevice]
|
|
778
|
+
describe 'authenticators_sms_retrieve test' do
|
|
779
|
+
it 'should work' do
|
|
780
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
781
|
+
end
|
|
782
|
+
end
|
|
783
|
+
|
|
784
|
+
# unit tests for authenticators_sms_update
|
|
785
|
+
# Viewset for sms authenticator devices
|
|
786
|
+
# @param id A unique integer value identifying this SMS Device.
|
|
787
|
+
# @param sms_device_request
|
|
788
|
+
# @param [Hash] opts the optional parameters
|
|
789
|
+
# @return [SMSDevice]
|
|
790
|
+
describe 'authenticators_sms_update test' do
|
|
791
|
+
it 'should work' do
|
|
792
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
793
|
+
end
|
|
794
|
+
end
|
|
795
|
+
|
|
796
|
+
# unit tests for authenticators_sms_used_by_list
|
|
797
|
+
# Get a list of all objects that use this object
|
|
798
|
+
# @param id A unique integer value identifying this SMS Device.
|
|
799
|
+
# @param [Hash] opts the optional parameters
|
|
800
|
+
# @return [Array<UsedBy>]
|
|
801
|
+
describe 'authenticators_sms_used_by_list test' do
|
|
802
|
+
it 'should work' do
|
|
803
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
804
|
+
end
|
|
805
|
+
end
|
|
806
|
+
|
|
807
|
+
# unit tests for authenticators_static_destroy
|
|
808
|
+
# Viewset for static authenticator devices
|
|
809
|
+
# @param id A unique integer value identifying this Static Device.
|
|
810
|
+
# @param [Hash] opts the optional parameters
|
|
811
|
+
# @return [nil]
|
|
812
|
+
describe 'authenticators_static_destroy test' do
|
|
813
|
+
it 'should work' do
|
|
814
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
815
|
+
end
|
|
816
|
+
end
|
|
817
|
+
|
|
818
|
+
# unit tests for authenticators_static_list
|
|
819
|
+
# Viewset for static authenticator devices
|
|
820
|
+
# @param [Hash] opts the optional parameters
|
|
821
|
+
# @option opts [String] :name
|
|
822
|
+
# @option opts [String] :ordering Which field to use when ordering the results.
|
|
823
|
+
# @option opts [Integer] :page A page number within the paginated result set.
|
|
824
|
+
# @option opts [Integer] :page_size Number of results to return per page.
|
|
825
|
+
# @option opts [String] :search A search term.
|
|
826
|
+
# @return [PaginatedStaticDeviceList]
|
|
827
|
+
describe 'authenticators_static_list test' do
|
|
828
|
+
it 'should work' do
|
|
829
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
830
|
+
end
|
|
831
|
+
end
|
|
832
|
+
|
|
833
|
+
# unit tests for authenticators_static_partial_update
|
|
834
|
+
# Viewset for static authenticator devices
|
|
835
|
+
# @param id A unique integer value identifying this Static Device.
|
|
836
|
+
# @param [Hash] opts the optional parameters
|
|
837
|
+
# @option opts [PatchedStaticDeviceRequest] :patched_static_device_request
|
|
838
|
+
# @return [StaticDevice]
|
|
839
|
+
describe 'authenticators_static_partial_update test' do
|
|
840
|
+
it 'should work' do
|
|
841
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
842
|
+
end
|
|
843
|
+
end
|
|
844
|
+
|
|
845
|
+
# unit tests for authenticators_static_retrieve
|
|
846
|
+
# Viewset for static authenticator devices
|
|
847
|
+
# @param id A unique integer value identifying this Static Device.
|
|
848
|
+
# @param [Hash] opts the optional parameters
|
|
849
|
+
# @return [StaticDevice]
|
|
850
|
+
describe 'authenticators_static_retrieve test' do
|
|
851
|
+
it 'should work' do
|
|
852
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
853
|
+
end
|
|
854
|
+
end
|
|
855
|
+
|
|
856
|
+
# unit tests for authenticators_static_update
|
|
857
|
+
# Viewset for static authenticator devices
|
|
858
|
+
# @param id A unique integer value identifying this Static Device.
|
|
859
|
+
# @param static_device_request
|
|
860
|
+
# @param [Hash] opts the optional parameters
|
|
861
|
+
# @return [StaticDevice]
|
|
862
|
+
describe 'authenticators_static_update test' do
|
|
863
|
+
it 'should work' do
|
|
864
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
865
|
+
end
|
|
866
|
+
end
|
|
867
|
+
|
|
868
|
+
# unit tests for authenticators_static_used_by_list
|
|
869
|
+
# Get a list of all objects that use this object
|
|
870
|
+
# @param id A unique integer value identifying this Static Device.
|
|
871
|
+
# @param [Hash] opts the optional parameters
|
|
872
|
+
# @return [Array<UsedBy>]
|
|
873
|
+
describe 'authenticators_static_used_by_list test' do
|
|
874
|
+
it 'should work' do
|
|
875
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
876
|
+
end
|
|
877
|
+
end
|
|
878
|
+
|
|
879
|
+
# unit tests for authenticators_totp_destroy
|
|
880
|
+
# Viewset for totp authenticator devices
|
|
881
|
+
# @param id A unique integer value identifying this TOTP Device.
|
|
882
|
+
# @param [Hash] opts the optional parameters
|
|
883
|
+
# @return [nil]
|
|
884
|
+
describe 'authenticators_totp_destroy test' do
|
|
885
|
+
it 'should work' do
|
|
886
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
887
|
+
end
|
|
888
|
+
end
|
|
889
|
+
|
|
890
|
+
# unit tests for authenticators_totp_list
|
|
891
|
+
# Viewset for totp authenticator devices
|
|
892
|
+
# @param [Hash] opts the optional parameters
|
|
893
|
+
# @option opts [String] :name
|
|
894
|
+
# @option opts [String] :ordering Which field to use when ordering the results.
|
|
895
|
+
# @option opts [Integer] :page A page number within the paginated result set.
|
|
896
|
+
# @option opts [Integer] :page_size Number of results to return per page.
|
|
897
|
+
# @option opts [String] :search A search term.
|
|
898
|
+
# @return [PaginatedTOTPDeviceList]
|
|
899
|
+
describe 'authenticators_totp_list test' do
|
|
900
|
+
it 'should work' do
|
|
901
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
902
|
+
end
|
|
903
|
+
end
|
|
904
|
+
|
|
905
|
+
# unit tests for authenticators_totp_partial_update
|
|
906
|
+
# Viewset for totp authenticator devices
|
|
907
|
+
# @param id A unique integer value identifying this TOTP Device.
|
|
908
|
+
# @param [Hash] opts the optional parameters
|
|
909
|
+
# @option opts [PatchedTOTPDeviceRequest] :patched_totp_device_request
|
|
910
|
+
# @return [TOTPDevice]
|
|
911
|
+
describe 'authenticators_totp_partial_update test' do
|
|
912
|
+
it 'should work' do
|
|
913
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
914
|
+
end
|
|
915
|
+
end
|
|
916
|
+
|
|
917
|
+
# unit tests for authenticators_totp_retrieve
|
|
918
|
+
# Viewset for totp authenticator devices
|
|
919
|
+
# @param id A unique integer value identifying this TOTP Device.
|
|
920
|
+
# @param [Hash] opts the optional parameters
|
|
921
|
+
# @return [TOTPDevice]
|
|
922
|
+
describe 'authenticators_totp_retrieve test' do
|
|
923
|
+
it 'should work' do
|
|
924
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
925
|
+
end
|
|
926
|
+
end
|
|
927
|
+
|
|
928
|
+
# unit tests for authenticators_totp_update
|
|
929
|
+
# Viewset for totp authenticator devices
|
|
930
|
+
# @param id A unique integer value identifying this TOTP Device.
|
|
931
|
+
# @param totp_device_request
|
|
932
|
+
# @param [Hash] opts the optional parameters
|
|
933
|
+
# @return [TOTPDevice]
|
|
934
|
+
describe 'authenticators_totp_update test' do
|
|
935
|
+
it 'should work' do
|
|
936
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
937
|
+
end
|
|
938
|
+
end
|
|
939
|
+
|
|
940
|
+
# unit tests for authenticators_totp_used_by_list
|
|
941
|
+
# Get a list of all objects that use this object
|
|
942
|
+
# @param id A unique integer value identifying this TOTP Device.
|
|
943
|
+
# @param [Hash] opts the optional parameters
|
|
944
|
+
# @return [Array<UsedBy>]
|
|
945
|
+
describe 'authenticators_totp_used_by_list test' do
|
|
946
|
+
it 'should work' do
|
|
947
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
948
|
+
end
|
|
949
|
+
end
|
|
950
|
+
|
|
951
|
+
# unit tests for authenticators_webauthn_destroy
|
|
952
|
+
# Viewset for WebAuthn authenticator devices
|
|
953
|
+
# @param id A unique integer value identifying this WebAuthn Device.
|
|
954
|
+
# @param [Hash] opts the optional parameters
|
|
955
|
+
# @return [nil]
|
|
956
|
+
describe 'authenticators_webauthn_destroy test' do
|
|
957
|
+
it 'should work' do
|
|
958
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
959
|
+
end
|
|
960
|
+
end
|
|
961
|
+
|
|
962
|
+
# unit tests for authenticators_webauthn_list
|
|
963
|
+
# Viewset for WebAuthn authenticator devices
|
|
964
|
+
# @param [Hash] opts the optional parameters
|
|
965
|
+
# @option opts [String] :name
|
|
966
|
+
# @option opts [String] :ordering Which field to use when ordering the results.
|
|
967
|
+
# @option opts [Integer] :page A page number within the paginated result set.
|
|
968
|
+
# @option opts [Integer] :page_size Number of results to return per page.
|
|
969
|
+
# @option opts [String] :search A search term.
|
|
970
|
+
# @return [PaginatedWebAuthnDeviceList]
|
|
971
|
+
describe 'authenticators_webauthn_list test' do
|
|
972
|
+
it 'should work' do
|
|
973
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
974
|
+
end
|
|
975
|
+
end
|
|
976
|
+
|
|
977
|
+
# unit tests for authenticators_webauthn_partial_update
|
|
978
|
+
# Viewset for WebAuthn authenticator devices
|
|
979
|
+
# @param id A unique integer value identifying this WebAuthn Device.
|
|
980
|
+
# @param [Hash] opts the optional parameters
|
|
981
|
+
# @option opts [PatchedWebAuthnDeviceRequest] :patched_web_authn_device_request
|
|
982
|
+
# @return [WebAuthnDevice]
|
|
983
|
+
describe 'authenticators_webauthn_partial_update test' do
|
|
984
|
+
it 'should work' do
|
|
985
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
986
|
+
end
|
|
987
|
+
end
|
|
988
|
+
|
|
989
|
+
# unit tests for authenticators_webauthn_retrieve
|
|
990
|
+
# Viewset for WebAuthn authenticator devices
|
|
991
|
+
# @param id A unique integer value identifying this WebAuthn Device.
|
|
992
|
+
# @param [Hash] opts the optional parameters
|
|
993
|
+
# @return [WebAuthnDevice]
|
|
994
|
+
describe 'authenticators_webauthn_retrieve test' do
|
|
995
|
+
it 'should work' do
|
|
996
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
997
|
+
end
|
|
998
|
+
end
|
|
999
|
+
|
|
1000
|
+
# unit tests for authenticators_webauthn_update
|
|
1001
|
+
# Viewset for WebAuthn authenticator devices
|
|
1002
|
+
# @param id A unique integer value identifying this WebAuthn Device.
|
|
1003
|
+
# @param web_authn_device_request
|
|
1004
|
+
# @param [Hash] opts the optional parameters
|
|
1005
|
+
# @return [WebAuthnDevice]
|
|
1006
|
+
describe 'authenticators_webauthn_update test' do
|
|
1007
|
+
it 'should work' do
|
|
1008
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
1009
|
+
end
|
|
1010
|
+
end
|
|
1011
|
+
|
|
1012
|
+
# unit tests for authenticators_webauthn_used_by_list
|
|
1013
|
+
# Get a list of all objects that use this object
|
|
1014
|
+
# @param id A unique integer value identifying this WebAuthn Device.
|
|
1015
|
+
# @param [Hash] opts the optional parameters
|
|
1016
|
+
# @return [Array<UsedBy>]
|
|
1017
|
+
describe 'authenticators_webauthn_used_by_list test' do
|
|
1018
|
+
it 'should work' do
|
|
1019
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
1020
|
+
end
|
|
1021
|
+
end
|
|
1022
|
+
|
|
1023
|
+
end
|