-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Concourse
committed
Aug 28, 2024
1 parent
3fc8ea2
commit a03aaea
Showing
67 changed files
with
198 additions
and
118 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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" | ||
|
@@ -2781,7 +2781,8 @@ | |
"firstName": "Joe", | ||
"lastName": "Bloggs", | ||
"emailAddress": "[email protected]", | ||
"login": "[email protected]" | ||
"login": "[email protected]", | ||
"alternativeUserIds": {} | ||
} | ||
}, | ||
"application/json": { | ||
|
@@ -2792,7 +2793,8 @@ | |
"firstName": "Joe", | ||
"lastName": "Bloggs", | ||
"emailAddress": "[email protected]", | ||
"login": "[email protected]" | ||
"login": "[email protected]", | ||
"alternativeUserIds": {} | ||
} | ||
}, | ||
"text/json": { | ||
|
@@ -2803,7 +2805,8 @@ | |
"firstName": "Joe", | ||
"lastName": "Bloggs", | ||
"emailAddress": "[email protected]", | ||
"login": "[email protected]" | ||
"login": "[email protected]", | ||
"alternativeUserIds": {} | ||
} | ||
}, | ||
"application/*+json": { | ||
|
@@ -2814,7 +2817,8 @@ | |
"firstName": "Joe", | ||
"lastName": "Bloggs", | ||
"emailAddress": "[email protected]", | ||
"login": "[email protected]" | ||
"login": "[email protected]", | ||
"alternativeUserIds": {} | ||
} | ||
} | ||
}, | ||
|
@@ -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": { | ||
|
@@ -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", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
__version__ = "0.0.3018" | ||
__version__ = "0.0.3020" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 | ||
""" | ||
|
@@ -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 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 | ||
""" | ||
|
@@ -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 | ||
|
@@ -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 | ||
|
@@ -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 | ||
|
@@ -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 | ||
|
@@ -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 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 | ||
""" | ||
|
@@ -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 | ||
|
@@ -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 | ||
|
@@ -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 | ||
|
@@ -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 | ||
|
@@ -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 | ||
|
@@ -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 | ||
|
@@ -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 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 | ||
""" | ||
|
@@ -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 | ||
|
@@ -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 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 | ||
""" | ||
|
@@ -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 | ||
|
@@ -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 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 | ||
""" | ||
|
@@ -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 | ||
|
@@ -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 | ||
|
@@ -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 | ||
|
Oops, something went wrong.