ory-client 1.20.10__py3-none-any.whl → 1.20.22__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 (319) hide show
  1. ory_client/__init__.py +15 -4
  2. ory_client/api/courier_api.py +1 -1
  3. ory_client/api/events_api.py +1 -1
  4. ory_client/api/frontend_api.py +1 -1
  5. ory_client/api/identity_api.py +19 -19
  6. ory_client/api/jwk_api.py +1 -1
  7. ory_client/api/metadata_api.py +1 -1
  8. ory_client/api/o_auth2_api.py +824 -41
  9. ory_client/api/oidc_api.py +1 -1
  10. ory_client/api/permission_api.py +1 -1
  11. ory_client/api/project_api.py +1941 -723
  12. ory_client/api/relationship_api.py +1 -1
  13. ory_client/api/wellknown_api.py +1 -1
  14. ory_client/api/workspace_api.py +1 -1
  15. ory_client/api_client.py +2 -2
  16. ory_client/configuration.py +4 -4
  17. ory_client/exceptions.py +1 -1
  18. ory_client/models/__init__.py +14 -3
  19. ory_client/models/accept_device_user_code_request.py +101 -0
  20. ory_client/models/accept_o_auth2_consent_request.py +1 -1
  21. ory_client/models/accept_o_auth2_consent_request_session.py +1 -1
  22. ory_client/models/accept_o_auth2_login_request.py +1 -1
  23. ory_client/models/account_experience_colors.py +4 -2
  24. ory_client/models/account_experience_configuration.py +1 -1
  25. ory_client/models/account_experience_theme_variables.py +1 -1
  26. ory_client/models/active_project_in_console.py +1 -1
  27. ory_client/models/add_project_to_workspace_body.py +1 -1
  28. ory_client/models/attribute.py +1 -1
  29. ory_client/models/attribute_filter.py +1 -1
  30. ory_client/models/attributes_count_datapoint.py +1 -1
  31. ory_client/models/authenticator_assurance_level.py +1 -1
  32. ory_client/models/{pagination_headers.py → basic_organization.py} +13 -11
  33. ory_client/models/batch_check_permission_body.py +1 -1
  34. ory_client/models/batch_check_permission_result.py +1 -1
  35. ory_client/models/batch_patch_identities_response.py +1 -1
  36. ory_client/models/billing_period_bucket.py +1 -1
  37. ory_client/models/check_opl_syntax_result.py +1 -1
  38. ory_client/models/check_permission_result.py +1 -1
  39. ory_client/models/check_permission_result_with_error.py +1 -1
  40. ory_client/models/cloud_account.py +1 -1
  41. ory_client/models/consistency_request_parameters.py +1 -1
  42. ory_client/models/continue_with.py +1 -1
  43. ory_client/models/continue_with_recovery_ui.py +1 -1
  44. ory_client/models/continue_with_recovery_ui_flow.py +1 -1
  45. ory_client/models/continue_with_redirect_browser_to.py +1 -1
  46. ory_client/models/continue_with_set_ory_session_token.py +1 -1
  47. ory_client/models/continue_with_settings_ui.py +1 -1
  48. ory_client/models/continue_with_settings_ui_flow.py +1 -1
  49. ory_client/models/continue_with_verification_ui.py +1 -1
  50. ory_client/models/continue_with_verification_ui_flow.py +1 -1
  51. ory_client/models/courier_message_status.py +1 -1
  52. ory_client/models/courier_message_type.py +1 -1
  53. ory_client/models/create_custom_domain_body.py +1 -1
  54. ory_client/models/create_event_stream_body.py +1 -1
  55. ory_client/models/create_fedcm_flow_response.py +1 -1
  56. ory_client/models/create_identity_body.py +1 -1
  57. ory_client/models/create_invite_response.py +1 -1
  58. ory_client/models/create_json_web_key_set.py +1 -1
  59. ory_client/models/create_organization_onboarding_portal_link_body.py +104 -0
  60. ory_client/models/create_project_api_key_request.py +1 -1
  61. ory_client/models/create_project_body.py +1 -1
  62. ory_client/models/create_project_branding.py +1 -1
  63. ory_client/models/create_project_member_invite_body.py +1 -1
  64. ory_client/models/create_project_normalized_payload.py +33 -2
  65. ory_client/models/create_recovery_code_for_identity_body.py +1 -1
  66. ory_client/models/create_recovery_link_for_identity_body.py +1 -1
  67. ory_client/models/create_relationship_body.py +1 -1
  68. ory_client/models/create_subscription_body.py +1 -1
  69. ory_client/models/create_subscription_common.py +1 -1
  70. ory_client/models/create_verifiable_credential_request_body.py +1 -1
  71. ory_client/models/create_workspace_api_key_body.py +1 -1
  72. ory_client/models/create_workspace_body.py +1 -1
  73. ory_client/models/create_workspace_member_invite_body.py +1 -1
  74. ory_client/models/create_workspace_subscription_body.py +1 -1
  75. ory_client/models/credential_supported_draft00.py +1 -1
  76. ory_client/models/custom_domain.py +1 -1
  77. ory_client/models/delete_my_sessions_count.py +1 -1
  78. ory_client/models/device_authorization.py +111 -0
  79. ory_client/models/device_user_auth_request.py +116 -0
  80. ory_client/models/email_template_data.py +1 -1
  81. ory_client/models/email_template_data_body.py +1 -1
  82. ory_client/models/error_authenticator_assurance_level_not_satisfied.py +1 -1
  83. ory_client/models/error_browser_location_change_required.py +1 -1
  84. ory_client/models/error_flow_replaced.py +1 -1
  85. ory_client/models/error_generic.py +1 -1
  86. ory_client/models/error_o_auth2.py +1 -1
  87. ory_client/models/event_stream.py +1 -1
  88. ory_client/models/expanded_permission_tree.py +1 -1
  89. ory_client/models/flow_error.py +1 -1
  90. ory_client/models/generic_error.py +1 -1
  91. ory_client/models/generic_error_content.py +1 -1
  92. ory_client/models/generic_usage.py +1 -1
  93. ory_client/models/get_attributes_count_response.py +1 -1
  94. ory_client/models/get_managed_identity_schema_location.py +1 -1
  95. ory_client/models/get_metrics_event_attributes_response.py +1 -1
  96. ory_client/models/get_metrics_event_types_response.py +1 -1
  97. ory_client/models/get_organization_response.py +1 -1
  98. ory_client/models/get_project_events_body.py +1 -1
  99. ory_client/models/get_project_events_response.py +1 -1
  100. ory_client/models/get_project_metrics_response.py +1 -1
  101. ory_client/models/get_session_activity_response.py +1 -1
  102. ory_client/models/get_version200_response.py +1 -1
  103. ory_client/models/health_not_ready_status.py +1 -1
  104. ory_client/models/health_status.py +1 -1
  105. ory_client/models/identity.py +1 -1
  106. ory_client/models/identity_credentials.py +1 -1
  107. ory_client/models/identity_credentials_code.py +1 -1
  108. ory_client/models/identity_credentials_code_address.py +1 -1
  109. ory_client/models/identity_credentials_oidc.py +1 -1
  110. ory_client/models/identity_credentials_oidc_provider.py +1 -1
  111. ory_client/models/identity_credentials_password.py +1 -1
  112. ory_client/models/identity_patch.py +1 -1
  113. ory_client/models/identity_patch_response.py +1 -1
  114. ory_client/models/identity_schema_container.py +1 -1
  115. ory_client/models/identity_schema_preset.py +1 -1
  116. ory_client/models/identity_with_credentials.py +1 -1
  117. ory_client/models/identity_with_credentials_oidc.py +1 -1
  118. ory_client/models/identity_with_credentials_oidc_config.py +1 -1
  119. ory_client/models/identity_with_credentials_oidc_config_provider.py +1 -1
  120. ory_client/models/identity_with_credentials_password.py +1 -1
  121. ory_client/models/identity_with_credentials_password_config.py +1 -1
  122. ory_client/models/identity_with_credentials_saml.py +1 -1
  123. ory_client/models/identity_with_credentials_saml_config.py +1 -1
  124. ory_client/models/identity_with_credentials_saml_config_provider.py +1 -1
  125. ory_client/models/internal_get_project_branding_body.py +1 -1
  126. ory_client/models/internal_is_ax_welcome_screen_enabled_for_project_body.py +1 -1
  127. ory_client/models/internal_is_owner_for_project_by_slug_body.py +1 -1
  128. ory_client/models/internal_is_owner_for_project_by_slug_response.py +1 -1
  129. ory_client/models/introspected_o_auth2_token.py +1 -1
  130. ory_client/models/invite_token_body.py +1 -1
  131. ory_client/models/invoice.py +1 -1
  132. ory_client/models/invoice_data_v1.py +1 -1
  133. ory_client/models/is_owner_for_project_by_slug.py +1 -1
  134. ory_client/models/json_patch.py +1 -1
  135. ory_client/models/json_web_key.py +1 -1
  136. ory_client/models/json_web_key_set.py +1 -1
  137. ory_client/models/keto_namespace.py +1 -1
  138. ory_client/models/{pagination.py → keyset_pagination_request_parameters.py} +9 -9
  139. ory_client/models/keyset_pagination_response_headers.py +101 -0
  140. ory_client/models/line_item_v1.py +1 -1
  141. ory_client/models/list_event_streams.py +1 -1
  142. ory_client/models/list_invoices_response.py +1 -1
  143. ory_client/models/list_organizations_response.py +1 -1
  144. ory_client/models/list_workspace_projects.py +1 -1
  145. ory_client/models/list_workspaces.py +1 -1
  146. ory_client/models/login_flow.py +1 -1
  147. ory_client/models/login_flow_state.py +1 -1
  148. ory_client/models/logout_flow.py +1 -1
  149. ory_client/models/managed_identity_schema.py +1 -1
  150. ory_client/models/managed_identity_schema_validation_result.py +1 -1
  151. ory_client/models/member_invite.py +1 -1
  152. ory_client/models/message.py +1 -1
  153. ory_client/models/message_dispatch.py +1 -1
  154. ory_client/models/metrics_datapoint.py +1 -1
  155. ory_client/models/money.py +1 -1
  156. ory_client/models/namespace.py +1 -1
  157. ory_client/models/needs_privileged_session_error.py +1 -1
  158. ory_client/models/normalized_project.py +1 -1
  159. ory_client/models/normalized_project_revision.py +33 -2
  160. ory_client/models/normalized_project_revision_courier_channel.py +1 -1
  161. ory_client/models/normalized_project_revision_hook.py +1 -1
  162. ory_client/models/normalized_project_revision_identity_schema.py +1 -1
  163. ory_client/models/normalized_project_revision_saml_provider.py +1 -1
  164. ory_client/models/normalized_project_revision_scim_client.py +1 -1
  165. ory_client/models/normalized_project_revision_third_party_provider.py +1 -1
  166. ory_client/models/normalized_project_revision_tokenizer_template.py +1 -1
  167. ory_client/models/o_auth2_client.py +60 -10
  168. ory_client/models/o_auth2_client_token_lifespans.py +53 -2
  169. ory_client/models/o_auth2_consent_request.py +4 -2
  170. ory_client/models/o_auth2_consent_request_open_id_connect_context.py +1 -1
  171. ory_client/models/o_auth2_consent_session.py +1 -1
  172. ory_client/models/o_auth2_consent_session_expires_at.py +1 -1
  173. ory_client/models/o_auth2_login_request.py +1 -1
  174. ory_client/models/o_auth2_logout_request.py +1 -1
  175. ory_client/models/o_auth2_redirect_to.py +1 -1
  176. ory_client/models/o_auth2_token_exchange.py +1 -1
  177. ory_client/models/oidc_configuration.py +4 -2
  178. ory_client/models/oidc_user_info.py +1 -1
  179. ory_client/models/onboarding_portal_link.py +126 -0
  180. ory_client/models/onboarding_portal_organization.py +127 -0
  181. ory_client/models/organization.py +4 -12
  182. ory_client/models/organization_body.py +1 -1
  183. ory_client/models/organization_onboarding_portal_links_response.py +109 -0
  184. ory_client/models/parse_error.py +1 -1
  185. ory_client/models/patch_identities_body.py +1 -1
  186. ory_client/models/perform_native_logout_body.py +1 -1
  187. ory_client/models/permissions_on_workspace.py +1 -1
  188. ory_client/models/plan.py +1 -1
  189. ory_client/models/plan_details.py +1 -1
  190. ory_client/models/post_check_permission_body.py +1 -1
  191. ory_client/models/post_check_permission_or_error_body.py +1 -1
  192. ory_client/models/project.py +12 -2
  193. ory_client/models/project_api_key.py +1 -1
  194. ory_client/models/project_branding.py +1 -1
  195. ory_client/models/project_branding_colors.py +1 -1
  196. ory_client/models/project_branding_theme.py +1 -1
  197. ory_client/models/project_cors.py +1 -1
  198. ory_client/models/project_events_datapoint.py +1 -1
  199. ory_client/models/project_host.py +1 -1
  200. ory_client/models/project_member.py +1 -1
  201. ory_client/models/project_metadata.py +1 -1
  202. ory_client/models/project_service_identity.py +1 -1
  203. ory_client/models/project_service_o_auth2.py +1 -1
  204. ory_client/models/project_service_permission.py +1 -1
  205. ory_client/models/project_services.py +1 -1
  206. ory_client/models/provider.py +1 -1
  207. ory_client/models/quota_usage.py +4 -4
  208. ory_client/models/recovery_code_for_identity.py +1 -1
  209. ory_client/models/recovery_flow.py +1 -1
  210. ory_client/models/recovery_flow_state.py +1 -1
  211. ory_client/models/recovery_identity_address.py +1 -1
  212. ory_client/models/recovery_link_for_identity.py +1 -1
  213. ory_client/models/registration_flow.py +1 -1
  214. ory_client/models/registration_flow_state.py +1 -1
  215. ory_client/models/reject_o_auth2_request.py +1 -1
  216. ory_client/models/relation_query.py +1 -1
  217. ory_client/models/relationship.py +1 -1
  218. ory_client/models/relationship_namespaces.py +1 -1
  219. ory_client/models/relationship_patch.py +1 -1
  220. ory_client/models/relationships.py +1 -1
  221. ory_client/models/rfc6749_error_json.py +1 -1
  222. ory_client/models/schema_patch.py +1 -1
  223. ory_client/models/self_service_flow_expired_error.py +1 -1
  224. ory_client/models/session.py +1 -1
  225. ory_client/models/session_activity_datapoint.py +1 -1
  226. ory_client/models/session_authentication_method.py +1 -1
  227. ory_client/models/session_device.py +1 -1
  228. ory_client/models/set_active_project_in_console_body.py +1 -1
  229. ory_client/models/set_custom_domain_body.py +1 -1
  230. ory_client/models/set_event_stream_body.py +1 -1
  231. ory_client/models/set_organization_from_onboarding_portal_link_body.py +121 -0
  232. ory_client/models/set_project.py +12 -2
  233. ory_client/models/set_project_branding_theme_body.py +1 -1
  234. ory_client/models/settings_flow.py +1 -1
  235. ory_client/models/settings_flow_state.py +1 -1
  236. ory_client/models/source_position.py +1 -1
  237. ory_client/models/subject_set.py +1 -1
  238. ory_client/models/subscription.py +1 -1
  239. ory_client/models/successful_code_exchange_response.py +1 -1
  240. ory_client/models/successful_native_login.py +1 -1
  241. ory_client/models/successful_native_registration.py +1 -1
  242. ory_client/models/successful_project_update.py +1 -1
  243. ory_client/models/tax_line_item.py +1 -1
  244. ory_client/models/time_interval.py +1 -1
  245. ory_client/models/token_pagination.py +1 -1
  246. ory_client/models/token_pagination_headers.py +1 -1
  247. ory_client/models/token_pagination_request_parameters.py +1 -1
  248. ory_client/models/token_pagination_response_headers.py +1 -1
  249. ory_client/models/trust_o_auth2_jwt_grant_issuer.py +1 -1
  250. ory_client/models/trusted_o_auth2_jwt_grant_issuer.py +1 -1
  251. ory_client/models/trusted_o_auth2_jwt_grant_json_web_key.py +1 -1
  252. ory_client/models/ui_container.py +1 -1
  253. ory_client/models/ui_node.py +1 -1
  254. ory_client/models/ui_node_anchor_attributes.py +3 -3
  255. ory_client/models/ui_node_attributes.py +1 -1
  256. ory_client/models/ui_node_division_attributes.py +5 -5
  257. ory_client/models/ui_node_image_attributes.py +3 -3
  258. ory_client/models/ui_node_input_attributes.py +6 -6
  259. ory_client/models/ui_node_meta.py +1 -1
  260. ory_client/models/ui_node_script_attributes.py +3 -3
  261. ory_client/models/ui_node_text_attributes.py +3 -3
  262. ory_client/models/ui_text.py +1 -1
  263. ory_client/models/update_fedcm_flow_body.py +1 -1
  264. ory_client/models/update_identity_body.py +1 -1
  265. ory_client/models/update_login_flow_body.py +1 -1
  266. ory_client/models/update_login_flow_with_code_method.py +1 -1
  267. ory_client/models/update_login_flow_with_identifier_first_method.py +1 -1
  268. ory_client/models/update_login_flow_with_lookup_secret_method.py +1 -1
  269. ory_client/models/update_login_flow_with_oidc_method.py +1 -1
  270. ory_client/models/update_login_flow_with_passkey_method.py +1 -1
  271. ory_client/models/update_login_flow_with_password_method.py +1 -1
  272. ory_client/models/update_login_flow_with_saml_method.py +1 -1
  273. ory_client/models/update_login_flow_with_totp_method.py +1 -1
  274. ory_client/models/update_login_flow_with_web_authn_method.py +1 -1
  275. ory_client/models/update_organization_onboarding_portal_link_body.py +104 -0
  276. ory_client/models/update_recovery_flow_body.py +1 -1
  277. ory_client/models/update_recovery_flow_with_code_method.py +1 -1
  278. ory_client/models/update_recovery_flow_with_link_method.py +1 -1
  279. ory_client/models/update_registration_flow_body.py +1 -1
  280. ory_client/models/update_registration_flow_with_code_method.py +1 -1
  281. ory_client/models/update_registration_flow_with_oidc_method.py +1 -1
  282. ory_client/models/update_registration_flow_with_passkey_method.py +1 -1
  283. ory_client/models/update_registration_flow_with_password_method.py +1 -1
  284. ory_client/models/update_registration_flow_with_profile_method.py +1 -1
  285. ory_client/models/update_registration_flow_with_saml_method.py +1 -1
  286. ory_client/models/update_registration_flow_with_web_authn_method.py +1 -1
  287. ory_client/models/update_settings_flow_body.py +1 -1
  288. ory_client/models/update_settings_flow_with_lookup_method.py +1 -1
  289. ory_client/models/update_settings_flow_with_oidc_method.py +1 -1
  290. ory_client/models/update_settings_flow_with_passkey_method.py +1 -1
  291. ory_client/models/update_settings_flow_with_password_method.py +1 -1
  292. ory_client/models/update_settings_flow_with_profile_method.py +1 -1
  293. ory_client/models/update_settings_flow_with_saml_method.py +1 -1
  294. ory_client/models/update_settings_flow_with_totp_method.py +1 -1
  295. ory_client/models/update_settings_flow_with_web_authn_method.py +1 -1
  296. ory_client/models/update_subscription_body.py +1 -1
  297. ory_client/models/update_verification_flow_body.py +1 -1
  298. ory_client/models/update_verification_flow_with_code_method.py +1 -1
  299. ory_client/models/update_verification_flow_with_link_method.py +1 -1
  300. ory_client/models/update_workspace_body.py +1 -1
  301. ory_client/models/usage.py +1 -1
  302. ory_client/models/verifiable_credential_priming_response.py +1 -1
  303. ory_client/models/verifiable_credential_proof.py +1 -1
  304. ory_client/models/verifiable_credential_response.py +1 -1
  305. ory_client/models/verifiable_identity_address.py +1 -1
  306. ory_client/models/verification_flow.py +1 -1
  307. ory_client/models/verification_flow_state.py +1 -1
  308. ory_client/models/verify_user_code_request.py +118 -0
  309. ory_client/models/version.py +1 -1
  310. ory_client/models/warning.py +1 -1
  311. ory_client/models/workspace.py +1 -1
  312. ory_client/models/workspace_api_key.py +1 -1
  313. ory_client/rest.py +1 -1
  314. {ory_client-1.20.10.dist-info → ory_client-1.20.22.dist-info}/METADATA +1 -1
  315. ory_client-1.20.22.dist-info/RECORD +321 -0
  316. ory_client-1.20.10.dist-info/RECORD +0 -310
  317. {ory_client-1.20.10.dist-info → ory_client-1.20.22.dist-info}/LICENSE +0 -0
  318. {ory_client-1.20.10.dist-info → ory_client-1.20.22.dist-info}/WHEEL +0 -0
  319. {ory_client-1.20.10.dist-info → ory_client-1.20.22.dist-info}/top_level.txt +0 -0
@@ -5,7 +5,7 @@
5
5
 
6
6
  # Introduction 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. ## SDKs This document describes the APIs available in the Ory Network. The APIs are available as SDKs for the following languages: | Language | Download SDK | Documentation | | -------------- | ---------------------------------------------------------------- | ------------------------------------------------------------------------------------ | | Dart | [pub.dev](https://pub.dev/packages/ory_client) | [README](https://github.com/ory/sdk/blob/master/clients/client/dart/README.md) | | .NET | [nuget.org](https://www.nuget.org/packages/Ory.Client/) | [README](https://github.com/ory/sdk/blob/master/clients/client/dotnet/README.md) | | Elixir | [hex.pm](https://hex.pm/packages/ory_client) | [README](https://github.com/ory/sdk/blob/master/clients/client/elixir/README.md) | | Go | [github.com](https://github.com/ory/client-go) | [README](https://github.com/ory/sdk/blob/master/clients/client/go/README.md) | | Java | [maven.org](https://search.maven.org/artifact/sh.ory/ory-client) | [README](https://github.com/ory/sdk/blob/master/clients/client/java/README.md) | | JavaScript | [npmjs.com](https://www.npmjs.com/package/@ory/client) | [README](https://github.com/ory/sdk/blob/master/clients/client/typescript/README.md) | | JavaScript (With fetch) | [npmjs.com](https://www.npmjs.com/package/@ory/client-fetch) | [README](https://github.com/ory/sdk/blob/master/clients/client/typescript-fetch/README.md) | | PHP | [packagist.org](https://packagist.org/packages/ory/client) | [README](https://github.com/ory/sdk/blob/master/clients/client/php/README.md) | | Python | [pypi.org](https://pypi.org/project/ory-client/) | [README](https://github.com/ory/sdk/blob/master/clients/client/python/README.md) | | Ruby | [rubygems.org](https://rubygems.org/gems/ory-client) | [README](https://github.com/ory/sdk/blob/master/clients/client/ruby/README.md) | | Rust | [crates.io](https://crates.io/crates/ory-client) | [README](https://github.com/ory/sdk/blob/master/clients/client/rust/README.md) |
7
7
 
8
- The version of the OpenAPI document: v1.20.10
8
+ The version of the OpenAPI document: v1.20.22
9
9
  Contact: support@ory.sh
10
10
  Generated by OpenAPI Generator (https://openapi-generator.tech)
11
11
 
@@ -32,6 +32,9 @@ class OAuth2ClientTokenLifespans(BaseModel):
32
32
  authorization_code_grant_id_token_lifespan: Optional[Annotated[str, Field(strict=True)]] = None
33
33
  authorization_code_grant_refresh_token_lifespan: Optional[Annotated[str, Field(strict=True)]] = None
34
34
  client_credentials_grant_access_token_lifespan: Optional[Annotated[str, Field(strict=True)]] = None
35
+ device_authorization_grant_access_token_lifespan: Optional[Annotated[str, Field(strict=True)]] = None
36
+ device_authorization_grant_id_token_lifespan: Optional[Annotated[str, Field(strict=True)]] = None
37
+ device_authorization_grant_refresh_token_lifespan: Optional[Annotated[str, Field(strict=True)]] = None
35
38
  implicit_grant_access_token_lifespan: Optional[Annotated[str, Field(strict=True)]] = None
36
39
  implicit_grant_id_token_lifespan: Optional[Annotated[str, Field(strict=True)]] = None
37
40
  jwt_bearer_grant_access_token_lifespan: Optional[Annotated[str, Field(strict=True)]] = None
@@ -39,7 +42,7 @@ class OAuth2ClientTokenLifespans(BaseModel):
39
42
  refresh_token_grant_id_token_lifespan: Optional[Annotated[str, Field(strict=True)]] = None
40
43
  refresh_token_grant_refresh_token_lifespan: Optional[Annotated[str, Field(strict=True)]] = None
41
44
  additional_properties: Dict[str, Any] = {}
42
- __properties: ClassVar[List[str]] = ["authorization_code_grant_access_token_lifespan", "authorization_code_grant_id_token_lifespan", "authorization_code_grant_refresh_token_lifespan", "client_credentials_grant_access_token_lifespan", "implicit_grant_access_token_lifespan", "implicit_grant_id_token_lifespan", "jwt_bearer_grant_access_token_lifespan", "refresh_token_grant_access_token_lifespan", "refresh_token_grant_id_token_lifespan", "refresh_token_grant_refresh_token_lifespan"]
45
+ __properties: ClassVar[List[str]] = ["authorization_code_grant_access_token_lifespan", "authorization_code_grant_id_token_lifespan", "authorization_code_grant_refresh_token_lifespan", "client_credentials_grant_access_token_lifespan", "device_authorization_grant_access_token_lifespan", "device_authorization_grant_id_token_lifespan", "device_authorization_grant_refresh_token_lifespan", "implicit_grant_access_token_lifespan", "implicit_grant_id_token_lifespan", "jwt_bearer_grant_access_token_lifespan", "refresh_token_grant_access_token_lifespan", "refresh_token_grant_id_token_lifespan", "refresh_token_grant_refresh_token_lifespan"]
43
46
 
44
47
  @field_validator('authorization_code_grant_access_token_lifespan')
45
48
  def authorization_code_grant_access_token_lifespan_validate_regular_expression(cls, value):
@@ -81,6 +84,36 @@ class OAuth2ClientTokenLifespans(BaseModel):
81
84
  raise ValueError(r"must validate the regular expression /^[0-9]+(ns|us|ms|s|m|h)$/")
82
85
  return value
83
86
 
87
+ @field_validator('device_authorization_grant_access_token_lifespan')
88
+ def device_authorization_grant_access_token_lifespan_validate_regular_expression(cls, value):
89
+ """Validates the regular expression"""
90
+ if value is None:
91
+ return value
92
+
93
+ if not re.match(r"^[0-9]+(ns|us|ms|s|m|h)$", value):
94
+ raise ValueError(r"must validate the regular expression /^[0-9]+(ns|us|ms|s|m|h)$/")
95
+ return value
96
+
97
+ @field_validator('device_authorization_grant_id_token_lifespan')
98
+ def device_authorization_grant_id_token_lifespan_validate_regular_expression(cls, value):
99
+ """Validates the regular expression"""
100
+ if value is None:
101
+ return value
102
+
103
+ if not re.match(r"^[0-9]+(ns|us|ms|s|m|h)$", value):
104
+ raise ValueError(r"must validate the regular expression /^[0-9]+(ns|us|ms|s|m|h)$/")
105
+ return value
106
+
107
+ @field_validator('device_authorization_grant_refresh_token_lifespan')
108
+ def device_authorization_grant_refresh_token_lifespan_validate_regular_expression(cls, value):
109
+ """Validates the regular expression"""
110
+ if value is None:
111
+ return value
112
+
113
+ if not re.match(r"^[0-9]+(ns|us|ms|s|m|h)$", value):
114
+ raise ValueError(r"must validate the regular expression /^[0-9]+(ns|us|ms|s|m|h)$/")
115
+ return value
116
+
84
117
  @field_validator('implicit_grant_access_token_lifespan')
85
118
  def implicit_grant_access_token_lifespan_validate_regular_expression(cls, value):
86
119
  """Validates the regular expression"""
@@ -207,6 +240,21 @@ class OAuth2ClientTokenLifespans(BaseModel):
207
240
  if self.client_credentials_grant_access_token_lifespan is None and "client_credentials_grant_access_token_lifespan" in self.model_fields_set:
208
241
  _dict['client_credentials_grant_access_token_lifespan'] = None
209
242
 
243
+ # set to None if device_authorization_grant_access_token_lifespan (nullable) is None
244
+ # and model_fields_set contains the field
245
+ if self.device_authorization_grant_access_token_lifespan is None and "device_authorization_grant_access_token_lifespan" in self.model_fields_set:
246
+ _dict['device_authorization_grant_access_token_lifespan'] = None
247
+
248
+ # set to None if device_authorization_grant_id_token_lifespan (nullable) is None
249
+ # and model_fields_set contains the field
250
+ if self.device_authorization_grant_id_token_lifespan is None and "device_authorization_grant_id_token_lifespan" in self.model_fields_set:
251
+ _dict['device_authorization_grant_id_token_lifespan'] = None
252
+
253
+ # set to None if device_authorization_grant_refresh_token_lifespan (nullable) is None
254
+ # and model_fields_set contains the field
255
+ if self.device_authorization_grant_refresh_token_lifespan is None and "device_authorization_grant_refresh_token_lifespan" in self.model_fields_set:
256
+ _dict['device_authorization_grant_refresh_token_lifespan'] = None
257
+
210
258
  # set to None if implicit_grant_access_token_lifespan (nullable) is None
211
259
  # and model_fields_set contains the field
212
260
  if self.implicit_grant_access_token_lifespan is None and "implicit_grant_access_token_lifespan" in self.model_fields_set:
@@ -253,6 +301,9 @@ class OAuth2ClientTokenLifespans(BaseModel):
253
301
  "authorization_code_grant_id_token_lifespan": obj.get("authorization_code_grant_id_token_lifespan"),
254
302
  "authorization_code_grant_refresh_token_lifespan": obj.get("authorization_code_grant_refresh_token_lifespan"),
255
303
  "client_credentials_grant_access_token_lifespan": obj.get("client_credentials_grant_access_token_lifespan"),
304
+ "device_authorization_grant_access_token_lifespan": obj.get("device_authorization_grant_access_token_lifespan"),
305
+ "device_authorization_grant_id_token_lifespan": obj.get("device_authorization_grant_id_token_lifespan"),
306
+ "device_authorization_grant_refresh_token_lifespan": obj.get("device_authorization_grant_refresh_token_lifespan"),
256
307
  "implicit_grant_access_token_lifespan": obj.get("implicit_grant_access_token_lifespan"),
257
308
  "implicit_grant_id_token_lifespan": obj.get("implicit_grant_id_token_lifespan"),
258
309
  "jwt_bearer_grant_access_token_lifespan": obj.get("jwt_bearer_grant_access_token_lifespan"),
@@ -5,7 +5,7 @@
5
5
 
6
6
  # Introduction 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. ## SDKs This document describes the APIs available in the Ory Network. The APIs are available as SDKs for the following languages: | Language | Download SDK | Documentation | | -------------- | ---------------------------------------------------------------- | ------------------------------------------------------------------------------------ | | Dart | [pub.dev](https://pub.dev/packages/ory_client) | [README](https://github.com/ory/sdk/blob/master/clients/client/dart/README.md) | | .NET | [nuget.org](https://www.nuget.org/packages/Ory.Client/) | [README](https://github.com/ory/sdk/blob/master/clients/client/dotnet/README.md) | | Elixir | [hex.pm](https://hex.pm/packages/ory_client) | [README](https://github.com/ory/sdk/blob/master/clients/client/elixir/README.md) | | Go | [github.com](https://github.com/ory/client-go) | [README](https://github.com/ory/sdk/blob/master/clients/client/go/README.md) | | Java | [maven.org](https://search.maven.org/artifact/sh.ory/ory-client) | [README](https://github.com/ory/sdk/blob/master/clients/client/java/README.md) | | JavaScript | [npmjs.com](https://www.npmjs.com/package/@ory/client) | [README](https://github.com/ory/sdk/blob/master/clients/client/typescript/README.md) | | JavaScript (With fetch) | [npmjs.com](https://www.npmjs.com/package/@ory/client-fetch) | [README](https://github.com/ory/sdk/blob/master/clients/client/typescript-fetch/README.md) | | PHP | [packagist.org](https://packagist.org/packages/ory/client) | [README](https://github.com/ory/sdk/blob/master/clients/client/php/README.md) | | Python | [pypi.org](https://pypi.org/project/ory-client/) | [README](https://github.com/ory/sdk/blob/master/clients/client/python/README.md) | | Ruby | [rubygems.org](https://rubygems.org/gems/ory-client) | [README](https://github.com/ory/sdk/blob/master/clients/client/ruby/README.md) | | Rust | [crates.io](https://crates.io/crates/ory-client) | [README](https://github.com/ory/sdk/blob/master/clients/client/rust/README.md) |
7
7
 
8
- The version of the OpenAPI document: v1.20.10
8
+ The version of the OpenAPI document: v1.20.22
9
9
  Contact: support@ory.sh
10
10
  Generated by OpenAPI Generator (https://openapi-generator.tech)
11
11
 
@@ -35,6 +35,7 @@ class OAuth2ConsentRequest(BaseModel):
35
35
  client: Optional[OAuth2Client] = None
36
36
  consent_request_id: Optional[StrictStr] = Field(default=None, description="ConsentRequestID is the ID of the consent request.")
37
37
  context: Optional[Dict[str, Any]] = None
38
+ device_challenge_id: Optional[StrictStr] = Field(default=None, description="DeviceChallenge is the device challenge this consent challenge belongs to, if this flow was initiated by a device.")
38
39
  login_challenge: Optional[StrictStr] = Field(default=None, description="LoginChallenge is the login challenge this consent challenge belongs to. It can be used to associate a login and consent request in the login & consent app.")
39
40
  login_session_id: Optional[StrictStr] = Field(default=None, description="LoginSessionID is the login session ID. If the user-agent reuses a login session (via cookie / remember flag) this ID will remain the same. If the user-agent did not have an existing authentication session (e.g. remember is false) this will be a new random value. This value is used as the \"sid\" parameter in the ID Token and in OIDC Front-/Back- channel logout. It's value can generally be used to associate consecutive login requests by a certain user.")
40
41
  oidc_context: Optional[OAuth2ConsentRequestOpenIDConnectContext] = None
@@ -44,7 +45,7 @@ class OAuth2ConsentRequest(BaseModel):
44
45
  skip: Optional[StrictBool] = Field(default=None, description="Skip, if true, implies that the client has requested the same scopes from the same user previously. If true, you must not ask the user to grant the requested scopes. You must however either allow or deny the consent request using the usual API call.")
45
46
  subject: Optional[StrictStr] = Field(default=None, description="Subject is the user ID of the end-user that authenticated. Now, that end user needs to grant or deny the scope requested by the OAuth 2.0 client.")
46
47
  additional_properties: Dict[str, Any] = {}
47
- __properties: ClassVar[List[str]] = ["acr", "amr", "challenge", "client", "consent_request_id", "context", "login_challenge", "login_session_id", "oidc_context", "request_url", "requested_access_token_audience", "requested_scope", "skip", "subject"]
48
+ __properties: ClassVar[List[str]] = ["acr", "amr", "challenge", "client", "consent_request_id", "context", "device_challenge_id", "login_challenge", "login_session_id", "oidc_context", "request_url", "requested_access_token_audience", "requested_scope", "skip", "subject"]
48
49
 
49
50
  model_config = ConfigDict(
50
51
  populate_by_name=True,
@@ -116,6 +117,7 @@ class OAuth2ConsentRequest(BaseModel):
116
117
  "client": OAuth2Client.from_dict(obj["client"]) if obj.get("client") is not None else None,
117
118
  "consent_request_id": obj.get("consent_request_id"),
118
119
  "context": obj.get("context"),
120
+ "device_challenge_id": obj.get("device_challenge_id"),
119
121
  "login_challenge": obj.get("login_challenge"),
120
122
  "login_session_id": obj.get("login_session_id"),
121
123
  "oidc_context": OAuth2ConsentRequestOpenIDConnectContext.from_dict(obj["oidc_context"]) if obj.get("oidc_context") is not None else None,
@@ -5,7 +5,7 @@
5
5
 
6
6
  # Introduction 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. ## SDKs This document describes the APIs available in the Ory Network. The APIs are available as SDKs for the following languages: | Language | Download SDK | Documentation | | -------------- | ---------------------------------------------------------------- | ------------------------------------------------------------------------------------ | | Dart | [pub.dev](https://pub.dev/packages/ory_client) | [README](https://github.com/ory/sdk/blob/master/clients/client/dart/README.md) | | .NET | [nuget.org](https://www.nuget.org/packages/Ory.Client/) | [README](https://github.com/ory/sdk/blob/master/clients/client/dotnet/README.md) | | Elixir | [hex.pm](https://hex.pm/packages/ory_client) | [README](https://github.com/ory/sdk/blob/master/clients/client/elixir/README.md) | | Go | [github.com](https://github.com/ory/client-go) | [README](https://github.com/ory/sdk/blob/master/clients/client/go/README.md) | | Java | [maven.org](https://search.maven.org/artifact/sh.ory/ory-client) | [README](https://github.com/ory/sdk/blob/master/clients/client/java/README.md) | | JavaScript | [npmjs.com](https://www.npmjs.com/package/@ory/client) | [README](https://github.com/ory/sdk/blob/master/clients/client/typescript/README.md) | | JavaScript (With fetch) | [npmjs.com](https://www.npmjs.com/package/@ory/client-fetch) | [README](https://github.com/ory/sdk/blob/master/clients/client/typescript-fetch/README.md) | | PHP | [packagist.org](https://packagist.org/packages/ory/client) | [README](https://github.com/ory/sdk/blob/master/clients/client/php/README.md) | | Python | [pypi.org](https://pypi.org/project/ory-client/) | [README](https://github.com/ory/sdk/blob/master/clients/client/python/README.md) | | Ruby | [rubygems.org](https://rubygems.org/gems/ory-client) | [README](https://github.com/ory/sdk/blob/master/clients/client/ruby/README.md) | | Rust | [crates.io](https://crates.io/crates/ory-client) | [README](https://github.com/ory/sdk/blob/master/clients/client/rust/README.md) |
7
7
 
8
- The version of the OpenAPI document: v1.20.10
8
+ The version of the OpenAPI document: v1.20.22
9
9
  Contact: support@ory.sh
10
10
  Generated by OpenAPI Generator (https://openapi-generator.tech)
11
11
 
@@ -5,7 +5,7 @@
5
5
 
6
6
  # Introduction 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. ## SDKs This document describes the APIs available in the Ory Network. The APIs are available as SDKs for the following languages: | Language | Download SDK | Documentation | | -------------- | ---------------------------------------------------------------- | ------------------------------------------------------------------------------------ | | Dart | [pub.dev](https://pub.dev/packages/ory_client) | [README](https://github.com/ory/sdk/blob/master/clients/client/dart/README.md) | | .NET | [nuget.org](https://www.nuget.org/packages/Ory.Client/) | [README](https://github.com/ory/sdk/blob/master/clients/client/dotnet/README.md) | | Elixir | [hex.pm](https://hex.pm/packages/ory_client) | [README](https://github.com/ory/sdk/blob/master/clients/client/elixir/README.md) | | Go | [github.com](https://github.com/ory/client-go) | [README](https://github.com/ory/sdk/blob/master/clients/client/go/README.md) | | Java | [maven.org](https://search.maven.org/artifact/sh.ory/ory-client) | [README](https://github.com/ory/sdk/blob/master/clients/client/java/README.md) | | JavaScript | [npmjs.com](https://www.npmjs.com/package/@ory/client) | [README](https://github.com/ory/sdk/blob/master/clients/client/typescript/README.md) | | JavaScript (With fetch) | [npmjs.com](https://www.npmjs.com/package/@ory/client-fetch) | [README](https://github.com/ory/sdk/blob/master/clients/client/typescript-fetch/README.md) | | PHP | [packagist.org](https://packagist.org/packages/ory/client) | [README](https://github.com/ory/sdk/blob/master/clients/client/php/README.md) | | Python | [pypi.org](https://pypi.org/project/ory-client/) | [README](https://github.com/ory/sdk/blob/master/clients/client/python/README.md) | | Ruby | [rubygems.org](https://rubygems.org/gems/ory-client) | [README](https://github.com/ory/sdk/blob/master/clients/client/ruby/README.md) | | Rust | [crates.io](https://crates.io/crates/ory-client) | [README](https://github.com/ory/sdk/blob/master/clients/client/rust/README.md) |
7
7
 
8
- The version of the OpenAPI document: v1.20.10
8
+ The version of the OpenAPI document: v1.20.22
9
9
  Contact: support@ory.sh
10
10
  Generated by OpenAPI Generator (https://openapi-generator.tech)
11
11
 
@@ -5,7 +5,7 @@
5
5
 
6
6
  # Introduction 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. ## SDKs This document describes the APIs available in the Ory Network. The APIs are available as SDKs for the following languages: | Language | Download SDK | Documentation | | -------------- | ---------------------------------------------------------------- | ------------------------------------------------------------------------------------ | | Dart | [pub.dev](https://pub.dev/packages/ory_client) | [README](https://github.com/ory/sdk/blob/master/clients/client/dart/README.md) | | .NET | [nuget.org](https://www.nuget.org/packages/Ory.Client/) | [README](https://github.com/ory/sdk/blob/master/clients/client/dotnet/README.md) | | Elixir | [hex.pm](https://hex.pm/packages/ory_client) | [README](https://github.com/ory/sdk/blob/master/clients/client/elixir/README.md) | | Go | [github.com](https://github.com/ory/client-go) | [README](https://github.com/ory/sdk/blob/master/clients/client/go/README.md) | | Java | [maven.org](https://search.maven.org/artifact/sh.ory/ory-client) | [README](https://github.com/ory/sdk/blob/master/clients/client/java/README.md) | | JavaScript | [npmjs.com](https://www.npmjs.com/package/@ory/client) | [README](https://github.com/ory/sdk/blob/master/clients/client/typescript/README.md) | | JavaScript (With fetch) | [npmjs.com](https://www.npmjs.com/package/@ory/client-fetch) | [README](https://github.com/ory/sdk/blob/master/clients/client/typescript-fetch/README.md) | | PHP | [packagist.org](https://packagist.org/packages/ory/client) | [README](https://github.com/ory/sdk/blob/master/clients/client/php/README.md) | | Python | [pypi.org](https://pypi.org/project/ory-client/) | [README](https://github.com/ory/sdk/blob/master/clients/client/python/README.md) | | Ruby | [rubygems.org](https://rubygems.org/gems/ory-client) | [README](https://github.com/ory/sdk/blob/master/clients/client/ruby/README.md) | | Rust | [crates.io](https://crates.io/crates/ory-client) | [README](https://github.com/ory/sdk/blob/master/clients/client/rust/README.md) |
7
7
 
8
- The version of the OpenAPI document: v1.20.10
8
+ The version of the OpenAPI document: v1.20.22
9
9
  Contact: support@ory.sh
10
10
  Generated by OpenAPI Generator (https://openapi-generator.tech)
11
11
 
@@ -5,7 +5,7 @@
5
5
 
6
6
  # Introduction 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. ## SDKs This document describes the APIs available in the Ory Network. The APIs are available as SDKs for the following languages: | Language | Download SDK | Documentation | | -------------- | ---------------------------------------------------------------- | ------------------------------------------------------------------------------------ | | Dart | [pub.dev](https://pub.dev/packages/ory_client) | [README](https://github.com/ory/sdk/blob/master/clients/client/dart/README.md) | | .NET | [nuget.org](https://www.nuget.org/packages/Ory.Client/) | [README](https://github.com/ory/sdk/blob/master/clients/client/dotnet/README.md) | | Elixir | [hex.pm](https://hex.pm/packages/ory_client) | [README](https://github.com/ory/sdk/blob/master/clients/client/elixir/README.md) | | Go | [github.com](https://github.com/ory/client-go) | [README](https://github.com/ory/sdk/blob/master/clients/client/go/README.md) | | Java | [maven.org](https://search.maven.org/artifact/sh.ory/ory-client) | [README](https://github.com/ory/sdk/blob/master/clients/client/java/README.md) | | JavaScript | [npmjs.com](https://www.npmjs.com/package/@ory/client) | [README](https://github.com/ory/sdk/blob/master/clients/client/typescript/README.md) | | JavaScript (With fetch) | [npmjs.com](https://www.npmjs.com/package/@ory/client-fetch) | [README](https://github.com/ory/sdk/blob/master/clients/client/typescript-fetch/README.md) | | PHP | [packagist.org](https://packagist.org/packages/ory/client) | [README](https://github.com/ory/sdk/blob/master/clients/client/php/README.md) | | Python | [pypi.org](https://pypi.org/project/ory-client/) | [README](https://github.com/ory/sdk/blob/master/clients/client/python/README.md) | | Ruby | [rubygems.org](https://rubygems.org/gems/ory-client) | [README](https://github.com/ory/sdk/blob/master/clients/client/ruby/README.md) | | Rust | [crates.io](https://crates.io/crates/ory-client) | [README](https://github.com/ory/sdk/blob/master/clients/client/rust/README.md) |
7
7
 
8
- The version of the OpenAPI document: v1.20.10
8
+ The version of the OpenAPI document: v1.20.22
9
9
  Contact: support@ory.sh
10
10
  Generated by OpenAPI Generator (https://openapi-generator.tech)
11
11
 
@@ -5,7 +5,7 @@
5
5
 
6
6
  # Introduction 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. ## SDKs This document describes the APIs available in the Ory Network. The APIs are available as SDKs for the following languages: | Language | Download SDK | Documentation | | -------------- | ---------------------------------------------------------------- | ------------------------------------------------------------------------------------ | | Dart | [pub.dev](https://pub.dev/packages/ory_client) | [README](https://github.com/ory/sdk/blob/master/clients/client/dart/README.md) | | .NET | [nuget.org](https://www.nuget.org/packages/Ory.Client/) | [README](https://github.com/ory/sdk/blob/master/clients/client/dotnet/README.md) | | Elixir | [hex.pm](https://hex.pm/packages/ory_client) | [README](https://github.com/ory/sdk/blob/master/clients/client/elixir/README.md) | | Go | [github.com](https://github.com/ory/client-go) | [README](https://github.com/ory/sdk/blob/master/clients/client/go/README.md) | | Java | [maven.org](https://search.maven.org/artifact/sh.ory/ory-client) | [README](https://github.com/ory/sdk/blob/master/clients/client/java/README.md) | | JavaScript | [npmjs.com](https://www.npmjs.com/package/@ory/client) | [README](https://github.com/ory/sdk/blob/master/clients/client/typescript/README.md) | | JavaScript (With fetch) | [npmjs.com](https://www.npmjs.com/package/@ory/client-fetch) | [README](https://github.com/ory/sdk/blob/master/clients/client/typescript-fetch/README.md) | | PHP | [packagist.org](https://packagist.org/packages/ory/client) | [README](https://github.com/ory/sdk/blob/master/clients/client/php/README.md) | | Python | [pypi.org](https://pypi.org/project/ory-client/) | [README](https://github.com/ory/sdk/blob/master/clients/client/python/README.md) | | Ruby | [rubygems.org](https://rubygems.org/gems/ory-client) | [README](https://github.com/ory/sdk/blob/master/clients/client/ruby/README.md) | | Rust | [crates.io](https://crates.io/crates/ory-client) | [README](https://github.com/ory/sdk/blob/master/clients/client/rust/README.md) |
7
7
 
8
- The version of the OpenAPI document: v1.20.10
8
+ The version of the OpenAPI document: v1.20.22
9
9
  Contact: support@ory.sh
10
10
  Generated by OpenAPI Generator (https://openapi-generator.tech)
11
11
 
@@ -5,7 +5,7 @@
5
5
 
6
6
  # Introduction 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. ## SDKs This document describes the APIs available in the Ory Network. The APIs are available as SDKs for the following languages: | Language | Download SDK | Documentation | | -------------- | ---------------------------------------------------------------- | ------------------------------------------------------------------------------------ | | Dart | [pub.dev](https://pub.dev/packages/ory_client) | [README](https://github.com/ory/sdk/blob/master/clients/client/dart/README.md) | | .NET | [nuget.org](https://www.nuget.org/packages/Ory.Client/) | [README](https://github.com/ory/sdk/blob/master/clients/client/dotnet/README.md) | | Elixir | [hex.pm](https://hex.pm/packages/ory_client) | [README](https://github.com/ory/sdk/blob/master/clients/client/elixir/README.md) | | Go | [github.com](https://github.com/ory/client-go) | [README](https://github.com/ory/sdk/blob/master/clients/client/go/README.md) | | Java | [maven.org](https://search.maven.org/artifact/sh.ory/ory-client) | [README](https://github.com/ory/sdk/blob/master/clients/client/java/README.md) | | JavaScript | [npmjs.com](https://www.npmjs.com/package/@ory/client) | [README](https://github.com/ory/sdk/blob/master/clients/client/typescript/README.md) | | JavaScript (With fetch) | [npmjs.com](https://www.npmjs.com/package/@ory/client-fetch) | [README](https://github.com/ory/sdk/blob/master/clients/client/typescript-fetch/README.md) | | PHP | [packagist.org](https://packagist.org/packages/ory/client) | [README](https://github.com/ory/sdk/blob/master/clients/client/php/README.md) | | Python | [pypi.org](https://pypi.org/project/ory-client/) | [README](https://github.com/ory/sdk/blob/master/clients/client/python/README.md) | | Ruby | [rubygems.org](https://rubygems.org/gems/ory-client) | [README](https://github.com/ory/sdk/blob/master/clients/client/ruby/README.md) | | Rust | [crates.io](https://crates.io/crates/ory-client) | [README](https://github.com/ory/sdk/blob/master/clients/client/rust/README.md) |
7
7
 
8
- The version of the OpenAPI document: v1.20.10
8
+ The version of the OpenAPI document: v1.20.22
9
9
  Contact: support@ory.sh
10
10
  Generated by OpenAPI Generator (https://openapi-generator.tech)
11
11
 
@@ -5,7 +5,7 @@
5
5
 
6
6
  # Introduction 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. ## SDKs This document describes the APIs available in the Ory Network. The APIs are available as SDKs for the following languages: | Language | Download SDK | Documentation | | -------------- | ---------------------------------------------------------------- | ------------------------------------------------------------------------------------ | | Dart | [pub.dev](https://pub.dev/packages/ory_client) | [README](https://github.com/ory/sdk/blob/master/clients/client/dart/README.md) | | .NET | [nuget.org](https://www.nuget.org/packages/Ory.Client/) | [README](https://github.com/ory/sdk/blob/master/clients/client/dotnet/README.md) | | Elixir | [hex.pm](https://hex.pm/packages/ory_client) | [README](https://github.com/ory/sdk/blob/master/clients/client/elixir/README.md) | | Go | [github.com](https://github.com/ory/client-go) | [README](https://github.com/ory/sdk/blob/master/clients/client/go/README.md) | | Java | [maven.org](https://search.maven.org/artifact/sh.ory/ory-client) | [README](https://github.com/ory/sdk/blob/master/clients/client/java/README.md) | | JavaScript | [npmjs.com](https://www.npmjs.com/package/@ory/client) | [README](https://github.com/ory/sdk/blob/master/clients/client/typescript/README.md) | | JavaScript (With fetch) | [npmjs.com](https://www.npmjs.com/package/@ory/client-fetch) | [README](https://github.com/ory/sdk/blob/master/clients/client/typescript-fetch/README.md) | | PHP | [packagist.org](https://packagist.org/packages/ory/client) | [README](https://github.com/ory/sdk/blob/master/clients/client/php/README.md) | | Python | [pypi.org](https://pypi.org/project/ory-client/) | [README](https://github.com/ory/sdk/blob/master/clients/client/python/README.md) | | Ruby | [rubygems.org](https://rubygems.org/gems/ory-client) | [README](https://github.com/ory/sdk/blob/master/clients/client/ruby/README.md) | | Rust | [crates.io](https://crates.io/crates/ory-client) | [README](https://github.com/ory/sdk/blob/master/clients/client/rust/README.md) |
7
7
 
8
- The version of the OpenAPI document: v1.20.10
8
+ The version of the OpenAPI document: v1.20.22
9
9
  Contact: support@ory.sh
10
10
  Generated by OpenAPI Generator (https://openapi-generator.tech)
11
11
 
@@ -5,7 +5,7 @@
5
5
 
6
6
  # Introduction 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. ## SDKs This document describes the APIs available in the Ory Network. The APIs are available as SDKs for the following languages: | Language | Download SDK | Documentation | | -------------- | ---------------------------------------------------------------- | ------------------------------------------------------------------------------------ | | Dart | [pub.dev](https://pub.dev/packages/ory_client) | [README](https://github.com/ory/sdk/blob/master/clients/client/dart/README.md) | | .NET | [nuget.org](https://www.nuget.org/packages/Ory.Client/) | [README](https://github.com/ory/sdk/blob/master/clients/client/dotnet/README.md) | | Elixir | [hex.pm](https://hex.pm/packages/ory_client) | [README](https://github.com/ory/sdk/blob/master/clients/client/elixir/README.md) | | Go | [github.com](https://github.com/ory/client-go) | [README](https://github.com/ory/sdk/blob/master/clients/client/go/README.md) | | Java | [maven.org](https://search.maven.org/artifact/sh.ory/ory-client) | [README](https://github.com/ory/sdk/blob/master/clients/client/java/README.md) | | JavaScript | [npmjs.com](https://www.npmjs.com/package/@ory/client) | [README](https://github.com/ory/sdk/blob/master/clients/client/typescript/README.md) | | JavaScript (With fetch) | [npmjs.com](https://www.npmjs.com/package/@ory/client-fetch) | [README](https://github.com/ory/sdk/blob/master/clients/client/typescript-fetch/README.md) | | PHP | [packagist.org](https://packagist.org/packages/ory/client) | [README](https://github.com/ory/sdk/blob/master/clients/client/php/README.md) | | Python | [pypi.org](https://pypi.org/project/ory-client/) | [README](https://github.com/ory/sdk/blob/master/clients/client/python/README.md) | | Ruby | [rubygems.org](https://rubygems.org/gems/ory-client) | [README](https://github.com/ory/sdk/blob/master/clients/client/ruby/README.md) | | Rust | [crates.io](https://crates.io/crates/ory-client) | [README](https://github.com/ory/sdk/blob/master/clients/client/rust/README.md) |
7
7
 
8
- The version of the OpenAPI document: v1.20.10
8
+ The version of the OpenAPI document: v1.20.22
9
9
  Contact: support@ory.sh
10
10
  Generated by OpenAPI Generator (https://openapi-generator.tech)
11
11
 
@@ -36,6 +36,7 @@ class OidcConfiguration(BaseModel):
36
36
  code_challenge_methods_supported: Optional[List[StrictStr]] = Field(default=None, description="OAuth 2.0 PKCE Supported Code Challenge Methods JSON array containing a list of Proof Key for Code Exchange (PKCE) [RFC7636] code challenge methods supported by this authorization server.")
37
37
  credentials_endpoint_draft_00: Optional[StrictStr] = Field(default=None, description="OpenID Connect Verifiable Credentials Endpoint Contains the URL of the Verifiable Credentials Endpoint.")
38
38
  credentials_supported_draft_00: Optional[List[CredentialSupportedDraft00]] = Field(default=None, description="OpenID Connect Verifiable Credentials Supported JSON array containing a list of the Verifiable Credentials supported by this authorization server.")
39
+ device_authorization_endpoint: StrictStr = Field(description="OAuth 2.0 Device Authorization Endpoint URL")
39
40
  end_session_endpoint: Optional[StrictStr] = Field(default=None, description="OpenID Connect End-Session Endpoint URL at the OP to which an RP can perform a redirect to request that the End-User be logged out at the OP.")
40
41
  frontchannel_logout_session_supported: Optional[StrictBool] = Field(default=None, description="OpenID Connect Front-Channel Logout Session Required Boolean value specifying whether the OP can pass iss (issuer) and sid (session ID) query parameters to identify the RP session with the OP when the frontchannel_logout_uri is used. If supported, the sid Claim is also included in ID Tokens issued by the OP.")
41
42
  frontchannel_logout_supported: Optional[StrictBool] = Field(default=None, description="OpenID Connect Front-Channel Logout Supported Boolean value specifying whether the OP supports HTTP-based logout, with true indicating support.")
@@ -60,7 +61,7 @@ class OidcConfiguration(BaseModel):
60
61
  userinfo_signed_response_alg: List[StrictStr] = Field(description="OpenID Connect User Userinfo Signing Algorithm Algorithm used to sign OpenID Connect Userinfo Responses.")
61
62
  userinfo_signing_alg_values_supported: Optional[List[StrictStr]] = Field(default=None, description="OpenID Connect Supported Userinfo Signing Algorithm JSON array containing a list of the JWS [JWS] signing algorithms (alg values) [JWA] supported by the UserInfo Endpoint to encode the Claims in a JWT [JWT].")
62
63
  additional_properties: Dict[str, Any] = {}
63
- __properties: ClassVar[List[str]] = ["authorization_endpoint", "backchannel_logout_session_supported", "backchannel_logout_supported", "claims_parameter_supported", "claims_supported", "code_challenge_methods_supported", "credentials_endpoint_draft_00", "credentials_supported_draft_00", "end_session_endpoint", "frontchannel_logout_session_supported", "frontchannel_logout_supported", "grant_types_supported", "id_token_signed_response_alg", "id_token_signing_alg_values_supported", "issuer", "jwks_uri", "registration_endpoint", "request_object_signing_alg_values_supported", "request_parameter_supported", "request_uri_parameter_supported", "require_request_uri_registration", "response_modes_supported", "response_types_supported", "revocation_endpoint", "scopes_supported", "subject_types_supported", "token_endpoint", "token_endpoint_auth_methods_supported", "userinfo_endpoint", "userinfo_signed_response_alg", "userinfo_signing_alg_values_supported"]
64
+ __properties: ClassVar[List[str]] = ["authorization_endpoint", "backchannel_logout_session_supported", "backchannel_logout_supported", "claims_parameter_supported", "claims_supported", "code_challenge_methods_supported", "credentials_endpoint_draft_00", "credentials_supported_draft_00", "device_authorization_endpoint", "end_session_endpoint", "frontchannel_logout_session_supported", "frontchannel_logout_supported", "grant_types_supported", "id_token_signed_response_alg", "id_token_signing_alg_values_supported", "issuer", "jwks_uri", "registration_endpoint", "request_object_signing_alg_values_supported", "request_parameter_supported", "request_uri_parameter_supported", "require_request_uri_registration", "response_modes_supported", "response_types_supported", "revocation_endpoint", "scopes_supported", "subject_types_supported", "token_endpoint", "token_endpoint_auth_methods_supported", "userinfo_endpoint", "userinfo_signed_response_alg", "userinfo_signing_alg_values_supported"]
64
65
 
65
66
  model_config = ConfigDict(
66
67
  populate_by_name=True,
@@ -135,6 +136,7 @@ class OidcConfiguration(BaseModel):
135
136
  "code_challenge_methods_supported": obj.get("code_challenge_methods_supported"),
136
137
  "credentials_endpoint_draft_00": obj.get("credentials_endpoint_draft_00"),
137
138
  "credentials_supported_draft_00": [CredentialSupportedDraft00.from_dict(_item) for _item in obj["credentials_supported_draft_00"]] if obj.get("credentials_supported_draft_00") is not None else None,
139
+ "device_authorization_endpoint": obj.get("device_authorization_endpoint"),
138
140
  "end_session_endpoint": obj.get("end_session_endpoint"),
139
141
  "frontchannel_logout_session_supported": obj.get("frontchannel_logout_session_supported"),
140
142
  "frontchannel_logout_supported": obj.get("frontchannel_logout_supported"),
@@ -5,7 +5,7 @@
5
5
 
6
6
  # Introduction 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. ## SDKs This document describes the APIs available in the Ory Network. The APIs are available as SDKs for the following languages: | Language | Download SDK | Documentation | | -------------- | ---------------------------------------------------------------- | ------------------------------------------------------------------------------------ | | Dart | [pub.dev](https://pub.dev/packages/ory_client) | [README](https://github.com/ory/sdk/blob/master/clients/client/dart/README.md) | | .NET | [nuget.org](https://www.nuget.org/packages/Ory.Client/) | [README](https://github.com/ory/sdk/blob/master/clients/client/dotnet/README.md) | | Elixir | [hex.pm](https://hex.pm/packages/ory_client) | [README](https://github.com/ory/sdk/blob/master/clients/client/elixir/README.md) | | Go | [github.com](https://github.com/ory/client-go) | [README](https://github.com/ory/sdk/blob/master/clients/client/go/README.md) | | Java | [maven.org](https://search.maven.org/artifact/sh.ory/ory-client) | [README](https://github.com/ory/sdk/blob/master/clients/client/java/README.md) | | JavaScript | [npmjs.com](https://www.npmjs.com/package/@ory/client) | [README](https://github.com/ory/sdk/blob/master/clients/client/typescript/README.md) | | JavaScript (With fetch) | [npmjs.com](https://www.npmjs.com/package/@ory/client-fetch) | [README](https://github.com/ory/sdk/blob/master/clients/client/typescript-fetch/README.md) | | PHP | [packagist.org](https://packagist.org/packages/ory/client) | [README](https://github.com/ory/sdk/blob/master/clients/client/php/README.md) | | Python | [pypi.org](https://pypi.org/project/ory-client/) | [README](https://github.com/ory/sdk/blob/master/clients/client/python/README.md) | | Ruby | [rubygems.org](https://rubygems.org/gems/ory-client) | [README](https://github.com/ory/sdk/blob/master/clients/client/ruby/README.md) | | Rust | [crates.io](https://crates.io/crates/ory-client) | [README](https://github.com/ory/sdk/blob/master/clients/client/rust/README.md) |
7
7
 
8
- The version of the OpenAPI document: v1.20.10
8
+ The version of the OpenAPI document: v1.20.22
9
9
  Contact: support@ory.sh
10
10
  Generated by OpenAPI Generator (https://openapi-generator.tech)
11
11
 
@@ -0,0 +1,126 @@
1
+ # coding: utf-8
2
+
3
+ """
4
+ Ory APIs
5
+
6
+ # Introduction 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. ## SDKs This document describes the APIs available in the Ory Network. The APIs are available as SDKs for the following languages: | Language | Download SDK | Documentation | | -------------- | ---------------------------------------------------------------- | ------------------------------------------------------------------------------------ | | Dart | [pub.dev](https://pub.dev/packages/ory_client) | [README](https://github.com/ory/sdk/blob/master/clients/client/dart/README.md) | | .NET | [nuget.org](https://www.nuget.org/packages/Ory.Client/) | [README](https://github.com/ory/sdk/blob/master/clients/client/dotnet/README.md) | | Elixir | [hex.pm](https://hex.pm/packages/ory_client) | [README](https://github.com/ory/sdk/blob/master/clients/client/elixir/README.md) | | Go | [github.com](https://github.com/ory/client-go) | [README](https://github.com/ory/sdk/blob/master/clients/client/go/README.md) | | Java | [maven.org](https://search.maven.org/artifact/sh.ory/ory-client) | [README](https://github.com/ory/sdk/blob/master/clients/client/java/README.md) | | JavaScript | [npmjs.com](https://www.npmjs.com/package/@ory/client) | [README](https://github.com/ory/sdk/blob/master/clients/client/typescript/README.md) | | JavaScript (With fetch) | [npmjs.com](https://www.npmjs.com/package/@ory/client-fetch) | [README](https://github.com/ory/sdk/blob/master/clients/client/typescript-fetch/README.md) | | PHP | [packagist.org](https://packagist.org/packages/ory/client) | [README](https://github.com/ory/sdk/blob/master/clients/client/php/README.md) | | Python | [pypi.org](https://pypi.org/project/ory-client/) | [README](https://github.com/ory/sdk/blob/master/clients/client/python/README.md) | | Ruby | [rubygems.org](https://rubygems.org/gems/ory-client) | [README](https://github.com/ory/sdk/blob/master/clients/client/ruby/README.md) | | Rust | [crates.io](https://crates.io/crates/ory-client) | [README](https://github.com/ory/sdk/blob/master/clients/client/rust/README.md) |
7
+
8
+ The version of the OpenAPI document: v1.20.22
9
+ Contact: support@ory.sh
10
+ Generated by OpenAPI Generator (https://openapi-generator.tech)
11
+
12
+ Do not edit the class manually.
13
+ """ # noqa: E501
14
+
15
+
16
+ from __future__ import annotations
17
+ import pprint
18
+ import re # noqa: F401
19
+ import json
20
+
21
+ from datetime import datetime
22
+ from pydantic import BaseModel, ConfigDict, Field, StrictBool, StrictStr
23
+ from typing import Any, ClassVar, Dict, List, Optional
24
+ from typing import Optional, Set
25
+ from typing_extensions import Self
26
+
27
+ class OnboardingPortalLink(BaseModel):
28
+ """
29
+ OnboardingPortalLink
30
+ """ # noqa: E501
31
+ created_at: Optional[datetime] = Field(default=None, description="The onboarding portal link's creation date")
32
+ enable_sso: Optional[StrictBool] = Field(default=None, description="Feature flag to enable SSO configuration")
33
+ expires_at: datetime = Field(description="The onboarding portal link's expiry date")
34
+ id: StrictStr = Field(description="The onboarding portal link's ID.")
35
+ organization_id: StrictStr = Field(description="The onboarding portal link's organization ID")
36
+ project_id: StrictStr = Field(description="The onboarding portal link's project ID")
37
+ value: StrictStr = Field(description="The onboarding portal link's value")
38
+ additional_properties: Dict[str, Any] = {}
39
+ __properties: ClassVar[List[str]] = ["created_at", "enable_sso", "expires_at", "id", "organization_id", "project_id", "value"]
40
+
41
+ model_config = ConfigDict(
42
+ populate_by_name=True,
43
+ validate_assignment=True,
44
+ protected_namespaces=(),
45
+ )
46
+
47
+
48
+ def to_str(self) -> str:
49
+ """Returns the string representation of the model using alias"""
50
+ return pprint.pformat(self.model_dump(by_alias=True))
51
+
52
+ def to_json(self) -> str:
53
+ """Returns the JSON representation of the model using alias"""
54
+ # TODO: pydantic v2: use .model_dump_json(by_alias=True, exclude_unset=True) instead
55
+ return json.dumps(self.to_dict())
56
+
57
+ @classmethod
58
+ def from_json(cls, json_str: str) -> Optional[Self]:
59
+ """Create an instance of OnboardingPortalLink from a JSON string"""
60
+ return cls.from_dict(json.loads(json_str))
61
+
62
+ def to_dict(self) -> Dict[str, Any]:
63
+ """Return the dictionary representation of the model using alias.
64
+
65
+ This has the following differences from calling pydantic's
66
+ `self.model_dump(by_alias=True)`:
67
+
68
+ * `None` is only added to the output dict for nullable fields that
69
+ were set at model initialization. Other fields with value `None`
70
+ are ignored.
71
+ * OpenAPI `readOnly` fields are excluded.
72
+ * OpenAPI `readOnly` fields are excluded.
73
+ * OpenAPI `readOnly` fields are excluded.
74
+ * OpenAPI `readOnly` fields are excluded.
75
+ * OpenAPI `readOnly` fields are excluded.
76
+ * OpenAPI `readOnly` fields are excluded.
77
+ * Fields in `self.additional_properties` are added to the output dict.
78
+ """
79
+ excluded_fields: Set[str] = set([
80
+ "created_at",
81
+ "expires_at",
82
+ "id",
83
+ "organization_id",
84
+ "project_id",
85
+ "value",
86
+ "additional_properties",
87
+ ])
88
+
89
+ _dict = self.model_dump(
90
+ by_alias=True,
91
+ exclude=excluded_fields,
92
+ exclude_none=True,
93
+ )
94
+ # puts key-value pairs in additional_properties in the top level
95
+ if self.additional_properties is not None:
96
+ for _key, _value in self.additional_properties.items():
97
+ _dict[_key] = _value
98
+
99
+ return _dict
100
+
101
+ @classmethod
102
+ def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]:
103
+ """Create an instance of OnboardingPortalLink from a dict"""
104
+ if obj is None:
105
+ return None
106
+
107
+ if not isinstance(obj, dict):
108
+ return cls.model_validate(obj)
109
+
110
+ _obj = cls.model_validate({
111
+ "created_at": obj.get("created_at"),
112
+ "enable_sso": obj.get("enable_sso"),
113
+ "expires_at": obj.get("expires_at"),
114
+ "id": obj.get("id"),
115
+ "organization_id": obj.get("organization_id"),
116
+ "project_id": obj.get("project_id"),
117
+ "value": obj.get("value")
118
+ })
119
+ # store additional fields in additional_properties
120
+ for _key in obj.keys():
121
+ if _key not in cls.__properties:
122
+ _obj.additional_properties[_key] = obj.get(_key)
123
+
124
+ return _obj
125
+
126
+
@@ -0,0 +1,127 @@
1
+ # coding: utf-8
2
+
3
+ """
4
+ Ory APIs
5
+
6
+ # Introduction 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. ## SDKs This document describes the APIs available in the Ory Network. The APIs are available as SDKs for the following languages: | Language | Download SDK | Documentation | | -------------- | ---------------------------------------------------------------- | ------------------------------------------------------------------------------------ | | Dart | [pub.dev](https://pub.dev/packages/ory_client) | [README](https://github.com/ory/sdk/blob/master/clients/client/dart/README.md) | | .NET | [nuget.org](https://www.nuget.org/packages/Ory.Client/) | [README](https://github.com/ory/sdk/blob/master/clients/client/dotnet/README.md) | | Elixir | [hex.pm](https://hex.pm/packages/ory_client) | [README](https://github.com/ory/sdk/blob/master/clients/client/elixir/README.md) | | Go | [github.com](https://github.com/ory/client-go) | [README](https://github.com/ory/sdk/blob/master/clients/client/go/README.md) | | Java | [maven.org](https://search.maven.org/artifact/sh.ory/ory-client) | [README](https://github.com/ory/sdk/blob/master/clients/client/java/README.md) | | JavaScript | [npmjs.com](https://www.npmjs.com/package/@ory/client) | [README](https://github.com/ory/sdk/blob/master/clients/client/typescript/README.md) | | JavaScript (With fetch) | [npmjs.com](https://www.npmjs.com/package/@ory/client-fetch) | [README](https://github.com/ory/sdk/blob/master/clients/client/typescript-fetch/README.md) | | PHP | [packagist.org](https://packagist.org/packages/ory/client) | [README](https://github.com/ory/sdk/blob/master/clients/client/php/README.md) | | Python | [pypi.org](https://pypi.org/project/ory-client/) | [README](https://github.com/ory/sdk/blob/master/clients/client/python/README.md) | | Ruby | [rubygems.org](https://rubygems.org/gems/ory-client) | [README](https://github.com/ory/sdk/blob/master/clients/client/ruby/README.md) | | Rust | [crates.io](https://crates.io/crates/ory-client) | [README](https://github.com/ory/sdk/blob/master/clients/client/rust/README.md) |
7
+
8
+ The version of the OpenAPI document: v1.20.22
9
+ Contact: support@ory.sh
10
+ Generated by OpenAPI Generator (https://openapi-generator.tech)
11
+
12
+ Do not edit the class manually.
13
+ """ # noqa: E501
14
+
15
+
16
+ from __future__ import annotations
17
+ import pprint
18
+ import re # noqa: F401
19
+ import json
20
+
21
+ from pydantic import BaseModel, ConfigDict, Field, StrictStr
22
+ from typing import Any, ClassVar, Dict, List, Optional
23
+ from ory_client.models.normalized_project_revision_saml_provider import NormalizedProjectRevisionSAMLProvider
24
+ from ory_client.models.normalized_project_revision_third_party_provider import NormalizedProjectRevisionThirdPartyProvider
25
+ from typing import Optional, Set
26
+ from typing_extensions import Self
27
+
28
+ class OnboardingPortalOrganization(BaseModel):
29
+ """
30
+ OnboardingPortalOrganization
31
+ """ # noqa: E501
32
+ base_url: StrictStr
33
+ kratos_selfservice_methods_oidc_config_providers: List[NormalizedProjectRevisionThirdPartyProvider]
34
+ kratos_selfservice_methods_saml_config_providers: List[NormalizedProjectRevisionSAMLProvider]
35
+ organization_id: Optional[StrictStr] = Field(default=None, description="Organization ID")
36
+ organization_label: Optional[StrictStr] = Field(default=None, description="Organization Label")
37
+ revision_id: StrictStr
38
+ additional_properties: Dict[str, Any] = {}
39
+ __properties: ClassVar[List[str]] = ["base_url", "kratos_selfservice_methods_oidc_config_providers", "kratos_selfservice_methods_saml_config_providers", "organization_id", "organization_label", "revision_id"]
40
+
41
+ model_config = ConfigDict(
42
+ populate_by_name=True,
43
+ validate_assignment=True,
44
+ protected_namespaces=(),
45
+ )
46
+
47
+
48
+ def to_str(self) -> str:
49
+ """Returns the string representation of the model using alias"""
50
+ return pprint.pformat(self.model_dump(by_alias=True))
51
+
52
+ def to_json(self) -> str:
53
+ """Returns the JSON representation of the model using alias"""
54
+ # TODO: pydantic v2: use .model_dump_json(by_alias=True, exclude_unset=True) instead
55
+ return json.dumps(self.to_dict())
56
+
57
+ @classmethod
58
+ def from_json(cls, json_str: str) -> Optional[Self]:
59
+ """Create an instance of OnboardingPortalOrganization from a JSON string"""
60
+ return cls.from_dict(json.loads(json_str))
61
+
62
+ def to_dict(self) -> Dict[str, Any]:
63
+ """Return the dictionary representation of the model using alias.
64
+
65
+ This has the following differences from calling pydantic's
66
+ `self.model_dump(by_alias=True)`:
67
+
68
+ * `None` is only added to the output dict for nullable fields that
69
+ were set at model initialization. Other fields with value `None`
70
+ are ignored.
71
+ * Fields in `self.additional_properties` are added to the output dict.
72
+ """
73
+ excluded_fields: Set[str] = set([
74
+ "additional_properties",
75
+ ])
76
+
77
+ _dict = self.model_dump(
78
+ by_alias=True,
79
+ exclude=excluded_fields,
80
+ exclude_none=True,
81
+ )
82
+ # override the default output from pydantic by calling `to_dict()` of each item in kratos_selfservice_methods_oidc_config_providers (list)
83
+ _items = []
84
+ if self.kratos_selfservice_methods_oidc_config_providers:
85
+ for _item_kratos_selfservice_methods_oidc_config_providers in self.kratos_selfservice_methods_oidc_config_providers:
86
+ if _item_kratos_selfservice_methods_oidc_config_providers:
87
+ _items.append(_item_kratos_selfservice_methods_oidc_config_providers.to_dict())
88
+ _dict['kratos_selfservice_methods_oidc_config_providers'] = _items
89
+ # override the default output from pydantic by calling `to_dict()` of each item in kratos_selfservice_methods_saml_config_providers (list)
90
+ _items = []
91
+ if self.kratos_selfservice_methods_saml_config_providers:
92
+ for _item_kratos_selfservice_methods_saml_config_providers in self.kratos_selfservice_methods_saml_config_providers:
93
+ if _item_kratos_selfservice_methods_saml_config_providers:
94
+ _items.append(_item_kratos_selfservice_methods_saml_config_providers.to_dict())
95
+ _dict['kratos_selfservice_methods_saml_config_providers'] = _items
96
+ # puts key-value pairs in additional_properties in the top level
97
+ if self.additional_properties is not None:
98
+ for _key, _value in self.additional_properties.items():
99
+ _dict[_key] = _value
100
+
101
+ return _dict
102
+
103
+ @classmethod
104
+ def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]:
105
+ """Create an instance of OnboardingPortalOrganization from a dict"""
106
+ if obj is None:
107
+ return None
108
+
109
+ if not isinstance(obj, dict):
110
+ return cls.model_validate(obj)
111
+
112
+ _obj = cls.model_validate({
113
+ "base_url": obj.get("base_url"),
114
+ "kratos_selfservice_methods_oidc_config_providers": [NormalizedProjectRevisionThirdPartyProvider.from_dict(_item) for _item in obj["kratos_selfservice_methods_oidc_config_providers"]] if obj.get("kratos_selfservice_methods_oidc_config_providers") is not None else None,
115
+ "kratos_selfservice_methods_saml_config_providers": [NormalizedProjectRevisionSAMLProvider.from_dict(_item) for _item in obj["kratos_selfservice_methods_saml_config_providers"]] if obj.get("kratos_selfservice_methods_saml_config_providers") is not None else None,
116
+ "organization_id": obj.get("organization_id"),
117
+ "organization_label": obj.get("organization_label"),
118
+ "revision_id": obj.get("revision_id")
119
+ })
120
+ # store additional fields in additional_properties
121
+ for _key in obj.keys():
122
+ if _key not in cls.__properties:
123
+ _obj.additional_properties[_key] = obj.get(_key)
124
+
125
+ return _obj
126
+
127
+