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,2538 @@
|
|
|
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::StagesApi
|
|
11
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
|
12
|
+
# Please update as you see appropriate
|
|
13
|
+
describe 'StagesApi' do
|
|
14
|
+
before do
|
|
15
|
+
# run before each test
|
|
16
|
+
@api_instance = Authentik::Api::StagesApi.new
|
|
17
|
+
end
|
|
18
|
+
|
|
19
|
+
after do
|
|
20
|
+
# run after each test
|
|
21
|
+
end
|
|
22
|
+
|
|
23
|
+
describe 'test an instance of StagesApi' do
|
|
24
|
+
it 'should create an instance of StagesApi' do
|
|
25
|
+
expect(@api_instance).to be_instance_of(Authentik::Api::StagesApi)
|
|
26
|
+
end
|
|
27
|
+
end
|
|
28
|
+
|
|
29
|
+
# unit tests for stages_all_destroy
|
|
30
|
+
# Stage Viewset
|
|
31
|
+
# @param stage_uuid A UUID string identifying this stage.
|
|
32
|
+
# @param [Hash] opts the optional parameters
|
|
33
|
+
# @return [nil]
|
|
34
|
+
describe 'stages_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 stages_all_list
|
|
41
|
+
# Stage Viewset
|
|
42
|
+
# @param [Hash] opts the optional parameters
|
|
43
|
+
# @option opts [String] :name
|
|
44
|
+
# @option opts [String] :ordering Which field to use when ordering the results.
|
|
45
|
+
# @option opts [Integer] :page A page number within the paginated result set.
|
|
46
|
+
# @option opts [Integer] :page_size Number of results to return per page.
|
|
47
|
+
# @option opts [String] :search A search term.
|
|
48
|
+
# @return [PaginatedStageList]
|
|
49
|
+
describe 'stages_all_list test' do
|
|
50
|
+
it 'should work' do
|
|
51
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
52
|
+
end
|
|
53
|
+
end
|
|
54
|
+
|
|
55
|
+
# unit tests for stages_all_retrieve
|
|
56
|
+
# Stage Viewset
|
|
57
|
+
# @param stage_uuid A UUID string identifying this stage.
|
|
58
|
+
# @param [Hash] opts the optional parameters
|
|
59
|
+
# @return [Stage]
|
|
60
|
+
describe 'stages_all_retrieve test' do
|
|
61
|
+
it 'should work' do
|
|
62
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
63
|
+
end
|
|
64
|
+
end
|
|
65
|
+
|
|
66
|
+
# unit tests for stages_all_types_list
|
|
67
|
+
# Get all creatable types
|
|
68
|
+
# @param [Hash] opts the optional parameters
|
|
69
|
+
# @return [Array<TypeCreate>]
|
|
70
|
+
describe 'stages_all_types_list test' do
|
|
71
|
+
it 'should work' do
|
|
72
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
73
|
+
end
|
|
74
|
+
end
|
|
75
|
+
|
|
76
|
+
# unit tests for stages_all_used_by_list
|
|
77
|
+
# Get a list of all objects that use this object
|
|
78
|
+
# @param stage_uuid A UUID string identifying this stage.
|
|
79
|
+
# @param [Hash] opts the optional parameters
|
|
80
|
+
# @return [Array<UsedBy>]
|
|
81
|
+
describe 'stages_all_used_by_list test' do
|
|
82
|
+
it 'should work' do
|
|
83
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
84
|
+
end
|
|
85
|
+
end
|
|
86
|
+
|
|
87
|
+
# unit tests for stages_all_user_settings_list
|
|
88
|
+
# Get all stages the user can configure
|
|
89
|
+
# @param [Hash] opts the optional parameters
|
|
90
|
+
# @return [Array<UserSetting>]
|
|
91
|
+
describe 'stages_all_user_settings_list test' do
|
|
92
|
+
it 'should work' do
|
|
93
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
94
|
+
end
|
|
95
|
+
end
|
|
96
|
+
|
|
97
|
+
# unit tests for stages_authenticator_duo_create
|
|
98
|
+
# AuthenticatorDuoStage Viewset
|
|
99
|
+
# @param authenticator_duo_stage_request
|
|
100
|
+
# @param [Hash] opts the optional parameters
|
|
101
|
+
# @return [AuthenticatorDuoStage]
|
|
102
|
+
describe 'stages_authenticator_duo_create test' do
|
|
103
|
+
it 'should work' do
|
|
104
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
105
|
+
end
|
|
106
|
+
end
|
|
107
|
+
|
|
108
|
+
# unit tests for stages_authenticator_duo_destroy
|
|
109
|
+
# AuthenticatorDuoStage Viewset
|
|
110
|
+
# @param stage_uuid A UUID string identifying this Duo Authenticator Setup Stage.
|
|
111
|
+
# @param [Hash] opts the optional parameters
|
|
112
|
+
# @return [nil]
|
|
113
|
+
describe 'stages_authenticator_duo_destroy test' do
|
|
114
|
+
it 'should work' do
|
|
115
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
116
|
+
end
|
|
117
|
+
end
|
|
118
|
+
|
|
119
|
+
# unit tests for stages_authenticator_duo_enrollment_status_create
|
|
120
|
+
# Check enrollment status of user details in current session
|
|
121
|
+
# @param stage_uuid A UUID string identifying this Duo Authenticator Setup Stage.
|
|
122
|
+
# @param [Hash] opts the optional parameters
|
|
123
|
+
# @return [DuoDeviceEnrollmentStatus]
|
|
124
|
+
describe 'stages_authenticator_duo_enrollment_status_create test' do
|
|
125
|
+
it 'should work' do
|
|
126
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
127
|
+
end
|
|
128
|
+
end
|
|
129
|
+
|
|
130
|
+
# unit tests for stages_authenticator_duo_import_device_manual_create
|
|
131
|
+
# Import duo devices into authentik
|
|
132
|
+
# @param stage_uuid A UUID string identifying this Duo Authenticator Setup Stage.
|
|
133
|
+
# @param authenticator_duo_stage_manual_device_import_request
|
|
134
|
+
# @param [Hash] opts the optional parameters
|
|
135
|
+
# @return [nil]
|
|
136
|
+
describe 'stages_authenticator_duo_import_device_manual_create test' do
|
|
137
|
+
it 'should work' do
|
|
138
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
139
|
+
end
|
|
140
|
+
end
|
|
141
|
+
|
|
142
|
+
# unit tests for stages_authenticator_duo_import_devices_automatic_create
|
|
143
|
+
# Import duo devices into authentik
|
|
144
|
+
# @param stage_uuid A UUID string identifying this Duo Authenticator Setup Stage.
|
|
145
|
+
# @param [Hash] opts the optional parameters
|
|
146
|
+
# @return [AuthenticatorDuoStageDeviceImportResponse]
|
|
147
|
+
describe 'stages_authenticator_duo_import_devices_automatic_create test' do
|
|
148
|
+
it 'should work' do
|
|
149
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
150
|
+
end
|
|
151
|
+
end
|
|
152
|
+
|
|
153
|
+
# unit tests for stages_authenticator_duo_list
|
|
154
|
+
# AuthenticatorDuoStage Viewset
|
|
155
|
+
# @param [Hash] opts the optional parameters
|
|
156
|
+
# @option opts [String] :api_hostname
|
|
157
|
+
# @option opts [String] :client_id
|
|
158
|
+
# @option opts [String] :configure_flow
|
|
159
|
+
# @option opts [String] :name
|
|
160
|
+
# @option opts [String] :ordering Which field to use when ordering the results.
|
|
161
|
+
# @option opts [Integer] :page A page number within the paginated result set.
|
|
162
|
+
# @option opts [Integer] :page_size Number of results to return per page.
|
|
163
|
+
# @option opts [String] :search A search term.
|
|
164
|
+
# @return [PaginatedAuthenticatorDuoStageList]
|
|
165
|
+
describe 'stages_authenticator_duo_list test' do
|
|
166
|
+
it 'should work' do
|
|
167
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
168
|
+
end
|
|
169
|
+
end
|
|
170
|
+
|
|
171
|
+
# unit tests for stages_authenticator_duo_partial_update
|
|
172
|
+
# AuthenticatorDuoStage Viewset
|
|
173
|
+
# @param stage_uuid A UUID string identifying this Duo Authenticator Setup Stage.
|
|
174
|
+
# @param [Hash] opts the optional parameters
|
|
175
|
+
# @option opts [PatchedAuthenticatorDuoStageRequest] :patched_authenticator_duo_stage_request
|
|
176
|
+
# @return [AuthenticatorDuoStage]
|
|
177
|
+
describe 'stages_authenticator_duo_partial_update test' do
|
|
178
|
+
it 'should work' do
|
|
179
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
180
|
+
end
|
|
181
|
+
end
|
|
182
|
+
|
|
183
|
+
# unit tests for stages_authenticator_duo_retrieve
|
|
184
|
+
# AuthenticatorDuoStage Viewset
|
|
185
|
+
# @param stage_uuid A UUID string identifying this Duo Authenticator Setup Stage.
|
|
186
|
+
# @param [Hash] opts the optional parameters
|
|
187
|
+
# @return [AuthenticatorDuoStage]
|
|
188
|
+
describe 'stages_authenticator_duo_retrieve test' do
|
|
189
|
+
it 'should work' do
|
|
190
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
191
|
+
end
|
|
192
|
+
end
|
|
193
|
+
|
|
194
|
+
# unit tests for stages_authenticator_duo_update
|
|
195
|
+
# AuthenticatorDuoStage Viewset
|
|
196
|
+
# @param stage_uuid A UUID string identifying this Duo Authenticator Setup Stage.
|
|
197
|
+
# @param authenticator_duo_stage_request
|
|
198
|
+
# @param [Hash] opts the optional parameters
|
|
199
|
+
# @return [AuthenticatorDuoStage]
|
|
200
|
+
describe 'stages_authenticator_duo_update test' do
|
|
201
|
+
it 'should work' do
|
|
202
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
203
|
+
end
|
|
204
|
+
end
|
|
205
|
+
|
|
206
|
+
# unit tests for stages_authenticator_duo_used_by_list
|
|
207
|
+
# Get a list of all objects that use this object
|
|
208
|
+
# @param stage_uuid A UUID string identifying this Duo Authenticator Setup Stage.
|
|
209
|
+
# @param [Hash] opts the optional parameters
|
|
210
|
+
# @return [Array<UsedBy>]
|
|
211
|
+
describe 'stages_authenticator_duo_used_by_list test' do
|
|
212
|
+
it 'should work' do
|
|
213
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
214
|
+
end
|
|
215
|
+
end
|
|
216
|
+
|
|
217
|
+
# unit tests for stages_authenticator_email_create
|
|
218
|
+
# AuthenticatorEmailStage Viewset
|
|
219
|
+
# @param authenticator_email_stage_request
|
|
220
|
+
# @param [Hash] opts the optional parameters
|
|
221
|
+
# @return [AuthenticatorEmailStage]
|
|
222
|
+
describe 'stages_authenticator_email_create test' do
|
|
223
|
+
it 'should work' do
|
|
224
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
225
|
+
end
|
|
226
|
+
end
|
|
227
|
+
|
|
228
|
+
# unit tests for stages_authenticator_email_destroy
|
|
229
|
+
# AuthenticatorEmailStage Viewset
|
|
230
|
+
# @param stage_uuid A UUID string identifying this Email Authenticator Setup Stage.
|
|
231
|
+
# @param [Hash] opts the optional parameters
|
|
232
|
+
# @return [nil]
|
|
233
|
+
describe 'stages_authenticator_email_destroy test' do
|
|
234
|
+
it 'should work' do
|
|
235
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
236
|
+
end
|
|
237
|
+
end
|
|
238
|
+
|
|
239
|
+
# unit tests for stages_authenticator_email_list
|
|
240
|
+
# AuthenticatorEmailStage Viewset
|
|
241
|
+
# @param [Hash] opts the optional parameters
|
|
242
|
+
# @option opts [String] :configure_flow
|
|
243
|
+
# @option opts [String] :friendly_name
|
|
244
|
+
# @option opts [String] :from_address
|
|
245
|
+
# @option opts [String] :host
|
|
246
|
+
# @option opts [String] :name
|
|
247
|
+
# @option opts [String] :ordering Which field to use when ordering the results.
|
|
248
|
+
# @option opts [Integer] :page A page number within the paginated result set.
|
|
249
|
+
# @option opts [Integer] :page_size Number of results to return per page.
|
|
250
|
+
# @option opts [String] :password
|
|
251
|
+
# @option opts [Integer] :port
|
|
252
|
+
# @option opts [String] :search A search term.
|
|
253
|
+
# @option opts [String] :stage_uuid
|
|
254
|
+
# @option opts [String] :subject
|
|
255
|
+
# @option opts [String] :template
|
|
256
|
+
# @option opts [Integer] :timeout
|
|
257
|
+
# @option opts [String] :token_expiry
|
|
258
|
+
# @option opts [Boolean] :use_global_settings
|
|
259
|
+
# @option opts [Boolean] :use_ssl
|
|
260
|
+
# @option opts [Boolean] :use_tls
|
|
261
|
+
# @option opts [String] :username
|
|
262
|
+
# @return [PaginatedAuthenticatorEmailStageList]
|
|
263
|
+
describe 'stages_authenticator_email_list test' do
|
|
264
|
+
it 'should work' do
|
|
265
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
266
|
+
end
|
|
267
|
+
end
|
|
268
|
+
|
|
269
|
+
# unit tests for stages_authenticator_email_partial_update
|
|
270
|
+
# AuthenticatorEmailStage Viewset
|
|
271
|
+
# @param stage_uuid A UUID string identifying this Email Authenticator Setup Stage.
|
|
272
|
+
# @param [Hash] opts the optional parameters
|
|
273
|
+
# @option opts [PatchedAuthenticatorEmailStageRequest] :patched_authenticator_email_stage_request
|
|
274
|
+
# @return [AuthenticatorEmailStage]
|
|
275
|
+
describe 'stages_authenticator_email_partial_update test' do
|
|
276
|
+
it 'should work' do
|
|
277
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
278
|
+
end
|
|
279
|
+
end
|
|
280
|
+
|
|
281
|
+
# unit tests for stages_authenticator_email_retrieve
|
|
282
|
+
# AuthenticatorEmailStage Viewset
|
|
283
|
+
# @param stage_uuid A UUID string identifying this Email Authenticator Setup Stage.
|
|
284
|
+
# @param [Hash] opts the optional parameters
|
|
285
|
+
# @return [AuthenticatorEmailStage]
|
|
286
|
+
describe 'stages_authenticator_email_retrieve test' do
|
|
287
|
+
it 'should work' do
|
|
288
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
289
|
+
end
|
|
290
|
+
end
|
|
291
|
+
|
|
292
|
+
# unit tests for stages_authenticator_email_update
|
|
293
|
+
# AuthenticatorEmailStage Viewset
|
|
294
|
+
# @param stage_uuid A UUID string identifying this Email Authenticator Setup Stage.
|
|
295
|
+
# @param authenticator_email_stage_request
|
|
296
|
+
# @param [Hash] opts the optional parameters
|
|
297
|
+
# @return [AuthenticatorEmailStage]
|
|
298
|
+
describe 'stages_authenticator_email_update test' do
|
|
299
|
+
it 'should work' do
|
|
300
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
301
|
+
end
|
|
302
|
+
end
|
|
303
|
+
|
|
304
|
+
# unit tests for stages_authenticator_email_used_by_list
|
|
305
|
+
# Get a list of all objects that use this object
|
|
306
|
+
# @param stage_uuid A UUID string identifying this Email Authenticator Setup Stage.
|
|
307
|
+
# @param [Hash] opts the optional parameters
|
|
308
|
+
# @return [Array<UsedBy>]
|
|
309
|
+
describe 'stages_authenticator_email_used_by_list test' do
|
|
310
|
+
it 'should work' do
|
|
311
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
312
|
+
end
|
|
313
|
+
end
|
|
314
|
+
|
|
315
|
+
# unit tests for stages_authenticator_endpoint_gdtc_create
|
|
316
|
+
# AuthenticatorEndpointGDTCStage Viewset
|
|
317
|
+
# @param authenticator_endpoint_gdtc_stage_request
|
|
318
|
+
# @param [Hash] opts the optional parameters
|
|
319
|
+
# @return [AuthenticatorEndpointGDTCStage]
|
|
320
|
+
describe 'stages_authenticator_endpoint_gdtc_create test' do
|
|
321
|
+
it 'should work' do
|
|
322
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
323
|
+
end
|
|
324
|
+
end
|
|
325
|
+
|
|
326
|
+
# unit tests for stages_authenticator_endpoint_gdtc_destroy
|
|
327
|
+
# AuthenticatorEndpointGDTCStage Viewset
|
|
328
|
+
# @param stage_uuid A UUID string identifying this Endpoint Authenticator Google Device Trust Connector Stage.
|
|
329
|
+
# @param [Hash] opts the optional parameters
|
|
330
|
+
# @return [nil]
|
|
331
|
+
describe 'stages_authenticator_endpoint_gdtc_destroy test' do
|
|
332
|
+
it 'should work' do
|
|
333
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
334
|
+
end
|
|
335
|
+
end
|
|
336
|
+
|
|
337
|
+
# unit tests for stages_authenticator_endpoint_gdtc_list
|
|
338
|
+
# AuthenticatorEndpointGDTCStage Viewset
|
|
339
|
+
# @param [Hash] opts the optional parameters
|
|
340
|
+
# @option opts [String] :configure_flow
|
|
341
|
+
# @option opts [String] :name
|
|
342
|
+
# @option opts [String] :ordering Which field to use when ordering the results.
|
|
343
|
+
# @option opts [Integer] :page A page number within the paginated result set.
|
|
344
|
+
# @option opts [Integer] :page_size Number of results to return per page.
|
|
345
|
+
# @option opts [String] :search A search term.
|
|
346
|
+
# @return [PaginatedAuthenticatorEndpointGDTCStageList]
|
|
347
|
+
describe 'stages_authenticator_endpoint_gdtc_list test' do
|
|
348
|
+
it 'should work' do
|
|
349
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
350
|
+
end
|
|
351
|
+
end
|
|
352
|
+
|
|
353
|
+
# unit tests for stages_authenticator_endpoint_gdtc_partial_update
|
|
354
|
+
# AuthenticatorEndpointGDTCStage Viewset
|
|
355
|
+
# @param stage_uuid A UUID string identifying this Endpoint Authenticator Google Device Trust Connector Stage.
|
|
356
|
+
# @param [Hash] opts the optional parameters
|
|
357
|
+
# @option opts [PatchedAuthenticatorEndpointGDTCStageRequest] :patched_authenticator_endpoint_gdtc_stage_request
|
|
358
|
+
# @return [AuthenticatorEndpointGDTCStage]
|
|
359
|
+
describe 'stages_authenticator_endpoint_gdtc_partial_update test' do
|
|
360
|
+
it 'should work' do
|
|
361
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
362
|
+
end
|
|
363
|
+
end
|
|
364
|
+
|
|
365
|
+
# unit tests for stages_authenticator_endpoint_gdtc_retrieve
|
|
366
|
+
# AuthenticatorEndpointGDTCStage Viewset
|
|
367
|
+
# @param stage_uuid A UUID string identifying this Endpoint Authenticator Google Device Trust Connector Stage.
|
|
368
|
+
# @param [Hash] opts the optional parameters
|
|
369
|
+
# @return [AuthenticatorEndpointGDTCStage]
|
|
370
|
+
describe 'stages_authenticator_endpoint_gdtc_retrieve test' do
|
|
371
|
+
it 'should work' do
|
|
372
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
373
|
+
end
|
|
374
|
+
end
|
|
375
|
+
|
|
376
|
+
# unit tests for stages_authenticator_endpoint_gdtc_update
|
|
377
|
+
# AuthenticatorEndpointGDTCStage Viewset
|
|
378
|
+
# @param stage_uuid A UUID string identifying this Endpoint Authenticator Google Device Trust Connector Stage.
|
|
379
|
+
# @param authenticator_endpoint_gdtc_stage_request
|
|
380
|
+
# @param [Hash] opts the optional parameters
|
|
381
|
+
# @return [AuthenticatorEndpointGDTCStage]
|
|
382
|
+
describe 'stages_authenticator_endpoint_gdtc_update test' do
|
|
383
|
+
it 'should work' do
|
|
384
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
385
|
+
end
|
|
386
|
+
end
|
|
387
|
+
|
|
388
|
+
# unit tests for stages_authenticator_endpoint_gdtc_used_by_list
|
|
389
|
+
# Get a list of all objects that use this object
|
|
390
|
+
# @param stage_uuid A UUID string identifying this Endpoint Authenticator Google Device Trust Connector Stage.
|
|
391
|
+
# @param [Hash] opts the optional parameters
|
|
392
|
+
# @return [Array<UsedBy>]
|
|
393
|
+
describe 'stages_authenticator_endpoint_gdtc_used_by_list test' do
|
|
394
|
+
it 'should work' do
|
|
395
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
396
|
+
end
|
|
397
|
+
end
|
|
398
|
+
|
|
399
|
+
# unit tests for stages_authenticator_sms_create
|
|
400
|
+
# AuthenticatorSMSStage Viewset
|
|
401
|
+
# @param authenticator_sms_stage_request
|
|
402
|
+
# @param [Hash] opts the optional parameters
|
|
403
|
+
# @return [AuthenticatorSMSStage]
|
|
404
|
+
describe 'stages_authenticator_sms_create test' do
|
|
405
|
+
it 'should work' do
|
|
406
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
407
|
+
end
|
|
408
|
+
end
|
|
409
|
+
|
|
410
|
+
# unit tests for stages_authenticator_sms_destroy
|
|
411
|
+
# AuthenticatorSMSStage Viewset
|
|
412
|
+
# @param stage_uuid A UUID string identifying this SMS Authenticator Setup Stage.
|
|
413
|
+
# @param [Hash] opts the optional parameters
|
|
414
|
+
# @return [nil]
|
|
415
|
+
describe 'stages_authenticator_sms_destroy test' do
|
|
416
|
+
it 'should work' do
|
|
417
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
418
|
+
end
|
|
419
|
+
end
|
|
420
|
+
|
|
421
|
+
# unit tests for stages_authenticator_sms_list
|
|
422
|
+
# AuthenticatorSMSStage Viewset
|
|
423
|
+
# @param [Hash] opts the optional parameters
|
|
424
|
+
# @option opts [String] :account_sid
|
|
425
|
+
# @option opts [String] :auth
|
|
426
|
+
# @option opts [String] :auth_password
|
|
427
|
+
# @option opts [String] :auth_type
|
|
428
|
+
# @option opts [String] :configure_flow
|
|
429
|
+
# @option opts [String] :friendly_name
|
|
430
|
+
# @option opts [String] :from_number
|
|
431
|
+
# @option opts [String] :mapping
|
|
432
|
+
# @option opts [String] :name
|
|
433
|
+
# @option opts [String] :ordering Which field to use when ordering the results.
|
|
434
|
+
# @option opts [Integer] :page A page number within the paginated result set.
|
|
435
|
+
# @option opts [Integer] :page_size Number of results to return per page.
|
|
436
|
+
# @option opts [String] :provider
|
|
437
|
+
# @option opts [String] :search A search term.
|
|
438
|
+
# @option opts [String] :stage_uuid
|
|
439
|
+
# @option opts [Boolean] :verify_only
|
|
440
|
+
# @return [PaginatedAuthenticatorSMSStageList]
|
|
441
|
+
describe 'stages_authenticator_sms_list 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 stages_authenticator_sms_partial_update
|
|
448
|
+
# AuthenticatorSMSStage Viewset
|
|
449
|
+
# @param stage_uuid A UUID string identifying this SMS Authenticator Setup Stage.
|
|
450
|
+
# @param [Hash] opts the optional parameters
|
|
451
|
+
# @option opts [PatchedAuthenticatorSMSStageRequest] :patched_authenticator_sms_stage_request
|
|
452
|
+
# @return [AuthenticatorSMSStage]
|
|
453
|
+
describe 'stages_authenticator_sms_partial_update test' do
|
|
454
|
+
it 'should work' do
|
|
455
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
456
|
+
end
|
|
457
|
+
end
|
|
458
|
+
|
|
459
|
+
# unit tests for stages_authenticator_sms_retrieve
|
|
460
|
+
# AuthenticatorSMSStage Viewset
|
|
461
|
+
# @param stage_uuid A UUID string identifying this SMS Authenticator Setup Stage.
|
|
462
|
+
# @param [Hash] opts the optional parameters
|
|
463
|
+
# @return [AuthenticatorSMSStage]
|
|
464
|
+
describe 'stages_authenticator_sms_retrieve test' do
|
|
465
|
+
it 'should work' do
|
|
466
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
467
|
+
end
|
|
468
|
+
end
|
|
469
|
+
|
|
470
|
+
# unit tests for stages_authenticator_sms_update
|
|
471
|
+
# AuthenticatorSMSStage Viewset
|
|
472
|
+
# @param stage_uuid A UUID string identifying this SMS Authenticator Setup Stage.
|
|
473
|
+
# @param authenticator_sms_stage_request
|
|
474
|
+
# @param [Hash] opts the optional parameters
|
|
475
|
+
# @return [AuthenticatorSMSStage]
|
|
476
|
+
describe 'stages_authenticator_sms_update test' do
|
|
477
|
+
it 'should work' do
|
|
478
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
479
|
+
end
|
|
480
|
+
end
|
|
481
|
+
|
|
482
|
+
# unit tests for stages_authenticator_sms_used_by_list
|
|
483
|
+
# Get a list of all objects that use this object
|
|
484
|
+
# @param stage_uuid A UUID string identifying this SMS Authenticator Setup Stage.
|
|
485
|
+
# @param [Hash] opts the optional parameters
|
|
486
|
+
# @return [Array<UsedBy>]
|
|
487
|
+
describe 'stages_authenticator_sms_used_by_list test' do
|
|
488
|
+
it 'should work' do
|
|
489
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
490
|
+
end
|
|
491
|
+
end
|
|
492
|
+
|
|
493
|
+
# unit tests for stages_authenticator_static_create
|
|
494
|
+
# AuthenticatorStaticStage Viewset
|
|
495
|
+
# @param authenticator_static_stage_request
|
|
496
|
+
# @param [Hash] opts the optional parameters
|
|
497
|
+
# @return [AuthenticatorStaticStage]
|
|
498
|
+
describe 'stages_authenticator_static_create test' do
|
|
499
|
+
it 'should work' do
|
|
500
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
501
|
+
end
|
|
502
|
+
end
|
|
503
|
+
|
|
504
|
+
# unit tests for stages_authenticator_static_destroy
|
|
505
|
+
# AuthenticatorStaticStage Viewset
|
|
506
|
+
# @param stage_uuid A UUID string identifying this Static Authenticator Setup Stage.
|
|
507
|
+
# @param [Hash] opts the optional parameters
|
|
508
|
+
# @return [nil]
|
|
509
|
+
describe 'stages_authenticator_static_destroy test' do
|
|
510
|
+
it 'should work' do
|
|
511
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
512
|
+
end
|
|
513
|
+
end
|
|
514
|
+
|
|
515
|
+
# unit tests for stages_authenticator_static_list
|
|
516
|
+
# AuthenticatorStaticStage Viewset
|
|
517
|
+
# @param [Hash] opts the optional parameters
|
|
518
|
+
# @option opts [String] :configure_flow
|
|
519
|
+
# @option opts [String] :friendly_name
|
|
520
|
+
# @option opts [String] :name
|
|
521
|
+
# @option opts [String] :ordering Which field to use when ordering the results.
|
|
522
|
+
# @option opts [Integer] :page A page number within the paginated result set.
|
|
523
|
+
# @option opts [Integer] :page_size Number of results to return per page.
|
|
524
|
+
# @option opts [String] :search A search term.
|
|
525
|
+
# @option opts [String] :stage_uuid
|
|
526
|
+
# @option opts [Integer] :token_count
|
|
527
|
+
# @option opts [Integer] :token_length
|
|
528
|
+
# @return [PaginatedAuthenticatorStaticStageList]
|
|
529
|
+
describe 'stages_authenticator_static_list test' do
|
|
530
|
+
it 'should work' do
|
|
531
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
532
|
+
end
|
|
533
|
+
end
|
|
534
|
+
|
|
535
|
+
# unit tests for stages_authenticator_static_partial_update
|
|
536
|
+
# AuthenticatorStaticStage Viewset
|
|
537
|
+
# @param stage_uuid A UUID string identifying this Static Authenticator Setup Stage.
|
|
538
|
+
# @param [Hash] opts the optional parameters
|
|
539
|
+
# @option opts [PatchedAuthenticatorStaticStageRequest] :patched_authenticator_static_stage_request
|
|
540
|
+
# @return [AuthenticatorStaticStage]
|
|
541
|
+
describe 'stages_authenticator_static_partial_update 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 stages_authenticator_static_retrieve
|
|
548
|
+
# AuthenticatorStaticStage Viewset
|
|
549
|
+
# @param stage_uuid A UUID string identifying this Static Authenticator Setup Stage.
|
|
550
|
+
# @param [Hash] opts the optional parameters
|
|
551
|
+
# @return [AuthenticatorStaticStage]
|
|
552
|
+
describe 'stages_authenticator_static_retrieve test' do
|
|
553
|
+
it 'should work' do
|
|
554
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
555
|
+
end
|
|
556
|
+
end
|
|
557
|
+
|
|
558
|
+
# unit tests for stages_authenticator_static_update
|
|
559
|
+
# AuthenticatorStaticStage Viewset
|
|
560
|
+
# @param stage_uuid A UUID string identifying this Static Authenticator Setup Stage.
|
|
561
|
+
# @param authenticator_static_stage_request
|
|
562
|
+
# @param [Hash] opts the optional parameters
|
|
563
|
+
# @return [AuthenticatorStaticStage]
|
|
564
|
+
describe 'stages_authenticator_static_update 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 stages_authenticator_static_used_by_list
|
|
571
|
+
# Get a list of all objects that use this object
|
|
572
|
+
# @param stage_uuid A UUID string identifying this Static Authenticator Setup Stage.
|
|
573
|
+
# @param [Hash] opts the optional parameters
|
|
574
|
+
# @return [Array<UsedBy>]
|
|
575
|
+
describe 'stages_authenticator_static_used_by_list test' do
|
|
576
|
+
it 'should work' do
|
|
577
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
578
|
+
end
|
|
579
|
+
end
|
|
580
|
+
|
|
581
|
+
# unit tests for stages_authenticator_totp_create
|
|
582
|
+
# AuthenticatorTOTPStage Viewset
|
|
583
|
+
# @param authenticator_totp_stage_request
|
|
584
|
+
# @param [Hash] opts the optional parameters
|
|
585
|
+
# @return [AuthenticatorTOTPStage]
|
|
586
|
+
describe 'stages_authenticator_totp_create test' do
|
|
587
|
+
it 'should work' do
|
|
588
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
589
|
+
end
|
|
590
|
+
end
|
|
591
|
+
|
|
592
|
+
# unit tests for stages_authenticator_totp_destroy
|
|
593
|
+
# AuthenticatorTOTPStage Viewset
|
|
594
|
+
# @param stage_uuid A UUID string identifying this TOTP Authenticator Setup Stage.
|
|
595
|
+
# @param [Hash] opts the optional parameters
|
|
596
|
+
# @return [nil]
|
|
597
|
+
describe 'stages_authenticator_totp_destroy test' do
|
|
598
|
+
it 'should work' do
|
|
599
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
600
|
+
end
|
|
601
|
+
end
|
|
602
|
+
|
|
603
|
+
# unit tests for stages_authenticator_totp_list
|
|
604
|
+
# AuthenticatorTOTPStage Viewset
|
|
605
|
+
# @param [Hash] opts the optional parameters
|
|
606
|
+
# @option opts [String] :configure_flow
|
|
607
|
+
# @option opts [String] :digits
|
|
608
|
+
# @option opts [String] :friendly_name
|
|
609
|
+
# @option opts [String] :name
|
|
610
|
+
# @option opts [String] :ordering Which field to use when ordering the results.
|
|
611
|
+
# @option opts [Integer] :page A page number within the paginated result set.
|
|
612
|
+
# @option opts [Integer] :page_size Number of results to return per page.
|
|
613
|
+
# @option opts [String] :search A search term.
|
|
614
|
+
# @option opts [String] :stage_uuid
|
|
615
|
+
# @return [PaginatedAuthenticatorTOTPStageList]
|
|
616
|
+
describe 'stages_authenticator_totp_list test' do
|
|
617
|
+
it 'should work' do
|
|
618
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
619
|
+
end
|
|
620
|
+
end
|
|
621
|
+
|
|
622
|
+
# unit tests for stages_authenticator_totp_partial_update
|
|
623
|
+
# AuthenticatorTOTPStage Viewset
|
|
624
|
+
# @param stage_uuid A UUID string identifying this TOTP Authenticator Setup Stage.
|
|
625
|
+
# @param [Hash] opts the optional parameters
|
|
626
|
+
# @option opts [PatchedAuthenticatorTOTPStageRequest] :patched_authenticator_totp_stage_request
|
|
627
|
+
# @return [AuthenticatorTOTPStage]
|
|
628
|
+
describe 'stages_authenticator_totp_partial_update test' do
|
|
629
|
+
it 'should work' do
|
|
630
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
631
|
+
end
|
|
632
|
+
end
|
|
633
|
+
|
|
634
|
+
# unit tests for stages_authenticator_totp_retrieve
|
|
635
|
+
# AuthenticatorTOTPStage Viewset
|
|
636
|
+
# @param stage_uuid A UUID string identifying this TOTP Authenticator Setup Stage.
|
|
637
|
+
# @param [Hash] opts the optional parameters
|
|
638
|
+
# @return [AuthenticatorTOTPStage]
|
|
639
|
+
describe 'stages_authenticator_totp_retrieve test' do
|
|
640
|
+
it 'should work' do
|
|
641
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
642
|
+
end
|
|
643
|
+
end
|
|
644
|
+
|
|
645
|
+
# unit tests for stages_authenticator_totp_update
|
|
646
|
+
# AuthenticatorTOTPStage Viewset
|
|
647
|
+
# @param stage_uuid A UUID string identifying this TOTP Authenticator Setup Stage.
|
|
648
|
+
# @param authenticator_totp_stage_request
|
|
649
|
+
# @param [Hash] opts the optional parameters
|
|
650
|
+
# @return [AuthenticatorTOTPStage]
|
|
651
|
+
describe 'stages_authenticator_totp_update test' do
|
|
652
|
+
it 'should work' do
|
|
653
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
654
|
+
end
|
|
655
|
+
end
|
|
656
|
+
|
|
657
|
+
# unit tests for stages_authenticator_totp_used_by_list
|
|
658
|
+
# Get a list of all objects that use this object
|
|
659
|
+
# @param stage_uuid A UUID string identifying this TOTP Authenticator Setup Stage.
|
|
660
|
+
# @param [Hash] opts the optional parameters
|
|
661
|
+
# @return [Array<UsedBy>]
|
|
662
|
+
describe 'stages_authenticator_totp_used_by_list test' do
|
|
663
|
+
it 'should work' do
|
|
664
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
665
|
+
end
|
|
666
|
+
end
|
|
667
|
+
|
|
668
|
+
# unit tests for stages_authenticator_validate_create
|
|
669
|
+
# AuthenticatorValidateStage Viewset
|
|
670
|
+
# @param authenticator_validate_stage_request
|
|
671
|
+
# @param [Hash] opts the optional parameters
|
|
672
|
+
# @return [AuthenticatorValidateStage]
|
|
673
|
+
describe 'stages_authenticator_validate_create test' do
|
|
674
|
+
it 'should work' do
|
|
675
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
676
|
+
end
|
|
677
|
+
end
|
|
678
|
+
|
|
679
|
+
# unit tests for stages_authenticator_validate_destroy
|
|
680
|
+
# AuthenticatorValidateStage Viewset
|
|
681
|
+
# @param stage_uuid A UUID string identifying this Authenticator Validation Stage.
|
|
682
|
+
# @param [Hash] opts the optional parameters
|
|
683
|
+
# @return [nil]
|
|
684
|
+
describe 'stages_authenticator_validate_destroy test' do
|
|
685
|
+
it 'should work' do
|
|
686
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
687
|
+
end
|
|
688
|
+
end
|
|
689
|
+
|
|
690
|
+
# unit tests for stages_authenticator_validate_list
|
|
691
|
+
# AuthenticatorValidateStage Viewset
|
|
692
|
+
# @param [Hash] opts the optional parameters
|
|
693
|
+
# @option opts [Array<String>] :configuration_stages
|
|
694
|
+
# @option opts [String] :name
|
|
695
|
+
# @option opts [String] :not_configured_action
|
|
696
|
+
# @option opts [String] :ordering Which field to use when ordering the results.
|
|
697
|
+
# @option opts [Integer] :page A page number within the paginated result set.
|
|
698
|
+
# @option opts [Integer] :page_size Number of results to return per page.
|
|
699
|
+
# @option opts [String] :search A search term.
|
|
700
|
+
# @return [PaginatedAuthenticatorValidateStageList]
|
|
701
|
+
describe 'stages_authenticator_validate_list test' do
|
|
702
|
+
it 'should work' do
|
|
703
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
704
|
+
end
|
|
705
|
+
end
|
|
706
|
+
|
|
707
|
+
# unit tests for stages_authenticator_validate_partial_update
|
|
708
|
+
# AuthenticatorValidateStage Viewset
|
|
709
|
+
# @param stage_uuid A UUID string identifying this Authenticator Validation Stage.
|
|
710
|
+
# @param [Hash] opts the optional parameters
|
|
711
|
+
# @option opts [PatchedAuthenticatorValidateStageRequest] :patched_authenticator_validate_stage_request
|
|
712
|
+
# @return [AuthenticatorValidateStage]
|
|
713
|
+
describe 'stages_authenticator_validate_partial_update test' do
|
|
714
|
+
it 'should work' do
|
|
715
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
716
|
+
end
|
|
717
|
+
end
|
|
718
|
+
|
|
719
|
+
# unit tests for stages_authenticator_validate_retrieve
|
|
720
|
+
# AuthenticatorValidateStage Viewset
|
|
721
|
+
# @param stage_uuid A UUID string identifying this Authenticator Validation Stage.
|
|
722
|
+
# @param [Hash] opts the optional parameters
|
|
723
|
+
# @return [AuthenticatorValidateStage]
|
|
724
|
+
describe 'stages_authenticator_validate_retrieve test' do
|
|
725
|
+
it 'should work' do
|
|
726
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
727
|
+
end
|
|
728
|
+
end
|
|
729
|
+
|
|
730
|
+
# unit tests for stages_authenticator_validate_update
|
|
731
|
+
# AuthenticatorValidateStage Viewset
|
|
732
|
+
# @param stage_uuid A UUID string identifying this Authenticator Validation Stage.
|
|
733
|
+
# @param authenticator_validate_stage_request
|
|
734
|
+
# @param [Hash] opts the optional parameters
|
|
735
|
+
# @return [AuthenticatorValidateStage]
|
|
736
|
+
describe 'stages_authenticator_validate_update test' do
|
|
737
|
+
it 'should work' do
|
|
738
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
739
|
+
end
|
|
740
|
+
end
|
|
741
|
+
|
|
742
|
+
# unit tests for stages_authenticator_validate_used_by_list
|
|
743
|
+
# Get a list of all objects that use this object
|
|
744
|
+
# @param stage_uuid A UUID string identifying this Authenticator Validation Stage.
|
|
745
|
+
# @param [Hash] opts the optional parameters
|
|
746
|
+
# @return [Array<UsedBy>]
|
|
747
|
+
describe 'stages_authenticator_validate_used_by_list test' do
|
|
748
|
+
it 'should work' do
|
|
749
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
750
|
+
end
|
|
751
|
+
end
|
|
752
|
+
|
|
753
|
+
# unit tests for stages_authenticator_webauthn_create
|
|
754
|
+
# AuthenticatorWebAuthnStage Viewset
|
|
755
|
+
# @param authenticator_web_authn_stage_request
|
|
756
|
+
# @param [Hash] opts the optional parameters
|
|
757
|
+
# @return [AuthenticatorWebAuthnStage]
|
|
758
|
+
describe 'stages_authenticator_webauthn_create test' do
|
|
759
|
+
it 'should work' do
|
|
760
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
761
|
+
end
|
|
762
|
+
end
|
|
763
|
+
|
|
764
|
+
# unit tests for stages_authenticator_webauthn_destroy
|
|
765
|
+
# AuthenticatorWebAuthnStage Viewset
|
|
766
|
+
# @param stage_uuid A UUID string identifying this WebAuthn Authenticator Setup Stage.
|
|
767
|
+
# @param [Hash] opts the optional parameters
|
|
768
|
+
# @return [nil]
|
|
769
|
+
describe 'stages_authenticator_webauthn_destroy test' do
|
|
770
|
+
it 'should work' do
|
|
771
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
772
|
+
end
|
|
773
|
+
end
|
|
774
|
+
|
|
775
|
+
# unit tests for stages_authenticator_webauthn_device_types_list
|
|
776
|
+
# WebAuthnDeviceType Viewset
|
|
777
|
+
# @param [Hash] opts the optional parameters
|
|
778
|
+
# @option opts [String] :aaguid
|
|
779
|
+
# @option opts [String] :description
|
|
780
|
+
# @option opts [String] :icon
|
|
781
|
+
# @option opts [String] :ordering Which field to use when ordering the results.
|
|
782
|
+
# @option opts [Integer] :page A page number within the paginated result set.
|
|
783
|
+
# @option opts [Integer] :page_size Number of results to return per page.
|
|
784
|
+
# @option opts [String] :search A search term.
|
|
785
|
+
# @return [PaginatedWebAuthnDeviceTypeList]
|
|
786
|
+
describe 'stages_authenticator_webauthn_device_types_list 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 stages_authenticator_webauthn_device_types_retrieve
|
|
793
|
+
# WebAuthnDeviceType Viewset
|
|
794
|
+
# @param aaguid A UUID string identifying this WebAuthn Device type.
|
|
795
|
+
# @param [Hash] opts the optional parameters
|
|
796
|
+
# @return [WebAuthnDeviceType]
|
|
797
|
+
describe 'stages_authenticator_webauthn_device_types_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 stages_authenticator_webauthn_list
|
|
804
|
+
# AuthenticatorWebAuthnStage Viewset
|
|
805
|
+
# @param [Hash] opts the optional parameters
|
|
806
|
+
# @option opts [String] :authenticator_attachment
|
|
807
|
+
# @option opts [String] :configure_flow
|
|
808
|
+
# @option opts [Array<String>] :device_type_restrictions
|
|
809
|
+
# @option opts [String] :friendly_name
|
|
810
|
+
# @option opts [Integer] :max_attempts
|
|
811
|
+
# @option opts [String] :name
|
|
812
|
+
# @option opts [String] :ordering Which field to use when ordering the results.
|
|
813
|
+
# @option opts [Integer] :page A page number within the paginated result set.
|
|
814
|
+
# @option opts [Integer] :page_size Number of results to return per page.
|
|
815
|
+
# @option opts [String] :resident_key_requirement
|
|
816
|
+
# @option opts [String] :search A search term.
|
|
817
|
+
# @option opts [String] :stage_uuid
|
|
818
|
+
# @option opts [String] :user_verification
|
|
819
|
+
# @return [PaginatedAuthenticatorWebAuthnStageList]
|
|
820
|
+
describe 'stages_authenticator_webauthn_list test' do
|
|
821
|
+
it 'should work' do
|
|
822
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
823
|
+
end
|
|
824
|
+
end
|
|
825
|
+
|
|
826
|
+
# unit tests for stages_authenticator_webauthn_partial_update
|
|
827
|
+
# AuthenticatorWebAuthnStage Viewset
|
|
828
|
+
# @param stage_uuid A UUID string identifying this WebAuthn Authenticator Setup Stage.
|
|
829
|
+
# @param [Hash] opts the optional parameters
|
|
830
|
+
# @option opts [PatchedAuthenticatorWebAuthnStageRequest] :patched_authenticator_web_authn_stage_request
|
|
831
|
+
# @return [AuthenticatorWebAuthnStage]
|
|
832
|
+
describe 'stages_authenticator_webauthn_partial_update test' do
|
|
833
|
+
it 'should work' do
|
|
834
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
835
|
+
end
|
|
836
|
+
end
|
|
837
|
+
|
|
838
|
+
# unit tests for stages_authenticator_webauthn_retrieve
|
|
839
|
+
# AuthenticatorWebAuthnStage Viewset
|
|
840
|
+
# @param stage_uuid A UUID string identifying this WebAuthn Authenticator Setup Stage.
|
|
841
|
+
# @param [Hash] opts the optional parameters
|
|
842
|
+
# @return [AuthenticatorWebAuthnStage]
|
|
843
|
+
describe 'stages_authenticator_webauthn_retrieve test' do
|
|
844
|
+
it 'should work' do
|
|
845
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
846
|
+
end
|
|
847
|
+
end
|
|
848
|
+
|
|
849
|
+
# unit tests for stages_authenticator_webauthn_update
|
|
850
|
+
# AuthenticatorWebAuthnStage Viewset
|
|
851
|
+
# @param stage_uuid A UUID string identifying this WebAuthn Authenticator Setup Stage.
|
|
852
|
+
# @param authenticator_web_authn_stage_request
|
|
853
|
+
# @param [Hash] opts the optional parameters
|
|
854
|
+
# @return [AuthenticatorWebAuthnStage]
|
|
855
|
+
describe 'stages_authenticator_webauthn_update test' do
|
|
856
|
+
it 'should work' do
|
|
857
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
858
|
+
end
|
|
859
|
+
end
|
|
860
|
+
|
|
861
|
+
# unit tests for stages_authenticator_webauthn_used_by_list
|
|
862
|
+
# Get a list of all objects that use this object
|
|
863
|
+
# @param stage_uuid A UUID string identifying this WebAuthn Authenticator Setup Stage.
|
|
864
|
+
# @param [Hash] opts the optional parameters
|
|
865
|
+
# @return [Array<UsedBy>]
|
|
866
|
+
describe 'stages_authenticator_webauthn_used_by_list test' do
|
|
867
|
+
it 'should work' do
|
|
868
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
869
|
+
end
|
|
870
|
+
end
|
|
871
|
+
|
|
872
|
+
# unit tests for stages_captcha_create
|
|
873
|
+
# CaptchaStage Viewset
|
|
874
|
+
# @param captcha_stage_request
|
|
875
|
+
# @param [Hash] opts the optional parameters
|
|
876
|
+
# @return [CaptchaStage]
|
|
877
|
+
describe 'stages_captcha_create test' do
|
|
878
|
+
it 'should work' do
|
|
879
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
880
|
+
end
|
|
881
|
+
end
|
|
882
|
+
|
|
883
|
+
# unit tests for stages_captcha_destroy
|
|
884
|
+
# CaptchaStage Viewset
|
|
885
|
+
# @param stage_uuid A UUID string identifying this Captcha Stage.
|
|
886
|
+
# @param [Hash] opts the optional parameters
|
|
887
|
+
# @return [nil]
|
|
888
|
+
describe 'stages_captcha_destroy test' do
|
|
889
|
+
it 'should work' do
|
|
890
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
891
|
+
end
|
|
892
|
+
end
|
|
893
|
+
|
|
894
|
+
# unit tests for stages_captcha_list
|
|
895
|
+
# CaptchaStage Viewset
|
|
896
|
+
# @param [Hash] opts the optional parameters
|
|
897
|
+
# @option opts [String] :name
|
|
898
|
+
# @option opts [String] :ordering Which field to use when ordering the results.
|
|
899
|
+
# @option opts [Integer] :page A page number within the paginated result set.
|
|
900
|
+
# @option opts [Integer] :page_size Number of results to return per page.
|
|
901
|
+
# @option opts [String] :public_key
|
|
902
|
+
# @option opts [String] :search A search term.
|
|
903
|
+
# @return [PaginatedCaptchaStageList]
|
|
904
|
+
describe 'stages_captcha_list test' do
|
|
905
|
+
it 'should work' do
|
|
906
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
907
|
+
end
|
|
908
|
+
end
|
|
909
|
+
|
|
910
|
+
# unit tests for stages_captcha_partial_update
|
|
911
|
+
# CaptchaStage Viewset
|
|
912
|
+
# @param stage_uuid A UUID string identifying this Captcha Stage.
|
|
913
|
+
# @param [Hash] opts the optional parameters
|
|
914
|
+
# @option opts [PatchedCaptchaStageRequest] :patched_captcha_stage_request
|
|
915
|
+
# @return [CaptchaStage]
|
|
916
|
+
describe 'stages_captcha_partial_update test' do
|
|
917
|
+
it 'should work' do
|
|
918
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
919
|
+
end
|
|
920
|
+
end
|
|
921
|
+
|
|
922
|
+
# unit tests for stages_captcha_retrieve
|
|
923
|
+
# CaptchaStage Viewset
|
|
924
|
+
# @param stage_uuid A UUID string identifying this Captcha Stage.
|
|
925
|
+
# @param [Hash] opts the optional parameters
|
|
926
|
+
# @return [CaptchaStage]
|
|
927
|
+
describe 'stages_captcha_retrieve test' do
|
|
928
|
+
it 'should work' do
|
|
929
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
930
|
+
end
|
|
931
|
+
end
|
|
932
|
+
|
|
933
|
+
# unit tests for stages_captcha_update
|
|
934
|
+
# CaptchaStage Viewset
|
|
935
|
+
# @param stage_uuid A UUID string identifying this Captcha Stage.
|
|
936
|
+
# @param captcha_stage_request
|
|
937
|
+
# @param [Hash] opts the optional parameters
|
|
938
|
+
# @return [CaptchaStage]
|
|
939
|
+
describe 'stages_captcha_update test' do
|
|
940
|
+
it 'should work' do
|
|
941
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
942
|
+
end
|
|
943
|
+
end
|
|
944
|
+
|
|
945
|
+
# unit tests for stages_captcha_used_by_list
|
|
946
|
+
# Get a list of all objects that use this object
|
|
947
|
+
# @param stage_uuid A UUID string identifying this Captcha Stage.
|
|
948
|
+
# @param [Hash] opts the optional parameters
|
|
949
|
+
# @return [Array<UsedBy>]
|
|
950
|
+
describe 'stages_captcha_used_by_list test' do
|
|
951
|
+
it 'should work' do
|
|
952
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
953
|
+
end
|
|
954
|
+
end
|
|
955
|
+
|
|
956
|
+
# unit tests for stages_consent_create
|
|
957
|
+
# ConsentStage Viewset
|
|
958
|
+
# @param consent_stage_request
|
|
959
|
+
# @param [Hash] opts the optional parameters
|
|
960
|
+
# @return [ConsentStage]
|
|
961
|
+
describe 'stages_consent_create test' do
|
|
962
|
+
it 'should work' do
|
|
963
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
964
|
+
end
|
|
965
|
+
end
|
|
966
|
+
|
|
967
|
+
# unit tests for stages_consent_destroy
|
|
968
|
+
# ConsentStage Viewset
|
|
969
|
+
# @param stage_uuid A UUID string identifying this Consent Stage.
|
|
970
|
+
# @param [Hash] opts the optional parameters
|
|
971
|
+
# @return [nil]
|
|
972
|
+
describe 'stages_consent_destroy test' do
|
|
973
|
+
it 'should work' do
|
|
974
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
975
|
+
end
|
|
976
|
+
end
|
|
977
|
+
|
|
978
|
+
# unit tests for stages_consent_list
|
|
979
|
+
# ConsentStage Viewset
|
|
980
|
+
# @param [Hash] opts the optional parameters
|
|
981
|
+
# @option opts [String] :consent_expire_in
|
|
982
|
+
# @option opts [String] :mode
|
|
983
|
+
# @option opts [String] :name
|
|
984
|
+
# @option opts [String] :ordering Which field to use when ordering the results.
|
|
985
|
+
# @option opts [Integer] :page A page number within the paginated result set.
|
|
986
|
+
# @option opts [Integer] :page_size Number of results to return per page.
|
|
987
|
+
# @option opts [String] :search A search term.
|
|
988
|
+
# @option opts [String] :stage_uuid
|
|
989
|
+
# @return [PaginatedConsentStageList]
|
|
990
|
+
describe 'stages_consent_list test' do
|
|
991
|
+
it 'should work' do
|
|
992
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
993
|
+
end
|
|
994
|
+
end
|
|
995
|
+
|
|
996
|
+
# unit tests for stages_consent_partial_update
|
|
997
|
+
# ConsentStage Viewset
|
|
998
|
+
# @param stage_uuid A UUID string identifying this Consent Stage.
|
|
999
|
+
# @param [Hash] opts the optional parameters
|
|
1000
|
+
# @option opts [PatchedConsentStageRequest] :patched_consent_stage_request
|
|
1001
|
+
# @return [ConsentStage]
|
|
1002
|
+
describe 'stages_consent_partial_update test' do
|
|
1003
|
+
it 'should work' do
|
|
1004
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
1005
|
+
end
|
|
1006
|
+
end
|
|
1007
|
+
|
|
1008
|
+
# unit tests for stages_consent_retrieve
|
|
1009
|
+
# ConsentStage Viewset
|
|
1010
|
+
# @param stage_uuid A UUID string identifying this Consent Stage.
|
|
1011
|
+
# @param [Hash] opts the optional parameters
|
|
1012
|
+
# @return [ConsentStage]
|
|
1013
|
+
describe 'stages_consent_retrieve test' do
|
|
1014
|
+
it 'should work' do
|
|
1015
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
1016
|
+
end
|
|
1017
|
+
end
|
|
1018
|
+
|
|
1019
|
+
# unit tests for stages_consent_update
|
|
1020
|
+
# ConsentStage Viewset
|
|
1021
|
+
# @param stage_uuid A UUID string identifying this Consent Stage.
|
|
1022
|
+
# @param consent_stage_request
|
|
1023
|
+
# @param [Hash] opts the optional parameters
|
|
1024
|
+
# @return [ConsentStage]
|
|
1025
|
+
describe 'stages_consent_update test' do
|
|
1026
|
+
it 'should work' do
|
|
1027
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
1028
|
+
end
|
|
1029
|
+
end
|
|
1030
|
+
|
|
1031
|
+
# unit tests for stages_consent_used_by_list
|
|
1032
|
+
# Get a list of all objects that use this object
|
|
1033
|
+
# @param stage_uuid A UUID string identifying this Consent Stage.
|
|
1034
|
+
# @param [Hash] opts the optional parameters
|
|
1035
|
+
# @return [Array<UsedBy>]
|
|
1036
|
+
describe 'stages_consent_used_by_list test' do
|
|
1037
|
+
it 'should work' do
|
|
1038
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
1039
|
+
end
|
|
1040
|
+
end
|
|
1041
|
+
|
|
1042
|
+
# unit tests for stages_deny_create
|
|
1043
|
+
# DenyStage Viewset
|
|
1044
|
+
# @param deny_stage_request
|
|
1045
|
+
# @param [Hash] opts the optional parameters
|
|
1046
|
+
# @return [DenyStage]
|
|
1047
|
+
describe 'stages_deny_create test' do
|
|
1048
|
+
it 'should work' do
|
|
1049
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
1050
|
+
end
|
|
1051
|
+
end
|
|
1052
|
+
|
|
1053
|
+
# unit tests for stages_deny_destroy
|
|
1054
|
+
# DenyStage Viewset
|
|
1055
|
+
# @param stage_uuid A UUID string identifying this Deny Stage.
|
|
1056
|
+
# @param [Hash] opts the optional parameters
|
|
1057
|
+
# @return [nil]
|
|
1058
|
+
describe 'stages_deny_destroy test' do
|
|
1059
|
+
it 'should work' do
|
|
1060
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
1061
|
+
end
|
|
1062
|
+
end
|
|
1063
|
+
|
|
1064
|
+
# unit tests for stages_deny_list
|
|
1065
|
+
# DenyStage Viewset
|
|
1066
|
+
# @param [Hash] opts the optional parameters
|
|
1067
|
+
# @option opts [String] :deny_message
|
|
1068
|
+
# @option opts [String] :name
|
|
1069
|
+
# @option opts [String] :ordering Which field to use when ordering the results.
|
|
1070
|
+
# @option opts [Integer] :page A page number within the paginated result set.
|
|
1071
|
+
# @option opts [Integer] :page_size Number of results to return per page.
|
|
1072
|
+
# @option opts [String] :search A search term.
|
|
1073
|
+
# @option opts [String] :stage_uuid
|
|
1074
|
+
# @return [PaginatedDenyStageList]
|
|
1075
|
+
describe 'stages_deny_list 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 stages_deny_partial_update
|
|
1082
|
+
# DenyStage Viewset
|
|
1083
|
+
# @param stage_uuid A UUID string identifying this Deny Stage.
|
|
1084
|
+
# @param [Hash] opts the optional parameters
|
|
1085
|
+
# @option opts [PatchedDenyStageRequest] :patched_deny_stage_request
|
|
1086
|
+
# @return [DenyStage]
|
|
1087
|
+
describe 'stages_deny_partial_update 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 stages_deny_retrieve
|
|
1094
|
+
# DenyStage Viewset
|
|
1095
|
+
# @param stage_uuid A UUID string identifying this Deny Stage.
|
|
1096
|
+
# @param [Hash] opts the optional parameters
|
|
1097
|
+
# @return [DenyStage]
|
|
1098
|
+
describe 'stages_deny_retrieve test' do
|
|
1099
|
+
it 'should work' do
|
|
1100
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
1101
|
+
end
|
|
1102
|
+
end
|
|
1103
|
+
|
|
1104
|
+
# unit tests for stages_deny_update
|
|
1105
|
+
# DenyStage Viewset
|
|
1106
|
+
# @param stage_uuid A UUID string identifying this Deny Stage.
|
|
1107
|
+
# @param deny_stage_request
|
|
1108
|
+
# @param [Hash] opts the optional parameters
|
|
1109
|
+
# @return [DenyStage]
|
|
1110
|
+
describe 'stages_deny_update 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 stages_deny_used_by_list
|
|
1117
|
+
# Get a list of all objects that use this object
|
|
1118
|
+
# @param stage_uuid A UUID string identifying this Deny Stage.
|
|
1119
|
+
# @param [Hash] opts the optional parameters
|
|
1120
|
+
# @return [Array<UsedBy>]
|
|
1121
|
+
describe 'stages_deny_used_by_list test' do
|
|
1122
|
+
it 'should work' do
|
|
1123
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
1124
|
+
end
|
|
1125
|
+
end
|
|
1126
|
+
|
|
1127
|
+
# unit tests for stages_dummy_create
|
|
1128
|
+
# DummyStage Viewset
|
|
1129
|
+
# @param dummy_stage_request
|
|
1130
|
+
# @param [Hash] opts the optional parameters
|
|
1131
|
+
# @return [DummyStage]
|
|
1132
|
+
describe 'stages_dummy_create test' do
|
|
1133
|
+
it 'should work' do
|
|
1134
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
1135
|
+
end
|
|
1136
|
+
end
|
|
1137
|
+
|
|
1138
|
+
# unit tests for stages_dummy_destroy
|
|
1139
|
+
# DummyStage Viewset
|
|
1140
|
+
# @param stage_uuid A UUID string identifying this Dummy Stage.
|
|
1141
|
+
# @param [Hash] opts the optional parameters
|
|
1142
|
+
# @return [nil]
|
|
1143
|
+
describe 'stages_dummy_destroy test' do
|
|
1144
|
+
it 'should work' do
|
|
1145
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
1146
|
+
end
|
|
1147
|
+
end
|
|
1148
|
+
|
|
1149
|
+
# unit tests for stages_dummy_list
|
|
1150
|
+
# DummyStage Viewset
|
|
1151
|
+
# @param [Hash] opts the optional parameters
|
|
1152
|
+
# @option opts [String] :name
|
|
1153
|
+
# @option opts [String] :ordering Which field to use when ordering the results.
|
|
1154
|
+
# @option opts [Integer] :page A page number within the paginated result set.
|
|
1155
|
+
# @option opts [Integer] :page_size Number of results to return per page.
|
|
1156
|
+
# @option opts [String] :search A search term.
|
|
1157
|
+
# @option opts [String] :stage_uuid
|
|
1158
|
+
# @option opts [Boolean] :throw_error
|
|
1159
|
+
# @return [PaginatedDummyStageList]
|
|
1160
|
+
describe 'stages_dummy_list test' do
|
|
1161
|
+
it 'should work' do
|
|
1162
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
1163
|
+
end
|
|
1164
|
+
end
|
|
1165
|
+
|
|
1166
|
+
# unit tests for stages_dummy_partial_update
|
|
1167
|
+
# DummyStage Viewset
|
|
1168
|
+
# @param stage_uuid A UUID string identifying this Dummy Stage.
|
|
1169
|
+
# @param [Hash] opts the optional parameters
|
|
1170
|
+
# @option opts [PatchedDummyStageRequest] :patched_dummy_stage_request
|
|
1171
|
+
# @return [DummyStage]
|
|
1172
|
+
describe 'stages_dummy_partial_update test' do
|
|
1173
|
+
it 'should work' do
|
|
1174
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
1175
|
+
end
|
|
1176
|
+
end
|
|
1177
|
+
|
|
1178
|
+
# unit tests for stages_dummy_retrieve
|
|
1179
|
+
# DummyStage Viewset
|
|
1180
|
+
# @param stage_uuid A UUID string identifying this Dummy Stage.
|
|
1181
|
+
# @param [Hash] opts the optional parameters
|
|
1182
|
+
# @return [DummyStage]
|
|
1183
|
+
describe 'stages_dummy_retrieve test' do
|
|
1184
|
+
it 'should work' do
|
|
1185
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
1186
|
+
end
|
|
1187
|
+
end
|
|
1188
|
+
|
|
1189
|
+
# unit tests for stages_dummy_update
|
|
1190
|
+
# DummyStage Viewset
|
|
1191
|
+
# @param stage_uuid A UUID string identifying this Dummy Stage.
|
|
1192
|
+
# @param dummy_stage_request
|
|
1193
|
+
# @param [Hash] opts the optional parameters
|
|
1194
|
+
# @return [DummyStage]
|
|
1195
|
+
describe 'stages_dummy_update test' do
|
|
1196
|
+
it 'should work' do
|
|
1197
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
1198
|
+
end
|
|
1199
|
+
end
|
|
1200
|
+
|
|
1201
|
+
# unit tests for stages_dummy_used_by_list
|
|
1202
|
+
# Get a list of all objects that use this object
|
|
1203
|
+
# @param stage_uuid A UUID string identifying this Dummy Stage.
|
|
1204
|
+
# @param [Hash] opts the optional parameters
|
|
1205
|
+
# @return [Array<UsedBy>]
|
|
1206
|
+
describe 'stages_dummy_used_by_list test' do
|
|
1207
|
+
it 'should work' do
|
|
1208
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
1209
|
+
end
|
|
1210
|
+
end
|
|
1211
|
+
|
|
1212
|
+
# unit tests for stages_email_create
|
|
1213
|
+
# EmailStage Viewset
|
|
1214
|
+
# @param email_stage_request
|
|
1215
|
+
# @param [Hash] opts the optional parameters
|
|
1216
|
+
# @return [EmailStage]
|
|
1217
|
+
describe 'stages_email_create test' do
|
|
1218
|
+
it 'should work' do
|
|
1219
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
1220
|
+
end
|
|
1221
|
+
end
|
|
1222
|
+
|
|
1223
|
+
# unit tests for stages_email_destroy
|
|
1224
|
+
# EmailStage Viewset
|
|
1225
|
+
# @param stage_uuid A UUID string identifying this Email Stage.
|
|
1226
|
+
# @param [Hash] opts the optional parameters
|
|
1227
|
+
# @return [nil]
|
|
1228
|
+
describe 'stages_email_destroy test' do
|
|
1229
|
+
it 'should work' do
|
|
1230
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
1231
|
+
end
|
|
1232
|
+
end
|
|
1233
|
+
|
|
1234
|
+
# unit tests for stages_email_list
|
|
1235
|
+
# EmailStage Viewset
|
|
1236
|
+
# @param [Hash] opts the optional parameters
|
|
1237
|
+
# @option opts [Boolean] :activate_user_on_success
|
|
1238
|
+
# @option opts [String] :from_address
|
|
1239
|
+
# @option opts [String] :host
|
|
1240
|
+
# @option opts [String] :name
|
|
1241
|
+
# @option opts [String] :ordering Which field to use when ordering the results.
|
|
1242
|
+
# @option opts [Integer] :page A page number within the paginated result set.
|
|
1243
|
+
# @option opts [Integer] :page_size Number of results to return per page.
|
|
1244
|
+
# @option opts [Integer] :port
|
|
1245
|
+
# @option opts [String] :search A search term.
|
|
1246
|
+
# @option opts [String] :subject
|
|
1247
|
+
# @option opts [String] :template
|
|
1248
|
+
# @option opts [Integer] :timeout
|
|
1249
|
+
# @option opts [String] :token_expiry
|
|
1250
|
+
# @option opts [Boolean] :use_global_settings
|
|
1251
|
+
# @option opts [Boolean] :use_ssl
|
|
1252
|
+
# @option opts [Boolean] :use_tls
|
|
1253
|
+
# @option opts [String] :username
|
|
1254
|
+
# @return [PaginatedEmailStageList]
|
|
1255
|
+
describe 'stages_email_list test' do
|
|
1256
|
+
it 'should work' do
|
|
1257
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
1258
|
+
end
|
|
1259
|
+
end
|
|
1260
|
+
|
|
1261
|
+
# unit tests for stages_email_partial_update
|
|
1262
|
+
# EmailStage Viewset
|
|
1263
|
+
# @param stage_uuid A UUID string identifying this Email Stage.
|
|
1264
|
+
# @param [Hash] opts the optional parameters
|
|
1265
|
+
# @option opts [PatchedEmailStageRequest] :patched_email_stage_request
|
|
1266
|
+
# @return [EmailStage]
|
|
1267
|
+
describe 'stages_email_partial_update test' do
|
|
1268
|
+
it 'should work' do
|
|
1269
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
1270
|
+
end
|
|
1271
|
+
end
|
|
1272
|
+
|
|
1273
|
+
# unit tests for stages_email_retrieve
|
|
1274
|
+
# EmailStage Viewset
|
|
1275
|
+
# @param stage_uuid A UUID string identifying this Email Stage.
|
|
1276
|
+
# @param [Hash] opts the optional parameters
|
|
1277
|
+
# @return [EmailStage]
|
|
1278
|
+
describe 'stages_email_retrieve test' do
|
|
1279
|
+
it 'should work' do
|
|
1280
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
1281
|
+
end
|
|
1282
|
+
end
|
|
1283
|
+
|
|
1284
|
+
# unit tests for stages_email_templates_list
|
|
1285
|
+
# Get all available templates, including custom templates
|
|
1286
|
+
# @param [Hash] opts the optional parameters
|
|
1287
|
+
# @return [Array<TypeCreate>]
|
|
1288
|
+
describe 'stages_email_templates_list test' do
|
|
1289
|
+
it 'should work' do
|
|
1290
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
1291
|
+
end
|
|
1292
|
+
end
|
|
1293
|
+
|
|
1294
|
+
# unit tests for stages_email_update
|
|
1295
|
+
# EmailStage Viewset
|
|
1296
|
+
# @param stage_uuid A UUID string identifying this Email Stage.
|
|
1297
|
+
# @param email_stage_request
|
|
1298
|
+
# @param [Hash] opts the optional parameters
|
|
1299
|
+
# @return [EmailStage]
|
|
1300
|
+
describe 'stages_email_update test' do
|
|
1301
|
+
it 'should work' do
|
|
1302
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
1303
|
+
end
|
|
1304
|
+
end
|
|
1305
|
+
|
|
1306
|
+
# unit tests for stages_email_used_by_list
|
|
1307
|
+
# Get a list of all objects that use this object
|
|
1308
|
+
# @param stage_uuid A UUID string identifying this Email Stage.
|
|
1309
|
+
# @param [Hash] opts the optional parameters
|
|
1310
|
+
# @return [Array<UsedBy>]
|
|
1311
|
+
describe 'stages_email_used_by_list test' do
|
|
1312
|
+
it 'should work' do
|
|
1313
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
1314
|
+
end
|
|
1315
|
+
end
|
|
1316
|
+
|
|
1317
|
+
# unit tests for stages_endpoints_create
|
|
1318
|
+
# EndpointStage Viewset
|
|
1319
|
+
# @param endpoint_stage_request
|
|
1320
|
+
# @param [Hash] opts the optional parameters
|
|
1321
|
+
# @return [EndpointStage]
|
|
1322
|
+
describe 'stages_endpoints_create 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 stages_endpoints_destroy
|
|
1329
|
+
# EndpointStage Viewset
|
|
1330
|
+
# @param stage_uuid A UUID string identifying this Endpoint Stage.
|
|
1331
|
+
# @param [Hash] opts the optional parameters
|
|
1332
|
+
# @return [nil]
|
|
1333
|
+
describe 'stages_endpoints_destroy 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 stages_endpoints_list
|
|
1340
|
+
# EndpointStage Viewset
|
|
1341
|
+
# @param [Hash] opts the optional parameters
|
|
1342
|
+
# @option opts [String] :name
|
|
1343
|
+
# @option opts [String] :ordering Which field to use when ordering the results.
|
|
1344
|
+
# @option opts [Integer] :page A page number within the paginated result set.
|
|
1345
|
+
# @option opts [Integer] :page_size Number of results to return per page.
|
|
1346
|
+
# @option opts [String] :search A search term.
|
|
1347
|
+
# @return [PaginatedEndpointStageList]
|
|
1348
|
+
describe 'stages_endpoints_list test' do
|
|
1349
|
+
it 'should work' do
|
|
1350
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
1351
|
+
end
|
|
1352
|
+
end
|
|
1353
|
+
|
|
1354
|
+
# unit tests for stages_endpoints_partial_update
|
|
1355
|
+
# EndpointStage Viewset
|
|
1356
|
+
# @param stage_uuid A UUID string identifying this Endpoint Stage.
|
|
1357
|
+
# @param [Hash] opts the optional parameters
|
|
1358
|
+
# @option opts [PatchedEndpointStageRequest] :patched_endpoint_stage_request
|
|
1359
|
+
# @return [EndpointStage]
|
|
1360
|
+
describe 'stages_endpoints_partial_update test' do
|
|
1361
|
+
it 'should work' do
|
|
1362
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
1363
|
+
end
|
|
1364
|
+
end
|
|
1365
|
+
|
|
1366
|
+
# unit tests for stages_endpoints_retrieve
|
|
1367
|
+
# EndpointStage Viewset
|
|
1368
|
+
# @param stage_uuid A UUID string identifying this Endpoint Stage.
|
|
1369
|
+
# @param [Hash] opts the optional parameters
|
|
1370
|
+
# @return [EndpointStage]
|
|
1371
|
+
describe 'stages_endpoints_retrieve test' do
|
|
1372
|
+
it 'should work' do
|
|
1373
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
1374
|
+
end
|
|
1375
|
+
end
|
|
1376
|
+
|
|
1377
|
+
# unit tests for stages_endpoints_update
|
|
1378
|
+
# EndpointStage Viewset
|
|
1379
|
+
# @param stage_uuid A UUID string identifying this Endpoint Stage.
|
|
1380
|
+
# @param endpoint_stage_request
|
|
1381
|
+
# @param [Hash] opts the optional parameters
|
|
1382
|
+
# @return [EndpointStage]
|
|
1383
|
+
describe 'stages_endpoints_update test' do
|
|
1384
|
+
it 'should work' do
|
|
1385
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
1386
|
+
end
|
|
1387
|
+
end
|
|
1388
|
+
|
|
1389
|
+
# unit tests for stages_endpoints_used_by_list
|
|
1390
|
+
# Get a list of all objects that use this object
|
|
1391
|
+
# @param stage_uuid A UUID string identifying this Endpoint Stage.
|
|
1392
|
+
# @param [Hash] opts the optional parameters
|
|
1393
|
+
# @return [Array<UsedBy>]
|
|
1394
|
+
describe 'stages_endpoints_used_by_list test' do
|
|
1395
|
+
it 'should work' do
|
|
1396
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
1397
|
+
end
|
|
1398
|
+
end
|
|
1399
|
+
|
|
1400
|
+
# unit tests for stages_identification_create
|
|
1401
|
+
# IdentificationStage Viewset
|
|
1402
|
+
# @param identification_stage_request
|
|
1403
|
+
# @param [Hash] opts the optional parameters
|
|
1404
|
+
# @return [IdentificationStage]
|
|
1405
|
+
describe 'stages_identification_create test' do
|
|
1406
|
+
it 'should work' do
|
|
1407
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
1408
|
+
end
|
|
1409
|
+
end
|
|
1410
|
+
|
|
1411
|
+
# unit tests for stages_identification_destroy
|
|
1412
|
+
# IdentificationStage Viewset
|
|
1413
|
+
# @param stage_uuid A UUID string identifying this Identification Stage.
|
|
1414
|
+
# @param [Hash] opts the optional parameters
|
|
1415
|
+
# @return [nil]
|
|
1416
|
+
describe 'stages_identification_destroy test' do
|
|
1417
|
+
it 'should work' do
|
|
1418
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
1419
|
+
end
|
|
1420
|
+
end
|
|
1421
|
+
|
|
1422
|
+
# unit tests for stages_identification_list
|
|
1423
|
+
# IdentificationStage Viewset
|
|
1424
|
+
# @param [Hash] opts the optional parameters
|
|
1425
|
+
# @option opts [String] :captcha_stage
|
|
1426
|
+
# @option opts [Boolean] :case_insensitive_matching
|
|
1427
|
+
# @option opts [String] :enrollment_flow
|
|
1428
|
+
# @option opts [String] :name
|
|
1429
|
+
# @option opts [String] :ordering Which field to use when ordering the results.
|
|
1430
|
+
# @option opts [Integer] :page A page number within the paginated result set.
|
|
1431
|
+
# @option opts [Integer] :page_size Number of results to return per page.
|
|
1432
|
+
# @option opts [String] :password_stage
|
|
1433
|
+
# @option opts [String] :passwordless_flow
|
|
1434
|
+
# @option opts [String] :recovery_flow
|
|
1435
|
+
# @option opts [String] :search A search term.
|
|
1436
|
+
# @option opts [Boolean] :show_matched_user
|
|
1437
|
+
# @option opts [Boolean] :show_source_labels
|
|
1438
|
+
# @option opts [String] :webauthn_stage
|
|
1439
|
+
# @return [PaginatedIdentificationStageList]
|
|
1440
|
+
describe 'stages_identification_list test' do
|
|
1441
|
+
it 'should work' do
|
|
1442
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
1443
|
+
end
|
|
1444
|
+
end
|
|
1445
|
+
|
|
1446
|
+
# unit tests for stages_identification_partial_update
|
|
1447
|
+
# IdentificationStage Viewset
|
|
1448
|
+
# @param stage_uuid A UUID string identifying this Identification Stage.
|
|
1449
|
+
# @param [Hash] opts the optional parameters
|
|
1450
|
+
# @option opts [PatchedIdentificationStageRequest] :patched_identification_stage_request
|
|
1451
|
+
# @return [IdentificationStage]
|
|
1452
|
+
describe 'stages_identification_partial_update test' do
|
|
1453
|
+
it 'should work' do
|
|
1454
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
1455
|
+
end
|
|
1456
|
+
end
|
|
1457
|
+
|
|
1458
|
+
# unit tests for stages_identification_retrieve
|
|
1459
|
+
# IdentificationStage Viewset
|
|
1460
|
+
# @param stage_uuid A UUID string identifying this Identification Stage.
|
|
1461
|
+
# @param [Hash] opts the optional parameters
|
|
1462
|
+
# @return [IdentificationStage]
|
|
1463
|
+
describe 'stages_identification_retrieve test' do
|
|
1464
|
+
it 'should work' do
|
|
1465
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
1466
|
+
end
|
|
1467
|
+
end
|
|
1468
|
+
|
|
1469
|
+
# unit tests for stages_identification_update
|
|
1470
|
+
# IdentificationStage Viewset
|
|
1471
|
+
# @param stage_uuid A UUID string identifying this Identification Stage.
|
|
1472
|
+
# @param identification_stage_request
|
|
1473
|
+
# @param [Hash] opts the optional parameters
|
|
1474
|
+
# @return [IdentificationStage]
|
|
1475
|
+
describe 'stages_identification_update test' do
|
|
1476
|
+
it 'should work' do
|
|
1477
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
1478
|
+
end
|
|
1479
|
+
end
|
|
1480
|
+
|
|
1481
|
+
# unit tests for stages_identification_used_by_list
|
|
1482
|
+
# Get a list of all objects that use this object
|
|
1483
|
+
# @param stage_uuid A UUID string identifying this Identification Stage.
|
|
1484
|
+
# @param [Hash] opts the optional parameters
|
|
1485
|
+
# @return [Array<UsedBy>]
|
|
1486
|
+
describe 'stages_identification_used_by_list test' do
|
|
1487
|
+
it 'should work' do
|
|
1488
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
1489
|
+
end
|
|
1490
|
+
end
|
|
1491
|
+
|
|
1492
|
+
# unit tests for stages_invitation_invitations_create
|
|
1493
|
+
# Invitation Viewset
|
|
1494
|
+
# @param invitation_request
|
|
1495
|
+
# @param [Hash] opts the optional parameters
|
|
1496
|
+
# @return [Invitation]
|
|
1497
|
+
describe 'stages_invitation_invitations_create test' do
|
|
1498
|
+
it 'should work' do
|
|
1499
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
1500
|
+
end
|
|
1501
|
+
end
|
|
1502
|
+
|
|
1503
|
+
# unit tests for stages_invitation_invitations_destroy
|
|
1504
|
+
# Invitation Viewset
|
|
1505
|
+
# @param invite_uuid A UUID string identifying this Invitation.
|
|
1506
|
+
# @param [Hash] opts the optional parameters
|
|
1507
|
+
# @return [nil]
|
|
1508
|
+
describe 'stages_invitation_invitations_destroy test' do
|
|
1509
|
+
it 'should work' do
|
|
1510
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
1511
|
+
end
|
|
1512
|
+
end
|
|
1513
|
+
|
|
1514
|
+
# unit tests for stages_invitation_invitations_list
|
|
1515
|
+
# Invitation Viewset
|
|
1516
|
+
# @param [Hash] opts the optional parameters
|
|
1517
|
+
# @option opts [String] :created_by__username
|
|
1518
|
+
# @option opts [Time] :expires
|
|
1519
|
+
# @option opts [String] :flow__slug
|
|
1520
|
+
# @option opts [String] :name
|
|
1521
|
+
# @option opts [String] :ordering Which field to use when ordering the results.
|
|
1522
|
+
# @option opts [Integer] :page A page number within the paginated result set.
|
|
1523
|
+
# @option opts [Integer] :page_size Number of results to return per page.
|
|
1524
|
+
# @option opts [String] :search A search term.
|
|
1525
|
+
# @return [PaginatedInvitationList]
|
|
1526
|
+
describe 'stages_invitation_invitations_list test' do
|
|
1527
|
+
it 'should work' do
|
|
1528
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
1529
|
+
end
|
|
1530
|
+
end
|
|
1531
|
+
|
|
1532
|
+
# unit tests for stages_invitation_invitations_partial_update
|
|
1533
|
+
# Invitation Viewset
|
|
1534
|
+
# @param invite_uuid A UUID string identifying this Invitation.
|
|
1535
|
+
# @param [Hash] opts the optional parameters
|
|
1536
|
+
# @option opts [PatchedInvitationRequest] :patched_invitation_request
|
|
1537
|
+
# @return [Invitation]
|
|
1538
|
+
describe 'stages_invitation_invitations_partial_update 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 stages_invitation_invitations_retrieve
|
|
1545
|
+
# Invitation Viewset
|
|
1546
|
+
# @param invite_uuid A UUID string identifying this Invitation.
|
|
1547
|
+
# @param [Hash] opts the optional parameters
|
|
1548
|
+
# @return [Invitation]
|
|
1549
|
+
describe 'stages_invitation_invitations_retrieve test' do
|
|
1550
|
+
it 'should work' do
|
|
1551
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
1552
|
+
end
|
|
1553
|
+
end
|
|
1554
|
+
|
|
1555
|
+
# unit tests for stages_invitation_invitations_update
|
|
1556
|
+
# Invitation Viewset
|
|
1557
|
+
# @param invite_uuid A UUID string identifying this Invitation.
|
|
1558
|
+
# @param invitation_request
|
|
1559
|
+
# @param [Hash] opts the optional parameters
|
|
1560
|
+
# @return [Invitation]
|
|
1561
|
+
describe 'stages_invitation_invitations_update test' do
|
|
1562
|
+
it 'should work' do
|
|
1563
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
1564
|
+
end
|
|
1565
|
+
end
|
|
1566
|
+
|
|
1567
|
+
# unit tests for stages_invitation_invitations_used_by_list
|
|
1568
|
+
# Get a list of all objects that use this object
|
|
1569
|
+
# @param invite_uuid A UUID string identifying this Invitation.
|
|
1570
|
+
# @param [Hash] opts the optional parameters
|
|
1571
|
+
# @return [Array<UsedBy>]
|
|
1572
|
+
describe 'stages_invitation_invitations_used_by_list test' do
|
|
1573
|
+
it 'should work' do
|
|
1574
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
1575
|
+
end
|
|
1576
|
+
end
|
|
1577
|
+
|
|
1578
|
+
# unit tests for stages_invitation_stages_create
|
|
1579
|
+
# InvitationStage Viewset
|
|
1580
|
+
# @param invitation_stage_request
|
|
1581
|
+
# @param [Hash] opts the optional parameters
|
|
1582
|
+
# @return [InvitationStage]
|
|
1583
|
+
describe 'stages_invitation_stages_create test' do
|
|
1584
|
+
it 'should work' do
|
|
1585
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
1586
|
+
end
|
|
1587
|
+
end
|
|
1588
|
+
|
|
1589
|
+
# unit tests for stages_invitation_stages_destroy
|
|
1590
|
+
# InvitationStage Viewset
|
|
1591
|
+
# @param stage_uuid A UUID string identifying this Invitation Stage.
|
|
1592
|
+
# @param [Hash] opts the optional parameters
|
|
1593
|
+
# @return [nil]
|
|
1594
|
+
describe 'stages_invitation_stages_destroy test' do
|
|
1595
|
+
it 'should work' do
|
|
1596
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
1597
|
+
end
|
|
1598
|
+
end
|
|
1599
|
+
|
|
1600
|
+
# unit tests for stages_invitation_stages_list
|
|
1601
|
+
# InvitationStage Viewset
|
|
1602
|
+
# @param [Hash] opts the optional parameters
|
|
1603
|
+
# @option opts [Boolean] :continue_flow_without_invitation
|
|
1604
|
+
# @option opts [String] :name
|
|
1605
|
+
# @option opts [Boolean] :no_flows
|
|
1606
|
+
# @option opts [String] :ordering Which field to use when ordering the results.
|
|
1607
|
+
# @option opts [Integer] :page A page number within the paginated result set.
|
|
1608
|
+
# @option opts [Integer] :page_size Number of results to return per page.
|
|
1609
|
+
# @option opts [String] :search A search term.
|
|
1610
|
+
# @option opts [String] :stage_uuid
|
|
1611
|
+
# @return [PaginatedInvitationStageList]
|
|
1612
|
+
describe 'stages_invitation_stages_list test' do
|
|
1613
|
+
it 'should work' do
|
|
1614
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
1615
|
+
end
|
|
1616
|
+
end
|
|
1617
|
+
|
|
1618
|
+
# unit tests for stages_invitation_stages_partial_update
|
|
1619
|
+
# InvitationStage Viewset
|
|
1620
|
+
# @param stage_uuid A UUID string identifying this Invitation Stage.
|
|
1621
|
+
# @param [Hash] opts the optional parameters
|
|
1622
|
+
# @option opts [PatchedInvitationStageRequest] :patched_invitation_stage_request
|
|
1623
|
+
# @return [InvitationStage]
|
|
1624
|
+
describe 'stages_invitation_stages_partial_update test' do
|
|
1625
|
+
it 'should work' do
|
|
1626
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
1627
|
+
end
|
|
1628
|
+
end
|
|
1629
|
+
|
|
1630
|
+
# unit tests for stages_invitation_stages_retrieve
|
|
1631
|
+
# InvitationStage Viewset
|
|
1632
|
+
# @param stage_uuid A UUID string identifying this Invitation Stage.
|
|
1633
|
+
# @param [Hash] opts the optional parameters
|
|
1634
|
+
# @return [InvitationStage]
|
|
1635
|
+
describe 'stages_invitation_stages_retrieve test' do
|
|
1636
|
+
it 'should work' do
|
|
1637
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
1638
|
+
end
|
|
1639
|
+
end
|
|
1640
|
+
|
|
1641
|
+
# unit tests for stages_invitation_stages_update
|
|
1642
|
+
# InvitationStage Viewset
|
|
1643
|
+
# @param stage_uuid A UUID string identifying this Invitation Stage.
|
|
1644
|
+
# @param invitation_stage_request
|
|
1645
|
+
# @param [Hash] opts the optional parameters
|
|
1646
|
+
# @return [InvitationStage]
|
|
1647
|
+
describe 'stages_invitation_stages_update test' do
|
|
1648
|
+
it 'should work' do
|
|
1649
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
1650
|
+
end
|
|
1651
|
+
end
|
|
1652
|
+
|
|
1653
|
+
# unit tests for stages_invitation_stages_used_by_list
|
|
1654
|
+
# Get a list of all objects that use this object
|
|
1655
|
+
# @param stage_uuid A UUID string identifying this Invitation Stage.
|
|
1656
|
+
# @param [Hash] opts the optional parameters
|
|
1657
|
+
# @return [Array<UsedBy>]
|
|
1658
|
+
describe 'stages_invitation_stages_used_by_list test' do
|
|
1659
|
+
it 'should work' do
|
|
1660
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
1661
|
+
end
|
|
1662
|
+
end
|
|
1663
|
+
|
|
1664
|
+
# unit tests for stages_mtls_create
|
|
1665
|
+
# MutualTLSStage Viewset
|
|
1666
|
+
# @param mutual_tls_stage_request
|
|
1667
|
+
# @param [Hash] opts the optional parameters
|
|
1668
|
+
# @return [MutualTLSStage]
|
|
1669
|
+
describe 'stages_mtls_create test' do
|
|
1670
|
+
it 'should work' do
|
|
1671
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
1672
|
+
end
|
|
1673
|
+
end
|
|
1674
|
+
|
|
1675
|
+
# unit tests for stages_mtls_destroy
|
|
1676
|
+
# MutualTLSStage Viewset
|
|
1677
|
+
# @param stage_uuid A UUID string identifying this Mutual TLS Stage.
|
|
1678
|
+
# @param [Hash] opts the optional parameters
|
|
1679
|
+
# @return [nil]
|
|
1680
|
+
describe 'stages_mtls_destroy test' do
|
|
1681
|
+
it 'should work' do
|
|
1682
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
1683
|
+
end
|
|
1684
|
+
end
|
|
1685
|
+
|
|
1686
|
+
# unit tests for stages_mtls_list
|
|
1687
|
+
# MutualTLSStage Viewset
|
|
1688
|
+
# @param [Hash] opts the optional parameters
|
|
1689
|
+
# @option opts [String] :cert_attribute
|
|
1690
|
+
# @option opts [Array<String>] :certificate_authorities
|
|
1691
|
+
# @option opts [String] :mode
|
|
1692
|
+
# @option opts [String] :name
|
|
1693
|
+
# @option opts [String] :ordering Which field to use when ordering the results.
|
|
1694
|
+
# @option opts [Integer] :page A page number within the paginated result set.
|
|
1695
|
+
# @option opts [Integer] :page_size Number of results to return per page.
|
|
1696
|
+
# @option opts [String] :search A search term.
|
|
1697
|
+
# @option opts [String] :stage_uuid
|
|
1698
|
+
# @option opts [String] :user_attribute
|
|
1699
|
+
# @return [PaginatedMutualTLSStageList]
|
|
1700
|
+
describe 'stages_mtls_list test' do
|
|
1701
|
+
it 'should work' do
|
|
1702
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
1703
|
+
end
|
|
1704
|
+
end
|
|
1705
|
+
|
|
1706
|
+
# unit tests for stages_mtls_partial_update
|
|
1707
|
+
# MutualTLSStage Viewset
|
|
1708
|
+
# @param stage_uuid A UUID string identifying this Mutual TLS Stage.
|
|
1709
|
+
# @param [Hash] opts the optional parameters
|
|
1710
|
+
# @option opts [PatchedMutualTLSStageRequest] :patched_mutual_tls_stage_request
|
|
1711
|
+
# @return [MutualTLSStage]
|
|
1712
|
+
describe 'stages_mtls_partial_update test' do
|
|
1713
|
+
it 'should work' do
|
|
1714
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
1715
|
+
end
|
|
1716
|
+
end
|
|
1717
|
+
|
|
1718
|
+
# unit tests for stages_mtls_retrieve
|
|
1719
|
+
# MutualTLSStage Viewset
|
|
1720
|
+
# @param stage_uuid A UUID string identifying this Mutual TLS Stage.
|
|
1721
|
+
# @param [Hash] opts the optional parameters
|
|
1722
|
+
# @return [MutualTLSStage]
|
|
1723
|
+
describe 'stages_mtls_retrieve test' do
|
|
1724
|
+
it 'should work' do
|
|
1725
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
1726
|
+
end
|
|
1727
|
+
end
|
|
1728
|
+
|
|
1729
|
+
# unit tests for stages_mtls_update
|
|
1730
|
+
# MutualTLSStage Viewset
|
|
1731
|
+
# @param stage_uuid A UUID string identifying this Mutual TLS Stage.
|
|
1732
|
+
# @param mutual_tls_stage_request
|
|
1733
|
+
# @param [Hash] opts the optional parameters
|
|
1734
|
+
# @return [MutualTLSStage]
|
|
1735
|
+
describe 'stages_mtls_update test' do
|
|
1736
|
+
it 'should work' do
|
|
1737
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
1738
|
+
end
|
|
1739
|
+
end
|
|
1740
|
+
|
|
1741
|
+
# unit tests for stages_mtls_used_by_list
|
|
1742
|
+
# Get a list of all objects that use this object
|
|
1743
|
+
# @param stage_uuid A UUID string identifying this Mutual TLS Stage.
|
|
1744
|
+
# @param [Hash] opts the optional parameters
|
|
1745
|
+
# @return [Array<UsedBy>]
|
|
1746
|
+
describe 'stages_mtls_used_by_list test' do
|
|
1747
|
+
it 'should work' do
|
|
1748
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
1749
|
+
end
|
|
1750
|
+
end
|
|
1751
|
+
|
|
1752
|
+
# unit tests for stages_password_create
|
|
1753
|
+
# PasswordStage Viewset
|
|
1754
|
+
# @param password_stage_request
|
|
1755
|
+
# @param [Hash] opts the optional parameters
|
|
1756
|
+
# @return [PasswordStage]
|
|
1757
|
+
describe 'stages_password_create test' do
|
|
1758
|
+
it 'should work' do
|
|
1759
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
1760
|
+
end
|
|
1761
|
+
end
|
|
1762
|
+
|
|
1763
|
+
# unit tests for stages_password_destroy
|
|
1764
|
+
# PasswordStage Viewset
|
|
1765
|
+
# @param stage_uuid A UUID string identifying this Password Stage.
|
|
1766
|
+
# @param [Hash] opts the optional parameters
|
|
1767
|
+
# @return [nil]
|
|
1768
|
+
describe 'stages_password_destroy test' do
|
|
1769
|
+
it 'should work' do
|
|
1770
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
1771
|
+
end
|
|
1772
|
+
end
|
|
1773
|
+
|
|
1774
|
+
# unit tests for stages_password_list
|
|
1775
|
+
# PasswordStage Viewset
|
|
1776
|
+
# @param [Hash] opts the optional parameters
|
|
1777
|
+
# @option opts [Boolean] :allow_show_password
|
|
1778
|
+
# @option opts [String] :configure_flow
|
|
1779
|
+
# @option opts [Integer] :failed_attempts_before_cancel
|
|
1780
|
+
# @option opts [String] :name
|
|
1781
|
+
# @option opts [String] :ordering Which field to use when ordering the results.
|
|
1782
|
+
# @option opts [Integer] :page A page number within the paginated result set.
|
|
1783
|
+
# @option opts [Integer] :page_size Number of results to return per page.
|
|
1784
|
+
# @option opts [String] :search A search term.
|
|
1785
|
+
# @return [PaginatedPasswordStageList]
|
|
1786
|
+
describe 'stages_password_list test' do
|
|
1787
|
+
it 'should work' do
|
|
1788
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
1789
|
+
end
|
|
1790
|
+
end
|
|
1791
|
+
|
|
1792
|
+
# unit tests for stages_password_partial_update
|
|
1793
|
+
# PasswordStage Viewset
|
|
1794
|
+
# @param stage_uuid A UUID string identifying this Password Stage.
|
|
1795
|
+
# @param [Hash] opts the optional parameters
|
|
1796
|
+
# @option opts [PatchedPasswordStageRequest] :patched_password_stage_request
|
|
1797
|
+
# @return [PasswordStage]
|
|
1798
|
+
describe 'stages_password_partial_update test' do
|
|
1799
|
+
it 'should work' do
|
|
1800
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
1801
|
+
end
|
|
1802
|
+
end
|
|
1803
|
+
|
|
1804
|
+
# unit tests for stages_password_retrieve
|
|
1805
|
+
# PasswordStage Viewset
|
|
1806
|
+
# @param stage_uuid A UUID string identifying this Password Stage.
|
|
1807
|
+
# @param [Hash] opts the optional parameters
|
|
1808
|
+
# @return [PasswordStage]
|
|
1809
|
+
describe 'stages_password_retrieve test' do
|
|
1810
|
+
it 'should work' do
|
|
1811
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
1812
|
+
end
|
|
1813
|
+
end
|
|
1814
|
+
|
|
1815
|
+
# unit tests for stages_password_update
|
|
1816
|
+
# PasswordStage Viewset
|
|
1817
|
+
# @param stage_uuid A UUID string identifying this Password Stage.
|
|
1818
|
+
# @param password_stage_request
|
|
1819
|
+
# @param [Hash] opts the optional parameters
|
|
1820
|
+
# @return [PasswordStage]
|
|
1821
|
+
describe 'stages_password_update test' do
|
|
1822
|
+
it 'should work' do
|
|
1823
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
1824
|
+
end
|
|
1825
|
+
end
|
|
1826
|
+
|
|
1827
|
+
# unit tests for stages_password_used_by_list
|
|
1828
|
+
# Get a list of all objects that use this object
|
|
1829
|
+
# @param stage_uuid A UUID string identifying this Password Stage.
|
|
1830
|
+
# @param [Hash] opts the optional parameters
|
|
1831
|
+
# @return [Array<UsedBy>]
|
|
1832
|
+
describe 'stages_password_used_by_list test' do
|
|
1833
|
+
it 'should work' do
|
|
1834
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
1835
|
+
end
|
|
1836
|
+
end
|
|
1837
|
+
|
|
1838
|
+
# unit tests for stages_prompt_prompts_create
|
|
1839
|
+
# Prompt Viewset
|
|
1840
|
+
# @param prompt_request
|
|
1841
|
+
# @param [Hash] opts the optional parameters
|
|
1842
|
+
# @return [Prompt]
|
|
1843
|
+
describe 'stages_prompt_prompts_create test' do
|
|
1844
|
+
it 'should work' do
|
|
1845
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
1846
|
+
end
|
|
1847
|
+
end
|
|
1848
|
+
|
|
1849
|
+
# unit tests for stages_prompt_prompts_destroy
|
|
1850
|
+
# Prompt Viewset
|
|
1851
|
+
# @param prompt_uuid A UUID string identifying this Prompt.
|
|
1852
|
+
# @param [Hash] opts the optional parameters
|
|
1853
|
+
# @return [nil]
|
|
1854
|
+
describe 'stages_prompt_prompts_destroy test' do
|
|
1855
|
+
it 'should work' do
|
|
1856
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
1857
|
+
end
|
|
1858
|
+
end
|
|
1859
|
+
|
|
1860
|
+
# unit tests for stages_prompt_prompts_list
|
|
1861
|
+
# Prompt Viewset
|
|
1862
|
+
# @param [Hash] opts the optional parameters
|
|
1863
|
+
# @option opts [String] :field_key
|
|
1864
|
+
# @option opts [String] :label
|
|
1865
|
+
# @option opts [String] :name
|
|
1866
|
+
# @option opts [String] :ordering Which field to use when ordering the results.
|
|
1867
|
+
# @option opts [Integer] :page A page number within the paginated result set.
|
|
1868
|
+
# @option opts [Integer] :page_size Number of results to return per page.
|
|
1869
|
+
# @option opts [String] :placeholder
|
|
1870
|
+
# @option opts [String] :search A search term.
|
|
1871
|
+
# @option opts [String] :type
|
|
1872
|
+
# @return [PaginatedPromptList]
|
|
1873
|
+
describe 'stages_prompt_prompts_list test' do
|
|
1874
|
+
it 'should work' do
|
|
1875
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
1876
|
+
end
|
|
1877
|
+
end
|
|
1878
|
+
|
|
1879
|
+
# unit tests for stages_prompt_prompts_partial_update
|
|
1880
|
+
# Prompt Viewset
|
|
1881
|
+
# @param prompt_uuid A UUID string identifying this Prompt.
|
|
1882
|
+
# @param [Hash] opts the optional parameters
|
|
1883
|
+
# @option opts [PatchedPromptRequest] :patched_prompt_request
|
|
1884
|
+
# @return [Prompt]
|
|
1885
|
+
describe 'stages_prompt_prompts_partial_update test' do
|
|
1886
|
+
it 'should work' do
|
|
1887
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
1888
|
+
end
|
|
1889
|
+
end
|
|
1890
|
+
|
|
1891
|
+
# unit tests for stages_prompt_prompts_preview_create
|
|
1892
|
+
# Preview a prompt as a challenge, just like a flow would receive
|
|
1893
|
+
# @param prompt_request
|
|
1894
|
+
# @param [Hash] opts the optional parameters
|
|
1895
|
+
# @return [PromptChallenge]
|
|
1896
|
+
describe 'stages_prompt_prompts_preview_create test' do
|
|
1897
|
+
it 'should work' do
|
|
1898
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
1899
|
+
end
|
|
1900
|
+
end
|
|
1901
|
+
|
|
1902
|
+
# unit tests for stages_prompt_prompts_retrieve
|
|
1903
|
+
# Prompt Viewset
|
|
1904
|
+
# @param prompt_uuid A UUID string identifying this Prompt.
|
|
1905
|
+
# @param [Hash] opts the optional parameters
|
|
1906
|
+
# @return [Prompt]
|
|
1907
|
+
describe 'stages_prompt_prompts_retrieve test' do
|
|
1908
|
+
it 'should work' do
|
|
1909
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
1910
|
+
end
|
|
1911
|
+
end
|
|
1912
|
+
|
|
1913
|
+
# unit tests for stages_prompt_prompts_update
|
|
1914
|
+
# Prompt Viewset
|
|
1915
|
+
# @param prompt_uuid A UUID string identifying this Prompt.
|
|
1916
|
+
# @param prompt_request
|
|
1917
|
+
# @param [Hash] opts the optional parameters
|
|
1918
|
+
# @return [Prompt]
|
|
1919
|
+
describe 'stages_prompt_prompts_update test' do
|
|
1920
|
+
it 'should work' do
|
|
1921
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
1922
|
+
end
|
|
1923
|
+
end
|
|
1924
|
+
|
|
1925
|
+
# unit tests for stages_prompt_prompts_used_by_list
|
|
1926
|
+
# Get a list of all objects that use this object
|
|
1927
|
+
# @param prompt_uuid A UUID string identifying this Prompt.
|
|
1928
|
+
# @param [Hash] opts the optional parameters
|
|
1929
|
+
# @return [Array<UsedBy>]
|
|
1930
|
+
describe 'stages_prompt_prompts_used_by_list test' do
|
|
1931
|
+
it 'should work' do
|
|
1932
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
1933
|
+
end
|
|
1934
|
+
end
|
|
1935
|
+
|
|
1936
|
+
# unit tests for stages_prompt_stages_create
|
|
1937
|
+
# PromptStage Viewset
|
|
1938
|
+
# @param prompt_stage_request
|
|
1939
|
+
# @param [Hash] opts the optional parameters
|
|
1940
|
+
# @return [PromptStage]
|
|
1941
|
+
describe 'stages_prompt_stages_create test' do
|
|
1942
|
+
it 'should work' do
|
|
1943
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
1944
|
+
end
|
|
1945
|
+
end
|
|
1946
|
+
|
|
1947
|
+
# unit tests for stages_prompt_stages_destroy
|
|
1948
|
+
# PromptStage Viewset
|
|
1949
|
+
# @param stage_uuid A UUID string identifying this Prompt Stage.
|
|
1950
|
+
# @param [Hash] opts the optional parameters
|
|
1951
|
+
# @return [nil]
|
|
1952
|
+
describe 'stages_prompt_stages_destroy test' do
|
|
1953
|
+
it 'should work' do
|
|
1954
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
1955
|
+
end
|
|
1956
|
+
end
|
|
1957
|
+
|
|
1958
|
+
# unit tests for stages_prompt_stages_list
|
|
1959
|
+
# PromptStage Viewset
|
|
1960
|
+
# @param [Hash] opts the optional parameters
|
|
1961
|
+
# @option opts [Array<String>] :fields
|
|
1962
|
+
# @option opts [String] :name
|
|
1963
|
+
# @option opts [String] :ordering Which field to use when ordering the results.
|
|
1964
|
+
# @option opts [Integer] :page A page number within the paginated result set.
|
|
1965
|
+
# @option opts [Integer] :page_size Number of results to return per page.
|
|
1966
|
+
# @option opts [String] :search A search term.
|
|
1967
|
+
# @option opts [String] :stage_uuid
|
|
1968
|
+
# @option opts [Array<String>] :validation_policies
|
|
1969
|
+
# @return [PaginatedPromptStageList]
|
|
1970
|
+
describe 'stages_prompt_stages_list test' do
|
|
1971
|
+
it 'should work' do
|
|
1972
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
1973
|
+
end
|
|
1974
|
+
end
|
|
1975
|
+
|
|
1976
|
+
# unit tests for stages_prompt_stages_partial_update
|
|
1977
|
+
# PromptStage Viewset
|
|
1978
|
+
# @param stage_uuid A UUID string identifying this Prompt Stage.
|
|
1979
|
+
# @param [Hash] opts the optional parameters
|
|
1980
|
+
# @option opts [PatchedPromptStageRequest] :patched_prompt_stage_request
|
|
1981
|
+
# @return [PromptStage]
|
|
1982
|
+
describe 'stages_prompt_stages_partial_update test' do
|
|
1983
|
+
it 'should work' do
|
|
1984
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
1985
|
+
end
|
|
1986
|
+
end
|
|
1987
|
+
|
|
1988
|
+
# unit tests for stages_prompt_stages_retrieve
|
|
1989
|
+
# PromptStage Viewset
|
|
1990
|
+
# @param stage_uuid A UUID string identifying this Prompt Stage.
|
|
1991
|
+
# @param [Hash] opts the optional parameters
|
|
1992
|
+
# @return [PromptStage]
|
|
1993
|
+
describe 'stages_prompt_stages_retrieve test' do
|
|
1994
|
+
it 'should work' do
|
|
1995
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
1996
|
+
end
|
|
1997
|
+
end
|
|
1998
|
+
|
|
1999
|
+
# unit tests for stages_prompt_stages_update
|
|
2000
|
+
# PromptStage Viewset
|
|
2001
|
+
# @param stage_uuid A UUID string identifying this Prompt Stage.
|
|
2002
|
+
# @param prompt_stage_request
|
|
2003
|
+
# @param [Hash] opts the optional parameters
|
|
2004
|
+
# @return [PromptStage]
|
|
2005
|
+
describe 'stages_prompt_stages_update test' do
|
|
2006
|
+
it 'should work' do
|
|
2007
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
2008
|
+
end
|
|
2009
|
+
end
|
|
2010
|
+
|
|
2011
|
+
# unit tests for stages_prompt_stages_used_by_list
|
|
2012
|
+
# Get a list of all objects that use this object
|
|
2013
|
+
# @param stage_uuid A UUID string identifying this Prompt Stage.
|
|
2014
|
+
# @param [Hash] opts the optional parameters
|
|
2015
|
+
# @return [Array<UsedBy>]
|
|
2016
|
+
describe 'stages_prompt_stages_used_by_list test' do
|
|
2017
|
+
it 'should work' do
|
|
2018
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
2019
|
+
end
|
|
2020
|
+
end
|
|
2021
|
+
|
|
2022
|
+
# unit tests for stages_redirect_create
|
|
2023
|
+
# RedirectStage Viewset
|
|
2024
|
+
# @param redirect_stage_request
|
|
2025
|
+
# @param [Hash] opts the optional parameters
|
|
2026
|
+
# @return [RedirectStage]
|
|
2027
|
+
describe 'stages_redirect_create test' do
|
|
2028
|
+
it 'should work' do
|
|
2029
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
2030
|
+
end
|
|
2031
|
+
end
|
|
2032
|
+
|
|
2033
|
+
# unit tests for stages_redirect_destroy
|
|
2034
|
+
# RedirectStage Viewset
|
|
2035
|
+
# @param stage_uuid A UUID string identifying this Redirect Stage.
|
|
2036
|
+
# @param [Hash] opts the optional parameters
|
|
2037
|
+
# @return [nil]
|
|
2038
|
+
describe 'stages_redirect_destroy test' do
|
|
2039
|
+
it 'should work' do
|
|
2040
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
2041
|
+
end
|
|
2042
|
+
end
|
|
2043
|
+
|
|
2044
|
+
# unit tests for stages_redirect_list
|
|
2045
|
+
# RedirectStage Viewset
|
|
2046
|
+
# @param [Hash] opts the optional parameters
|
|
2047
|
+
# @option opts [String] :name
|
|
2048
|
+
# @option opts [String] :ordering Which field to use when ordering the results.
|
|
2049
|
+
# @option opts [Integer] :page A page number within the paginated result set.
|
|
2050
|
+
# @option opts [Integer] :page_size Number of results to return per page.
|
|
2051
|
+
# @option opts [String] :search A search term.
|
|
2052
|
+
# @return [PaginatedRedirectStageList]
|
|
2053
|
+
describe 'stages_redirect_list test' do
|
|
2054
|
+
it 'should work' do
|
|
2055
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
2056
|
+
end
|
|
2057
|
+
end
|
|
2058
|
+
|
|
2059
|
+
# unit tests for stages_redirect_partial_update
|
|
2060
|
+
# RedirectStage Viewset
|
|
2061
|
+
# @param stage_uuid A UUID string identifying this Redirect Stage.
|
|
2062
|
+
# @param [Hash] opts the optional parameters
|
|
2063
|
+
# @option opts [PatchedRedirectStageRequest] :patched_redirect_stage_request
|
|
2064
|
+
# @return [RedirectStage]
|
|
2065
|
+
describe 'stages_redirect_partial_update test' do
|
|
2066
|
+
it 'should work' do
|
|
2067
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
2068
|
+
end
|
|
2069
|
+
end
|
|
2070
|
+
|
|
2071
|
+
# unit tests for stages_redirect_retrieve
|
|
2072
|
+
# RedirectStage Viewset
|
|
2073
|
+
# @param stage_uuid A UUID string identifying this Redirect Stage.
|
|
2074
|
+
# @param [Hash] opts the optional parameters
|
|
2075
|
+
# @return [RedirectStage]
|
|
2076
|
+
describe 'stages_redirect_retrieve test' do
|
|
2077
|
+
it 'should work' do
|
|
2078
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
2079
|
+
end
|
|
2080
|
+
end
|
|
2081
|
+
|
|
2082
|
+
# unit tests for stages_redirect_update
|
|
2083
|
+
# RedirectStage Viewset
|
|
2084
|
+
# @param stage_uuid A UUID string identifying this Redirect Stage.
|
|
2085
|
+
# @param redirect_stage_request
|
|
2086
|
+
# @param [Hash] opts the optional parameters
|
|
2087
|
+
# @return [RedirectStage]
|
|
2088
|
+
describe 'stages_redirect_update test' do
|
|
2089
|
+
it 'should work' do
|
|
2090
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
2091
|
+
end
|
|
2092
|
+
end
|
|
2093
|
+
|
|
2094
|
+
# unit tests for stages_redirect_used_by_list
|
|
2095
|
+
# Get a list of all objects that use this object
|
|
2096
|
+
# @param stage_uuid A UUID string identifying this Redirect Stage.
|
|
2097
|
+
# @param [Hash] opts the optional parameters
|
|
2098
|
+
# @return [Array<UsedBy>]
|
|
2099
|
+
describe 'stages_redirect_used_by_list test' do
|
|
2100
|
+
it 'should work' do
|
|
2101
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
2102
|
+
end
|
|
2103
|
+
end
|
|
2104
|
+
|
|
2105
|
+
# unit tests for stages_source_create
|
|
2106
|
+
# SourceStage Viewset
|
|
2107
|
+
# @param source_stage_request
|
|
2108
|
+
# @param [Hash] opts the optional parameters
|
|
2109
|
+
# @return [SourceStage]
|
|
2110
|
+
describe 'stages_source_create test' do
|
|
2111
|
+
it 'should work' do
|
|
2112
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
2113
|
+
end
|
|
2114
|
+
end
|
|
2115
|
+
|
|
2116
|
+
# unit tests for stages_source_destroy
|
|
2117
|
+
# SourceStage Viewset
|
|
2118
|
+
# @param stage_uuid A UUID string identifying this Source Stage.
|
|
2119
|
+
# @param [Hash] opts the optional parameters
|
|
2120
|
+
# @return [nil]
|
|
2121
|
+
describe 'stages_source_destroy test' do
|
|
2122
|
+
it 'should work' do
|
|
2123
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
2124
|
+
end
|
|
2125
|
+
end
|
|
2126
|
+
|
|
2127
|
+
# unit tests for stages_source_list
|
|
2128
|
+
# SourceStage Viewset
|
|
2129
|
+
# @param [Hash] opts the optional parameters
|
|
2130
|
+
# @option opts [String] :name
|
|
2131
|
+
# @option opts [String] :ordering Which field to use when ordering the results.
|
|
2132
|
+
# @option opts [Integer] :page A page number within the paginated result set.
|
|
2133
|
+
# @option opts [Integer] :page_size Number of results to return per page.
|
|
2134
|
+
# @option opts [String] :resume_timeout
|
|
2135
|
+
# @option opts [String] :search A search term.
|
|
2136
|
+
# @option opts [String] :source
|
|
2137
|
+
# @option opts [String] :stage_uuid
|
|
2138
|
+
# @return [PaginatedSourceStageList]
|
|
2139
|
+
describe 'stages_source_list test' do
|
|
2140
|
+
it 'should work' do
|
|
2141
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
2142
|
+
end
|
|
2143
|
+
end
|
|
2144
|
+
|
|
2145
|
+
# unit tests for stages_source_partial_update
|
|
2146
|
+
# SourceStage Viewset
|
|
2147
|
+
# @param stage_uuid A UUID string identifying this Source Stage.
|
|
2148
|
+
# @param [Hash] opts the optional parameters
|
|
2149
|
+
# @option opts [PatchedSourceStageRequest] :patched_source_stage_request
|
|
2150
|
+
# @return [SourceStage]
|
|
2151
|
+
describe 'stages_source_partial_update test' do
|
|
2152
|
+
it 'should work' do
|
|
2153
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
2154
|
+
end
|
|
2155
|
+
end
|
|
2156
|
+
|
|
2157
|
+
# unit tests for stages_source_retrieve
|
|
2158
|
+
# SourceStage Viewset
|
|
2159
|
+
# @param stage_uuid A UUID string identifying this Source Stage.
|
|
2160
|
+
# @param [Hash] opts the optional parameters
|
|
2161
|
+
# @return [SourceStage]
|
|
2162
|
+
describe 'stages_source_retrieve test' do
|
|
2163
|
+
it 'should work' do
|
|
2164
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
2165
|
+
end
|
|
2166
|
+
end
|
|
2167
|
+
|
|
2168
|
+
# unit tests for stages_source_update
|
|
2169
|
+
# SourceStage Viewset
|
|
2170
|
+
# @param stage_uuid A UUID string identifying this Source Stage.
|
|
2171
|
+
# @param source_stage_request
|
|
2172
|
+
# @param [Hash] opts the optional parameters
|
|
2173
|
+
# @return [SourceStage]
|
|
2174
|
+
describe 'stages_source_update test' do
|
|
2175
|
+
it 'should work' do
|
|
2176
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
2177
|
+
end
|
|
2178
|
+
end
|
|
2179
|
+
|
|
2180
|
+
# unit tests for stages_source_used_by_list
|
|
2181
|
+
# Get a list of all objects that use this object
|
|
2182
|
+
# @param stage_uuid A UUID string identifying this Source Stage.
|
|
2183
|
+
# @param [Hash] opts the optional parameters
|
|
2184
|
+
# @return [Array<UsedBy>]
|
|
2185
|
+
describe 'stages_source_used_by_list test' do
|
|
2186
|
+
it 'should work' do
|
|
2187
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
2188
|
+
end
|
|
2189
|
+
end
|
|
2190
|
+
|
|
2191
|
+
# unit tests for stages_user_delete_create
|
|
2192
|
+
# UserDeleteStage Viewset
|
|
2193
|
+
# @param user_delete_stage_request
|
|
2194
|
+
# @param [Hash] opts the optional parameters
|
|
2195
|
+
# @return [UserDeleteStage]
|
|
2196
|
+
describe 'stages_user_delete_create test' do
|
|
2197
|
+
it 'should work' do
|
|
2198
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
2199
|
+
end
|
|
2200
|
+
end
|
|
2201
|
+
|
|
2202
|
+
# unit tests for stages_user_delete_destroy
|
|
2203
|
+
# UserDeleteStage Viewset
|
|
2204
|
+
# @param stage_uuid A UUID string identifying this User Delete Stage.
|
|
2205
|
+
# @param [Hash] opts the optional parameters
|
|
2206
|
+
# @return [nil]
|
|
2207
|
+
describe 'stages_user_delete_destroy test' do
|
|
2208
|
+
it 'should work' do
|
|
2209
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
2210
|
+
end
|
|
2211
|
+
end
|
|
2212
|
+
|
|
2213
|
+
# unit tests for stages_user_delete_list
|
|
2214
|
+
# UserDeleteStage Viewset
|
|
2215
|
+
# @param [Hash] opts the optional parameters
|
|
2216
|
+
# @option opts [String] :name
|
|
2217
|
+
# @option opts [String] :ordering Which field to use when ordering the results.
|
|
2218
|
+
# @option opts [Integer] :page A page number within the paginated result set.
|
|
2219
|
+
# @option opts [Integer] :page_size Number of results to return per page.
|
|
2220
|
+
# @option opts [String] :search A search term.
|
|
2221
|
+
# @option opts [String] :stage_uuid
|
|
2222
|
+
# @return [PaginatedUserDeleteStageList]
|
|
2223
|
+
describe 'stages_user_delete_list test' do
|
|
2224
|
+
it 'should work' do
|
|
2225
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
2226
|
+
end
|
|
2227
|
+
end
|
|
2228
|
+
|
|
2229
|
+
# unit tests for stages_user_delete_partial_update
|
|
2230
|
+
# UserDeleteStage Viewset
|
|
2231
|
+
# @param stage_uuid A UUID string identifying this User Delete Stage.
|
|
2232
|
+
# @param [Hash] opts the optional parameters
|
|
2233
|
+
# @option opts [PatchedUserDeleteStageRequest] :patched_user_delete_stage_request
|
|
2234
|
+
# @return [UserDeleteStage]
|
|
2235
|
+
describe 'stages_user_delete_partial_update test' do
|
|
2236
|
+
it 'should work' do
|
|
2237
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
2238
|
+
end
|
|
2239
|
+
end
|
|
2240
|
+
|
|
2241
|
+
# unit tests for stages_user_delete_retrieve
|
|
2242
|
+
# UserDeleteStage Viewset
|
|
2243
|
+
# @param stage_uuid A UUID string identifying this User Delete Stage.
|
|
2244
|
+
# @param [Hash] opts the optional parameters
|
|
2245
|
+
# @return [UserDeleteStage]
|
|
2246
|
+
describe 'stages_user_delete_retrieve test' do
|
|
2247
|
+
it 'should work' do
|
|
2248
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
2249
|
+
end
|
|
2250
|
+
end
|
|
2251
|
+
|
|
2252
|
+
# unit tests for stages_user_delete_update
|
|
2253
|
+
# UserDeleteStage Viewset
|
|
2254
|
+
# @param stage_uuid A UUID string identifying this User Delete Stage.
|
|
2255
|
+
# @param user_delete_stage_request
|
|
2256
|
+
# @param [Hash] opts the optional parameters
|
|
2257
|
+
# @return [UserDeleteStage]
|
|
2258
|
+
describe 'stages_user_delete_update test' do
|
|
2259
|
+
it 'should work' do
|
|
2260
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
2261
|
+
end
|
|
2262
|
+
end
|
|
2263
|
+
|
|
2264
|
+
# unit tests for stages_user_delete_used_by_list
|
|
2265
|
+
# Get a list of all objects that use this object
|
|
2266
|
+
# @param stage_uuid A UUID string identifying this User Delete Stage.
|
|
2267
|
+
# @param [Hash] opts the optional parameters
|
|
2268
|
+
# @return [Array<UsedBy>]
|
|
2269
|
+
describe 'stages_user_delete_used_by_list test' do
|
|
2270
|
+
it 'should work' do
|
|
2271
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
2272
|
+
end
|
|
2273
|
+
end
|
|
2274
|
+
|
|
2275
|
+
# unit tests for stages_user_login_create
|
|
2276
|
+
# UserLoginStage Viewset
|
|
2277
|
+
# @param user_login_stage_request
|
|
2278
|
+
# @param [Hash] opts the optional parameters
|
|
2279
|
+
# @return [UserLoginStage]
|
|
2280
|
+
describe 'stages_user_login_create test' do
|
|
2281
|
+
it 'should work' do
|
|
2282
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
2283
|
+
end
|
|
2284
|
+
end
|
|
2285
|
+
|
|
2286
|
+
# unit tests for stages_user_login_destroy
|
|
2287
|
+
# UserLoginStage Viewset
|
|
2288
|
+
# @param stage_uuid A UUID string identifying this User Login Stage.
|
|
2289
|
+
# @param [Hash] opts the optional parameters
|
|
2290
|
+
# @return [nil]
|
|
2291
|
+
describe 'stages_user_login_destroy test' do
|
|
2292
|
+
it 'should work' do
|
|
2293
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
2294
|
+
end
|
|
2295
|
+
end
|
|
2296
|
+
|
|
2297
|
+
# unit tests for stages_user_login_list
|
|
2298
|
+
# UserLoginStage Viewset
|
|
2299
|
+
# @param [Hash] opts the optional parameters
|
|
2300
|
+
# @option opts [String] :geoip_binding Bind sessions created by this stage to the configured GeoIP location
|
|
2301
|
+
# @option opts [String] :name
|
|
2302
|
+
# @option opts [String] :network_binding Bind sessions created by this stage to the configured network
|
|
2303
|
+
# @option opts [String] :ordering Which field to use when ordering the results.
|
|
2304
|
+
# @option opts [Integer] :page A page number within the paginated result set.
|
|
2305
|
+
# @option opts [Integer] :page_size Number of results to return per page.
|
|
2306
|
+
# @option opts [String] :remember_device
|
|
2307
|
+
# @option opts [String] :remember_me_offset
|
|
2308
|
+
# @option opts [String] :search A search term.
|
|
2309
|
+
# @option opts [String] :session_duration
|
|
2310
|
+
# @option opts [String] :stage_uuid
|
|
2311
|
+
# @option opts [Boolean] :terminate_other_sessions
|
|
2312
|
+
# @return [PaginatedUserLoginStageList]
|
|
2313
|
+
describe 'stages_user_login_list test' do
|
|
2314
|
+
it 'should work' do
|
|
2315
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
2316
|
+
end
|
|
2317
|
+
end
|
|
2318
|
+
|
|
2319
|
+
# unit tests for stages_user_login_partial_update
|
|
2320
|
+
# UserLoginStage Viewset
|
|
2321
|
+
# @param stage_uuid A UUID string identifying this User Login Stage.
|
|
2322
|
+
# @param [Hash] opts the optional parameters
|
|
2323
|
+
# @option opts [PatchedUserLoginStageRequest] :patched_user_login_stage_request
|
|
2324
|
+
# @return [UserLoginStage]
|
|
2325
|
+
describe 'stages_user_login_partial_update test' do
|
|
2326
|
+
it 'should work' do
|
|
2327
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
2328
|
+
end
|
|
2329
|
+
end
|
|
2330
|
+
|
|
2331
|
+
# unit tests for stages_user_login_retrieve
|
|
2332
|
+
# UserLoginStage Viewset
|
|
2333
|
+
# @param stage_uuid A UUID string identifying this User Login Stage.
|
|
2334
|
+
# @param [Hash] opts the optional parameters
|
|
2335
|
+
# @return [UserLoginStage]
|
|
2336
|
+
describe 'stages_user_login_retrieve test' do
|
|
2337
|
+
it 'should work' do
|
|
2338
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
2339
|
+
end
|
|
2340
|
+
end
|
|
2341
|
+
|
|
2342
|
+
# unit tests for stages_user_login_update
|
|
2343
|
+
# UserLoginStage Viewset
|
|
2344
|
+
# @param stage_uuid A UUID string identifying this User Login Stage.
|
|
2345
|
+
# @param user_login_stage_request
|
|
2346
|
+
# @param [Hash] opts the optional parameters
|
|
2347
|
+
# @return [UserLoginStage]
|
|
2348
|
+
describe 'stages_user_login_update test' do
|
|
2349
|
+
it 'should work' do
|
|
2350
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
2351
|
+
end
|
|
2352
|
+
end
|
|
2353
|
+
|
|
2354
|
+
# unit tests for stages_user_login_used_by_list
|
|
2355
|
+
# Get a list of all objects that use this object
|
|
2356
|
+
# @param stage_uuid A UUID string identifying this User Login Stage.
|
|
2357
|
+
# @param [Hash] opts the optional parameters
|
|
2358
|
+
# @return [Array<UsedBy>]
|
|
2359
|
+
describe 'stages_user_login_used_by_list test' do
|
|
2360
|
+
it 'should work' do
|
|
2361
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
2362
|
+
end
|
|
2363
|
+
end
|
|
2364
|
+
|
|
2365
|
+
# unit tests for stages_user_logout_create
|
|
2366
|
+
# UserLogoutStage Viewset
|
|
2367
|
+
# @param user_logout_stage_request
|
|
2368
|
+
# @param [Hash] opts the optional parameters
|
|
2369
|
+
# @return [UserLogoutStage]
|
|
2370
|
+
describe 'stages_user_logout_create test' do
|
|
2371
|
+
it 'should work' do
|
|
2372
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
2373
|
+
end
|
|
2374
|
+
end
|
|
2375
|
+
|
|
2376
|
+
# unit tests for stages_user_logout_destroy
|
|
2377
|
+
# UserLogoutStage Viewset
|
|
2378
|
+
# @param stage_uuid A UUID string identifying this User Logout Stage.
|
|
2379
|
+
# @param [Hash] opts the optional parameters
|
|
2380
|
+
# @return [nil]
|
|
2381
|
+
describe 'stages_user_logout_destroy test' do
|
|
2382
|
+
it 'should work' do
|
|
2383
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
2384
|
+
end
|
|
2385
|
+
end
|
|
2386
|
+
|
|
2387
|
+
# unit tests for stages_user_logout_list
|
|
2388
|
+
# UserLogoutStage Viewset
|
|
2389
|
+
# @param [Hash] opts the optional parameters
|
|
2390
|
+
# @option opts [String] :name
|
|
2391
|
+
# @option opts [String] :ordering Which field to use when ordering the results.
|
|
2392
|
+
# @option opts [Integer] :page A page number within the paginated result set.
|
|
2393
|
+
# @option opts [Integer] :page_size Number of results to return per page.
|
|
2394
|
+
# @option opts [String] :search A search term.
|
|
2395
|
+
# @option opts [String] :stage_uuid
|
|
2396
|
+
# @return [PaginatedUserLogoutStageList]
|
|
2397
|
+
describe 'stages_user_logout_list test' do
|
|
2398
|
+
it 'should work' do
|
|
2399
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
2400
|
+
end
|
|
2401
|
+
end
|
|
2402
|
+
|
|
2403
|
+
# unit tests for stages_user_logout_partial_update
|
|
2404
|
+
# UserLogoutStage Viewset
|
|
2405
|
+
# @param stage_uuid A UUID string identifying this User Logout Stage.
|
|
2406
|
+
# @param [Hash] opts the optional parameters
|
|
2407
|
+
# @option opts [PatchedUserLogoutStageRequest] :patched_user_logout_stage_request
|
|
2408
|
+
# @return [UserLogoutStage]
|
|
2409
|
+
describe 'stages_user_logout_partial_update test' do
|
|
2410
|
+
it 'should work' do
|
|
2411
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
2412
|
+
end
|
|
2413
|
+
end
|
|
2414
|
+
|
|
2415
|
+
# unit tests for stages_user_logout_retrieve
|
|
2416
|
+
# UserLogoutStage Viewset
|
|
2417
|
+
# @param stage_uuid A UUID string identifying this User Logout Stage.
|
|
2418
|
+
# @param [Hash] opts the optional parameters
|
|
2419
|
+
# @return [UserLogoutStage]
|
|
2420
|
+
describe 'stages_user_logout_retrieve test' do
|
|
2421
|
+
it 'should work' do
|
|
2422
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
2423
|
+
end
|
|
2424
|
+
end
|
|
2425
|
+
|
|
2426
|
+
# unit tests for stages_user_logout_update
|
|
2427
|
+
# UserLogoutStage Viewset
|
|
2428
|
+
# @param stage_uuid A UUID string identifying this User Logout Stage.
|
|
2429
|
+
# @param user_logout_stage_request
|
|
2430
|
+
# @param [Hash] opts the optional parameters
|
|
2431
|
+
# @return [UserLogoutStage]
|
|
2432
|
+
describe 'stages_user_logout_update test' do
|
|
2433
|
+
it 'should work' do
|
|
2434
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
2435
|
+
end
|
|
2436
|
+
end
|
|
2437
|
+
|
|
2438
|
+
# unit tests for stages_user_logout_used_by_list
|
|
2439
|
+
# Get a list of all objects that use this object
|
|
2440
|
+
# @param stage_uuid A UUID string identifying this User Logout Stage.
|
|
2441
|
+
# @param [Hash] opts the optional parameters
|
|
2442
|
+
# @return [Array<UsedBy>]
|
|
2443
|
+
describe 'stages_user_logout_used_by_list test' do
|
|
2444
|
+
it 'should work' do
|
|
2445
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
2446
|
+
end
|
|
2447
|
+
end
|
|
2448
|
+
|
|
2449
|
+
# unit tests for stages_user_write_create
|
|
2450
|
+
# UserWriteStage Viewset
|
|
2451
|
+
# @param user_write_stage_request
|
|
2452
|
+
# @param [Hash] opts the optional parameters
|
|
2453
|
+
# @return [UserWriteStage]
|
|
2454
|
+
describe 'stages_user_write_create test' do
|
|
2455
|
+
it 'should work' do
|
|
2456
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
2457
|
+
end
|
|
2458
|
+
end
|
|
2459
|
+
|
|
2460
|
+
# unit tests for stages_user_write_destroy
|
|
2461
|
+
# UserWriteStage Viewset
|
|
2462
|
+
# @param stage_uuid A UUID string identifying this User Write Stage.
|
|
2463
|
+
# @param [Hash] opts the optional parameters
|
|
2464
|
+
# @return [nil]
|
|
2465
|
+
describe 'stages_user_write_destroy test' do
|
|
2466
|
+
it 'should work' do
|
|
2467
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
2468
|
+
end
|
|
2469
|
+
end
|
|
2470
|
+
|
|
2471
|
+
# unit tests for stages_user_write_list
|
|
2472
|
+
# UserWriteStage Viewset
|
|
2473
|
+
# @param [Hash] opts the optional parameters
|
|
2474
|
+
# @option opts [Boolean] :create_users_as_inactive
|
|
2475
|
+
# @option opts [String] :create_users_group
|
|
2476
|
+
# @option opts [String] :name
|
|
2477
|
+
# @option opts [String] :ordering Which field to use when ordering the results.
|
|
2478
|
+
# @option opts [Integer] :page A page number within the paginated result set.
|
|
2479
|
+
# @option opts [Integer] :page_size Number of results to return per page.
|
|
2480
|
+
# @option opts [String] :search A search term.
|
|
2481
|
+
# @option opts [String] :stage_uuid
|
|
2482
|
+
# @option opts [String] :user_creation_mode
|
|
2483
|
+
# @option opts [String] :user_path_template
|
|
2484
|
+
# @option opts [String] :user_type
|
|
2485
|
+
# @return [PaginatedUserWriteStageList]
|
|
2486
|
+
describe 'stages_user_write_list test' do
|
|
2487
|
+
it 'should work' do
|
|
2488
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
2489
|
+
end
|
|
2490
|
+
end
|
|
2491
|
+
|
|
2492
|
+
# unit tests for stages_user_write_partial_update
|
|
2493
|
+
# UserWriteStage Viewset
|
|
2494
|
+
# @param stage_uuid A UUID string identifying this User Write Stage.
|
|
2495
|
+
# @param [Hash] opts the optional parameters
|
|
2496
|
+
# @option opts [PatchedUserWriteStageRequest] :patched_user_write_stage_request
|
|
2497
|
+
# @return [UserWriteStage]
|
|
2498
|
+
describe 'stages_user_write_partial_update test' do
|
|
2499
|
+
it 'should work' do
|
|
2500
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
2501
|
+
end
|
|
2502
|
+
end
|
|
2503
|
+
|
|
2504
|
+
# unit tests for stages_user_write_retrieve
|
|
2505
|
+
# UserWriteStage Viewset
|
|
2506
|
+
# @param stage_uuid A UUID string identifying this User Write Stage.
|
|
2507
|
+
# @param [Hash] opts the optional parameters
|
|
2508
|
+
# @return [UserWriteStage]
|
|
2509
|
+
describe 'stages_user_write_retrieve test' do
|
|
2510
|
+
it 'should work' do
|
|
2511
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
2512
|
+
end
|
|
2513
|
+
end
|
|
2514
|
+
|
|
2515
|
+
# unit tests for stages_user_write_update
|
|
2516
|
+
# UserWriteStage Viewset
|
|
2517
|
+
# @param stage_uuid A UUID string identifying this User Write Stage.
|
|
2518
|
+
# @param user_write_stage_request
|
|
2519
|
+
# @param [Hash] opts the optional parameters
|
|
2520
|
+
# @return [UserWriteStage]
|
|
2521
|
+
describe 'stages_user_write_update test' do
|
|
2522
|
+
it 'should work' do
|
|
2523
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
2524
|
+
end
|
|
2525
|
+
end
|
|
2526
|
+
|
|
2527
|
+
# unit tests for stages_user_write_used_by_list
|
|
2528
|
+
# Get a list of all objects that use this object
|
|
2529
|
+
# @param stage_uuid A UUID string identifying this User Write Stage.
|
|
2530
|
+
# @param [Hash] opts the optional parameters
|
|
2531
|
+
# @return [Array<UsedBy>]
|
|
2532
|
+
describe 'stages_user_write_used_by_list test' do
|
|
2533
|
+
it 'should work' do
|
|
2534
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
2535
|
+
end
|
|
2536
|
+
end
|
|
2537
|
+
|
|
2538
|
+
end
|