ory-client 1.5.2__py3-none-any.whl → 1.6.2__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.
- ory_client/__init__.py +2 -2
- ory_client/api/courier_api.py +1 -1
- ory_client/api/events_api.py +1 -1
- ory_client/api/frontend_api.py +7 -1
- ory_client/api/identity_api.py +25 -12
- ory_client/api/jwk_api.py +1 -1
- ory_client/api/metadata_api.py +1 -1
- ory_client/api/o_auth2_api.py +1 -1
- ory_client/api/oidc_api.py +1 -1
- ory_client/api/permission_api.py +2 -2
- ory_client/api/project_api.py +1 -1
- ory_client/api/relationship_api.py +1 -1
- ory_client/api/wellknown_api.py +1 -1
- ory_client/api_client.py +2 -2
- ory_client/configuration.py +3 -3
- ory_client/exceptions.py +1 -1
- ory_client/model/accept_o_auth2_consent_request.py +5 -1
- ory_client/model/accept_o_auth2_consent_request_session.py +1 -1
- ory_client/model/accept_o_auth2_login_request.py +1 -1
- ory_client/model/active_project_in_console.py +1 -1
- ory_client/model/attribute.py +1 -1
- ory_client/model/attribute_filter.py +1 -1
- ory_client/model/attributes_count_datapoint.py +1 -1
- ory_client/model/authenticator_assurance_level.py +1 -1
- ory_client/model/batch_patch_identities_response.py +1 -1
- ory_client/model/check_opl_syntax_result.py +1 -1
- ory_client/model/check_permission_result.py +1 -1
- ory_client/model/cloud_account.py +1 -1
- ory_client/model/consistency_request_parameters.py +1 -1
- ory_client/model/continue_with.py +1 -1
- ory_client/model/continue_with_recovery_ui.py +1 -1
- ory_client/model/continue_with_recovery_ui_flow.py +1 -1
- ory_client/model/continue_with_set_ory_session_token.py +1 -1
- ory_client/model/continue_with_settings_ui.py +1 -1
- ory_client/model/continue_with_settings_ui_flow.py +1 -1
- ory_client/model/continue_with_verification_ui.py +1 -1
- ory_client/model/continue_with_verification_ui_flow.py +1 -1
- ory_client/model/courier_message_status.py +1 -1
- ory_client/model/courier_message_type.py +1 -1
- ory_client/model/create_custom_domain_body.py +1 -1
- ory_client/model/create_event_stream_body.py +1 -1
- ory_client/model/create_identity_body.py +8 -6
- ory_client/model/create_invite_response.py +1 -1
- ory_client/model/create_json_web_key_set.py +1 -1
- ory_client/model/create_member_invite_response.py +1 -1
- ory_client/model/create_project_api_key_request.py +1 -1
- ory_client/model/create_project_body.py +13 -3
- ory_client/model/create_project_branding.py +1 -1
- ory_client/model/create_project_member_invite_body.py +1 -1
- ory_client/model/create_project_normalized_payload.py +25 -3
- ory_client/model/create_recovery_code_for_identity_body.py +1 -1
- ory_client/model/create_recovery_link_for_identity_body.py +1 -1
- ory_client/model/create_relationship_body.py +1 -1
- ory_client/model/create_subscription_body.py +9 -11
- ory_client/model/{identity_credentials_type.py → create_subscription_common.py} +85 -88
- ory_client/model/create_verifiable_credential_request_body.py +1 -1
- ory_client/model/create_workspace_member_invite_body.py +1 -1
- ory_client/model/{stripe_customer.py → create_workspace_payload.py} +16 -10
- ory_client/model/create_workspace_subscription_body.py +292 -0
- ory_client/model/credential_supported_draft00.py +1 -1
- ory_client/model/custom_domain.py +1 -1
- ory_client/model/delete_my_sessions_count.py +1 -1
- ory_client/model/email_template_data.py +1 -1
- ory_client/model/email_template_data_body.py +1 -1
- ory_client/model/error_authenticator_assurance_level_not_satisfied.py +1 -1
- ory_client/model/error_browser_location_change_required.py +1 -1
- ory_client/model/error_flow_replaced.py +1 -1
- ory_client/model/error_generic.py +1 -1
- ory_client/model/error_o_auth2.py +1 -1
- ory_client/model/event_stream.py +1 -1
- ory_client/model/expanded_permission_tree.py +1 -1
- ory_client/model/flow_error.py +1 -1
- ory_client/model/generic_error.py +1 -1
- ory_client/model/generic_error_content.py +1 -1
- ory_client/model/generic_usage.py +1 -1
- ory_client/model/get_attributes_count_response.py +1 -1
- ory_client/model/get_managed_identity_schema_location.py +1 -1
- ory_client/model/get_metrics_event_attributes_response.py +1 -1
- ory_client/model/get_metrics_event_types_response.py +1 -1
- ory_client/model/get_organization_response.py +1 -1
- ory_client/model/get_project_events_body.py +1 -1
- ory_client/model/get_project_events_response.py +1 -1
- ory_client/model/get_project_metrics_response.py +1 -1
- ory_client/model/get_session_activity_response.py +1 -1
- ory_client/model/get_version200_response.py +1 -1
- ory_client/model/health_not_ready_status.py +1 -1
- ory_client/model/health_status.py +1 -1
- ory_client/model/identity.py +8 -6
- ory_client/model/identity_credentials.py +14 -10
- ory_client/model/identity_credentials_code.py +3 -3
- ory_client/model/identity_credentials_oidc.py +1 -1
- ory_client/model/identity_credentials_oidc_provider.py +1 -1
- ory_client/model/identity_credentials_password.py +1 -1
- ory_client/model/identity_patch.py +1 -1
- ory_client/model/identity_patch_response.py +1 -1
- ory_client/model/identity_schema_container.py +1 -1
- ory_client/model/identity_schema_preset.py +1 -1
- ory_client/model/identity_schema_presets.py +1 -1
- ory_client/model/identity_schemas.py +1 -1
- ory_client/model/identity_with_credentials.py +1 -1
- ory_client/model/identity_with_credentials_oidc.py +1 -1
- ory_client/model/identity_with_credentials_oidc_config.py +1 -1
- ory_client/model/identity_with_credentials_oidc_config_provider.py +1 -1
- ory_client/model/identity_with_credentials_password.py +1 -1
- ory_client/model/identity_with_credentials_password_config.py +1 -1
- ory_client/model/internal_get_project_branding_body.py +1 -1
- ory_client/model/internal_is_ax_welcome_screen_enabled_for_project_body.py +1 -1
- ory_client/model/internal_is_owner_for_project_by_slug_body.py +1 -1
- ory_client/model/internal_is_owner_for_project_by_slug_response.py +1 -1
- ory_client/model/internal_provision_mock_subscription.py +1 -1
- ory_client/model/introspected_o_auth2_token.py +1 -1
- ory_client/model/is_owner_for_project_by_slug.py +1 -1
- ory_client/model/is_ready200_response.py +1 -1
- ory_client/model/is_ready503_response.py +1 -1
- ory_client/model/json_patch.py +1 -1
- ory_client/model/json_patch_document.py +1 -1
- ory_client/model/json_web_key.py +1 -1
- ory_client/model/json_web_key_set.py +1 -1
- ory_client/model/keto_namespace.py +1 -1
- ory_client/model/keto_namespaces.py +1 -1
- ory_client/model/list_custom_domains.py +1 -1
- ory_client/model/list_event_streams.py +1 -1
- ory_client/model/list_my_workspaces_response.py +6 -6
- ory_client/model/list_organizations_response.py +1 -1
- ory_client/model/{identity_state.py → list_workspace_projects_response.py} +82 -85
- ory_client/model/login_flow.py +14 -6
- ory_client/model/login_flow_state.py +1 -1
- ory_client/model/logout_flow.py +1 -1
- ory_client/model/managed_identity_schema.py +1 -1
- ory_client/model/managed_identity_schema_validation_result.py +1 -1
- ory_client/model/managed_identity_schemas.py +1 -1
- ory_client/model/member_invite.py +1 -1
- ory_client/model/member_invites.py +1 -1
- ory_client/model/message.py +1 -1
- ory_client/model/message_dispatch.py +1 -1
- ory_client/model/metrics_datapoint.py +1 -1
- ory_client/model/migration_options.py +284 -0
- ory_client/model/namespace.py +1 -1
- ory_client/model/needs_privileged_session_error.py +1 -1
- ory_client/model/normalized_project.py +1 -1
- ory_client/model/normalized_project_revision.py +13 -1
- ory_client/model/normalized_project_revision_courier_channel.py +1 -1
- ory_client/model/normalized_project_revision_hook.py +1 -1
- ory_client/model/normalized_project_revision_identity_schema.py +1 -1
- ory_client/model/normalized_project_revision_identity_schemas.py +1 -1
- ory_client/model/normalized_project_revision_third_party_provider.py +5 -1
- ory_client/model/normalized_project_revision_tokenizer_template.py +1 -1
- ory_client/model/normalized_project_revision_tokenizer_templates.py +1 -1
- ory_client/model/normalized_projects.py +1 -1
- ory_client/model/null_duration.py +1 -1
- ory_client/model/o_auth2_client.py +5 -1
- ory_client/model/o_auth2_client_token_lifespans.py +1 -1
- ory_client/model/o_auth2_consent_request.py +1 -1
- ory_client/model/o_auth2_consent_request_open_id_connect_context.py +1 -1
- ory_client/model/o_auth2_consent_session.py +5 -1
- ory_client/model/o_auth2_consent_session_expires_at.py +1 -1
- ory_client/model/o_auth2_consent_sessions.py +1 -1
- ory_client/model/o_auth2_login_request.py +1 -1
- ory_client/model/o_auth2_logout_request.py +1 -1
- ory_client/model/o_auth2_redirect_to.py +1 -1
- ory_client/model/o_auth2_token_exchange.py +1 -1
- ory_client/model/oidc_configuration.py +1 -1
- ory_client/model/oidc_user_info.py +1 -1
- ory_client/model/organization.py +1 -1
- ory_client/model/organization_body.py +1 -1
- ory_client/model/pagination.py +1 -1
- ory_client/model/pagination_headers.py +1 -1
- ory_client/model/parse_error.py +1 -1
- ory_client/model/patch_identities_body.py +1 -1
- ory_client/model/perform_native_logout_body.py +1 -1
- ory_client/model/permissions_on_project.py +1 -1
- ory_client/model/plan.py +1 -1
- ory_client/model/plan_details.py +1 -1
- ory_client/model/plans.py +1 -1
- ory_client/model/post_check_permission_body.py +1 -1
- ory_client/model/post_check_permission_or_error_body.py +1 -1
- ory_client/model/pricing.py +1 -1
- ory_client/model/project.py +1 -1
- ory_client/model/project_api_key.py +1 -1
- ory_client/model/project_api_keys.py +1 -1
- ory_client/model/project_branding.py +1 -1
- ory_client/model/project_branding_colors.py +1 -1
- ory_client/model/project_branding_theme.py +1 -1
- ory_client/model/project_branding_themes.py +1 -1
- ory_client/model/project_cors.py +1 -1
- ory_client/model/project_events_datapoint.py +1 -1
- ory_client/model/project_host.py +1 -1
- ory_client/model/project_member.py +1 -1
- ory_client/model/project_members.py +1 -1
- ory_client/model/project_metadata.py +13 -3
- ory_client/model/project_metadata_list.py +1 -1
- ory_client/model/project_revision_hooks.py +1 -1
- ory_client/model/project_revision_identity_schemas.py +1 -1
- ory_client/model/project_revision_third_party_login_providers.py +1 -1
- ory_client/model/project_revisions.py +1 -1
- ory_client/model/project_service_identity.py +1 -1
- ory_client/model/project_service_o_auth2.py +1 -1
- ory_client/model/project_service_permission.py +1 -1
- ory_client/model/project_services.py +1 -1
- ory_client/model/projects.py +1 -1
- ory_client/model/quota_usage.py +5 -3
- ory_client/model/recovery_code_for_identity.py +1 -1
- ory_client/model/recovery_flow.py +1 -1
- ory_client/model/recovery_flow_state.py +1 -1
- ory_client/model/recovery_identity_address.py +1 -1
- ory_client/model/recovery_link_for_identity.py +1 -1
- ory_client/model/registration_flow.py +14 -6
- ory_client/model/registration_flow_state.py +1 -1
- ory_client/model/reject_o_auth2_request.py +1 -1
- ory_client/model/relation_query.py +1 -1
- ory_client/model/relationship.py +1 -1
- ory_client/model/relationship_namespaces.py +1 -1
- ory_client/model/relationship_patch.py +1 -1
- ory_client/model/relationships.py +1 -1
- ory_client/model/revision_courier_channels.py +1 -1
- ory_client/model/rfc6749_error_json.py +1 -1
- ory_client/model/schema_patch.py +1 -1
- ory_client/model/self_service_flow_expired_error.py +1 -1
- ory_client/model/session.py +1 -1
- ory_client/model/session_activity_datapoint.py +1 -1
- ory_client/model/session_authentication_method.py +1 -1
- ory_client/model/session_authentication_methods.py +1 -1
- ory_client/model/session_device.py +1 -1
- ory_client/model/set_active_project_in_console_body.py +1 -1
- ory_client/model/set_custom_domain_body.py +1 -1
- ory_client/model/set_event_stream_body.py +1 -1
- ory_client/model/set_project.py +1 -1
- ory_client/model/set_project_branding_theme_body.py +1 -1
- ory_client/model/settings_flow.py +1 -1
- ory_client/model/settings_flow_state.py +1 -1
- ory_client/model/source_position.py +1 -1
- ory_client/model/string_slice_json_format.py +1 -1
- ory_client/model/subject_set.py +1 -1
- ory_client/model/subscription.py +1 -1
- ory_client/model/successful_code_exchange_response.py +1 -1
- ory_client/model/successful_native_login.py +1 -1
- ory_client/model/successful_native_registration.py +1 -1
- ory_client/model/successful_project_update.py +1 -1
- ory_client/model/token_pagination.py +1 -1
- ory_client/model/token_pagination_headers.py +1 -1
- ory_client/model/token_pagination_request_parameters.py +1 -1
- ory_client/model/token_pagination_response_headers.py +1 -1
- ory_client/model/trust_o_auth2_jwt_grant_issuer.py +1 -1
- ory_client/model/trusted_o_auth2_jwt_grant_issuer.py +1 -1
- ory_client/model/trusted_o_auth2_jwt_grant_issuers.py +1 -1
- ory_client/model/trusted_o_auth2_jwt_grant_json_web_key.py +1 -1
- ory_client/model/ui_container.py +1 -1
- ory_client/model/ui_node.py +1 -1
- ory_client/model/ui_node_anchor_attributes.py +1 -1
- ory_client/model/ui_node_attributes.py +1 -1
- ory_client/model/ui_node_image_attributes.py +1 -1
- ory_client/model/ui_node_input_attributes.py +1 -1
- ory_client/model/ui_node_meta.py +1 -1
- ory_client/model/ui_node_script_attributes.py +1 -1
- ory_client/model/ui_node_text_attributes.py +1 -1
- ory_client/model/ui_nodes.py +1 -1
- ory_client/model/ui_text.py +1 -1
- ory_client/model/ui_texts.py +1 -1
- ory_client/model/update_identity_body.py +8 -6
- ory_client/model/update_login_flow_body.py +1 -1
- ory_client/model/update_login_flow_with_code_method.py +1 -1
- ory_client/model/update_login_flow_with_lookup_secret_method.py +1 -1
- ory_client/model/update_login_flow_with_oidc_method.py +1 -1
- ory_client/model/update_login_flow_with_password_method.py +1 -1
- ory_client/model/update_login_flow_with_totp_method.py +1 -1
- ory_client/model/update_login_flow_with_web_authn_method.py +1 -1
- ory_client/model/update_recovery_flow_body.py +1 -1
- ory_client/model/update_recovery_flow_with_code_method.py +1 -1
- ory_client/model/update_recovery_flow_with_link_method.py +1 -1
- ory_client/model/update_registration_flow_body.py +1 -1
- ory_client/model/update_registration_flow_with_code_method.py +1 -1
- ory_client/model/update_registration_flow_with_oidc_method.py +1 -1
- ory_client/model/update_registration_flow_with_password_method.py +1 -1
- ory_client/model/update_registration_flow_with_web_authn_method.py +1 -1
- ory_client/model/update_settings_flow_body.py +1 -1
- ory_client/model/update_settings_flow_with_lookup_method.py +1 -1
- ory_client/model/update_settings_flow_with_oidc_method.py +1 -1
- ory_client/model/update_settings_flow_with_password_method.py +1 -1
- ory_client/model/update_settings_flow_with_profile_method.py +1 -1
- ory_client/model/update_settings_flow_with_totp_method.py +1 -1
- ory_client/model/update_settings_flow_with_web_authn_method.py +1 -1
- ory_client/model/update_subscription_body.py +1 -1
- ory_client/model/update_verification_flow_body.py +1 -1
- ory_client/model/update_verification_flow_with_code_method.py +1 -1
- ory_client/model/update_verification_flow_with_link_method.py +1 -1
- ory_client/model/usage.py +1 -1
- ory_client/model/verifiable_credential_priming_response.py +1 -1
- ory_client/model/verifiable_credential_proof.py +1 -1
- ory_client/model/verifiable_credential_response.py +1 -1
- ory_client/model/verifiable_identity_address.py +1 -1
- ory_client/model/verification_flow.py +1 -1
- ory_client/model/verification_flow_state.py +1 -1
- ory_client/model/version.py +1 -1
- ory_client/model/warning.py +1 -1
- ory_client/model/workspace.py +1 -1
- ory_client/model/workspace_meta.py +296 -0
- ory_client/model/workspaces.py +1 -1
- ory_client/model_utils.py +1 -1
- ory_client/models/__init__.py +6 -3
- ory_client/rest.py +1 -1
- {ory_client-1.5.2.dist-info → ory_client-1.6.2.dist-info}/METADATA +1 -1
- ory_client-1.6.2.dist-info/RECORD +308 -0
- ory_client-1.5.2.dist-info/RECORD +0 -305
- {ory_client-1.5.2.dist-info → ory_client-1.6.2.dist-info}/LICENSE +0 -0
- {ory_client-1.5.2.dist-info → ory_client-1.6.2.dist-info}/WHEEL +0 -0
- {ory_client-1.5.2.dist-info → ory_client-1.6.2.dist-info}/top_level.txt +0 -0
@@ -3,7 +3,7 @@
|
|
3
3
|
|
4
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
5
|
|
6
|
-
The version of the OpenAPI document: v1.
|
6
|
+
The version of the OpenAPI document: v1.6.2
|
7
7
|
Contact: support@ory.sh
|
8
8
|
Generated by: https://openapi-generator.tech
|
9
9
|
"""
|
@@ -31,7 +31,7 @@ from ory_client.exceptions import ApiAttributeError
|
|
31
31
|
|
32
32
|
|
33
33
|
|
34
|
-
class
|
34
|
+
class CreateSubscriptionCommon(ModelNormal):
|
35
35
|
"""NOTE: This class is auto generated by OpenAPI Generator.
|
36
36
|
Ref: https://openapi-generator.tech
|
37
37
|
|
@@ -42,6 +42,10 @@ class IdentityCredentialsType(ModelSimple):
|
|
42
42
|
and the for var_name this is (var_name,). The value is a dict
|
43
43
|
with a capitalized key describing the allowed value and an allowed
|
44
44
|
value. These dicts store the allowed enum values.
|
45
|
+
attribute_map (dict): The key is attribute name
|
46
|
+
and the value is json key in definition.
|
47
|
+
discriminator_value_class_map (dict): A dict to go from the discriminator
|
48
|
+
variable value to the discriminator class name.
|
45
49
|
validations (dict): The key is the tuple path to the attribute
|
46
50
|
and the for var_name this is (var_name,). The value is a dict
|
47
51
|
that stores validations for max_length, min_length, max_items,
|
@@ -52,20 +56,26 @@ class IdentityCredentialsType(ModelSimple):
|
|
52
56
|
"""
|
53
57
|
|
54
58
|
allowed_values = {
|
55
|
-
('
|
56
|
-
'
|
57
|
-
'
|
58
|
-
|
59
|
-
|
60
|
-
'
|
61
|
-
'
|
59
|
+
('interval',): {
|
60
|
+
'MONTHLY': "monthly",
|
61
|
+
'YEARLY': "yearly",
|
62
|
+
},
|
63
|
+
('currency',): {
|
64
|
+
'USD': "usd",
|
65
|
+
'EUR': "eur",
|
62
66
|
},
|
63
67
|
}
|
64
68
|
|
65
69
|
validations = {
|
66
70
|
}
|
67
71
|
|
68
|
-
|
72
|
+
@cached_property
|
73
|
+
def additional_properties_type():
|
74
|
+
"""
|
75
|
+
This must be a method because a model may have properties that are
|
76
|
+
of type self, this must run after the class is loaded
|
77
|
+
"""
|
78
|
+
return (bool, date, datetime, dict, float, int, list, str, none_type,) # noqa: E501
|
69
79
|
|
70
80
|
_nullable = False
|
71
81
|
|
@@ -80,7 +90,10 @@ class IdentityCredentialsType(ModelSimple):
|
|
80
90
|
and the value is attribute type.
|
81
91
|
"""
|
82
92
|
return {
|
83
|
-
'
|
93
|
+
'interval': (str,), # noqa: E501
|
94
|
+
'plan': (str,), # noqa: E501
|
95
|
+
'currency': (str,), # noqa: E501
|
96
|
+
'return_to': (str,), # noqa: E501
|
84
97
|
}
|
85
98
|
|
86
99
|
@cached_property
|
@@ -88,32 +101,28 @@ class IdentityCredentialsType(ModelSimple):
|
|
88
101
|
return None
|
89
102
|
|
90
103
|
|
91
|
-
attribute_map = {
|
92
|
-
|
93
|
-
|
104
|
+
attribute_map = {
|
105
|
+
'interval': 'interval', # noqa: E501
|
106
|
+
'plan': 'plan', # noqa: E501
|
107
|
+
'currency': 'currency', # noqa: E501
|
108
|
+
'return_to': 'return_to', # noqa: E501
|
109
|
+
}
|
94
110
|
|
95
|
-
|
111
|
+
read_only_vars = {
|
112
|
+
}
|
96
113
|
|
97
|
-
|
98
|
-
'_data_store',
|
99
|
-
'_check_type',
|
100
|
-
'_spec_property_naming',
|
101
|
-
'_path_to_item',
|
102
|
-
'_configuration',
|
103
|
-
'_visited_composed_classes',
|
104
|
-
])
|
114
|
+
_composed_schemas = {}
|
105
115
|
|
116
|
+
@classmethod
|
106
117
|
@convert_js_args_to_python_args
|
107
|
-
def
|
108
|
-
"""
|
109
|
-
|
110
|
-
Note that value can be passed either in args or in kwargs, but not in both.
|
118
|
+
def _from_openapi_data(cls, interval, plan, *args, **kwargs): # noqa: E501
|
119
|
+
"""CreateSubscriptionCommon - a model defined in OpenAPI
|
111
120
|
|
112
121
|
Args:
|
113
|
-
|
122
|
+
interval (str): monthly Monthly yearly Yearly
|
123
|
+
plan (str):
|
114
124
|
|
115
125
|
Keyword Args:
|
116
|
-
value (str): and so on.., must be one of ["password", "totp", "oidc", "webauthn", "lookup_secret", "code", ] # noqa: E501
|
117
126
|
_check_type (bool): if True, values for parameters in openapi_types
|
118
127
|
will be type checked and a TypeError will be
|
119
128
|
raised if the wrong type is input.
|
@@ -144,27 +153,18 @@ class IdentityCredentialsType(ModelSimple):
|
|
144
153
|
Animal class but this time we won't travel
|
145
154
|
through its discriminator because we passed in
|
146
155
|
_visited_composed_classes = (Animal,)
|
156
|
+
currency (str): usd USD eur Euro. [optional] # noqa: E501
|
157
|
+
return_to (str): [optional] # noqa: E501
|
147
158
|
"""
|
148
|
-
# required up here when default value is not given
|
149
|
-
_path_to_item = kwargs.pop('_path_to_item', ())
|
150
|
-
|
151
|
-
if 'value' in kwargs:
|
152
|
-
value = kwargs.pop('value')
|
153
|
-
elif args:
|
154
|
-
args = list(args)
|
155
|
-
value = args.pop(0)
|
156
|
-
else:
|
157
|
-
raise ApiTypeError(
|
158
|
-
"value is required, but not passed in args or kwargs and doesn't have default",
|
159
|
-
path_to_item=_path_to_item,
|
160
|
-
valid_classes=(self.__class__,),
|
161
|
-
)
|
162
159
|
|
163
160
|
_check_type = kwargs.pop('_check_type', True)
|
164
|
-
_spec_property_naming = kwargs.pop('_spec_property_naming',
|
161
|
+
_spec_property_naming = kwargs.pop('_spec_property_naming', True)
|
162
|
+
_path_to_item = kwargs.pop('_path_to_item', ())
|
165
163
|
_configuration = kwargs.pop('_configuration', None)
|
166
164
|
_visited_composed_classes = kwargs.pop('_visited_composed_classes', ())
|
167
165
|
|
166
|
+
self = super(OpenApiModel, cls).__new__(cls)
|
167
|
+
|
168
168
|
if args:
|
169
169
|
for arg in args:
|
170
170
|
if isinstance(arg, dict):
|
@@ -185,29 +185,37 @@ class IdentityCredentialsType(ModelSimple):
|
|
185
185
|
self._path_to_item = _path_to_item
|
186
186
|
self._configuration = _configuration
|
187
187
|
self._visited_composed_classes = _visited_composed_classes + (self.__class__,)
|
188
|
-
self.value = value
|
189
|
-
if kwargs:
|
190
|
-
raise ApiTypeError(
|
191
|
-
"Invalid named arguments=%s passed to %s. Remove those invalid named arguments." % (
|
192
|
-
kwargs,
|
193
|
-
self.__class__.__name__,
|
194
|
-
),
|
195
|
-
path_to_item=_path_to_item,
|
196
|
-
valid_classes=(self.__class__,),
|
197
|
-
)
|
198
188
|
|
199
|
-
|
200
|
-
|
201
|
-
|
202
|
-
|
189
|
+
self.interval = interval
|
190
|
+
self.plan = plan
|
191
|
+
for var_name, var_value in kwargs.items():
|
192
|
+
if var_name not in self.attribute_map and \
|
193
|
+
self._configuration is not None and \
|
194
|
+
self._configuration.discard_unknown_keys and \
|
195
|
+
self.additional_properties_type is None:
|
196
|
+
# discard variable.
|
197
|
+
continue
|
198
|
+
setattr(self, var_name, var_value)
|
199
|
+
return self
|
200
|
+
|
201
|
+
required_properties = set([
|
202
|
+
'_data_store',
|
203
|
+
'_check_type',
|
204
|
+
'_spec_property_naming',
|
205
|
+
'_path_to_item',
|
206
|
+
'_configuration',
|
207
|
+
'_visited_composed_classes',
|
208
|
+
])
|
203
209
|
|
204
|
-
|
210
|
+
@convert_js_args_to_python_args
|
211
|
+
def __init__(self, interval, plan, *args, **kwargs): # noqa: E501
|
212
|
+
"""CreateSubscriptionCommon - a model defined in OpenAPI
|
205
213
|
|
206
214
|
Args:
|
207
|
-
|
215
|
+
interval (str): monthly Monthly yearly Yearly
|
216
|
+
plan (str):
|
208
217
|
|
209
218
|
Keyword Args:
|
210
|
-
value (str): and so on.., must be one of ["password", "totp", "oidc", "webauthn", "lookup_secret", "code", ] # noqa: E501
|
211
219
|
_check_type (bool): if True, values for parameters in openapi_types
|
212
220
|
will be type checked and a TypeError will be
|
213
221
|
raised if the wrong type is input.
|
@@ -238,26 +246,13 @@ class IdentityCredentialsType(ModelSimple):
|
|
238
246
|
Animal class but this time we won't travel
|
239
247
|
through its discriminator because we passed in
|
240
248
|
_visited_composed_classes = (Animal,)
|
249
|
+
currency (str): usd USD eur Euro. [optional] # noqa: E501
|
250
|
+
return_to (str): [optional] # noqa: E501
|
241
251
|
"""
|
242
|
-
# required up here when default value is not given
|
243
|
-
_path_to_item = kwargs.pop('_path_to_item', ())
|
244
|
-
|
245
|
-
self = super(OpenApiModel, cls).__new__(cls)
|
246
|
-
|
247
|
-
if 'value' in kwargs:
|
248
|
-
value = kwargs.pop('value')
|
249
|
-
elif args:
|
250
|
-
args = list(args)
|
251
|
-
value = args.pop(0)
|
252
|
-
else:
|
253
|
-
raise ApiTypeError(
|
254
|
-
"value is required, but not passed in args or kwargs and doesn't have default",
|
255
|
-
path_to_item=_path_to_item,
|
256
|
-
valid_classes=(self.__class__,),
|
257
|
-
)
|
258
252
|
|
259
253
|
_check_type = kwargs.pop('_check_type', True)
|
260
254
|
_spec_property_naming = kwargs.pop('_spec_property_naming', False)
|
255
|
+
_path_to_item = kwargs.pop('_path_to_item', ())
|
261
256
|
_configuration = kwargs.pop('_configuration', None)
|
262
257
|
_visited_composed_classes = kwargs.pop('_visited_composed_classes', ())
|
263
258
|
|
@@ -281,15 +276,17 @@ class IdentityCredentialsType(ModelSimple):
|
|
281
276
|
self._path_to_item = _path_to_item
|
282
277
|
self._configuration = _configuration
|
283
278
|
self._visited_composed_classes = _visited_composed_classes + (self.__class__,)
|
284
|
-
self.value = value
|
285
|
-
if kwargs:
|
286
|
-
raise ApiTypeError(
|
287
|
-
"Invalid named arguments=%s passed to %s. Remove those invalid named arguments." % (
|
288
|
-
kwargs,
|
289
|
-
self.__class__.__name__,
|
290
|
-
),
|
291
|
-
path_to_item=_path_to_item,
|
292
|
-
valid_classes=(self.__class__,),
|
293
|
-
)
|
294
279
|
|
295
|
-
|
280
|
+
self.interval = interval
|
281
|
+
self.plan = plan
|
282
|
+
for var_name, var_value in kwargs.items():
|
283
|
+
if var_name not in self.attribute_map and \
|
284
|
+
self._configuration is not None and \
|
285
|
+
self._configuration.discard_unknown_keys and \
|
286
|
+
self.additional_properties_type is None:
|
287
|
+
# discard variable.
|
288
|
+
continue
|
289
|
+
setattr(self, var_name, var_value)
|
290
|
+
if var_name in self.read_only_vars:
|
291
|
+
raise ApiAttributeError(f"`{var_name}` is a read-only attribute. Use `from_openapi_data` to instantiate "
|
292
|
+
f"class with read only attributes.")
|
@@ -3,7 +3,7 @@
|
|
3
3
|
|
4
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
5
|
|
6
|
-
The version of the OpenAPI document: v1.
|
6
|
+
The version of the OpenAPI document: v1.6.2
|
7
7
|
Contact: support@ory.sh
|
8
8
|
Generated by: https://openapi-generator.tech
|
9
9
|
"""
|
@@ -3,7 +3,7 @@
|
|
3
3
|
|
4
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
5
|
|
6
|
-
The version of the OpenAPI document: v1.
|
6
|
+
The version of the OpenAPI document: v1.6.2
|
7
7
|
Contact: support@ory.sh
|
8
8
|
Generated by: https://openapi-generator.tech
|
9
9
|
"""
|
@@ -3,7 +3,7 @@
|
|
3
3
|
|
4
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
5
|
|
6
|
-
The version of the OpenAPI document: v1.
|
6
|
+
The version of the OpenAPI document: v1.6.2
|
7
7
|
Contact: support@ory.sh
|
8
8
|
Generated by: https://openapi-generator.tech
|
9
9
|
"""
|
@@ -31,7 +31,7 @@ from ory_client.exceptions import ApiAttributeError
|
|
31
31
|
|
32
32
|
|
33
33
|
|
34
|
-
class
|
34
|
+
class CreateWorkspacePayload(ModelNormal):
|
35
35
|
"""NOTE: This class is auto generated by OpenAPI Generator.
|
36
36
|
Ref: https://openapi-generator.tech
|
37
37
|
|
@@ -82,7 +82,7 @@ class StripeCustomer(ModelNormal):
|
|
82
82
|
and the value is attribute type.
|
83
83
|
"""
|
84
84
|
return {
|
85
|
-
'
|
85
|
+
'name': (str,), # noqa: E501
|
86
86
|
}
|
87
87
|
|
88
88
|
@cached_property
|
@@ -91,7 +91,7 @@ class StripeCustomer(ModelNormal):
|
|
91
91
|
|
92
92
|
|
93
93
|
attribute_map = {
|
94
|
-
'
|
94
|
+
'name': 'name', # noqa: E501
|
95
95
|
}
|
96
96
|
|
97
97
|
read_only_vars = {
|
@@ -101,8 +101,11 @@ class StripeCustomer(ModelNormal):
|
|
101
101
|
|
102
102
|
@classmethod
|
103
103
|
@convert_js_args_to_python_args
|
104
|
-
def _from_openapi_data(cls, *args, **kwargs): # noqa: E501
|
105
|
-
"""
|
104
|
+
def _from_openapi_data(cls, name, *args, **kwargs): # noqa: E501
|
105
|
+
"""CreateWorkspacePayload - a model defined in OpenAPI
|
106
|
+
|
107
|
+
Args:
|
108
|
+
name (str): The name of the workspace
|
106
109
|
|
107
110
|
Keyword Args:
|
108
111
|
_check_type (bool): if True, values for parameters in openapi_types
|
@@ -135,7 +138,6 @@ class StripeCustomer(ModelNormal):
|
|
135
138
|
Animal class but this time we won't travel
|
136
139
|
through its discriminator because we passed in
|
137
140
|
_visited_composed_classes = (Animal,)
|
138
|
-
id (str): [optional] # noqa: E501
|
139
141
|
"""
|
140
142
|
|
141
143
|
_check_type = kwargs.pop('_check_type', True)
|
@@ -167,6 +169,7 @@ class StripeCustomer(ModelNormal):
|
|
167
169
|
self._configuration = _configuration
|
168
170
|
self._visited_composed_classes = _visited_composed_classes + (self.__class__,)
|
169
171
|
|
172
|
+
self.name = name
|
170
173
|
for var_name, var_value in kwargs.items():
|
171
174
|
if var_name not in self.attribute_map and \
|
172
175
|
self._configuration is not None and \
|
@@ -187,8 +190,11 @@ class StripeCustomer(ModelNormal):
|
|
187
190
|
])
|
188
191
|
|
189
192
|
@convert_js_args_to_python_args
|
190
|
-
def __init__(self, *args, **kwargs): # noqa: E501
|
191
|
-
"""
|
193
|
+
def __init__(self, name, *args, **kwargs): # noqa: E501
|
194
|
+
"""CreateWorkspacePayload - a model defined in OpenAPI
|
195
|
+
|
196
|
+
Args:
|
197
|
+
name (str): The name of the workspace
|
192
198
|
|
193
199
|
Keyword Args:
|
194
200
|
_check_type (bool): if True, values for parameters in openapi_types
|
@@ -221,7 +227,6 @@ class StripeCustomer(ModelNormal):
|
|
221
227
|
Animal class but this time we won't travel
|
222
228
|
through its discriminator because we passed in
|
223
229
|
_visited_composed_classes = (Animal,)
|
224
|
-
id (str): [optional] # noqa: E501
|
225
230
|
"""
|
226
231
|
|
227
232
|
_check_type = kwargs.pop('_check_type', True)
|
@@ -251,6 +256,7 @@ class StripeCustomer(ModelNormal):
|
|
251
256
|
self._configuration = _configuration
|
252
257
|
self._visited_composed_classes = _visited_composed_classes + (self.__class__,)
|
253
258
|
|
259
|
+
self.name = name
|
254
260
|
for var_name, var_value in kwargs.items():
|
255
261
|
if var_name not in self.attribute_map and \
|
256
262
|
self._configuration is not None and \
|
@@ -0,0 +1,292 @@
|
|
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.6.2
|
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
|
+
|
34
|
+
class CreateWorkspaceSubscriptionBody(ModelNormal):
|
35
|
+
"""NOTE: This class is auto generated by OpenAPI Generator.
|
36
|
+
Ref: https://openapi-generator.tech
|
37
|
+
|
38
|
+
Do not edit the class manually.
|
39
|
+
|
40
|
+
Attributes:
|
41
|
+
allowed_values (dict): The key is the tuple path to the attribute
|
42
|
+
and the for var_name this is (var_name,). The value is a dict
|
43
|
+
with a capitalized key describing the allowed value and an allowed
|
44
|
+
value. These dicts store the allowed enum values.
|
45
|
+
attribute_map (dict): The key is attribute name
|
46
|
+
and the value is json key in definition.
|
47
|
+
discriminator_value_class_map (dict): A dict to go from the discriminator
|
48
|
+
variable value to the discriminator class name.
|
49
|
+
validations (dict): The key is the tuple path to the attribute
|
50
|
+
and the for var_name this is (var_name,). The value is a dict
|
51
|
+
that stores validations for max_length, min_length, max_items,
|
52
|
+
min_items, exclusive_maximum, inclusive_maximum, exclusive_minimum,
|
53
|
+
inclusive_minimum, and regex.
|
54
|
+
additional_properties_type (tuple): A tuple of classes accepted
|
55
|
+
as additional properties values.
|
56
|
+
"""
|
57
|
+
|
58
|
+
allowed_values = {
|
59
|
+
('interval',): {
|
60
|
+
'MONTHLY': "monthly",
|
61
|
+
'YEARLY': "yearly",
|
62
|
+
},
|
63
|
+
('currency',): {
|
64
|
+
'USD': "usd",
|
65
|
+
'EUR': "eur",
|
66
|
+
},
|
67
|
+
}
|
68
|
+
|
69
|
+
validations = {
|
70
|
+
}
|
71
|
+
|
72
|
+
@cached_property
|
73
|
+
def additional_properties_type():
|
74
|
+
"""
|
75
|
+
This must be a method because a model may have properties that are
|
76
|
+
of type self, this must run after the class is loaded
|
77
|
+
"""
|
78
|
+
return (bool, date, datetime, dict, float, int, list, str, none_type,) # noqa: E501
|
79
|
+
|
80
|
+
_nullable = False
|
81
|
+
|
82
|
+
@cached_property
|
83
|
+
def openapi_types():
|
84
|
+
"""
|
85
|
+
This must be a method because a model may have properties that are
|
86
|
+
of type self, this must run after the class is loaded
|
87
|
+
|
88
|
+
Returns
|
89
|
+
openapi_types (dict): The key is attribute name
|
90
|
+
and the value is attribute type.
|
91
|
+
"""
|
92
|
+
return {
|
93
|
+
'interval': (str,), # noqa: E501
|
94
|
+
'plan': (str,), # noqa: E501
|
95
|
+
'currency': (str,), # noqa: E501
|
96
|
+
'return_to': (str,), # noqa: E501
|
97
|
+
}
|
98
|
+
|
99
|
+
@cached_property
|
100
|
+
def discriminator():
|
101
|
+
return None
|
102
|
+
|
103
|
+
|
104
|
+
attribute_map = {
|
105
|
+
'interval': 'interval', # noqa: E501
|
106
|
+
'plan': 'plan', # noqa: E501
|
107
|
+
'currency': 'currency', # noqa: E501
|
108
|
+
'return_to': 'return_to', # noqa: E501
|
109
|
+
}
|
110
|
+
|
111
|
+
read_only_vars = {
|
112
|
+
}
|
113
|
+
|
114
|
+
_composed_schemas = {}
|
115
|
+
|
116
|
+
@classmethod
|
117
|
+
@convert_js_args_to_python_args
|
118
|
+
def _from_openapi_data(cls, interval, plan, *args, **kwargs): # noqa: E501
|
119
|
+
"""CreateWorkspaceSubscriptionBody - a model defined in OpenAPI
|
120
|
+
|
121
|
+
Args:
|
122
|
+
interval (str): monthly Monthly yearly Yearly
|
123
|
+
plan (str):
|
124
|
+
|
125
|
+
Keyword Args:
|
126
|
+
_check_type (bool): if True, values for parameters in openapi_types
|
127
|
+
will be type checked and a TypeError will be
|
128
|
+
raised if the wrong type is input.
|
129
|
+
Defaults to True
|
130
|
+
_path_to_item (tuple/list): This is a list of keys or values to
|
131
|
+
drill down to the model in received_data
|
132
|
+
when deserializing a response
|
133
|
+
_spec_property_naming (bool): True if the variable names in the input data
|
134
|
+
are serialized names, as specified in the OpenAPI document.
|
135
|
+
False if the variable names in the input data
|
136
|
+
are pythonic names, e.g. snake case (default)
|
137
|
+
_configuration (Configuration): the instance to use when
|
138
|
+
deserializing a file_type parameter.
|
139
|
+
If passed, type conversion is attempted
|
140
|
+
If omitted no type conversion is done.
|
141
|
+
_visited_composed_classes (tuple): This stores a tuple of
|
142
|
+
classes that we have traveled through so that
|
143
|
+
if we see that class again we will not use its
|
144
|
+
discriminator again.
|
145
|
+
When traveling through a discriminator, the
|
146
|
+
composed schema that is
|
147
|
+
is traveled through is added to this set.
|
148
|
+
For example if Animal has a discriminator
|
149
|
+
petType and we pass in "Dog", and the class Dog
|
150
|
+
allOf includes Animal, we move through Animal
|
151
|
+
once using the discriminator, and pick Dog.
|
152
|
+
Then in Dog, we will make an instance of the
|
153
|
+
Animal class but this time we won't travel
|
154
|
+
through its discriminator because we passed in
|
155
|
+
_visited_composed_classes = (Animal,)
|
156
|
+
currency (str): usd USD eur Euro. [optional] # noqa: E501
|
157
|
+
return_to (str): [optional] # noqa: E501
|
158
|
+
"""
|
159
|
+
|
160
|
+
_check_type = kwargs.pop('_check_type', True)
|
161
|
+
_spec_property_naming = kwargs.pop('_spec_property_naming', True)
|
162
|
+
_path_to_item = kwargs.pop('_path_to_item', ())
|
163
|
+
_configuration = kwargs.pop('_configuration', None)
|
164
|
+
_visited_composed_classes = kwargs.pop('_visited_composed_classes', ())
|
165
|
+
|
166
|
+
self = super(OpenApiModel, cls).__new__(cls)
|
167
|
+
|
168
|
+
if args:
|
169
|
+
for arg in args:
|
170
|
+
if isinstance(arg, dict):
|
171
|
+
kwargs.update(arg)
|
172
|
+
else:
|
173
|
+
raise ApiTypeError(
|
174
|
+
"Invalid positional arguments=%s passed to %s. Remove those invalid positional arguments." % (
|
175
|
+
args,
|
176
|
+
self.__class__.__name__,
|
177
|
+
),
|
178
|
+
path_to_item=_path_to_item,
|
179
|
+
valid_classes=(self.__class__,),
|
180
|
+
)
|
181
|
+
|
182
|
+
self._data_store = {}
|
183
|
+
self._check_type = _check_type
|
184
|
+
self._spec_property_naming = _spec_property_naming
|
185
|
+
self._path_to_item = _path_to_item
|
186
|
+
self._configuration = _configuration
|
187
|
+
self._visited_composed_classes = _visited_composed_classes + (self.__class__,)
|
188
|
+
|
189
|
+
self.interval = interval
|
190
|
+
self.plan = plan
|
191
|
+
for var_name, var_value in kwargs.items():
|
192
|
+
if var_name not in self.attribute_map and \
|
193
|
+
self._configuration is not None and \
|
194
|
+
self._configuration.discard_unknown_keys and \
|
195
|
+
self.additional_properties_type is None:
|
196
|
+
# discard variable.
|
197
|
+
continue
|
198
|
+
setattr(self, var_name, var_value)
|
199
|
+
return self
|
200
|
+
|
201
|
+
required_properties = set([
|
202
|
+
'_data_store',
|
203
|
+
'_check_type',
|
204
|
+
'_spec_property_naming',
|
205
|
+
'_path_to_item',
|
206
|
+
'_configuration',
|
207
|
+
'_visited_composed_classes',
|
208
|
+
])
|
209
|
+
|
210
|
+
@convert_js_args_to_python_args
|
211
|
+
def __init__(self, interval, plan, *args, **kwargs): # noqa: E501
|
212
|
+
"""CreateWorkspaceSubscriptionBody - a model defined in OpenAPI
|
213
|
+
|
214
|
+
Args:
|
215
|
+
interval (str): monthly Monthly yearly Yearly
|
216
|
+
plan (str):
|
217
|
+
|
218
|
+
Keyword Args:
|
219
|
+
_check_type (bool): if True, values for parameters in openapi_types
|
220
|
+
will be type checked and a TypeError will be
|
221
|
+
raised if the wrong type is input.
|
222
|
+
Defaults to True
|
223
|
+
_path_to_item (tuple/list): This is a list of keys or values to
|
224
|
+
drill down to the model in received_data
|
225
|
+
when deserializing a response
|
226
|
+
_spec_property_naming (bool): True if the variable names in the input data
|
227
|
+
are serialized names, as specified in the OpenAPI document.
|
228
|
+
False if the variable names in the input data
|
229
|
+
are pythonic names, e.g. snake case (default)
|
230
|
+
_configuration (Configuration): the instance to use when
|
231
|
+
deserializing a file_type parameter.
|
232
|
+
If passed, type conversion is attempted
|
233
|
+
If omitted no type conversion is done.
|
234
|
+
_visited_composed_classes (tuple): This stores a tuple of
|
235
|
+
classes that we have traveled through so that
|
236
|
+
if we see that class again we will not use its
|
237
|
+
discriminator again.
|
238
|
+
When traveling through a discriminator, the
|
239
|
+
composed schema that is
|
240
|
+
is traveled through is added to this set.
|
241
|
+
For example if Animal has a discriminator
|
242
|
+
petType and we pass in "Dog", and the class Dog
|
243
|
+
allOf includes Animal, we move through Animal
|
244
|
+
once using the discriminator, and pick Dog.
|
245
|
+
Then in Dog, we will make an instance of the
|
246
|
+
Animal class but this time we won't travel
|
247
|
+
through its discriminator because we passed in
|
248
|
+
_visited_composed_classes = (Animal,)
|
249
|
+
currency (str): usd USD eur Euro. [optional] # noqa: E501
|
250
|
+
return_to (str): [optional] # noqa: E501
|
251
|
+
"""
|
252
|
+
|
253
|
+
_check_type = kwargs.pop('_check_type', True)
|
254
|
+
_spec_property_naming = kwargs.pop('_spec_property_naming', False)
|
255
|
+
_path_to_item = kwargs.pop('_path_to_item', ())
|
256
|
+
_configuration = kwargs.pop('_configuration', None)
|
257
|
+
_visited_composed_classes = kwargs.pop('_visited_composed_classes', ())
|
258
|
+
|
259
|
+
if args:
|
260
|
+
for arg in args:
|
261
|
+
if isinstance(arg, dict):
|
262
|
+
kwargs.update(arg)
|
263
|
+
else:
|
264
|
+
raise ApiTypeError(
|
265
|
+
"Invalid positional arguments=%s passed to %s. Remove those invalid positional arguments." % (
|
266
|
+
args,
|
267
|
+
self.__class__.__name__,
|
268
|
+
),
|
269
|
+
path_to_item=_path_to_item,
|
270
|
+
valid_classes=(self.__class__,),
|
271
|
+
)
|
272
|
+
|
273
|
+
self._data_store = {}
|
274
|
+
self._check_type = _check_type
|
275
|
+
self._spec_property_naming = _spec_property_naming
|
276
|
+
self._path_to_item = _path_to_item
|
277
|
+
self._configuration = _configuration
|
278
|
+
self._visited_composed_classes = _visited_composed_classes + (self.__class__,)
|
279
|
+
|
280
|
+
self.interval = interval
|
281
|
+
self.plan = plan
|
282
|
+
for var_name, var_value in kwargs.items():
|
283
|
+
if var_name not in self.attribute_map and \
|
284
|
+
self._configuration is not None and \
|
285
|
+
self._configuration.discard_unknown_keys and \
|
286
|
+
self.additional_properties_type is None:
|
287
|
+
# discard variable.
|
288
|
+
continue
|
289
|
+
setattr(self, var_name, var_value)
|
290
|
+
if var_name in self.read_only_vars:
|
291
|
+
raise ApiAttributeError(f"`{var_name}` is a read-only attribute. Use `from_openapi_data` to instantiate "
|
292
|
+
f"class with read only attributes.")
|
@@ -3,7 +3,7 @@
|
|
3
3
|
|
4
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
5
|
|
6
|
-
The version of the OpenAPI document: v1.
|
6
|
+
The version of the OpenAPI document: v1.6.2
|
7
7
|
Contact: support@ory.sh
|
8
8
|
Generated by: https://openapi-generator.tech
|
9
9
|
"""
|