From 1c79202b2f3b0e5ff3bbe24cc08056258a520362 Mon Sep 17 00:00:00 2001 From: Concourse Date: Fri, 30 Jun 2023 09:58:35 +0000 Subject: [PATCH] Update SDK --- lydia.json | 2 +- sdk/README.md | 4 +-- sdk/finbourne_identity/__init__.py | 4 +-- sdk/finbourne_identity/__version__.py | 2 +- .../api/application_metadata_api.py | 4 +-- .../api/applications_api.py | 12 ++++---- .../api/authentication_api.py | 12 ++++---- .../api/identity_provider_api.py | 6 ++-- sdk/finbourne_identity/api/me_api.py | 6 ++-- .../api/personal_authentication_tokens_api.py | 8 +++--- sdk/finbourne_identity/api/roles_api.py | 18 ++++++------ sdk/finbourne_identity/api/tokens_api.py | 4 +-- sdk/finbourne_identity/api/users_api.py | 28 +++++++++---------- sdk/finbourne_identity/api_client.py | 4 +-- sdk/finbourne_identity/configuration.py | 6 ++-- sdk/finbourne_identity/exceptions.py | 2 +- sdk/finbourne_identity/models/__init__.py | 2 +- .../models/access_controlled_action.py | 2 +- .../models/access_controlled_resource.py | 2 +- sdk/finbourne_identity/models/action_id.py | 2 +- .../models/add_scim_response.py | 2 +- sdk/finbourne_identity/models/api_key.py | 2 +- .../models/authentication_information.py | 2 +- .../models/create_api_key.py | 2 +- .../models/create_application_request.py | 2 +- .../models/create_role_request.py | 2 +- .../models/create_user_request.py | 2 +- .../models/created_api_key.py | 2 +- .../models/current_user_response.py | 2 +- sdk/finbourne_identity/models/error_detail.py | 2 +- .../models/id_selector_definition.py | 2 +- .../models/identifier_part_schema.py | 2 +- sdk/finbourne_identity/models/link.py | 2 +- .../models/list_users_response.py | 2 +- .../models/lusid_problem_details.py | 2 +- .../lusid_validation_problem_details.py | 2 +- .../models/o_auth_application.py | 2 +- ...urce_list_of_access_controlled_resource.py | 2 +- sdk/finbourne_identity/models/role_id.py | 2 +- .../models/role_response.py | 2 +- sdk/finbourne_identity/models/set_password.py | 2 +- .../models/set_password_response.py | 2 +- .../models/support_access_expiry.py | 2 +- .../models/support_access_expiry_with_role.py | 2 +- .../models/support_access_request.py | 2 +- .../models/support_access_response.py | 2 +- sdk/finbourne_identity/models/support_role.py | 2 +- .../models/support_roles_response.py | 2 +- .../models/temporary_password.py | 2 +- .../models/update_role_request.py | 2 +- .../models/update_user_request.py | 2 +- .../models/user_response.py | 2 +- sdk/finbourne_identity/models/user_summary.py | 2 +- sdk/finbourne_identity/rest.py | 2 +- 54 files changed, 99 insertions(+), 99 deletions(-) diff --git a/lydia.json b/lydia.json index 2c5a0485b..1374b00c4 100644 --- a/lydia.json +++ b/lydia.json @@ -8,7 +8,7 @@ "url": "https://www.finbourne.com", "email": "info@finbourne.com" }, - "version": "0.0.2463", + "version": "0.0.2465", "x-logo": { "url": "https://www.lusid.com/app/assets/logo_white.png", "backgroundColor": "#415464" diff --git a/sdk/README.md b/sdk/README.md index 0c891333e..f70c74de6 100644 --- a/sdk/README.md +++ b/sdk/README.md @@ -3,8 +3,8 @@ FINBOURNE Technology This Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project: -- API version: 0.0.2463 -- Package version: 0.0.2463 +- API version: 0.0.2465 +- Package version: 0.0.2465 - Build package: org.openapitools.codegen.languages.PythonLegacyClientCodegen For more information, please visit [https://www.finbourne.com](https://www.finbourne.com) diff --git a/sdk/finbourne_identity/__init__.py b/sdk/finbourne_identity/__init__.py index 660873376..bf1ddab88 100644 --- a/sdk/finbourne_identity/__init__.py +++ b/sdk/finbourne_identity/__init__.py @@ -7,7 +7,7 @@ FINBOURNE Technology # noqa: E501 - The version of the OpenAPI document: 0.0.2463 + The version of the OpenAPI document: 0.0.2465 Contact: info@finbourne.com Generated by: https://openapi-generator.tech """ @@ -15,7 +15,7 @@ from __future__ import absolute_import -__version__ = "0.0.2463" +__version__ = "0.0.2465" # import apis into sdk package from finbourne_identity.api.application_metadata_api import ApplicationMetadataApi diff --git a/sdk/finbourne_identity/__version__.py b/sdk/finbourne_identity/__version__.py index 05f488d13..e43899cbe 100644 --- a/sdk/finbourne_identity/__version__.py +++ b/sdk/finbourne_identity/__version__.py @@ -1 +1 @@ -__version__ = "0.0.2463" +__version__ = "0.0.2465" diff --git a/sdk/finbourne_identity/api/application_metadata_api.py b/sdk/finbourne_identity/api/application_metadata_api.py index 69439a95d..94bd23230 100644 --- a/sdk/finbourne_identity/api/application_metadata_api.py +++ b/sdk/finbourne_identity/api/application_metadata_api.py @@ -5,7 +5,7 @@ FINBOURNE Technology # noqa: E501 - The version of the OpenAPI document: 0.0.2463 + The version of the OpenAPI document: 0.0.2465 Contact: info@finbourne.com Generated by: https://openapi-generator.tech """ @@ -145,7 +145,7 @@ def list_access_controlled_resources_with_http_info(self, **kwargs): # noqa: E5 # set the LUSID header header_params['X-LUSID-SDK-Language'] = 'Python' - header_params['X-LUSID-SDK-Version'] = '0.0.2463' + header_params['X-LUSID-SDK-Version'] = '0.0.2465' # Authentication setting auth_settings = ['oauth2'] # noqa: E501 diff --git a/sdk/finbourne_identity/api/applications_api.py b/sdk/finbourne_identity/api/applications_api.py index 1a6b6e6d3..51bdd608c 100644 --- a/sdk/finbourne_identity/api/applications_api.py +++ b/sdk/finbourne_identity/api/applications_api.py @@ -5,7 +5,7 @@ FINBOURNE Technology # noqa: E501 - The version of the OpenAPI document: 0.0.2463 + The version of the OpenAPI document: 0.0.2465 Contact: info@finbourne.com Generated by: https://openapi-generator.tech """ @@ -157,7 +157,7 @@ def create_application_with_http_info(self, **kwargs): # noqa: E501 # set the LUSID header header_params['X-LUSID-SDK-Language'] = 'Python' - header_params['X-LUSID-SDK-Version'] = '0.0.2463' + header_params['X-LUSID-SDK-Version'] = '0.0.2465' # Authentication setting auth_settings = ['oauth2'] # noqa: E501 @@ -309,7 +309,7 @@ def delete_application_with_http_info(self, id, **kwargs): # noqa: E501 # set the LUSID header header_params['X-LUSID-SDK-Language'] = 'Python' - header_params['X-LUSID-SDK-Version'] = '0.0.2463' + header_params['X-LUSID-SDK-Version'] = '0.0.2465' # Authentication setting auth_settings = ['oauth2'] # noqa: E501 @@ -465,7 +465,7 @@ def get_application_with_http_info(self, id, **kwargs): # noqa: E501 # set the LUSID header header_params['X-LUSID-SDK-Language'] = 'Python' - header_params['X-LUSID-SDK-Version'] = '0.0.2463' + header_params['X-LUSID-SDK-Version'] = '0.0.2465' # Authentication setting auth_settings = ['oauth2'] # noqa: E501 @@ -599,7 +599,7 @@ def list_applications_with_http_info(self, **kwargs): # noqa: E501 # set the LUSID header header_params['X-LUSID-SDK-Language'] = 'Python' - header_params['X-LUSID-SDK-Version'] = '0.0.2463' + header_params['X-LUSID-SDK-Version'] = '0.0.2465' # Authentication setting auth_settings = ['oauth2'] # noqa: E501 @@ -750,7 +750,7 @@ def rotate_application_secrets_with_http_info(self, id, **kwargs): # noqa: E501 # set the LUSID header header_params['X-LUSID-SDK-Language'] = 'Python' - header_params['X-LUSID-SDK-Version'] = '0.0.2463' + header_params['X-LUSID-SDK-Version'] = '0.0.2465' # Authentication setting auth_settings = ['oauth2'] # noqa: E501 diff --git a/sdk/finbourne_identity/api/authentication_api.py b/sdk/finbourne_identity/api/authentication_api.py index 9862538f1..749e82b75 100644 --- a/sdk/finbourne_identity/api/authentication_api.py +++ b/sdk/finbourne_identity/api/authentication_api.py @@ -5,7 +5,7 @@ FINBOURNE Technology # noqa: E501 - The version of the OpenAPI document: 0.0.2463 + The version of the OpenAPI document: 0.0.2465 Contact: info@finbourne.com Generated by: https://openapi-generator.tech """ @@ -149,7 +149,7 @@ def get_authentication_information_with_http_info(self, **kwargs): # noqa: E501 # set the LUSID header header_params['X-LUSID-SDK-Language'] = 'Python' - header_params['X-LUSID-SDK-Version'] = '0.0.2463' + header_params['X-LUSID-SDK-Version'] = '0.0.2465' # Authentication setting auth_settings = ['oauth2'] # noqa: E501 @@ -295,7 +295,7 @@ def get_support_access_history_with_http_info(self, **kwargs): # noqa: E501 # set the LUSID header header_params['X-LUSID-SDK-Language'] = 'Python' - header_params['X-LUSID-SDK-Version'] = '0.0.2463' + header_params['X-LUSID-SDK-Version'] = '0.0.2465' # Authentication setting auth_settings = ['oauth2'] # noqa: E501 @@ -428,7 +428,7 @@ def get_support_roles_with_http_info(self, **kwargs): # noqa: E501 # set the LUSID header header_params['X-LUSID-SDK-Language'] = 'Python' - header_params['X-LUSID-SDK-Version'] = '0.0.2463' + header_params['X-LUSID-SDK-Version'] = '0.0.2465' # Authentication setting auth_settings = ['oauth2'] # noqa: E501 @@ -574,7 +574,7 @@ def grant_support_access_with_http_info(self, support_access_request, **kwargs): # set the LUSID header header_params['X-LUSID-SDK-Language'] = 'Python' - header_params['X-LUSID-SDK-Version'] = '0.0.2463' + header_params['X-LUSID-SDK-Version'] = '0.0.2465' # Authentication setting auth_settings = ['oauth2'] # noqa: E501 @@ -707,7 +707,7 @@ def invalidate_support_access_with_http_info(self, **kwargs): # noqa: E501 # set the LUSID header header_params['X-LUSID-SDK-Language'] = 'Python' - header_params['X-LUSID-SDK-Version'] = '0.0.2463' + header_params['X-LUSID-SDK-Version'] = '0.0.2465' # Authentication setting auth_settings = ['oauth2'] # noqa: E501 diff --git a/sdk/finbourne_identity/api/identity_provider_api.py b/sdk/finbourne_identity/api/identity_provider_api.py index 7170f39d4..e89223b86 100644 --- a/sdk/finbourne_identity/api/identity_provider_api.py +++ b/sdk/finbourne_identity/api/identity_provider_api.py @@ -5,7 +5,7 @@ FINBOURNE Technology # noqa: E501 - The version of the OpenAPI document: 0.0.2463 + The version of the OpenAPI document: 0.0.2465 Contact: info@finbourne.com Generated by: https://openapi-generator.tech """ @@ -160,7 +160,7 @@ def add_scim_with_http_info(self, **kwargs): # noqa: E501 # set the LUSID header header_params['X-LUSID-SDK-Language'] = 'Python' - header_params['X-LUSID-SDK-Version'] = '0.0.2463' + header_params['X-LUSID-SDK-Version'] = '0.0.2465' # Authentication setting auth_settings = ['oauth2'] # noqa: E501 @@ -293,7 +293,7 @@ def remove_scim_with_http_info(self, **kwargs): # noqa: E501 # set the LUSID header header_params['X-LUSID-SDK-Language'] = 'Python' - header_params['X-LUSID-SDK-Version'] = '0.0.2463' + header_params['X-LUSID-SDK-Version'] = '0.0.2465' # Authentication setting auth_settings = ['oauth2'] # noqa: E501 diff --git a/sdk/finbourne_identity/api/me_api.py b/sdk/finbourne_identity/api/me_api.py index a08a058e9..cbe2b7d69 100644 --- a/sdk/finbourne_identity/api/me_api.py +++ b/sdk/finbourne_identity/api/me_api.py @@ -5,7 +5,7 @@ FINBOURNE Technology # noqa: E501 - The version of the OpenAPI document: 0.0.2463 + The version of the OpenAPI document: 0.0.2465 Contact: info@finbourne.com Generated by: https://openapi-generator.tech """ @@ -148,7 +148,7 @@ def get_user_info_with_http_info(self, **kwargs): # noqa: E501 # set the LUSID header header_params['X-LUSID-SDK-Language'] = 'Python' - header_params['X-LUSID-SDK-Version'] = '0.0.2463' + header_params['X-LUSID-SDK-Version'] = '0.0.2465' # Authentication setting auth_settings = ['oauth2'] # noqa: E501 @@ -294,7 +294,7 @@ def set_password_with_http_info(self, set_password, **kwargs): # noqa: E501 # set the LUSID header header_params['X-LUSID-SDK-Language'] = 'Python' - header_params['X-LUSID-SDK-Version'] = '0.0.2463' + header_params['X-LUSID-SDK-Version'] = '0.0.2465' # Authentication setting auth_settings = ['oauth2'] # noqa: E501 diff --git a/sdk/finbourne_identity/api/personal_authentication_tokens_api.py b/sdk/finbourne_identity/api/personal_authentication_tokens_api.py index 0a3b67468..f1f974b4d 100644 --- a/sdk/finbourne_identity/api/personal_authentication_tokens_api.py +++ b/sdk/finbourne_identity/api/personal_authentication_tokens_api.py @@ -5,7 +5,7 @@ FINBOURNE Technology # noqa: E501 - The version of the OpenAPI document: 0.0.2463 + The version of the OpenAPI document: 0.0.2465 Contact: info@finbourne.com Generated by: https://openapi-generator.tech """ @@ -162,7 +162,7 @@ def create_api_key_with_http_info(self, create_api_key, **kwargs): # noqa: E501 # set the LUSID header header_params['X-LUSID-SDK-Language'] = 'Python' - header_params['X-LUSID-SDK-Version'] = '0.0.2463' + header_params['X-LUSID-SDK-Version'] = '0.0.2465' # Authentication setting auth_settings = ['oauth2'] # noqa: E501 @@ -314,7 +314,7 @@ def delete_api_key_with_http_info(self, id, **kwargs): # noqa: E501 # set the LUSID header header_params['X-LUSID-SDK-Language'] = 'Python' - header_params['X-LUSID-SDK-Version'] = '0.0.2463' + header_params['X-LUSID-SDK-Version'] = '0.0.2465' # Authentication setting auth_settings = ['oauth2'] # noqa: E501 @@ -447,7 +447,7 @@ def list_own_api_keys_with_http_info(self, **kwargs): # noqa: E501 # set the LUSID header header_params['X-LUSID-SDK-Language'] = 'Python' - header_params['X-LUSID-SDK-Version'] = '0.0.2463' + header_params['X-LUSID-SDK-Version'] = '0.0.2465' # Authentication setting auth_settings = ['oauth2'] # noqa: E501 diff --git a/sdk/finbourne_identity/api/roles_api.py b/sdk/finbourne_identity/api/roles_api.py index 9c4fe5f37..af45198cf 100644 --- a/sdk/finbourne_identity/api/roles_api.py +++ b/sdk/finbourne_identity/api/roles_api.py @@ -5,7 +5,7 @@ FINBOURNE Technology # noqa: E501 - The version of the OpenAPI document: 0.0.2463 + The version of the OpenAPI document: 0.0.2465 Contact: info@finbourne.com Generated by: https://openapi-generator.tech """ @@ -187,7 +187,7 @@ def add_user_to_role_with_http_info(self, id, user_id, **kwargs): # noqa: E501 # set the LUSID header header_params['X-LUSID-SDK-Language'] = 'Python' - header_params['X-LUSID-SDK-Version'] = '0.0.2463' + header_params['X-LUSID-SDK-Version'] = '0.0.2465' # Authentication setting auth_settings = ['oauth2'] # noqa: E501 @@ -331,7 +331,7 @@ def create_role_with_http_info(self, create_role_request, **kwargs): # noqa: E5 # set the LUSID header header_params['X-LUSID-SDK-Language'] = 'Python' - header_params['X-LUSID-SDK-Version'] = '0.0.2463' + header_params['X-LUSID-SDK-Version'] = '0.0.2465' # Authentication setting auth_settings = ['oauth2'] # noqa: E501 @@ -484,7 +484,7 @@ def delete_role_with_http_info(self, id, **kwargs): # noqa: E501 # set the LUSID header header_params['X-LUSID-SDK-Language'] = 'Python' - header_params['X-LUSID-SDK-Version'] = '0.0.2463' + header_params['X-LUSID-SDK-Version'] = '0.0.2465' # Authentication setting auth_settings = ['oauth2'] # noqa: E501 @@ -633,7 +633,7 @@ def get_role_with_http_info(self, id, **kwargs): # noqa: E501 # set the LUSID header header_params['X-LUSID-SDK-Language'] = 'Python' - header_params['X-LUSID-SDK-Version'] = '0.0.2463' + header_params['X-LUSID-SDK-Version'] = '0.0.2465' # Authentication setting auth_settings = ['oauth2'] # noqa: E501 @@ -767,7 +767,7 @@ def list_roles_with_http_info(self, **kwargs): # noqa: E501 # set the LUSID header header_params['X-LUSID-SDK-Language'] = 'Python' - header_params['X-LUSID-SDK-Version'] = '0.0.2463' + header_params['X-LUSID-SDK-Version'] = '0.0.2465' # Authentication setting auth_settings = ['oauth2'] # noqa: E501 @@ -918,7 +918,7 @@ def list_users_in_role_with_http_info(self, id, **kwargs): # noqa: E501 # set the LUSID header header_params['X-LUSID-SDK-Language'] = 'Python' - header_params['X-LUSID-SDK-Version'] = '0.0.2463' + header_params['X-LUSID-SDK-Version'] = '0.0.2465' # Authentication setting auth_settings = ['oauth2'] # noqa: E501 @@ -1089,7 +1089,7 @@ def remove_user_from_role_with_http_info(self, id, user_id, **kwargs): # noqa: # set the LUSID header header_params['X-LUSID-SDK-Language'] = 'Python' - header_params['X-LUSID-SDK-Version'] = '0.0.2463' + header_params['X-LUSID-SDK-Version'] = '0.0.2465' # Authentication setting auth_settings = ['oauth2'] # noqa: E501 @@ -1248,7 +1248,7 @@ def update_role_with_http_info(self, id, **kwargs): # noqa: E501 # set the LUSID header header_params['X-LUSID-SDK-Language'] = 'Python' - header_params['X-LUSID-SDK-Version'] = '0.0.2463' + header_params['X-LUSID-SDK-Version'] = '0.0.2465' # Authentication setting auth_settings = ['oauth2'] # noqa: E501 diff --git a/sdk/finbourne_identity/api/tokens_api.py b/sdk/finbourne_identity/api/tokens_api.py index 872b97f87..9475e2df2 100644 --- a/sdk/finbourne_identity/api/tokens_api.py +++ b/sdk/finbourne_identity/api/tokens_api.py @@ -5,7 +5,7 @@ FINBOURNE Technology # noqa: E501 - The version of the OpenAPI document: 0.0.2463 + The version of the OpenAPI document: 0.0.2465 Contact: info@finbourne.com Generated by: https://openapi-generator.tech """ @@ -144,7 +144,7 @@ def invalidate_token_with_http_info(self, **kwargs): # noqa: E501 # set the LUSID header header_params['X-LUSID-SDK-Language'] = 'Python' - header_params['X-LUSID-SDK-Version'] = '0.0.2463' + header_params['X-LUSID-SDK-Version'] = '0.0.2465' # Authentication setting auth_settings = ['oauth2'] # noqa: E501 diff --git a/sdk/finbourne_identity/api/users_api.py b/sdk/finbourne_identity/api/users_api.py index 3f5177911..5d0b5ec6e 100644 --- a/sdk/finbourne_identity/api/users_api.py +++ b/sdk/finbourne_identity/api/users_api.py @@ -5,7 +5,7 @@ FINBOURNE Technology # noqa: E501 - The version of the OpenAPI document: 0.0.2463 + The version of the OpenAPI document: 0.0.2465 Contact: info@finbourne.com Generated by: https://openapi-generator.tech """ @@ -171,7 +171,7 @@ def create_user_with_http_info(self, create_user_request, **kwargs): # noqa: E5 # set the LUSID header header_params['X-LUSID-SDK-Language'] = 'Python' - header_params['X-LUSID-SDK-Version'] = '0.0.2463' + header_params['X-LUSID-SDK-Version'] = '0.0.2465' # Authentication setting auth_settings = ['oauth2'] # noqa: E501 @@ -330,7 +330,7 @@ def delete_user_with_http_info(self, id, **kwargs): # noqa: E501 # set the LUSID header header_params['X-LUSID-SDK-Language'] = 'Python' - header_params['X-LUSID-SDK-Version'] = '0.0.2463' + header_params['X-LUSID-SDK-Version'] = '0.0.2465' # Authentication setting auth_settings = ['oauth2'] # noqa: E501 @@ -479,7 +479,7 @@ def expire_password_with_http_info(self, id, **kwargs): # noqa: E501 # set the LUSID header header_params['X-LUSID-SDK-Language'] = 'Python' - header_params['X-LUSID-SDK-Version'] = '0.0.2463' + header_params['X-LUSID-SDK-Version'] = '0.0.2465' # Authentication setting auth_settings = ['oauth2'] # noqa: E501 @@ -624,7 +624,7 @@ def find_users_by_id_with_http_info(self, id, **kwargs): # noqa: E501 # set the LUSID header header_params['X-LUSID-SDK-Language'] = 'Python' - header_params['X-LUSID-SDK-Version'] = '0.0.2463' + header_params['X-LUSID-SDK-Version'] = '0.0.2465' # Authentication setting auth_settings = ['oauth2'] # noqa: E501 @@ -783,7 +783,7 @@ def get_user_with_http_info(self, id, **kwargs): # noqa: E501 # set the LUSID header header_params['X-LUSID-SDK-Language'] = 'Python' - header_params['X-LUSID-SDK-Version'] = '0.0.2463' + header_params['X-LUSID-SDK-Version'] = '0.0.2465' # Authentication setting auth_settings = ['oauth2'] # noqa: E501 @@ -916,7 +916,7 @@ def list_runnable_users_with_http_info(self, **kwargs): # noqa: E501 # set the LUSID header header_params['X-LUSID-SDK-Language'] = 'Python' - header_params['X-LUSID-SDK-Version'] = '0.0.2463' + header_params['X-LUSID-SDK-Version'] = '0.0.2465' # Authentication setting auth_settings = ['oauth2'] # noqa: E501 @@ -1062,7 +1062,7 @@ def list_users_with_http_info(self, **kwargs): # noqa: E501 # set the LUSID header header_params['X-LUSID-SDK-Language'] = 'Python' - header_params['X-LUSID-SDK-Version'] = '0.0.2463' + header_params['X-LUSID-SDK-Version'] = '0.0.2465' # Authentication setting auth_settings = ['oauth2'] # noqa: E501 @@ -1214,7 +1214,7 @@ def reset_factors_with_http_info(self, id, **kwargs): # noqa: E501 # set the LUSID header header_params['X-LUSID-SDK-Language'] = 'Python' - header_params['X-LUSID-SDK-Version'] = '0.0.2463' + header_params['X-LUSID-SDK-Version'] = '0.0.2465' # Authentication setting auth_settings = ['oauth2'] # noqa: E501 @@ -1363,7 +1363,7 @@ def reset_password_with_http_info(self, id, **kwargs): # noqa: E501 # set the LUSID header header_params['X-LUSID-SDK-Language'] = 'Python' - header_params['X-LUSID-SDK-Version'] = '0.0.2463' + header_params['X-LUSID-SDK-Version'] = '0.0.2465' # Authentication setting auth_settings = ['oauth2'] # noqa: E501 @@ -1512,7 +1512,7 @@ def send_activation_email_with_http_info(self, id, **kwargs): # noqa: E501 # set the LUSID header header_params['X-LUSID-SDK-Language'] = 'Python' - header_params['X-LUSID-SDK-Version'] = '0.0.2463' + header_params['X-LUSID-SDK-Version'] = '0.0.2465' # Authentication setting auth_settings = ['oauth2'] # noqa: E501 @@ -1661,7 +1661,7 @@ def suspend_user_with_http_info(self, id, **kwargs): # noqa: E501 # set the LUSID header header_params['X-LUSID-SDK-Language'] = 'Python' - header_params['X-LUSID-SDK-Version'] = '0.0.2463' + header_params['X-LUSID-SDK-Version'] = '0.0.2465' # Authentication setting auth_settings = ['oauth2'] # noqa: E501 @@ -1810,7 +1810,7 @@ def unlock_user_with_http_info(self, id, **kwargs): # noqa: E501 # set the LUSID header header_params['X-LUSID-SDK-Language'] = 'Python' - header_params['X-LUSID-SDK-Version'] = '0.0.2463' + header_params['X-LUSID-SDK-Version'] = '0.0.2465' # Authentication setting auth_settings = ['oauth2'] # noqa: E501 @@ -1973,7 +1973,7 @@ def update_user_with_http_info(self, id, update_user_request, **kwargs): # noqa # set the LUSID header header_params['X-LUSID-SDK-Language'] = 'Python' - header_params['X-LUSID-SDK-Version'] = '0.0.2463' + header_params['X-LUSID-SDK-Version'] = '0.0.2465' # Authentication setting auth_settings = ['oauth2'] # noqa: E501 diff --git a/sdk/finbourne_identity/api_client.py b/sdk/finbourne_identity/api_client.py index 2a43da7a4..9d8a776a3 100644 --- a/sdk/finbourne_identity/api_client.py +++ b/sdk/finbourne_identity/api_client.py @@ -4,7 +4,7 @@ FINBOURNE Technology # noqa: E501 - The version of the OpenAPI document: 0.0.2463 + The version of the OpenAPI document: 0.0.2465 Contact: info@finbourne.com Generated by: https://openapi-generator.tech """ @@ -79,7 +79,7 @@ def __init__(self, configuration=None, header_name=None, header_value=None, self.default_headers[header_name] = header_value self.cookie = cookie # Set default User-Agent. - self.user_agent = 'OpenAPI-Generator/0.0.2463/python' + self.user_agent = 'OpenAPI-Generator/0.0.2465/python' self.client_side_validation = configuration.client_side_validation def __enter__(self): diff --git a/sdk/finbourne_identity/configuration.py b/sdk/finbourne_identity/configuration.py index a558ae342..1084c63fe 100644 --- a/sdk/finbourne_identity/configuration.py +++ b/sdk/finbourne_identity/configuration.py @@ -5,7 +5,7 @@ FINBOURNE Technology # noqa: E501 - The version of the OpenAPI document: 0.0.2463 + The version of the OpenAPI document: 0.0.2465 Contact: info@finbourne.com Generated by: https://openapi-generator.tech """ @@ -396,8 +396,8 @@ def to_debug_report(self): return "Python SDK Debug Report:\n"\ "OS: {env}\n"\ "Python Version: {pyversion}\n"\ - "Version of the API: 0.0.2463\n"\ - "SDK Package Version: 0.0.2463".\ + "Version of the API: 0.0.2465\n"\ + "SDK Package Version: 0.0.2465".\ format(env=sys.platform, pyversion=sys.version) def get_host_settings(self): diff --git a/sdk/finbourne_identity/exceptions.py b/sdk/finbourne_identity/exceptions.py index 34411a1b5..201d7141c 100644 --- a/sdk/finbourne_identity/exceptions.py +++ b/sdk/finbourne_identity/exceptions.py @@ -5,7 +5,7 @@ FINBOURNE Technology # noqa: E501 - The version of the OpenAPI document: 0.0.2463 + The version of the OpenAPI document: 0.0.2465 Contact: info@finbourne.com Generated by: https://openapi-generator.tech """ diff --git a/sdk/finbourne_identity/models/__init__.py b/sdk/finbourne_identity/models/__init__.py index 210790ba7..2423990b2 100644 --- a/sdk/finbourne_identity/models/__init__.py +++ b/sdk/finbourne_identity/models/__init__.py @@ -6,7 +6,7 @@ FINBOURNE Technology # noqa: E501 - The version of the OpenAPI document: 0.0.2463 + The version of the OpenAPI document: 0.0.2465 Contact: info@finbourne.com Generated by: https://openapi-generator.tech """ diff --git a/sdk/finbourne_identity/models/access_controlled_action.py b/sdk/finbourne_identity/models/access_controlled_action.py index 1320b379b..0dc0c0fb6 100644 --- a/sdk/finbourne_identity/models/access_controlled_action.py +++ b/sdk/finbourne_identity/models/access_controlled_action.py @@ -5,7 +5,7 @@ FINBOURNE Technology # noqa: E501 - The version of the OpenAPI document: 0.0.2463 + The version of the OpenAPI document: 0.0.2465 Contact: info@finbourne.com Generated by: https://openapi-generator.tech """ diff --git a/sdk/finbourne_identity/models/access_controlled_resource.py b/sdk/finbourne_identity/models/access_controlled_resource.py index 94b2147ec..81d15c949 100644 --- a/sdk/finbourne_identity/models/access_controlled_resource.py +++ b/sdk/finbourne_identity/models/access_controlled_resource.py @@ -5,7 +5,7 @@ FINBOURNE Technology # noqa: E501 - The version of the OpenAPI document: 0.0.2463 + The version of the OpenAPI document: 0.0.2465 Contact: info@finbourne.com Generated by: https://openapi-generator.tech """ diff --git a/sdk/finbourne_identity/models/action_id.py b/sdk/finbourne_identity/models/action_id.py index 64eac3505..d7a8e1066 100644 --- a/sdk/finbourne_identity/models/action_id.py +++ b/sdk/finbourne_identity/models/action_id.py @@ -5,7 +5,7 @@ FINBOURNE Technology # noqa: E501 - The version of the OpenAPI document: 0.0.2463 + The version of the OpenAPI document: 0.0.2465 Contact: info@finbourne.com Generated by: https://openapi-generator.tech """ diff --git a/sdk/finbourne_identity/models/add_scim_response.py b/sdk/finbourne_identity/models/add_scim_response.py index b3751d040..cb459847d 100644 --- a/sdk/finbourne_identity/models/add_scim_response.py +++ b/sdk/finbourne_identity/models/add_scim_response.py @@ -5,7 +5,7 @@ FINBOURNE Technology # noqa: E501 - The version of the OpenAPI document: 0.0.2463 + The version of the OpenAPI document: 0.0.2465 Contact: info@finbourne.com Generated by: https://openapi-generator.tech """ diff --git a/sdk/finbourne_identity/models/api_key.py b/sdk/finbourne_identity/models/api_key.py index 6e2fc91b8..81c3b7825 100644 --- a/sdk/finbourne_identity/models/api_key.py +++ b/sdk/finbourne_identity/models/api_key.py @@ -5,7 +5,7 @@ FINBOURNE Technology # noqa: E501 - The version of the OpenAPI document: 0.0.2463 + The version of the OpenAPI document: 0.0.2465 Contact: info@finbourne.com Generated by: https://openapi-generator.tech """ diff --git a/sdk/finbourne_identity/models/authentication_information.py b/sdk/finbourne_identity/models/authentication_information.py index 367a0f8de..67e89c704 100644 --- a/sdk/finbourne_identity/models/authentication_information.py +++ b/sdk/finbourne_identity/models/authentication_information.py @@ -5,7 +5,7 @@ FINBOURNE Technology # noqa: E501 - The version of the OpenAPI document: 0.0.2463 + The version of the OpenAPI document: 0.0.2465 Contact: info@finbourne.com Generated by: https://openapi-generator.tech """ diff --git a/sdk/finbourne_identity/models/create_api_key.py b/sdk/finbourne_identity/models/create_api_key.py index ae5c05b22..fed54f05d 100644 --- a/sdk/finbourne_identity/models/create_api_key.py +++ b/sdk/finbourne_identity/models/create_api_key.py @@ -5,7 +5,7 @@ FINBOURNE Technology # noqa: E501 - The version of the OpenAPI document: 0.0.2463 + The version of the OpenAPI document: 0.0.2465 Contact: info@finbourne.com Generated by: https://openapi-generator.tech """ diff --git a/sdk/finbourne_identity/models/create_application_request.py b/sdk/finbourne_identity/models/create_application_request.py index 534d1224a..630ef2e19 100644 --- a/sdk/finbourne_identity/models/create_application_request.py +++ b/sdk/finbourne_identity/models/create_application_request.py @@ -5,7 +5,7 @@ FINBOURNE Technology # noqa: E501 - The version of the OpenAPI document: 0.0.2463 + The version of the OpenAPI document: 0.0.2465 Contact: info@finbourne.com Generated by: https://openapi-generator.tech """ diff --git a/sdk/finbourne_identity/models/create_role_request.py b/sdk/finbourne_identity/models/create_role_request.py index a949db8ea..bda6ab5db 100644 --- a/sdk/finbourne_identity/models/create_role_request.py +++ b/sdk/finbourne_identity/models/create_role_request.py @@ -5,7 +5,7 @@ FINBOURNE Technology # noqa: E501 - The version of the OpenAPI document: 0.0.2463 + The version of the OpenAPI document: 0.0.2465 Contact: info@finbourne.com Generated by: https://openapi-generator.tech """ diff --git a/sdk/finbourne_identity/models/create_user_request.py b/sdk/finbourne_identity/models/create_user_request.py index 6cfc1e2e3..893988a91 100644 --- a/sdk/finbourne_identity/models/create_user_request.py +++ b/sdk/finbourne_identity/models/create_user_request.py @@ -5,7 +5,7 @@ FINBOURNE Technology # noqa: E501 - The version of the OpenAPI document: 0.0.2463 + The version of the OpenAPI document: 0.0.2465 Contact: info@finbourne.com Generated by: https://openapi-generator.tech """ diff --git a/sdk/finbourne_identity/models/created_api_key.py b/sdk/finbourne_identity/models/created_api_key.py index 53603feef..4add6a27a 100644 --- a/sdk/finbourne_identity/models/created_api_key.py +++ b/sdk/finbourne_identity/models/created_api_key.py @@ -5,7 +5,7 @@ FINBOURNE Technology # noqa: E501 - The version of the OpenAPI document: 0.0.2463 + The version of the OpenAPI document: 0.0.2465 Contact: info@finbourne.com Generated by: https://openapi-generator.tech """ diff --git a/sdk/finbourne_identity/models/current_user_response.py b/sdk/finbourne_identity/models/current_user_response.py index a84b1bfa5..169f3b49a 100644 --- a/sdk/finbourne_identity/models/current_user_response.py +++ b/sdk/finbourne_identity/models/current_user_response.py @@ -5,7 +5,7 @@ FINBOURNE Technology # noqa: E501 - The version of the OpenAPI document: 0.0.2463 + The version of the OpenAPI document: 0.0.2465 Contact: info@finbourne.com Generated by: https://openapi-generator.tech """ diff --git a/sdk/finbourne_identity/models/error_detail.py b/sdk/finbourne_identity/models/error_detail.py index bb21306f9..620326213 100644 --- a/sdk/finbourne_identity/models/error_detail.py +++ b/sdk/finbourne_identity/models/error_detail.py @@ -5,7 +5,7 @@ FINBOURNE Technology # noqa: E501 - The version of the OpenAPI document: 0.0.2463 + The version of the OpenAPI document: 0.0.2465 Contact: info@finbourne.com Generated by: https://openapi-generator.tech """ diff --git a/sdk/finbourne_identity/models/id_selector_definition.py b/sdk/finbourne_identity/models/id_selector_definition.py index 704086d36..bb4c280f5 100644 --- a/sdk/finbourne_identity/models/id_selector_definition.py +++ b/sdk/finbourne_identity/models/id_selector_definition.py @@ -5,7 +5,7 @@ FINBOURNE Technology # noqa: E501 - The version of the OpenAPI document: 0.0.2463 + The version of the OpenAPI document: 0.0.2465 Contact: info@finbourne.com Generated by: https://openapi-generator.tech """ diff --git a/sdk/finbourne_identity/models/identifier_part_schema.py b/sdk/finbourne_identity/models/identifier_part_schema.py index a7178ae5b..c499b109e 100644 --- a/sdk/finbourne_identity/models/identifier_part_schema.py +++ b/sdk/finbourne_identity/models/identifier_part_schema.py @@ -5,7 +5,7 @@ FINBOURNE Technology # noqa: E501 - The version of the OpenAPI document: 0.0.2463 + The version of the OpenAPI document: 0.0.2465 Contact: info@finbourne.com Generated by: https://openapi-generator.tech """ diff --git a/sdk/finbourne_identity/models/link.py b/sdk/finbourne_identity/models/link.py index 84990351a..479aaadc2 100644 --- a/sdk/finbourne_identity/models/link.py +++ b/sdk/finbourne_identity/models/link.py @@ -5,7 +5,7 @@ FINBOURNE Technology # noqa: E501 - The version of the OpenAPI document: 0.0.2463 + The version of the OpenAPI document: 0.0.2465 Contact: info@finbourne.com Generated by: https://openapi-generator.tech """ diff --git a/sdk/finbourne_identity/models/list_users_response.py b/sdk/finbourne_identity/models/list_users_response.py index e46770809..038f76766 100644 --- a/sdk/finbourne_identity/models/list_users_response.py +++ b/sdk/finbourne_identity/models/list_users_response.py @@ -5,7 +5,7 @@ FINBOURNE Technology # noqa: E501 - The version of the OpenAPI document: 0.0.2463 + The version of the OpenAPI document: 0.0.2465 Contact: info@finbourne.com Generated by: https://openapi-generator.tech """ diff --git a/sdk/finbourne_identity/models/lusid_problem_details.py b/sdk/finbourne_identity/models/lusid_problem_details.py index 8e58be19e..50c652d17 100644 --- a/sdk/finbourne_identity/models/lusid_problem_details.py +++ b/sdk/finbourne_identity/models/lusid_problem_details.py @@ -5,7 +5,7 @@ FINBOURNE Technology # noqa: E501 - The version of the OpenAPI document: 0.0.2463 + The version of the OpenAPI document: 0.0.2465 Contact: info@finbourne.com Generated by: https://openapi-generator.tech """ diff --git a/sdk/finbourne_identity/models/lusid_validation_problem_details.py b/sdk/finbourne_identity/models/lusid_validation_problem_details.py index cf2119471..ad75b01fb 100644 --- a/sdk/finbourne_identity/models/lusid_validation_problem_details.py +++ b/sdk/finbourne_identity/models/lusid_validation_problem_details.py @@ -5,7 +5,7 @@ FINBOURNE Technology # noqa: E501 - The version of the OpenAPI document: 0.0.2463 + The version of the OpenAPI document: 0.0.2465 Contact: info@finbourne.com Generated by: https://openapi-generator.tech """ diff --git a/sdk/finbourne_identity/models/o_auth_application.py b/sdk/finbourne_identity/models/o_auth_application.py index bc8e44767..9b2bc8a63 100644 --- a/sdk/finbourne_identity/models/o_auth_application.py +++ b/sdk/finbourne_identity/models/o_auth_application.py @@ -5,7 +5,7 @@ FINBOURNE Technology # noqa: E501 - The version of the OpenAPI document: 0.0.2463 + The version of the OpenAPI document: 0.0.2465 Contact: info@finbourne.com Generated by: https://openapi-generator.tech """ diff --git a/sdk/finbourne_identity/models/resource_list_of_access_controlled_resource.py b/sdk/finbourne_identity/models/resource_list_of_access_controlled_resource.py index 4a3dbf4db..1d508f18f 100644 --- a/sdk/finbourne_identity/models/resource_list_of_access_controlled_resource.py +++ b/sdk/finbourne_identity/models/resource_list_of_access_controlled_resource.py @@ -5,7 +5,7 @@ FINBOURNE Technology # noqa: E501 - The version of the OpenAPI document: 0.0.2463 + The version of the OpenAPI document: 0.0.2465 Contact: info@finbourne.com Generated by: https://openapi-generator.tech """ diff --git a/sdk/finbourne_identity/models/role_id.py b/sdk/finbourne_identity/models/role_id.py index 92dd2b130..fd9d204d1 100644 --- a/sdk/finbourne_identity/models/role_id.py +++ b/sdk/finbourne_identity/models/role_id.py @@ -5,7 +5,7 @@ FINBOURNE Technology # noqa: E501 - The version of the OpenAPI document: 0.0.2463 + The version of the OpenAPI document: 0.0.2465 Contact: info@finbourne.com Generated by: https://openapi-generator.tech """ diff --git a/sdk/finbourne_identity/models/role_response.py b/sdk/finbourne_identity/models/role_response.py index 366991c3b..d697ba34e 100644 --- a/sdk/finbourne_identity/models/role_response.py +++ b/sdk/finbourne_identity/models/role_response.py @@ -5,7 +5,7 @@ FINBOURNE Technology # noqa: E501 - The version of the OpenAPI document: 0.0.2463 + The version of the OpenAPI document: 0.0.2465 Contact: info@finbourne.com Generated by: https://openapi-generator.tech """ diff --git a/sdk/finbourne_identity/models/set_password.py b/sdk/finbourne_identity/models/set_password.py index 915421aef..702e10446 100644 --- a/sdk/finbourne_identity/models/set_password.py +++ b/sdk/finbourne_identity/models/set_password.py @@ -5,7 +5,7 @@ FINBOURNE Technology # noqa: E501 - The version of the OpenAPI document: 0.0.2463 + The version of the OpenAPI document: 0.0.2465 Contact: info@finbourne.com Generated by: https://openapi-generator.tech """ diff --git a/sdk/finbourne_identity/models/set_password_response.py b/sdk/finbourne_identity/models/set_password_response.py index 73d358ebe..264c44819 100644 --- a/sdk/finbourne_identity/models/set_password_response.py +++ b/sdk/finbourne_identity/models/set_password_response.py @@ -5,7 +5,7 @@ FINBOURNE Technology # noqa: E501 - The version of the OpenAPI document: 0.0.2463 + The version of the OpenAPI document: 0.0.2465 Contact: info@finbourne.com Generated by: https://openapi-generator.tech """ diff --git a/sdk/finbourne_identity/models/support_access_expiry.py b/sdk/finbourne_identity/models/support_access_expiry.py index 2285328eb..551b1263f 100644 --- a/sdk/finbourne_identity/models/support_access_expiry.py +++ b/sdk/finbourne_identity/models/support_access_expiry.py @@ -5,7 +5,7 @@ FINBOURNE Technology # noqa: E501 - The version of the OpenAPI document: 0.0.2463 + The version of the OpenAPI document: 0.0.2465 Contact: info@finbourne.com Generated by: https://openapi-generator.tech """ diff --git a/sdk/finbourne_identity/models/support_access_expiry_with_role.py b/sdk/finbourne_identity/models/support_access_expiry_with_role.py index a3844cd39..f7c2d71c3 100644 --- a/sdk/finbourne_identity/models/support_access_expiry_with_role.py +++ b/sdk/finbourne_identity/models/support_access_expiry_with_role.py @@ -5,7 +5,7 @@ FINBOURNE Technology # noqa: E501 - The version of the OpenAPI document: 0.0.2463 + The version of the OpenAPI document: 0.0.2465 Contact: info@finbourne.com Generated by: https://openapi-generator.tech """ diff --git a/sdk/finbourne_identity/models/support_access_request.py b/sdk/finbourne_identity/models/support_access_request.py index a1fa7cc49..6a32834ba 100644 --- a/sdk/finbourne_identity/models/support_access_request.py +++ b/sdk/finbourne_identity/models/support_access_request.py @@ -5,7 +5,7 @@ FINBOURNE Technology # noqa: E501 - The version of the OpenAPI document: 0.0.2463 + The version of the OpenAPI document: 0.0.2465 Contact: info@finbourne.com Generated by: https://openapi-generator.tech """ diff --git a/sdk/finbourne_identity/models/support_access_response.py b/sdk/finbourne_identity/models/support_access_response.py index 0a0041f30..c3625d6a1 100644 --- a/sdk/finbourne_identity/models/support_access_response.py +++ b/sdk/finbourne_identity/models/support_access_response.py @@ -5,7 +5,7 @@ FINBOURNE Technology # noqa: E501 - The version of the OpenAPI document: 0.0.2463 + The version of the OpenAPI document: 0.0.2465 Contact: info@finbourne.com Generated by: https://openapi-generator.tech """ diff --git a/sdk/finbourne_identity/models/support_role.py b/sdk/finbourne_identity/models/support_role.py index 356a0328d..ff4982e8e 100644 --- a/sdk/finbourne_identity/models/support_role.py +++ b/sdk/finbourne_identity/models/support_role.py @@ -5,7 +5,7 @@ FINBOURNE Technology # noqa: E501 - The version of the OpenAPI document: 0.0.2463 + The version of the OpenAPI document: 0.0.2465 Contact: info@finbourne.com Generated by: https://openapi-generator.tech """ diff --git a/sdk/finbourne_identity/models/support_roles_response.py b/sdk/finbourne_identity/models/support_roles_response.py index 5c286c4d2..85b51fc27 100644 --- a/sdk/finbourne_identity/models/support_roles_response.py +++ b/sdk/finbourne_identity/models/support_roles_response.py @@ -5,7 +5,7 @@ FINBOURNE Technology # noqa: E501 - The version of the OpenAPI document: 0.0.2463 + The version of the OpenAPI document: 0.0.2465 Contact: info@finbourne.com Generated by: https://openapi-generator.tech """ diff --git a/sdk/finbourne_identity/models/temporary_password.py b/sdk/finbourne_identity/models/temporary_password.py index 309f10c02..a17017dcf 100644 --- a/sdk/finbourne_identity/models/temporary_password.py +++ b/sdk/finbourne_identity/models/temporary_password.py @@ -5,7 +5,7 @@ FINBOURNE Technology # noqa: E501 - The version of the OpenAPI document: 0.0.2463 + The version of the OpenAPI document: 0.0.2465 Contact: info@finbourne.com Generated by: https://openapi-generator.tech """ diff --git a/sdk/finbourne_identity/models/update_role_request.py b/sdk/finbourne_identity/models/update_role_request.py index 9bc980ffa..fb34e9f53 100644 --- a/sdk/finbourne_identity/models/update_role_request.py +++ b/sdk/finbourne_identity/models/update_role_request.py @@ -5,7 +5,7 @@ FINBOURNE Technology # noqa: E501 - The version of the OpenAPI document: 0.0.2463 + The version of the OpenAPI document: 0.0.2465 Contact: info@finbourne.com Generated by: https://openapi-generator.tech """ diff --git a/sdk/finbourne_identity/models/update_user_request.py b/sdk/finbourne_identity/models/update_user_request.py index bd4e982b2..ecbc8b59e 100644 --- a/sdk/finbourne_identity/models/update_user_request.py +++ b/sdk/finbourne_identity/models/update_user_request.py @@ -5,7 +5,7 @@ FINBOURNE Technology # noqa: E501 - The version of the OpenAPI document: 0.0.2463 + The version of the OpenAPI document: 0.0.2465 Contact: info@finbourne.com Generated by: https://openapi-generator.tech """ diff --git a/sdk/finbourne_identity/models/user_response.py b/sdk/finbourne_identity/models/user_response.py index 073e38ba8..5100f3f08 100644 --- a/sdk/finbourne_identity/models/user_response.py +++ b/sdk/finbourne_identity/models/user_response.py @@ -5,7 +5,7 @@ FINBOURNE Technology # noqa: E501 - The version of the OpenAPI document: 0.0.2463 + The version of the OpenAPI document: 0.0.2465 Contact: info@finbourne.com Generated by: https://openapi-generator.tech """ diff --git a/sdk/finbourne_identity/models/user_summary.py b/sdk/finbourne_identity/models/user_summary.py index 5b8bf7cba..7a2f41930 100644 --- a/sdk/finbourne_identity/models/user_summary.py +++ b/sdk/finbourne_identity/models/user_summary.py @@ -5,7 +5,7 @@ FINBOURNE Technology # noqa: E501 - The version of the OpenAPI document: 0.0.2463 + The version of the OpenAPI document: 0.0.2465 Contact: info@finbourne.com Generated by: https://openapi-generator.tech """ diff --git a/sdk/finbourne_identity/rest.py b/sdk/finbourne_identity/rest.py index 8e155bb72..02b92e39b 100644 --- a/sdk/finbourne_identity/rest.py +++ b/sdk/finbourne_identity/rest.py @@ -5,7 +5,7 @@ FINBOURNE Technology # noqa: E501 - The version of the OpenAPI document: 0.0.2463 + The version of the OpenAPI document: 0.0.2465 Contact: info@finbourne.com Generated by: https://openapi-generator.tech """