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,1490 @@
|
|
|
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::ProvidersApi
|
|
11
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
|
12
|
+
# Please update as you see appropriate
|
|
13
|
+
describe 'ProvidersApi' do
|
|
14
|
+
before do
|
|
15
|
+
# run before each test
|
|
16
|
+
@api_instance = Authentik::Api::ProvidersApi.new
|
|
17
|
+
end
|
|
18
|
+
|
|
19
|
+
after do
|
|
20
|
+
# run after each test
|
|
21
|
+
end
|
|
22
|
+
|
|
23
|
+
describe 'test an instance of ProvidersApi' do
|
|
24
|
+
it 'should create an instance of ProvidersApi' do
|
|
25
|
+
expect(@api_instance).to be_instance_of(Authentik::Api::ProvidersApi)
|
|
26
|
+
end
|
|
27
|
+
end
|
|
28
|
+
|
|
29
|
+
# unit tests for providers_all_destroy
|
|
30
|
+
# Provider Viewset
|
|
31
|
+
# @param id A unique integer value identifying this provider.
|
|
32
|
+
# @param [Hash] opts the optional parameters
|
|
33
|
+
# @return [nil]
|
|
34
|
+
describe 'providers_all_destroy 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 providers_all_list
|
|
41
|
+
# Provider Viewset
|
|
42
|
+
# @param [Hash] opts the optional parameters
|
|
43
|
+
# @option opts [Boolean] :application__isnull
|
|
44
|
+
# @option opts [Boolean] :backchannel When not set all providers are returned. When set to true, only backchannel providers are returned. When set to false, backchannel providers are excluded
|
|
45
|
+
# @option opts [String] :ordering Which field to use when ordering the results.
|
|
46
|
+
# @option opts [Integer] :page A page number within the paginated result set.
|
|
47
|
+
# @option opts [Integer] :page_size Number of results to return per page.
|
|
48
|
+
# @option opts [String] :search A search term.
|
|
49
|
+
# @return [PaginatedProviderList]
|
|
50
|
+
describe 'providers_all_list test' do
|
|
51
|
+
it 'should work' do
|
|
52
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
53
|
+
end
|
|
54
|
+
end
|
|
55
|
+
|
|
56
|
+
# unit tests for providers_all_retrieve
|
|
57
|
+
# Provider Viewset
|
|
58
|
+
# @param id A unique integer value identifying this provider.
|
|
59
|
+
# @param [Hash] opts the optional parameters
|
|
60
|
+
# @return [Provider]
|
|
61
|
+
describe 'providers_all_retrieve test' do
|
|
62
|
+
it 'should work' do
|
|
63
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
64
|
+
end
|
|
65
|
+
end
|
|
66
|
+
|
|
67
|
+
# unit tests for providers_all_types_list
|
|
68
|
+
# Get all creatable types
|
|
69
|
+
# @param [Hash] opts the optional parameters
|
|
70
|
+
# @return [Array<TypeCreate>]
|
|
71
|
+
describe 'providers_all_types_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 providers_all_used_by_list
|
|
78
|
+
# Get a list of all objects that use this object
|
|
79
|
+
# @param id A unique integer value identifying this provider.
|
|
80
|
+
# @param [Hash] opts the optional parameters
|
|
81
|
+
# @return [Array<UsedBy>]
|
|
82
|
+
describe 'providers_all_used_by_list test' do
|
|
83
|
+
it 'should work' do
|
|
84
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
85
|
+
end
|
|
86
|
+
end
|
|
87
|
+
|
|
88
|
+
# unit tests for providers_google_workspace_create
|
|
89
|
+
# GoogleWorkspaceProvider Viewset
|
|
90
|
+
# @param google_workspace_provider_request
|
|
91
|
+
# @param [Hash] opts the optional parameters
|
|
92
|
+
# @return [GoogleWorkspaceProvider]
|
|
93
|
+
describe 'providers_google_workspace_create test' do
|
|
94
|
+
it 'should work' do
|
|
95
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
96
|
+
end
|
|
97
|
+
end
|
|
98
|
+
|
|
99
|
+
# unit tests for providers_google_workspace_destroy
|
|
100
|
+
# GoogleWorkspaceProvider Viewset
|
|
101
|
+
# @param id A unique integer value identifying this Google Workspace Provider.
|
|
102
|
+
# @param [Hash] opts the optional parameters
|
|
103
|
+
# @return [nil]
|
|
104
|
+
describe 'providers_google_workspace_destroy test' do
|
|
105
|
+
it 'should work' do
|
|
106
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
107
|
+
end
|
|
108
|
+
end
|
|
109
|
+
|
|
110
|
+
# unit tests for providers_google_workspace_groups_create
|
|
111
|
+
# GoogleWorkspaceProviderGroup Viewset
|
|
112
|
+
# @param google_workspace_provider_group_request
|
|
113
|
+
# @param [Hash] opts the optional parameters
|
|
114
|
+
# @return [GoogleWorkspaceProviderGroup]
|
|
115
|
+
describe 'providers_google_workspace_groups_create test' do
|
|
116
|
+
it 'should work' do
|
|
117
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
118
|
+
end
|
|
119
|
+
end
|
|
120
|
+
|
|
121
|
+
# unit tests for providers_google_workspace_groups_destroy
|
|
122
|
+
# GoogleWorkspaceProviderGroup Viewset
|
|
123
|
+
# @param id A UUID string identifying this Google Workspace Provider Group.
|
|
124
|
+
# @param [Hash] opts the optional parameters
|
|
125
|
+
# @return [nil]
|
|
126
|
+
describe 'providers_google_workspace_groups_destroy test' do
|
|
127
|
+
it 'should work' do
|
|
128
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
129
|
+
end
|
|
130
|
+
end
|
|
131
|
+
|
|
132
|
+
# unit tests for providers_google_workspace_groups_list
|
|
133
|
+
# GoogleWorkspaceProviderGroup Viewset
|
|
134
|
+
# @param [Hash] opts the optional parameters
|
|
135
|
+
# @option opts [String] :group__group_uuid
|
|
136
|
+
# @option opts [String] :group__name
|
|
137
|
+
# @option opts [String] :ordering Which field to use when ordering the results.
|
|
138
|
+
# @option opts [Integer] :page A page number within the paginated result set.
|
|
139
|
+
# @option opts [Integer] :page_size Number of results to return per page.
|
|
140
|
+
# @option opts [Integer] :provider__id
|
|
141
|
+
# @option opts [String] :search A search term.
|
|
142
|
+
# @return [PaginatedGoogleWorkspaceProviderGroupList]
|
|
143
|
+
describe 'providers_google_workspace_groups_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 providers_google_workspace_groups_retrieve
|
|
150
|
+
# GoogleWorkspaceProviderGroup Viewset
|
|
151
|
+
# @param id A UUID string identifying this Google Workspace Provider Group.
|
|
152
|
+
# @param [Hash] opts the optional parameters
|
|
153
|
+
# @return [GoogleWorkspaceProviderGroup]
|
|
154
|
+
describe 'providers_google_workspace_groups_retrieve test' do
|
|
155
|
+
it 'should work' do
|
|
156
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
157
|
+
end
|
|
158
|
+
end
|
|
159
|
+
|
|
160
|
+
# unit tests for providers_google_workspace_groups_used_by_list
|
|
161
|
+
# Get a list of all objects that use this object
|
|
162
|
+
# @param id A UUID string identifying this Google Workspace Provider Group.
|
|
163
|
+
# @param [Hash] opts the optional parameters
|
|
164
|
+
# @return [Array<UsedBy>]
|
|
165
|
+
describe 'providers_google_workspace_groups_used_by_list test' do
|
|
166
|
+
it 'should work' do
|
|
167
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
168
|
+
end
|
|
169
|
+
end
|
|
170
|
+
|
|
171
|
+
# unit tests for providers_google_workspace_list
|
|
172
|
+
# GoogleWorkspaceProvider Viewset
|
|
173
|
+
# @param [Hash] opts the optional parameters
|
|
174
|
+
# @option opts [String] :delegated_subject
|
|
175
|
+
# @option opts [Boolean] :exclude_users_service_account
|
|
176
|
+
# @option opts [String] :filter_group
|
|
177
|
+
# @option opts [String] :name
|
|
178
|
+
# @option opts [String] :ordering Which field to use when ordering the results.
|
|
179
|
+
# @option opts [Integer] :page A page number within the paginated result set.
|
|
180
|
+
# @option opts [Integer] :page_size Number of results to return per page.
|
|
181
|
+
# @option opts [String] :search A search term.
|
|
182
|
+
# @return [PaginatedGoogleWorkspaceProviderList]
|
|
183
|
+
describe 'providers_google_workspace_list test' do
|
|
184
|
+
it 'should work' do
|
|
185
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
186
|
+
end
|
|
187
|
+
end
|
|
188
|
+
|
|
189
|
+
# unit tests for providers_google_workspace_partial_update
|
|
190
|
+
# GoogleWorkspaceProvider Viewset
|
|
191
|
+
# @param id A unique integer value identifying this Google Workspace Provider.
|
|
192
|
+
# @param [Hash] opts the optional parameters
|
|
193
|
+
# @option opts [PatchedGoogleWorkspaceProviderRequest] :patched_google_workspace_provider_request
|
|
194
|
+
# @return [GoogleWorkspaceProvider]
|
|
195
|
+
describe 'providers_google_workspace_partial_update test' do
|
|
196
|
+
it 'should work' do
|
|
197
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
198
|
+
end
|
|
199
|
+
end
|
|
200
|
+
|
|
201
|
+
# unit tests for providers_google_workspace_retrieve
|
|
202
|
+
# GoogleWorkspaceProvider Viewset
|
|
203
|
+
# @param id A unique integer value identifying this Google Workspace Provider.
|
|
204
|
+
# @param [Hash] opts the optional parameters
|
|
205
|
+
# @return [GoogleWorkspaceProvider]
|
|
206
|
+
describe 'providers_google_workspace_retrieve test' do
|
|
207
|
+
it 'should work' do
|
|
208
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
209
|
+
end
|
|
210
|
+
end
|
|
211
|
+
|
|
212
|
+
# unit tests for providers_google_workspace_sync_object_create
|
|
213
|
+
# Sync/Re-sync a single user/group object
|
|
214
|
+
# @param id A unique integer value identifying this Google Workspace Provider.
|
|
215
|
+
# @param sync_object_request
|
|
216
|
+
# @param [Hash] opts the optional parameters
|
|
217
|
+
# @return [SyncObjectResult]
|
|
218
|
+
describe 'providers_google_workspace_sync_object_create test' do
|
|
219
|
+
it 'should work' do
|
|
220
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
221
|
+
end
|
|
222
|
+
end
|
|
223
|
+
|
|
224
|
+
# unit tests for providers_google_workspace_sync_status_retrieve
|
|
225
|
+
# Get provider's sync status
|
|
226
|
+
# @param id A unique integer value identifying this Google Workspace Provider.
|
|
227
|
+
# @param [Hash] opts the optional parameters
|
|
228
|
+
# @return [SyncStatus]
|
|
229
|
+
describe 'providers_google_workspace_sync_status_retrieve test' do
|
|
230
|
+
it 'should work' do
|
|
231
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
232
|
+
end
|
|
233
|
+
end
|
|
234
|
+
|
|
235
|
+
# unit tests for providers_google_workspace_update
|
|
236
|
+
# GoogleWorkspaceProvider Viewset
|
|
237
|
+
# @param id A unique integer value identifying this Google Workspace Provider.
|
|
238
|
+
# @param google_workspace_provider_request
|
|
239
|
+
# @param [Hash] opts the optional parameters
|
|
240
|
+
# @return [GoogleWorkspaceProvider]
|
|
241
|
+
describe 'providers_google_workspace_update test' do
|
|
242
|
+
it 'should work' do
|
|
243
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
244
|
+
end
|
|
245
|
+
end
|
|
246
|
+
|
|
247
|
+
# unit tests for providers_google_workspace_used_by_list
|
|
248
|
+
# Get a list of all objects that use this object
|
|
249
|
+
# @param id A unique integer value identifying this Google Workspace Provider.
|
|
250
|
+
# @param [Hash] opts the optional parameters
|
|
251
|
+
# @return [Array<UsedBy>]
|
|
252
|
+
describe 'providers_google_workspace_used_by_list test' do
|
|
253
|
+
it 'should work' do
|
|
254
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
255
|
+
end
|
|
256
|
+
end
|
|
257
|
+
|
|
258
|
+
# unit tests for providers_google_workspace_users_create
|
|
259
|
+
# GoogleWorkspaceProviderUser Viewset
|
|
260
|
+
# @param google_workspace_provider_user_request
|
|
261
|
+
# @param [Hash] opts the optional parameters
|
|
262
|
+
# @return [GoogleWorkspaceProviderUser]
|
|
263
|
+
describe 'providers_google_workspace_users_create test' do
|
|
264
|
+
it 'should work' do
|
|
265
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
266
|
+
end
|
|
267
|
+
end
|
|
268
|
+
|
|
269
|
+
# unit tests for providers_google_workspace_users_destroy
|
|
270
|
+
# GoogleWorkspaceProviderUser Viewset
|
|
271
|
+
# @param id A UUID string identifying this Google Workspace Provider User.
|
|
272
|
+
# @param [Hash] opts the optional parameters
|
|
273
|
+
# @return [nil]
|
|
274
|
+
describe 'providers_google_workspace_users_destroy test' do
|
|
275
|
+
it 'should work' do
|
|
276
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
277
|
+
end
|
|
278
|
+
end
|
|
279
|
+
|
|
280
|
+
# unit tests for providers_google_workspace_users_list
|
|
281
|
+
# GoogleWorkspaceProviderUser Viewset
|
|
282
|
+
# @param [Hash] opts the optional parameters
|
|
283
|
+
# @option opts [String] :ordering Which field to use when ordering the results.
|
|
284
|
+
# @option opts [Integer] :page A page number within the paginated result set.
|
|
285
|
+
# @option opts [Integer] :page_size Number of results to return per page.
|
|
286
|
+
# @option opts [Integer] :provider__id
|
|
287
|
+
# @option opts [String] :search A search term.
|
|
288
|
+
# @option opts [Integer] :user__id
|
|
289
|
+
# @option opts [String] :user__username
|
|
290
|
+
# @return [PaginatedGoogleWorkspaceProviderUserList]
|
|
291
|
+
describe 'providers_google_workspace_users_list test' do
|
|
292
|
+
it 'should work' do
|
|
293
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
294
|
+
end
|
|
295
|
+
end
|
|
296
|
+
|
|
297
|
+
# unit tests for providers_google_workspace_users_retrieve
|
|
298
|
+
# GoogleWorkspaceProviderUser Viewset
|
|
299
|
+
# @param id A UUID string identifying this Google Workspace Provider User.
|
|
300
|
+
# @param [Hash] opts the optional parameters
|
|
301
|
+
# @return [GoogleWorkspaceProviderUser]
|
|
302
|
+
describe 'providers_google_workspace_users_retrieve test' do
|
|
303
|
+
it 'should work' do
|
|
304
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
305
|
+
end
|
|
306
|
+
end
|
|
307
|
+
|
|
308
|
+
# unit tests for providers_google_workspace_users_used_by_list
|
|
309
|
+
# Get a list of all objects that use this object
|
|
310
|
+
# @param id A UUID string identifying this Google Workspace Provider User.
|
|
311
|
+
# @param [Hash] opts the optional parameters
|
|
312
|
+
# @return [Array<UsedBy>]
|
|
313
|
+
describe 'providers_google_workspace_users_used_by_list test' do
|
|
314
|
+
it 'should work' do
|
|
315
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
316
|
+
end
|
|
317
|
+
end
|
|
318
|
+
|
|
319
|
+
# unit tests for providers_ldap_create
|
|
320
|
+
# LDAPProvider Viewset
|
|
321
|
+
# @param ldap_provider_request
|
|
322
|
+
# @param [Hash] opts the optional parameters
|
|
323
|
+
# @return [LDAPProvider]
|
|
324
|
+
describe 'providers_ldap_create test' do
|
|
325
|
+
it 'should work' do
|
|
326
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
327
|
+
end
|
|
328
|
+
end
|
|
329
|
+
|
|
330
|
+
# unit tests for providers_ldap_destroy
|
|
331
|
+
# LDAPProvider Viewset
|
|
332
|
+
# @param id A unique integer value identifying this LDAP Provider.
|
|
333
|
+
# @param [Hash] opts the optional parameters
|
|
334
|
+
# @return [nil]
|
|
335
|
+
describe 'providers_ldap_destroy test' do
|
|
336
|
+
it 'should work' do
|
|
337
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
338
|
+
end
|
|
339
|
+
end
|
|
340
|
+
|
|
341
|
+
# unit tests for providers_ldap_list
|
|
342
|
+
# LDAPProvider Viewset
|
|
343
|
+
# @param [Hash] opts the optional parameters
|
|
344
|
+
# @option opts [Boolean] :application__isnull
|
|
345
|
+
# @option opts [String] :authorization_flow__slug__iexact
|
|
346
|
+
# @option opts [String] :base_dn__iexact
|
|
347
|
+
# @option opts [String] :certificate__kp_uuid__iexact
|
|
348
|
+
# @option opts [String] :certificate__name__iexact
|
|
349
|
+
# @option opts [Integer] :gid_start_number__iexact
|
|
350
|
+
# @option opts [String] :name__iexact
|
|
351
|
+
# @option opts [String] :ordering Which field to use when ordering the results.
|
|
352
|
+
# @option opts [Integer] :page A page number within the paginated result set.
|
|
353
|
+
# @option opts [Integer] :page_size Number of results to return per page.
|
|
354
|
+
# @option opts [String] :search A search term.
|
|
355
|
+
# @option opts [String] :tls_server_name__iexact
|
|
356
|
+
# @option opts [Integer] :uid_start_number__iexact
|
|
357
|
+
# @return [PaginatedLDAPProviderList]
|
|
358
|
+
describe 'providers_ldap_list test' do
|
|
359
|
+
it 'should work' do
|
|
360
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
361
|
+
end
|
|
362
|
+
end
|
|
363
|
+
|
|
364
|
+
# unit tests for providers_ldap_partial_update
|
|
365
|
+
# LDAPProvider Viewset
|
|
366
|
+
# @param id A unique integer value identifying this LDAP Provider.
|
|
367
|
+
# @param [Hash] opts the optional parameters
|
|
368
|
+
# @option opts [PatchedLDAPProviderRequest] :patched_ldap_provider_request
|
|
369
|
+
# @return [LDAPProvider]
|
|
370
|
+
describe 'providers_ldap_partial_update test' do
|
|
371
|
+
it 'should work' do
|
|
372
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
373
|
+
end
|
|
374
|
+
end
|
|
375
|
+
|
|
376
|
+
# unit tests for providers_ldap_retrieve
|
|
377
|
+
# LDAPProvider Viewset
|
|
378
|
+
# @param id A unique integer value identifying this LDAP Provider.
|
|
379
|
+
# @param [Hash] opts the optional parameters
|
|
380
|
+
# @return [LDAPProvider]
|
|
381
|
+
describe 'providers_ldap_retrieve test' do
|
|
382
|
+
it 'should work' do
|
|
383
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
384
|
+
end
|
|
385
|
+
end
|
|
386
|
+
|
|
387
|
+
# unit tests for providers_ldap_update
|
|
388
|
+
# LDAPProvider Viewset
|
|
389
|
+
# @param id A unique integer value identifying this LDAP Provider.
|
|
390
|
+
# @param ldap_provider_request
|
|
391
|
+
# @param [Hash] opts the optional parameters
|
|
392
|
+
# @return [LDAPProvider]
|
|
393
|
+
describe 'providers_ldap_update test' do
|
|
394
|
+
it 'should work' do
|
|
395
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
396
|
+
end
|
|
397
|
+
end
|
|
398
|
+
|
|
399
|
+
# unit tests for providers_ldap_used_by_list
|
|
400
|
+
# Get a list of all objects that use this object
|
|
401
|
+
# @param id A unique integer value identifying this LDAP Provider.
|
|
402
|
+
# @param [Hash] opts the optional parameters
|
|
403
|
+
# @return [Array<UsedBy>]
|
|
404
|
+
describe 'providers_ldap_used_by_list test' do
|
|
405
|
+
it 'should work' do
|
|
406
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
407
|
+
end
|
|
408
|
+
end
|
|
409
|
+
|
|
410
|
+
# unit tests for providers_microsoft_entra_create
|
|
411
|
+
# MicrosoftEntraProvider Viewset
|
|
412
|
+
# @param microsoft_entra_provider_request
|
|
413
|
+
# @param [Hash] opts the optional parameters
|
|
414
|
+
# @return [MicrosoftEntraProvider]
|
|
415
|
+
describe 'providers_microsoft_entra_create test' do
|
|
416
|
+
it 'should work' do
|
|
417
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
418
|
+
end
|
|
419
|
+
end
|
|
420
|
+
|
|
421
|
+
# unit tests for providers_microsoft_entra_destroy
|
|
422
|
+
# MicrosoftEntraProvider Viewset
|
|
423
|
+
# @param id A unique integer value identifying this Microsoft Entra Provider.
|
|
424
|
+
# @param [Hash] opts the optional parameters
|
|
425
|
+
# @return [nil]
|
|
426
|
+
describe 'providers_microsoft_entra_destroy test' do
|
|
427
|
+
it 'should work' do
|
|
428
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
429
|
+
end
|
|
430
|
+
end
|
|
431
|
+
|
|
432
|
+
# unit tests for providers_microsoft_entra_groups_create
|
|
433
|
+
# MicrosoftEntraProviderGroup Viewset
|
|
434
|
+
# @param microsoft_entra_provider_group_request
|
|
435
|
+
# @param [Hash] opts the optional parameters
|
|
436
|
+
# @return [MicrosoftEntraProviderGroup]
|
|
437
|
+
describe 'providers_microsoft_entra_groups_create test' do
|
|
438
|
+
it 'should work' do
|
|
439
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
440
|
+
end
|
|
441
|
+
end
|
|
442
|
+
|
|
443
|
+
# unit tests for providers_microsoft_entra_groups_destroy
|
|
444
|
+
# MicrosoftEntraProviderGroup Viewset
|
|
445
|
+
# @param id A UUID string identifying this Microsoft Entra Provider Group.
|
|
446
|
+
# @param [Hash] opts the optional parameters
|
|
447
|
+
# @return [nil]
|
|
448
|
+
describe 'providers_microsoft_entra_groups_destroy test' do
|
|
449
|
+
it 'should work' do
|
|
450
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
451
|
+
end
|
|
452
|
+
end
|
|
453
|
+
|
|
454
|
+
# unit tests for providers_microsoft_entra_groups_list
|
|
455
|
+
# MicrosoftEntraProviderGroup Viewset
|
|
456
|
+
# @param [Hash] opts the optional parameters
|
|
457
|
+
# @option opts [String] :group__group_uuid
|
|
458
|
+
# @option opts [String] :group__name
|
|
459
|
+
# @option opts [String] :ordering Which field to use when ordering the results.
|
|
460
|
+
# @option opts [Integer] :page A page number within the paginated result set.
|
|
461
|
+
# @option opts [Integer] :page_size Number of results to return per page.
|
|
462
|
+
# @option opts [Integer] :provider__id
|
|
463
|
+
# @option opts [String] :search A search term.
|
|
464
|
+
# @return [PaginatedMicrosoftEntraProviderGroupList]
|
|
465
|
+
describe 'providers_microsoft_entra_groups_list test' do
|
|
466
|
+
it 'should work' do
|
|
467
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
468
|
+
end
|
|
469
|
+
end
|
|
470
|
+
|
|
471
|
+
# unit tests for providers_microsoft_entra_groups_retrieve
|
|
472
|
+
# MicrosoftEntraProviderGroup Viewset
|
|
473
|
+
# @param id A UUID string identifying this Microsoft Entra Provider Group.
|
|
474
|
+
# @param [Hash] opts the optional parameters
|
|
475
|
+
# @return [MicrosoftEntraProviderGroup]
|
|
476
|
+
describe 'providers_microsoft_entra_groups_retrieve test' do
|
|
477
|
+
it 'should work' do
|
|
478
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
479
|
+
end
|
|
480
|
+
end
|
|
481
|
+
|
|
482
|
+
# unit tests for providers_microsoft_entra_groups_used_by_list
|
|
483
|
+
# Get a list of all objects that use this object
|
|
484
|
+
# @param id A UUID string identifying this Microsoft Entra Provider Group.
|
|
485
|
+
# @param [Hash] opts the optional parameters
|
|
486
|
+
# @return [Array<UsedBy>]
|
|
487
|
+
describe 'providers_microsoft_entra_groups_used_by_list test' do
|
|
488
|
+
it 'should work' do
|
|
489
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
490
|
+
end
|
|
491
|
+
end
|
|
492
|
+
|
|
493
|
+
# unit tests for providers_microsoft_entra_list
|
|
494
|
+
# MicrosoftEntraProvider Viewset
|
|
495
|
+
# @param [Hash] opts the optional parameters
|
|
496
|
+
# @option opts [Boolean] :exclude_users_service_account
|
|
497
|
+
# @option opts [String] :filter_group
|
|
498
|
+
# @option opts [String] :name
|
|
499
|
+
# @option opts [String] :ordering Which field to use when ordering the results.
|
|
500
|
+
# @option opts [Integer] :page A page number within the paginated result set.
|
|
501
|
+
# @option opts [Integer] :page_size Number of results to return per page.
|
|
502
|
+
# @option opts [String] :search A search term.
|
|
503
|
+
# @return [PaginatedMicrosoftEntraProviderList]
|
|
504
|
+
describe 'providers_microsoft_entra_list test' do
|
|
505
|
+
it 'should work' do
|
|
506
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
507
|
+
end
|
|
508
|
+
end
|
|
509
|
+
|
|
510
|
+
# unit tests for providers_microsoft_entra_partial_update
|
|
511
|
+
# MicrosoftEntraProvider Viewset
|
|
512
|
+
# @param id A unique integer value identifying this Microsoft Entra Provider.
|
|
513
|
+
# @param [Hash] opts the optional parameters
|
|
514
|
+
# @option opts [PatchedMicrosoftEntraProviderRequest] :patched_microsoft_entra_provider_request
|
|
515
|
+
# @return [MicrosoftEntraProvider]
|
|
516
|
+
describe 'providers_microsoft_entra_partial_update test' do
|
|
517
|
+
it 'should work' do
|
|
518
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
519
|
+
end
|
|
520
|
+
end
|
|
521
|
+
|
|
522
|
+
# unit tests for providers_microsoft_entra_retrieve
|
|
523
|
+
# MicrosoftEntraProvider Viewset
|
|
524
|
+
# @param id A unique integer value identifying this Microsoft Entra Provider.
|
|
525
|
+
# @param [Hash] opts the optional parameters
|
|
526
|
+
# @return [MicrosoftEntraProvider]
|
|
527
|
+
describe 'providers_microsoft_entra_retrieve test' do
|
|
528
|
+
it 'should work' do
|
|
529
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
530
|
+
end
|
|
531
|
+
end
|
|
532
|
+
|
|
533
|
+
# unit tests for providers_microsoft_entra_sync_object_create
|
|
534
|
+
# Sync/Re-sync a single user/group object
|
|
535
|
+
# @param id A unique integer value identifying this Microsoft Entra Provider.
|
|
536
|
+
# @param sync_object_request
|
|
537
|
+
# @param [Hash] opts the optional parameters
|
|
538
|
+
# @return [SyncObjectResult]
|
|
539
|
+
describe 'providers_microsoft_entra_sync_object_create test' do
|
|
540
|
+
it 'should work' do
|
|
541
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
542
|
+
end
|
|
543
|
+
end
|
|
544
|
+
|
|
545
|
+
# unit tests for providers_microsoft_entra_sync_status_retrieve
|
|
546
|
+
# Get provider's sync status
|
|
547
|
+
# @param id A unique integer value identifying this Microsoft Entra Provider.
|
|
548
|
+
# @param [Hash] opts the optional parameters
|
|
549
|
+
# @return [SyncStatus]
|
|
550
|
+
describe 'providers_microsoft_entra_sync_status_retrieve test' do
|
|
551
|
+
it 'should work' do
|
|
552
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
553
|
+
end
|
|
554
|
+
end
|
|
555
|
+
|
|
556
|
+
# unit tests for providers_microsoft_entra_update
|
|
557
|
+
# MicrosoftEntraProvider Viewset
|
|
558
|
+
# @param id A unique integer value identifying this Microsoft Entra Provider.
|
|
559
|
+
# @param microsoft_entra_provider_request
|
|
560
|
+
# @param [Hash] opts the optional parameters
|
|
561
|
+
# @return [MicrosoftEntraProvider]
|
|
562
|
+
describe 'providers_microsoft_entra_update test' do
|
|
563
|
+
it 'should work' do
|
|
564
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
565
|
+
end
|
|
566
|
+
end
|
|
567
|
+
|
|
568
|
+
# unit tests for providers_microsoft_entra_used_by_list
|
|
569
|
+
# Get a list of all objects that use this object
|
|
570
|
+
# @param id A unique integer value identifying this Microsoft Entra Provider.
|
|
571
|
+
# @param [Hash] opts the optional parameters
|
|
572
|
+
# @return [Array<UsedBy>]
|
|
573
|
+
describe 'providers_microsoft_entra_used_by_list test' do
|
|
574
|
+
it 'should work' do
|
|
575
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
576
|
+
end
|
|
577
|
+
end
|
|
578
|
+
|
|
579
|
+
# unit tests for providers_microsoft_entra_users_create
|
|
580
|
+
# MicrosoftEntraProviderUser Viewset
|
|
581
|
+
# @param microsoft_entra_provider_user_request
|
|
582
|
+
# @param [Hash] opts the optional parameters
|
|
583
|
+
# @return [MicrosoftEntraProviderUser]
|
|
584
|
+
describe 'providers_microsoft_entra_users_create test' do
|
|
585
|
+
it 'should work' do
|
|
586
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
587
|
+
end
|
|
588
|
+
end
|
|
589
|
+
|
|
590
|
+
# unit tests for providers_microsoft_entra_users_destroy
|
|
591
|
+
# MicrosoftEntraProviderUser Viewset
|
|
592
|
+
# @param id A UUID string identifying this Microsoft Entra Provider User.
|
|
593
|
+
# @param [Hash] opts the optional parameters
|
|
594
|
+
# @return [nil]
|
|
595
|
+
describe 'providers_microsoft_entra_users_destroy test' do
|
|
596
|
+
it 'should work' do
|
|
597
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
598
|
+
end
|
|
599
|
+
end
|
|
600
|
+
|
|
601
|
+
# unit tests for providers_microsoft_entra_users_list
|
|
602
|
+
# MicrosoftEntraProviderUser Viewset
|
|
603
|
+
# @param [Hash] opts the optional parameters
|
|
604
|
+
# @option opts [String] :ordering Which field to use when ordering the results.
|
|
605
|
+
# @option opts [Integer] :page A page number within the paginated result set.
|
|
606
|
+
# @option opts [Integer] :page_size Number of results to return per page.
|
|
607
|
+
# @option opts [Integer] :provider__id
|
|
608
|
+
# @option opts [String] :search A search term.
|
|
609
|
+
# @option opts [Integer] :user__id
|
|
610
|
+
# @option opts [String] :user__username
|
|
611
|
+
# @return [PaginatedMicrosoftEntraProviderUserList]
|
|
612
|
+
describe 'providers_microsoft_entra_users_list test' do
|
|
613
|
+
it 'should work' do
|
|
614
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
615
|
+
end
|
|
616
|
+
end
|
|
617
|
+
|
|
618
|
+
# unit tests for providers_microsoft_entra_users_retrieve
|
|
619
|
+
# MicrosoftEntraProviderUser Viewset
|
|
620
|
+
# @param id A UUID string identifying this Microsoft Entra Provider User.
|
|
621
|
+
# @param [Hash] opts the optional parameters
|
|
622
|
+
# @return [MicrosoftEntraProviderUser]
|
|
623
|
+
describe 'providers_microsoft_entra_users_retrieve test' do
|
|
624
|
+
it 'should work' do
|
|
625
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
626
|
+
end
|
|
627
|
+
end
|
|
628
|
+
|
|
629
|
+
# unit tests for providers_microsoft_entra_users_used_by_list
|
|
630
|
+
# Get a list of all objects that use this object
|
|
631
|
+
# @param id A UUID string identifying this Microsoft Entra Provider User.
|
|
632
|
+
# @param [Hash] opts the optional parameters
|
|
633
|
+
# @return [Array<UsedBy>]
|
|
634
|
+
describe 'providers_microsoft_entra_users_used_by_list test' do
|
|
635
|
+
it 'should work' do
|
|
636
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
637
|
+
end
|
|
638
|
+
end
|
|
639
|
+
|
|
640
|
+
# unit tests for providers_oauth2_create
|
|
641
|
+
# OAuth2Provider Viewset
|
|
642
|
+
# @param o_auth2_provider_request
|
|
643
|
+
# @param [Hash] opts the optional parameters
|
|
644
|
+
# @return [OAuth2Provider]
|
|
645
|
+
describe 'providers_oauth2_create test' do
|
|
646
|
+
it 'should work' do
|
|
647
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
648
|
+
end
|
|
649
|
+
end
|
|
650
|
+
|
|
651
|
+
# unit tests for providers_oauth2_destroy
|
|
652
|
+
# OAuth2Provider Viewset
|
|
653
|
+
# @param id A unique integer value identifying this OAuth2/OpenID Provider.
|
|
654
|
+
# @param [Hash] opts the optional parameters
|
|
655
|
+
# @return [nil]
|
|
656
|
+
describe 'providers_oauth2_destroy test' do
|
|
657
|
+
it 'should work' do
|
|
658
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
659
|
+
end
|
|
660
|
+
end
|
|
661
|
+
|
|
662
|
+
# unit tests for providers_oauth2_list
|
|
663
|
+
# OAuth2Provider Viewset
|
|
664
|
+
# @param [Hash] opts the optional parameters
|
|
665
|
+
# @option opts [String] :access_code_validity
|
|
666
|
+
# @option opts [String] :access_token_validity
|
|
667
|
+
# @option opts [String] :application
|
|
668
|
+
# @option opts [String] :authorization_flow
|
|
669
|
+
# @option opts [String] :client_id
|
|
670
|
+
# @option opts [String] :client_type Confidential clients are capable of maintaining the confidentiality of their credentials. Public clients are incapable
|
|
671
|
+
# @option opts [Boolean] :include_claims_in_id_token
|
|
672
|
+
# @option opts [String] :issuer_mode Configure how the issuer field of the ID Token should be filled.
|
|
673
|
+
# @option opts [String] :name
|
|
674
|
+
# @option opts [String] :ordering Which field to use when ordering the results.
|
|
675
|
+
# @option opts [Integer] :page A page number within the paginated result set.
|
|
676
|
+
# @option opts [Integer] :page_size Number of results to return per page.
|
|
677
|
+
# @option opts [Array<String>] :property_mappings
|
|
678
|
+
# @option opts [String] :refresh_token_validity
|
|
679
|
+
# @option opts [String] :search A search term.
|
|
680
|
+
# @option opts [String] :signing_key
|
|
681
|
+
# @option opts [String] :sub_mode Configure what data should be used as unique User Identifier. For most cases, the default should be fine.
|
|
682
|
+
# @return [PaginatedOAuth2ProviderList]
|
|
683
|
+
describe 'providers_oauth2_list test' do
|
|
684
|
+
it 'should work' do
|
|
685
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
686
|
+
end
|
|
687
|
+
end
|
|
688
|
+
|
|
689
|
+
# unit tests for providers_oauth2_partial_update
|
|
690
|
+
# OAuth2Provider Viewset
|
|
691
|
+
# @param id A unique integer value identifying this OAuth2/OpenID Provider.
|
|
692
|
+
# @param [Hash] opts the optional parameters
|
|
693
|
+
# @option opts [PatchedOAuth2ProviderRequest] :patched_o_auth2_provider_request
|
|
694
|
+
# @return [OAuth2Provider]
|
|
695
|
+
describe 'providers_oauth2_partial_update test' do
|
|
696
|
+
it 'should work' do
|
|
697
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
698
|
+
end
|
|
699
|
+
end
|
|
700
|
+
|
|
701
|
+
# unit tests for providers_oauth2_preview_user_retrieve
|
|
702
|
+
# Preview user data for provider
|
|
703
|
+
# @param id A unique integer value identifying this OAuth2/OpenID Provider.
|
|
704
|
+
# @param [Hash] opts the optional parameters
|
|
705
|
+
# @option opts [Integer] :for_user
|
|
706
|
+
# @return [PropertyMappingPreview]
|
|
707
|
+
describe 'providers_oauth2_preview_user_retrieve 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 providers_oauth2_retrieve
|
|
714
|
+
# OAuth2Provider Viewset
|
|
715
|
+
# @param id A unique integer value identifying this OAuth2/OpenID Provider.
|
|
716
|
+
# @param [Hash] opts the optional parameters
|
|
717
|
+
# @return [OAuth2Provider]
|
|
718
|
+
describe 'providers_oauth2_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 providers_oauth2_setup_urls_retrieve
|
|
725
|
+
# Get Providers setup URLs
|
|
726
|
+
# @param id A unique integer value identifying this OAuth2/OpenID Provider.
|
|
727
|
+
# @param [Hash] opts the optional parameters
|
|
728
|
+
# @return [OAuth2ProviderSetupURLs]
|
|
729
|
+
describe 'providers_oauth2_setup_urls_retrieve 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 providers_oauth2_update
|
|
736
|
+
# OAuth2Provider Viewset
|
|
737
|
+
# @param id A unique integer value identifying this OAuth2/OpenID Provider.
|
|
738
|
+
# @param o_auth2_provider_request
|
|
739
|
+
# @param [Hash] opts the optional parameters
|
|
740
|
+
# @return [OAuth2Provider]
|
|
741
|
+
describe 'providers_oauth2_update test' do
|
|
742
|
+
it 'should work' do
|
|
743
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
744
|
+
end
|
|
745
|
+
end
|
|
746
|
+
|
|
747
|
+
# unit tests for providers_oauth2_used_by_list
|
|
748
|
+
# Get a list of all objects that use this object
|
|
749
|
+
# @param id A unique integer value identifying this OAuth2/OpenID Provider.
|
|
750
|
+
# @param [Hash] opts the optional parameters
|
|
751
|
+
# @return [Array<UsedBy>]
|
|
752
|
+
describe 'providers_oauth2_used_by_list test' do
|
|
753
|
+
it 'should work' do
|
|
754
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
755
|
+
end
|
|
756
|
+
end
|
|
757
|
+
|
|
758
|
+
# unit tests for providers_proxy_create
|
|
759
|
+
# ProxyProvider Viewset
|
|
760
|
+
# @param proxy_provider_request
|
|
761
|
+
# @param [Hash] opts the optional parameters
|
|
762
|
+
# @return [ProxyProvider]
|
|
763
|
+
describe 'providers_proxy_create test' do
|
|
764
|
+
it 'should work' do
|
|
765
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
766
|
+
end
|
|
767
|
+
end
|
|
768
|
+
|
|
769
|
+
# unit tests for providers_proxy_destroy
|
|
770
|
+
# ProxyProvider Viewset
|
|
771
|
+
# @param id A unique integer value identifying this Proxy Provider.
|
|
772
|
+
# @param [Hash] opts the optional parameters
|
|
773
|
+
# @return [nil]
|
|
774
|
+
describe 'providers_proxy_destroy test' do
|
|
775
|
+
it 'should work' do
|
|
776
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
777
|
+
end
|
|
778
|
+
end
|
|
779
|
+
|
|
780
|
+
# unit tests for providers_proxy_list
|
|
781
|
+
# ProxyProvider Viewset
|
|
782
|
+
# @param [Hash] opts the optional parameters
|
|
783
|
+
# @option opts [Boolean] :application__isnull
|
|
784
|
+
# @option opts [String] :authorization_flow__slug__iexact
|
|
785
|
+
# @option opts [Boolean] :basic_auth_enabled__iexact
|
|
786
|
+
# @option opts [String] :basic_auth_password_attribute__iexact
|
|
787
|
+
# @option opts [String] :basic_auth_user_attribute__iexact
|
|
788
|
+
# @option opts [String] :certificate__kp_uuid__iexact
|
|
789
|
+
# @option opts [String] :certificate__name__iexact
|
|
790
|
+
# @option opts [String] :cookie_domain__iexact
|
|
791
|
+
# @option opts [String] :external_host__iexact
|
|
792
|
+
# @option opts [String] :internal_host__iexact
|
|
793
|
+
# @option opts [Boolean] :internal_host_ssl_validation__iexact
|
|
794
|
+
# @option opts [String] :mode__iexact
|
|
795
|
+
# @option opts [String] :name__iexact
|
|
796
|
+
# @option opts [String] :ordering Which field to use when ordering the results.
|
|
797
|
+
# @option opts [Integer] :page A page number within the paginated result set.
|
|
798
|
+
# @option opts [Integer] :page_size Number of results to return per page.
|
|
799
|
+
# @option opts [Array<String>] :property_mappings__iexact
|
|
800
|
+
# @option opts [String] :search A search term.
|
|
801
|
+
# @option opts [String] :skip_path_regex__iexact
|
|
802
|
+
# @return [PaginatedProxyProviderList]
|
|
803
|
+
describe 'providers_proxy_list test' do
|
|
804
|
+
it 'should work' do
|
|
805
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
806
|
+
end
|
|
807
|
+
end
|
|
808
|
+
|
|
809
|
+
# unit tests for providers_proxy_partial_update
|
|
810
|
+
# ProxyProvider Viewset
|
|
811
|
+
# @param id A unique integer value identifying this Proxy Provider.
|
|
812
|
+
# @param [Hash] opts the optional parameters
|
|
813
|
+
# @option opts [PatchedProxyProviderRequest] :patched_proxy_provider_request
|
|
814
|
+
# @return [ProxyProvider]
|
|
815
|
+
describe 'providers_proxy_partial_update test' do
|
|
816
|
+
it 'should work' do
|
|
817
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
818
|
+
end
|
|
819
|
+
end
|
|
820
|
+
|
|
821
|
+
# unit tests for providers_proxy_retrieve
|
|
822
|
+
# ProxyProvider Viewset
|
|
823
|
+
# @param id A unique integer value identifying this Proxy Provider.
|
|
824
|
+
# @param [Hash] opts the optional parameters
|
|
825
|
+
# @return [ProxyProvider]
|
|
826
|
+
describe 'providers_proxy_retrieve test' do
|
|
827
|
+
it 'should work' do
|
|
828
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
829
|
+
end
|
|
830
|
+
end
|
|
831
|
+
|
|
832
|
+
# unit tests for providers_proxy_update
|
|
833
|
+
# ProxyProvider Viewset
|
|
834
|
+
# @param id A unique integer value identifying this Proxy Provider.
|
|
835
|
+
# @param proxy_provider_request
|
|
836
|
+
# @param [Hash] opts the optional parameters
|
|
837
|
+
# @return [ProxyProvider]
|
|
838
|
+
describe 'providers_proxy_update test' do
|
|
839
|
+
it 'should work' do
|
|
840
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
841
|
+
end
|
|
842
|
+
end
|
|
843
|
+
|
|
844
|
+
# unit tests for providers_proxy_used_by_list
|
|
845
|
+
# Get a list of all objects that use this object
|
|
846
|
+
# @param id A unique integer value identifying this Proxy Provider.
|
|
847
|
+
# @param [Hash] opts the optional parameters
|
|
848
|
+
# @return [Array<UsedBy>]
|
|
849
|
+
describe 'providers_proxy_used_by_list test' do
|
|
850
|
+
it 'should work' do
|
|
851
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
852
|
+
end
|
|
853
|
+
end
|
|
854
|
+
|
|
855
|
+
# unit tests for providers_rac_create
|
|
856
|
+
# RACProvider Viewset
|
|
857
|
+
# @param rac_provider_request
|
|
858
|
+
# @param [Hash] opts the optional parameters
|
|
859
|
+
# @return [RACProvider]
|
|
860
|
+
describe 'providers_rac_create test' do
|
|
861
|
+
it 'should work' do
|
|
862
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
863
|
+
end
|
|
864
|
+
end
|
|
865
|
+
|
|
866
|
+
# unit tests for providers_rac_destroy
|
|
867
|
+
# RACProvider Viewset
|
|
868
|
+
# @param id A unique integer value identifying this RAC Provider.
|
|
869
|
+
# @param [Hash] opts the optional parameters
|
|
870
|
+
# @return [nil]
|
|
871
|
+
describe 'providers_rac_destroy test' do
|
|
872
|
+
it 'should work' do
|
|
873
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
874
|
+
end
|
|
875
|
+
end
|
|
876
|
+
|
|
877
|
+
# unit tests for providers_rac_list
|
|
878
|
+
# RACProvider Viewset
|
|
879
|
+
# @param [Hash] opts the optional parameters
|
|
880
|
+
# @option opts [Boolean] :application__isnull
|
|
881
|
+
# @option opts [String] :name__iexact
|
|
882
|
+
# @option opts [String] :ordering Which field to use when ordering the results.
|
|
883
|
+
# @option opts [Integer] :page A page number within the paginated result set.
|
|
884
|
+
# @option opts [Integer] :page_size Number of results to return per page.
|
|
885
|
+
# @option opts [String] :search A search term.
|
|
886
|
+
# @return [PaginatedRACProviderList]
|
|
887
|
+
describe 'providers_rac_list test' do
|
|
888
|
+
it 'should work' do
|
|
889
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
890
|
+
end
|
|
891
|
+
end
|
|
892
|
+
|
|
893
|
+
# unit tests for providers_rac_partial_update
|
|
894
|
+
# RACProvider Viewset
|
|
895
|
+
# @param id A unique integer value identifying this RAC Provider.
|
|
896
|
+
# @param [Hash] opts the optional parameters
|
|
897
|
+
# @option opts [PatchedRACProviderRequest] :patched_rac_provider_request
|
|
898
|
+
# @return [RACProvider]
|
|
899
|
+
describe 'providers_rac_partial_update 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 providers_rac_retrieve
|
|
906
|
+
# RACProvider Viewset
|
|
907
|
+
# @param id A unique integer value identifying this RAC Provider.
|
|
908
|
+
# @param [Hash] opts the optional parameters
|
|
909
|
+
# @return [RACProvider]
|
|
910
|
+
describe 'providers_rac_retrieve test' do
|
|
911
|
+
it 'should work' do
|
|
912
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
913
|
+
end
|
|
914
|
+
end
|
|
915
|
+
|
|
916
|
+
# unit tests for providers_rac_update
|
|
917
|
+
# RACProvider Viewset
|
|
918
|
+
# @param id A unique integer value identifying this RAC Provider.
|
|
919
|
+
# @param rac_provider_request
|
|
920
|
+
# @param [Hash] opts the optional parameters
|
|
921
|
+
# @return [RACProvider]
|
|
922
|
+
describe 'providers_rac_update 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 providers_rac_used_by_list
|
|
929
|
+
# Get a list of all objects that use this object
|
|
930
|
+
# @param id A unique integer value identifying this RAC Provider.
|
|
931
|
+
# @param [Hash] opts the optional parameters
|
|
932
|
+
# @return [Array<UsedBy>]
|
|
933
|
+
describe 'providers_rac_used_by_list test' do
|
|
934
|
+
it 'should work' do
|
|
935
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
936
|
+
end
|
|
937
|
+
end
|
|
938
|
+
|
|
939
|
+
# unit tests for providers_radius_create
|
|
940
|
+
# RadiusProvider Viewset
|
|
941
|
+
# @param radius_provider_request
|
|
942
|
+
# @param [Hash] opts the optional parameters
|
|
943
|
+
# @return [RadiusProvider]
|
|
944
|
+
describe 'providers_radius_create test' do
|
|
945
|
+
it 'should work' do
|
|
946
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
947
|
+
end
|
|
948
|
+
end
|
|
949
|
+
|
|
950
|
+
# unit tests for providers_radius_destroy
|
|
951
|
+
# RadiusProvider Viewset
|
|
952
|
+
# @param id A unique integer value identifying this Radius Provider.
|
|
953
|
+
# @param [Hash] opts the optional parameters
|
|
954
|
+
# @return [nil]
|
|
955
|
+
describe 'providers_radius_destroy test' do
|
|
956
|
+
it 'should work' do
|
|
957
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
958
|
+
end
|
|
959
|
+
end
|
|
960
|
+
|
|
961
|
+
# unit tests for providers_radius_list
|
|
962
|
+
# RadiusProvider Viewset
|
|
963
|
+
# @param [Hash] opts the optional parameters
|
|
964
|
+
# @option opts [Boolean] :application__isnull
|
|
965
|
+
# @option opts [String] :authorization_flow__slug__iexact
|
|
966
|
+
# @option opts [String] :client_networks__iexact
|
|
967
|
+
# @option opts [String] :name__iexact
|
|
968
|
+
# @option opts [String] :ordering Which field to use when ordering the results.
|
|
969
|
+
# @option opts [Integer] :page A page number within the paginated result set.
|
|
970
|
+
# @option opts [Integer] :page_size Number of results to return per page.
|
|
971
|
+
# @option opts [String] :search A search term.
|
|
972
|
+
# @return [PaginatedRadiusProviderList]
|
|
973
|
+
describe 'providers_radius_list test' do
|
|
974
|
+
it 'should work' do
|
|
975
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
976
|
+
end
|
|
977
|
+
end
|
|
978
|
+
|
|
979
|
+
# unit tests for providers_radius_partial_update
|
|
980
|
+
# RadiusProvider Viewset
|
|
981
|
+
# @param id A unique integer value identifying this Radius Provider.
|
|
982
|
+
# @param [Hash] opts the optional parameters
|
|
983
|
+
# @option opts [PatchedRadiusProviderRequest] :patched_radius_provider_request
|
|
984
|
+
# @return [RadiusProvider]
|
|
985
|
+
describe 'providers_radius_partial_update test' do
|
|
986
|
+
it 'should work' do
|
|
987
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
988
|
+
end
|
|
989
|
+
end
|
|
990
|
+
|
|
991
|
+
# unit tests for providers_radius_retrieve
|
|
992
|
+
# RadiusProvider Viewset
|
|
993
|
+
# @param id A unique integer value identifying this Radius Provider.
|
|
994
|
+
# @param [Hash] opts the optional parameters
|
|
995
|
+
# @return [RadiusProvider]
|
|
996
|
+
describe 'providers_radius_retrieve test' do
|
|
997
|
+
it 'should work' do
|
|
998
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
999
|
+
end
|
|
1000
|
+
end
|
|
1001
|
+
|
|
1002
|
+
# unit tests for providers_radius_update
|
|
1003
|
+
# RadiusProvider Viewset
|
|
1004
|
+
# @param id A unique integer value identifying this Radius Provider.
|
|
1005
|
+
# @param radius_provider_request
|
|
1006
|
+
# @param [Hash] opts the optional parameters
|
|
1007
|
+
# @return [RadiusProvider]
|
|
1008
|
+
describe 'providers_radius_update test' do
|
|
1009
|
+
it 'should work' do
|
|
1010
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
1011
|
+
end
|
|
1012
|
+
end
|
|
1013
|
+
|
|
1014
|
+
# unit tests for providers_radius_used_by_list
|
|
1015
|
+
# Get a list of all objects that use this object
|
|
1016
|
+
# @param id A unique integer value identifying this Radius Provider.
|
|
1017
|
+
# @param [Hash] opts the optional parameters
|
|
1018
|
+
# @return [Array<UsedBy>]
|
|
1019
|
+
describe 'providers_radius_used_by_list test' do
|
|
1020
|
+
it 'should work' do
|
|
1021
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
1022
|
+
end
|
|
1023
|
+
end
|
|
1024
|
+
|
|
1025
|
+
# unit tests for providers_saml_create
|
|
1026
|
+
# SAMLProvider Viewset
|
|
1027
|
+
# @param saml_provider_request
|
|
1028
|
+
# @param [Hash] opts the optional parameters
|
|
1029
|
+
# @return [SAMLProvider]
|
|
1030
|
+
describe 'providers_saml_create test' do
|
|
1031
|
+
it 'should work' do
|
|
1032
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
1033
|
+
end
|
|
1034
|
+
end
|
|
1035
|
+
|
|
1036
|
+
# unit tests for providers_saml_destroy
|
|
1037
|
+
# SAMLProvider Viewset
|
|
1038
|
+
# @param id A unique integer value identifying this SAML Provider.
|
|
1039
|
+
# @param [Hash] opts the optional parameters
|
|
1040
|
+
# @return [nil]
|
|
1041
|
+
describe 'providers_saml_destroy test' do
|
|
1042
|
+
it 'should work' do
|
|
1043
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
1044
|
+
end
|
|
1045
|
+
end
|
|
1046
|
+
|
|
1047
|
+
# unit tests for providers_saml_import_metadata_create
|
|
1048
|
+
# Create provider from SAML Metadata
|
|
1049
|
+
# @param name
|
|
1050
|
+
# @param authorization_flow
|
|
1051
|
+
# @param invalidation_flow
|
|
1052
|
+
# @param file
|
|
1053
|
+
# @param [Hash] opts the optional parameters
|
|
1054
|
+
# @return [SAMLProvider]
|
|
1055
|
+
describe 'providers_saml_import_metadata_create test' do
|
|
1056
|
+
it 'should work' do
|
|
1057
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
1058
|
+
end
|
|
1059
|
+
end
|
|
1060
|
+
|
|
1061
|
+
# unit tests for providers_saml_list
|
|
1062
|
+
# SAMLProvider Viewset
|
|
1063
|
+
# @param [Hash] opts the optional parameters
|
|
1064
|
+
# @option opts [String] :acs_url
|
|
1065
|
+
# @option opts [String] :assertion_valid_not_before
|
|
1066
|
+
# @option opts [String] :assertion_valid_not_on_or_after
|
|
1067
|
+
# @option opts [String] :audience
|
|
1068
|
+
# @option opts [String] :authentication_flow
|
|
1069
|
+
# @option opts [String] :authn_context_class_ref_mapping
|
|
1070
|
+
# @option opts [String] :authorization_flow
|
|
1071
|
+
# @option opts [String] :backchannel_application
|
|
1072
|
+
# @option opts [String] :default_name_id_policy
|
|
1073
|
+
# @option opts [String] :default_relay_state
|
|
1074
|
+
# @option opts [String] :digest_algorithm
|
|
1075
|
+
# @option opts [String] :encryption_kp
|
|
1076
|
+
# @option opts [String] :invalidation_flow
|
|
1077
|
+
# @option opts [Boolean] :is_backchannel
|
|
1078
|
+
# @option opts [String] :issuer
|
|
1079
|
+
# @option opts [String] :logout_method Method to use for logout. Front-channel iframe loads all logout URLs simultaneously in hidden iframes. Front-channel native uses your active browser tab to send post requests and redirect to providers. Back-channel sends logout requests directly from the server without user interaction (requires POST SLS binding).
|
|
1080
|
+
# @option opts [String] :name
|
|
1081
|
+
# @option opts [String] :name_id_mapping
|
|
1082
|
+
# @option opts [String] :ordering Which field to use when ordering the results.
|
|
1083
|
+
# @option opts [Integer] :page A page number within the paginated result set.
|
|
1084
|
+
# @option opts [Integer] :page_size Number of results to return per page.
|
|
1085
|
+
# @option opts [Array<String>] :property_mappings
|
|
1086
|
+
# @option opts [String] :search A search term.
|
|
1087
|
+
# @option opts [String] :session_valid_not_on_or_after
|
|
1088
|
+
# @option opts [Boolean] :sign_assertion
|
|
1089
|
+
# @option opts [Boolean] :sign_logout_request
|
|
1090
|
+
# @option opts [Boolean] :sign_response
|
|
1091
|
+
# @option opts [String] :signature_algorithm
|
|
1092
|
+
# @option opts [String] :signing_kp
|
|
1093
|
+
# @option opts [String] :sls_binding This determines how authentik sends the logout response back to the Service Provider.
|
|
1094
|
+
# @option opts [String] :sls_url
|
|
1095
|
+
# @option opts [String] :sp_binding This determines how authentik sends the response back to the Service Provider.
|
|
1096
|
+
# @option opts [String] :verification_kp
|
|
1097
|
+
# @return [PaginatedSAMLProviderList]
|
|
1098
|
+
describe 'providers_saml_list test' do
|
|
1099
|
+
it 'should work' do
|
|
1100
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
1101
|
+
end
|
|
1102
|
+
end
|
|
1103
|
+
|
|
1104
|
+
# unit tests for providers_saml_metadata_retrieve
|
|
1105
|
+
# Return metadata as XML string
|
|
1106
|
+
# @param id A unique integer value identifying this SAML Provider.
|
|
1107
|
+
# @param [Hash] opts the optional parameters
|
|
1108
|
+
# @option opts [Boolean] :download
|
|
1109
|
+
# @option opts [String] :force_binding Optionally force the metadata to only include one binding.
|
|
1110
|
+
# @return [SAMLMetadata]
|
|
1111
|
+
describe 'providers_saml_metadata_retrieve test' do
|
|
1112
|
+
it 'should work' do
|
|
1113
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
1114
|
+
end
|
|
1115
|
+
end
|
|
1116
|
+
|
|
1117
|
+
# unit tests for providers_saml_partial_update
|
|
1118
|
+
# SAMLProvider Viewset
|
|
1119
|
+
# @param id A unique integer value identifying this SAML Provider.
|
|
1120
|
+
# @param [Hash] opts the optional parameters
|
|
1121
|
+
# @option opts [PatchedSAMLProviderRequest] :patched_saml_provider_request
|
|
1122
|
+
# @return [SAMLProvider]
|
|
1123
|
+
describe 'providers_saml_partial_update test' do
|
|
1124
|
+
it 'should work' do
|
|
1125
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
1126
|
+
end
|
|
1127
|
+
end
|
|
1128
|
+
|
|
1129
|
+
# unit tests for providers_saml_preview_user_retrieve
|
|
1130
|
+
# Preview user data for provider
|
|
1131
|
+
# @param id A unique integer value identifying this SAML Provider.
|
|
1132
|
+
# @param [Hash] opts the optional parameters
|
|
1133
|
+
# @option opts [Integer] :for_user
|
|
1134
|
+
# @return [PropertyMappingPreview]
|
|
1135
|
+
describe 'providers_saml_preview_user_retrieve test' do
|
|
1136
|
+
it 'should work' do
|
|
1137
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
1138
|
+
end
|
|
1139
|
+
end
|
|
1140
|
+
|
|
1141
|
+
# unit tests for providers_saml_retrieve
|
|
1142
|
+
# SAMLProvider Viewset
|
|
1143
|
+
# @param id A unique integer value identifying this SAML Provider.
|
|
1144
|
+
# @param [Hash] opts the optional parameters
|
|
1145
|
+
# @return [SAMLProvider]
|
|
1146
|
+
describe 'providers_saml_retrieve test' do
|
|
1147
|
+
it 'should work' do
|
|
1148
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
1149
|
+
end
|
|
1150
|
+
end
|
|
1151
|
+
|
|
1152
|
+
# unit tests for providers_saml_update
|
|
1153
|
+
# SAMLProvider Viewset
|
|
1154
|
+
# @param id A unique integer value identifying this SAML Provider.
|
|
1155
|
+
# @param saml_provider_request
|
|
1156
|
+
# @param [Hash] opts the optional parameters
|
|
1157
|
+
# @return [SAMLProvider]
|
|
1158
|
+
describe 'providers_saml_update test' do
|
|
1159
|
+
it 'should work' do
|
|
1160
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
1161
|
+
end
|
|
1162
|
+
end
|
|
1163
|
+
|
|
1164
|
+
# unit tests for providers_saml_used_by_list
|
|
1165
|
+
# Get a list of all objects that use this object
|
|
1166
|
+
# @param id A unique integer value identifying this SAML Provider.
|
|
1167
|
+
# @param [Hash] opts the optional parameters
|
|
1168
|
+
# @return [Array<UsedBy>]
|
|
1169
|
+
describe 'providers_saml_used_by_list test' do
|
|
1170
|
+
it 'should work' do
|
|
1171
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
1172
|
+
end
|
|
1173
|
+
end
|
|
1174
|
+
|
|
1175
|
+
# unit tests for providers_scim_create
|
|
1176
|
+
# SCIMProvider Viewset
|
|
1177
|
+
# @param scim_provider_request
|
|
1178
|
+
# @param [Hash] opts the optional parameters
|
|
1179
|
+
# @return [SCIMProvider]
|
|
1180
|
+
describe 'providers_scim_create test' do
|
|
1181
|
+
it 'should work' do
|
|
1182
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
1183
|
+
end
|
|
1184
|
+
end
|
|
1185
|
+
|
|
1186
|
+
# unit tests for providers_scim_destroy
|
|
1187
|
+
# SCIMProvider Viewset
|
|
1188
|
+
# @param id A unique integer value identifying this SCIM Provider.
|
|
1189
|
+
# @param [Hash] opts the optional parameters
|
|
1190
|
+
# @return [nil]
|
|
1191
|
+
describe 'providers_scim_destroy test' do
|
|
1192
|
+
it 'should work' do
|
|
1193
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
1194
|
+
end
|
|
1195
|
+
end
|
|
1196
|
+
|
|
1197
|
+
# unit tests for providers_scim_groups_create
|
|
1198
|
+
# SCIMProviderGroup Viewset
|
|
1199
|
+
# @param scim_provider_group_request
|
|
1200
|
+
# @param [Hash] opts the optional parameters
|
|
1201
|
+
# @return [SCIMProviderGroup]
|
|
1202
|
+
describe 'providers_scim_groups_create test' do
|
|
1203
|
+
it 'should work' do
|
|
1204
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
1205
|
+
end
|
|
1206
|
+
end
|
|
1207
|
+
|
|
1208
|
+
# unit tests for providers_scim_groups_destroy
|
|
1209
|
+
# SCIMProviderGroup Viewset
|
|
1210
|
+
# @param id A UUID string identifying this scim provider group.
|
|
1211
|
+
# @param [Hash] opts the optional parameters
|
|
1212
|
+
# @return [nil]
|
|
1213
|
+
describe 'providers_scim_groups_destroy test' do
|
|
1214
|
+
it 'should work' do
|
|
1215
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
1216
|
+
end
|
|
1217
|
+
end
|
|
1218
|
+
|
|
1219
|
+
# unit tests for providers_scim_groups_list
|
|
1220
|
+
# SCIMProviderGroup Viewset
|
|
1221
|
+
# @param [Hash] opts the optional parameters
|
|
1222
|
+
# @option opts [String] :group__group_uuid
|
|
1223
|
+
# @option opts [String] :group__name
|
|
1224
|
+
# @option opts [String] :ordering Which field to use when ordering the results.
|
|
1225
|
+
# @option opts [Integer] :page A page number within the paginated result set.
|
|
1226
|
+
# @option opts [Integer] :page_size Number of results to return per page.
|
|
1227
|
+
# @option opts [Integer] :provider__id
|
|
1228
|
+
# @option opts [String] :search A search term.
|
|
1229
|
+
# @return [PaginatedSCIMProviderGroupList]
|
|
1230
|
+
describe 'providers_scim_groups_list test' do
|
|
1231
|
+
it 'should work' do
|
|
1232
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
1233
|
+
end
|
|
1234
|
+
end
|
|
1235
|
+
|
|
1236
|
+
# unit tests for providers_scim_groups_retrieve
|
|
1237
|
+
# SCIMProviderGroup Viewset
|
|
1238
|
+
# @param id A UUID string identifying this scim provider group.
|
|
1239
|
+
# @param [Hash] opts the optional parameters
|
|
1240
|
+
# @return [SCIMProviderGroup]
|
|
1241
|
+
describe 'providers_scim_groups_retrieve test' do
|
|
1242
|
+
it 'should work' do
|
|
1243
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
1244
|
+
end
|
|
1245
|
+
end
|
|
1246
|
+
|
|
1247
|
+
# unit tests for providers_scim_groups_used_by_list
|
|
1248
|
+
# Get a list of all objects that use this object
|
|
1249
|
+
# @param id A UUID string identifying this scim provider group.
|
|
1250
|
+
# @param [Hash] opts the optional parameters
|
|
1251
|
+
# @return [Array<UsedBy>]
|
|
1252
|
+
describe 'providers_scim_groups_used_by_list test' do
|
|
1253
|
+
it 'should work' do
|
|
1254
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
1255
|
+
end
|
|
1256
|
+
end
|
|
1257
|
+
|
|
1258
|
+
# unit tests for providers_scim_list
|
|
1259
|
+
# SCIMProvider Viewset
|
|
1260
|
+
# @param [Hash] opts the optional parameters
|
|
1261
|
+
# @option opts [Boolean] :exclude_users_service_account
|
|
1262
|
+
# @option opts [String] :filter_group
|
|
1263
|
+
# @option opts [String] :name
|
|
1264
|
+
# @option opts [String] :ordering Which field to use when ordering the results.
|
|
1265
|
+
# @option opts [Integer] :page A page number within the paginated result set.
|
|
1266
|
+
# @option opts [Integer] :page_size Number of results to return per page.
|
|
1267
|
+
# @option opts [String] :search A search term.
|
|
1268
|
+
# @option opts [String] :url
|
|
1269
|
+
# @return [PaginatedSCIMProviderList]
|
|
1270
|
+
describe 'providers_scim_list test' do
|
|
1271
|
+
it 'should work' do
|
|
1272
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
1273
|
+
end
|
|
1274
|
+
end
|
|
1275
|
+
|
|
1276
|
+
# unit tests for providers_scim_partial_update
|
|
1277
|
+
# SCIMProvider Viewset
|
|
1278
|
+
# @param id A unique integer value identifying this SCIM Provider.
|
|
1279
|
+
# @param [Hash] opts the optional parameters
|
|
1280
|
+
# @option opts [PatchedSCIMProviderRequest] :patched_scim_provider_request
|
|
1281
|
+
# @return [SCIMProvider]
|
|
1282
|
+
describe 'providers_scim_partial_update test' do
|
|
1283
|
+
it 'should work' do
|
|
1284
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
1285
|
+
end
|
|
1286
|
+
end
|
|
1287
|
+
|
|
1288
|
+
# unit tests for providers_scim_retrieve
|
|
1289
|
+
# SCIMProvider Viewset
|
|
1290
|
+
# @param id A unique integer value identifying this SCIM Provider.
|
|
1291
|
+
# @param [Hash] opts the optional parameters
|
|
1292
|
+
# @return [SCIMProvider]
|
|
1293
|
+
describe 'providers_scim_retrieve test' do
|
|
1294
|
+
it 'should work' do
|
|
1295
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
1296
|
+
end
|
|
1297
|
+
end
|
|
1298
|
+
|
|
1299
|
+
# unit tests for providers_scim_sync_object_create
|
|
1300
|
+
# Sync/Re-sync a single user/group object
|
|
1301
|
+
# @param id A unique integer value identifying this SCIM Provider.
|
|
1302
|
+
# @param sync_object_request
|
|
1303
|
+
# @param [Hash] opts the optional parameters
|
|
1304
|
+
# @return [SyncObjectResult]
|
|
1305
|
+
describe 'providers_scim_sync_object_create test' do
|
|
1306
|
+
it 'should work' do
|
|
1307
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
1308
|
+
end
|
|
1309
|
+
end
|
|
1310
|
+
|
|
1311
|
+
# unit tests for providers_scim_sync_status_retrieve
|
|
1312
|
+
# Get provider's sync status
|
|
1313
|
+
# @param id A unique integer value identifying this SCIM Provider.
|
|
1314
|
+
# @param [Hash] opts the optional parameters
|
|
1315
|
+
# @return [SyncStatus]
|
|
1316
|
+
describe 'providers_scim_sync_status_retrieve test' do
|
|
1317
|
+
it 'should work' do
|
|
1318
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
1319
|
+
end
|
|
1320
|
+
end
|
|
1321
|
+
|
|
1322
|
+
# unit tests for providers_scim_update
|
|
1323
|
+
# SCIMProvider Viewset
|
|
1324
|
+
# @param id A unique integer value identifying this SCIM Provider.
|
|
1325
|
+
# @param scim_provider_request
|
|
1326
|
+
# @param [Hash] opts the optional parameters
|
|
1327
|
+
# @return [SCIMProvider]
|
|
1328
|
+
describe 'providers_scim_update test' do
|
|
1329
|
+
it 'should work' do
|
|
1330
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
1331
|
+
end
|
|
1332
|
+
end
|
|
1333
|
+
|
|
1334
|
+
# unit tests for providers_scim_used_by_list
|
|
1335
|
+
# Get a list of all objects that use this object
|
|
1336
|
+
# @param id A unique integer value identifying this SCIM Provider.
|
|
1337
|
+
# @param [Hash] opts the optional parameters
|
|
1338
|
+
# @return [Array<UsedBy>]
|
|
1339
|
+
describe 'providers_scim_used_by_list test' do
|
|
1340
|
+
it 'should work' do
|
|
1341
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
1342
|
+
end
|
|
1343
|
+
end
|
|
1344
|
+
|
|
1345
|
+
# unit tests for providers_scim_users_create
|
|
1346
|
+
# SCIMProviderUser Viewset
|
|
1347
|
+
# @param scim_provider_user_request
|
|
1348
|
+
# @param [Hash] opts the optional parameters
|
|
1349
|
+
# @return [SCIMProviderUser]
|
|
1350
|
+
describe 'providers_scim_users_create test' do
|
|
1351
|
+
it 'should work' do
|
|
1352
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
1353
|
+
end
|
|
1354
|
+
end
|
|
1355
|
+
|
|
1356
|
+
# unit tests for providers_scim_users_destroy
|
|
1357
|
+
# SCIMProviderUser Viewset
|
|
1358
|
+
# @param id A UUID string identifying this scim provider user.
|
|
1359
|
+
# @param [Hash] opts the optional parameters
|
|
1360
|
+
# @return [nil]
|
|
1361
|
+
describe 'providers_scim_users_destroy test' do
|
|
1362
|
+
it 'should work' do
|
|
1363
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
1364
|
+
end
|
|
1365
|
+
end
|
|
1366
|
+
|
|
1367
|
+
# unit tests for providers_scim_users_list
|
|
1368
|
+
# SCIMProviderUser Viewset
|
|
1369
|
+
# @param [Hash] opts the optional parameters
|
|
1370
|
+
# @option opts [String] :ordering Which field to use when ordering the results.
|
|
1371
|
+
# @option opts [Integer] :page A page number within the paginated result set.
|
|
1372
|
+
# @option opts [Integer] :page_size Number of results to return per page.
|
|
1373
|
+
# @option opts [Integer] :provider__id
|
|
1374
|
+
# @option opts [String] :search A search term.
|
|
1375
|
+
# @option opts [Integer] :user__id
|
|
1376
|
+
# @option opts [String] :user__username
|
|
1377
|
+
# @return [PaginatedSCIMProviderUserList]
|
|
1378
|
+
describe 'providers_scim_users_list test' do
|
|
1379
|
+
it 'should work' do
|
|
1380
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
1381
|
+
end
|
|
1382
|
+
end
|
|
1383
|
+
|
|
1384
|
+
# unit tests for providers_scim_users_retrieve
|
|
1385
|
+
# SCIMProviderUser Viewset
|
|
1386
|
+
# @param id A UUID string identifying this scim provider user.
|
|
1387
|
+
# @param [Hash] opts the optional parameters
|
|
1388
|
+
# @return [SCIMProviderUser]
|
|
1389
|
+
describe 'providers_scim_users_retrieve test' do
|
|
1390
|
+
it 'should work' do
|
|
1391
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
1392
|
+
end
|
|
1393
|
+
end
|
|
1394
|
+
|
|
1395
|
+
# unit tests for providers_scim_users_used_by_list
|
|
1396
|
+
# Get a list of all objects that use this object
|
|
1397
|
+
# @param id A UUID string identifying this scim provider user.
|
|
1398
|
+
# @param [Hash] opts the optional parameters
|
|
1399
|
+
# @return [Array<UsedBy>]
|
|
1400
|
+
describe 'providers_scim_users_used_by_list test' do
|
|
1401
|
+
it 'should work' do
|
|
1402
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
1403
|
+
end
|
|
1404
|
+
end
|
|
1405
|
+
|
|
1406
|
+
# unit tests for providers_ssf_create
|
|
1407
|
+
# SSFProvider Viewset
|
|
1408
|
+
# @param ssf_provider_request
|
|
1409
|
+
# @param [Hash] opts the optional parameters
|
|
1410
|
+
# @return [SSFProvider]
|
|
1411
|
+
describe 'providers_ssf_create test' do
|
|
1412
|
+
it 'should work' do
|
|
1413
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
1414
|
+
end
|
|
1415
|
+
end
|
|
1416
|
+
|
|
1417
|
+
# unit tests for providers_ssf_destroy
|
|
1418
|
+
# SSFProvider Viewset
|
|
1419
|
+
# @param id A unique integer value identifying this Shared Signals Framework Provider.
|
|
1420
|
+
# @param [Hash] opts the optional parameters
|
|
1421
|
+
# @return [nil]
|
|
1422
|
+
describe 'providers_ssf_destroy test' do
|
|
1423
|
+
it 'should work' do
|
|
1424
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
1425
|
+
end
|
|
1426
|
+
end
|
|
1427
|
+
|
|
1428
|
+
# unit tests for providers_ssf_list
|
|
1429
|
+
# SSFProvider Viewset
|
|
1430
|
+
# @param [Hash] opts the optional parameters
|
|
1431
|
+
# @option opts [Boolean] :application__isnull
|
|
1432
|
+
# @option opts [String] :name__iexact
|
|
1433
|
+
# @option opts [String] :ordering Which field to use when ordering the results.
|
|
1434
|
+
# @option opts [Integer] :page A page number within the paginated result set.
|
|
1435
|
+
# @option opts [Integer] :page_size Number of results to return per page.
|
|
1436
|
+
# @option opts [String] :search A search term.
|
|
1437
|
+
# @return [PaginatedSSFProviderList]
|
|
1438
|
+
describe 'providers_ssf_list test' do
|
|
1439
|
+
it 'should work' do
|
|
1440
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
1441
|
+
end
|
|
1442
|
+
end
|
|
1443
|
+
|
|
1444
|
+
# unit tests for providers_ssf_partial_update
|
|
1445
|
+
# SSFProvider Viewset
|
|
1446
|
+
# @param id A unique integer value identifying this Shared Signals Framework Provider.
|
|
1447
|
+
# @param [Hash] opts the optional parameters
|
|
1448
|
+
# @option opts [PatchedSSFProviderRequest] :patched_ssf_provider_request
|
|
1449
|
+
# @return [SSFProvider]
|
|
1450
|
+
describe 'providers_ssf_partial_update test' do
|
|
1451
|
+
it 'should work' do
|
|
1452
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
1453
|
+
end
|
|
1454
|
+
end
|
|
1455
|
+
|
|
1456
|
+
# unit tests for providers_ssf_retrieve
|
|
1457
|
+
# SSFProvider Viewset
|
|
1458
|
+
# @param id A unique integer value identifying this Shared Signals Framework Provider.
|
|
1459
|
+
# @param [Hash] opts the optional parameters
|
|
1460
|
+
# @return [SSFProvider]
|
|
1461
|
+
describe 'providers_ssf_retrieve test' do
|
|
1462
|
+
it 'should work' do
|
|
1463
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
1464
|
+
end
|
|
1465
|
+
end
|
|
1466
|
+
|
|
1467
|
+
# unit tests for providers_ssf_update
|
|
1468
|
+
# SSFProvider Viewset
|
|
1469
|
+
# @param id A unique integer value identifying this Shared Signals Framework Provider.
|
|
1470
|
+
# @param ssf_provider_request
|
|
1471
|
+
# @param [Hash] opts the optional parameters
|
|
1472
|
+
# @return [SSFProvider]
|
|
1473
|
+
describe 'providers_ssf_update test' do
|
|
1474
|
+
it 'should work' do
|
|
1475
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
1476
|
+
end
|
|
1477
|
+
end
|
|
1478
|
+
|
|
1479
|
+
# unit tests for providers_ssf_used_by_list
|
|
1480
|
+
# Get a list of all objects that use this object
|
|
1481
|
+
# @param id A unique integer value identifying this Shared Signals Framework Provider.
|
|
1482
|
+
# @param [Hash] opts the optional parameters
|
|
1483
|
+
# @return [Array<UsedBy>]
|
|
1484
|
+
describe 'providers_ssf_used_by_list test' do
|
|
1485
|
+
it 'should work' do
|
|
1486
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
1487
|
+
end
|
|
1488
|
+
end
|
|
1489
|
+
|
|
1490
|
+
end
|