Skip to content

Commit

Permalink
Update SDK
Browse files Browse the repository at this point in the history
  • Loading branch information
Concourse committed Aug 28, 2024
1 parent 3fc8ea2 commit a03aaea
Show file tree
Hide file tree
Showing 67 changed files with 198 additions and 118 deletions.
30 changes: 25 additions & 5 deletions lydia.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"url": "https://www.finbourne.com",
"email": "[email protected]"
},
"version": "0.0.3018",
"version": "0.0.3020",
"x-logo": {
"url": "https://www.lusid.com/app/assets/logo_white.png",
"backgroundColor": "#415464"
Expand Down Expand Up @@ -2781,7 +2781,8 @@
"firstName": "Joe",
"lastName": "Bloggs",
"emailAddress": "[email protected]",
"login": "[email protected]"
"login": "[email protected]",
"alternativeUserIds": {}
}
},
"application/json": {
Expand All @@ -2792,7 +2793,8 @@
"firstName": "Joe",
"lastName": "Bloggs",
"emailAddress": "[email protected]",
"login": "[email protected]"
"login": "[email protected]",
"alternativeUserIds": {}
}
},
"text/json": {
Expand All @@ -2803,7 +2805,8 @@
"firstName": "Joe",
"lastName": "Bloggs",
"emailAddress": "[email protected]",
"login": "[email protected]"
"login": "[email protected]",
"alternativeUserIds": {}
}
},
"application/*+json": {
Expand All @@ -2814,7 +2817,8 @@
"firstName": "Joe",
"lastName": "Bloggs",
"emailAddress": "[email protected]",
"login": "[email protected]"
"login": "[email protected]",
"alternativeUserIds": {}
}
}
},
Expand Down Expand Up @@ -4528,6 +4532,14 @@
"type": "string",
"description": "The user's login username, in the form of an email address, which must be unique within the system.\r\nFor user accounts this should exactly match the user's email address."
},
"alternativeUserIds": {
"type": "object",
"additionalProperties": {
"type": "string",
"nullable": true
},
"nullable": true
},
"roles": {
"type": "array",
"items": {
Expand Down Expand Up @@ -4557,6 +4569,14 @@
"type": "string",
"description": "The user's system supplied unique identifier"
},
"alternativeUserIds": {
"type": "object",
"additionalProperties": {
"type": "string"
},
"description": "The user's alternative IDs",
"nullable": true
},
"emailAddress": {
"minLength": 1,
"type": "string",
Expand Down
4 changes: 2 additions & 2 deletions sdk/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.3018
- Package version: 0.0.3018
- API version: 0.0.3020
- Package version: 0.0.3020
- Build package: org.openapitools.codegen.languages.PythonLegacyClientCodegen
For more information, please visit [https://www.finbourne.com](https://www.finbourne.com)

Expand Down
1 change: 1 addition & 0 deletions sdk/docs/UpdateUserRequest.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ Name | Type | Description | Notes
**email_address** | **str** | |
**second_email_address** | **str** | | [optional]
**login** | **str** | The user's login username, in the form of an email address, which must be unique within the system. For user accounts this should exactly match the user's email address. |
**alternative_user_ids** | **dict(str, str)** | | [optional]
**roles** | [**list[RoleId]**](RoleId.md) | Deprecated. To update a user's roles use the AddUserToRole and RemoveUserFromRole endpoints | [optional]

[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
Expand Down
1 change: 1 addition & 0 deletions sdk/docs/UserResponse.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**id** | **str** | The user's system supplied unique identifier |
**alternative_user_ids** | **dict(str, str)** | The user's alternative IDs | [optional]
**email_address** | **str** | The user's emailAddress address, which must be unique within the system |
**second_email_address** | **str** | The user's second email address. Only allowed for service users. | [optional]
**login** | **str** | |
Expand Down
2 changes: 1 addition & 1 deletion sdk/docs/UsersApi.md
Original file line number Diff line number Diff line change
Expand Up @@ -954,7 +954,7 @@ with finbourne_identity.ApiClient(configuration) as api_client:
# Create an instance of the API class
api_instance = finbourne_identity.UsersApi(api_client)
id = 'id_example' # str | The unique identifier for the User to be updated
update_user_request = {"firstName":"Joe","lastName":"Bloggs","emailAddress":"[email protected]","login":"[email protected]"} # UpdateUserRequest | The new definition of the User
update_user_request = {"firstName":"Joe","lastName":"Bloggs","emailAddress":"[email protected]","login":"[email protected]","alternativeUserIds":{}} # UpdateUserRequest | The new definition of the User

try:
# UpdateUser: Update User
Expand Down
4 changes: 2 additions & 2 deletions sdk/finbourne_identity/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,15 @@
FINBOURNE Technology # noqa: E501
The version of the OpenAPI document: 0.0.3018
The version of the OpenAPI document: 0.0.3020
Contact: [email protected]
Generated by: https://openapi-generator.tech
"""


from __future__ import absolute_import

__version__ = "0.0.3018"
__version__ = "0.0.3020"

# import apis into sdk package
from finbourne_identity.api.application_metadata_api import ApplicationMetadataApi
Expand Down
2 changes: 1 addition & 1 deletion sdk/finbourne_identity/__version__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.0.3018"
__version__ = "0.0.3020"
4 changes: 2 additions & 2 deletions sdk/finbourne_identity/api/application_metadata_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
FINBOURNE Technology # noqa: E501
The version of the OpenAPI document: 0.0.3018
The version of the OpenAPI document: 0.0.3020
Contact: [email protected]
Generated by: https://openapi-generator.tech
"""
Expand Down Expand Up @@ -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.3018'
header_params['X-LUSID-SDK-Version'] = '0.0.3020'

# Authentication setting
auth_settings = ['oauth2'] # noqa: E501
Expand Down
12 changes: 6 additions & 6 deletions sdk/finbourne_identity/api/applications_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
FINBOURNE Technology # noqa: E501
The version of the OpenAPI document: 0.0.3018
The version of the OpenAPI document: 0.0.3020
Contact: [email protected]
Generated by: https://openapi-generator.tech
"""
Expand Down Expand Up @@ -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.3018'
header_params['X-LUSID-SDK-Version'] = '0.0.3020'

# Authentication setting
auth_settings = ['oauth2'] # noqa: E501
Expand Down Expand Up @@ -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.3018'
header_params['X-LUSID-SDK-Version'] = '0.0.3020'

# Authentication setting
auth_settings = ['oauth2'] # noqa: E501
Expand Down Expand Up @@ -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.3018'
header_params['X-LUSID-SDK-Version'] = '0.0.3020'

# Authentication setting
auth_settings = ['oauth2'] # noqa: E501
Expand Down Expand Up @@ -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.3018'
header_params['X-LUSID-SDK-Version'] = '0.0.3020'

# Authentication setting
auth_settings = ['oauth2'] # noqa: E501
Expand Down Expand Up @@ -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.3018'
header_params['X-LUSID-SDK-Version'] = '0.0.3020'

# Authentication setting
auth_settings = ['oauth2'] # noqa: E501
Expand Down
16 changes: 8 additions & 8 deletions sdk/finbourne_identity/api/authentication_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
FINBOURNE Technology # noqa: E501
The version of the OpenAPI document: 0.0.3018
The version of the OpenAPI document: 0.0.3020
Contact: [email protected]
Generated by: https://openapi-generator.tech
"""
Expand Down Expand Up @@ -151,7 +151,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.3018'
header_params['X-LUSID-SDK-Version'] = '0.0.3020'

# Authentication setting
auth_settings = ['oauth2'] # noqa: E501
Expand Down Expand Up @@ -302,7 +302,7 @@ def get_password_policy_with_http_info(self, user_type, **kwargs): # noqa: E501

# set the LUSID header
header_params['X-LUSID-SDK-Language'] = 'Python'
header_params['X-LUSID-SDK-Version'] = '0.0.3018'
header_params['X-LUSID-SDK-Version'] = '0.0.3020'

# Authentication setting
auth_settings = ['oauth2'] # noqa: E501
Expand Down Expand Up @@ -449,7 +449,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.3018'
header_params['X-LUSID-SDK-Version'] = '0.0.3020'

# Authentication setting
auth_settings = ['oauth2'] # noqa: E501
Expand Down Expand Up @@ -582,7 +582,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.3018'
header_params['X-LUSID-SDK-Version'] = '0.0.3020'

# Authentication setting
auth_settings = ['oauth2'] # noqa: E501
Expand Down Expand Up @@ -728,7 +728,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.3018'
header_params['X-LUSID-SDK-Version'] = '0.0.3020'

# Authentication setting
auth_settings = ['oauth2'] # noqa: E501
Expand Down Expand Up @@ -861,7 +861,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.3018'
header_params['X-LUSID-SDK-Version'] = '0.0.3020'

# Authentication setting
auth_settings = ['oauth2'] # noqa: E501
Expand Down Expand Up @@ -1022,7 +1022,7 @@ def update_password_policy_with_http_info(self, user_type, **kwargs): # noqa: E

# set the LUSID header
header_params['X-LUSID-SDK-Language'] = 'Python'
header_params['X-LUSID-SDK-Version'] = '0.0.3018'
header_params['X-LUSID-SDK-Version'] = '0.0.3020'

# Authentication setting
auth_settings = ['oauth2'] # noqa: E501
Expand Down
6 changes: 3 additions & 3 deletions sdk/finbourne_identity/api/identity_provider_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
FINBOURNE Technology # noqa: E501
The version of the OpenAPI document: 0.0.3018
The version of the OpenAPI document: 0.0.3020
Contact: [email protected]
Generated by: https://openapi-generator.tech
"""
Expand Down Expand Up @@ -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.3018'
header_params['X-LUSID-SDK-Version'] = '0.0.3020'

# Authentication setting
auth_settings = ['oauth2'] # noqa: E501
Expand Down Expand Up @@ -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.3018'
header_params['X-LUSID-SDK-Version'] = '0.0.3020'

# Authentication setting
auth_settings = ['oauth2'] # noqa: E501
Expand Down
6 changes: 3 additions & 3 deletions sdk/finbourne_identity/api/me_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
FINBOURNE Technology # noqa: E501
The version of the OpenAPI document: 0.0.3018
The version of the OpenAPI document: 0.0.3020
Contact: [email protected]
Generated by: https://openapi-generator.tech
"""
Expand Down Expand Up @@ -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.3018'
header_params['X-LUSID-SDK-Version'] = '0.0.3020'

# Authentication setting
auth_settings = ['oauth2'] # noqa: E501
Expand Down Expand Up @@ -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.3018'
header_params['X-LUSID-SDK-Version'] = '0.0.3020'

# Authentication setting
auth_settings = ['oauth2'] # noqa: E501
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
FINBOURNE Technology # noqa: E501
The version of the OpenAPI document: 0.0.3018
The version of the OpenAPI document: 0.0.3020
Contact: [email protected]
Generated by: https://openapi-generator.tech
"""
Expand Down Expand Up @@ -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.3018'
header_params['X-LUSID-SDK-Version'] = '0.0.3020'

# Authentication setting
auth_settings = ['oauth2'] # noqa: E501
Expand Down Expand Up @@ -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.3018'
header_params['X-LUSID-SDK-Version'] = '0.0.3020'

# Authentication setting
auth_settings = ['oauth2'] # noqa: E501
Expand Down Expand Up @@ -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.3018'
header_params['X-LUSID-SDK-Version'] = '0.0.3020'

# Authentication setting
auth_settings = ['oauth2'] # noqa: E501
Expand Down
Loading

0 comments on commit a03aaea

Please sign in to comment.