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,2192 @@
|
|
|
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::SourcesApi
|
|
11
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
|
12
|
+
# Please update as you see appropriate
|
|
13
|
+
describe 'SourcesApi' do
|
|
14
|
+
before do
|
|
15
|
+
# run before each test
|
|
16
|
+
@api_instance = Authentik::Api::SourcesApi.new
|
|
17
|
+
end
|
|
18
|
+
|
|
19
|
+
after do
|
|
20
|
+
# run after each test
|
|
21
|
+
end
|
|
22
|
+
|
|
23
|
+
describe 'test an instance of SourcesApi' do
|
|
24
|
+
it 'should create an instance of SourcesApi' do
|
|
25
|
+
expect(@api_instance).to be_instance_of(Authentik::Api::SourcesApi)
|
|
26
|
+
end
|
|
27
|
+
end
|
|
28
|
+
|
|
29
|
+
# unit tests for sources_all_destroy
|
|
30
|
+
# Prevent deletion of built-in sources
|
|
31
|
+
# @param slug
|
|
32
|
+
# @param [Hash] opts the optional parameters
|
|
33
|
+
# @return [nil]
|
|
34
|
+
describe 'sources_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 sources_all_list
|
|
41
|
+
# Source Viewset
|
|
42
|
+
# @param [Hash] opts the optional parameters
|
|
43
|
+
# @option opts [String] :managed
|
|
44
|
+
# @option opts [String] :name
|
|
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] :pbm_uuid
|
|
49
|
+
# @option opts [String] :search A search term.
|
|
50
|
+
# @option opts [String] :slug
|
|
51
|
+
# @return [PaginatedSourceList]
|
|
52
|
+
describe 'sources_all_list test' do
|
|
53
|
+
it 'should work' do
|
|
54
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
55
|
+
end
|
|
56
|
+
end
|
|
57
|
+
|
|
58
|
+
# unit tests for sources_all_retrieve
|
|
59
|
+
# Source Viewset
|
|
60
|
+
# @param slug
|
|
61
|
+
# @param [Hash] opts the optional parameters
|
|
62
|
+
# @return [Source]
|
|
63
|
+
describe 'sources_all_retrieve test' do
|
|
64
|
+
it 'should work' do
|
|
65
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
66
|
+
end
|
|
67
|
+
end
|
|
68
|
+
|
|
69
|
+
# unit tests for sources_all_types_list
|
|
70
|
+
# Get all creatable types
|
|
71
|
+
# @param [Hash] opts the optional parameters
|
|
72
|
+
# @return [Array<TypeCreate>]
|
|
73
|
+
describe 'sources_all_types_list test' do
|
|
74
|
+
it 'should work' do
|
|
75
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
76
|
+
end
|
|
77
|
+
end
|
|
78
|
+
|
|
79
|
+
# unit tests for sources_all_used_by_list
|
|
80
|
+
# Get a list of all objects that use this object
|
|
81
|
+
# @param slug
|
|
82
|
+
# @param [Hash] opts the optional parameters
|
|
83
|
+
# @return [Array<UsedBy>]
|
|
84
|
+
describe 'sources_all_used_by_list test' do
|
|
85
|
+
it 'should work' do
|
|
86
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
87
|
+
end
|
|
88
|
+
end
|
|
89
|
+
|
|
90
|
+
# unit tests for sources_all_user_settings_list
|
|
91
|
+
# Get all sources the user can configure
|
|
92
|
+
# @param [Hash] opts the optional parameters
|
|
93
|
+
# @return [Array<UserSetting>]
|
|
94
|
+
describe 'sources_all_user_settings_list test' do
|
|
95
|
+
it 'should work' do
|
|
96
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
97
|
+
end
|
|
98
|
+
end
|
|
99
|
+
|
|
100
|
+
# unit tests for sources_group_connections_all_destroy
|
|
101
|
+
# Group-source connection Viewset
|
|
102
|
+
# @param id A unique integer value identifying this group source connection.
|
|
103
|
+
# @param [Hash] opts the optional parameters
|
|
104
|
+
# @return [nil]
|
|
105
|
+
describe 'sources_group_connections_all_destroy test' do
|
|
106
|
+
it 'should work' do
|
|
107
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
108
|
+
end
|
|
109
|
+
end
|
|
110
|
+
|
|
111
|
+
# unit tests for sources_group_connections_all_list
|
|
112
|
+
# Group-source connection Viewset
|
|
113
|
+
# @param [Hash] opts the optional parameters
|
|
114
|
+
# @option opts [String] :group
|
|
115
|
+
# @option opts [String] :ordering Which field to use when ordering the results.
|
|
116
|
+
# @option opts [Integer] :page A page number within the paginated result set.
|
|
117
|
+
# @option opts [Integer] :page_size Number of results to return per page.
|
|
118
|
+
# @option opts [String] :search A search term.
|
|
119
|
+
# @option opts [String] :source__slug
|
|
120
|
+
# @return [PaginatedGroupSourceConnectionList]
|
|
121
|
+
describe 'sources_group_connections_all_list test' do
|
|
122
|
+
it 'should work' do
|
|
123
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
124
|
+
end
|
|
125
|
+
end
|
|
126
|
+
|
|
127
|
+
# unit tests for sources_group_connections_all_partial_update
|
|
128
|
+
# Group-source connection Viewset
|
|
129
|
+
# @param id A unique integer value identifying this group source connection.
|
|
130
|
+
# @param [Hash] opts the optional parameters
|
|
131
|
+
# @option opts [PatchedGroupSourceConnectionRequest] :patched_group_source_connection_request
|
|
132
|
+
# @return [GroupSourceConnection]
|
|
133
|
+
describe 'sources_group_connections_all_partial_update test' do
|
|
134
|
+
it 'should work' do
|
|
135
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
136
|
+
end
|
|
137
|
+
end
|
|
138
|
+
|
|
139
|
+
# unit tests for sources_group_connections_all_retrieve
|
|
140
|
+
# Group-source connection Viewset
|
|
141
|
+
# @param id A unique integer value identifying this group source connection.
|
|
142
|
+
# @param [Hash] opts the optional parameters
|
|
143
|
+
# @return [GroupSourceConnection]
|
|
144
|
+
describe 'sources_group_connections_all_retrieve test' do
|
|
145
|
+
it 'should work' do
|
|
146
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
147
|
+
end
|
|
148
|
+
end
|
|
149
|
+
|
|
150
|
+
# unit tests for sources_group_connections_all_update
|
|
151
|
+
# Group-source connection Viewset
|
|
152
|
+
# @param id A unique integer value identifying this group source connection.
|
|
153
|
+
# @param group_source_connection_request
|
|
154
|
+
# @param [Hash] opts the optional parameters
|
|
155
|
+
# @return [GroupSourceConnection]
|
|
156
|
+
describe 'sources_group_connections_all_update test' do
|
|
157
|
+
it 'should work' do
|
|
158
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
159
|
+
end
|
|
160
|
+
end
|
|
161
|
+
|
|
162
|
+
# unit tests for sources_group_connections_all_used_by_list
|
|
163
|
+
# Get a list of all objects that use this object
|
|
164
|
+
# @param id A unique integer value identifying this group source connection.
|
|
165
|
+
# @param [Hash] opts the optional parameters
|
|
166
|
+
# @return [Array<UsedBy>]
|
|
167
|
+
describe 'sources_group_connections_all_used_by_list test' do
|
|
168
|
+
it 'should work' do
|
|
169
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
170
|
+
end
|
|
171
|
+
end
|
|
172
|
+
|
|
173
|
+
# unit tests for sources_group_connections_kerberos_create
|
|
174
|
+
# Group-source connection Viewset
|
|
175
|
+
# @param group_kerberos_source_connection_request
|
|
176
|
+
# @param [Hash] opts the optional parameters
|
|
177
|
+
# @return [GroupKerberosSourceConnection]
|
|
178
|
+
describe 'sources_group_connections_kerberos_create test' do
|
|
179
|
+
it 'should work' do
|
|
180
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
181
|
+
end
|
|
182
|
+
end
|
|
183
|
+
|
|
184
|
+
# unit tests for sources_group_connections_kerberos_destroy
|
|
185
|
+
# Group-source connection Viewset
|
|
186
|
+
# @param id A unique integer value identifying this Group Kerberos Source Connection.
|
|
187
|
+
# @param [Hash] opts the optional parameters
|
|
188
|
+
# @return [nil]
|
|
189
|
+
describe 'sources_group_connections_kerberos_destroy test' do
|
|
190
|
+
it 'should work' do
|
|
191
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
192
|
+
end
|
|
193
|
+
end
|
|
194
|
+
|
|
195
|
+
# unit tests for sources_group_connections_kerberos_list
|
|
196
|
+
# Group-source connection Viewset
|
|
197
|
+
# @param [Hash] opts the optional parameters
|
|
198
|
+
# @option opts [String] :group
|
|
199
|
+
# @option opts [String] :ordering Which field to use when ordering the results.
|
|
200
|
+
# @option opts [Integer] :page A page number within the paginated result set.
|
|
201
|
+
# @option opts [Integer] :page_size Number of results to return per page.
|
|
202
|
+
# @option opts [String] :search A search term.
|
|
203
|
+
# @option opts [String] :source__slug
|
|
204
|
+
# @return [PaginatedGroupKerberosSourceConnectionList]
|
|
205
|
+
describe 'sources_group_connections_kerberos_list test' do
|
|
206
|
+
it 'should work' do
|
|
207
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
208
|
+
end
|
|
209
|
+
end
|
|
210
|
+
|
|
211
|
+
# unit tests for sources_group_connections_kerberos_partial_update
|
|
212
|
+
# Group-source connection Viewset
|
|
213
|
+
# @param id A unique integer value identifying this Group Kerberos Source Connection.
|
|
214
|
+
# @param [Hash] opts the optional parameters
|
|
215
|
+
# @option opts [PatchedGroupKerberosSourceConnectionRequest] :patched_group_kerberos_source_connection_request
|
|
216
|
+
# @return [GroupKerberosSourceConnection]
|
|
217
|
+
describe 'sources_group_connections_kerberos_partial_update test' do
|
|
218
|
+
it 'should work' do
|
|
219
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
220
|
+
end
|
|
221
|
+
end
|
|
222
|
+
|
|
223
|
+
# unit tests for sources_group_connections_kerberos_retrieve
|
|
224
|
+
# Group-source connection Viewset
|
|
225
|
+
# @param id A unique integer value identifying this Group Kerberos Source Connection.
|
|
226
|
+
# @param [Hash] opts the optional parameters
|
|
227
|
+
# @return [GroupKerberosSourceConnection]
|
|
228
|
+
describe 'sources_group_connections_kerberos_retrieve test' do
|
|
229
|
+
it 'should work' do
|
|
230
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
231
|
+
end
|
|
232
|
+
end
|
|
233
|
+
|
|
234
|
+
# unit tests for sources_group_connections_kerberos_update
|
|
235
|
+
# Group-source connection Viewset
|
|
236
|
+
# @param id A unique integer value identifying this Group Kerberos Source Connection.
|
|
237
|
+
# @param group_kerberos_source_connection_request
|
|
238
|
+
# @param [Hash] opts the optional parameters
|
|
239
|
+
# @return [GroupKerberosSourceConnection]
|
|
240
|
+
describe 'sources_group_connections_kerberos_update test' do
|
|
241
|
+
it 'should work' do
|
|
242
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
243
|
+
end
|
|
244
|
+
end
|
|
245
|
+
|
|
246
|
+
# unit tests for sources_group_connections_kerberos_used_by_list
|
|
247
|
+
# Get a list of all objects that use this object
|
|
248
|
+
# @param id A unique integer value identifying this Group Kerberos Source Connection.
|
|
249
|
+
# @param [Hash] opts the optional parameters
|
|
250
|
+
# @return [Array<UsedBy>]
|
|
251
|
+
describe 'sources_group_connections_kerberos_used_by_list test' do
|
|
252
|
+
it 'should work' do
|
|
253
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
254
|
+
end
|
|
255
|
+
end
|
|
256
|
+
|
|
257
|
+
# unit tests for sources_group_connections_ldap_create
|
|
258
|
+
# Group-source connection Viewset
|
|
259
|
+
# @param group_ldap_source_connection_request
|
|
260
|
+
# @param [Hash] opts the optional parameters
|
|
261
|
+
# @return [GroupLDAPSourceConnection]
|
|
262
|
+
describe 'sources_group_connections_ldap_create test' do
|
|
263
|
+
it 'should work' do
|
|
264
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
265
|
+
end
|
|
266
|
+
end
|
|
267
|
+
|
|
268
|
+
# unit tests for sources_group_connections_ldap_destroy
|
|
269
|
+
# Group-source connection Viewset
|
|
270
|
+
# @param id A unique integer value identifying this Group LDAP Source Connection.
|
|
271
|
+
# @param [Hash] opts the optional parameters
|
|
272
|
+
# @return [nil]
|
|
273
|
+
describe 'sources_group_connections_ldap_destroy test' do
|
|
274
|
+
it 'should work' do
|
|
275
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
276
|
+
end
|
|
277
|
+
end
|
|
278
|
+
|
|
279
|
+
# unit tests for sources_group_connections_ldap_list
|
|
280
|
+
# Group-source connection Viewset
|
|
281
|
+
# @param [Hash] opts the optional parameters
|
|
282
|
+
# @option opts [String] :group
|
|
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 [String] :search A search term.
|
|
287
|
+
# @option opts [String] :source__slug
|
|
288
|
+
# @return [PaginatedGroupLDAPSourceConnectionList]
|
|
289
|
+
describe 'sources_group_connections_ldap_list test' do
|
|
290
|
+
it 'should work' do
|
|
291
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
292
|
+
end
|
|
293
|
+
end
|
|
294
|
+
|
|
295
|
+
# unit tests for sources_group_connections_ldap_partial_update
|
|
296
|
+
# Group-source connection Viewset
|
|
297
|
+
# @param id A unique integer value identifying this Group LDAP Source Connection.
|
|
298
|
+
# @param [Hash] opts the optional parameters
|
|
299
|
+
# @option opts [PatchedGroupLDAPSourceConnectionRequest] :patched_group_ldap_source_connection_request
|
|
300
|
+
# @return [GroupLDAPSourceConnection]
|
|
301
|
+
describe 'sources_group_connections_ldap_partial_update test' do
|
|
302
|
+
it 'should work' do
|
|
303
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
304
|
+
end
|
|
305
|
+
end
|
|
306
|
+
|
|
307
|
+
# unit tests for sources_group_connections_ldap_retrieve
|
|
308
|
+
# Group-source connection Viewset
|
|
309
|
+
# @param id A unique integer value identifying this Group LDAP Source Connection.
|
|
310
|
+
# @param [Hash] opts the optional parameters
|
|
311
|
+
# @return [GroupLDAPSourceConnection]
|
|
312
|
+
describe 'sources_group_connections_ldap_retrieve test' do
|
|
313
|
+
it 'should work' do
|
|
314
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
315
|
+
end
|
|
316
|
+
end
|
|
317
|
+
|
|
318
|
+
# unit tests for sources_group_connections_ldap_update
|
|
319
|
+
# Group-source connection Viewset
|
|
320
|
+
# @param id A unique integer value identifying this Group LDAP Source Connection.
|
|
321
|
+
# @param group_ldap_source_connection_request
|
|
322
|
+
# @param [Hash] opts the optional parameters
|
|
323
|
+
# @return [GroupLDAPSourceConnection]
|
|
324
|
+
describe 'sources_group_connections_ldap_update 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 sources_group_connections_ldap_used_by_list
|
|
331
|
+
# Get a list of all objects that use this object
|
|
332
|
+
# @param id A unique integer value identifying this Group LDAP Source Connection.
|
|
333
|
+
# @param [Hash] opts the optional parameters
|
|
334
|
+
# @return [Array<UsedBy>]
|
|
335
|
+
describe 'sources_group_connections_ldap_used_by_list 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 sources_group_connections_oauth_create
|
|
342
|
+
# Group-source connection Viewset
|
|
343
|
+
# @param group_o_auth_source_connection_request
|
|
344
|
+
# @param [Hash] opts the optional parameters
|
|
345
|
+
# @return [GroupOAuthSourceConnection]
|
|
346
|
+
describe 'sources_group_connections_oauth_create test' do
|
|
347
|
+
it 'should work' do
|
|
348
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
349
|
+
end
|
|
350
|
+
end
|
|
351
|
+
|
|
352
|
+
# unit tests for sources_group_connections_oauth_destroy
|
|
353
|
+
# Group-source connection Viewset
|
|
354
|
+
# @param id A unique integer value identifying this Group OAuth Source Connection.
|
|
355
|
+
# @param [Hash] opts the optional parameters
|
|
356
|
+
# @return [nil]
|
|
357
|
+
describe 'sources_group_connections_oauth_destroy test' do
|
|
358
|
+
it 'should work' do
|
|
359
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
360
|
+
end
|
|
361
|
+
end
|
|
362
|
+
|
|
363
|
+
# unit tests for sources_group_connections_oauth_list
|
|
364
|
+
# Group-source connection Viewset
|
|
365
|
+
# @param [Hash] opts the optional parameters
|
|
366
|
+
# @option opts [String] :group
|
|
367
|
+
# @option opts [String] :ordering Which field to use when ordering the results.
|
|
368
|
+
# @option opts [Integer] :page A page number within the paginated result set.
|
|
369
|
+
# @option opts [Integer] :page_size Number of results to return per page.
|
|
370
|
+
# @option opts [String] :search A search term.
|
|
371
|
+
# @option opts [String] :source__slug
|
|
372
|
+
# @return [PaginatedGroupOAuthSourceConnectionList]
|
|
373
|
+
describe 'sources_group_connections_oauth_list test' do
|
|
374
|
+
it 'should work' do
|
|
375
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
376
|
+
end
|
|
377
|
+
end
|
|
378
|
+
|
|
379
|
+
# unit tests for sources_group_connections_oauth_partial_update
|
|
380
|
+
# Group-source connection Viewset
|
|
381
|
+
# @param id A unique integer value identifying this Group OAuth Source Connection.
|
|
382
|
+
# @param [Hash] opts the optional parameters
|
|
383
|
+
# @option opts [PatchedGroupOAuthSourceConnectionRequest] :patched_group_o_auth_source_connection_request
|
|
384
|
+
# @return [GroupOAuthSourceConnection]
|
|
385
|
+
describe 'sources_group_connections_oauth_partial_update test' do
|
|
386
|
+
it 'should work' do
|
|
387
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
388
|
+
end
|
|
389
|
+
end
|
|
390
|
+
|
|
391
|
+
# unit tests for sources_group_connections_oauth_retrieve
|
|
392
|
+
# Group-source connection Viewset
|
|
393
|
+
# @param id A unique integer value identifying this Group OAuth Source Connection.
|
|
394
|
+
# @param [Hash] opts the optional parameters
|
|
395
|
+
# @return [GroupOAuthSourceConnection]
|
|
396
|
+
describe 'sources_group_connections_oauth_retrieve test' do
|
|
397
|
+
it 'should work' do
|
|
398
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
399
|
+
end
|
|
400
|
+
end
|
|
401
|
+
|
|
402
|
+
# unit tests for sources_group_connections_oauth_update
|
|
403
|
+
# Group-source connection Viewset
|
|
404
|
+
# @param id A unique integer value identifying this Group OAuth Source Connection.
|
|
405
|
+
# @param group_o_auth_source_connection_request
|
|
406
|
+
# @param [Hash] opts the optional parameters
|
|
407
|
+
# @return [GroupOAuthSourceConnection]
|
|
408
|
+
describe 'sources_group_connections_oauth_update test' do
|
|
409
|
+
it 'should work' do
|
|
410
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
411
|
+
end
|
|
412
|
+
end
|
|
413
|
+
|
|
414
|
+
# unit tests for sources_group_connections_oauth_used_by_list
|
|
415
|
+
# Get a list of all objects that use this object
|
|
416
|
+
# @param id A unique integer value identifying this Group OAuth Source Connection.
|
|
417
|
+
# @param [Hash] opts the optional parameters
|
|
418
|
+
# @return [Array<UsedBy>]
|
|
419
|
+
describe 'sources_group_connections_oauth_used_by_list test' do
|
|
420
|
+
it 'should work' do
|
|
421
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
422
|
+
end
|
|
423
|
+
end
|
|
424
|
+
|
|
425
|
+
# unit tests for sources_group_connections_plex_create
|
|
426
|
+
# Group-source connection Viewset
|
|
427
|
+
# @param group_plex_source_connection_request
|
|
428
|
+
# @param [Hash] opts the optional parameters
|
|
429
|
+
# @return [GroupPlexSourceConnection]
|
|
430
|
+
describe 'sources_group_connections_plex_create test' do
|
|
431
|
+
it 'should work' do
|
|
432
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
433
|
+
end
|
|
434
|
+
end
|
|
435
|
+
|
|
436
|
+
# unit tests for sources_group_connections_plex_destroy
|
|
437
|
+
# Group-source connection Viewset
|
|
438
|
+
# @param id A unique integer value identifying this Group Plex Source Connection.
|
|
439
|
+
# @param [Hash] opts the optional parameters
|
|
440
|
+
# @return [nil]
|
|
441
|
+
describe 'sources_group_connections_plex_destroy test' do
|
|
442
|
+
it 'should work' do
|
|
443
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
444
|
+
end
|
|
445
|
+
end
|
|
446
|
+
|
|
447
|
+
# unit tests for sources_group_connections_plex_list
|
|
448
|
+
# Group-source connection Viewset
|
|
449
|
+
# @param [Hash] opts the optional parameters
|
|
450
|
+
# @option opts [String] :group
|
|
451
|
+
# @option opts [String] :ordering Which field to use when ordering the results.
|
|
452
|
+
# @option opts [Integer] :page A page number within the paginated result set.
|
|
453
|
+
# @option opts [Integer] :page_size Number of results to return per page.
|
|
454
|
+
# @option opts [String] :search A search term.
|
|
455
|
+
# @option opts [String] :source__slug
|
|
456
|
+
# @return [PaginatedGroupPlexSourceConnectionList]
|
|
457
|
+
describe 'sources_group_connections_plex_list test' do
|
|
458
|
+
it 'should work' do
|
|
459
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
460
|
+
end
|
|
461
|
+
end
|
|
462
|
+
|
|
463
|
+
# unit tests for sources_group_connections_plex_partial_update
|
|
464
|
+
# Group-source connection Viewset
|
|
465
|
+
# @param id A unique integer value identifying this Group Plex Source Connection.
|
|
466
|
+
# @param [Hash] opts the optional parameters
|
|
467
|
+
# @option opts [PatchedGroupPlexSourceConnectionRequest] :patched_group_plex_source_connection_request
|
|
468
|
+
# @return [GroupPlexSourceConnection]
|
|
469
|
+
describe 'sources_group_connections_plex_partial_update test' do
|
|
470
|
+
it 'should work' do
|
|
471
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
472
|
+
end
|
|
473
|
+
end
|
|
474
|
+
|
|
475
|
+
# unit tests for sources_group_connections_plex_retrieve
|
|
476
|
+
# Group-source connection Viewset
|
|
477
|
+
# @param id A unique integer value identifying this Group Plex Source Connection.
|
|
478
|
+
# @param [Hash] opts the optional parameters
|
|
479
|
+
# @return [GroupPlexSourceConnection]
|
|
480
|
+
describe 'sources_group_connections_plex_retrieve test' do
|
|
481
|
+
it 'should work' do
|
|
482
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
483
|
+
end
|
|
484
|
+
end
|
|
485
|
+
|
|
486
|
+
# unit tests for sources_group_connections_plex_update
|
|
487
|
+
# Group-source connection Viewset
|
|
488
|
+
# @param id A unique integer value identifying this Group Plex Source Connection.
|
|
489
|
+
# @param group_plex_source_connection_request
|
|
490
|
+
# @param [Hash] opts the optional parameters
|
|
491
|
+
# @return [GroupPlexSourceConnection]
|
|
492
|
+
describe 'sources_group_connections_plex_update test' do
|
|
493
|
+
it 'should work' do
|
|
494
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
495
|
+
end
|
|
496
|
+
end
|
|
497
|
+
|
|
498
|
+
# unit tests for sources_group_connections_plex_used_by_list
|
|
499
|
+
# Get a list of all objects that use this object
|
|
500
|
+
# @param id A unique integer value identifying this Group Plex Source Connection.
|
|
501
|
+
# @param [Hash] opts the optional parameters
|
|
502
|
+
# @return [Array<UsedBy>]
|
|
503
|
+
describe 'sources_group_connections_plex_used_by_list test' do
|
|
504
|
+
it 'should work' do
|
|
505
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
506
|
+
end
|
|
507
|
+
end
|
|
508
|
+
|
|
509
|
+
# unit tests for sources_group_connections_saml_create
|
|
510
|
+
# Group-source connection Viewset
|
|
511
|
+
# @param group_saml_source_connection_request
|
|
512
|
+
# @param [Hash] opts the optional parameters
|
|
513
|
+
# @return [GroupSAMLSourceConnection]
|
|
514
|
+
describe 'sources_group_connections_saml_create test' do
|
|
515
|
+
it 'should work' do
|
|
516
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
517
|
+
end
|
|
518
|
+
end
|
|
519
|
+
|
|
520
|
+
# unit tests for sources_group_connections_saml_destroy
|
|
521
|
+
# Group-source connection Viewset
|
|
522
|
+
# @param id A unique integer value identifying this Group SAML Source Connection.
|
|
523
|
+
# @param [Hash] opts the optional parameters
|
|
524
|
+
# @return [nil]
|
|
525
|
+
describe 'sources_group_connections_saml_destroy test' do
|
|
526
|
+
it 'should work' do
|
|
527
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
528
|
+
end
|
|
529
|
+
end
|
|
530
|
+
|
|
531
|
+
# unit tests for sources_group_connections_saml_list
|
|
532
|
+
# Group-source connection Viewset
|
|
533
|
+
# @param [Hash] opts the optional parameters
|
|
534
|
+
# @option opts [String] :group
|
|
535
|
+
# @option opts [String] :ordering Which field to use when ordering the results.
|
|
536
|
+
# @option opts [Integer] :page A page number within the paginated result set.
|
|
537
|
+
# @option opts [Integer] :page_size Number of results to return per page.
|
|
538
|
+
# @option opts [String] :search A search term.
|
|
539
|
+
# @option opts [String] :source__slug
|
|
540
|
+
# @return [PaginatedGroupSAMLSourceConnectionList]
|
|
541
|
+
describe 'sources_group_connections_saml_list test' do
|
|
542
|
+
it 'should work' do
|
|
543
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
544
|
+
end
|
|
545
|
+
end
|
|
546
|
+
|
|
547
|
+
# unit tests for sources_group_connections_saml_partial_update
|
|
548
|
+
# Group-source connection Viewset
|
|
549
|
+
# @param id A unique integer value identifying this Group SAML Source Connection.
|
|
550
|
+
# @param [Hash] opts the optional parameters
|
|
551
|
+
# @option opts [PatchedGroupSAMLSourceConnectionRequest] :patched_group_saml_source_connection_request
|
|
552
|
+
# @return [GroupSAMLSourceConnection]
|
|
553
|
+
describe 'sources_group_connections_saml_partial_update test' do
|
|
554
|
+
it 'should work' do
|
|
555
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
556
|
+
end
|
|
557
|
+
end
|
|
558
|
+
|
|
559
|
+
# unit tests for sources_group_connections_saml_retrieve
|
|
560
|
+
# Group-source connection Viewset
|
|
561
|
+
# @param id A unique integer value identifying this Group SAML Source Connection.
|
|
562
|
+
# @param [Hash] opts the optional parameters
|
|
563
|
+
# @return [GroupSAMLSourceConnection]
|
|
564
|
+
describe 'sources_group_connections_saml_retrieve test' do
|
|
565
|
+
it 'should work' do
|
|
566
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
567
|
+
end
|
|
568
|
+
end
|
|
569
|
+
|
|
570
|
+
# unit tests for sources_group_connections_saml_update
|
|
571
|
+
# Group-source connection Viewset
|
|
572
|
+
# @param id A unique integer value identifying this Group SAML Source Connection.
|
|
573
|
+
# @param group_saml_source_connection_request
|
|
574
|
+
# @param [Hash] opts the optional parameters
|
|
575
|
+
# @return [GroupSAMLSourceConnection]
|
|
576
|
+
describe 'sources_group_connections_saml_update test' do
|
|
577
|
+
it 'should work' do
|
|
578
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
579
|
+
end
|
|
580
|
+
end
|
|
581
|
+
|
|
582
|
+
# unit tests for sources_group_connections_saml_used_by_list
|
|
583
|
+
# Get a list of all objects that use this object
|
|
584
|
+
# @param id A unique integer value identifying this Group SAML Source Connection.
|
|
585
|
+
# @param [Hash] opts the optional parameters
|
|
586
|
+
# @return [Array<UsedBy>]
|
|
587
|
+
describe 'sources_group_connections_saml_used_by_list test' do
|
|
588
|
+
it 'should work' do
|
|
589
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
590
|
+
end
|
|
591
|
+
end
|
|
592
|
+
|
|
593
|
+
# unit tests for sources_group_connections_telegram_create
|
|
594
|
+
# Group-source connection Viewset
|
|
595
|
+
# @param group_telegram_source_connection_request
|
|
596
|
+
# @param [Hash] opts the optional parameters
|
|
597
|
+
# @return [GroupTelegramSourceConnection]
|
|
598
|
+
describe 'sources_group_connections_telegram_create test' do
|
|
599
|
+
it 'should work' do
|
|
600
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
601
|
+
end
|
|
602
|
+
end
|
|
603
|
+
|
|
604
|
+
# unit tests for sources_group_connections_telegram_destroy
|
|
605
|
+
# Group-source connection Viewset
|
|
606
|
+
# @param id A unique integer value identifying this Group Telegram Source Connection.
|
|
607
|
+
# @param [Hash] opts the optional parameters
|
|
608
|
+
# @return [nil]
|
|
609
|
+
describe 'sources_group_connections_telegram_destroy test' do
|
|
610
|
+
it 'should work' do
|
|
611
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
612
|
+
end
|
|
613
|
+
end
|
|
614
|
+
|
|
615
|
+
# unit tests for sources_group_connections_telegram_list
|
|
616
|
+
# Group-source connection Viewset
|
|
617
|
+
# @param [Hash] opts the optional parameters
|
|
618
|
+
# @option opts [String] :group
|
|
619
|
+
# @option opts [String] :ordering Which field to use when ordering the results.
|
|
620
|
+
# @option opts [Integer] :page A page number within the paginated result set.
|
|
621
|
+
# @option opts [Integer] :page_size Number of results to return per page.
|
|
622
|
+
# @option opts [String] :search A search term.
|
|
623
|
+
# @option opts [String] :source__slug
|
|
624
|
+
# @return [PaginatedGroupTelegramSourceConnectionList]
|
|
625
|
+
describe 'sources_group_connections_telegram_list test' do
|
|
626
|
+
it 'should work' do
|
|
627
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
628
|
+
end
|
|
629
|
+
end
|
|
630
|
+
|
|
631
|
+
# unit tests for sources_group_connections_telegram_partial_update
|
|
632
|
+
# Group-source connection Viewset
|
|
633
|
+
# @param id A unique integer value identifying this Group Telegram Source Connection.
|
|
634
|
+
# @param [Hash] opts the optional parameters
|
|
635
|
+
# @option opts [PatchedGroupTelegramSourceConnectionRequest] :patched_group_telegram_source_connection_request
|
|
636
|
+
# @return [GroupTelegramSourceConnection]
|
|
637
|
+
describe 'sources_group_connections_telegram_partial_update test' do
|
|
638
|
+
it 'should work' do
|
|
639
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
640
|
+
end
|
|
641
|
+
end
|
|
642
|
+
|
|
643
|
+
# unit tests for sources_group_connections_telegram_retrieve
|
|
644
|
+
# Group-source connection Viewset
|
|
645
|
+
# @param id A unique integer value identifying this Group Telegram Source Connection.
|
|
646
|
+
# @param [Hash] opts the optional parameters
|
|
647
|
+
# @return [GroupTelegramSourceConnection]
|
|
648
|
+
describe 'sources_group_connections_telegram_retrieve test' do
|
|
649
|
+
it 'should work' do
|
|
650
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
651
|
+
end
|
|
652
|
+
end
|
|
653
|
+
|
|
654
|
+
# unit tests for sources_group_connections_telegram_update
|
|
655
|
+
# Group-source connection Viewset
|
|
656
|
+
# @param id A unique integer value identifying this Group Telegram Source Connection.
|
|
657
|
+
# @param group_telegram_source_connection_request
|
|
658
|
+
# @param [Hash] opts the optional parameters
|
|
659
|
+
# @return [GroupTelegramSourceConnection]
|
|
660
|
+
describe 'sources_group_connections_telegram_update test' do
|
|
661
|
+
it 'should work' do
|
|
662
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
663
|
+
end
|
|
664
|
+
end
|
|
665
|
+
|
|
666
|
+
# unit tests for sources_group_connections_telegram_used_by_list
|
|
667
|
+
# Get a list of all objects that use this object
|
|
668
|
+
# @param id A unique integer value identifying this Group Telegram Source Connection.
|
|
669
|
+
# @param [Hash] opts the optional parameters
|
|
670
|
+
# @return [Array<UsedBy>]
|
|
671
|
+
describe 'sources_group_connections_telegram_used_by_list test' do
|
|
672
|
+
it 'should work' do
|
|
673
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
674
|
+
end
|
|
675
|
+
end
|
|
676
|
+
|
|
677
|
+
# unit tests for sources_kerberos_create
|
|
678
|
+
# Kerberos Source Viewset
|
|
679
|
+
# @param kerberos_source_request
|
|
680
|
+
# @param [Hash] opts the optional parameters
|
|
681
|
+
# @return [KerberosSource]
|
|
682
|
+
describe 'sources_kerberos_create test' do
|
|
683
|
+
it 'should work' do
|
|
684
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
685
|
+
end
|
|
686
|
+
end
|
|
687
|
+
|
|
688
|
+
# unit tests for sources_kerberos_destroy
|
|
689
|
+
# Kerberos Source Viewset
|
|
690
|
+
# @param slug
|
|
691
|
+
# @param [Hash] opts the optional parameters
|
|
692
|
+
# @return [nil]
|
|
693
|
+
describe 'sources_kerberos_destroy test' do
|
|
694
|
+
it 'should work' do
|
|
695
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
696
|
+
end
|
|
697
|
+
end
|
|
698
|
+
|
|
699
|
+
# unit tests for sources_kerberos_list
|
|
700
|
+
# Kerberos Source Viewset
|
|
701
|
+
# @param [Hash] opts the optional parameters
|
|
702
|
+
# @option opts [Boolean] :enabled
|
|
703
|
+
# @option opts [String] :kadmin_type KAdmin server type
|
|
704
|
+
# @option opts [String] :name
|
|
705
|
+
# @option opts [String] :ordering Which field to use when ordering the results.
|
|
706
|
+
# @option opts [Integer] :page A page number within the paginated result set.
|
|
707
|
+
# @option opts [Integer] :page_size Number of results to return per page.
|
|
708
|
+
# @option opts [Boolean] :password_login_update_internal_password
|
|
709
|
+
# @option opts [String] :pbm_uuid
|
|
710
|
+
# @option opts [String] :realm
|
|
711
|
+
# @option opts [String] :search A search term.
|
|
712
|
+
# @option opts [String] :slug
|
|
713
|
+
# @option opts [String] :spnego_server_name
|
|
714
|
+
# @option opts [String] :sync_principal
|
|
715
|
+
# @option opts [Boolean] :sync_users
|
|
716
|
+
# @option opts [Boolean] :sync_users_password
|
|
717
|
+
# @return [PaginatedKerberosSourceList]
|
|
718
|
+
describe 'sources_kerberos_list 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 sources_kerberos_partial_update
|
|
725
|
+
# Kerberos Source Viewset
|
|
726
|
+
# @param slug
|
|
727
|
+
# @param [Hash] opts the optional parameters
|
|
728
|
+
# @option opts [PatchedKerberosSourceRequest] :patched_kerberos_source_request
|
|
729
|
+
# @return [KerberosSource]
|
|
730
|
+
describe 'sources_kerberos_partial_update test' do
|
|
731
|
+
it 'should work' do
|
|
732
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
733
|
+
end
|
|
734
|
+
end
|
|
735
|
+
|
|
736
|
+
# unit tests for sources_kerberos_retrieve
|
|
737
|
+
# Kerberos Source Viewset
|
|
738
|
+
# @param slug
|
|
739
|
+
# @param [Hash] opts the optional parameters
|
|
740
|
+
# @return [KerberosSource]
|
|
741
|
+
describe 'sources_kerberos_retrieve 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 sources_kerberos_sync_status_retrieve
|
|
748
|
+
# Get provider's sync status
|
|
749
|
+
# @param slug
|
|
750
|
+
# @param [Hash] opts the optional parameters
|
|
751
|
+
# @return [SyncStatus]
|
|
752
|
+
describe 'sources_kerberos_sync_status_retrieve 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 sources_kerberos_update
|
|
759
|
+
# Kerberos Source Viewset
|
|
760
|
+
# @param slug
|
|
761
|
+
# @param kerberos_source_request
|
|
762
|
+
# @param [Hash] opts the optional parameters
|
|
763
|
+
# @return [KerberosSource]
|
|
764
|
+
describe 'sources_kerberos_update test' do
|
|
765
|
+
it 'should work' do
|
|
766
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
767
|
+
end
|
|
768
|
+
end
|
|
769
|
+
|
|
770
|
+
# unit tests for sources_kerberos_used_by_list
|
|
771
|
+
# Get a list of all objects that use this object
|
|
772
|
+
# @param slug
|
|
773
|
+
# @param [Hash] opts the optional parameters
|
|
774
|
+
# @return [Array<UsedBy>]
|
|
775
|
+
describe 'sources_kerberos_used_by_list test' do
|
|
776
|
+
it 'should work' do
|
|
777
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
778
|
+
end
|
|
779
|
+
end
|
|
780
|
+
|
|
781
|
+
# unit tests for sources_ldap_create
|
|
782
|
+
# LDAP Source Viewset
|
|
783
|
+
# @param ldap_source_request
|
|
784
|
+
# @param [Hash] opts the optional parameters
|
|
785
|
+
# @return [LDAPSource]
|
|
786
|
+
describe 'sources_ldap_create test' do
|
|
787
|
+
it 'should work' do
|
|
788
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
789
|
+
end
|
|
790
|
+
end
|
|
791
|
+
|
|
792
|
+
# unit tests for sources_ldap_debug_retrieve
|
|
793
|
+
# Get raw LDAP data to debug
|
|
794
|
+
# @param slug
|
|
795
|
+
# @param [Hash] opts the optional parameters
|
|
796
|
+
# @return [LDAPDebug]
|
|
797
|
+
describe 'sources_ldap_debug_retrieve test' do
|
|
798
|
+
it 'should work' do
|
|
799
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
800
|
+
end
|
|
801
|
+
end
|
|
802
|
+
|
|
803
|
+
# unit tests for sources_ldap_destroy
|
|
804
|
+
# LDAP Source Viewset
|
|
805
|
+
# @param slug
|
|
806
|
+
# @param [Hash] opts the optional parameters
|
|
807
|
+
# @return [nil]
|
|
808
|
+
describe 'sources_ldap_destroy test' do
|
|
809
|
+
it 'should work' do
|
|
810
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
811
|
+
end
|
|
812
|
+
end
|
|
813
|
+
|
|
814
|
+
# unit tests for sources_ldap_list
|
|
815
|
+
# LDAP Source Viewset
|
|
816
|
+
# @param [Hash] opts the optional parameters
|
|
817
|
+
# @option opts [String] :additional_group_dn
|
|
818
|
+
# @option opts [String] :additional_user_dn
|
|
819
|
+
# @option opts [String] :base_dn
|
|
820
|
+
# @option opts [String] :bind_cn
|
|
821
|
+
# @option opts [String] :client_certificate
|
|
822
|
+
# @option opts [Boolean] :delete_not_found_objects
|
|
823
|
+
# @option opts [Boolean] :enabled
|
|
824
|
+
# @option opts [String] :group_membership_field
|
|
825
|
+
# @option opts [String] :group_object_filter
|
|
826
|
+
# @option opts [Array<String>] :group_property_mappings
|
|
827
|
+
# @option opts [Boolean] :lookup_groups_from_user
|
|
828
|
+
# @option opts [String] :name
|
|
829
|
+
# @option opts [String] :object_uniqueness_field
|
|
830
|
+
# @option opts [String] :ordering Which field to use when ordering the results.
|
|
831
|
+
# @option opts [Integer] :page A page number within the paginated result set.
|
|
832
|
+
# @option opts [Integer] :page_size Number of results to return per page.
|
|
833
|
+
# @option opts [Boolean] :password_login_update_internal_password
|
|
834
|
+
# @option opts [String] :pbm_uuid
|
|
835
|
+
# @option opts [String] :peer_certificate
|
|
836
|
+
# @option opts [String] :search A search term.
|
|
837
|
+
# @option opts [String] :server_uri
|
|
838
|
+
# @option opts [String] :slug
|
|
839
|
+
# @option opts [Boolean] :sni
|
|
840
|
+
# @option opts [Boolean] :start_tls
|
|
841
|
+
# @option opts [Boolean] :sync_groups
|
|
842
|
+
# @option opts [String] :sync_parent_group
|
|
843
|
+
# @option opts [Boolean] :sync_users
|
|
844
|
+
# @option opts [Boolean] :sync_users_password
|
|
845
|
+
# @option opts [String] :user_membership_attribute
|
|
846
|
+
# @option opts [String] :user_object_filter
|
|
847
|
+
# @option opts [Array<String>] :user_property_mappings
|
|
848
|
+
# @return [PaginatedLDAPSourceList]
|
|
849
|
+
describe 'sources_ldap_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 sources_ldap_partial_update
|
|
856
|
+
# LDAP Source Viewset
|
|
857
|
+
# @param slug
|
|
858
|
+
# @param [Hash] opts the optional parameters
|
|
859
|
+
# @option opts [PatchedLDAPSourceRequest] :patched_ldap_source_request
|
|
860
|
+
# @return [LDAPSource]
|
|
861
|
+
describe 'sources_ldap_partial_update test' do
|
|
862
|
+
it 'should work' do
|
|
863
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
864
|
+
end
|
|
865
|
+
end
|
|
866
|
+
|
|
867
|
+
# unit tests for sources_ldap_retrieve
|
|
868
|
+
# LDAP Source Viewset
|
|
869
|
+
# @param slug
|
|
870
|
+
# @param [Hash] opts the optional parameters
|
|
871
|
+
# @return [LDAPSource]
|
|
872
|
+
describe 'sources_ldap_retrieve test' do
|
|
873
|
+
it 'should work' do
|
|
874
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
875
|
+
end
|
|
876
|
+
end
|
|
877
|
+
|
|
878
|
+
# unit tests for sources_ldap_sync_status_retrieve
|
|
879
|
+
# Get provider's sync status
|
|
880
|
+
# @param slug
|
|
881
|
+
# @param [Hash] opts the optional parameters
|
|
882
|
+
# @return [SyncStatus]
|
|
883
|
+
describe 'sources_ldap_sync_status_retrieve test' do
|
|
884
|
+
it 'should work' do
|
|
885
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
886
|
+
end
|
|
887
|
+
end
|
|
888
|
+
|
|
889
|
+
# unit tests for sources_ldap_update
|
|
890
|
+
# LDAP Source Viewset
|
|
891
|
+
# @param slug
|
|
892
|
+
# @param ldap_source_request
|
|
893
|
+
# @param [Hash] opts the optional parameters
|
|
894
|
+
# @return [LDAPSource]
|
|
895
|
+
describe 'sources_ldap_update test' do
|
|
896
|
+
it 'should work' do
|
|
897
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
898
|
+
end
|
|
899
|
+
end
|
|
900
|
+
|
|
901
|
+
# unit tests for sources_ldap_used_by_list
|
|
902
|
+
# Get a list of all objects that use this object
|
|
903
|
+
# @param slug
|
|
904
|
+
# @param [Hash] opts the optional parameters
|
|
905
|
+
# @return [Array<UsedBy>]
|
|
906
|
+
describe 'sources_ldap_used_by_list test' do
|
|
907
|
+
it 'should work' do
|
|
908
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
909
|
+
end
|
|
910
|
+
end
|
|
911
|
+
|
|
912
|
+
# unit tests for sources_oauth_create
|
|
913
|
+
# Source Viewset
|
|
914
|
+
# @param o_auth_source_request
|
|
915
|
+
# @param [Hash] opts the optional parameters
|
|
916
|
+
# @return [OAuthSource]
|
|
917
|
+
describe 'sources_oauth_create test' do
|
|
918
|
+
it 'should work' do
|
|
919
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
920
|
+
end
|
|
921
|
+
end
|
|
922
|
+
|
|
923
|
+
# unit tests for sources_oauth_destroy
|
|
924
|
+
# Source Viewset
|
|
925
|
+
# @param slug
|
|
926
|
+
# @param [Hash] opts the optional parameters
|
|
927
|
+
# @return [nil]
|
|
928
|
+
describe 'sources_oauth_destroy test' do
|
|
929
|
+
it 'should work' do
|
|
930
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
931
|
+
end
|
|
932
|
+
end
|
|
933
|
+
|
|
934
|
+
# unit tests for sources_oauth_list
|
|
935
|
+
# Source Viewset
|
|
936
|
+
# @param [Hash] opts the optional parameters
|
|
937
|
+
# @option opts [String] :access_token_url
|
|
938
|
+
# @option opts [String] :additional_scopes
|
|
939
|
+
# @option opts [String] :authentication_flow
|
|
940
|
+
# @option opts [String] :authorization_url
|
|
941
|
+
# @option opts [String] :consumer_key
|
|
942
|
+
# @option opts [Boolean] :enabled
|
|
943
|
+
# @option opts [String] :enrollment_flow
|
|
944
|
+
# @option opts [String] :group_matching_mode How the source determines if an existing group should be used or a new group created.
|
|
945
|
+
# @option opts [Boolean] :has_jwks Only return sources with JWKS data
|
|
946
|
+
# @option opts [String] :name
|
|
947
|
+
# @option opts [String] :ordering Which field to use when ordering the results.
|
|
948
|
+
# @option opts [Integer] :page A page number within the paginated result set.
|
|
949
|
+
# @option opts [Integer] :page_size Number of results to return per page.
|
|
950
|
+
# @option opts [String] :pbm_uuid
|
|
951
|
+
# @option opts [String] :policy_engine_mode
|
|
952
|
+
# @option opts [String] :profile_url
|
|
953
|
+
# @option opts [String] :provider_type
|
|
954
|
+
# @option opts [String] :request_token_url
|
|
955
|
+
# @option opts [String] :search A search term.
|
|
956
|
+
# @option opts [String] :slug
|
|
957
|
+
# @option opts [String] :user_matching_mode How the source determines if an existing user should be authenticated or a new user enrolled.
|
|
958
|
+
# @return [PaginatedOAuthSourceList]
|
|
959
|
+
describe 'sources_oauth_list test' do
|
|
960
|
+
it 'should work' do
|
|
961
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
962
|
+
end
|
|
963
|
+
end
|
|
964
|
+
|
|
965
|
+
# unit tests for sources_oauth_partial_update
|
|
966
|
+
# Source Viewset
|
|
967
|
+
# @param slug
|
|
968
|
+
# @param [Hash] opts the optional parameters
|
|
969
|
+
# @option opts [PatchedOAuthSourceRequest] :patched_o_auth_source_request
|
|
970
|
+
# @return [OAuthSource]
|
|
971
|
+
describe 'sources_oauth_partial_update test' do
|
|
972
|
+
it 'should work' do
|
|
973
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
974
|
+
end
|
|
975
|
+
end
|
|
976
|
+
|
|
977
|
+
# unit tests for sources_oauth_retrieve
|
|
978
|
+
# Source Viewset
|
|
979
|
+
# @param slug
|
|
980
|
+
# @param [Hash] opts the optional parameters
|
|
981
|
+
# @return [OAuthSource]
|
|
982
|
+
describe 'sources_oauth_retrieve test' do
|
|
983
|
+
it 'should work' do
|
|
984
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
985
|
+
end
|
|
986
|
+
end
|
|
987
|
+
|
|
988
|
+
# unit tests for sources_oauth_source_types_list
|
|
989
|
+
# Get all creatable source types. If ?name is set, only returns the type for <name>. If <name> isn't found, returns the default type.
|
|
990
|
+
# @param [Hash] opts the optional parameters
|
|
991
|
+
# @option opts [String] :name
|
|
992
|
+
# @return [Array<SourceType>]
|
|
993
|
+
describe 'sources_oauth_source_types_list test' do
|
|
994
|
+
it 'should work' do
|
|
995
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
996
|
+
end
|
|
997
|
+
end
|
|
998
|
+
|
|
999
|
+
# unit tests for sources_oauth_update
|
|
1000
|
+
# Source Viewset
|
|
1001
|
+
# @param slug
|
|
1002
|
+
# @param o_auth_source_request
|
|
1003
|
+
# @param [Hash] opts the optional parameters
|
|
1004
|
+
# @return [OAuthSource]
|
|
1005
|
+
describe 'sources_oauth_update test' do
|
|
1006
|
+
it 'should work' do
|
|
1007
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
1008
|
+
end
|
|
1009
|
+
end
|
|
1010
|
+
|
|
1011
|
+
# unit tests for sources_oauth_used_by_list
|
|
1012
|
+
# Get a list of all objects that use this object
|
|
1013
|
+
# @param slug
|
|
1014
|
+
# @param [Hash] opts the optional parameters
|
|
1015
|
+
# @return [Array<UsedBy>]
|
|
1016
|
+
describe 'sources_oauth_used_by_list test' do
|
|
1017
|
+
it 'should work' do
|
|
1018
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
1019
|
+
end
|
|
1020
|
+
end
|
|
1021
|
+
|
|
1022
|
+
# unit tests for sources_plex_create
|
|
1023
|
+
# Plex source Viewset
|
|
1024
|
+
# @param plex_source_request
|
|
1025
|
+
# @param [Hash] opts the optional parameters
|
|
1026
|
+
# @return [PlexSource]
|
|
1027
|
+
describe 'sources_plex_create test' do
|
|
1028
|
+
it 'should work' do
|
|
1029
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
1030
|
+
end
|
|
1031
|
+
end
|
|
1032
|
+
|
|
1033
|
+
# unit tests for sources_plex_destroy
|
|
1034
|
+
# Plex source Viewset
|
|
1035
|
+
# @param slug
|
|
1036
|
+
# @param [Hash] opts the optional parameters
|
|
1037
|
+
# @return [nil]
|
|
1038
|
+
describe 'sources_plex_destroy test' do
|
|
1039
|
+
it 'should work' do
|
|
1040
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
1041
|
+
end
|
|
1042
|
+
end
|
|
1043
|
+
|
|
1044
|
+
# unit tests for sources_plex_list
|
|
1045
|
+
# Plex source Viewset
|
|
1046
|
+
# @param [Hash] opts the optional parameters
|
|
1047
|
+
# @option opts [Boolean] :allow_friends
|
|
1048
|
+
# @option opts [String] :authentication_flow
|
|
1049
|
+
# @option opts [String] :client_id
|
|
1050
|
+
# @option opts [Boolean] :enabled
|
|
1051
|
+
# @option opts [String] :enrollment_flow
|
|
1052
|
+
# @option opts [String] :group_matching_mode How the source determines if an existing group should be used or a new group created.
|
|
1053
|
+
# @option opts [String] :name
|
|
1054
|
+
# @option opts [String] :ordering Which field to use when ordering the results.
|
|
1055
|
+
# @option opts [Integer] :page A page number within the paginated result set.
|
|
1056
|
+
# @option opts [Integer] :page_size Number of results to return per page.
|
|
1057
|
+
# @option opts [String] :pbm_uuid
|
|
1058
|
+
# @option opts [String] :policy_engine_mode
|
|
1059
|
+
# @option opts [String] :search A search term.
|
|
1060
|
+
# @option opts [String] :slug
|
|
1061
|
+
# @option opts [String] :user_matching_mode How the source determines if an existing user should be authenticated or a new user enrolled.
|
|
1062
|
+
# @return [PaginatedPlexSourceList]
|
|
1063
|
+
describe 'sources_plex_list test' do
|
|
1064
|
+
it 'should work' do
|
|
1065
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
1066
|
+
end
|
|
1067
|
+
end
|
|
1068
|
+
|
|
1069
|
+
# unit tests for sources_plex_partial_update
|
|
1070
|
+
# Plex source Viewset
|
|
1071
|
+
# @param slug
|
|
1072
|
+
# @param [Hash] opts the optional parameters
|
|
1073
|
+
# @option opts [PatchedPlexSourceRequest] :patched_plex_source_request
|
|
1074
|
+
# @return [PlexSource]
|
|
1075
|
+
describe 'sources_plex_partial_update test' do
|
|
1076
|
+
it 'should work' do
|
|
1077
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
1078
|
+
end
|
|
1079
|
+
end
|
|
1080
|
+
|
|
1081
|
+
# unit tests for sources_plex_redeem_token_authenticated_create
|
|
1082
|
+
# Redeem a plex token for an authenticated user, creating a connection
|
|
1083
|
+
# @param plex_token_redeem_request
|
|
1084
|
+
# @param [Hash] opts the optional parameters
|
|
1085
|
+
# @option opts [String] :slug
|
|
1086
|
+
# @return [nil]
|
|
1087
|
+
describe 'sources_plex_redeem_token_authenticated_create test' do
|
|
1088
|
+
it 'should work' do
|
|
1089
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
1090
|
+
end
|
|
1091
|
+
end
|
|
1092
|
+
|
|
1093
|
+
# unit tests for sources_plex_redeem_token_create
|
|
1094
|
+
# Redeem a plex token, check it's access to resources against what's allowed for the source, and redirect to an authentication/enrollment flow.
|
|
1095
|
+
# @param plex_token_redeem_request
|
|
1096
|
+
# @param [Hash] opts the optional parameters
|
|
1097
|
+
# @option opts [String] :slug
|
|
1098
|
+
# @return [RedirectChallenge]
|
|
1099
|
+
describe 'sources_plex_redeem_token_create test' do
|
|
1100
|
+
it 'should work' do
|
|
1101
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
1102
|
+
end
|
|
1103
|
+
end
|
|
1104
|
+
|
|
1105
|
+
# unit tests for sources_plex_retrieve
|
|
1106
|
+
# Plex source Viewset
|
|
1107
|
+
# @param slug
|
|
1108
|
+
# @param [Hash] opts the optional parameters
|
|
1109
|
+
# @return [PlexSource]
|
|
1110
|
+
describe 'sources_plex_retrieve test' do
|
|
1111
|
+
it 'should work' do
|
|
1112
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
1113
|
+
end
|
|
1114
|
+
end
|
|
1115
|
+
|
|
1116
|
+
# unit tests for sources_plex_update
|
|
1117
|
+
# Plex source Viewset
|
|
1118
|
+
# @param slug
|
|
1119
|
+
# @param plex_source_request
|
|
1120
|
+
# @param [Hash] opts the optional parameters
|
|
1121
|
+
# @return [PlexSource]
|
|
1122
|
+
describe 'sources_plex_update test' do
|
|
1123
|
+
it 'should work' do
|
|
1124
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
1125
|
+
end
|
|
1126
|
+
end
|
|
1127
|
+
|
|
1128
|
+
# unit tests for sources_plex_used_by_list
|
|
1129
|
+
# Get a list of all objects that use this object
|
|
1130
|
+
# @param slug
|
|
1131
|
+
# @param [Hash] opts the optional parameters
|
|
1132
|
+
# @return [Array<UsedBy>]
|
|
1133
|
+
describe 'sources_plex_used_by_list test' do
|
|
1134
|
+
it 'should work' do
|
|
1135
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
1136
|
+
end
|
|
1137
|
+
end
|
|
1138
|
+
|
|
1139
|
+
# unit tests for sources_saml_create
|
|
1140
|
+
# SAMLSource Viewset
|
|
1141
|
+
# @param saml_source_request
|
|
1142
|
+
# @param [Hash] opts the optional parameters
|
|
1143
|
+
# @return [SAMLSource]
|
|
1144
|
+
describe 'sources_saml_create test' do
|
|
1145
|
+
it 'should work' do
|
|
1146
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
1147
|
+
end
|
|
1148
|
+
end
|
|
1149
|
+
|
|
1150
|
+
# unit tests for sources_saml_destroy
|
|
1151
|
+
# SAMLSource Viewset
|
|
1152
|
+
# @param slug
|
|
1153
|
+
# @param [Hash] opts the optional parameters
|
|
1154
|
+
# @return [nil]
|
|
1155
|
+
describe 'sources_saml_destroy test' do
|
|
1156
|
+
it 'should work' do
|
|
1157
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
1158
|
+
end
|
|
1159
|
+
end
|
|
1160
|
+
|
|
1161
|
+
# unit tests for sources_saml_list
|
|
1162
|
+
# SAMLSource Viewset
|
|
1163
|
+
# @param [Hash] opts the optional parameters
|
|
1164
|
+
# @option opts [Boolean] :allow_idp_initiated
|
|
1165
|
+
# @option opts [String] :authentication_flow
|
|
1166
|
+
# @option opts [String] :binding_type
|
|
1167
|
+
# @option opts [String] :digest_algorithm
|
|
1168
|
+
# @option opts [Boolean] :enabled
|
|
1169
|
+
# @option opts [String] :enrollment_flow
|
|
1170
|
+
# @option opts [String] :issuer
|
|
1171
|
+
# @option opts [String] :managed
|
|
1172
|
+
# @option opts [String] :name
|
|
1173
|
+
# @option opts [String] :name_id_policy NameID Policy sent to the IdP. Can be unset, in which case no Policy is sent.
|
|
1174
|
+
# @option opts [String] :ordering Which field to use when ordering the results.
|
|
1175
|
+
# @option opts [Integer] :page A page number within the paginated result set.
|
|
1176
|
+
# @option opts [Integer] :page_size Number of results to return per page.
|
|
1177
|
+
# @option opts [String] :pbm_uuid
|
|
1178
|
+
# @option opts [String] :policy_engine_mode
|
|
1179
|
+
# @option opts [String] :pre_authentication_flow
|
|
1180
|
+
# @option opts [String] :search A search term.
|
|
1181
|
+
# @option opts [String] :signature_algorithm
|
|
1182
|
+
# @option opts [Boolean] :signed_assertion
|
|
1183
|
+
# @option opts [Boolean] :signed_response
|
|
1184
|
+
# @option opts [String] :signing_kp
|
|
1185
|
+
# @option opts [String] :slo_url
|
|
1186
|
+
# @option opts [String] :slug
|
|
1187
|
+
# @option opts [String] :sso_url
|
|
1188
|
+
# @option opts [String] :temporary_user_delete_after
|
|
1189
|
+
# @option opts [String] :user_matching_mode How the source determines if an existing user should be authenticated or a new user enrolled.
|
|
1190
|
+
# @option opts [String] :verification_kp
|
|
1191
|
+
# @return [PaginatedSAMLSourceList]
|
|
1192
|
+
describe 'sources_saml_list test' do
|
|
1193
|
+
it 'should work' do
|
|
1194
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
1195
|
+
end
|
|
1196
|
+
end
|
|
1197
|
+
|
|
1198
|
+
# unit tests for sources_saml_metadata_retrieve
|
|
1199
|
+
# Return metadata as XML string
|
|
1200
|
+
# @param slug
|
|
1201
|
+
# @param [Hash] opts the optional parameters
|
|
1202
|
+
# @return [SAMLMetadata]
|
|
1203
|
+
describe 'sources_saml_metadata_retrieve test' do
|
|
1204
|
+
it 'should work' do
|
|
1205
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
1206
|
+
end
|
|
1207
|
+
end
|
|
1208
|
+
|
|
1209
|
+
# unit tests for sources_saml_partial_update
|
|
1210
|
+
# SAMLSource Viewset
|
|
1211
|
+
# @param slug
|
|
1212
|
+
# @param [Hash] opts the optional parameters
|
|
1213
|
+
# @option opts [PatchedSAMLSourceRequest] :patched_saml_source_request
|
|
1214
|
+
# @return [SAMLSource]
|
|
1215
|
+
describe 'sources_saml_partial_update test' do
|
|
1216
|
+
it 'should work' do
|
|
1217
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
1218
|
+
end
|
|
1219
|
+
end
|
|
1220
|
+
|
|
1221
|
+
# unit tests for sources_saml_retrieve
|
|
1222
|
+
# SAMLSource Viewset
|
|
1223
|
+
# @param slug
|
|
1224
|
+
# @param [Hash] opts the optional parameters
|
|
1225
|
+
# @return [SAMLSource]
|
|
1226
|
+
describe 'sources_saml_retrieve test' do
|
|
1227
|
+
it 'should work' do
|
|
1228
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
1229
|
+
end
|
|
1230
|
+
end
|
|
1231
|
+
|
|
1232
|
+
# unit tests for sources_saml_update
|
|
1233
|
+
# SAMLSource Viewset
|
|
1234
|
+
# @param slug
|
|
1235
|
+
# @param saml_source_request
|
|
1236
|
+
# @param [Hash] opts the optional parameters
|
|
1237
|
+
# @return [SAMLSource]
|
|
1238
|
+
describe 'sources_saml_update test' do
|
|
1239
|
+
it 'should work' do
|
|
1240
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
1241
|
+
end
|
|
1242
|
+
end
|
|
1243
|
+
|
|
1244
|
+
# unit tests for sources_saml_used_by_list
|
|
1245
|
+
# Get a list of all objects that use this object
|
|
1246
|
+
# @param slug
|
|
1247
|
+
# @param [Hash] opts the optional parameters
|
|
1248
|
+
# @return [Array<UsedBy>]
|
|
1249
|
+
describe 'sources_saml_used_by_list test' do
|
|
1250
|
+
it 'should work' do
|
|
1251
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
1252
|
+
end
|
|
1253
|
+
end
|
|
1254
|
+
|
|
1255
|
+
# unit tests for sources_scim_create
|
|
1256
|
+
# SCIMSource Viewset
|
|
1257
|
+
# @param scim_source_request
|
|
1258
|
+
# @param [Hash] opts the optional parameters
|
|
1259
|
+
# @return [SCIMSource]
|
|
1260
|
+
describe 'sources_scim_create test' do
|
|
1261
|
+
it 'should work' do
|
|
1262
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
1263
|
+
end
|
|
1264
|
+
end
|
|
1265
|
+
|
|
1266
|
+
# unit tests for sources_scim_destroy
|
|
1267
|
+
# SCIMSource Viewset
|
|
1268
|
+
# @param slug
|
|
1269
|
+
# @param [Hash] opts the optional parameters
|
|
1270
|
+
# @return [nil]
|
|
1271
|
+
describe 'sources_scim_destroy test' do
|
|
1272
|
+
it 'should work' do
|
|
1273
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
1274
|
+
end
|
|
1275
|
+
end
|
|
1276
|
+
|
|
1277
|
+
# unit tests for sources_scim_groups_create
|
|
1278
|
+
# SCIMSourceGroup Viewset
|
|
1279
|
+
# @param scim_source_group_request
|
|
1280
|
+
# @param [Hash] opts the optional parameters
|
|
1281
|
+
# @return [SCIMSourceGroup]
|
|
1282
|
+
describe 'sources_scim_groups_create 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 sources_scim_groups_destroy
|
|
1289
|
+
# SCIMSourceGroup Viewset
|
|
1290
|
+
# @param id A unique value identifying this scim source group.
|
|
1291
|
+
# @param [Hash] opts the optional parameters
|
|
1292
|
+
# @return [nil]
|
|
1293
|
+
describe 'sources_scim_groups_destroy 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 sources_scim_groups_list
|
|
1300
|
+
# SCIMSourceGroup Viewset
|
|
1301
|
+
# @param [Hash] opts the optional parameters
|
|
1302
|
+
# @option opts [String] :group__group_uuid
|
|
1303
|
+
# @option opts [String] :group__name
|
|
1304
|
+
# @option opts [String] :ordering Which field to use when ordering the results.
|
|
1305
|
+
# @option opts [Integer] :page A page number within the paginated result set.
|
|
1306
|
+
# @option opts [Integer] :page_size Number of results to return per page.
|
|
1307
|
+
# @option opts [String] :search A search term.
|
|
1308
|
+
# @option opts [String] :source__slug
|
|
1309
|
+
# @return [PaginatedSCIMSourceGroupList]
|
|
1310
|
+
describe 'sources_scim_groups_list test' do
|
|
1311
|
+
it 'should work' do
|
|
1312
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
1313
|
+
end
|
|
1314
|
+
end
|
|
1315
|
+
|
|
1316
|
+
# unit tests for sources_scim_groups_partial_update
|
|
1317
|
+
# SCIMSourceGroup Viewset
|
|
1318
|
+
# @param id A unique value identifying this scim source group.
|
|
1319
|
+
# @param [Hash] opts the optional parameters
|
|
1320
|
+
# @option opts [PatchedSCIMSourceGroupRequest] :patched_scim_source_group_request
|
|
1321
|
+
# @return [SCIMSourceGroup]
|
|
1322
|
+
describe 'sources_scim_groups_partial_update test' do
|
|
1323
|
+
it 'should work' do
|
|
1324
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
1325
|
+
end
|
|
1326
|
+
end
|
|
1327
|
+
|
|
1328
|
+
# unit tests for sources_scim_groups_retrieve
|
|
1329
|
+
# SCIMSourceGroup Viewset
|
|
1330
|
+
# @param id A unique value identifying this scim source group.
|
|
1331
|
+
# @param [Hash] opts the optional parameters
|
|
1332
|
+
# @return [SCIMSourceGroup]
|
|
1333
|
+
describe 'sources_scim_groups_retrieve test' do
|
|
1334
|
+
it 'should work' do
|
|
1335
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
1336
|
+
end
|
|
1337
|
+
end
|
|
1338
|
+
|
|
1339
|
+
# unit tests for sources_scim_groups_update
|
|
1340
|
+
# SCIMSourceGroup Viewset
|
|
1341
|
+
# @param id A unique value identifying this scim source group.
|
|
1342
|
+
# @param scim_source_group_request
|
|
1343
|
+
# @param [Hash] opts the optional parameters
|
|
1344
|
+
# @return [SCIMSourceGroup]
|
|
1345
|
+
describe 'sources_scim_groups_update test' do
|
|
1346
|
+
it 'should work' do
|
|
1347
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
1348
|
+
end
|
|
1349
|
+
end
|
|
1350
|
+
|
|
1351
|
+
# unit tests for sources_scim_groups_used_by_list
|
|
1352
|
+
# Get a list of all objects that use this object
|
|
1353
|
+
# @param id A unique value identifying this scim source group.
|
|
1354
|
+
# @param [Hash] opts the optional parameters
|
|
1355
|
+
# @return [Array<UsedBy>]
|
|
1356
|
+
describe 'sources_scim_groups_used_by_list test' do
|
|
1357
|
+
it 'should work' do
|
|
1358
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
1359
|
+
end
|
|
1360
|
+
end
|
|
1361
|
+
|
|
1362
|
+
# unit tests for sources_scim_list
|
|
1363
|
+
# SCIMSource Viewset
|
|
1364
|
+
# @param [Hash] opts the optional parameters
|
|
1365
|
+
# @option opts [String] :name
|
|
1366
|
+
# @option opts [String] :ordering Which field to use when ordering the results.
|
|
1367
|
+
# @option opts [Integer] :page A page number within the paginated result set.
|
|
1368
|
+
# @option opts [Integer] :page_size Number of results to return per page.
|
|
1369
|
+
# @option opts [String] :pbm_uuid
|
|
1370
|
+
# @option opts [String] :search A search term.
|
|
1371
|
+
# @option opts [String] :slug
|
|
1372
|
+
# @return [PaginatedSCIMSourceList]
|
|
1373
|
+
describe 'sources_scim_list test' do
|
|
1374
|
+
it 'should work' do
|
|
1375
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
1376
|
+
end
|
|
1377
|
+
end
|
|
1378
|
+
|
|
1379
|
+
# unit tests for sources_scim_partial_update
|
|
1380
|
+
# SCIMSource Viewset
|
|
1381
|
+
# @param slug
|
|
1382
|
+
# @param [Hash] opts the optional parameters
|
|
1383
|
+
# @option opts [PatchedSCIMSourceRequest] :patched_scim_source_request
|
|
1384
|
+
# @return [SCIMSource]
|
|
1385
|
+
describe 'sources_scim_partial_update test' do
|
|
1386
|
+
it 'should work' do
|
|
1387
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
1388
|
+
end
|
|
1389
|
+
end
|
|
1390
|
+
|
|
1391
|
+
# unit tests for sources_scim_retrieve
|
|
1392
|
+
# SCIMSource Viewset
|
|
1393
|
+
# @param slug
|
|
1394
|
+
# @param [Hash] opts the optional parameters
|
|
1395
|
+
# @return [SCIMSource]
|
|
1396
|
+
describe 'sources_scim_retrieve test' do
|
|
1397
|
+
it 'should work' do
|
|
1398
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
1399
|
+
end
|
|
1400
|
+
end
|
|
1401
|
+
|
|
1402
|
+
# unit tests for sources_scim_update
|
|
1403
|
+
# SCIMSource Viewset
|
|
1404
|
+
# @param slug
|
|
1405
|
+
# @param scim_source_request
|
|
1406
|
+
# @param [Hash] opts the optional parameters
|
|
1407
|
+
# @return [SCIMSource]
|
|
1408
|
+
describe 'sources_scim_update test' do
|
|
1409
|
+
it 'should work' do
|
|
1410
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
1411
|
+
end
|
|
1412
|
+
end
|
|
1413
|
+
|
|
1414
|
+
# unit tests for sources_scim_used_by_list
|
|
1415
|
+
# Get a list of all objects that use this object
|
|
1416
|
+
# @param slug
|
|
1417
|
+
# @param [Hash] opts the optional parameters
|
|
1418
|
+
# @return [Array<UsedBy>]
|
|
1419
|
+
describe 'sources_scim_used_by_list test' do
|
|
1420
|
+
it 'should work' do
|
|
1421
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
1422
|
+
end
|
|
1423
|
+
end
|
|
1424
|
+
|
|
1425
|
+
# unit tests for sources_scim_users_create
|
|
1426
|
+
# SCIMSourceUser Viewset
|
|
1427
|
+
# @param scim_source_user_request
|
|
1428
|
+
# @param [Hash] opts the optional parameters
|
|
1429
|
+
# @return [SCIMSourceUser]
|
|
1430
|
+
describe 'sources_scim_users_create test' do
|
|
1431
|
+
it 'should work' do
|
|
1432
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
1433
|
+
end
|
|
1434
|
+
end
|
|
1435
|
+
|
|
1436
|
+
# unit tests for sources_scim_users_destroy
|
|
1437
|
+
# SCIMSourceUser Viewset
|
|
1438
|
+
# @param id A unique value identifying this scim source user.
|
|
1439
|
+
# @param [Hash] opts the optional parameters
|
|
1440
|
+
# @return [nil]
|
|
1441
|
+
describe 'sources_scim_users_destroy test' do
|
|
1442
|
+
it 'should work' do
|
|
1443
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
1444
|
+
end
|
|
1445
|
+
end
|
|
1446
|
+
|
|
1447
|
+
# unit tests for sources_scim_users_list
|
|
1448
|
+
# SCIMSourceUser Viewset
|
|
1449
|
+
# @param [Hash] opts the optional parameters
|
|
1450
|
+
# @option opts [String] :ordering Which field to use when ordering the results.
|
|
1451
|
+
# @option opts [Integer] :page A page number within the paginated result set.
|
|
1452
|
+
# @option opts [Integer] :page_size Number of results to return per page.
|
|
1453
|
+
# @option opts [String] :search A search term.
|
|
1454
|
+
# @option opts [String] :source__slug
|
|
1455
|
+
# @option opts [Integer] :user__id
|
|
1456
|
+
# @option opts [String] :user__username
|
|
1457
|
+
# @return [PaginatedSCIMSourceUserList]
|
|
1458
|
+
describe 'sources_scim_users_list test' do
|
|
1459
|
+
it 'should work' do
|
|
1460
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
1461
|
+
end
|
|
1462
|
+
end
|
|
1463
|
+
|
|
1464
|
+
# unit tests for sources_scim_users_partial_update
|
|
1465
|
+
# SCIMSourceUser Viewset
|
|
1466
|
+
# @param id A unique value identifying this scim source user.
|
|
1467
|
+
# @param [Hash] opts the optional parameters
|
|
1468
|
+
# @option opts [PatchedSCIMSourceUserRequest] :patched_scim_source_user_request
|
|
1469
|
+
# @return [SCIMSourceUser]
|
|
1470
|
+
describe 'sources_scim_users_partial_update test' do
|
|
1471
|
+
it 'should work' do
|
|
1472
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
1473
|
+
end
|
|
1474
|
+
end
|
|
1475
|
+
|
|
1476
|
+
# unit tests for sources_scim_users_retrieve
|
|
1477
|
+
# SCIMSourceUser Viewset
|
|
1478
|
+
# @param id A unique value identifying this scim source user.
|
|
1479
|
+
# @param [Hash] opts the optional parameters
|
|
1480
|
+
# @return [SCIMSourceUser]
|
|
1481
|
+
describe 'sources_scim_users_retrieve test' do
|
|
1482
|
+
it 'should work' do
|
|
1483
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
1484
|
+
end
|
|
1485
|
+
end
|
|
1486
|
+
|
|
1487
|
+
# unit tests for sources_scim_users_update
|
|
1488
|
+
# SCIMSourceUser Viewset
|
|
1489
|
+
# @param id A unique value identifying this scim source user.
|
|
1490
|
+
# @param scim_source_user_request
|
|
1491
|
+
# @param [Hash] opts the optional parameters
|
|
1492
|
+
# @return [SCIMSourceUser]
|
|
1493
|
+
describe 'sources_scim_users_update test' do
|
|
1494
|
+
it 'should work' do
|
|
1495
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
1496
|
+
end
|
|
1497
|
+
end
|
|
1498
|
+
|
|
1499
|
+
# unit tests for sources_scim_users_used_by_list
|
|
1500
|
+
# Get a list of all objects that use this object
|
|
1501
|
+
# @param id A unique value identifying this scim source user.
|
|
1502
|
+
# @param [Hash] opts the optional parameters
|
|
1503
|
+
# @return [Array<UsedBy>]
|
|
1504
|
+
describe 'sources_scim_users_used_by_list test' do
|
|
1505
|
+
it 'should work' do
|
|
1506
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
1507
|
+
end
|
|
1508
|
+
end
|
|
1509
|
+
|
|
1510
|
+
# unit tests for sources_telegram_connect_user_create
|
|
1511
|
+
# Mixin to add a used_by endpoint to return a list of all objects using this object
|
|
1512
|
+
# @param slug
|
|
1513
|
+
# @param telegram_auth_request
|
|
1514
|
+
# @param [Hash] opts the optional parameters
|
|
1515
|
+
# @return [UserTelegramSourceConnection]
|
|
1516
|
+
describe 'sources_telegram_connect_user_create test' do
|
|
1517
|
+
it 'should work' do
|
|
1518
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
1519
|
+
end
|
|
1520
|
+
end
|
|
1521
|
+
|
|
1522
|
+
# unit tests for sources_telegram_create
|
|
1523
|
+
# Mixin to add a used_by endpoint to return a list of all objects using this object
|
|
1524
|
+
# @param telegram_source_request
|
|
1525
|
+
# @param [Hash] opts the optional parameters
|
|
1526
|
+
# @return [TelegramSource]
|
|
1527
|
+
describe 'sources_telegram_create test' do
|
|
1528
|
+
it 'should work' do
|
|
1529
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
1530
|
+
end
|
|
1531
|
+
end
|
|
1532
|
+
|
|
1533
|
+
# unit tests for sources_telegram_destroy
|
|
1534
|
+
# Mixin to add a used_by endpoint to return a list of all objects using this object
|
|
1535
|
+
# @param slug
|
|
1536
|
+
# @param [Hash] opts the optional parameters
|
|
1537
|
+
# @return [nil]
|
|
1538
|
+
describe 'sources_telegram_destroy test' do
|
|
1539
|
+
it 'should work' do
|
|
1540
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
1541
|
+
end
|
|
1542
|
+
end
|
|
1543
|
+
|
|
1544
|
+
# unit tests for sources_telegram_list
|
|
1545
|
+
# Mixin to add a used_by endpoint to return a list of all objects using this object
|
|
1546
|
+
# @param [Hash] opts the optional parameters
|
|
1547
|
+
# @option opts [String] :authentication_flow
|
|
1548
|
+
# @option opts [String] :bot_username
|
|
1549
|
+
# @option opts [Boolean] :enabled
|
|
1550
|
+
# @option opts [String] :enrollment_flow
|
|
1551
|
+
# @option opts [String] :group_matching_mode How the source determines if an existing group should be used or a new group created.
|
|
1552
|
+
# @option opts [String] :name
|
|
1553
|
+
# @option opts [String] :ordering Which field to use when ordering the results.
|
|
1554
|
+
# @option opts [Integer] :page A page number within the paginated result set.
|
|
1555
|
+
# @option opts [Integer] :page_size Number of results to return per page.
|
|
1556
|
+
# @option opts [String] :pbm_uuid
|
|
1557
|
+
# @option opts [String] :policy_engine_mode
|
|
1558
|
+
# @option opts [Boolean] :request_message_access
|
|
1559
|
+
# @option opts [String] :search A search term.
|
|
1560
|
+
# @option opts [String] :slug
|
|
1561
|
+
# @option opts [String] :user_matching_mode How the source determines if an existing user should be authenticated or a new user enrolled.
|
|
1562
|
+
# @return [PaginatedTelegramSourceList]
|
|
1563
|
+
describe 'sources_telegram_list test' do
|
|
1564
|
+
it 'should work' do
|
|
1565
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
1566
|
+
end
|
|
1567
|
+
end
|
|
1568
|
+
|
|
1569
|
+
# unit tests for sources_telegram_partial_update
|
|
1570
|
+
# Mixin to add a used_by endpoint to return a list of all objects using this object
|
|
1571
|
+
# @param slug
|
|
1572
|
+
# @param [Hash] opts the optional parameters
|
|
1573
|
+
# @option opts [PatchedTelegramSourceRequest] :patched_telegram_source_request
|
|
1574
|
+
# @return [TelegramSource]
|
|
1575
|
+
describe 'sources_telegram_partial_update test' do
|
|
1576
|
+
it 'should work' do
|
|
1577
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
1578
|
+
end
|
|
1579
|
+
end
|
|
1580
|
+
|
|
1581
|
+
# unit tests for sources_telegram_retrieve
|
|
1582
|
+
# Mixin to add a used_by endpoint to return a list of all objects using this object
|
|
1583
|
+
# @param slug
|
|
1584
|
+
# @param [Hash] opts the optional parameters
|
|
1585
|
+
# @return [TelegramSource]
|
|
1586
|
+
describe 'sources_telegram_retrieve test' do
|
|
1587
|
+
it 'should work' do
|
|
1588
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
1589
|
+
end
|
|
1590
|
+
end
|
|
1591
|
+
|
|
1592
|
+
# unit tests for sources_telegram_update
|
|
1593
|
+
# Mixin to add a used_by endpoint to return a list of all objects using this object
|
|
1594
|
+
# @param slug
|
|
1595
|
+
# @param telegram_source_request
|
|
1596
|
+
# @param [Hash] opts the optional parameters
|
|
1597
|
+
# @return [TelegramSource]
|
|
1598
|
+
describe 'sources_telegram_update test' do
|
|
1599
|
+
it 'should work' do
|
|
1600
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
1601
|
+
end
|
|
1602
|
+
end
|
|
1603
|
+
|
|
1604
|
+
# unit tests for sources_telegram_used_by_list
|
|
1605
|
+
# Get a list of all objects that use this object
|
|
1606
|
+
# @param slug
|
|
1607
|
+
# @param [Hash] opts the optional parameters
|
|
1608
|
+
# @return [Array<UsedBy>]
|
|
1609
|
+
describe 'sources_telegram_used_by_list test' do
|
|
1610
|
+
it 'should work' do
|
|
1611
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
1612
|
+
end
|
|
1613
|
+
end
|
|
1614
|
+
|
|
1615
|
+
# unit tests for sources_user_connections_all_destroy
|
|
1616
|
+
# User-source connection Viewset
|
|
1617
|
+
# @param id A unique integer value identifying this user source connection.
|
|
1618
|
+
# @param [Hash] opts the optional parameters
|
|
1619
|
+
# @return [nil]
|
|
1620
|
+
describe 'sources_user_connections_all_destroy test' do
|
|
1621
|
+
it 'should work' do
|
|
1622
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
1623
|
+
end
|
|
1624
|
+
end
|
|
1625
|
+
|
|
1626
|
+
# unit tests for sources_user_connections_all_list
|
|
1627
|
+
# User-source connection Viewset
|
|
1628
|
+
# @param [Hash] opts the optional parameters
|
|
1629
|
+
# @option opts [String] :ordering Which field to use when ordering the results.
|
|
1630
|
+
# @option opts [Integer] :page A page number within the paginated result set.
|
|
1631
|
+
# @option opts [Integer] :page_size Number of results to return per page.
|
|
1632
|
+
# @option opts [String] :search A search term.
|
|
1633
|
+
# @option opts [String] :source__slug
|
|
1634
|
+
# @option opts [Integer] :user
|
|
1635
|
+
# @return [PaginatedUserSourceConnectionList]
|
|
1636
|
+
describe 'sources_user_connections_all_list test' do
|
|
1637
|
+
it 'should work' do
|
|
1638
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
1639
|
+
end
|
|
1640
|
+
end
|
|
1641
|
+
|
|
1642
|
+
# unit tests for sources_user_connections_all_partial_update
|
|
1643
|
+
# User-source connection Viewset
|
|
1644
|
+
# @param id A unique integer value identifying this user source connection.
|
|
1645
|
+
# @param [Hash] opts the optional parameters
|
|
1646
|
+
# @option opts [PatchedUserSourceConnectionRequest] :patched_user_source_connection_request
|
|
1647
|
+
# @return [UserSourceConnection]
|
|
1648
|
+
describe 'sources_user_connections_all_partial_update test' do
|
|
1649
|
+
it 'should work' do
|
|
1650
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
1651
|
+
end
|
|
1652
|
+
end
|
|
1653
|
+
|
|
1654
|
+
# unit tests for sources_user_connections_all_retrieve
|
|
1655
|
+
# User-source connection Viewset
|
|
1656
|
+
# @param id A unique integer value identifying this user source connection.
|
|
1657
|
+
# @param [Hash] opts the optional parameters
|
|
1658
|
+
# @return [UserSourceConnection]
|
|
1659
|
+
describe 'sources_user_connections_all_retrieve test' do
|
|
1660
|
+
it 'should work' do
|
|
1661
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
1662
|
+
end
|
|
1663
|
+
end
|
|
1664
|
+
|
|
1665
|
+
# unit tests for sources_user_connections_all_update
|
|
1666
|
+
# User-source connection Viewset
|
|
1667
|
+
# @param id A unique integer value identifying this user source connection.
|
|
1668
|
+
# @param user_source_connection_request
|
|
1669
|
+
# @param [Hash] opts the optional parameters
|
|
1670
|
+
# @return [UserSourceConnection]
|
|
1671
|
+
describe 'sources_user_connections_all_update test' do
|
|
1672
|
+
it 'should work' do
|
|
1673
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
1674
|
+
end
|
|
1675
|
+
end
|
|
1676
|
+
|
|
1677
|
+
# unit tests for sources_user_connections_all_used_by_list
|
|
1678
|
+
# Get a list of all objects that use this object
|
|
1679
|
+
# @param id A unique integer value identifying this user source connection.
|
|
1680
|
+
# @param [Hash] opts the optional parameters
|
|
1681
|
+
# @return [Array<UsedBy>]
|
|
1682
|
+
describe 'sources_user_connections_all_used_by_list test' do
|
|
1683
|
+
it 'should work' do
|
|
1684
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
1685
|
+
end
|
|
1686
|
+
end
|
|
1687
|
+
|
|
1688
|
+
# unit tests for sources_user_connections_kerberos_create
|
|
1689
|
+
# User-source connection Viewset
|
|
1690
|
+
# @param user_kerberos_source_connection_request
|
|
1691
|
+
# @param [Hash] opts the optional parameters
|
|
1692
|
+
# @return [UserKerberosSourceConnection]
|
|
1693
|
+
describe 'sources_user_connections_kerberos_create test' do
|
|
1694
|
+
it 'should work' do
|
|
1695
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
1696
|
+
end
|
|
1697
|
+
end
|
|
1698
|
+
|
|
1699
|
+
# unit tests for sources_user_connections_kerberos_destroy
|
|
1700
|
+
# User-source connection Viewset
|
|
1701
|
+
# @param id A unique integer value identifying this User Kerberos Source Connection.
|
|
1702
|
+
# @param [Hash] opts the optional parameters
|
|
1703
|
+
# @return [nil]
|
|
1704
|
+
describe 'sources_user_connections_kerberos_destroy test' do
|
|
1705
|
+
it 'should work' do
|
|
1706
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
1707
|
+
end
|
|
1708
|
+
end
|
|
1709
|
+
|
|
1710
|
+
# unit tests for sources_user_connections_kerberos_list
|
|
1711
|
+
# User-source connection Viewset
|
|
1712
|
+
# @param [Hash] opts the optional parameters
|
|
1713
|
+
# @option opts [String] :ordering Which field to use when ordering the results.
|
|
1714
|
+
# @option opts [Integer] :page A page number within the paginated result set.
|
|
1715
|
+
# @option opts [Integer] :page_size Number of results to return per page.
|
|
1716
|
+
# @option opts [String] :search A search term.
|
|
1717
|
+
# @option opts [String] :source__slug
|
|
1718
|
+
# @option opts [Integer] :user
|
|
1719
|
+
# @return [PaginatedUserKerberosSourceConnectionList]
|
|
1720
|
+
describe 'sources_user_connections_kerberos_list test' do
|
|
1721
|
+
it 'should work' do
|
|
1722
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
1723
|
+
end
|
|
1724
|
+
end
|
|
1725
|
+
|
|
1726
|
+
# unit tests for sources_user_connections_kerberos_partial_update
|
|
1727
|
+
# User-source connection Viewset
|
|
1728
|
+
# @param id A unique integer value identifying this User Kerberos Source Connection.
|
|
1729
|
+
# @param [Hash] opts the optional parameters
|
|
1730
|
+
# @option opts [PatchedUserKerberosSourceConnectionRequest] :patched_user_kerberos_source_connection_request
|
|
1731
|
+
# @return [UserKerberosSourceConnection]
|
|
1732
|
+
describe 'sources_user_connections_kerberos_partial_update test' do
|
|
1733
|
+
it 'should work' do
|
|
1734
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
1735
|
+
end
|
|
1736
|
+
end
|
|
1737
|
+
|
|
1738
|
+
# unit tests for sources_user_connections_kerberos_retrieve
|
|
1739
|
+
# User-source connection Viewset
|
|
1740
|
+
# @param id A unique integer value identifying this User Kerberos Source Connection.
|
|
1741
|
+
# @param [Hash] opts the optional parameters
|
|
1742
|
+
# @return [UserKerberosSourceConnection]
|
|
1743
|
+
describe 'sources_user_connections_kerberos_retrieve test' do
|
|
1744
|
+
it 'should work' do
|
|
1745
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
1746
|
+
end
|
|
1747
|
+
end
|
|
1748
|
+
|
|
1749
|
+
# unit tests for sources_user_connections_kerberos_update
|
|
1750
|
+
# User-source connection Viewset
|
|
1751
|
+
# @param id A unique integer value identifying this User Kerberos Source Connection.
|
|
1752
|
+
# @param user_kerberos_source_connection_request
|
|
1753
|
+
# @param [Hash] opts the optional parameters
|
|
1754
|
+
# @return [UserKerberosSourceConnection]
|
|
1755
|
+
describe 'sources_user_connections_kerberos_update test' do
|
|
1756
|
+
it 'should work' do
|
|
1757
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
1758
|
+
end
|
|
1759
|
+
end
|
|
1760
|
+
|
|
1761
|
+
# unit tests for sources_user_connections_kerberos_used_by_list
|
|
1762
|
+
# Get a list of all objects that use this object
|
|
1763
|
+
# @param id A unique integer value identifying this User Kerberos Source Connection.
|
|
1764
|
+
# @param [Hash] opts the optional parameters
|
|
1765
|
+
# @return [Array<UsedBy>]
|
|
1766
|
+
describe 'sources_user_connections_kerberos_used_by_list test' do
|
|
1767
|
+
it 'should work' do
|
|
1768
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
1769
|
+
end
|
|
1770
|
+
end
|
|
1771
|
+
|
|
1772
|
+
# unit tests for sources_user_connections_ldap_create
|
|
1773
|
+
# User-source connection Viewset
|
|
1774
|
+
# @param user_ldap_source_connection_request
|
|
1775
|
+
# @param [Hash] opts the optional parameters
|
|
1776
|
+
# @return [UserLDAPSourceConnection]
|
|
1777
|
+
describe 'sources_user_connections_ldap_create test' do
|
|
1778
|
+
it 'should work' do
|
|
1779
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
1780
|
+
end
|
|
1781
|
+
end
|
|
1782
|
+
|
|
1783
|
+
# unit tests for sources_user_connections_ldap_destroy
|
|
1784
|
+
# User-source connection Viewset
|
|
1785
|
+
# @param id A unique integer value identifying this User LDAP Source Connection.
|
|
1786
|
+
# @param [Hash] opts the optional parameters
|
|
1787
|
+
# @return [nil]
|
|
1788
|
+
describe 'sources_user_connections_ldap_destroy test' do
|
|
1789
|
+
it 'should work' do
|
|
1790
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
1791
|
+
end
|
|
1792
|
+
end
|
|
1793
|
+
|
|
1794
|
+
# unit tests for sources_user_connections_ldap_list
|
|
1795
|
+
# User-source connection Viewset
|
|
1796
|
+
# @param [Hash] opts the optional parameters
|
|
1797
|
+
# @option opts [String] :ordering Which field to use when ordering the results.
|
|
1798
|
+
# @option opts [Integer] :page A page number within the paginated result set.
|
|
1799
|
+
# @option opts [Integer] :page_size Number of results to return per page.
|
|
1800
|
+
# @option opts [String] :search A search term.
|
|
1801
|
+
# @option opts [String] :source__slug
|
|
1802
|
+
# @option opts [Integer] :user
|
|
1803
|
+
# @return [PaginatedUserLDAPSourceConnectionList]
|
|
1804
|
+
describe 'sources_user_connections_ldap_list test' do
|
|
1805
|
+
it 'should work' do
|
|
1806
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
1807
|
+
end
|
|
1808
|
+
end
|
|
1809
|
+
|
|
1810
|
+
# unit tests for sources_user_connections_ldap_partial_update
|
|
1811
|
+
# User-source connection Viewset
|
|
1812
|
+
# @param id A unique integer value identifying this User LDAP Source Connection.
|
|
1813
|
+
# @param [Hash] opts the optional parameters
|
|
1814
|
+
# @option opts [PatchedUserLDAPSourceConnectionRequest] :patched_user_ldap_source_connection_request
|
|
1815
|
+
# @return [UserLDAPSourceConnection]
|
|
1816
|
+
describe 'sources_user_connections_ldap_partial_update test' do
|
|
1817
|
+
it 'should work' do
|
|
1818
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
1819
|
+
end
|
|
1820
|
+
end
|
|
1821
|
+
|
|
1822
|
+
# unit tests for sources_user_connections_ldap_retrieve
|
|
1823
|
+
# User-source connection Viewset
|
|
1824
|
+
# @param id A unique integer value identifying this User LDAP Source Connection.
|
|
1825
|
+
# @param [Hash] opts the optional parameters
|
|
1826
|
+
# @return [UserLDAPSourceConnection]
|
|
1827
|
+
describe 'sources_user_connections_ldap_retrieve test' do
|
|
1828
|
+
it 'should work' do
|
|
1829
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
1830
|
+
end
|
|
1831
|
+
end
|
|
1832
|
+
|
|
1833
|
+
# unit tests for sources_user_connections_ldap_update
|
|
1834
|
+
# User-source connection Viewset
|
|
1835
|
+
# @param id A unique integer value identifying this User LDAP Source Connection.
|
|
1836
|
+
# @param user_ldap_source_connection_request
|
|
1837
|
+
# @param [Hash] opts the optional parameters
|
|
1838
|
+
# @return [UserLDAPSourceConnection]
|
|
1839
|
+
describe 'sources_user_connections_ldap_update test' do
|
|
1840
|
+
it 'should work' do
|
|
1841
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
1842
|
+
end
|
|
1843
|
+
end
|
|
1844
|
+
|
|
1845
|
+
# unit tests for sources_user_connections_ldap_used_by_list
|
|
1846
|
+
# Get a list of all objects that use this object
|
|
1847
|
+
# @param id A unique integer value identifying this User LDAP Source Connection.
|
|
1848
|
+
# @param [Hash] opts the optional parameters
|
|
1849
|
+
# @return [Array<UsedBy>]
|
|
1850
|
+
describe 'sources_user_connections_ldap_used_by_list test' do
|
|
1851
|
+
it 'should work' do
|
|
1852
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
1853
|
+
end
|
|
1854
|
+
end
|
|
1855
|
+
|
|
1856
|
+
# unit tests for sources_user_connections_oauth_create
|
|
1857
|
+
# User-source connection Viewset
|
|
1858
|
+
# @param user_o_auth_source_connection_request
|
|
1859
|
+
# @param [Hash] opts the optional parameters
|
|
1860
|
+
# @return [UserOAuthSourceConnection]
|
|
1861
|
+
describe 'sources_user_connections_oauth_create test' do
|
|
1862
|
+
it 'should work' do
|
|
1863
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
1864
|
+
end
|
|
1865
|
+
end
|
|
1866
|
+
|
|
1867
|
+
# unit tests for sources_user_connections_oauth_destroy
|
|
1868
|
+
# User-source connection Viewset
|
|
1869
|
+
# @param id A unique integer value identifying this User OAuth Source Connection.
|
|
1870
|
+
# @param [Hash] opts the optional parameters
|
|
1871
|
+
# @return [nil]
|
|
1872
|
+
describe 'sources_user_connections_oauth_destroy test' do
|
|
1873
|
+
it 'should work' do
|
|
1874
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
1875
|
+
end
|
|
1876
|
+
end
|
|
1877
|
+
|
|
1878
|
+
# unit tests for sources_user_connections_oauth_list
|
|
1879
|
+
# User-source connection Viewset
|
|
1880
|
+
# @param [Hash] opts the optional parameters
|
|
1881
|
+
# @option opts [String] :ordering Which field to use when ordering the results.
|
|
1882
|
+
# @option opts [Integer] :page A page number within the paginated result set.
|
|
1883
|
+
# @option opts [Integer] :page_size Number of results to return per page.
|
|
1884
|
+
# @option opts [String] :search A search term.
|
|
1885
|
+
# @option opts [String] :source__slug
|
|
1886
|
+
# @option opts [Integer] :user
|
|
1887
|
+
# @return [PaginatedUserOAuthSourceConnectionList]
|
|
1888
|
+
describe 'sources_user_connections_oauth_list test' do
|
|
1889
|
+
it 'should work' do
|
|
1890
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
1891
|
+
end
|
|
1892
|
+
end
|
|
1893
|
+
|
|
1894
|
+
# unit tests for sources_user_connections_oauth_partial_update
|
|
1895
|
+
# User-source connection Viewset
|
|
1896
|
+
# @param id A unique integer value identifying this User OAuth Source Connection.
|
|
1897
|
+
# @param [Hash] opts the optional parameters
|
|
1898
|
+
# @option opts [PatchedUserOAuthSourceConnectionRequest] :patched_user_o_auth_source_connection_request
|
|
1899
|
+
# @return [UserOAuthSourceConnection]
|
|
1900
|
+
describe 'sources_user_connections_oauth_partial_update test' do
|
|
1901
|
+
it 'should work' do
|
|
1902
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
1903
|
+
end
|
|
1904
|
+
end
|
|
1905
|
+
|
|
1906
|
+
# unit tests for sources_user_connections_oauth_retrieve
|
|
1907
|
+
# User-source connection Viewset
|
|
1908
|
+
# @param id A unique integer value identifying this User OAuth Source Connection.
|
|
1909
|
+
# @param [Hash] opts the optional parameters
|
|
1910
|
+
# @return [UserOAuthSourceConnection]
|
|
1911
|
+
describe 'sources_user_connections_oauth_retrieve test' do
|
|
1912
|
+
it 'should work' do
|
|
1913
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
1914
|
+
end
|
|
1915
|
+
end
|
|
1916
|
+
|
|
1917
|
+
# unit tests for sources_user_connections_oauth_update
|
|
1918
|
+
# User-source connection Viewset
|
|
1919
|
+
# @param id A unique integer value identifying this User OAuth Source Connection.
|
|
1920
|
+
# @param user_o_auth_source_connection_request
|
|
1921
|
+
# @param [Hash] opts the optional parameters
|
|
1922
|
+
# @return [UserOAuthSourceConnection]
|
|
1923
|
+
describe 'sources_user_connections_oauth_update test' do
|
|
1924
|
+
it 'should work' do
|
|
1925
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
1926
|
+
end
|
|
1927
|
+
end
|
|
1928
|
+
|
|
1929
|
+
# unit tests for sources_user_connections_oauth_used_by_list
|
|
1930
|
+
# Get a list of all objects that use this object
|
|
1931
|
+
# @param id A unique integer value identifying this User OAuth Source Connection.
|
|
1932
|
+
# @param [Hash] opts the optional parameters
|
|
1933
|
+
# @return [Array<UsedBy>]
|
|
1934
|
+
describe 'sources_user_connections_oauth_used_by_list test' do
|
|
1935
|
+
it 'should work' do
|
|
1936
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
1937
|
+
end
|
|
1938
|
+
end
|
|
1939
|
+
|
|
1940
|
+
# unit tests for sources_user_connections_plex_create
|
|
1941
|
+
# User-source connection Viewset
|
|
1942
|
+
# @param user_plex_source_connection_request
|
|
1943
|
+
# @param [Hash] opts the optional parameters
|
|
1944
|
+
# @return [UserPlexSourceConnection]
|
|
1945
|
+
describe 'sources_user_connections_plex_create test' do
|
|
1946
|
+
it 'should work' do
|
|
1947
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
1948
|
+
end
|
|
1949
|
+
end
|
|
1950
|
+
|
|
1951
|
+
# unit tests for sources_user_connections_plex_destroy
|
|
1952
|
+
# User-source connection Viewset
|
|
1953
|
+
# @param id A unique integer value identifying this User Plex Source Connection.
|
|
1954
|
+
# @param [Hash] opts the optional parameters
|
|
1955
|
+
# @return [nil]
|
|
1956
|
+
describe 'sources_user_connections_plex_destroy test' do
|
|
1957
|
+
it 'should work' do
|
|
1958
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
1959
|
+
end
|
|
1960
|
+
end
|
|
1961
|
+
|
|
1962
|
+
# unit tests for sources_user_connections_plex_list
|
|
1963
|
+
# User-source connection Viewset
|
|
1964
|
+
# @param [Hash] opts the optional parameters
|
|
1965
|
+
# @option opts [String] :ordering Which field to use when ordering the results.
|
|
1966
|
+
# @option opts [Integer] :page A page number within the paginated result set.
|
|
1967
|
+
# @option opts [Integer] :page_size Number of results to return per page.
|
|
1968
|
+
# @option opts [String] :search A search term.
|
|
1969
|
+
# @option opts [String] :source__slug
|
|
1970
|
+
# @option opts [Integer] :user
|
|
1971
|
+
# @return [PaginatedUserPlexSourceConnectionList]
|
|
1972
|
+
describe 'sources_user_connections_plex_list test' do
|
|
1973
|
+
it 'should work' do
|
|
1974
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
1975
|
+
end
|
|
1976
|
+
end
|
|
1977
|
+
|
|
1978
|
+
# unit tests for sources_user_connections_plex_partial_update
|
|
1979
|
+
# User-source connection Viewset
|
|
1980
|
+
# @param id A unique integer value identifying this User Plex Source Connection.
|
|
1981
|
+
# @param [Hash] opts the optional parameters
|
|
1982
|
+
# @option opts [PatchedUserPlexSourceConnectionRequest] :patched_user_plex_source_connection_request
|
|
1983
|
+
# @return [UserPlexSourceConnection]
|
|
1984
|
+
describe 'sources_user_connections_plex_partial_update test' do
|
|
1985
|
+
it 'should work' do
|
|
1986
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
1987
|
+
end
|
|
1988
|
+
end
|
|
1989
|
+
|
|
1990
|
+
# unit tests for sources_user_connections_plex_retrieve
|
|
1991
|
+
# User-source connection Viewset
|
|
1992
|
+
# @param id A unique integer value identifying this User Plex Source Connection.
|
|
1993
|
+
# @param [Hash] opts the optional parameters
|
|
1994
|
+
# @return [UserPlexSourceConnection]
|
|
1995
|
+
describe 'sources_user_connections_plex_retrieve test' do
|
|
1996
|
+
it 'should work' do
|
|
1997
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
1998
|
+
end
|
|
1999
|
+
end
|
|
2000
|
+
|
|
2001
|
+
# unit tests for sources_user_connections_plex_update
|
|
2002
|
+
# User-source connection Viewset
|
|
2003
|
+
# @param id A unique integer value identifying this User Plex Source Connection.
|
|
2004
|
+
# @param user_plex_source_connection_request
|
|
2005
|
+
# @param [Hash] opts the optional parameters
|
|
2006
|
+
# @return [UserPlexSourceConnection]
|
|
2007
|
+
describe 'sources_user_connections_plex_update test' do
|
|
2008
|
+
it 'should work' do
|
|
2009
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
2010
|
+
end
|
|
2011
|
+
end
|
|
2012
|
+
|
|
2013
|
+
# unit tests for sources_user_connections_plex_used_by_list
|
|
2014
|
+
# Get a list of all objects that use this object
|
|
2015
|
+
# @param id A unique integer value identifying this User Plex Source Connection.
|
|
2016
|
+
# @param [Hash] opts the optional parameters
|
|
2017
|
+
# @return [Array<UsedBy>]
|
|
2018
|
+
describe 'sources_user_connections_plex_used_by_list test' do
|
|
2019
|
+
it 'should work' do
|
|
2020
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
2021
|
+
end
|
|
2022
|
+
end
|
|
2023
|
+
|
|
2024
|
+
# unit tests for sources_user_connections_saml_create
|
|
2025
|
+
# User-source connection Viewset
|
|
2026
|
+
# @param user_saml_source_connection_request
|
|
2027
|
+
# @param [Hash] opts the optional parameters
|
|
2028
|
+
# @return [UserSAMLSourceConnection]
|
|
2029
|
+
describe 'sources_user_connections_saml_create test' do
|
|
2030
|
+
it 'should work' do
|
|
2031
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
2032
|
+
end
|
|
2033
|
+
end
|
|
2034
|
+
|
|
2035
|
+
# unit tests for sources_user_connections_saml_destroy
|
|
2036
|
+
# User-source connection Viewset
|
|
2037
|
+
# @param id A unique integer value identifying this User SAML Source Connection.
|
|
2038
|
+
# @param [Hash] opts the optional parameters
|
|
2039
|
+
# @return [nil]
|
|
2040
|
+
describe 'sources_user_connections_saml_destroy test' do
|
|
2041
|
+
it 'should work' do
|
|
2042
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
2043
|
+
end
|
|
2044
|
+
end
|
|
2045
|
+
|
|
2046
|
+
# unit tests for sources_user_connections_saml_list
|
|
2047
|
+
# User-source connection Viewset
|
|
2048
|
+
# @param [Hash] opts the optional parameters
|
|
2049
|
+
# @option opts [String] :ordering Which field to use when ordering the results.
|
|
2050
|
+
# @option opts [Integer] :page A page number within the paginated result set.
|
|
2051
|
+
# @option opts [Integer] :page_size Number of results to return per page.
|
|
2052
|
+
# @option opts [String] :search A search term.
|
|
2053
|
+
# @option opts [String] :source__slug
|
|
2054
|
+
# @option opts [Integer] :user
|
|
2055
|
+
# @return [PaginatedUserSAMLSourceConnectionList]
|
|
2056
|
+
describe 'sources_user_connections_saml_list test' do
|
|
2057
|
+
it 'should work' do
|
|
2058
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
2059
|
+
end
|
|
2060
|
+
end
|
|
2061
|
+
|
|
2062
|
+
# unit tests for sources_user_connections_saml_partial_update
|
|
2063
|
+
# User-source connection Viewset
|
|
2064
|
+
# @param id A unique integer value identifying this User SAML Source Connection.
|
|
2065
|
+
# @param [Hash] opts the optional parameters
|
|
2066
|
+
# @option opts [PatchedUserSAMLSourceConnectionRequest] :patched_user_saml_source_connection_request
|
|
2067
|
+
# @return [UserSAMLSourceConnection]
|
|
2068
|
+
describe 'sources_user_connections_saml_partial_update test' do
|
|
2069
|
+
it 'should work' do
|
|
2070
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
2071
|
+
end
|
|
2072
|
+
end
|
|
2073
|
+
|
|
2074
|
+
# unit tests for sources_user_connections_saml_retrieve
|
|
2075
|
+
# User-source connection Viewset
|
|
2076
|
+
# @param id A unique integer value identifying this User SAML Source Connection.
|
|
2077
|
+
# @param [Hash] opts the optional parameters
|
|
2078
|
+
# @return [UserSAMLSourceConnection]
|
|
2079
|
+
describe 'sources_user_connections_saml_retrieve test' do
|
|
2080
|
+
it 'should work' do
|
|
2081
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
2082
|
+
end
|
|
2083
|
+
end
|
|
2084
|
+
|
|
2085
|
+
# unit tests for sources_user_connections_saml_update
|
|
2086
|
+
# User-source connection Viewset
|
|
2087
|
+
# @param id A unique integer value identifying this User SAML Source Connection.
|
|
2088
|
+
# @param user_saml_source_connection_request
|
|
2089
|
+
# @param [Hash] opts the optional parameters
|
|
2090
|
+
# @return [UserSAMLSourceConnection]
|
|
2091
|
+
describe 'sources_user_connections_saml_update test' do
|
|
2092
|
+
it 'should work' do
|
|
2093
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
2094
|
+
end
|
|
2095
|
+
end
|
|
2096
|
+
|
|
2097
|
+
# unit tests for sources_user_connections_saml_used_by_list
|
|
2098
|
+
# Get a list of all objects that use this object
|
|
2099
|
+
# @param id A unique integer value identifying this User SAML Source Connection.
|
|
2100
|
+
# @param [Hash] opts the optional parameters
|
|
2101
|
+
# @return [Array<UsedBy>]
|
|
2102
|
+
describe 'sources_user_connections_saml_used_by_list test' do
|
|
2103
|
+
it 'should work' do
|
|
2104
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
2105
|
+
end
|
|
2106
|
+
end
|
|
2107
|
+
|
|
2108
|
+
# unit tests for sources_user_connections_telegram_create
|
|
2109
|
+
# User-source connection Viewset
|
|
2110
|
+
# @param user_telegram_source_connection_request
|
|
2111
|
+
# @param [Hash] opts the optional parameters
|
|
2112
|
+
# @return [UserTelegramSourceConnection]
|
|
2113
|
+
describe 'sources_user_connections_telegram_create test' do
|
|
2114
|
+
it 'should work' do
|
|
2115
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
2116
|
+
end
|
|
2117
|
+
end
|
|
2118
|
+
|
|
2119
|
+
# unit tests for sources_user_connections_telegram_destroy
|
|
2120
|
+
# User-source connection Viewset
|
|
2121
|
+
# @param id A unique integer value identifying this User Telegram Source Connection.
|
|
2122
|
+
# @param [Hash] opts the optional parameters
|
|
2123
|
+
# @return [nil]
|
|
2124
|
+
describe 'sources_user_connections_telegram_destroy test' do
|
|
2125
|
+
it 'should work' do
|
|
2126
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
2127
|
+
end
|
|
2128
|
+
end
|
|
2129
|
+
|
|
2130
|
+
# unit tests for sources_user_connections_telegram_list
|
|
2131
|
+
# User-source connection Viewset
|
|
2132
|
+
# @param [Hash] opts the optional parameters
|
|
2133
|
+
# @option opts [String] :ordering Which field to use when ordering the results.
|
|
2134
|
+
# @option opts [Integer] :page A page number within the paginated result set.
|
|
2135
|
+
# @option opts [Integer] :page_size Number of results to return per page.
|
|
2136
|
+
# @option opts [String] :search A search term.
|
|
2137
|
+
# @option opts [String] :source__slug
|
|
2138
|
+
# @option opts [Integer] :user
|
|
2139
|
+
# @return [PaginatedUserTelegramSourceConnectionList]
|
|
2140
|
+
describe 'sources_user_connections_telegram_list test' do
|
|
2141
|
+
it 'should work' do
|
|
2142
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
2143
|
+
end
|
|
2144
|
+
end
|
|
2145
|
+
|
|
2146
|
+
# unit tests for sources_user_connections_telegram_partial_update
|
|
2147
|
+
# User-source connection Viewset
|
|
2148
|
+
# @param id A unique integer value identifying this User Telegram Source Connection.
|
|
2149
|
+
# @param [Hash] opts the optional parameters
|
|
2150
|
+
# @option opts [PatchedUserTelegramSourceConnectionRequest] :patched_user_telegram_source_connection_request
|
|
2151
|
+
# @return [UserTelegramSourceConnection]
|
|
2152
|
+
describe 'sources_user_connections_telegram_partial_update test' do
|
|
2153
|
+
it 'should work' do
|
|
2154
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
2155
|
+
end
|
|
2156
|
+
end
|
|
2157
|
+
|
|
2158
|
+
# unit tests for sources_user_connections_telegram_retrieve
|
|
2159
|
+
# User-source connection Viewset
|
|
2160
|
+
# @param id A unique integer value identifying this User Telegram Source Connection.
|
|
2161
|
+
# @param [Hash] opts the optional parameters
|
|
2162
|
+
# @return [UserTelegramSourceConnection]
|
|
2163
|
+
describe 'sources_user_connections_telegram_retrieve test' do
|
|
2164
|
+
it 'should work' do
|
|
2165
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
2166
|
+
end
|
|
2167
|
+
end
|
|
2168
|
+
|
|
2169
|
+
# unit tests for sources_user_connections_telegram_update
|
|
2170
|
+
# User-source connection Viewset
|
|
2171
|
+
# @param id A unique integer value identifying this User Telegram Source Connection.
|
|
2172
|
+
# @param user_telegram_source_connection_request
|
|
2173
|
+
# @param [Hash] opts the optional parameters
|
|
2174
|
+
# @return [UserTelegramSourceConnection]
|
|
2175
|
+
describe 'sources_user_connections_telegram_update test' do
|
|
2176
|
+
it 'should work' do
|
|
2177
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
2178
|
+
end
|
|
2179
|
+
end
|
|
2180
|
+
|
|
2181
|
+
# unit tests for sources_user_connections_telegram_used_by_list
|
|
2182
|
+
# Get a list of all objects that use this object
|
|
2183
|
+
# @param id A unique integer value identifying this User Telegram Source Connection.
|
|
2184
|
+
# @param [Hash] opts the optional parameters
|
|
2185
|
+
# @return [Array<UsedBy>]
|
|
2186
|
+
describe 'sources_user_connections_telegram_used_by_list test' do
|
|
2187
|
+
it 'should work' do
|
|
2188
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
2189
|
+
end
|
|
2190
|
+
end
|
|
2191
|
+
|
|
2192
|
+
end
|