ory-client 1.9.0__py3-none-any.whl → 1.11.7__py3-none-any.whl

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.
Files changed (565) hide show
  1. ory_client/__init__.py +279 -10
  2. ory_client/api/__init__.py +16 -3
  3. ory_client/api/courier_api.py +576 -287
  4. ory_client/api/events_api.py +1147 -576
  5. ory_client/api/frontend_api.py +8736 -4145
  6. ory_client/api/identity_api.py +5219 -2605
  7. ory_client/api/jwk_api.py +1881 -939
  8. ory_client/api/metadata_api.py +245 -376
  9. ory_client/api/o_auth2_api.py +7763 -3858
  10. ory_client/api/oidc_api.py +2071 -1034
  11. ory_client/api/permission_api.py +1675 -776
  12. ory_client/api/project_api.py +5314 -2638
  13. ory_client/api/relationship_api.py +1844 -860
  14. ory_client/api/wellknown_api.py +250 -131
  15. ory_client/api_client.py +520 -658
  16. ory_client/api_response.py +21 -0
  17. ory_client/configuration.py +65 -75
  18. ory_client/exceptions.py +73 -32
  19. ory_client/models/__init__.py +266 -291
  20. ory_client/models/accept_o_auth2_consent_request.py +118 -0
  21. ory_client/models/accept_o_auth2_consent_request_session.py +113 -0
  22. ory_client/models/accept_o_auth2_login_request.py +117 -0
  23. ory_client/models/active_project_in_console.py +101 -0
  24. ory_client/models/attribute.py +103 -0
  25. ory_client/models/attribute_filter.py +115 -0
  26. ory_client/models/attributes_count_datapoint.py +103 -0
  27. ory_client/models/authenticator_assurance_level.py +40 -0
  28. ory_client/models/batch_patch_identities_response.py +109 -0
  29. ory_client/models/check_opl_syntax_result.py +109 -0
  30. ory_client/models/check_permission_result.py +101 -0
  31. ory_client/models/cloud_account.py +105 -0
  32. ory_client/models/consistency_request_parameters.py +111 -0
  33. ory_client/models/continue_with.py +214 -0
  34. ory_client/models/continue_with_recovery_ui.py +114 -0
  35. ory_client/models/continue_with_recovery_ui_flow.py +103 -0
  36. ory_client/models/continue_with_set_ory_session_token.py +110 -0
  37. ory_client/models/continue_with_settings_ui.py +114 -0
  38. ory_client/models/continue_with_settings_ui_flow.py +101 -0
  39. ory_client/models/continue_with_verification_ui.py +114 -0
  40. ory_client/models/continue_with_verification_ui_flow.py +105 -0
  41. ory_client/models/courier_message_status.py +40 -0
  42. ory_client/models/courier_message_type.py +38 -0
  43. ory_client/models/create_custom_domain_body.py +109 -0
  44. ory_client/models/create_event_stream_body.py +112 -0
  45. ory_client/models/create_identity_body.py +155 -0
  46. ory_client/models/create_invite_response.py +114 -0
  47. ory_client/models/create_json_web_key_set.py +105 -0
  48. ory_client/models/create_project_api_key_request.py +101 -0
  49. ory_client/models/create_project_body.py +112 -0
  50. ory_client/models/create_project_branding.py +115 -0
  51. ory_client/models/create_project_member_invite_body.py +101 -0
  52. ory_client/models/create_project_normalized_payload.py +685 -0
  53. ory_client/models/create_recovery_code_for_identity_body.py +114 -0
  54. ory_client/models/create_recovery_link_for_identity_body.py +114 -0
  55. ory_client/models/create_relationship_body.py +113 -0
  56. ory_client/models/create_subscription_body.py +126 -0
  57. ory_client/models/create_subscription_common.py +124 -0
  58. ory_client/models/create_verifiable_credential_request_body.py +109 -0
  59. ory_client/models/create_workspace_member_invite_body.py +101 -0
  60. ory_client/models/create_workspace_payload.py +101 -0
  61. ory_client/models/create_workspace_subscription_body.py +124 -0
  62. ory_client/models/credential_supported_draft00.py +107 -0
  63. ory_client/models/custom_domain.py +132 -0
  64. ory_client/models/delete_my_sessions_count.py +101 -0
  65. ory_client/models/email_template_data.py +107 -0
  66. ory_client/models/email_template_data_body.py +103 -0
  67. ory_client/models/error_authenticator_assurance_level_not_satisfied.py +107 -0
  68. ory_client/models/error_browser_location_change_required.py +107 -0
  69. ory_client/models/error_flow_replaced.py +107 -0
  70. ory_client/models/error_generic.py +105 -0
  71. ory_client/models/error_o_auth2.py +109 -0
  72. ory_client/models/event_stream.py +112 -0
  73. ory_client/models/expanded_permission_tree.py +125 -0
  74. ory_client/models/flow_error.py +108 -0
  75. ory_client/models/generic_error.py +126 -0
  76. ory_client/models/generic_error_content.py +109 -0
  77. ory_client/models/generic_usage.py +103 -0
  78. ory_client/models/get_attributes_count_response.py +111 -0
  79. ory_client/models/get_managed_identity_schema_location.py +101 -0
  80. ory_client/models/get_metrics_event_attributes_response.py +103 -0
  81. ory_client/models/get_metrics_event_types_response.py +103 -0
  82. ory_client/models/get_organization_response.py +105 -0
  83. ory_client/models/get_project_events_body.py +120 -0
  84. ory_client/models/get_project_events_response.py +115 -0
  85. ory_client/models/get_project_metrics_response.py +111 -0
  86. ory_client/models/get_session_activity_response.py +111 -0
  87. ory_client/models/get_version200_response.py +101 -0
  88. ory_client/models/health_not_ready_status.py +101 -0
  89. ory_client/models/health_status.py +101 -0
  90. ory_client/models/identity.py +187 -0
  91. ory_client/models/identity_credentials.py +122 -0
  92. ory_client/models/identity_credentials_code.py +109 -0
  93. ory_client/models/identity_credentials_oidc.py +109 -0
  94. ory_client/models/identity_credentials_oidc_provider.py +111 -0
  95. ory_client/models/identity_credentials_password.py +101 -0
  96. ory_client/models/identity_patch.py +107 -0
  97. ory_client/models/identity_patch_response.py +115 -0
  98. ory_client/models/identity_schema_container.py +103 -0
  99. ory_client/models/identity_schema_preset.py +103 -0
  100. ory_client/models/identity_with_credentials.py +111 -0
  101. ory_client/models/identity_with_credentials_oidc.py +105 -0
  102. ory_client/models/identity_with_credentials_oidc_config.py +115 -0
  103. ory_client/models/identity_with_credentials_oidc_config_provider.py +103 -0
  104. ory_client/models/identity_with_credentials_password.py +105 -0
  105. ory_client/models/identity_with_credentials_password_config.py +103 -0
  106. ory_client/models/internal_get_project_branding_body.py +101 -0
  107. ory_client/models/internal_is_ax_welcome_screen_enabled_for_project_body.py +103 -0
  108. ory_client/models/internal_is_owner_for_project_by_slug_body.py +114 -0
  109. ory_client/models/internal_is_owner_for_project_by_slug_response.py +101 -0
  110. ory_client/models/introspected_o_auth2_token.py +127 -0
  111. ory_client/models/is_owner_for_project_by_slug.py +103 -0
  112. ory_client/models/json_patch.py +119 -0
  113. ory_client/models/json_web_key.py +133 -0
  114. ory_client/models/json_web_key_set.py +109 -0
  115. ory_client/models/keto_namespace.py +103 -0
  116. ory_client/models/list_event_streams.py +109 -0
  117. ory_client/models/list_my_workspaces_response.py +113 -0
  118. ory_client/models/list_organizations_response.py +109 -0
  119. ory_client/models/list_workspace_projects_response.py +113 -0
  120. ory_client/models/login_flow.py +165 -0
  121. ory_client/models/login_flow_state.py +39 -0
  122. ory_client/models/logout_flow.py +103 -0
  123. ory_client/models/managed_identity_schema.py +120 -0
  124. ory_client/models/managed_identity_schema_validation_result.py +103 -0
  125. ory_client/models/member_invite.py +148 -0
  126. ory_client/models/message.py +141 -0
  127. ory_client/models/message_dispatch.py +119 -0
  128. ory_client/models/metrics_datapoint.py +104 -0
  129. ory_client/models/migration_options.py +117 -0
  130. ory_client/models/namespace.py +101 -0
  131. ory_client/models/needs_privileged_session_error.py +107 -0
  132. ory_client/models/normalized_project.py +171 -0
  133. ory_client/models/normalized_project_revision.py +674 -0
  134. ory_client/models/normalized_project_revision_courier_channel.py +145 -0
  135. ory_client/models/normalized_project_revision_hook.py +140 -0
  136. ory_client/models/normalized_project_revision_identity_schema.py +133 -0
  137. ory_client/models/normalized_project_revision_third_party_provider.py +187 -0
  138. ory_client/models/normalized_project_revision_tokenizer_template.py +133 -0
  139. ory_client/models/o_auth2_client.py +352 -0
  140. ory_client/models/o_auth2_client_token_lifespans.py +270 -0
  141. ory_client/models/o_auth2_consent_request.py +133 -0
  142. ory_client/models/o_auth2_consent_request_open_id_connect_context.py +109 -0
  143. ory_client/models/o_auth2_consent_session.py +130 -0
  144. ory_client/models/o_auth2_consent_session_expires_at.py +110 -0
  145. ory_client/models/o_auth2_login_request.py +125 -0
  146. ory_client/models/o_auth2_logout_request.py +115 -0
  147. ory_client/models/o_auth2_redirect_to.py +101 -0
  148. ory_client/models/o_auth2_token_exchange.py +111 -0
  149. ory_client/models/oidc_configuration.py +169 -0
  150. ory_client/models/oidc_user_info.py +137 -0
  151. ory_client/models/organization.py +116 -0
  152. ory_client/models/organization_body.py +103 -0
  153. ory_client/models/pagination.py +104 -0
  154. ory_client/models/pagination_headers.py +103 -0
  155. ory_client/models/parse_error.py +112 -0
  156. ory_client/models/patch_identities_body.py +109 -0
  157. ory_client/models/perform_native_logout_body.py +101 -0
  158. ory_client/models/permissions_on_workpace_response.py +101 -0
  159. ory_client/models/plan.py +103 -0
  160. ory_client/models/plan_details.py +128 -0
  161. ory_client/models/post_check_permission_body.py +113 -0
  162. ory_client/models/post_check_permission_or_error_body.py +113 -0
  163. ory_client/models/project.py +148 -0
  164. ory_client/models/project_api_key.py +126 -0
  165. ory_client/models/project_branding.py +129 -0
  166. ory_client/models/project_branding_colors.py +157 -0
  167. ory_client/models/project_branding_theme.py +182 -0
  168. ory_client/models/project_cors.py +103 -0
  169. ory_client/models/project_events_datapoint.py +114 -0
  170. ory_client/models/project_host.py +107 -0
  171. ory_client/models/project_member.py +107 -0
  172. ory_client/models/project_metadata.py +161 -0
  173. ory_client/models/project_service_identity.py +101 -0
  174. ory_client/models/project_service_o_auth2.py +101 -0
  175. ory_client/models/project_service_permission.py +101 -0
  176. ory_client/models/project_services.py +117 -0
  177. ory_client/models/quota_usage.py +118 -0
  178. ory_client/models/recovery_code_for_identity.py +106 -0
  179. ory_client/models/recovery_flow.py +139 -0
  180. ory_client/models/recovery_flow_state.py +39 -0
  181. ory_client/models/recovery_identity_address.py +110 -0
  182. ory_client/models/recovery_link_for_identity.py +104 -0
  183. ory_client/models/registration_flow.py +156 -0
  184. ory_client/models/registration_flow_state.py +39 -0
  185. ory_client/models/reject_o_auth2_request.py +109 -0
  186. ory_client/models/relation_query.py +113 -0
  187. ory_client/models/relationship.py +113 -0
  188. ory_client/models/relationship_namespaces.py +109 -0
  189. ory_client/models/relationship_patch.py +117 -0
  190. ory_client/models/relationships.py +111 -0
  191. ory_client/models/rfc6749_error_json.py +109 -0
  192. ory_client/models/schema_patch.py +103 -0
  193. ory_client/models/self_service_flow_expired_error.py +112 -0
  194. ory_client/models/session.py +141 -0
  195. ory_client/models/session_activity_datapoint.py +105 -0
  196. ory_client/models/session_authentication_method.py +121 -0
  197. ory_client/models/session_device.py +107 -0
  198. ory_client/models/set_active_project_in_console_body.py +101 -0
  199. ory_client/models/set_custom_domain_body.py +109 -0
  200. ory_client/models/set_event_stream_body.py +112 -0
  201. ory_client/models/set_project.py +118 -0
  202. ory_client/models/set_project_branding_theme_body.py +115 -0
  203. ory_client/models/settings_flow.py +145 -0
  204. ory_client/models/settings_flow_state.py +38 -0
  205. ory_client/models/source_position.py +103 -0
  206. ory_client/models/subject_set.py +105 -0
  207. ory_client/models/subscription.py +179 -0
  208. ory_client/models/successful_code_exchange_response.py +107 -0
  209. ory_client/models/successful_native_login.py +117 -0
  210. ory_client/models/successful_native_registration.py +123 -0
  211. ory_client/models/successful_project_update.py +115 -0
  212. ory_client/models/token_pagination.py +104 -0
  213. ory_client/models/token_pagination_headers.py +103 -0
  214. ory_client/models/token_pagination_request_parameters.py +104 -0
  215. ory_client/models/token_pagination_response_headers.py +103 -0
  216. ory_client/models/trust_o_auth2_jwt_grant_issuer.py +116 -0
  217. ory_client/models/trusted_o_auth2_jwt_grant_issuer.py +120 -0
  218. ory_client/models/trusted_o_auth2_jwt_grant_json_web_key.py +103 -0
  219. ory_client/models/ui_container.py +123 -0
  220. ory_client/models/ui_node.py +139 -0
  221. ory_client/models/ui_node_anchor_attributes.py +118 -0
  222. ory_client/models/ui_node_attributes.py +238 -0
  223. ory_client/models/ui_node_image_attributes.py +116 -0
  224. ory_client/models/ui_node_input_attributes.py +154 -0
  225. ory_client/models/ui_node_meta.py +105 -0
  226. ory_client/models/ui_node_script_attributes.py +124 -0
  227. ory_client/models/ui_node_text_attributes.py +116 -0
  228. ory_client/models/ui_text.py +114 -0
  229. ory_client/models/update_identity_body.py +132 -0
  230. ory_client/models/update_login_flow_body.py +286 -0
  231. ory_client/models/update_login_flow_with_code_method.py +111 -0
  232. ory_client/models/update_login_flow_with_lookup_secret_method.py +105 -0
  233. ory_client/models/update_login_flow_with_oidc_method.py +115 -0
  234. ory_client/models/update_login_flow_with_passkey_method.py +105 -0
  235. ory_client/models/update_login_flow_with_password_method.py +111 -0
  236. ory_client/models/update_login_flow_with_totp_method.py +107 -0
  237. ory_client/models/update_login_flow_with_web_authn_method.py +109 -0
  238. ory_client/models/update_recovery_flow_body.py +166 -0
  239. ory_client/models/update_recovery_flow_with_code_method.py +116 -0
  240. ory_client/models/update_recovery_flow_with_link_method.py +114 -0
  241. ory_client/models/update_registration_flow_body.py +238 -0
  242. ory_client/models/update_registration_flow_with_code_method.py +111 -0
  243. ory_client/models/update_registration_flow_with_oidc_method.py +115 -0
  244. ory_client/models/update_registration_flow_with_passkey_method.py +109 -0
  245. ory_client/models/update_registration_flow_with_password_method.py +109 -0
  246. ory_client/models/update_registration_flow_with_profile_method.py +109 -0
  247. ory_client/models/update_registration_flow_with_web_authn_method.py +111 -0
  248. ory_client/models/update_settings_flow_body.py +286 -0
  249. ory_client/models/update_settings_flow_with_lookup_method.py +113 -0
  250. ory_client/models/update_settings_flow_with_oidc_method.py +113 -0
  251. ory_client/models/update_settings_flow_with_passkey_method.py +107 -0
  252. ory_client/models/update_settings_flow_with_password_method.py +107 -0
  253. ory_client/models/update_settings_flow_with_profile_method.py +107 -0
  254. ory_client/models/update_settings_flow_with_totp_method.py +109 -0
  255. ory_client/models/update_settings_flow_with_web_authn_method.py +111 -0
  256. ory_client/models/update_subscription_body.py +112 -0
  257. ory_client/models/update_verification_flow_body.py +166 -0
  258. ory_client/models/update_verification_flow_with_code_method.py +116 -0
  259. ory_client/models/update_verification_flow_with_link_method.py +114 -0
  260. ory_client/models/update_workspace_payload.py +101 -0
  261. ory_client/models/usage.py +105 -0
  262. ory_client/models/verifiable_credential_priming_response.py +115 -0
  263. ory_client/models/verifiable_credential_proof.py +103 -0
  264. ory_client/models/verifiable_credential_response.py +103 -0
  265. ory_client/models/verifiable_identity_address.py +123 -0
  266. ory_client/models/verification_flow.py +129 -0
  267. ory_client/models/verification_flow_state.py +39 -0
  268. ory_client/models/version.py +101 -0
  269. ory_client/models/warning.py +103 -0
  270. ory_client/models/workspace.py +115 -0
  271. ory_client/models/workspace_meta.py +122 -0
  272. ory_client/py.typed +0 -0
  273. ory_client/rest.py +139 -236
  274. {ory_client-1.9.0.dist-info → ory_client-1.11.7.dist-info}/METADATA +6 -4
  275. ory_client-1.11.7.dist-info/RECORD +278 -0
  276. ory_client/apis/__init__.py +0 -28
  277. ory_client/model/__init__.py +0 -5
  278. ory_client/model/accept_o_auth2_consent_request.py +0 -296
  279. ory_client/model/accept_o_auth2_consent_request_session.py +0 -268
  280. ory_client/model/accept_o_auth2_login_request.py +0 -308
  281. ory_client/model/active_project_in_console.py +0 -264
  282. ory_client/model/attribute.py +0 -268
  283. ory_client/model/attribute_filter.py +0 -282
  284. ory_client/model/attributes_count_datapoint.py +0 -276
  285. ory_client/model/authenticator_assurance_level.py +0 -293
  286. ory_client/model/batch_patch_identities_response.py +0 -270
  287. ory_client/model/check_opl_syntax_result.py +0 -270
  288. ory_client/model/check_permission_result.py +0 -270
  289. ory_client/model/cloud_account.py +0 -282
  290. ory_client/model/consistency_request_parameters.py +0 -269
  291. ory_client/model/continue_with.py +0 -356
  292. ory_client/model/continue_with_recovery_ui.py +0 -287
  293. ory_client/model/continue_with_recovery_ui_flow.py +0 -274
  294. ory_client/model/continue_with_set_ory_session_token.py +0 -281
  295. ory_client/model/continue_with_settings_ui.py +0 -287
  296. ory_client/model/continue_with_settings_ui_flow.py +0 -270
  297. ory_client/model/continue_with_verification_ui.py +0 -287
  298. ory_client/model/continue_with_verification_ui_flow.py +0 -280
  299. ory_client/model/courier_message_status.py +0 -293
  300. ory_client/model/courier_message_type.py +0 -291
  301. ory_client/model/create_custom_domain_body.py +0 -280
  302. ory_client/model/create_event_stream_body.py +0 -287
  303. ory_client/model/create_identity_body.py +0 -314
  304. ory_client/model/create_invite_response.py +0 -282
  305. ory_client/model/create_json_web_key_set.py +0 -282
  306. ory_client/model/create_member_invite_response.py +0 -287
  307. ory_client/model/create_project_api_key_request.py +0 -270
  308. ory_client/model/create_project_body.py +0 -284
  309. ory_client/model/create_project_branding.py +0 -290
  310. ory_client/model/create_project_member_invite_body.py +0 -264
  311. ory_client/model/create_project_normalized_payload.py +0 -1119
  312. ory_client/model/create_recovery_code_for_identity_body.py +0 -279
  313. ory_client/model/create_recovery_link_for_identity_body.py +0 -279
  314. ory_client/model/create_relationship_body.py +0 -286
  315. ory_client/model/create_subscription_body.py +0 -298
  316. ory_client/model/create_subscription_common.py +0 -292
  317. ory_client/model/create_verifiable_credential_request_body.py +0 -278
  318. ory_client/model/create_workspace_member_invite_body.py +0 -264
  319. ory_client/model/create_workspace_payload.py +0 -270
  320. ory_client/model/create_workspace_subscription_body.py +0 -292
  321. ory_client/model/credential_supported_draft00.py +0 -276
  322. ory_client/model/custom_domain.py +0 -334
  323. ory_client/model/delete_my_sessions_count.py +0 -264
  324. ory_client/model/email_template_data.py +0 -282
  325. ory_client/model/email_template_data_body.py +0 -276
  326. ory_client/model/error_authenticator_assurance_level_not_satisfied.py +0 -274
  327. ory_client/model/error_browser_location_change_required.py +0 -274
  328. ory_client/model/error_flow_replaced.py +0 -274
  329. ory_client/model/error_generic.py +0 -276
  330. ory_client/model/error_o_auth2.py +0 -280
  331. ory_client/model/event_stream.py +0 -284
  332. ory_client/model/expanded_permission_tree.py +0 -294
  333. ory_client/model/flow_error.py +0 -282
  334. ory_client/model/generic_error.py +0 -308
  335. ory_client/model/generic_error_content.py +0 -280
  336. ory_client/model/generic_usage.py +0 -276
  337. ory_client/model/get_attributes_count_response.py +0 -273
  338. ory_client/model/get_managed_identity_schema_location.py +0 -264
  339. ory_client/model/get_metrics_event_attributes_response.py +0 -267
  340. ory_client/model/get_metrics_event_types_response.py +0 -267
  341. ory_client/model/get_organization_response.py +0 -276
  342. ory_client/model/get_project_events_body.py +0 -298
  343. ory_client/model/get_project_events_response.py +0 -278
  344. ory_client/model/get_project_metrics_response.py +0 -273
  345. ory_client/model/get_session_activity_response.py +0 -273
  346. ory_client/model/get_version200_response.py +0 -270
  347. ory_client/model/health_not_ready_status.py +0 -264
  348. ory_client/model/health_status.py +0 -264
  349. ory_client/model/identity.py +0 -342
  350. ory_client/model/identity_credentials.py +0 -294
  351. ory_client/model/identity_credentials_code.py +0 -268
  352. ory_client/model/identity_credentials_oidc.py +0 -270
  353. ory_client/model/identity_credentials_oidc_provider.py +0 -284
  354. ory_client/model/identity_credentials_password.py +0 -264
  355. ory_client/model/identity_patch.py +0 -274
  356. ory_client/model/identity_patch_response.py +0 -275
  357. ory_client/model/identity_schema_container.py +0 -268
  358. ory_client/model/identity_schema_preset.py +0 -276
  359. ory_client/model/identity_schema_presets.py +0 -292
  360. ory_client/model/identity_schemas.py +0 -292
  361. ory_client/model/identity_with_credentials.py +0 -276
  362. ory_client/model/identity_with_credentials_oidc.py +0 -270
  363. ory_client/model/identity_with_credentials_oidc_config.py +0 -276
  364. ory_client/model/identity_with_credentials_oidc_config_provider.py +0 -276
  365. ory_client/model/identity_with_credentials_password.py +0 -270
  366. ory_client/model/identity_with_credentials_password_config.py +0 -268
  367. ory_client/model/internal_get_project_branding_body.py +0 -264
  368. ory_client/model/internal_is_ax_welcome_screen_enabled_for_project_body.py +0 -276
  369. ory_client/model/internal_is_owner_for_project_by_slug_body.py +0 -290
  370. ory_client/model/internal_is_owner_for_project_by_slug_response.py +0 -270
  371. ory_client/model/introspected_o_auth2_token.py +0 -322
  372. ory_client/model/is_owner_for_project_by_slug.py +0 -276
  373. ory_client/model/is_ready200_response.py +0 -270
  374. ory_client/model/is_ready503_response.py +0 -270
  375. ory_client/model/json_patch.py +0 -292
  376. ory_client/model/json_patch_document.py +0 -292
  377. ory_client/model/json_web_key.py +0 -340
  378. ory_client/model/json_web_key_set.py +0 -270
  379. ory_client/model/keto_namespace.py +0 -268
  380. ory_client/model/keto_namespaces.py +0 -292
  381. ory_client/model/list_custom_domains.py +0 -292
  382. ory_client/model/list_event_streams.py +0 -270
  383. ory_client/model/list_my_workspaces_response.py +0 -288
  384. ory_client/model/list_organizations_response.py +0 -276
  385. ory_client/model/list_workspace_projects_response.py +0 -288
  386. ory_client/model/login_flow.py +0 -370
  387. ory_client/model/login_flow_state.py +0 -292
  388. ory_client/model/logout_flow.py +0 -276
  389. ory_client/model/managed_identity_schema.py +0 -300
  390. ory_client/model/managed_identity_schema_validation_result.py +0 -268
  391. ory_client/model/managed_identity_schemas.py +0 -292
  392. ory_client/model/member_invite.py +0 -321
  393. ory_client/model/member_invites.py +0 -292
  394. ory_client/model/message.py +0 -355
  395. ory_client/model/message_dispatch.py +0 -302
  396. ory_client/model/metrics_datapoint.py +0 -276
  397. ory_client/model/migration_options.py +0 -284
  398. ory_client/model/namespace.py +0 -264
  399. ory_client/model/needs_privileged_session_error.py +0 -280
  400. ory_client/model/normalized_project.py +0 -337
  401. ory_client/model/normalized_project_revision.py +0 -1105
  402. ory_client/model/normalized_project_revision_courier_channel.py +0 -328
  403. ory_client/model/normalized_project_revision_hook.py +0 -342
  404. ory_client/model/normalized_project_revision_identity_schema.py +0 -308
  405. ory_client/model/normalized_project_revision_identity_schemas.py +0 -292
  406. ory_client/model/normalized_project_revision_third_party_provider.py +0 -368
  407. ory_client/model/normalized_project_revision_tokenizer_template.py +0 -300
  408. ory_client/model/normalized_project_revision_tokenizer_templates.py +0 -292
  409. ory_client/model/normalized_projects.py +0 -292
  410. ory_client/model/null_duration.py +0 -292
  411. ory_client/model/o_auth2_client.py +0 -460
  412. ory_client/model/o_auth2_client_token_lifespans.py +0 -306
  413. ory_client/model/o_auth2_consent_request.py +0 -328
  414. ory_client/model/o_auth2_consent_request_open_id_connect_context.py +0 -280
  415. ory_client/model/o_auth2_consent_session.py +0 -308
  416. ory_client/model/o_auth2_consent_session_expires_at.py +0 -280
  417. ory_client/model/o_auth2_consent_sessions.py +0 -292
  418. ory_client/model/o_auth2_login_request.py +0 -320
  419. ory_client/model/o_auth2_logout_request.py +0 -290
  420. ory_client/model/o_auth2_redirect_to.py +0 -270
  421. ory_client/model/o_auth2_token_exchange.py +0 -284
  422. ory_client/model/oidc_configuration.py +0 -412
  423. ory_client/model/oidc_user_info.py +0 -336
  424. ory_client/model/organization.py +0 -302
  425. ory_client/model/organization_body.py +0 -268
  426. ory_client/model/pagination.py +0 -274
  427. ory_client/model/pagination_headers.py +0 -268
  428. ory_client/model/parse_error.py +0 -278
  429. ory_client/model/patch_identities_body.py +0 -270
  430. ory_client/model/perform_native_logout_body.py +0 -270
  431. ory_client/model/permissions_on_project.py +0 -260
  432. ory_client/model/permissions_on_workpace_response.py +0 -264
  433. ory_client/model/plan.py +0 -276
  434. ory_client/model/plan_details.py +0 -316
  435. ory_client/model/plan_features.py +0 -266
  436. ory_client/model/plans.py +0 -287
  437. ory_client/model/post_check_permission_body.py +0 -286
  438. ory_client/model/post_check_permission_or_error_body.py +0 -286
  439. ory_client/model/pricing.py +0 -292
  440. ory_client/model/project.py +0 -319
  441. ory_client/model/project_api_key.py +0 -298
  442. ory_client/model/project_api_keys.py +0 -292
  443. ory_client/model/project_branding.py +0 -303
  444. ory_client/model/project_branding_colors.py +0 -376
  445. ory_client/model/project_branding_theme.py +0 -421
  446. ory_client/model/project_branding_themes.py +0 -292
  447. ory_client/model/project_cors.py +0 -268
  448. ory_client/model/project_events_datapoint.py +0 -288
  449. ory_client/model/project_host.py +0 -281
  450. ory_client/model/project_member.py +0 -288
  451. ory_client/model/project_members.py +0 -292
  452. ory_client/model/project_metadata.py +0 -337
  453. ory_client/model/project_metadata_list.py +0 -292
  454. ory_client/model/project_revision_hooks.py +0 -292
  455. ory_client/model/project_revision_identity_schemas.py +0 -292
  456. ory_client/model/project_revision_third_party_login_providers.py +0 -292
  457. ory_client/model/project_revisions.py +0 -292
  458. ory_client/model/project_service_identity.py +0 -270
  459. ory_client/model/project_service_o_auth2.py +0 -270
  460. ory_client/model/project_service_permission.py +0 -270
  461. ory_client/model/project_services.py +0 -282
  462. ory_client/model/projects.py +0 -292
  463. ory_client/model/quota_usage.py +0 -328
  464. ory_client/model/recovery_code_for_identity.py +0 -280
  465. ory_client/model/recovery_flow.py +0 -330
  466. ory_client/model/recovery_flow_state.py +0 -292
  467. ory_client/model/recovery_identity_address.py +0 -290
  468. ory_client/model/recovery_link_for_identity.py +0 -274
  469. ory_client/model/registration_flow.py +0 -352
  470. ory_client/model/registration_flow_state.py +0 -292
  471. ory_client/model/reject_o_auth2_request.py +0 -280
  472. ory_client/model/relation_query.py +0 -286
  473. ory_client/model/relationship.py +0 -296
  474. ory_client/model/relationship_namespaces.py +0 -270
  475. ory_client/model/relationship_patch.py +0 -278
  476. ory_client/model/relationships.py +0 -274
  477. ory_client/model/revision_courier_channels.py +0 -292
  478. ory_client/model/rfc6749_error_json.py +0 -280
  479. ory_client/model/schema_patch.py +0 -276
  480. ory_client/model/self_service_flow_expired_error.py +0 -282
  481. ory_client/model/session.py +0 -318
  482. ory_client/model/session_activity_datapoint.py +0 -282
  483. ory_client/model/session_authentication_method.py +0 -297
  484. ory_client/model/session_authentication_methods.py +0 -292
  485. ory_client/model/session_device.py +0 -282
  486. ory_client/model/set_active_project_in_console_body.py +0 -270
  487. ory_client/model/set_custom_domain_body.py +0 -280
  488. ory_client/model/set_event_stream_body.py +0 -287
  489. ory_client/model/set_project.py +0 -296
  490. ory_client/model/set_project_branding_theme_body.py +0 -290
  491. ory_client/model/settings_flow.py +0 -338
  492. ory_client/model/settings_flow_state.py +0 -291
  493. ory_client/model/source_position.py +0 -268
  494. ory_client/model/string_slice_json_format.py +0 -287
  495. ory_client/model/subject_set.py +0 -282
  496. ory_client/model/subscription.py +0 -350
  497. ory_client/model/successful_code_exchange_response.py +0 -280
  498. ory_client/model/successful_native_login.py +0 -280
  499. ory_client/model/successful_native_registration.py +0 -292
  500. ory_client/model/successful_project_update.py +0 -284
  501. ory_client/model/token_pagination.py +0 -274
  502. ory_client/model/token_pagination_headers.py +0 -268
  503. ory_client/model/token_pagination_request_parameters.py +0 -274
  504. ory_client/model/token_pagination_response_headers.py +0 -268
  505. ory_client/model/trust_o_auth2_jwt_grant_issuer.py +0 -302
  506. ory_client/model/trusted_o_auth2_jwt_grant_issuer.py +0 -298
  507. ory_client/model/trusted_o_auth2_jwt_grant_issuers.py +0 -292
  508. ory_client/model/trusted_o_auth2_jwt_grant_json_web_key.py +0 -268
  509. ory_client/model/ui_container.py +0 -294
  510. ory_client/model/ui_node.py +0 -322
  511. ory_client/model/ui_node_anchor_attributes.py +0 -294
  512. ory_client/model/ui_node_attributes.py +0 -440
  513. ory_client/model/ui_node_image_attributes.py +0 -294
  514. ory_client/model/ui_node_input_attributes.py +0 -340
  515. ory_client/model/ui_node_meta.py +0 -270
  516. ory_client/model/ui_node_script_attributes.py +0 -318
  517. ory_client/model/ui_node_text_attributes.py +0 -288
  518. ory_client/model/ui_nodes.py +0 -292
  519. ory_client/model/ui_text.py +0 -291
  520. ory_client/model/ui_texts.py +0 -292
  521. ory_client/model/update_identity_body.py +0 -304
  522. ory_client/model/update_login_flow_body.py +0 -411
  523. ory_client/model/update_login_flow_with_code_method.py +0 -292
  524. ory_client/model/update_login_flow_with_lookup_secret_method.py +0 -280
  525. ory_client/model/update_login_flow_with_oidc_method.py +0 -300
  526. ory_client/model/update_login_flow_with_password_method.py +0 -294
  527. ory_client/model/update_login_flow_with_totp_method.py +0 -284
  528. ory_client/model/update_login_flow_with_web_authn_method.py +0 -288
  529. ory_client/model/update_recovery_flow_body.py +0 -351
  530. ory_client/model/update_recovery_flow_with_code_method.py +0 -290
  531. ory_client/model/update_recovery_flow_with_link_method.py +0 -288
  532. ory_client/model/update_registration_flow_body.py +0 -389
  533. ory_client/model/update_registration_flow_with_code_method.py +0 -292
  534. ory_client/model/update_registration_flow_with_oidc_method.py +0 -300
  535. ory_client/model/update_registration_flow_with_password_method.py +0 -290
  536. ory_client/model/update_registration_flow_with_web_authn_method.py +0 -292
  537. ory_client/model/update_settings_flow_body.py +0 -419
  538. ory_client/model/update_settings_flow_with_lookup_method.py +0 -294
  539. ory_client/model/update_settings_flow_with_oidc_method.py +0 -294
  540. ory_client/model/update_settings_flow_with_password_method.py +0 -284
  541. ory_client/model/update_settings_flow_with_profile_method.py +0 -284
  542. ory_client/model/update_settings_flow_with_totp_method.py +0 -286
  543. ory_client/model/update_settings_flow_with_web_authn_method.py +0 -290
  544. ory_client/model/update_subscription_body.py +0 -284
  545. ory_client/model/update_verification_flow_body.py +0 -351
  546. ory_client/model/update_verification_flow_with_code_method.py +0 -290
  547. ory_client/model/update_verification_flow_with_link_method.py +0 -288
  548. ory_client/model/update_workspace_payload.py +0 -270
  549. ory_client/model/usage.py +0 -270
  550. ory_client/model/verifiable_credential_priming_response.py +0 -292
  551. ory_client/model/verifiable_credential_proof.py +0 -268
  552. ory_client/model/verifiable_credential_response.py +0 -268
  553. ory_client/model/verifiable_identity_address.py +0 -308
  554. ory_client/model/verification_flow.py +0 -318
  555. ory_client/model/verification_flow_state.py +0 -292
  556. ory_client/model/version.py +0 -264
  557. ory_client/model/warning.py +0 -268
  558. ory_client/model/workspace.py +0 -292
  559. ory_client/model/workspace_meta.py +0 -296
  560. ory_client/model/workspaces.py +0 -292
  561. ory_client/model_utils.py +0 -2059
  562. ory_client-1.9.0.dist-info/RECORD +0 -310
  563. {ory_client-1.9.0.dist-info → ory_client-1.11.7.dist-info}/LICENSE +0 -0
  564. {ory_client-1.9.0.dist-info → ory_client-1.11.7.dist-info}/WHEEL +0 -0
  565. {ory_client-1.9.0.dist-info → ory_client-1.11.7.dist-info}/top_level.txt +0 -0
@@ -1,1119 +0,0 @@
1
- """
2
- Ory APIs
3
-
4
- Documentation for all public and administrative Ory APIs. Administrative APIs can only be accessed with a valid Personal Access Token. Public APIs are mostly used in browsers. # noqa: E501
5
-
6
- The version of the OpenAPI document: v1.9.0
7
- Contact: support@ory.sh
8
- Generated by: https://openapi-generator.tech
9
- """
10
-
11
-
12
- import re # noqa: F401
13
- import sys # noqa: F401
14
-
15
- from ory_client.model_utils import ( # noqa: F401
16
- ApiTypeError,
17
- ModelComposed,
18
- ModelNormal,
19
- ModelSimple,
20
- cached_property,
21
- change_keys_js_to_python,
22
- convert_js_args_to_python_args,
23
- date,
24
- datetime,
25
- file_type,
26
- none_type,
27
- validate_get_composed_info,
28
- OpenApiModel
29
- )
30
- from ory_client.exceptions import ApiAttributeError
31
-
32
-
33
- def lazy_import():
34
- from ory_client.model.keto_namespaces import KetoNamespaces
35
- from ory_client.model.normalized_project_revision_tokenizer_templates import NormalizedProjectRevisionTokenizerTemplates
36
- from ory_client.model.project_revision_hooks import ProjectRevisionHooks
37
- from ory_client.model.project_revision_identity_schemas import ProjectRevisionIdentitySchemas
38
- from ory_client.model.project_revision_third_party_login_providers import ProjectRevisionThirdPartyLoginProviders
39
- from ory_client.model.revision_courier_channels import RevisionCourierChannels
40
- from ory_client.model.string_slice_json_format import StringSliceJSONFormat
41
- globals()['KetoNamespaces'] = KetoNamespaces
42
- globals()['NormalizedProjectRevisionTokenizerTemplates'] = NormalizedProjectRevisionTokenizerTemplates
43
- globals()['ProjectRevisionHooks'] = ProjectRevisionHooks
44
- globals()['ProjectRevisionIdentitySchemas'] = ProjectRevisionIdentitySchemas
45
- globals()['ProjectRevisionThirdPartyLoginProviders'] = ProjectRevisionThirdPartyLoginProviders
46
- globals()['RevisionCourierChannels'] = RevisionCourierChannels
47
- globals()['StringSliceJSONFormat'] = StringSliceJSONFormat
48
-
49
-
50
- class CreateProjectNormalizedPayload(ModelNormal):
51
- """NOTE: This class is auto generated by OpenAPI Generator.
52
- Ref: https://openapi-generator.tech
53
-
54
- Do not edit the class manually.
55
-
56
- Attributes:
57
- allowed_values (dict): The key is the tuple path to the attribute
58
- and the for var_name this is (var_name,). The value is a dict
59
- with a capitalized key describing the allowed value and an allowed
60
- value. These dicts store the allowed enum values.
61
- attribute_map (dict): The key is attribute name
62
- and the value is json key in definition.
63
- discriminator_value_class_map (dict): A dict to go from the discriminator
64
- variable value to the discriminator class name.
65
- validations (dict): The key is the tuple path to the attribute
66
- and the for var_name this is (var_name,). The value is a dict
67
- that stores validations for max_length, min_length, max_items,
68
- min_items, exclusive_maximum, inclusive_maximum, exclusive_minimum,
69
- inclusive_minimum, and regex.
70
- additional_properties_type (tuple): A tuple of classes accepted
71
- as additional properties values.
72
- """
73
-
74
- allowed_values = {
75
- ('environment',): {
76
- 'PROD': "prod",
77
- 'DEV': "dev",
78
- },
79
- ('hydra_strategies_access_token',): {
80
- 'OPAQUE': "opaque",
81
- 'JWT': "jwt",
82
- },
83
- ('hydra_strategies_scope',): {
84
- 'EXACT': "exact",
85
- 'WILDCARD': "wildcard",
86
- },
87
- ('kratos_selfservice_flows_recovery_use',): {
88
- 'LINK': "link",
89
- 'CODE': "code",
90
- },
91
- ('kratos_selfservice_flows_verification_use',): {
92
- 'LINK': "link",
93
- 'CODE': "code",
94
- },
95
- }
96
-
97
- validations = {
98
- ('hydra_oauth2_grant_jwt_max_ttl',): {
99
- 'regex': {
100
- 'pattern': r'^[0-9]+(ns|us|ms|s|m|h)$', # noqa: E501
101
- },
102
- },
103
- ('hydra_ttl_access_token',): {
104
- 'regex': {
105
- 'pattern': r'^[0-9]+(ns|us|ms|s|m|h)$', # noqa: E501
106
- },
107
- },
108
- ('hydra_ttl_auth_code',): {
109
- 'regex': {
110
- 'pattern': r'^[0-9]+(ns|us|ms|s|m|h)$', # noqa: E501
111
- },
112
- },
113
- ('hydra_ttl_id_token',): {
114
- 'regex': {
115
- 'pattern': r'^[0-9]+(ns|us|ms|s|m|h)$', # noqa: E501
116
- },
117
- },
118
- ('hydra_ttl_login_consent_request',): {
119
- 'regex': {
120
- 'pattern': r'^[0-9]+(ns|us|ms|s|m|h)$', # noqa: E501
121
- },
122
- },
123
- ('hydra_ttl_refresh_token',): {
124
- 'regex': {
125
- 'pattern': r'^([0-9]+(ns|us|ms|s|m|h)|-1)$', # noqa: E501
126
- },
127
- },
128
- }
129
-
130
- @cached_property
131
- def additional_properties_type():
132
- """
133
- This must be a method because a model may have properties that are
134
- of type self, this must run after the class is loaded
135
- """
136
- lazy_import()
137
- return (bool, date, datetime, dict, float, int, list, str, none_type,) # noqa: E501
138
-
139
- _nullable = False
140
-
141
- @cached_property
142
- def openapi_types():
143
- """
144
- This must be a method because a model may have properties that are
145
- of type self, this must run after the class is loaded
146
-
147
- Returns
148
- openapi_types (dict): The key is attribute name
149
- and the value is attribute type.
150
- """
151
- lazy_import()
152
- return {
153
- 'environment': (str,), # noqa: E501
154
- 'name': (str,), # noqa: E501
155
- 'created_at': (datetime,), # noqa: E501
156
- 'disable_account_experience_welcome_screen': (bool,), # noqa: E501
157
- 'enable_ax_v2': (bool,), # noqa: E501
158
- 'hydra_oauth2_allowed_top_level_claims': (StringSliceJSONFormat,), # noqa: E501
159
- 'hydra_oauth2_client_credentials_default_grant_allowed_scope': (bool,), # noqa: E501
160
- 'hydra_oauth2_exclude_not_before_claim': (bool,), # noqa: E501
161
- 'hydra_oauth2_grant_jwt_iat_optional': (bool,), # noqa: E501
162
- 'hydra_oauth2_grant_jwt_jti_optional': (bool,), # noqa: E501
163
- 'hydra_oauth2_grant_jwt_max_ttl': (str,), # noqa: E501
164
- 'hydra_oauth2_mirror_top_level_claims': (bool,), # noqa: E501
165
- 'hydra_oauth2_pkce_enforced': (bool,), # noqa: E501
166
- 'hydra_oauth2_pkce_enforced_for_public_clients': (bool,), # noqa: E501
167
- 'hydra_oauth2_refresh_token_hook': (str,), # noqa: E501
168
- 'hydra_oauth2_token_hook': (str,), # noqa: E501
169
- 'hydra_oidc_dynamic_client_registration_default_scope': (StringSliceJSONFormat,), # noqa: E501
170
- 'hydra_oidc_dynamic_client_registration_enabled': (bool,), # noqa: E501
171
- 'hydra_oidc_subject_identifiers_pairwise_salt': (str,), # noqa: E501
172
- 'hydra_oidc_subject_identifiers_supported_types': (StringSliceJSONFormat,), # noqa: E501
173
- 'hydra_secrets_cookie': (StringSliceJSONFormat,), # noqa: E501
174
- 'hydra_secrets_system': (StringSliceJSONFormat,), # noqa: E501
175
- 'hydra_serve_cookies_same_site_legacy_workaround': (bool,), # noqa: E501
176
- 'hydra_serve_cookies_same_site_mode': (str,), # noqa: E501
177
- 'hydra_strategies_access_token': (str,), # noqa: E501
178
- 'hydra_strategies_scope': (str,), # noqa: E501
179
- 'hydra_ttl_access_token': (str,), # noqa: E501
180
- 'hydra_ttl_auth_code': (str,), # noqa: E501
181
- 'hydra_ttl_id_token': (str,), # noqa: E501
182
- 'hydra_ttl_login_consent_request': (str,), # noqa: E501
183
- 'hydra_ttl_refresh_token': (str,), # noqa: E501
184
- 'hydra_urls_consent': (str,), # noqa: E501
185
- 'hydra_urls_error': (str,), # noqa: E501
186
- 'hydra_urls_login': (str,), # noqa: E501
187
- 'hydra_urls_logout': (str,), # noqa: E501
188
- 'hydra_urls_post_logout_redirect': (str,), # noqa: E501
189
- 'hydra_urls_registration': (str,), # noqa: E501
190
- 'hydra_urls_self_issuer': (str,), # noqa: E501
191
- 'hydra_webfinger_jwks_broadcast_keys': (StringSliceJSONFormat,), # noqa: E501
192
- 'hydra_webfinger_oidc_discovery_auth_url': (str,), # noqa: E501
193
- 'hydra_webfinger_oidc_discovery_client_registration_url': (str,), # noqa: E501
194
- 'hydra_webfinger_oidc_discovery_jwks_url': (str,), # noqa: E501
195
- 'hydra_webfinger_oidc_discovery_supported_claims': (StringSliceJSONFormat,), # noqa: E501
196
- 'hydra_webfinger_oidc_discovery_supported_scope': (StringSliceJSONFormat,), # noqa: E501
197
- 'hydra_webfinger_oidc_discovery_token_url': (str,), # noqa: E501
198
- 'hydra_webfinger_oidc_discovery_userinfo_url': (str,), # noqa: E501
199
- 'id': (str,), # noqa: E501
200
- 'keto_namespace_configuration': (str,), # noqa: E501
201
- 'keto_namespaces': (KetoNamespaces,), # noqa: E501
202
- 'kratos_cookies_same_site': (str,), # noqa: E501
203
- 'kratos_courier_channels': (RevisionCourierChannels,), # noqa: E501
204
- 'kratos_courier_delivery_strategy': (str,), # noqa: E501
205
- 'kratos_courier_http_request_config_auth_api_key_in': (str,), # noqa: E501
206
- 'kratos_courier_http_request_config_auth_api_key_name': (str,), # noqa: E501
207
- 'kratos_courier_http_request_config_auth_api_key_value': (str,), # noqa: E501
208
- 'kratos_courier_http_request_config_auth_basic_auth_password': (str,), # noqa: E501
209
- 'kratos_courier_http_request_config_auth_basic_auth_user': (str,), # noqa: E501
210
- 'kratos_courier_http_request_config_auth_type': (str,), # noqa: E501
211
- 'kratos_courier_http_request_config_body': (str,), # noqa: E501
212
- 'kratos_courier_http_request_config_headers': ({str: (bool, date, datetime, dict, float, int, list, str, none_type)}, none_type,), # noqa: E501
213
- 'kratos_courier_http_request_config_method': (str,), # noqa: E501
214
- 'kratos_courier_http_request_config_url': (str,), # noqa: E501
215
- 'kratos_courier_smtp_connection_uri': (str,), # noqa: E501
216
- 'kratos_courier_smtp_from_address': (str,), # noqa: E501
217
- 'kratos_courier_smtp_from_name': (str,), # noqa: E501
218
- 'kratos_courier_smtp_headers': ({str: (bool, date, datetime, dict, float, int, list, str, none_type)}, none_type,), # noqa: E501
219
- 'kratos_courier_smtp_local_name': (str,), # noqa: E501
220
- 'kratos_courier_templates_login_code_valid_email_body_html': (str,), # noqa: E501
221
- 'kratos_courier_templates_login_code_valid_email_body_plaintext': (str,), # noqa: E501
222
- 'kratos_courier_templates_login_code_valid_email_subject': (str,), # noqa: E501
223
- 'kratos_courier_templates_login_code_valid_sms_body_plaintext': (str,), # noqa: E501
224
- 'kratos_courier_templates_recovery_code_invalid_email_body_html': (str,), # noqa: E501
225
- 'kratos_courier_templates_recovery_code_invalid_email_body_plaintext': (str,), # noqa: E501
226
- 'kratos_courier_templates_recovery_code_invalid_email_subject': (str,), # noqa: E501
227
- 'kratos_courier_templates_recovery_code_valid_email_body_html': (str,), # noqa: E501
228
- 'kratos_courier_templates_recovery_code_valid_email_body_plaintext': (str,), # noqa: E501
229
- 'kratos_courier_templates_recovery_code_valid_email_subject': (str,), # noqa: E501
230
- 'kratos_courier_templates_recovery_invalid_email_body_html': (str,), # noqa: E501
231
- 'kratos_courier_templates_recovery_invalid_email_body_plaintext': (str,), # noqa: E501
232
- 'kratos_courier_templates_recovery_invalid_email_subject': (str,), # noqa: E501
233
- 'kratos_courier_templates_recovery_valid_email_body_html': (str,), # noqa: E501
234
- 'kratos_courier_templates_recovery_valid_email_body_plaintext': (str,), # noqa: E501
235
- 'kratos_courier_templates_recovery_valid_email_subject': (str,), # noqa: E501
236
- 'kratos_courier_templates_registration_code_valid_email_body_html': (str,), # noqa: E501
237
- 'kratos_courier_templates_registration_code_valid_email_body_plaintext': (str,), # noqa: E501
238
- 'kratos_courier_templates_registration_code_valid_email_subject': (str,), # noqa: E501
239
- 'kratos_courier_templates_verification_code_invalid_email_body_html': (str,), # noqa: E501
240
- 'kratos_courier_templates_verification_code_invalid_email_body_plaintext': (str,), # noqa: E501
241
- 'kratos_courier_templates_verification_code_invalid_email_subject': (str,), # noqa: E501
242
- 'kratos_courier_templates_verification_code_valid_email_body_html': (str,), # noqa: E501
243
- 'kratos_courier_templates_verification_code_valid_email_body_plaintext': (str,), # noqa: E501
244
- 'kratos_courier_templates_verification_code_valid_email_subject': (str,), # noqa: E501
245
- 'kratos_courier_templates_verification_code_valid_sms_body_plaintext': (str,), # noqa: E501
246
- 'kratos_courier_templates_verification_invalid_email_body_html': (str,), # noqa: E501
247
- 'kratos_courier_templates_verification_invalid_email_body_plaintext': (str,), # noqa: E501
248
- 'kratos_courier_templates_verification_invalid_email_subject': (str,), # noqa: E501
249
- 'kratos_courier_templates_verification_valid_email_body_html': (str,), # noqa: E501
250
- 'kratos_courier_templates_verification_valid_email_body_plaintext': (str,), # noqa: E501
251
- 'kratos_courier_templates_verification_valid_email_subject': (str,), # noqa: E501
252
- 'kratos_feature_flags_cacheable_sessions': (bool,), # noqa: E501
253
- 'kratos_feature_flags_cacheable_sessions_max_age': (str,), # noqa: E501
254
- 'kratos_feature_flags_use_continue_with_transitions': (bool,), # noqa: E501
255
- 'kratos_identity_schemas': (ProjectRevisionIdentitySchemas,), # noqa: E501
256
- 'kratos_oauth2_provider_headers': ({str: (bool, date, datetime, dict, float, int, list, str, none_type)}, none_type,), # noqa: E501
257
- 'kratos_oauth2_provider_override_return_to': (bool,), # noqa: E501
258
- 'kratos_oauth2_provider_url': (str,), # noqa: E501
259
- 'kratos_preview_default_read_consistency_level': (str,), # noqa: E501
260
- 'kratos_secrets_cipher': (StringSliceJSONFormat,), # noqa: E501
261
- 'kratos_secrets_cookie': (StringSliceJSONFormat,), # noqa: E501
262
- 'kratos_secrets_default': (StringSliceJSONFormat,), # noqa: E501
263
- 'kratos_selfservice_allowed_return_urls': (StringSliceJSONFormat,), # noqa: E501
264
- 'kratos_selfservice_default_browser_return_url': (str,), # noqa: E501
265
- 'kratos_selfservice_flows_error_ui_url': (str,), # noqa: E501
266
- 'kratos_selfservice_flows_login_after_code_default_browser_return_url': (str,), # noqa: E501
267
- 'kratos_selfservice_flows_login_after_default_browser_return_url': (str,), # noqa: E501
268
- 'kratos_selfservice_flows_login_after_lookup_secret_default_browser_return_url': (str,), # noqa: E501
269
- 'kratos_selfservice_flows_login_after_oidc_default_browser_return_url': (str,), # noqa: E501
270
- 'kratos_selfservice_flows_login_after_password_default_browser_return_url': (str,), # noqa: E501
271
- 'kratos_selfservice_flows_login_after_totp_default_browser_return_url': (str,), # noqa: E501
272
- 'kratos_selfservice_flows_login_after_webauthn_default_browser_return_url': (str,), # noqa: E501
273
- 'kratos_selfservice_flows_login_lifespan': (str,), # noqa: E501
274
- 'kratos_selfservice_flows_login_ui_url': (str,), # noqa: E501
275
- 'kratos_selfservice_flows_logout_after_default_browser_return_url': (str,), # noqa: E501
276
- 'kratos_selfservice_flows_recovery_after_default_browser_return_url': (str,), # noqa: E501
277
- 'kratos_selfservice_flows_recovery_enabled': (bool,), # noqa: E501
278
- 'kratos_selfservice_flows_recovery_lifespan': (str,), # noqa: E501
279
- 'kratos_selfservice_flows_recovery_notify_unknown_recipients': (bool,), # noqa: E501
280
- 'kratos_selfservice_flows_recovery_ui_url': (str,), # noqa: E501
281
- 'kratos_selfservice_flows_recovery_use': (str,), # noqa: E501
282
- 'kratos_selfservice_flows_registration_after_code_default_browser_return_url': (str,), # noqa: E501
283
- 'kratos_selfservice_flows_registration_after_default_browser_return_url': (str,), # noqa: E501
284
- 'kratos_selfservice_flows_registration_after_oidc_default_browser_return_url': (str,), # noqa: E501
285
- 'kratos_selfservice_flows_registration_after_password_default_browser_return_url': (str,), # noqa: E501
286
- 'kratos_selfservice_flows_registration_after_webauthn_default_browser_return_url': (str,), # noqa: E501
287
- 'kratos_selfservice_flows_registration_enabled': (bool,), # noqa: E501
288
- 'kratos_selfservice_flows_registration_lifespan': (str,), # noqa: E501
289
- 'kratos_selfservice_flows_registration_login_hints': (bool,), # noqa: E501
290
- 'kratos_selfservice_flows_registration_ui_url': (str,), # noqa: E501
291
- 'kratos_selfservice_flows_settings_after_default_browser_return_url': (str,), # noqa: E501
292
- 'kratos_selfservice_flows_settings_after_lookup_secret_default_browser_return_url': (str,), # noqa: E501
293
- 'kratos_selfservice_flows_settings_after_oidc_default_browser_return_url': (str,), # noqa: E501
294
- 'kratos_selfservice_flows_settings_after_password_default_browser_return_url': (str,), # noqa: E501
295
- 'kratos_selfservice_flows_settings_after_profile_default_browser_return_url': (str,), # noqa: E501
296
- 'kratos_selfservice_flows_settings_after_totp_default_browser_return_url': (str,), # noqa: E501
297
- 'kratos_selfservice_flows_settings_after_webauthn_default_browser_return_url': (str,), # noqa: E501
298
- 'kratos_selfservice_flows_settings_lifespan': (str,), # noqa: E501
299
- 'kratos_selfservice_flows_settings_privileged_session_max_age': (str,), # noqa: E501
300
- 'kratos_selfservice_flows_settings_required_aal': (str,), # noqa: E501
301
- 'kratos_selfservice_flows_settings_ui_url': (str,), # noqa: E501
302
- 'kratos_selfservice_flows_verification_after_default_browser_return_url': (str,), # noqa: E501
303
- 'kratos_selfservice_flows_verification_enabled': (bool,), # noqa: E501
304
- 'kratos_selfservice_flows_verification_lifespan': (str,), # noqa: E501
305
- 'kratos_selfservice_flows_verification_notify_unknown_recipients': (bool,), # noqa: E501
306
- 'kratos_selfservice_flows_verification_ui_url': (str,), # noqa: E501
307
- 'kratos_selfservice_flows_verification_use': (str,), # noqa: E501
308
- 'kratos_selfservice_methods_code_config_lifespan': (str,), # noqa: E501
309
- 'kratos_selfservice_methods_code_enabled': (bool,), # noqa: E501
310
- 'kratos_selfservice_methods_code_mfa_enabled': (bool,), # noqa: E501
311
- 'kratos_selfservice_methods_code_passwordless_enabled': (bool,), # noqa: E501
312
- 'kratos_selfservice_methods_link_config_base_url': (str,), # noqa: E501
313
- 'kratos_selfservice_methods_link_config_lifespan': (str,), # noqa: E501
314
- 'kratos_selfservice_methods_link_enabled': (bool,), # noqa: E501
315
- 'kratos_selfservice_methods_lookup_secret_enabled': (bool,), # noqa: E501
316
- 'kratos_selfservice_methods_oidc_config_base_redirect_uri': (str,), # noqa: E501
317
- 'kratos_selfservice_methods_oidc_config_providers': (ProjectRevisionThirdPartyLoginProviders,), # noqa: E501
318
- 'kratos_selfservice_methods_oidc_enabled': (bool,), # noqa: E501
319
- 'kratos_selfservice_methods_password_config_haveibeenpwned_enabled': (bool,), # noqa: E501
320
- 'kratos_selfservice_methods_password_config_identifier_similarity_check_enabled': (bool,), # noqa: E501
321
- 'kratos_selfservice_methods_password_config_ignore_network_errors': (bool,), # noqa: E501
322
- 'kratos_selfservice_methods_password_config_max_breaches': (int,), # noqa: E501
323
- 'kratos_selfservice_methods_password_config_min_password_length': (int,), # noqa: E501
324
- 'kratos_selfservice_methods_password_enabled': (bool,), # noqa: E501
325
- 'kratos_selfservice_methods_profile_enabled': (bool,), # noqa: E501
326
- 'kratos_selfservice_methods_totp_config_issuer': (str,), # noqa: E501
327
- 'kratos_selfservice_methods_totp_enabled': (bool,), # noqa: E501
328
- 'kratos_selfservice_methods_webauthn_config_passwordless': (bool,), # noqa: E501
329
- 'kratos_selfservice_methods_webauthn_config_rp_display_name': (str,), # noqa: E501
330
- 'kratos_selfservice_methods_webauthn_config_rp_icon': (str,), # noqa: E501
331
- 'kratos_selfservice_methods_webauthn_config_rp_id': (str,), # noqa: E501
332
- 'kratos_selfservice_methods_webauthn_config_rp_origins': (StringSliceJSONFormat,), # noqa: E501
333
- 'kratos_selfservice_methods_webauthn_enabled': (bool,), # noqa: E501
334
- 'kratos_session_cookie_persistent': (bool,), # noqa: E501
335
- 'kratos_session_cookie_same_site': (str,), # noqa: E501
336
- 'kratos_session_lifespan': (str,), # noqa: E501
337
- 'kratos_session_whoami_required_aal': (str,), # noqa: E501
338
- 'kratos_session_whoami_tokenizer_templates': (NormalizedProjectRevisionTokenizerTemplates,), # noqa: E501
339
- 'project_id': (str,), # noqa: E501
340
- 'project_revision_hooks': (ProjectRevisionHooks,), # noqa: E501
341
- 'serve_admin_cors_allowed_origins': (StringSliceJSONFormat,), # noqa: E501
342
- 'serve_admin_cors_enabled': (bool,), # noqa: E501
343
- 'serve_public_cors_allowed_origins': (StringSliceJSONFormat,), # noqa: E501
344
- 'serve_public_cors_enabled': (bool,), # noqa: E501
345
- 'strict_security': (bool,), # noqa: E501
346
- 'updated_at': (datetime,), # noqa: E501
347
- 'workspace_id': (str, none_type,), # noqa: E501
348
- }
349
-
350
- @cached_property
351
- def discriminator():
352
- return None
353
-
354
-
355
- attribute_map = {
356
- 'environment': 'environment', # noqa: E501
357
- 'name': 'name', # noqa: E501
358
- 'created_at': 'created_at', # noqa: E501
359
- 'disable_account_experience_welcome_screen': 'disable_account_experience_welcome_screen', # noqa: E501
360
- 'enable_ax_v2': 'enable_ax_v2', # noqa: E501
361
- 'hydra_oauth2_allowed_top_level_claims': 'hydra_oauth2_allowed_top_level_claims', # noqa: E501
362
- 'hydra_oauth2_client_credentials_default_grant_allowed_scope': 'hydra_oauth2_client_credentials_default_grant_allowed_scope', # noqa: E501
363
- 'hydra_oauth2_exclude_not_before_claim': 'hydra_oauth2_exclude_not_before_claim', # noqa: E501
364
- 'hydra_oauth2_grant_jwt_iat_optional': 'hydra_oauth2_grant_jwt_iat_optional', # noqa: E501
365
- 'hydra_oauth2_grant_jwt_jti_optional': 'hydra_oauth2_grant_jwt_jti_optional', # noqa: E501
366
- 'hydra_oauth2_grant_jwt_max_ttl': 'hydra_oauth2_grant_jwt_max_ttl', # noqa: E501
367
- 'hydra_oauth2_mirror_top_level_claims': 'hydra_oauth2_mirror_top_level_claims', # noqa: E501
368
- 'hydra_oauth2_pkce_enforced': 'hydra_oauth2_pkce_enforced', # noqa: E501
369
- 'hydra_oauth2_pkce_enforced_for_public_clients': 'hydra_oauth2_pkce_enforced_for_public_clients', # noqa: E501
370
- 'hydra_oauth2_refresh_token_hook': 'hydra_oauth2_refresh_token_hook', # noqa: E501
371
- 'hydra_oauth2_token_hook': 'hydra_oauth2_token_hook', # noqa: E501
372
- 'hydra_oidc_dynamic_client_registration_default_scope': 'hydra_oidc_dynamic_client_registration_default_scope', # noqa: E501
373
- 'hydra_oidc_dynamic_client_registration_enabled': 'hydra_oidc_dynamic_client_registration_enabled', # noqa: E501
374
- 'hydra_oidc_subject_identifiers_pairwise_salt': 'hydra_oidc_subject_identifiers_pairwise_salt', # noqa: E501
375
- 'hydra_oidc_subject_identifiers_supported_types': 'hydra_oidc_subject_identifiers_supported_types', # noqa: E501
376
- 'hydra_secrets_cookie': 'hydra_secrets_cookie', # noqa: E501
377
- 'hydra_secrets_system': 'hydra_secrets_system', # noqa: E501
378
- 'hydra_serve_cookies_same_site_legacy_workaround': 'hydra_serve_cookies_same_site_legacy_workaround', # noqa: E501
379
- 'hydra_serve_cookies_same_site_mode': 'hydra_serve_cookies_same_site_mode', # noqa: E501
380
- 'hydra_strategies_access_token': 'hydra_strategies_access_token', # noqa: E501
381
- 'hydra_strategies_scope': 'hydra_strategies_scope', # noqa: E501
382
- 'hydra_ttl_access_token': 'hydra_ttl_access_token', # noqa: E501
383
- 'hydra_ttl_auth_code': 'hydra_ttl_auth_code', # noqa: E501
384
- 'hydra_ttl_id_token': 'hydra_ttl_id_token', # noqa: E501
385
- 'hydra_ttl_login_consent_request': 'hydra_ttl_login_consent_request', # noqa: E501
386
- 'hydra_ttl_refresh_token': 'hydra_ttl_refresh_token', # noqa: E501
387
- 'hydra_urls_consent': 'hydra_urls_consent', # noqa: E501
388
- 'hydra_urls_error': 'hydra_urls_error', # noqa: E501
389
- 'hydra_urls_login': 'hydra_urls_login', # noqa: E501
390
- 'hydra_urls_logout': 'hydra_urls_logout', # noqa: E501
391
- 'hydra_urls_post_logout_redirect': 'hydra_urls_post_logout_redirect', # noqa: E501
392
- 'hydra_urls_registration': 'hydra_urls_registration', # noqa: E501
393
- 'hydra_urls_self_issuer': 'hydra_urls_self_issuer', # noqa: E501
394
- 'hydra_webfinger_jwks_broadcast_keys': 'hydra_webfinger_jwks_broadcast_keys', # noqa: E501
395
- 'hydra_webfinger_oidc_discovery_auth_url': 'hydra_webfinger_oidc_discovery_auth_url', # noqa: E501
396
- 'hydra_webfinger_oidc_discovery_client_registration_url': 'hydra_webfinger_oidc_discovery_client_registration_url', # noqa: E501
397
- 'hydra_webfinger_oidc_discovery_jwks_url': 'hydra_webfinger_oidc_discovery_jwks_url', # noqa: E501
398
- 'hydra_webfinger_oidc_discovery_supported_claims': 'hydra_webfinger_oidc_discovery_supported_claims', # noqa: E501
399
- 'hydra_webfinger_oidc_discovery_supported_scope': 'hydra_webfinger_oidc_discovery_supported_scope', # noqa: E501
400
- 'hydra_webfinger_oidc_discovery_token_url': 'hydra_webfinger_oidc_discovery_token_url', # noqa: E501
401
- 'hydra_webfinger_oidc_discovery_userinfo_url': 'hydra_webfinger_oidc_discovery_userinfo_url', # noqa: E501
402
- 'id': 'id', # noqa: E501
403
- 'keto_namespace_configuration': 'keto_namespace_configuration', # noqa: E501
404
- 'keto_namespaces': 'keto_namespaces', # noqa: E501
405
- 'kratos_cookies_same_site': 'kratos_cookies_same_site', # noqa: E501
406
- 'kratos_courier_channels': 'kratos_courier_channels', # noqa: E501
407
- 'kratos_courier_delivery_strategy': 'kratos_courier_delivery_strategy', # noqa: E501
408
- 'kratos_courier_http_request_config_auth_api_key_in': 'kratos_courier_http_request_config_auth_api_key_in', # noqa: E501
409
- 'kratos_courier_http_request_config_auth_api_key_name': 'kratos_courier_http_request_config_auth_api_key_name', # noqa: E501
410
- 'kratos_courier_http_request_config_auth_api_key_value': 'kratos_courier_http_request_config_auth_api_key_value', # noqa: E501
411
- 'kratos_courier_http_request_config_auth_basic_auth_password': 'kratos_courier_http_request_config_auth_basic_auth_password', # noqa: E501
412
- 'kratos_courier_http_request_config_auth_basic_auth_user': 'kratos_courier_http_request_config_auth_basic_auth_user', # noqa: E501
413
- 'kratos_courier_http_request_config_auth_type': 'kratos_courier_http_request_config_auth_type', # noqa: E501
414
- 'kratos_courier_http_request_config_body': 'kratos_courier_http_request_config_body', # noqa: E501
415
- 'kratos_courier_http_request_config_headers': 'kratos_courier_http_request_config_headers', # noqa: E501
416
- 'kratos_courier_http_request_config_method': 'kratos_courier_http_request_config_method', # noqa: E501
417
- 'kratos_courier_http_request_config_url': 'kratos_courier_http_request_config_url', # noqa: E501
418
- 'kratos_courier_smtp_connection_uri': 'kratos_courier_smtp_connection_uri', # noqa: E501
419
- 'kratos_courier_smtp_from_address': 'kratos_courier_smtp_from_address', # noqa: E501
420
- 'kratos_courier_smtp_from_name': 'kratos_courier_smtp_from_name', # noqa: E501
421
- 'kratos_courier_smtp_headers': 'kratos_courier_smtp_headers', # noqa: E501
422
- 'kratos_courier_smtp_local_name': 'kratos_courier_smtp_local_name', # noqa: E501
423
- 'kratos_courier_templates_login_code_valid_email_body_html': 'kratos_courier_templates_login_code_valid_email_body_html', # noqa: E501
424
- 'kratos_courier_templates_login_code_valid_email_body_plaintext': 'kratos_courier_templates_login_code_valid_email_body_plaintext', # noqa: E501
425
- 'kratos_courier_templates_login_code_valid_email_subject': 'kratos_courier_templates_login_code_valid_email_subject', # noqa: E501
426
- 'kratos_courier_templates_login_code_valid_sms_body_plaintext': 'kratos_courier_templates_login_code_valid_sms_body_plaintext', # noqa: E501
427
- 'kratos_courier_templates_recovery_code_invalid_email_body_html': 'kratos_courier_templates_recovery_code_invalid_email_body_html', # noqa: E501
428
- 'kratos_courier_templates_recovery_code_invalid_email_body_plaintext': 'kratos_courier_templates_recovery_code_invalid_email_body_plaintext', # noqa: E501
429
- 'kratos_courier_templates_recovery_code_invalid_email_subject': 'kratos_courier_templates_recovery_code_invalid_email_subject', # noqa: E501
430
- 'kratos_courier_templates_recovery_code_valid_email_body_html': 'kratos_courier_templates_recovery_code_valid_email_body_html', # noqa: E501
431
- 'kratos_courier_templates_recovery_code_valid_email_body_plaintext': 'kratos_courier_templates_recovery_code_valid_email_body_plaintext', # noqa: E501
432
- 'kratos_courier_templates_recovery_code_valid_email_subject': 'kratos_courier_templates_recovery_code_valid_email_subject', # noqa: E501
433
- 'kratos_courier_templates_recovery_invalid_email_body_html': 'kratos_courier_templates_recovery_invalid_email_body_html', # noqa: E501
434
- 'kratos_courier_templates_recovery_invalid_email_body_plaintext': 'kratos_courier_templates_recovery_invalid_email_body_plaintext', # noqa: E501
435
- 'kratos_courier_templates_recovery_invalid_email_subject': 'kratos_courier_templates_recovery_invalid_email_subject', # noqa: E501
436
- 'kratos_courier_templates_recovery_valid_email_body_html': 'kratos_courier_templates_recovery_valid_email_body_html', # noqa: E501
437
- 'kratos_courier_templates_recovery_valid_email_body_plaintext': 'kratos_courier_templates_recovery_valid_email_body_plaintext', # noqa: E501
438
- 'kratos_courier_templates_recovery_valid_email_subject': 'kratos_courier_templates_recovery_valid_email_subject', # noqa: E501
439
- 'kratos_courier_templates_registration_code_valid_email_body_html': 'kratos_courier_templates_registration_code_valid_email_body_html', # noqa: E501
440
- 'kratos_courier_templates_registration_code_valid_email_body_plaintext': 'kratos_courier_templates_registration_code_valid_email_body_plaintext', # noqa: E501
441
- 'kratos_courier_templates_registration_code_valid_email_subject': 'kratos_courier_templates_registration_code_valid_email_subject', # noqa: E501
442
- 'kratos_courier_templates_verification_code_invalid_email_body_html': 'kratos_courier_templates_verification_code_invalid_email_body_html', # noqa: E501
443
- 'kratos_courier_templates_verification_code_invalid_email_body_plaintext': 'kratos_courier_templates_verification_code_invalid_email_body_plaintext', # noqa: E501
444
- 'kratos_courier_templates_verification_code_invalid_email_subject': 'kratos_courier_templates_verification_code_invalid_email_subject', # noqa: E501
445
- 'kratos_courier_templates_verification_code_valid_email_body_html': 'kratos_courier_templates_verification_code_valid_email_body_html', # noqa: E501
446
- 'kratos_courier_templates_verification_code_valid_email_body_plaintext': 'kratos_courier_templates_verification_code_valid_email_body_plaintext', # noqa: E501
447
- 'kratos_courier_templates_verification_code_valid_email_subject': 'kratos_courier_templates_verification_code_valid_email_subject', # noqa: E501
448
- 'kratos_courier_templates_verification_code_valid_sms_body_plaintext': 'kratos_courier_templates_verification_code_valid_sms_body_plaintext', # noqa: E501
449
- 'kratos_courier_templates_verification_invalid_email_body_html': 'kratos_courier_templates_verification_invalid_email_body_html', # noqa: E501
450
- 'kratos_courier_templates_verification_invalid_email_body_plaintext': 'kratos_courier_templates_verification_invalid_email_body_plaintext', # noqa: E501
451
- 'kratos_courier_templates_verification_invalid_email_subject': 'kratos_courier_templates_verification_invalid_email_subject', # noqa: E501
452
- 'kratos_courier_templates_verification_valid_email_body_html': 'kratos_courier_templates_verification_valid_email_body_html', # noqa: E501
453
- 'kratos_courier_templates_verification_valid_email_body_plaintext': 'kratos_courier_templates_verification_valid_email_body_plaintext', # noqa: E501
454
- 'kratos_courier_templates_verification_valid_email_subject': 'kratos_courier_templates_verification_valid_email_subject', # noqa: E501
455
- 'kratos_feature_flags_cacheable_sessions': 'kratos_feature_flags_cacheable_sessions', # noqa: E501
456
- 'kratos_feature_flags_cacheable_sessions_max_age': 'kratos_feature_flags_cacheable_sessions_max_age', # noqa: E501
457
- 'kratos_feature_flags_use_continue_with_transitions': 'kratos_feature_flags_use_continue_with_transitions', # noqa: E501
458
- 'kratos_identity_schemas': 'kratos_identity_schemas', # noqa: E501
459
- 'kratos_oauth2_provider_headers': 'kratos_oauth2_provider_headers', # noqa: E501
460
- 'kratos_oauth2_provider_override_return_to': 'kratos_oauth2_provider_override_return_to', # noqa: E501
461
- 'kratos_oauth2_provider_url': 'kratos_oauth2_provider_url', # noqa: E501
462
- 'kratos_preview_default_read_consistency_level': 'kratos_preview_default_read_consistency_level', # noqa: E501
463
- 'kratos_secrets_cipher': 'kratos_secrets_cipher', # noqa: E501
464
- 'kratos_secrets_cookie': 'kratos_secrets_cookie', # noqa: E501
465
- 'kratos_secrets_default': 'kratos_secrets_default', # noqa: E501
466
- 'kratos_selfservice_allowed_return_urls': 'kratos_selfservice_allowed_return_urls', # noqa: E501
467
- 'kratos_selfservice_default_browser_return_url': 'kratos_selfservice_default_browser_return_url', # noqa: E501
468
- 'kratos_selfservice_flows_error_ui_url': 'kratos_selfservice_flows_error_ui_url', # noqa: E501
469
- 'kratos_selfservice_flows_login_after_code_default_browser_return_url': 'kratos_selfservice_flows_login_after_code_default_browser_return_url', # noqa: E501
470
- 'kratos_selfservice_flows_login_after_default_browser_return_url': 'kratos_selfservice_flows_login_after_default_browser_return_url', # noqa: E501
471
- 'kratos_selfservice_flows_login_after_lookup_secret_default_browser_return_url': 'kratos_selfservice_flows_login_after_lookup_secret_default_browser_return_url', # noqa: E501
472
- 'kratos_selfservice_flows_login_after_oidc_default_browser_return_url': 'kratos_selfservice_flows_login_after_oidc_default_browser_return_url', # noqa: E501
473
- 'kratos_selfservice_flows_login_after_password_default_browser_return_url': 'kratos_selfservice_flows_login_after_password_default_browser_return_url', # noqa: E501
474
- 'kratos_selfservice_flows_login_after_totp_default_browser_return_url': 'kratos_selfservice_flows_login_after_totp_default_browser_return_url', # noqa: E501
475
- 'kratos_selfservice_flows_login_after_webauthn_default_browser_return_url': 'kratos_selfservice_flows_login_after_webauthn_default_browser_return_url', # noqa: E501
476
- 'kratos_selfservice_flows_login_lifespan': 'kratos_selfservice_flows_login_lifespan', # noqa: E501
477
- 'kratos_selfservice_flows_login_ui_url': 'kratos_selfservice_flows_login_ui_url', # noqa: E501
478
- 'kratos_selfservice_flows_logout_after_default_browser_return_url': 'kratos_selfservice_flows_logout_after_default_browser_return_url', # noqa: E501
479
- 'kratos_selfservice_flows_recovery_after_default_browser_return_url': 'kratos_selfservice_flows_recovery_after_default_browser_return_url', # noqa: E501
480
- 'kratos_selfservice_flows_recovery_enabled': 'kratos_selfservice_flows_recovery_enabled', # noqa: E501
481
- 'kratos_selfservice_flows_recovery_lifespan': 'kratos_selfservice_flows_recovery_lifespan', # noqa: E501
482
- 'kratos_selfservice_flows_recovery_notify_unknown_recipients': 'kratos_selfservice_flows_recovery_notify_unknown_recipients', # noqa: E501
483
- 'kratos_selfservice_flows_recovery_ui_url': 'kratos_selfservice_flows_recovery_ui_url', # noqa: E501
484
- 'kratos_selfservice_flows_recovery_use': 'kratos_selfservice_flows_recovery_use', # noqa: E501
485
- 'kratos_selfservice_flows_registration_after_code_default_browser_return_url': 'kratos_selfservice_flows_registration_after_code_default_browser_return_url', # noqa: E501
486
- 'kratos_selfservice_flows_registration_after_default_browser_return_url': 'kratos_selfservice_flows_registration_after_default_browser_return_url', # noqa: E501
487
- 'kratos_selfservice_flows_registration_after_oidc_default_browser_return_url': 'kratos_selfservice_flows_registration_after_oidc_default_browser_return_url', # noqa: E501
488
- 'kratos_selfservice_flows_registration_after_password_default_browser_return_url': 'kratos_selfservice_flows_registration_after_password_default_browser_return_url', # noqa: E501
489
- 'kratos_selfservice_flows_registration_after_webauthn_default_browser_return_url': 'kratos_selfservice_flows_registration_after_webauthn_default_browser_return_url', # noqa: E501
490
- 'kratos_selfservice_flows_registration_enabled': 'kratos_selfservice_flows_registration_enabled', # noqa: E501
491
- 'kratos_selfservice_flows_registration_lifespan': 'kratos_selfservice_flows_registration_lifespan', # noqa: E501
492
- 'kratos_selfservice_flows_registration_login_hints': 'kratos_selfservice_flows_registration_login_hints', # noqa: E501
493
- 'kratos_selfservice_flows_registration_ui_url': 'kratos_selfservice_flows_registration_ui_url', # noqa: E501
494
- 'kratos_selfservice_flows_settings_after_default_browser_return_url': 'kratos_selfservice_flows_settings_after_default_browser_return_url', # noqa: E501
495
- 'kratos_selfservice_flows_settings_after_lookup_secret_default_browser_return_url': 'kratos_selfservice_flows_settings_after_lookup_secret_default_browser_return_url', # noqa: E501
496
- 'kratos_selfservice_flows_settings_after_oidc_default_browser_return_url': 'kratos_selfservice_flows_settings_after_oidc_default_browser_return_url', # noqa: E501
497
- 'kratos_selfservice_flows_settings_after_password_default_browser_return_url': 'kratos_selfservice_flows_settings_after_password_default_browser_return_url', # noqa: E501
498
- 'kratos_selfservice_flows_settings_after_profile_default_browser_return_url': 'kratos_selfservice_flows_settings_after_profile_default_browser_return_url', # noqa: E501
499
- 'kratos_selfservice_flows_settings_after_totp_default_browser_return_url': 'kratos_selfservice_flows_settings_after_totp_default_browser_return_url', # noqa: E501
500
- 'kratos_selfservice_flows_settings_after_webauthn_default_browser_return_url': 'kratos_selfservice_flows_settings_after_webauthn_default_browser_return_url', # noqa: E501
501
- 'kratos_selfservice_flows_settings_lifespan': 'kratos_selfservice_flows_settings_lifespan', # noqa: E501
502
- 'kratos_selfservice_flows_settings_privileged_session_max_age': 'kratos_selfservice_flows_settings_privileged_session_max_age', # noqa: E501
503
- 'kratos_selfservice_flows_settings_required_aal': 'kratos_selfservice_flows_settings_required_aal', # noqa: E501
504
- 'kratos_selfservice_flows_settings_ui_url': 'kratos_selfservice_flows_settings_ui_url', # noqa: E501
505
- 'kratos_selfservice_flows_verification_after_default_browser_return_url': 'kratos_selfservice_flows_verification_after_default_browser_return_url', # noqa: E501
506
- 'kratos_selfservice_flows_verification_enabled': 'kratos_selfservice_flows_verification_enabled', # noqa: E501
507
- 'kratos_selfservice_flows_verification_lifespan': 'kratos_selfservice_flows_verification_lifespan', # noqa: E501
508
- 'kratos_selfservice_flows_verification_notify_unknown_recipients': 'kratos_selfservice_flows_verification_notify_unknown_recipients', # noqa: E501
509
- 'kratos_selfservice_flows_verification_ui_url': 'kratos_selfservice_flows_verification_ui_url', # noqa: E501
510
- 'kratos_selfservice_flows_verification_use': 'kratos_selfservice_flows_verification_use', # noqa: E501
511
- 'kratos_selfservice_methods_code_config_lifespan': 'kratos_selfservice_methods_code_config_lifespan', # noqa: E501
512
- 'kratos_selfservice_methods_code_enabled': 'kratos_selfservice_methods_code_enabled', # noqa: E501
513
- 'kratos_selfservice_methods_code_mfa_enabled': 'kratos_selfservice_methods_code_mfa_enabled', # noqa: E501
514
- 'kratos_selfservice_methods_code_passwordless_enabled': 'kratos_selfservice_methods_code_passwordless_enabled', # noqa: E501
515
- 'kratos_selfservice_methods_link_config_base_url': 'kratos_selfservice_methods_link_config_base_url', # noqa: E501
516
- 'kratos_selfservice_methods_link_config_lifespan': 'kratos_selfservice_methods_link_config_lifespan', # noqa: E501
517
- 'kratos_selfservice_methods_link_enabled': 'kratos_selfservice_methods_link_enabled', # noqa: E501
518
- 'kratos_selfservice_methods_lookup_secret_enabled': 'kratos_selfservice_methods_lookup_secret_enabled', # noqa: E501
519
- 'kratos_selfservice_methods_oidc_config_base_redirect_uri': 'kratos_selfservice_methods_oidc_config_base_redirect_uri', # noqa: E501
520
- 'kratos_selfservice_methods_oidc_config_providers': 'kratos_selfservice_methods_oidc_config_providers', # noqa: E501
521
- 'kratos_selfservice_methods_oidc_enabled': 'kratos_selfservice_methods_oidc_enabled', # noqa: E501
522
- 'kratos_selfservice_methods_password_config_haveibeenpwned_enabled': 'kratos_selfservice_methods_password_config_haveibeenpwned_enabled', # noqa: E501
523
- 'kratos_selfservice_methods_password_config_identifier_similarity_check_enabled': 'kratos_selfservice_methods_password_config_identifier_similarity_check_enabled', # noqa: E501
524
- 'kratos_selfservice_methods_password_config_ignore_network_errors': 'kratos_selfservice_methods_password_config_ignore_network_errors', # noqa: E501
525
- 'kratos_selfservice_methods_password_config_max_breaches': 'kratos_selfservice_methods_password_config_max_breaches', # noqa: E501
526
- 'kratos_selfservice_methods_password_config_min_password_length': 'kratos_selfservice_methods_password_config_min_password_length', # noqa: E501
527
- 'kratos_selfservice_methods_password_enabled': 'kratos_selfservice_methods_password_enabled', # noqa: E501
528
- 'kratos_selfservice_methods_profile_enabled': 'kratos_selfservice_methods_profile_enabled', # noqa: E501
529
- 'kratos_selfservice_methods_totp_config_issuer': 'kratos_selfservice_methods_totp_config_issuer', # noqa: E501
530
- 'kratos_selfservice_methods_totp_enabled': 'kratos_selfservice_methods_totp_enabled', # noqa: E501
531
- 'kratos_selfservice_methods_webauthn_config_passwordless': 'kratos_selfservice_methods_webauthn_config_passwordless', # noqa: E501
532
- 'kratos_selfservice_methods_webauthn_config_rp_display_name': 'kratos_selfservice_methods_webauthn_config_rp_display_name', # noqa: E501
533
- 'kratos_selfservice_methods_webauthn_config_rp_icon': 'kratos_selfservice_methods_webauthn_config_rp_icon', # noqa: E501
534
- 'kratos_selfservice_methods_webauthn_config_rp_id': 'kratos_selfservice_methods_webauthn_config_rp_id', # noqa: E501
535
- 'kratos_selfservice_methods_webauthn_config_rp_origins': 'kratos_selfservice_methods_webauthn_config_rp_origins', # noqa: E501
536
- 'kratos_selfservice_methods_webauthn_enabled': 'kratos_selfservice_methods_webauthn_enabled', # noqa: E501
537
- 'kratos_session_cookie_persistent': 'kratos_session_cookie_persistent', # noqa: E501
538
- 'kratos_session_cookie_same_site': 'kratos_session_cookie_same_site', # noqa: E501
539
- 'kratos_session_lifespan': 'kratos_session_lifespan', # noqa: E501
540
- 'kratos_session_whoami_required_aal': 'kratos_session_whoami_required_aal', # noqa: E501
541
- 'kratos_session_whoami_tokenizer_templates': 'kratos_session_whoami_tokenizer_templates', # noqa: E501
542
- 'project_id': 'project_id', # noqa: E501
543
- 'project_revision_hooks': 'project_revision_hooks', # noqa: E501
544
- 'serve_admin_cors_allowed_origins': 'serve_admin_cors_allowed_origins', # noqa: E501
545
- 'serve_admin_cors_enabled': 'serve_admin_cors_enabled', # noqa: E501
546
- 'serve_public_cors_allowed_origins': 'serve_public_cors_allowed_origins', # noqa: E501
547
- 'serve_public_cors_enabled': 'serve_public_cors_enabled', # noqa: E501
548
- 'strict_security': 'strict_security', # noqa: E501
549
- 'updated_at': 'updated_at', # noqa: E501
550
- 'workspace_id': 'workspace_id', # noqa: E501
551
- }
552
-
553
- read_only_vars = {
554
- 'created_at', # noqa: E501
555
- 'id', # noqa: E501
556
- 'updated_at', # noqa: E501
557
- }
558
-
559
- _composed_schemas = {}
560
-
561
- @classmethod
562
- @convert_js_args_to_python_args
563
- def _from_openapi_data(cls, environment, name, *args, **kwargs): # noqa: E501
564
- """CreateProjectNormalizedPayload - a model defined in OpenAPI
565
-
566
- Args:
567
- environment (str): prod Production dev Development
568
- name (str): The project's name.
569
-
570
- Keyword Args:
571
- _check_type (bool): if True, values for parameters in openapi_types
572
- will be type checked and a TypeError will be
573
- raised if the wrong type is input.
574
- Defaults to True
575
- _path_to_item (tuple/list): This is a list of keys or values to
576
- drill down to the model in received_data
577
- when deserializing a response
578
- _spec_property_naming (bool): True if the variable names in the input data
579
- are serialized names, as specified in the OpenAPI document.
580
- False if the variable names in the input data
581
- are pythonic names, e.g. snake case (default)
582
- _configuration (Configuration): the instance to use when
583
- deserializing a file_type parameter.
584
- If passed, type conversion is attempted
585
- If omitted no type conversion is done.
586
- _visited_composed_classes (tuple): This stores a tuple of
587
- classes that we have traveled through so that
588
- if we see that class again we will not use its
589
- discriminator again.
590
- When traveling through a discriminator, the
591
- composed schema that is
592
- is traveled through is added to this set.
593
- For example if Animal has a discriminator
594
- petType and we pass in "Dog", and the class Dog
595
- allOf includes Animal, we move through Animal
596
- once using the discriminator, and pick Dog.
597
- Then in Dog, we will make an instance of the
598
- Animal class but this time we won't travel
599
- through its discriminator because we passed in
600
- _visited_composed_classes = (Animal,)
601
- created_at (datetime): The Project's Revision Creation Date. [optional] # noqa: E501
602
- disable_account_experience_welcome_screen (bool): Whether to disable the account experience welcome screen, which is hosted under `/ui/welcome`.. [optional] # noqa: E501
603
- enable_ax_v2 (bool): Whether the new account experience is enabled and reachable.. [optional] # noqa: E501
604
- hydra_oauth2_allowed_top_level_claims (StringSliceJSONFormat): [optional] # noqa: E501
605
- hydra_oauth2_client_credentials_default_grant_allowed_scope (bool): Automatically grant authorized OAuth2 Scope in OAuth2 Client Credentials Flow. Each OAuth2 Client is allowed to request a predefined OAuth2 Scope (for example `read write`). If this option is enabled, the full scope is automatically granted when performing the OAuth2 Client Credentials flow. If disabled, the OAuth2 Client has to request the scope in the OAuth2 request by providing the `scope` query parameter. Setting this option to true is common if you need compatibility with MITREid. This governs the \"oauth2.client_credentials.default_grant_allowed_scope\" setting.. [optional] # noqa: E501
606
- hydra_oauth2_exclude_not_before_claim (bool): Set to true if you want to exclude claim `nbf (not before)` part of access token. This governs the \"oauth2.exclude_not_before_claim\" setting.. [optional] # noqa: E501
607
- hydra_oauth2_grant_jwt_iat_optional (bool): Configures if the issued at (`iat`) claim is required in the JSON Web Token (JWT) Profile for OAuth 2.0 Client Authentication and Authorization Grants (RFC7523). If set to `false`, the `iat` claim is required. Set this value to `true` only after careful consideration. This governs the \"oauth2.grant.jwt.iat_optional\" setting.. [optional] # noqa: E501
608
- hydra_oauth2_grant_jwt_jti_optional (bool): Configures if the JSON Web Token ID (`jti`) claim is required in the JSON Web Token (JWT) Profile for OAuth 2.0 Client Authentication and Authorization Grants (RFC7523). If set to `false`, the `jti` claim is required. Set this value to `true` only after careful consideration. This governs the \"oauth2.grant.jwt.jti_optional\" setting.. [optional] # noqa: E501
609
- hydra_oauth2_grant_jwt_max_ttl (str): Configures what the maximum age of a JWT assertion used in the JSON Web Token (JWT) Profile for OAuth 2.0 Client Authentication and Authorization Grants (RFC7523) can be. This feature uses the `exp` claim and `iat` claim to calculate assertion age. Assertions exceeding the max age will be denied. Useful as a safety measure and recommended to keep below 720h. This governs the \"oauth2.grant.jwt.max_ttl\" setting.. [optional] if omitted the server will use the default value of "720h" # noqa: E501
610
- hydra_oauth2_mirror_top_level_claims (bool): Set to false if you don't want to mirror custom claims under 'ext'. This governs the \"oauth2.mirror_top_level_claims\" setting.. [optional] # noqa: E501
611
- hydra_oauth2_pkce_enforced (bool): Configures whether PKCE should be enforced for all OAuth2 Clients. This governs the \"oauth2.pkce.enforced\" setting.. [optional] # noqa: E501
612
- hydra_oauth2_pkce_enforced_for_public_clients (bool): Configures whether PKCE should be enforced for OAuth2 Clients without a client secret (public clients). This governs the \"oauth2.pkce.enforced_for_public_clients\" setting.. [optional] # noqa: E501
613
- hydra_oauth2_refresh_token_hook (str): Sets the Refresh Token Hook Endpoint. If set this endpoint will be called during the OAuth2 Token Refresh grant update the OAuth2 Access Token claims. This governs the \"oauth2.refresh_token_hook\" setting.. [optional] # noqa: E501
614
- hydra_oauth2_token_hook (str): Sets the token hook endpoint for all grant types. If set it will be called while providing token to customize claims. This governs the \"oauth2.token_hook.url\" setting.. [optional] # noqa: E501
615
- hydra_oidc_dynamic_client_registration_default_scope (StringSliceJSONFormat): [optional] # noqa: E501
616
- hydra_oidc_dynamic_client_registration_enabled (bool): Configures OpenID Connect Dynamic Client Registration. This governs the \"oidc.dynamic_client_registration.enabled\" setting.. [optional] # noqa: E501
617
- hydra_oidc_subject_identifiers_pairwise_salt (str): Configures OpenID Connect Discovery and overwrites the pairwise algorithm This governs the \"oidc.subject_identifiers.pairwise_salt\" setting.. [optional] # noqa: E501
618
- hydra_oidc_subject_identifiers_supported_types (StringSliceJSONFormat): [optional] # noqa: E501
619
- hydra_secrets_cookie (StringSliceJSONFormat): [optional] # noqa: E501
620
- hydra_secrets_system (StringSliceJSONFormat): [optional] # noqa: E501
621
- hydra_serve_cookies_same_site_legacy_workaround (bool): Configures the Ory Hydra Cookie Same Site Legacy Workaround This governs the \"serve.cookies.same_site_legacy_workaround\" setting.. [optional] # noqa: E501
622
- hydra_serve_cookies_same_site_mode (str): Configures the Ory Hydra Cookie Same Site Mode This governs the \"serve.cookies.same_site_mode\" setting.. [optional] # noqa: E501
623
- hydra_strategies_access_token (str): Defines access token type. jwt is a bad idea, see https://www.ory.sh/docs/hydra/advanced#json-web-tokens This governs the \"strategies.access_token\" setting. opaque Oauth2AccessTokenStrategyOpaque jwt Oauth2AccessTokenStrategyJwt. [optional] if omitted the server will use the default value of "opaque" # noqa: E501
624
- hydra_strategies_scope (str): Defines how scopes are matched. For more details have a look at https://github.com/ory/fosite#scopes This governs the \"strategies.scope\" setting. exact Oauth2ScopeStrategyExact wildcard Oauth2ScopeStrategyWildcard. [optional] if omitted the server will use the default value of "wildcard" # noqa: E501
625
- hydra_ttl_access_token (str): This governs the \"ttl.access_token\" setting.. [optional] if omitted the server will use the default value of "30m" # noqa: E501
626
- hydra_ttl_auth_code (str): Configures how long refresh tokens are valid. Set to -1 for refresh tokens to never expire. This is not recommended! This governs the \"ttl.auth_code\" setting.. [optional] if omitted the server will use the default value of "720h" # noqa: E501
627
- hydra_ttl_id_token (str): This governs the \"ttl.id_token\" setting.. [optional] if omitted the server will use the default value of "30m" # noqa: E501
628
- hydra_ttl_login_consent_request (str): Configures how long a user login and consent flow may take. This governs the \"ttl.login_consent_request\" setting.. [optional] if omitted the server will use the default value of "30m" # noqa: E501
629
- hydra_ttl_refresh_token (str): Configures how long refresh tokens are valid. Set to -1 for refresh tokens to never expire. This is not recommended! This governs the \"ttl.refresh_token\" setting.. [optional] if omitted the server will use the default value of "720h" # noqa: E501
630
- hydra_urls_consent (str): Sets the OAuth2 Consent Endpoint URL of the OAuth2 User Login & Consent flow. Defaults to the Ory Account Experience if left empty. This governs the \"urls.consent\" setting.. [optional] # noqa: E501
631
- hydra_urls_error (str): Sets the OAuth2 Error URL of the OAuth2 User Login & Consent flow. Defaults to the Ory Account Experience if left empty. This governs the \"urls.error\" setting.. [optional] # noqa: E501
632
- hydra_urls_login (str): Sets the OAuth2 Login Endpoint URL of the OAuth2 User Login & Consent flow. Defaults to the Ory Account Experience if left empty. This governs the \"urls.login\" setting.. [optional] # noqa: E501
633
- hydra_urls_logout (str): Sets the logout endpoint. Defaults to the Ory Account Experience if left empty. This governs the \"urls.logout\" setting.. [optional] # noqa: E501
634
- hydra_urls_post_logout_redirect (str): When an OAuth2-related user agent requests to log out, they will be redirected to this url afterwards per default. Defaults to the Ory Account Experience in development and your application in production mode when a custom domain is connected. This governs the \"urls.post_logout_redirect\" setting.. [optional] # noqa: E501
635
- hydra_urls_registration (str): Sets the OAuth2 Registration Endpoint URL of the OAuth2 User Login & Consent flow. Defaults to the Ory Account Experience if left empty. This governs the \"urls.registration\" setting.. [optional] # noqa: E501
636
- hydra_urls_self_issuer (str): This value will be used as the issuer in access and ID tokens. It must be specified and using HTTPS protocol, unless the development mode is enabled. On the Ory Network it will be very rare that you want to modify this value. If left empty, it will default to the correct value for the Ory Network. This governs the \"urls.self.issuer\" setting.. [optional] # noqa: E501
637
- hydra_webfinger_jwks_broadcast_keys (StringSliceJSONFormat): [optional] # noqa: E501
638
- hydra_webfinger_oidc_discovery_auth_url (str): Configures OpenID Connect Discovery and overwrites the OAuth2 Authorization URL. This governs the \"webfinger.oidc.discovery.auth_url\" setting.. [optional] # noqa: E501
639
- hydra_webfinger_oidc_discovery_client_registration_url (str): Configures OpenID Connect Discovery and overwrites the OpenID Connect Dynamic Client Registration Endpoint. This governs the \"webfinger.oidc.discovery.client_registration_url\" setting.. [optional] # noqa: E501
640
- hydra_webfinger_oidc_discovery_jwks_url (str): Configures OpenID Connect Discovery and overwrites the JWKS URL. This governs the \"webfinger.oidc.discovery.jwks_url\" setting.. [optional] # noqa: E501
641
- hydra_webfinger_oidc_discovery_supported_claims (StringSliceJSONFormat): [optional] # noqa: E501
642
- hydra_webfinger_oidc_discovery_supported_scope (StringSliceJSONFormat): [optional] # noqa: E501
643
- hydra_webfinger_oidc_discovery_token_url (str): Configures OpenID Connect Discovery and overwrites the OAuth2 Token URL. This governs the \"webfinger.oidc.discovery.token_url\" setting.. [optional] # noqa: E501
644
- hydra_webfinger_oidc_discovery_userinfo_url (str): Configures OpenID Connect Discovery and overwrites userinfo endpoint to be advertised at the OpenID Connect Discovery endpoint /.well-known/openid-configuration. Defaults to Ory Hydra's userinfo endpoint at /userinfo. Set this value if you want to handle this endpoint yourself. This governs the \"webfinger.oidc.discovery.userinfo_url\" setting.. [optional] # noqa: E501
645
- id (str): The revision ID.. [optional] # noqa: E501
646
- keto_namespace_configuration (str): The Revisions' Keto Namespace Configuration The string is a URL pointing to an OPL file with the configuration.. [optional] # noqa: E501
647
- keto_namespaces (KetoNamespaces): [optional] # noqa: E501
648
- kratos_cookies_same_site (str): Configures the Ory Kratos Cookie SameSite Attribute This governs the \"cookies.same_site\" setting.. [optional] # noqa: E501
649
- kratos_courier_channels (RevisionCourierChannels): [optional] # noqa: E501
650
- kratos_courier_delivery_strategy (str): The delivery strategy to use when sending emails `smtp`: Use SMTP server `http`: Use the built in HTTP client to send the email to some remote service. [optional] if omitted the server will use the default value of "smtp" # noqa: E501
651
- kratos_courier_http_request_config_auth_api_key_in (str): The location of the API key to use in the HTTP email sending service's authentication `header`: Send the key value pair as a header `cookie`: Send the key value pair as a cookie This governs the \"courier.http.auth.config.in\" setting. [optional] # noqa: E501
652
- kratos_courier_http_request_config_auth_api_key_name (str): The name of the API key to use in the HTTP email sending service's authentication This governs the \"courier.http.auth.config.name\" setting. [optional] # noqa: E501
653
- kratos_courier_http_request_config_auth_api_key_value (str): The value of the API key to use in the HTTP email sending service's authentication This governs the \"courier.http.auth.config.value\" setting. [optional] # noqa: E501
654
- kratos_courier_http_request_config_auth_basic_auth_password (str): The password to use for basic auth in the HTTP email sending service's authentication This governs the \"courier.http.auth.config.password\" setting. [optional] # noqa: E501
655
- kratos_courier_http_request_config_auth_basic_auth_user (str): The user to use for basic auth in the HTTP email sending service's authentication This governs the \"courier.http.auth.config.user\" setting. [optional] # noqa: E501
656
- kratos_courier_http_request_config_auth_type (str): The authentication type to use while contacting the remote HTTP email sending service `basic_auth`: Use Basic Authentication `api_key`: Use API Key Authentication in a header or cookie. [optional] if omitted the server will use the default value of "empty (no authentication)" # noqa: E501
657
- kratos_courier_http_request_config_body (str): The Jsonnet template to generate the body to send to the remote HTTP email sending service Should be valid Jsonnet and base64 encoded This governs the \"courier.http.body\" setting. [optional] # noqa: E501
658
- kratos_courier_http_request_config_headers ({str: (bool, date, datetime, dict, float, int, list, str, none_type)}, none_type): NullJSONRawMessage represents a json.RawMessage that works well with JSON, SQL, and Swagger and is NULLable-. [optional] # noqa: E501
659
- kratos_courier_http_request_config_method (str): The http METHOD to use when calling the remote HTTP email sending service. [optional] if omitted the server will use the default value of "POST" # noqa: E501
660
- kratos_courier_http_request_config_url (str): The URL of the remote HTTP email sending service This governs the \"courier.http.url\" setting. [optional] # noqa: E501
661
- kratos_courier_smtp_connection_uri (str): Configures the Ory Kratos SMTP Connection URI This governs the \"courier.smtp.connection_uri\" setting.. [optional] # noqa: E501
662
- kratos_courier_smtp_from_address (str): Configures the Ory Kratos SMTP From Address This governs the \"courier.smtp.from_address\" setting.. [optional] # noqa: E501
663
- kratos_courier_smtp_from_name (str): Configures the Ory Kratos SMTP From Name This governs the \"courier.smtp.from_name\" setting.. [optional] # noqa: E501
664
- kratos_courier_smtp_headers ({str: (bool, date, datetime, dict, float, int, list, str, none_type)}, none_type): NullJSONRawMessage represents a json.RawMessage that works well with JSON, SQL, and Swagger and is NULLable-. [optional] # noqa: E501
665
- kratos_courier_smtp_local_name (str): Configures the local_name to use in SMTP connections This governs the \"courier.smtp.local_name\" setting.. [optional] # noqa: E501
666
- kratos_courier_templates_login_code_valid_email_body_html (str): Configures the Ory Kratos Valid Login via Code Email Body HTML Template This governs the \"courier.smtp.templates.login_code.valid.email.body.html\" setting.. [optional] # noqa: E501
667
- kratos_courier_templates_login_code_valid_email_body_plaintext (str): Configures the Ory Kratos Valid Login via Code Email Body Plaintext Template This governs the \"courier.smtp.templates.login_code.valid.email.body.plaintext\" setting.. [optional] # noqa: E501
668
- kratos_courier_templates_login_code_valid_email_subject (str): Configures the Ory Kratos Valid Login via Code Email Subject Template This governs the \"courier.smtp.templates.login_code.valid.email.subject\" setting.. [optional] # noqa: E501
669
- kratos_courier_templates_login_code_valid_sms_body_plaintext (str): Configures the Ory Kratos Valid Login via Code SMS plain text body This governs the \"courier.smtp.templates.login_code.valid.sms.plaintext\" setting.. [optional] # noqa: E501
670
- kratos_courier_templates_recovery_code_invalid_email_body_html (str): Configures the Ory Kratos Invalid Recovery via Code Email Body HTML Template This governs the \"courier.smtp.templates.recovery_code.invalid.email.body.html\" setting.. [optional] # noqa: E501
671
- kratos_courier_templates_recovery_code_invalid_email_body_plaintext (str): Configures the Ory Kratos Invalid Recovery via Code Email Body Plaintext Template This governs the \"courier.smtp.templates.recovery_code.invalid.email.body.plaintext\" setting.. [optional] # noqa: E501
672
- kratos_courier_templates_recovery_code_invalid_email_subject (str): Configures the Ory Kratos Invalid Recovery via Code Email Subject Template This governs the \"courier.smtp.templates.recovery_code.invalid.email.body.html\" setting.. [optional] # noqa: E501
673
- kratos_courier_templates_recovery_code_valid_email_body_html (str): Configures the Ory Kratos Valid Recovery via Code Email Body HTML Template This governs the \"courier.smtp.templates.recovery_code.valid.email.body.html\" setting.. [optional] # noqa: E501
674
- kratos_courier_templates_recovery_code_valid_email_body_plaintext (str): Configures the Ory Kratos Valid Recovery via Code Email Body Plaintext Template This governs the \"courier.smtp.templates.recovery_code.valid.email.body.plaintext\" setting.. [optional] # noqa: E501
675
- kratos_courier_templates_recovery_code_valid_email_subject (str): Configures the Ory Kratos Valid Recovery via Code Email Subject Template This governs the \"courier.smtp.templates.recovery_code.valid.email.subject\" setting.. [optional] # noqa: E501
676
- kratos_courier_templates_recovery_invalid_email_body_html (str): Configures the Ory Kratos Invalid Recovery Email Body HTML Template This governs the \"courier.smtp.templates.recovery.invalid.email.body.html\" setting.. [optional] # noqa: E501
677
- kratos_courier_templates_recovery_invalid_email_body_plaintext (str): Configures the Ory Kratos Invalid Recovery Email Body Plaintext Template This governs the \"courier.smtp.templates.recovery.invalid.email.body.plaintext\" setting.. [optional] # noqa: E501
678
- kratos_courier_templates_recovery_invalid_email_subject (str): Configures the Ory Kratos Invalid Recovery Email Subject Template This governs the \"courier.smtp.templates.recovery.invalid.email.body.html\" setting.. [optional] # noqa: E501
679
- kratos_courier_templates_recovery_valid_email_body_html (str): Configures the Ory Kratos Valid Recovery Email Body HTML Template This governs the \"courier.smtp.templates.recovery.valid.email.body.html\" setting.. [optional] # noqa: E501
680
- kratos_courier_templates_recovery_valid_email_body_plaintext (str): Configures the Ory Kratos Valid Recovery Email Body Plaintext Template This governs the \"courier.smtp.templates.recovery.valid.email.body.plaintext\" setting.. [optional] # noqa: E501
681
- kratos_courier_templates_recovery_valid_email_subject (str): Configures the Ory Kratos Valid Recovery Email Subject Template This governs the \"courier.smtp.templates.recovery.valid.email.subject\" setting.. [optional] # noqa: E501
682
- kratos_courier_templates_registration_code_valid_email_body_html (str): Configures the Ory Kratos Valid Registration via Code Email Body HTML Template This governs the \"courier.smtp.templates.registration_code.valid.email.body.html\" setting.. [optional] # noqa: E501
683
- kratos_courier_templates_registration_code_valid_email_body_plaintext (str): Configures the Ory Kratos Valid Registration via Code Email Body Plaintext Template This governs the \"courier.smtp.templates.registration_code.valid.email.body.plaintext\" setting.. [optional] # noqa: E501
684
- kratos_courier_templates_registration_code_valid_email_subject (str): Configures the Ory Kratos Valid Registration via Code Email Subject Template This governs the \"courier.smtp.templates.registration_code.valid.email.subject\" setting.. [optional] # noqa: E501
685
- kratos_courier_templates_verification_code_invalid_email_body_html (str): Configures the Ory Kratos Invalid Verification via Code Email Body HTML Template This governs the \"courier.smtp.templates.verification_code.invalid.email.body.html\" setting.. [optional] # noqa: E501
686
- kratos_courier_templates_verification_code_invalid_email_body_plaintext (str): Configures the Ory Kratos Invalid Verification via Code Email Body Plaintext Template This governs the \"courier.smtp.templates.verification_code.invalid.email.body.plaintext\" setting.. [optional] # noqa: E501
687
- kratos_courier_templates_verification_code_invalid_email_subject (str): Configures the Ory Kratos Invalid Verification via Code Email Subject Template This governs the \"courier.smtp.templates.verification_code.invalid.email.subject\" setting.. [optional] # noqa: E501
688
- kratos_courier_templates_verification_code_valid_email_body_html (str): Configures the Ory Kratos Valid Verification via Code Email Body HTML Template This governs the \"courier.smtp.templates.verification_code.valid.email.body.html\" setting.. [optional] # noqa: E501
689
- kratos_courier_templates_verification_code_valid_email_body_plaintext (str): Configures the Ory Kratos Valid Verification via Code Email Body Plaintext Template This governs the \"courier.smtp.templates.verification_code.valid.email.body.plaintext\" setting.. [optional] # noqa: E501
690
- kratos_courier_templates_verification_code_valid_email_subject (str): Configures the Ory Kratos Valid Verification via Code Email Subject Template This governs the \"courier.smtp.templates.verification_code.valid.email.subject\" setting.. [optional] # noqa: E501
691
- kratos_courier_templates_verification_code_valid_sms_body_plaintext (str): Configures the Ory Kratos Valid Verification via Code SMS Body Plaintext This governs the \"courier.smtp.templates.verification_code.valid.sms.body.plaintext\" setting.. [optional] # noqa: E501
692
- kratos_courier_templates_verification_invalid_email_body_html (str): Configures the Ory Kratos Invalid Verification Email Body HTML Template This governs the \"courier.smtp.templates.verification.invalid.email.body.html\" setting.. [optional] # noqa: E501
693
- kratos_courier_templates_verification_invalid_email_body_plaintext (str): Configures the Ory Kratos Invalid Verification Email Body Plaintext Template This governs the \"courier.smtp.templates.verification.invalid.email.body.plaintext\" setting.. [optional] # noqa: E501
694
- kratos_courier_templates_verification_invalid_email_subject (str): Configures the Ory Kratos Invalid Verification Email Subject Template This governs the \"courier.smtp.templates.verification.invalid.email.subject\" setting.. [optional] # noqa: E501
695
- kratos_courier_templates_verification_valid_email_body_html (str): Configures the Ory Kratos Valid Verification Email Body HTML Template This governs the \"courier.smtp.templates.verification.valid.email.body.html\" setting.. [optional] # noqa: E501
696
- kratos_courier_templates_verification_valid_email_body_plaintext (str): Configures the Ory Kratos Valid Verification Email Body Plaintext Template This governs the \"courier.smtp.templates.verification.valid.email.body.plaintext\" setting.. [optional] # noqa: E501
697
- kratos_courier_templates_verification_valid_email_subject (str): Configures the Ory Kratos Valid Verification Email Subject Template This governs the \"courier.smtp.templates.verification.valid.email.subject\" setting.. [optional] # noqa: E501
698
- kratos_feature_flags_cacheable_sessions (bool): Configures the Ory Kratos Session caching feature flag This governs the \"feature_flags.cacheable_sessions\" setting.. [optional] # noqa: E501
699
- kratos_feature_flags_cacheable_sessions_max_age (str): Configures the Ory Kratos Session caching max-age feature flag This governs the \"feature_flags.cacheable_sessions_max_age\" setting.. [optional] # noqa: E501
700
- kratos_feature_flags_use_continue_with_transitions (bool): Configures the Ory Kratos Session use_continue_with_transitions flag This governs the \"feature_flags.use_continue_with_transitions\" setting.. [optional] # noqa: E501
701
- kratos_identity_schemas (ProjectRevisionIdentitySchemas): [optional] # noqa: E501
702
- kratos_oauth2_provider_headers ({str: (bool, date, datetime, dict, float, int, list, str, none_type)}, none_type): NullJSONRawMessage represents a json.RawMessage that works well with JSON, SQL, and Swagger and is NULLable-. [optional] # noqa: E501
703
- kratos_oauth2_provider_override_return_to (bool): Kratos OAuth2 Provider Override Return To Enabling this allows Kratos to set the return_to parameter automatically to the OAuth2 request URL on the login flow, allowing complex flows such as recovery to continue to the initial OAuth2 flow.. [optional] # noqa: E501
704
- kratos_oauth2_provider_url (str): The Revisions' OAuth2 Provider Integration URL This governs the \"oauth2_provider.url\" setting.. [optional] # noqa: E501
705
- kratos_preview_default_read_consistency_level (str): Configures the default read consistency level for identity APIs This governs the `preview.default_read_consistency_level` setting. The read consistency level determines the consistency guarantee for reads: strong (slow): The read is guaranteed to return the most recent data committed at the start of the read. eventual (very fast): The result will return data that is about 4.8 seconds old. Setting the default consistency level to `eventual` may cause regressions in the future as we add consistency controls to more APIs. Currently, the following APIs will be affected by this setting: `GET /admin/identities` Defaults to \"strong\" for new and existing projects. This feature is in preview. Use with caution.. [optional] # noqa: E501
706
- kratos_secrets_cipher (StringSliceJSONFormat): [optional] # noqa: E501
707
- kratos_secrets_cookie (StringSliceJSONFormat): [optional] # noqa: E501
708
- kratos_secrets_default (StringSliceJSONFormat): [optional] # noqa: E501
709
- kratos_selfservice_allowed_return_urls (StringSliceJSONFormat): [optional] # noqa: E501
710
- kratos_selfservice_default_browser_return_url (str): Configures the Ory Kratos Default Return URL This governs the \"selfservice.allowed_return_urls\" setting.. [optional] # noqa: E501
711
- kratos_selfservice_flows_error_ui_url (str): Configures the Ory Kratos Error UI URL This governs the \"selfservice.flows.error.ui_url\" setting.. [optional] # noqa: E501
712
- kratos_selfservice_flows_login_after_code_default_browser_return_url (str): Configures the Ory Kratos Login After Password Default Return URL This governs the \"selfservice.flows.code.after.password.default_browser_return_url\" setting.. [optional] # noqa: E501
713
- kratos_selfservice_flows_login_after_default_browser_return_url (str): Configures the Ory Kratos Login Default Return URL This governs the \"selfservice.flows.login.after.default_browser_return_url\" setting.. [optional] # noqa: E501
714
- kratos_selfservice_flows_login_after_lookup_secret_default_browser_return_url (str): Configures the Ory Kratos Login After Password Default Return URL This governs the \"selfservice.flows.lookup_secret.after.password.default_browser_return_url\" setting.. [optional] # noqa: E501
715
- kratos_selfservice_flows_login_after_oidc_default_browser_return_url (str): Configures the Ory Kratos Login After OIDC Default Return URL This governs the \"selfservice.flows.login.after.oidc.default_browser_return_url\" setting.. [optional] # noqa: E501
716
- kratos_selfservice_flows_login_after_password_default_browser_return_url (str): Configures the Ory Kratos Login After Password Default Return URL This governs the \"selfservice.flows.login.after.password.default_browser_return_url\" setting.. [optional] # noqa: E501
717
- kratos_selfservice_flows_login_after_totp_default_browser_return_url (str): Configures the Ory Kratos Login After Password Default Return URL This governs the \"selfservice.flows.totp.after.password.default_browser_return_url\" setting.. [optional] # noqa: E501
718
- kratos_selfservice_flows_login_after_webauthn_default_browser_return_url (str): Configures the Ory Kratos Login After WebAuthn Default Return URL This governs the \"selfservice.flows.login.after.webauthn.default_browser_return_url\" setting.. [optional] # noqa: E501
719
- kratos_selfservice_flows_login_lifespan (str): Configures the Ory Kratos Login Lifespan This governs the \"selfservice.flows.login.lifespan\" setting.. [optional] # noqa: E501
720
- kratos_selfservice_flows_login_ui_url (str): Configures the Ory Kratos Login UI URL This governs the \"selfservice.flows.login.ui_url\" setting.. [optional] # noqa: E501
721
- kratos_selfservice_flows_logout_after_default_browser_return_url (str): Configures the Ory Kratos Logout Default Return URL This governs the \"selfservice.flows.logout.after.default_browser_return_url\" setting.. [optional] # noqa: E501
722
- kratos_selfservice_flows_recovery_after_default_browser_return_url (str): Configures the Ory Kratos Recovery Default Return URL This governs the \"selfservice.flows.recovery.after.default_browser_return_url\" setting.. [optional] # noqa: E501
723
- kratos_selfservice_flows_recovery_enabled (bool): Configures the Ory Kratos Recovery Enabled Setting This governs the \"selfservice.flows.recovery.enabled\" setting.. [optional] # noqa: E501
724
- kratos_selfservice_flows_recovery_lifespan (str): Configures the Ory Kratos Recovery Lifespan This governs the \"selfservice.flows.recovery.lifespan\" setting.. [optional] # noqa: E501
725
- kratos_selfservice_flows_recovery_notify_unknown_recipients (bool): Configures whether to notify unknown recipients of a Ory Kratos recovery flow This governs the \"selfservice.flows.recovery.notify_unknown_recipients\" setting.. [optional] # noqa: E501
726
- kratos_selfservice_flows_recovery_ui_url (str): Configures the Ory Kratos Recovery UI URL This governs the \"selfservice.flows.recovery.ui_url\" setting.. [optional] # noqa: E501
727
- kratos_selfservice_flows_recovery_use (str): Configures the Ory Kratos Recovery strategy to use (\"link\" or \"code\") This governs the \"selfservice.flows.recovery.use\" setting. link SelfServiceMessageVerificationStrategyLink code SelfServiceMessageVerificationStrategyCode. [optional] # noqa: E501
728
- kratos_selfservice_flows_registration_after_code_default_browser_return_url (str): Configures the Ory Kratos Registration After Code Default Return URL This governs the \"selfservice.flows.registration.after.code.default_browser_return_url\" setting.. [optional] # noqa: E501
729
- kratos_selfservice_flows_registration_after_default_browser_return_url (str): Configures the Ory Kratos Registration Default Return URL This governs the \"selfservice.flows.registration.after.default_browser_return_url\" setting.. [optional] # noqa: E501
730
- kratos_selfservice_flows_registration_after_oidc_default_browser_return_url (str): Configures the Ory Kratos Registration After OIDC Default Return URL This governs the \"selfservice.flows.registration.after.oidc.default_browser_return_url\" setting.. [optional] # noqa: E501
731
- kratos_selfservice_flows_registration_after_password_default_browser_return_url (str): Configures the Ory Kratos Registration After Password Default Return URL This governs the \"selfservice.flows.registration.after.password.default_browser_return_url\" setting.. [optional] # noqa: E501
732
- kratos_selfservice_flows_registration_after_webauthn_default_browser_return_url (str): Configures the Ory Kratos Registration After Password Default Return URL This governs the \"selfservice.flows.registration.after.password.default_browser_return_url\" setting.. [optional] # noqa: E501
733
- kratos_selfservice_flows_registration_enabled (bool): Configures the Whether Ory Kratos Registration is Enabled This governs the \"selfservice.flows.registration.enabled\" setting.0. [optional] # noqa: E501
734
- kratos_selfservice_flows_registration_lifespan (str): Configures the Ory Kratos Registration Lifespan This governs the \"selfservice.flows.registration.lifespan\" setting.. [optional] # noqa: E501
735
- kratos_selfservice_flows_registration_login_hints (bool): Configures the Ory Kratos Registration Login Hints Shows helpful information when a user tries to sign up with a duplicate account. This governs the \"selfservice.flows.registration.login_hints\" setting.. [optional] # noqa: E501
736
- kratos_selfservice_flows_registration_ui_url (str): Configures the Ory Kratos Registration UI URL This governs the \"selfservice.flows.registration.ui_url\" setting.. [optional] # noqa: E501
737
- kratos_selfservice_flows_settings_after_default_browser_return_url (str): Configures the Ory Kratos Settings Default Return URL This governs the \"selfservice.flows.settings.after.default_browser_return_url\" setting.. [optional] # noqa: E501
738
- kratos_selfservice_flows_settings_after_lookup_secret_default_browser_return_url (str): Configures the Ory Kratos Settings Default Return URL After Updating Lookup Secrets This governs the \"selfservice.flows.settings.after.lookup_secret.default_browser_return_url\" setting.. [optional] # noqa: E501
739
- kratos_selfservice_flows_settings_after_oidc_default_browser_return_url (str): Configures the Ory Kratos Settings Default Return URL After Updating Social Sign In This governs the \"selfservice.flows.settings.after.oidc.default_browser_return_url\" setting.. [optional] # noqa: E501
740
- kratos_selfservice_flows_settings_after_password_default_browser_return_url (str): Configures the Ory Kratos Settings Default Return URL After Updating Passwords This governs the \"selfservice.flows.settings.after.password.default_browser_return_url\" setting.. [optional] # noqa: E501
741
- kratos_selfservice_flows_settings_after_profile_default_browser_return_url (str): Configures the Ory Kratos Settings Default Return URL After Updating Profiles This governs the \"selfservice.flows.settings.after.profile.default_browser_return_url\" setting.. [optional] # noqa: E501
742
- kratos_selfservice_flows_settings_after_totp_default_browser_return_url (str): Configures the Ory Kratos Settings Default Return URL After Updating TOTP This governs the \"selfservice.flows.settings.after.totp.default_browser_return_url\" setting.. [optional] # noqa: E501
743
- kratos_selfservice_flows_settings_after_webauthn_default_browser_return_url (str): Configures the Ory Kratos Settings Default Return URL After Updating WebAuthn This governs the \"selfservice.flows.settings.webauthn.profile.default_browser_return_url\" setting.. [optional] # noqa: E501
744
- kratos_selfservice_flows_settings_lifespan (str): Configures the Ory Kratos Settings Lifespan This governs the \"selfservice.flows.settings.lifespan\" setting.. [optional] # noqa: E501
745
- kratos_selfservice_flows_settings_privileged_session_max_age (str): Configures the Ory Kratos Settings Privileged Session Max Age This governs the \"selfservice.flows.settings.privileged_session_max_age\" setting.. [optional] # noqa: E501
746
- kratos_selfservice_flows_settings_required_aal (str): Configures the Ory Kratos Settings Required AAL This governs the \"selfservice.flows.settings.required_aal\" setting.. [optional] # noqa: E501
747
- kratos_selfservice_flows_settings_ui_url (str): Configures the Ory Kratos Settings UI URL This governs the \"selfservice.flows.settings.ui_url\" setting.. [optional] # noqa: E501
748
- kratos_selfservice_flows_verification_after_default_browser_return_url (str): Configures the Ory Kratos Verification Default Return URL This governs the \"selfservice.flows.verification.after.default_browser_return_url\" setting.. [optional] # noqa: E501
749
- kratos_selfservice_flows_verification_enabled (bool): Configures the Ory Kratos Verification Enabled Setting This governs the \"selfservice.flows.verification.enabled\" setting.. [optional] # noqa: E501
750
- kratos_selfservice_flows_verification_lifespan (str): Configures the Ory Kratos Verification Lifespan This governs the \"selfservice.flows.verification.lifespan\" setting.. [optional] # noqa: E501
751
- kratos_selfservice_flows_verification_notify_unknown_recipients (bool): Configures whether to notify unknown recipients of a Ory Kratos verification flow This governs the \"selfservice.flows.verification.notify_unknown_recipients\" setting.. [optional] # noqa: E501
752
- kratos_selfservice_flows_verification_ui_url (str): Configures the Ory Kratos Verification UI URL This governs the \"selfservice.flows.verification.ui_url\" setting.. [optional] # noqa: E501
753
- kratos_selfservice_flows_verification_use (str): Configures the Ory Kratos Strategy to use for Verification This governs the \"selfservice.flows.verification.use\" setting. link SelfServiceMessageVerificationStrategyLink code SelfServiceMessageVerificationStrategyCode. [optional] # noqa: E501
754
- kratos_selfservice_methods_code_config_lifespan (str): Configures the Ory Kratos Code Method's lifespan This governs the \"selfservice.methods.code.config.lifespan\" setting.. [optional] # noqa: E501
755
- kratos_selfservice_methods_code_enabled (bool): Configures whether Ory Kratos Code Method is enabled This governs the \"selfservice.methods.code.enabled\" setting.. [optional] # noqa: E501
756
- kratos_selfservice_methods_code_mfa_enabled (bool): Configues whether the code method can be used to fulfil MFA flows This governs the \"selfservice.methods.code.mfa_enabled\" setting.. [optional] # noqa: E501
757
- kratos_selfservice_methods_code_passwordless_enabled (bool): Configues whether Ory Kratos Passwordless should use the Code Method This governs the \"selfservice.methods.code.passwordless_enabled\" setting.. [optional] # noqa: E501
758
- kratos_selfservice_methods_link_config_base_url (str): Configures the Base URL which Recovery, Verification, and Login Links Point to It is recommended to leave this value empty. It will be appropriately configured to the best matching domain (e.g. when using custom domains) automatically. This governs the \"selfservice.methods.link.config.base_url\" setting.. [optional] # noqa: E501
759
- kratos_selfservice_methods_link_config_lifespan (str): Configures the Ory Kratos Link Method's lifespan This governs the \"selfservice.methods.link.config.lifespan\" setting.. [optional] # noqa: E501
760
- kratos_selfservice_methods_link_enabled (bool): Configures whether Ory Kratos Link Method is enabled This governs the \"selfservice.methods.link.enabled\" setting.. [optional] # noqa: E501
761
- kratos_selfservice_methods_lookup_secret_enabled (bool): Configures whether Ory Kratos TOTP Lookup Secret is enabled This governs the \"selfservice.methods.lookup_secret.enabled\" setting.. [optional] # noqa: E501
762
- kratos_selfservice_methods_oidc_config_base_redirect_uri (str): Configures the Ory Kratos Third Party / OpenID Connect base redirect URI This governs the \"selfservice.methods.oidc.config.base_redirect_uri\" setting.. [optional] # noqa: E501
763
- kratos_selfservice_methods_oidc_config_providers (ProjectRevisionThirdPartyLoginProviders): [optional] # noqa: E501
764
- kratos_selfservice_methods_oidc_enabled (bool): Configures whether Ory Kratos Third Party / OpenID Connect Login is enabled This governs the \"selfservice.methods.oidc.enabled\" setting.. [optional] # noqa: E501
765
- kratos_selfservice_methods_password_config_haveibeenpwned_enabled (bool): Configures whether Ory Kratos Password HIBP Checks is enabled This governs the \"selfservice.methods.password.config.haveibeenpwned_enabled\" setting.. [optional] # noqa: E501
766
- kratos_selfservice_methods_password_config_identifier_similarity_check_enabled (bool): Configures whether Ory Kratos Password should disable the similarity policy. This governs the \"selfservice.methods.password.config.identifier_similarity_check_enabled\" setting.. [optional] # noqa: E501
767
- kratos_selfservice_methods_password_config_ignore_network_errors (bool): Configures whether Ory Kratos Password Should ignore HIBPWND Network Errors This governs the \"selfservice.methods.password.config.ignore_network_errors\" setting.. [optional] # noqa: E501
768
- kratos_selfservice_methods_password_config_max_breaches (int): Configures Ory Kratos Password Max Breaches Detection This governs the \"selfservice.methods.password.config.max_breaches\" setting.. [optional] # noqa: E501
769
- kratos_selfservice_methods_password_config_min_password_length (int): Configures the minimum length of passwords. This governs the \"selfservice.methods.password.config.min_password_length\" setting.. [optional] # noqa: E501
770
- kratos_selfservice_methods_password_enabled (bool): Configures whether Ory Kratos Password Method is enabled This governs the \"selfservice.methods.password.enabled\" setting.. [optional] # noqa: E501
771
- kratos_selfservice_methods_profile_enabled (bool): Configures whether Ory Kratos Profile Method is enabled This governs the \"selfservice.methods.profile.enabled\" setting.. [optional] # noqa: E501
772
- kratos_selfservice_methods_totp_config_issuer (str): Configures Ory Kratos TOTP Issuer This governs the \"selfservice.methods.totp.config.issuer\" setting.. [optional] # noqa: E501
773
- kratos_selfservice_methods_totp_enabled (bool): Configures whether Ory Kratos TOTP Method is enabled This governs the \"selfservice.methods.totp.enabled\" setting.. [optional] # noqa: E501
774
- kratos_selfservice_methods_webauthn_config_passwordless (bool): Configures whether Ory Kratos Webauthn is used for passwordless flows This governs the \"selfservice.methods.webauthn.config.passwordless\" setting.. [optional] # noqa: E501
775
- kratos_selfservice_methods_webauthn_config_rp_display_name (str): Configures the Ory Kratos Webauthn RP Display Name This governs the \"selfservice.methods.webauthn.config.rp.display_name\" setting.. [optional] # noqa: E501
776
- kratos_selfservice_methods_webauthn_config_rp_icon (str): Configures the Ory Kratos Webauthn RP Icon This governs the \"selfservice.methods.webauthn.config.rp.icon\" setting. Deprecated: This value will be ignored due to security considerations.. [optional] # noqa: E501
777
- kratos_selfservice_methods_webauthn_config_rp_id (str): Configures the Ory Kratos Webauthn RP ID This governs the \"selfservice.methods.webauthn.config.rp.id\" setting.. [optional] # noqa: E501
778
- kratos_selfservice_methods_webauthn_config_rp_origins (StringSliceJSONFormat): [optional] # noqa: E501
779
- kratos_selfservice_methods_webauthn_enabled (bool): Configures whether Ory Kratos Webauthn is enabled This governs the \"selfservice.methods.webauthn.enabled\" setting.. [optional] # noqa: E501
780
- kratos_session_cookie_persistent (bool): Configures the Ory Kratos Session Cookie Persistent Attribute This governs the \"session.cookie.persistent\" setting.. [optional] # noqa: E501
781
- kratos_session_cookie_same_site (str): Configures the Ory Kratos Session Cookie SameSite Attribute This governs the \"session.cookie.same_site\" setting.. [optional] # noqa: E501
782
- kratos_session_lifespan (str): Configures the Ory Kratos Session Lifespan This governs the \"session.lifespan\" setting.. [optional] # noqa: E501
783
- kratos_session_whoami_required_aal (str): Configures the Ory Kratos Session Whoami AAL requirement This governs the \"session.whoami.required_aal\" setting.. [optional] # noqa: E501
784
- kratos_session_whoami_tokenizer_templates (NormalizedProjectRevisionTokenizerTemplates): [optional] # noqa: E501
785
- project_id (str): The Revision's Project ID. [optional] # noqa: E501
786
- project_revision_hooks (ProjectRevisionHooks): [optional] # noqa: E501
787
- serve_admin_cors_allowed_origins (StringSliceJSONFormat): [optional] # noqa: E501
788
- serve_admin_cors_enabled (bool): Enable CORS headers on all admin APIs This governs the \"serve.admin.cors.enabled\" setting.. [optional] # noqa: E501
789
- serve_public_cors_allowed_origins (StringSliceJSONFormat): [optional] # noqa: E501
790
- serve_public_cors_enabled (bool): Enable CORS headers on all public APIs This governs the \"serve.public.cors.enabled\" setting.. [optional] # noqa: E501
791
- strict_security (bool): Whether the project should employ strict security measures. Setting this to true is recommended for going into production.. [optional] # noqa: E501
792
- updated_at (datetime): Last Time Project's Revision was Updated. [optional] # noqa: E501
793
- workspace_id (str, none_type): [optional] # noqa: E501
794
- """
795
-
796
- _check_type = kwargs.pop('_check_type', True)
797
- _spec_property_naming = kwargs.pop('_spec_property_naming', True)
798
- _path_to_item = kwargs.pop('_path_to_item', ())
799
- _configuration = kwargs.pop('_configuration', None)
800
- _visited_composed_classes = kwargs.pop('_visited_composed_classes', ())
801
-
802
- self = super(OpenApiModel, cls).__new__(cls)
803
-
804
- if args:
805
- for arg in args:
806
- if isinstance(arg, dict):
807
- kwargs.update(arg)
808
- else:
809
- raise ApiTypeError(
810
- "Invalid positional arguments=%s passed to %s. Remove those invalid positional arguments." % (
811
- args,
812
- self.__class__.__name__,
813
- ),
814
- path_to_item=_path_to_item,
815
- valid_classes=(self.__class__,),
816
- )
817
-
818
- self._data_store = {}
819
- self._check_type = _check_type
820
- self._spec_property_naming = _spec_property_naming
821
- self._path_to_item = _path_to_item
822
- self._configuration = _configuration
823
- self._visited_composed_classes = _visited_composed_classes + (self.__class__,)
824
-
825
- self.environment = environment
826
- self.name = name
827
- for var_name, var_value in kwargs.items():
828
- if var_name not in self.attribute_map and \
829
- self._configuration is not None and \
830
- self._configuration.discard_unknown_keys and \
831
- self.additional_properties_type is None:
832
- # discard variable.
833
- continue
834
- setattr(self, var_name, var_value)
835
- return self
836
-
837
- required_properties = set([
838
- '_data_store',
839
- '_check_type',
840
- '_spec_property_naming',
841
- '_path_to_item',
842
- '_configuration',
843
- '_visited_composed_classes',
844
- ])
845
-
846
- @convert_js_args_to_python_args
847
- def __init__(self, environment, name, *args, **kwargs): # noqa: E501
848
- """CreateProjectNormalizedPayload - a model defined in OpenAPI
849
-
850
- Args:
851
- environment (str): prod Production dev Development
852
- name (str): The project's name.
853
-
854
- Keyword Args:
855
- _check_type (bool): if True, values for parameters in openapi_types
856
- will be type checked and a TypeError will be
857
- raised if the wrong type is input.
858
- Defaults to True
859
- _path_to_item (tuple/list): This is a list of keys or values to
860
- drill down to the model in received_data
861
- when deserializing a response
862
- _spec_property_naming (bool): True if the variable names in the input data
863
- are serialized names, as specified in the OpenAPI document.
864
- False if the variable names in the input data
865
- are pythonic names, e.g. snake case (default)
866
- _configuration (Configuration): the instance to use when
867
- deserializing a file_type parameter.
868
- If passed, type conversion is attempted
869
- If omitted no type conversion is done.
870
- _visited_composed_classes (tuple): This stores a tuple of
871
- classes that we have traveled through so that
872
- if we see that class again we will not use its
873
- discriminator again.
874
- When traveling through a discriminator, the
875
- composed schema that is
876
- is traveled through is added to this set.
877
- For example if Animal has a discriminator
878
- petType and we pass in "Dog", and the class Dog
879
- allOf includes Animal, we move through Animal
880
- once using the discriminator, and pick Dog.
881
- Then in Dog, we will make an instance of the
882
- Animal class but this time we won't travel
883
- through its discriminator because we passed in
884
- _visited_composed_classes = (Animal,)
885
- created_at (datetime): The Project's Revision Creation Date. [optional] # noqa: E501
886
- disable_account_experience_welcome_screen (bool): Whether to disable the account experience welcome screen, which is hosted under `/ui/welcome`.. [optional] # noqa: E501
887
- enable_ax_v2 (bool): Whether the new account experience is enabled and reachable.. [optional] # noqa: E501
888
- hydra_oauth2_allowed_top_level_claims (StringSliceJSONFormat): [optional] # noqa: E501
889
- hydra_oauth2_client_credentials_default_grant_allowed_scope (bool): Automatically grant authorized OAuth2 Scope in OAuth2 Client Credentials Flow. Each OAuth2 Client is allowed to request a predefined OAuth2 Scope (for example `read write`). If this option is enabled, the full scope is automatically granted when performing the OAuth2 Client Credentials flow. If disabled, the OAuth2 Client has to request the scope in the OAuth2 request by providing the `scope` query parameter. Setting this option to true is common if you need compatibility with MITREid. This governs the \"oauth2.client_credentials.default_grant_allowed_scope\" setting.. [optional] # noqa: E501
890
- hydra_oauth2_exclude_not_before_claim (bool): Set to true if you want to exclude claim `nbf (not before)` part of access token. This governs the \"oauth2.exclude_not_before_claim\" setting.. [optional] # noqa: E501
891
- hydra_oauth2_grant_jwt_iat_optional (bool): Configures if the issued at (`iat`) claim is required in the JSON Web Token (JWT) Profile for OAuth 2.0 Client Authentication and Authorization Grants (RFC7523). If set to `false`, the `iat` claim is required. Set this value to `true` only after careful consideration. This governs the \"oauth2.grant.jwt.iat_optional\" setting.. [optional] # noqa: E501
892
- hydra_oauth2_grant_jwt_jti_optional (bool): Configures if the JSON Web Token ID (`jti`) claim is required in the JSON Web Token (JWT) Profile for OAuth 2.0 Client Authentication and Authorization Grants (RFC7523). If set to `false`, the `jti` claim is required. Set this value to `true` only after careful consideration. This governs the \"oauth2.grant.jwt.jti_optional\" setting.. [optional] # noqa: E501
893
- hydra_oauth2_grant_jwt_max_ttl (str): Configures what the maximum age of a JWT assertion used in the JSON Web Token (JWT) Profile for OAuth 2.0 Client Authentication and Authorization Grants (RFC7523) can be. This feature uses the `exp` claim and `iat` claim to calculate assertion age. Assertions exceeding the max age will be denied. Useful as a safety measure and recommended to keep below 720h. This governs the \"oauth2.grant.jwt.max_ttl\" setting.. [optional] if omitted the server will use the default value of "720h" # noqa: E501
894
- hydra_oauth2_mirror_top_level_claims (bool): Set to false if you don't want to mirror custom claims under 'ext'. This governs the \"oauth2.mirror_top_level_claims\" setting.. [optional] # noqa: E501
895
- hydra_oauth2_pkce_enforced (bool): Configures whether PKCE should be enforced for all OAuth2 Clients. This governs the \"oauth2.pkce.enforced\" setting.. [optional] # noqa: E501
896
- hydra_oauth2_pkce_enforced_for_public_clients (bool): Configures whether PKCE should be enforced for OAuth2 Clients without a client secret (public clients). This governs the \"oauth2.pkce.enforced_for_public_clients\" setting.. [optional] # noqa: E501
897
- hydra_oauth2_refresh_token_hook (str): Sets the Refresh Token Hook Endpoint. If set this endpoint will be called during the OAuth2 Token Refresh grant update the OAuth2 Access Token claims. This governs the \"oauth2.refresh_token_hook\" setting.. [optional] # noqa: E501
898
- hydra_oauth2_token_hook (str): Sets the token hook endpoint for all grant types. If set it will be called while providing token to customize claims. This governs the \"oauth2.token_hook.url\" setting.. [optional] # noqa: E501
899
- hydra_oidc_dynamic_client_registration_default_scope (StringSliceJSONFormat): [optional] # noqa: E501
900
- hydra_oidc_dynamic_client_registration_enabled (bool): Configures OpenID Connect Dynamic Client Registration. This governs the \"oidc.dynamic_client_registration.enabled\" setting.. [optional] # noqa: E501
901
- hydra_oidc_subject_identifiers_pairwise_salt (str): Configures OpenID Connect Discovery and overwrites the pairwise algorithm This governs the \"oidc.subject_identifiers.pairwise_salt\" setting.. [optional] # noqa: E501
902
- hydra_oidc_subject_identifiers_supported_types (StringSliceJSONFormat): [optional] # noqa: E501
903
- hydra_secrets_cookie (StringSliceJSONFormat): [optional] # noqa: E501
904
- hydra_secrets_system (StringSliceJSONFormat): [optional] # noqa: E501
905
- hydra_serve_cookies_same_site_legacy_workaround (bool): Configures the Ory Hydra Cookie Same Site Legacy Workaround This governs the \"serve.cookies.same_site_legacy_workaround\" setting.. [optional] # noqa: E501
906
- hydra_serve_cookies_same_site_mode (str): Configures the Ory Hydra Cookie Same Site Mode This governs the \"serve.cookies.same_site_mode\" setting.. [optional] # noqa: E501
907
- hydra_strategies_access_token (str): Defines access token type. jwt is a bad idea, see https://www.ory.sh/docs/hydra/advanced#json-web-tokens This governs the \"strategies.access_token\" setting. opaque Oauth2AccessTokenStrategyOpaque jwt Oauth2AccessTokenStrategyJwt. [optional] if omitted the server will use the default value of "opaque" # noqa: E501
908
- hydra_strategies_scope (str): Defines how scopes are matched. For more details have a look at https://github.com/ory/fosite#scopes This governs the \"strategies.scope\" setting. exact Oauth2ScopeStrategyExact wildcard Oauth2ScopeStrategyWildcard. [optional] if omitted the server will use the default value of "wildcard" # noqa: E501
909
- hydra_ttl_access_token (str): This governs the \"ttl.access_token\" setting.. [optional] if omitted the server will use the default value of "30m" # noqa: E501
910
- hydra_ttl_auth_code (str): Configures how long refresh tokens are valid. Set to -1 for refresh tokens to never expire. This is not recommended! This governs the \"ttl.auth_code\" setting.. [optional] if omitted the server will use the default value of "720h" # noqa: E501
911
- hydra_ttl_id_token (str): This governs the \"ttl.id_token\" setting.. [optional] if omitted the server will use the default value of "30m" # noqa: E501
912
- hydra_ttl_login_consent_request (str): Configures how long a user login and consent flow may take. This governs the \"ttl.login_consent_request\" setting.. [optional] if omitted the server will use the default value of "30m" # noqa: E501
913
- hydra_ttl_refresh_token (str): Configures how long refresh tokens are valid. Set to -1 for refresh tokens to never expire. This is not recommended! This governs the \"ttl.refresh_token\" setting.. [optional] if omitted the server will use the default value of "720h" # noqa: E501
914
- hydra_urls_consent (str): Sets the OAuth2 Consent Endpoint URL of the OAuth2 User Login & Consent flow. Defaults to the Ory Account Experience if left empty. This governs the \"urls.consent\" setting.. [optional] # noqa: E501
915
- hydra_urls_error (str): Sets the OAuth2 Error URL of the OAuth2 User Login & Consent flow. Defaults to the Ory Account Experience if left empty. This governs the \"urls.error\" setting.. [optional] # noqa: E501
916
- hydra_urls_login (str): Sets the OAuth2 Login Endpoint URL of the OAuth2 User Login & Consent flow. Defaults to the Ory Account Experience if left empty. This governs the \"urls.login\" setting.. [optional] # noqa: E501
917
- hydra_urls_logout (str): Sets the logout endpoint. Defaults to the Ory Account Experience if left empty. This governs the \"urls.logout\" setting.. [optional] # noqa: E501
918
- hydra_urls_post_logout_redirect (str): When an OAuth2-related user agent requests to log out, they will be redirected to this url afterwards per default. Defaults to the Ory Account Experience in development and your application in production mode when a custom domain is connected. This governs the \"urls.post_logout_redirect\" setting.. [optional] # noqa: E501
919
- hydra_urls_registration (str): Sets the OAuth2 Registration Endpoint URL of the OAuth2 User Login & Consent flow. Defaults to the Ory Account Experience if left empty. This governs the \"urls.registration\" setting.. [optional] # noqa: E501
920
- hydra_urls_self_issuer (str): This value will be used as the issuer in access and ID tokens. It must be specified and using HTTPS protocol, unless the development mode is enabled. On the Ory Network it will be very rare that you want to modify this value. If left empty, it will default to the correct value for the Ory Network. This governs the \"urls.self.issuer\" setting.. [optional] # noqa: E501
921
- hydra_webfinger_jwks_broadcast_keys (StringSliceJSONFormat): [optional] # noqa: E501
922
- hydra_webfinger_oidc_discovery_auth_url (str): Configures OpenID Connect Discovery and overwrites the OAuth2 Authorization URL. This governs the \"webfinger.oidc.discovery.auth_url\" setting.. [optional] # noqa: E501
923
- hydra_webfinger_oidc_discovery_client_registration_url (str): Configures OpenID Connect Discovery and overwrites the OpenID Connect Dynamic Client Registration Endpoint. This governs the \"webfinger.oidc.discovery.client_registration_url\" setting.. [optional] # noqa: E501
924
- hydra_webfinger_oidc_discovery_jwks_url (str): Configures OpenID Connect Discovery and overwrites the JWKS URL. This governs the \"webfinger.oidc.discovery.jwks_url\" setting.. [optional] # noqa: E501
925
- hydra_webfinger_oidc_discovery_supported_claims (StringSliceJSONFormat): [optional] # noqa: E501
926
- hydra_webfinger_oidc_discovery_supported_scope (StringSliceJSONFormat): [optional] # noqa: E501
927
- hydra_webfinger_oidc_discovery_token_url (str): Configures OpenID Connect Discovery and overwrites the OAuth2 Token URL. This governs the \"webfinger.oidc.discovery.token_url\" setting.. [optional] # noqa: E501
928
- hydra_webfinger_oidc_discovery_userinfo_url (str): Configures OpenID Connect Discovery and overwrites userinfo endpoint to be advertised at the OpenID Connect Discovery endpoint /.well-known/openid-configuration. Defaults to Ory Hydra's userinfo endpoint at /userinfo. Set this value if you want to handle this endpoint yourself. This governs the \"webfinger.oidc.discovery.userinfo_url\" setting.. [optional] # noqa: E501
929
- id (str): The revision ID.. [optional] # noqa: E501
930
- keto_namespace_configuration (str): The Revisions' Keto Namespace Configuration The string is a URL pointing to an OPL file with the configuration.. [optional] # noqa: E501
931
- keto_namespaces (KetoNamespaces): [optional] # noqa: E501
932
- kratos_cookies_same_site (str): Configures the Ory Kratos Cookie SameSite Attribute This governs the \"cookies.same_site\" setting.. [optional] # noqa: E501
933
- kratos_courier_channels (RevisionCourierChannels): [optional] # noqa: E501
934
- kratos_courier_delivery_strategy (str): The delivery strategy to use when sending emails `smtp`: Use SMTP server `http`: Use the built in HTTP client to send the email to some remote service. [optional] if omitted the server will use the default value of "smtp" # noqa: E501
935
- kratos_courier_http_request_config_auth_api_key_in (str): The location of the API key to use in the HTTP email sending service's authentication `header`: Send the key value pair as a header `cookie`: Send the key value pair as a cookie This governs the \"courier.http.auth.config.in\" setting. [optional] # noqa: E501
936
- kratos_courier_http_request_config_auth_api_key_name (str): The name of the API key to use in the HTTP email sending service's authentication This governs the \"courier.http.auth.config.name\" setting. [optional] # noqa: E501
937
- kratos_courier_http_request_config_auth_api_key_value (str): The value of the API key to use in the HTTP email sending service's authentication This governs the \"courier.http.auth.config.value\" setting. [optional] # noqa: E501
938
- kratos_courier_http_request_config_auth_basic_auth_password (str): The password to use for basic auth in the HTTP email sending service's authentication This governs the \"courier.http.auth.config.password\" setting. [optional] # noqa: E501
939
- kratos_courier_http_request_config_auth_basic_auth_user (str): The user to use for basic auth in the HTTP email sending service's authentication This governs the \"courier.http.auth.config.user\" setting. [optional] # noqa: E501
940
- kratos_courier_http_request_config_auth_type (str): The authentication type to use while contacting the remote HTTP email sending service `basic_auth`: Use Basic Authentication `api_key`: Use API Key Authentication in a header or cookie. [optional] if omitted the server will use the default value of "empty (no authentication)" # noqa: E501
941
- kratos_courier_http_request_config_body (str): The Jsonnet template to generate the body to send to the remote HTTP email sending service Should be valid Jsonnet and base64 encoded This governs the \"courier.http.body\" setting. [optional] # noqa: E501
942
- kratos_courier_http_request_config_headers ({str: (bool, date, datetime, dict, float, int, list, str, none_type)}, none_type): NullJSONRawMessage represents a json.RawMessage that works well with JSON, SQL, and Swagger and is NULLable-. [optional] # noqa: E501
943
- kratos_courier_http_request_config_method (str): The http METHOD to use when calling the remote HTTP email sending service. [optional] if omitted the server will use the default value of "POST" # noqa: E501
944
- kratos_courier_http_request_config_url (str): The URL of the remote HTTP email sending service This governs the \"courier.http.url\" setting. [optional] # noqa: E501
945
- kratos_courier_smtp_connection_uri (str): Configures the Ory Kratos SMTP Connection URI This governs the \"courier.smtp.connection_uri\" setting.. [optional] # noqa: E501
946
- kratos_courier_smtp_from_address (str): Configures the Ory Kratos SMTP From Address This governs the \"courier.smtp.from_address\" setting.. [optional] # noqa: E501
947
- kratos_courier_smtp_from_name (str): Configures the Ory Kratos SMTP From Name This governs the \"courier.smtp.from_name\" setting.. [optional] # noqa: E501
948
- kratos_courier_smtp_headers ({str: (bool, date, datetime, dict, float, int, list, str, none_type)}, none_type): NullJSONRawMessage represents a json.RawMessage that works well with JSON, SQL, and Swagger and is NULLable-. [optional] # noqa: E501
949
- kratos_courier_smtp_local_name (str): Configures the local_name to use in SMTP connections This governs the \"courier.smtp.local_name\" setting.. [optional] # noqa: E501
950
- kratos_courier_templates_login_code_valid_email_body_html (str): Configures the Ory Kratos Valid Login via Code Email Body HTML Template This governs the \"courier.smtp.templates.login_code.valid.email.body.html\" setting.. [optional] # noqa: E501
951
- kratos_courier_templates_login_code_valid_email_body_plaintext (str): Configures the Ory Kratos Valid Login via Code Email Body Plaintext Template This governs the \"courier.smtp.templates.login_code.valid.email.body.plaintext\" setting.. [optional] # noqa: E501
952
- kratos_courier_templates_login_code_valid_email_subject (str): Configures the Ory Kratos Valid Login via Code Email Subject Template This governs the \"courier.smtp.templates.login_code.valid.email.subject\" setting.. [optional] # noqa: E501
953
- kratos_courier_templates_login_code_valid_sms_body_plaintext (str): Configures the Ory Kratos Valid Login via Code SMS plain text body This governs the \"courier.smtp.templates.login_code.valid.sms.plaintext\" setting.. [optional] # noqa: E501
954
- kratos_courier_templates_recovery_code_invalid_email_body_html (str): Configures the Ory Kratos Invalid Recovery via Code Email Body HTML Template This governs the \"courier.smtp.templates.recovery_code.invalid.email.body.html\" setting.. [optional] # noqa: E501
955
- kratos_courier_templates_recovery_code_invalid_email_body_plaintext (str): Configures the Ory Kratos Invalid Recovery via Code Email Body Plaintext Template This governs the \"courier.smtp.templates.recovery_code.invalid.email.body.plaintext\" setting.. [optional] # noqa: E501
956
- kratos_courier_templates_recovery_code_invalid_email_subject (str): Configures the Ory Kratos Invalid Recovery via Code Email Subject Template This governs the \"courier.smtp.templates.recovery_code.invalid.email.body.html\" setting.. [optional] # noqa: E501
957
- kratos_courier_templates_recovery_code_valid_email_body_html (str): Configures the Ory Kratos Valid Recovery via Code Email Body HTML Template This governs the \"courier.smtp.templates.recovery_code.valid.email.body.html\" setting.. [optional] # noqa: E501
958
- kratos_courier_templates_recovery_code_valid_email_body_plaintext (str): Configures the Ory Kratos Valid Recovery via Code Email Body Plaintext Template This governs the \"courier.smtp.templates.recovery_code.valid.email.body.plaintext\" setting.. [optional] # noqa: E501
959
- kratos_courier_templates_recovery_code_valid_email_subject (str): Configures the Ory Kratos Valid Recovery via Code Email Subject Template This governs the \"courier.smtp.templates.recovery_code.valid.email.subject\" setting.. [optional] # noqa: E501
960
- kratos_courier_templates_recovery_invalid_email_body_html (str): Configures the Ory Kratos Invalid Recovery Email Body HTML Template This governs the \"courier.smtp.templates.recovery.invalid.email.body.html\" setting.. [optional] # noqa: E501
961
- kratos_courier_templates_recovery_invalid_email_body_plaintext (str): Configures the Ory Kratos Invalid Recovery Email Body Plaintext Template This governs the \"courier.smtp.templates.recovery.invalid.email.body.plaintext\" setting.. [optional] # noqa: E501
962
- kratos_courier_templates_recovery_invalid_email_subject (str): Configures the Ory Kratos Invalid Recovery Email Subject Template This governs the \"courier.smtp.templates.recovery.invalid.email.body.html\" setting.. [optional] # noqa: E501
963
- kratos_courier_templates_recovery_valid_email_body_html (str): Configures the Ory Kratos Valid Recovery Email Body HTML Template This governs the \"courier.smtp.templates.recovery.valid.email.body.html\" setting.. [optional] # noqa: E501
964
- kratos_courier_templates_recovery_valid_email_body_plaintext (str): Configures the Ory Kratos Valid Recovery Email Body Plaintext Template This governs the \"courier.smtp.templates.recovery.valid.email.body.plaintext\" setting.. [optional] # noqa: E501
965
- kratos_courier_templates_recovery_valid_email_subject (str): Configures the Ory Kratos Valid Recovery Email Subject Template This governs the \"courier.smtp.templates.recovery.valid.email.subject\" setting.. [optional] # noqa: E501
966
- kratos_courier_templates_registration_code_valid_email_body_html (str): Configures the Ory Kratos Valid Registration via Code Email Body HTML Template This governs the \"courier.smtp.templates.registration_code.valid.email.body.html\" setting.. [optional] # noqa: E501
967
- kratos_courier_templates_registration_code_valid_email_body_plaintext (str): Configures the Ory Kratos Valid Registration via Code Email Body Plaintext Template This governs the \"courier.smtp.templates.registration_code.valid.email.body.plaintext\" setting.. [optional] # noqa: E501
968
- kratos_courier_templates_registration_code_valid_email_subject (str): Configures the Ory Kratos Valid Registration via Code Email Subject Template This governs the \"courier.smtp.templates.registration_code.valid.email.subject\" setting.. [optional] # noqa: E501
969
- kratos_courier_templates_verification_code_invalid_email_body_html (str): Configures the Ory Kratos Invalid Verification via Code Email Body HTML Template This governs the \"courier.smtp.templates.verification_code.invalid.email.body.html\" setting.. [optional] # noqa: E501
970
- kratos_courier_templates_verification_code_invalid_email_body_plaintext (str): Configures the Ory Kratos Invalid Verification via Code Email Body Plaintext Template This governs the \"courier.smtp.templates.verification_code.invalid.email.body.plaintext\" setting.. [optional] # noqa: E501
971
- kratos_courier_templates_verification_code_invalid_email_subject (str): Configures the Ory Kratos Invalid Verification via Code Email Subject Template This governs the \"courier.smtp.templates.verification_code.invalid.email.subject\" setting.. [optional] # noqa: E501
972
- kratos_courier_templates_verification_code_valid_email_body_html (str): Configures the Ory Kratos Valid Verification via Code Email Body HTML Template This governs the \"courier.smtp.templates.verification_code.valid.email.body.html\" setting.. [optional] # noqa: E501
973
- kratos_courier_templates_verification_code_valid_email_body_plaintext (str): Configures the Ory Kratos Valid Verification via Code Email Body Plaintext Template This governs the \"courier.smtp.templates.verification_code.valid.email.body.plaintext\" setting.. [optional] # noqa: E501
974
- kratos_courier_templates_verification_code_valid_email_subject (str): Configures the Ory Kratos Valid Verification via Code Email Subject Template This governs the \"courier.smtp.templates.verification_code.valid.email.subject\" setting.. [optional] # noqa: E501
975
- kratos_courier_templates_verification_code_valid_sms_body_plaintext (str): Configures the Ory Kratos Valid Verification via Code SMS Body Plaintext This governs the \"courier.smtp.templates.verification_code.valid.sms.body.plaintext\" setting.. [optional] # noqa: E501
976
- kratos_courier_templates_verification_invalid_email_body_html (str): Configures the Ory Kratos Invalid Verification Email Body HTML Template This governs the \"courier.smtp.templates.verification.invalid.email.body.html\" setting.. [optional] # noqa: E501
977
- kratos_courier_templates_verification_invalid_email_body_plaintext (str): Configures the Ory Kratos Invalid Verification Email Body Plaintext Template This governs the \"courier.smtp.templates.verification.invalid.email.body.plaintext\" setting.. [optional] # noqa: E501
978
- kratos_courier_templates_verification_invalid_email_subject (str): Configures the Ory Kratos Invalid Verification Email Subject Template This governs the \"courier.smtp.templates.verification.invalid.email.subject\" setting.. [optional] # noqa: E501
979
- kratos_courier_templates_verification_valid_email_body_html (str): Configures the Ory Kratos Valid Verification Email Body HTML Template This governs the \"courier.smtp.templates.verification.valid.email.body.html\" setting.. [optional] # noqa: E501
980
- kratos_courier_templates_verification_valid_email_body_plaintext (str): Configures the Ory Kratos Valid Verification Email Body Plaintext Template This governs the \"courier.smtp.templates.verification.valid.email.body.plaintext\" setting.. [optional] # noqa: E501
981
- kratos_courier_templates_verification_valid_email_subject (str): Configures the Ory Kratos Valid Verification Email Subject Template This governs the \"courier.smtp.templates.verification.valid.email.subject\" setting.. [optional] # noqa: E501
982
- kratos_feature_flags_cacheable_sessions (bool): Configures the Ory Kratos Session caching feature flag This governs the \"feature_flags.cacheable_sessions\" setting.. [optional] # noqa: E501
983
- kratos_feature_flags_cacheable_sessions_max_age (str): Configures the Ory Kratos Session caching max-age feature flag This governs the \"feature_flags.cacheable_sessions_max_age\" setting.. [optional] # noqa: E501
984
- kratos_feature_flags_use_continue_with_transitions (bool): Configures the Ory Kratos Session use_continue_with_transitions flag This governs the \"feature_flags.use_continue_with_transitions\" setting.. [optional] # noqa: E501
985
- kratos_identity_schemas (ProjectRevisionIdentitySchemas): [optional] # noqa: E501
986
- kratos_oauth2_provider_headers ({str: (bool, date, datetime, dict, float, int, list, str, none_type)}, none_type): NullJSONRawMessage represents a json.RawMessage that works well with JSON, SQL, and Swagger and is NULLable-. [optional] # noqa: E501
987
- kratos_oauth2_provider_override_return_to (bool): Kratos OAuth2 Provider Override Return To Enabling this allows Kratos to set the return_to parameter automatically to the OAuth2 request URL on the login flow, allowing complex flows such as recovery to continue to the initial OAuth2 flow.. [optional] # noqa: E501
988
- kratos_oauth2_provider_url (str): The Revisions' OAuth2 Provider Integration URL This governs the \"oauth2_provider.url\" setting.. [optional] # noqa: E501
989
- kratos_preview_default_read_consistency_level (str): Configures the default read consistency level for identity APIs This governs the `preview.default_read_consistency_level` setting. The read consistency level determines the consistency guarantee for reads: strong (slow): The read is guaranteed to return the most recent data committed at the start of the read. eventual (very fast): The result will return data that is about 4.8 seconds old. Setting the default consistency level to `eventual` may cause regressions in the future as we add consistency controls to more APIs. Currently, the following APIs will be affected by this setting: `GET /admin/identities` Defaults to \"strong\" for new and existing projects. This feature is in preview. Use with caution.. [optional] # noqa: E501
990
- kratos_secrets_cipher (StringSliceJSONFormat): [optional] # noqa: E501
991
- kratos_secrets_cookie (StringSliceJSONFormat): [optional] # noqa: E501
992
- kratos_secrets_default (StringSliceJSONFormat): [optional] # noqa: E501
993
- kratos_selfservice_allowed_return_urls (StringSliceJSONFormat): [optional] # noqa: E501
994
- kratos_selfservice_default_browser_return_url (str): Configures the Ory Kratos Default Return URL This governs the \"selfservice.allowed_return_urls\" setting.. [optional] # noqa: E501
995
- kratos_selfservice_flows_error_ui_url (str): Configures the Ory Kratos Error UI URL This governs the \"selfservice.flows.error.ui_url\" setting.. [optional] # noqa: E501
996
- kratos_selfservice_flows_login_after_code_default_browser_return_url (str): Configures the Ory Kratos Login After Password Default Return URL This governs the \"selfservice.flows.code.after.password.default_browser_return_url\" setting.. [optional] # noqa: E501
997
- kratos_selfservice_flows_login_after_default_browser_return_url (str): Configures the Ory Kratos Login Default Return URL This governs the \"selfservice.flows.login.after.default_browser_return_url\" setting.. [optional] # noqa: E501
998
- kratos_selfservice_flows_login_after_lookup_secret_default_browser_return_url (str): Configures the Ory Kratos Login After Password Default Return URL This governs the \"selfservice.flows.lookup_secret.after.password.default_browser_return_url\" setting.. [optional] # noqa: E501
999
- kratos_selfservice_flows_login_after_oidc_default_browser_return_url (str): Configures the Ory Kratos Login After OIDC Default Return URL This governs the \"selfservice.flows.login.after.oidc.default_browser_return_url\" setting.. [optional] # noqa: E501
1000
- kratos_selfservice_flows_login_after_password_default_browser_return_url (str): Configures the Ory Kratos Login After Password Default Return URL This governs the \"selfservice.flows.login.after.password.default_browser_return_url\" setting.. [optional] # noqa: E501
1001
- kratos_selfservice_flows_login_after_totp_default_browser_return_url (str): Configures the Ory Kratos Login After Password Default Return URL This governs the \"selfservice.flows.totp.after.password.default_browser_return_url\" setting.. [optional] # noqa: E501
1002
- kratos_selfservice_flows_login_after_webauthn_default_browser_return_url (str): Configures the Ory Kratos Login After WebAuthn Default Return URL This governs the \"selfservice.flows.login.after.webauthn.default_browser_return_url\" setting.. [optional] # noqa: E501
1003
- kratos_selfservice_flows_login_lifespan (str): Configures the Ory Kratos Login Lifespan This governs the \"selfservice.flows.login.lifespan\" setting.. [optional] # noqa: E501
1004
- kratos_selfservice_flows_login_ui_url (str): Configures the Ory Kratos Login UI URL This governs the \"selfservice.flows.login.ui_url\" setting.. [optional] # noqa: E501
1005
- kratos_selfservice_flows_logout_after_default_browser_return_url (str): Configures the Ory Kratos Logout Default Return URL This governs the \"selfservice.flows.logout.after.default_browser_return_url\" setting.. [optional] # noqa: E501
1006
- kratos_selfservice_flows_recovery_after_default_browser_return_url (str): Configures the Ory Kratos Recovery Default Return URL This governs the \"selfservice.flows.recovery.after.default_browser_return_url\" setting.. [optional] # noqa: E501
1007
- kratos_selfservice_flows_recovery_enabled (bool): Configures the Ory Kratos Recovery Enabled Setting This governs the \"selfservice.flows.recovery.enabled\" setting.. [optional] # noqa: E501
1008
- kratos_selfservice_flows_recovery_lifespan (str): Configures the Ory Kratos Recovery Lifespan This governs the \"selfservice.flows.recovery.lifespan\" setting.. [optional] # noqa: E501
1009
- kratos_selfservice_flows_recovery_notify_unknown_recipients (bool): Configures whether to notify unknown recipients of a Ory Kratos recovery flow This governs the \"selfservice.flows.recovery.notify_unknown_recipients\" setting.. [optional] # noqa: E501
1010
- kratos_selfservice_flows_recovery_ui_url (str): Configures the Ory Kratos Recovery UI URL This governs the \"selfservice.flows.recovery.ui_url\" setting.. [optional] # noqa: E501
1011
- kratos_selfservice_flows_recovery_use (str): Configures the Ory Kratos Recovery strategy to use (\"link\" or \"code\") This governs the \"selfservice.flows.recovery.use\" setting. link SelfServiceMessageVerificationStrategyLink code SelfServiceMessageVerificationStrategyCode. [optional] # noqa: E501
1012
- kratos_selfservice_flows_registration_after_code_default_browser_return_url (str): Configures the Ory Kratos Registration After Code Default Return URL This governs the \"selfservice.flows.registration.after.code.default_browser_return_url\" setting.. [optional] # noqa: E501
1013
- kratos_selfservice_flows_registration_after_default_browser_return_url (str): Configures the Ory Kratos Registration Default Return URL This governs the \"selfservice.flows.registration.after.default_browser_return_url\" setting.. [optional] # noqa: E501
1014
- kratos_selfservice_flows_registration_after_oidc_default_browser_return_url (str): Configures the Ory Kratos Registration After OIDC Default Return URL This governs the \"selfservice.flows.registration.after.oidc.default_browser_return_url\" setting.. [optional] # noqa: E501
1015
- kratos_selfservice_flows_registration_after_password_default_browser_return_url (str): Configures the Ory Kratos Registration After Password Default Return URL This governs the \"selfservice.flows.registration.after.password.default_browser_return_url\" setting.. [optional] # noqa: E501
1016
- kratos_selfservice_flows_registration_after_webauthn_default_browser_return_url (str): Configures the Ory Kratos Registration After Password Default Return URL This governs the \"selfservice.flows.registration.after.password.default_browser_return_url\" setting.. [optional] # noqa: E501
1017
- kratos_selfservice_flows_registration_enabled (bool): Configures the Whether Ory Kratos Registration is Enabled This governs the \"selfservice.flows.registration.enabled\" setting.0. [optional] # noqa: E501
1018
- kratos_selfservice_flows_registration_lifespan (str): Configures the Ory Kratos Registration Lifespan This governs the \"selfservice.flows.registration.lifespan\" setting.. [optional] # noqa: E501
1019
- kratos_selfservice_flows_registration_login_hints (bool): Configures the Ory Kratos Registration Login Hints Shows helpful information when a user tries to sign up with a duplicate account. This governs the \"selfservice.flows.registration.login_hints\" setting.. [optional] # noqa: E501
1020
- kratos_selfservice_flows_registration_ui_url (str): Configures the Ory Kratos Registration UI URL This governs the \"selfservice.flows.registration.ui_url\" setting.. [optional] # noqa: E501
1021
- kratos_selfservice_flows_settings_after_default_browser_return_url (str): Configures the Ory Kratos Settings Default Return URL This governs the \"selfservice.flows.settings.after.default_browser_return_url\" setting.. [optional] # noqa: E501
1022
- kratos_selfservice_flows_settings_after_lookup_secret_default_browser_return_url (str): Configures the Ory Kratos Settings Default Return URL After Updating Lookup Secrets This governs the \"selfservice.flows.settings.after.lookup_secret.default_browser_return_url\" setting.. [optional] # noqa: E501
1023
- kratos_selfservice_flows_settings_after_oidc_default_browser_return_url (str): Configures the Ory Kratos Settings Default Return URL After Updating Social Sign In This governs the \"selfservice.flows.settings.after.oidc.default_browser_return_url\" setting.. [optional] # noqa: E501
1024
- kratos_selfservice_flows_settings_after_password_default_browser_return_url (str): Configures the Ory Kratos Settings Default Return URL After Updating Passwords This governs the \"selfservice.flows.settings.after.password.default_browser_return_url\" setting.. [optional] # noqa: E501
1025
- kratos_selfservice_flows_settings_after_profile_default_browser_return_url (str): Configures the Ory Kratos Settings Default Return URL After Updating Profiles This governs the \"selfservice.flows.settings.after.profile.default_browser_return_url\" setting.. [optional] # noqa: E501
1026
- kratos_selfservice_flows_settings_after_totp_default_browser_return_url (str): Configures the Ory Kratos Settings Default Return URL After Updating TOTP This governs the \"selfservice.flows.settings.after.totp.default_browser_return_url\" setting.. [optional] # noqa: E501
1027
- kratos_selfservice_flows_settings_after_webauthn_default_browser_return_url (str): Configures the Ory Kratos Settings Default Return URL After Updating WebAuthn This governs the \"selfservice.flows.settings.webauthn.profile.default_browser_return_url\" setting.. [optional] # noqa: E501
1028
- kratos_selfservice_flows_settings_lifespan (str): Configures the Ory Kratos Settings Lifespan This governs the \"selfservice.flows.settings.lifespan\" setting.. [optional] # noqa: E501
1029
- kratos_selfservice_flows_settings_privileged_session_max_age (str): Configures the Ory Kratos Settings Privileged Session Max Age This governs the \"selfservice.flows.settings.privileged_session_max_age\" setting.. [optional] # noqa: E501
1030
- kratos_selfservice_flows_settings_required_aal (str): Configures the Ory Kratos Settings Required AAL This governs the \"selfservice.flows.settings.required_aal\" setting.. [optional] # noqa: E501
1031
- kratos_selfservice_flows_settings_ui_url (str): Configures the Ory Kratos Settings UI URL This governs the \"selfservice.flows.settings.ui_url\" setting.. [optional] # noqa: E501
1032
- kratos_selfservice_flows_verification_after_default_browser_return_url (str): Configures the Ory Kratos Verification Default Return URL This governs the \"selfservice.flows.verification.after.default_browser_return_url\" setting.. [optional] # noqa: E501
1033
- kratos_selfservice_flows_verification_enabled (bool): Configures the Ory Kratos Verification Enabled Setting This governs the \"selfservice.flows.verification.enabled\" setting.. [optional] # noqa: E501
1034
- kratos_selfservice_flows_verification_lifespan (str): Configures the Ory Kratos Verification Lifespan This governs the \"selfservice.flows.verification.lifespan\" setting.. [optional] # noqa: E501
1035
- kratos_selfservice_flows_verification_notify_unknown_recipients (bool): Configures whether to notify unknown recipients of a Ory Kratos verification flow This governs the \"selfservice.flows.verification.notify_unknown_recipients\" setting.. [optional] # noqa: E501
1036
- kratos_selfservice_flows_verification_ui_url (str): Configures the Ory Kratos Verification UI URL This governs the \"selfservice.flows.verification.ui_url\" setting.. [optional] # noqa: E501
1037
- kratos_selfservice_flows_verification_use (str): Configures the Ory Kratos Strategy to use for Verification This governs the \"selfservice.flows.verification.use\" setting. link SelfServiceMessageVerificationStrategyLink code SelfServiceMessageVerificationStrategyCode. [optional] # noqa: E501
1038
- kratos_selfservice_methods_code_config_lifespan (str): Configures the Ory Kratos Code Method's lifespan This governs the \"selfservice.methods.code.config.lifespan\" setting.. [optional] # noqa: E501
1039
- kratos_selfservice_methods_code_enabled (bool): Configures whether Ory Kratos Code Method is enabled This governs the \"selfservice.methods.code.enabled\" setting.. [optional] # noqa: E501
1040
- kratos_selfservice_methods_code_mfa_enabled (bool): Configues whether the code method can be used to fulfil MFA flows This governs the \"selfservice.methods.code.mfa_enabled\" setting.. [optional] # noqa: E501
1041
- kratos_selfservice_methods_code_passwordless_enabled (bool): Configues whether Ory Kratos Passwordless should use the Code Method This governs the \"selfservice.methods.code.passwordless_enabled\" setting.. [optional] # noqa: E501
1042
- kratos_selfservice_methods_link_config_base_url (str): Configures the Base URL which Recovery, Verification, and Login Links Point to It is recommended to leave this value empty. It will be appropriately configured to the best matching domain (e.g. when using custom domains) automatically. This governs the \"selfservice.methods.link.config.base_url\" setting.. [optional] # noqa: E501
1043
- kratos_selfservice_methods_link_config_lifespan (str): Configures the Ory Kratos Link Method's lifespan This governs the \"selfservice.methods.link.config.lifespan\" setting.. [optional] # noqa: E501
1044
- kratos_selfservice_methods_link_enabled (bool): Configures whether Ory Kratos Link Method is enabled This governs the \"selfservice.methods.link.enabled\" setting.. [optional] # noqa: E501
1045
- kratos_selfservice_methods_lookup_secret_enabled (bool): Configures whether Ory Kratos TOTP Lookup Secret is enabled This governs the \"selfservice.methods.lookup_secret.enabled\" setting.. [optional] # noqa: E501
1046
- kratos_selfservice_methods_oidc_config_base_redirect_uri (str): Configures the Ory Kratos Third Party / OpenID Connect base redirect URI This governs the \"selfservice.methods.oidc.config.base_redirect_uri\" setting.. [optional] # noqa: E501
1047
- kratos_selfservice_methods_oidc_config_providers (ProjectRevisionThirdPartyLoginProviders): [optional] # noqa: E501
1048
- kratos_selfservice_methods_oidc_enabled (bool): Configures whether Ory Kratos Third Party / OpenID Connect Login is enabled This governs the \"selfservice.methods.oidc.enabled\" setting.. [optional] # noqa: E501
1049
- kratos_selfservice_methods_password_config_haveibeenpwned_enabled (bool): Configures whether Ory Kratos Password HIBP Checks is enabled This governs the \"selfservice.methods.password.config.haveibeenpwned_enabled\" setting.. [optional] # noqa: E501
1050
- kratos_selfservice_methods_password_config_identifier_similarity_check_enabled (bool): Configures whether Ory Kratos Password should disable the similarity policy. This governs the \"selfservice.methods.password.config.identifier_similarity_check_enabled\" setting.. [optional] # noqa: E501
1051
- kratos_selfservice_methods_password_config_ignore_network_errors (bool): Configures whether Ory Kratos Password Should ignore HIBPWND Network Errors This governs the \"selfservice.methods.password.config.ignore_network_errors\" setting.. [optional] # noqa: E501
1052
- kratos_selfservice_methods_password_config_max_breaches (int): Configures Ory Kratos Password Max Breaches Detection This governs the \"selfservice.methods.password.config.max_breaches\" setting.. [optional] # noqa: E501
1053
- kratos_selfservice_methods_password_config_min_password_length (int): Configures the minimum length of passwords. This governs the \"selfservice.methods.password.config.min_password_length\" setting.. [optional] # noqa: E501
1054
- kratos_selfservice_methods_password_enabled (bool): Configures whether Ory Kratos Password Method is enabled This governs the \"selfservice.methods.password.enabled\" setting.. [optional] # noqa: E501
1055
- kratos_selfservice_methods_profile_enabled (bool): Configures whether Ory Kratos Profile Method is enabled This governs the \"selfservice.methods.profile.enabled\" setting.. [optional] # noqa: E501
1056
- kratos_selfservice_methods_totp_config_issuer (str): Configures Ory Kratos TOTP Issuer This governs the \"selfservice.methods.totp.config.issuer\" setting.. [optional] # noqa: E501
1057
- kratos_selfservice_methods_totp_enabled (bool): Configures whether Ory Kratos TOTP Method is enabled This governs the \"selfservice.methods.totp.enabled\" setting.. [optional] # noqa: E501
1058
- kratos_selfservice_methods_webauthn_config_passwordless (bool): Configures whether Ory Kratos Webauthn is used for passwordless flows This governs the \"selfservice.methods.webauthn.config.passwordless\" setting.. [optional] # noqa: E501
1059
- kratos_selfservice_methods_webauthn_config_rp_display_name (str): Configures the Ory Kratos Webauthn RP Display Name This governs the \"selfservice.methods.webauthn.config.rp.display_name\" setting.. [optional] # noqa: E501
1060
- kratos_selfservice_methods_webauthn_config_rp_icon (str): Configures the Ory Kratos Webauthn RP Icon This governs the \"selfservice.methods.webauthn.config.rp.icon\" setting. Deprecated: This value will be ignored due to security considerations.. [optional] # noqa: E501
1061
- kratos_selfservice_methods_webauthn_config_rp_id (str): Configures the Ory Kratos Webauthn RP ID This governs the \"selfservice.methods.webauthn.config.rp.id\" setting.. [optional] # noqa: E501
1062
- kratos_selfservice_methods_webauthn_config_rp_origins (StringSliceJSONFormat): [optional] # noqa: E501
1063
- kratos_selfservice_methods_webauthn_enabled (bool): Configures whether Ory Kratos Webauthn is enabled This governs the \"selfservice.methods.webauthn.enabled\" setting.. [optional] # noqa: E501
1064
- kratos_session_cookie_persistent (bool): Configures the Ory Kratos Session Cookie Persistent Attribute This governs the \"session.cookie.persistent\" setting.. [optional] # noqa: E501
1065
- kratos_session_cookie_same_site (str): Configures the Ory Kratos Session Cookie SameSite Attribute This governs the \"session.cookie.same_site\" setting.. [optional] # noqa: E501
1066
- kratos_session_lifespan (str): Configures the Ory Kratos Session Lifespan This governs the \"session.lifespan\" setting.. [optional] # noqa: E501
1067
- kratos_session_whoami_required_aal (str): Configures the Ory Kratos Session Whoami AAL requirement This governs the \"session.whoami.required_aal\" setting.. [optional] # noqa: E501
1068
- kratos_session_whoami_tokenizer_templates (NormalizedProjectRevisionTokenizerTemplates): [optional] # noqa: E501
1069
- project_id (str): The Revision's Project ID. [optional] # noqa: E501
1070
- project_revision_hooks (ProjectRevisionHooks): [optional] # noqa: E501
1071
- serve_admin_cors_allowed_origins (StringSliceJSONFormat): [optional] # noqa: E501
1072
- serve_admin_cors_enabled (bool): Enable CORS headers on all admin APIs This governs the \"serve.admin.cors.enabled\" setting.. [optional] # noqa: E501
1073
- serve_public_cors_allowed_origins (StringSliceJSONFormat): [optional] # noqa: E501
1074
- serve_public_cors_enabled (bool): Enable CORS headers on all public APIs This governs the \"serve.public.cors.enabled\" setting.. [optional] # noqa: E501
1075
- strict_security (bool): Whether the project should employ strict security measures. Setting this to true is recommended for going into production.. [optional] # noqa: E501
1076
- updated_at (datetime): Last Time Project's Revision was Updated. [optional] # noqa: E501
1077
- workspace_id (str, none_type): [optional] # noqa: E501
1078
- """
1079
-
1080
- _check_type = kwargs.pop('_check_type', True)
1081
- _spec_property_naming = kwargs.pop('_spec_property_naming', False)
1082
- _path_to_item = kwargs.pop('_path_to_item', ())
1083
- _configuration = kwargs.pop('_configuration', None)
1084
- _visited_composed_classes = kwargs.pop('_visited_composed_classes', ())
1085
-
1086
- if args:
1087
- for arg in args:
1088
- if isinstance(arg, dict):
1089
- kwargs.update(arg)
1090
- else:
1091
- raise ApiTypeError(
1092
- "Invalid positional arguments=%s passed to %s. Remove those invalid positional arguments." % (
1093
- args,
1094
- self.__class__.__name__,
1095
- ),
1096
- path_to_item=_path_to_item,
1097
- valid_classes=(self.__class__,),
1098
- )
1099
-
1100
- self._data_store = {}
1101
- self._check_type = _check_type
1102
- self._spec_property_naming = _spec_property_naming
1103
- self._path_to_item = _path_to_item
1104
- self._configuration = _configuration
1105
- self._visited_composed_classes = _visited_composed_classes + (self.__class__,)
1106
-
1107
- self.environment = environment
1108
- self.name = name
1109
- for var_name, var_value in kwargs.items():
1110
- if var_name not in self.attribute_map and \
1111
- self._configuration is not None and \
1112
- self._configuration.discard_unknown_keys and \
1113
- self.additional_properties_type is None:
1114
- # discard variable.
1115
- continue
1116
- setattr(self, var_name, var_value)
1117
- if var_name in self.read_only_vars:
1118
- raise ApiAttributeError(f"`{var_name}` is a read-only attribute. Use `from_openapi_data` to instantiate "
1119
- f"class with read only attributes.")