lusid-sdk 2.0.466__py3-none-any.whl → 2.0.469__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.
Potentially problematic release.
This version of lusid-sdk might be problematic. Click here for more details.
- lusid/__init__.py +2 -0
- lusid/api/funds_api.py +175 -0
- lusid/configuration.py +1 -1
- lusid/models/__init__.py +2 -0
- lusid/models/fund_request.py +1 -1
- lusid/models/set_share_class_instruments_request.py +79 -0
- {lusid_sdk-2.0.466.dist-info → lusid_sdk-2.0.469.dist-info}/METADATA +5 -3
- {lusid_sdk-2.0.466.dist-info → lusid_sdk-2.0.469.dist-info}/RECORD +9 -8
- {lusid_sdk-2.0.466.dist-info → lusid_sdk-2.0.469.dist-info}/WHEEL +0 -0
lusid/__init__.py
CHANGED
|
@@ -840,6 +840,7 @@ from lusid.models.set_legal_entity_identifiers_request import SetLegalEntityIden
|
|
|
840
840
|
from lusid.models.set_legal_entity_properties_request import SetLegalEntityPropertiesRequest
|
|
841
841
|
from lusid.models.set_person_identifiers_request import SetPersonIdentifiersRequest
|
|
842
842
|
from lusid.models.set_person_properties_request import SetPersonPropertiesRequest
|
|
843
|
+
from lusid.models.set_share_class_instruments_request import SetShareClassInstrumentsRequest
|
|
843
844
|
from lusid.models.set_transaction_configuration_alias import SetTransactionConfigurationAlias
|
|
844
845
|
from lusid.models.set_transaction_configuration_source_request import SetTransactionConfigurationSourceRequest
|
|
845
846
|
from lusid.models.side_configuration_data import SideConfigurationData
|
|
@@ -1838,6 +1839,7 @@ __all__ = [
|
|
|
1838
1839
|
"SetLegalEntityPropertiesRequest",
|
|
1839
1840
|
"SetPersonIdentifiersRequest",
|
|
1840
1841
|
"SetPersonPropertiesRequest",
|
|
1842
|
+
"SetShareClassInstrumentsRequest",
|
|
1841
1843
|
"SetTransactionConfigurationAlias",
|
|
1842
1844
|
"SetTransactionConfigurationSourceRequest",
|
|
1843
1845
|
"SideConfigurationData",
|
lusid/api/funds_api.py
CHANGED
|
@@ -32,6 +32,7 @@ from lusid.models.fund_properties import FundProperties
|
|
|
32
32
|
from lusid.models.fund_request import FundRequest
|
|
33
33
|
from lusid.models.model_property import ModelProperty
|
|
34
34
|
from lusid.models.paged_resource_list_of_fund import PagedResourceListOfFund
|
|
35
|
+
from lusid.models.set_share_class_instruments_request import SetShareClassInstrumentsRequest
|
|
35
36
|
|
|
36
37
|
from lusid.api_client import ApiClient
|
|
37
38
|
from lusid.api_response import ApiResponse
|
|
@@ -769,6 +770,180 @@ class FundsApi:
|
|
|
769
770
|
collection_formats=_collection_formats,
|
|
770
771
|
_request_auth=_params.get('_request_auth'))
|
|
771
772
|
|
|
773
|
+
@overload
|
|
774
|
+
async def set_share_class_instruments(self, scope : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The scope of the Fund.")], code : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The code of the Fund.")], set_share_class_instruments_request : Annotated[SetShareClassInstrumentsRequest, Field(..., description="The scopes and instrument identifiers for the instruments to be set.")], **kwargs) -> Fund: # noqa: E501
|
|
775
|
+
...
|
|
776
|
+
|
|
777
|
+
@overload
|
|
778
|
+
def set_share_class_instruments(self, scope : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The scope of the Fund.")], code : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The code of the Fund.")], set_share_class_instruments_request : Annotated[SetShareClassInstrumentsRequest, Field(..., description="The scopes and instrument identifiers for the instruments to be set.")], async_req: Optional[bool]=True, **kwargs) -> Fund: # noqa: E501
|
|
779
|
+
...
|
|
780
|
+
|
|
781
|
+
@validate_arguments
|
|
782
|
+
def set_share_class_instruments(self, scope : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The scope of the Fund.")], code : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The code of the Fund.")], set_share_class_instruments_request : Annotated[SetShareClassInstrumentsRequest, Field(..., description="The scopes and instrument identifiers for the instruments to be set.")], async_req: Optional[bool]=None, **kwargs) -> Union[Fund, Awaitable[Fund]]: # noqa: E501
|
|
783
|
+
"""[EXPERIMENTAL] SetShareClassInstruments: Set the ShareClass Instruments on a fund. # noqa: E501
|
|
784
|
+
|
|
785
|
+
Update the ShareClass Instruments on an existing fund with the set of instruments provided. # noqa: E501
|
|
786
|
+
This method makes a synchronous HTTP request by default. To make an
|
|
787
|
+
asynchronous HTTP request, please pass async_req=True
|
|
788
|
+
|
|
789
|
+
>>> thread = api.set_share_class_instruments(scope, code, set_share_class_instruments_request, async_req=True)
|
|
790
|
+
>>> result = thread.get()
|
|
791
|
+
|
|
792
|
+
:param scope: The scope of the Fund. (required)
|
|
793
|
+
:type scope: str
|
|
794
|
+
:param code: The code of the Fund. (required)
|
|
795
|
+
:type code: str
|
|
796
|
+
:param set_share_class_instruments_request: The scopes and instrument identifiers for the instruments to be set. (required)
|
|
797
|
+
:type set_share_class_instruments_request: SetShareClassInstrumentsRequest
|
|
798
|
+
:param async_req: Whether to execute the request asynchronously.
|
|
799
|
+
:type async_req: bool, optional
|
|
800
|
+
:param _request_timeout: timeout setting for this request.
|
|
801
|
+
If one number provided, it will be total request
|
|
802
|
+
timeout. It can also be a pair (tuple) of
|
|
803
|
+
(connection, read) timeouts.
|
|
804
|
+
:return: Returns the result object.
|
|
805
|
+
If the method is called asynchronously,
|
|
806
|
+
returns the request thread.
|
|
807
|
+
:rtype: Fund
|
|
808
|
+
"""
|
|
809
|
+
kwargs['_return_http_data_only'] = True
|
|
810
|
+
if '_preload_content' in kwargs:
|
|
811
|
+
message = "Error! Please call the set_share_class_instruments_with_http_info method with `_preload_content` instead and obtain raw data from ApiResponse.raw_data" # noqa: E501
|
|
812
|
+
raise ValueError(message)
|
|
813
|
+
if async_req is not None:
|
|
814
|
+
kwargs['async_req'] = async_req
|
|
815
|
+
return self.set_share_class_instruments_with_http_info(scope, code, set_share_class_instruments_request, **kwargs) # noqa: E501
|
|
816
|
+
|
|
817
|
+
@validate_arguments
|
|
818
|
+
def set_share_class_instruments_with_http_info(self, scope : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The scope of the Fund.")], code : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The code of the Fund.")], set_share_class_instruments_request : Annotated[SetShareClassInstrumentsRequest, Field(..., description="The scopes and instrument identifiers for the instruments to be set.")], **kwargs) -> ApiResponse: # noqa: E501
|
|
819
|
+
"""[EXPERIMENTAL] SetShareClassInstruments: Set the ShareClass Instruments on a fund. # noqa: E501
|
|
820
|
+
|
|
821
|
+
Update the ShareClass Instruments on an existing fund with the set of instruments provided. # noqa: E501
|
|
822
|
+
This method makes a synchronous HTTP request by default. To make an
|
|
823
|
+
asynchronous HTTP request, please pass async_req=True
|
|
824
|
+
|
|
825
|
+
>>> thread = api.set_share_class_instruments_with_http_info(scope, code, set_share_class_instruments_request, async_req=True)
|
|
826
|
+
>>> result = thread.get()
|
|
827
|
+
|
|
828
|
+
:param scope: The scope of the Fund. (required)
|
|
829
|
+
:type scope: str
|
|
830
|
+
:param code: The code of the Fund. (required)
|
|
831
|
+
:type code: str
|
|
832
|
+
:param set_share_class_instruments_request: The scopes and instrument identifiers for the instruments to be set. (required)
|
|
833
|
+
:type set_share_class_instruments_request: SetShareClassInstrumentsRequest
|
|
834
|
+
:param async_req: Whether to execute the request asynchronously.
|
|
835
|
+
:type async_req: bool, optional
|
|
836
|
+
:param _preload_content: if False, the ApiResponse.data will
|
|
837
|
+
be set to none and raw_data will store the
|
|
838
|
+
HTTP response body without reading/decoding.
|
|
839
|
+
Default is True.
|
|
840
|
+
:type _preload_content: bool, optional
|
|
841
|
+
:param _return_http_data_only: response data instead of ApiResponse
|
|
842
|
+
object with status code, headers, etc
|
|
843
|
+
:type _return_http_data_only: bool, optional
|
|
844
|
+
:param _request_timeout: timeout setting for this request. If one
|
|
845
|
+
number provided, it will be total request
|
|
846
|
+
timeout. It can also be a pair (tuple) of
|
|
847
|
+
(connection, read) timeouts.
|
|
848
|
+
:param _request_auth: set to override the auth_settings for an a single
|
|
849
|
+
request; this effectively ignores the authentication
|
|
850
|
+
in the spec for a single request.
|
|
851
|
+
:type _request_auth: dict, optional
|
|
852
|
+
:type _content_type: string, optional: force content-type for the request
|
|
853
|
+
:return: Returns the result object.
|
|
854
|
+
If the method is called asynchronously,
|
|
855
|
+
returns the request thread.
|
|
856
|
+
:rtype: tuple(Fund, status_code(int), headers(HTTPHeaderDict))
|
|
857
|
+
"""
|
|
858
|
+
|
|
859
|
+
_params = locals()
|
|
860
|
+
|
|
861
|
+
_all_params = [
|
|
862
|
+
'scope',
|
|
863
|
+
'code',
|
|
864
|
+
'set_share_class_instruments_request'
|
|
865
|
+
]
|
|
866
|
+
_all_params.extend(
|
|
867
|
+
[
|
|
868
|
+
'async_req',
|
|
869
|
+
'_return_http_data_only',
|
|
870
|
+
'_preload_content',
|
|
871
|
+
'_request_timeout',
|
|
872
|
+
'_request_auth',
|
|
873
|
+
'_content_type',
|
|
874
|
+
'_headers'
|
|
875
|
+
]
|
|
876
|
+
)
|
|
877
|
+
|
|
878
|
+
# validate the arguments
|
|
879
|
+
for _key, _val in _params['kwargs'].items():
|
|
880
|
+
if _key not in _all_params:
|
|
881
|
+
raise ApiTypeError(
|
|
882
|
+
"Got an unexpected keyword argument '%s'"
|
|
883
|
+
" to method set_share_class_instruments" % _key
|
|
884
|
+
)
|
|
885
|
+
_params[_key] = _val
|
|
886
|
+
del _params['kwargs']
|
|
887
|
+
|
|
888
|
+
_collection_formats = {}
|
|
889
|
+
|
|
890
|
+
# process the path parameters
|
|
891
|
+
_path_params = {}
|
|
892
|
+
if _params['scope']:
|
|
893
|
+
_path_params['scope'] = _params['scope']
|
|
894
|
+
|
|
895
|
+
if _params['code']:
|
|
896
|
+
_path_params['code'] = _params['code']
|
|
897
|
+
|
|
898
|
+
|
|
899
|
+
# process the query parameters
|
|
900
|
+
_query_params = []
|
|
901
|
+
# process the header parameters
|
|
902
|
+
_header_params = dict(_params.get('_headers', {}))
|
|
903
|
+
# process the form parameters
|
|
904
|
+
_form_params = []
|
|
905
|
+
_files = {}
|
|
906
|
+
# process the body parameter
|
|
907
|
+
_body_params = None
|
|
908
|
+
if _params['set_share_class_instruments_request'] is not None:
|
|
909
|
+
_body_params = _params['set_share_class_instruments_request']
|
|
910
|
+
|
|
911
|
+
# set the HTTP header `Accept`
|
|
912
|
+
_header_params['Accept'] = self.api_client.select_header_accept(
|
|
913
|
+
['text/plain', 'application/json', 'text/json']) # noqa: E501
|
|
914
|
+
|
|
915
|
+
# set the HTTP header `Content-Type`
|
|
916
|
+
_content_types_list = _params.get('_content_type',
|
|
917
|
+
self.api_client.select_header_content_type(
|
|
918
|
+
['application/json-patch+json', 'application/json', 'text/json', 'application/*+json']))
|
|
919
|
+
if _content_types_list:
|
|
920
|
+
_header_params['Content-Type'] = _content_types_list
|
|
921
|
+
|
|
922
|
+
# authentication setting
|
|
923
|
+
_auth_settings = ['oauth2'] # noqa: E501
|
|
924
|
+
|
|
925
|
+
_response_types_map = {
|
|
926
|
+
'201': "Fund",
|
|
927
|
+
'400': "LusidValidationProblemDetails",
|
|
928
|
+
}
|
|
929
|
+
|
|
930
|
+
return self.api_client.call_api(
|
|
931
|
+
'/api/funds/{scope}/{code}/shareclasses', 'POST',
|
|
932
|
+
_path_params,
|
|
933
|
+
_query_params,
|
|
934
|
+
_header_params,
|
|
935
|
+
body=_body_params,
|
|
936
|
+
post_params=_form_params,
|
|
937
|
+
files=_files,
|
|
938
|
+
response_types_map=_response_types_map,
|
|
939
|
+
auth_settings=_auth_settings,
|
|
940
|
+
async_req=_params.get('async_req'),
|
|
941
|
+
_return_http_data_only=_params.get('_return_http_data_only'), # noqa: E501
|
|
942
|
+
_preload_content=_params.get('_preload_content', True),
|
|
943
|
+
_request_timeout=_params.get('_request_timeout'),
|
|
944
|
+
collection_formats=_collection_formats,
|
|
945
|
+
_request_auth=_params.get('_request_auth'))
|
|
946
|
+
|
|
772
947
|
@overload
|
|
773
948
|
async def upsert_fund_properties(self, scope : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The scope of the Fund to update or insert the properties onto.")], code : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The code of the Fund to update or insert the properties onto. Together with the scope this uniquely identifies the Fund.")], request_body : Annotated[Optional[Dict[str, ModelProperty]], Field(description="The properties to be updated or inserted onto the Fund. Each property in the request must be keyed by its unique property key. This has the format {domain}/{scope}/{code} e.g. \"Fund/Manager/Id\".")] = None, **kwargs) -> FundProperties: # noqa: E501
|
|
774
949
|
...
|
lusid/configuration.py
CHANGED
|
@@ -373,7 +373,7 @@ class Configuration:
|
|
|
373
373
|
return "Python SDK Debug Report:\n"\
|
|
374
374
|
"OS: {env}\n"\
|
|
375
375
|
"Python Version: {pyversion}\n"\
|
|
376
|
-
"Version of the API: 0.11.
|
|
376
|
+
"Version of the API: 0.11.6416\n"\
|
|
377
377
|
"SDK Package Version: {package_version}".\
|
|
378
378
|
format(env=sys.platform, pyversion=sys.version, package_version=package_version)
|
|
379
379
|
|
lusid/models/__init__.py
CHANGED
|
@@ -765,6 +765,7 @@ from lusid.models.set_legal_entity_identifiers_request import SetLegalEntityIden
|
|
|
765
765
|
from lusid.models.set_legal_entity_properties_request import SetLegalEntityPropertiesRequest
|
|
766
766
|
from lusid.models.set_person_identifiers_request import SetPersonIdentifiersRequest
|
|
767
767
|
from lusid.models.set_person_properties_request import SetPersonPropertiesRequest
|
|
768
|
+
from lusid.models.set_share_class_instruments_request import SetShareClassInstrumentsRequest
|
|
768
769
|
from lusid.models.set_transaction_configuration_alias import SetTransactionConfigurationAlias
|
|
769
770
|
from lusid.models.set_transaction_configuration_source_request import SetTransactionConfigurationSourceRequest
|
|
770
771
|
from lusid.models.side_configuration_data import SideConfigurationData
|
|
@@ -1690,6 +1691,7 @@ __all__ = [
|
|
|
1690
1691
|
"SetLegalEntityPropertiesRequest",
|
|
1691
1692
|
"SetPersonIdentifiersRequest",
|
|
1692
1693
|
"SetPersonPropertiesRequest",
|
|
1694
|
+
"SetShareClassInstrumentsRequest",
|
|
1693
1695
|
"SetTransactionConfigurationAlias",
|
|
1694
1696
|
"SetTransactionConfigurationSourceRequest",
|
|
1695
1697
|
"SideConfigurationData",
|
lusid/models/fund_request.py
CHANGED
|
@@ -33,7 +33,7 @@ class FundRequest(BaseModel):
|
|
|
33
33
|
display_name: Optional[constr(strict=True, max_length=256, min_length=1)] = Field(None, alias="displayName", description="The name of the Fund.")
|
|
34
34
|
description: Optional[constr(strict=True, max_length=1024, min_length=0)] = Field(None, description="A description for the Fund.")
|
|
35
35
|
abor_id: ResourceId = Field(..., alias="aborId")
|
|
36
|
-
share_class_instrument_scopes: Optional[conlist(StrictStr, max_items=1)] = Field(None, alias="shareClassInstrumentScopes", description="The scopes in which the instruments lie.")
|
|
36
|
+
share_class_instrument_scopes: Optional[conlist(StrictStr, max_items=1)] = Field(None, alias="shareClassInstrumentScopes", description="The scopes in which the instruments lie, currently limited to one.")
|
|
37
37
|
share_class_instruments: Optional[conlist(InstrumentResolutionDetail)] = Field(None, alias="shareClassInstruments", description="Details the user-provided instrument identifiers and the instrument resolved from them.")
|
|
38
38
|
type: constr(strict=True, min_length=1) = Field(..., description="The type of fund; 'Standalone', 'Master' or 'Feeder'")
|
|
39
39
|
inception_date: datetime = Field(..., alias="inceptionDate", description="Inception date of the Fund")
|
|
@@ -0,0 +1,79 @@
|
|
|
1
|
+
# coding: utf-8
|
|
2
|
+
|
|
3
|
+
"""
|
|
4
|
+
LUSID API
|
|
5
|
+
|
|
6
|
+
FINBOURNE Technology # noqa: E501
|
|
7
|
+
|
|
8
|
+
Contact: info@finbourne.com
|
|
9
|
+
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
|
10
|
+
|
|
11
|
+
Do not edit the class manually.
|
|
12
|
+
"""
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
from __future__ import annotations
|
|
16
|
+
import pprint
|
|
17
|
+
import re # noqa: F401
|
|
18
|
+
import json
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
from typing import Any, Dict, List
|
|
22
|
+
from pydantic import BaseModel, Field, StrictStr, conlist
|
|
23
|
+
from lusid.models.instrument_resolution_detail import InstrumentResolutionDetail
|
|
24
|
+
|
|
25
|
+
class SetShareClassInstrumentsRequest(BaseModel):
|
|
26
|
+
"""
|
|
27
|
+
The request used to create a Fund. # noqa: E501
|
|
28
|
+
"""
|
|
29
|
+
share_class_instrument_scopes: conlist(StrictStr, max_items=1) = Field(..., alias="shareClassInstrumentScopes", description="The scopes in which the instruments lie, currently limited to one.")
|
|
30
|
+
share_class_instruments: conlist(InstrumentResolutionDetail) = Field(..., alias="shareClassInstruments", description="Details the user-provided instrument identifiers and the instrument resolved from them.")
|
|
31
|
+
__properties = ["shareClassInstrumentScopes", "shareClassInstruments"]
|
|
32
|
+
|
|
33
|
+
class Config:
|
|
34
|
+
"""Pydantic configuration"""
|
|
35
|
+
allow_population_by_field_name = True
|
|
36
|
+
validate_assignment = True
|
|
37
|
+
|
|
38
|
+
def to_str(self) -> str:
|
|
39
|
+
"""Returns the string representation of the model using alias"""
|
|
40
|
+
return pprint.pformat(self.dict(by_alias=True))
|
|
41
|
+
|
|
42
|
+
def to_json(self) -> str:
|
|
43
|
+
"""Returns the JSON representation of the model using alias"""
|
|
44
|
+
return json.dumps(self.to_dict())
|
|
45
|
+
|
|
46
|
+
@classmethod
|
|
47
|
+
def from_json(cls, json_str: str) -> SetShareClassInstrumentsRequest:
|
|
48
|
+
"""Create an instance of SetShareClassInstrumentsRequest from a JSON string"""
|
|
49
|
+
return cls.from_dict(json.loads(json_str))
|
|
50
|
+
|
|
51
|
+
def to_dict(self):
|
|
52
|
+
"""Returns the dictionary representation of the model using alias"""
|
|
53
|
+
_dict = self.dict(by_alias=True,
|
|
54
|
+
exclude={
|
|
55
|
+
},
|
|
56
|
+
exclude_none=True)
|
|
57
|
+
# override the default output from pydantic by calling `to_dict()` of each item in share_class_instruments (list)
|
|
58
|
+
_items = []
|
|
59
|
+
if self.share_class_instruments:
|
|
60
|
+
for _item in self.share_class_instruments:
|
|
61
|
+
if _item:
|
|
62
|
+
_items.append(_item.to_dict())
|
|
63
|
+
_dict['shareClassInstruments'] = _items
|
|
64
|
+
return _dict
|
|
65
|
+
|
|
66
|
+
@classmethod
|
|
67
|
+
def from_dict(cls, obj: dict) -> SetShareClassInstrumentsRequest:
|
|
68
|
+
"""Create an instance of SetShareClassInstrumentsRequest from a dict"""
|
|
69
|
+
if obj is None:
|
|
70
|
+
return None
|
|
71
|
+
|
|
72
|
+
if not isinstance(obj, dict):
|
|
73
|
+
return SetShareClassInstrumentsRequest.parse_obj(obj)
|
|
74
|
+
|
|
75
|
+
_obj = SetShareClassInstrumentsRequest.parse_obj({
|
|
76
|
+
"share_class_instrument_scopes": obj.get("shareClassInstrumentScopes"),
|
|
77
|
+
"share_class_instruments": [InstrumentResolutionDetail.from_dict(_item) for _item in obj.get("shareClassInstruments")] if obj.get("shareClassInstruments") is not None else None
|
|
78
|
+
})
|
|
79
|
+
return _obj
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: lusid-sdk
|
|
3
|
-
Version: 2.0.
|
|
3
|
+
Version: 2.0.469
|
|
4
4
|
Summary: LUSID API
|
|
5
5
|
Home-page: https://github.com/finbourne/lusid-sdk-python
|
|
6
6
|
License: MIT
|
|
@@ -29,8 +29,8 @@ FINBOURNE Technology
|
|
|
29
29
|
|
|
30
30
|
This Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
|
|
31
31
|
|
|
32
|
-
- API version: 0.11.
|
|
33
|
-
- Package version: 2.0.
|
|
32
|
+
- API version: 0.11.6416
|
|
33
|
+
- Package version: 2.0.469
|
|
34
34
|
- Build package: org.openapitools.codegen.languages.PythonClientCodegen
|
|
35
35
|
For more information, please visit [https://www.finbourne.com](https://www.finbourne.com)
|
|
36
36
|
|
|
@@ -392,6 +392,7 @@ Class | Method | HTTP request | Description
|
|
|
392
392
|
*FundsApi* | [**delete_fund**](docs/FundsApi.md#delete_fund) | **DELETE** /api/funds/{scope}/{code} | [EXPERIMENTAL] DeleteFund: Delete a Fund.
|
|
393
393
|
*FundsApi* | [**get_fund**](docs/FundsApi.md#get_fund) | **GET** /api/funds/{scope}/{code} | [EXPERIMENTAL] GetFund: Get a Fund.
|
|
394
394
|
*FundsApi* | [**list_funds**](docs/FundsApi.md#list_funds) | **GET** /api/funds | [EXPERIMENTAL] ListFunds: List Funds.
|
|
395
|
+
*FundsApi* | [**set_share_class_instruments**](docs/FundsApi.md#set_share_class_instruments) | **POST** /api/funds/{scope}/{code}/shareclasses | [EXPERIMENTAL] SetShareClassInstruments: Set the ShareClass Instruments on a fund.
|
|
395
396
|
*FundsApi* | [**upsert_fund_properties**](docs/FundsApi.md#upsert_fund_properties) | **POST** /api/funds/{scope}/{code}/properties/$upsert | [EXPERIMENTAL] UpsertFundProperties: Upsert Fund properties
|
|
396
397
|
*InstrumentEventTypesApi* | [**create_transaction_template**](docs/InstrumentEventTypesApi.md#create_transaction_template) | **POST** /api/instrumenteventtypes/{instrumentEventType}/transactiontemplates/{instrumentType}/{scope} | [EXPERIMENTAL] CreateTransactionTemplate: Create Transaction Template
|
|
397
398
|
*InstrumentEventTypesApi* | [**delete_transaction_template**](docs/InstrumentEventTypesApi.md#delete_transaction_template) | **DELETE** /api/instrumenteventtypes/{instrumentEventType}/transactiontemplates/{instrumentType}/{scope} | [EXPERIMENTAL] DeleteTransactionTemplate: Delete Transaction Template
|
|
@@ -1460,6 +1461,7 @@ Class | Method | HTTP request | Description
|
|
|
1460
1461
|
- [SetLegalEntityPropertiesRequest](docs/SetLegalEntityPropertiesRequest.md)
|
|
1461
1462
|
- [SetPersonIdentifiersRequest](docs/SetPersonIdentifiersRequest.md)
|
|
1462
1463
|
- [SetPersonPropertiesRequest](docs/SetPersonPropertiesRequest.md)
|
|
1464
|
+
- [SetShareClassInstrumentsRequest](docs/SetShareClassInstrumentsRequest.md)
|
|
1463
1465
|
- [SetTransactionConfigurationAlias](docs/SetTransactionConfigurationAlias.md)
|
|
1464
1466
|
- [SetTransactionConfigurationSourceRequest](docs/SetTransactionConfigurationSourceRequest.md)
|
|
1465
1467
|
- [SideConfigurationData](docs/SideConfigurationData.md)
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
lusid/__init__.py,sha256=
|
|
1
|
+
lusid/__init__.py,sha256=EQK9tQOiC7QAoJGo8UE_pNfiMCGfEk49qcmCaWIpnFs,102340
|
|
2
2
|
lusid/api/__init__.py,sha256=YLItLvUuZfBp40i0JAN__zT6iZVl_lW3wDCU1HGd6-M,5283
|
|
3
3
|
lusid/api/abor_api.py,sha256=c7jUtAQLrgCgnkNCLLTkelIoU-Yd674I3-4kVDnIJlc,149936
|
|
4
4
|
lusid/api/abor_configuration_api.py,sha256=SBpk45BSb-XcS06xkpycyg6Q2U4hpiuftgmF4v9L7x0,64027
|
|
@@ -23,7 +23,7 @@ lusid/api/data_types_api.py,sha256=EQ3yzW21xj7Dgxf_BGNqd6BMUIyjCsKIaXLjwHZuAB0,7
|
|
|
23
23
|
lusid/api/derived_transaction_portfolios_api.py,sha256=hncRVE3KtxoHSHGZOFf0GGPD9TWSVmcgLa5WNMI4CWQ,20221
|
|
24
24
|
lusid/api/entities_api.py,sha256=W2uFKv2Z20p-n1JJwpYqW7gaUt0jsGQAJFUgBZcsBSc,10437
|
|
25
25
|
lusid/api/executions_api.py,sha256=bkZ17d5H6cNvw38fPalxVr5OiTR3ZV0yLp16AFYTjrk,44429
|
|
26
|
-
lusid/api/funds_api.py,sha256=
|
|
26
|
+
lusid/api/funds_api.py,sha256=bgkNz8utUOQktRjWJbdMrz5uU80SssP-tToC_o9RuVQ,69638
|
|
27
27
|
lusid/api/instrument_event_types_api.py,sha256=h-cToquxz4MOrs5wTaiDMPXiCryv0mSw0s1MdJCd2GQ,81540
|
|
28
28
|
lusid/api/instrument_events_api.py,sha256=oF1UskrI1z8Rox-55dsgmHIOD10WyPoAI9hApsk5kT8,45405
|
|
29
29
|
lusid/api/instruments_api.py,sha256=_dEsRxGdTF-4lG6AVCYh8zgb_pdDmHNOK2lg5nAC_6o,281327
|
|
@@ -64,7 +64,7 @@ lusid/api/transaction_portfolios_api.py,sha256=Q-RvuNmYL4drz4LeytNHRCmvrWwxfnPnT
|
|
|
64
64
|
lusid/api/translation_api.py,sha256=8_YL07_CYCI-FV4jMdiq7zlsDXqvkPMFQPyT6NL4jvU,20086
|
|
65
65
|
lusid/api_client.py,sha256=dF6l9RAsdxdQjf6Qn4ny6LB-QXlJmsscWiozCvyyBFA,30709
|
|
66
66
|
lusid/api_response.py,sha256=uCehWdXXDnAO2HAHGKe0SgpQ_mJiGDbcu-BHDF3n_IM,852
|
|
67
|
-
lusid/configuration.py,sha256=
|
|
67
|
+
lusid/configuration.py,sha256=TVsDjf3FwYXTV7sS2TwC5CdVogxmfStriW6XoBj7Gs4,14404
|
|
68
68
|
lusid/exceptions.py,sha256=HIQwgmQrszLlcVCLaqex8dO0laVuejUyOMz7U2ZWJ6s,5326
|
|
69
69
|
lusid/extensions/__init__.py,sha256=DeUuQP7yTcklJH7LT-bw9wQhKEggcs1KwQbPbFcOlhw,560
|
|
70
70
|
lusid/extensions/api_client.py,sha256=Ob06urm4Em3MLzgP_geyeeGsPCkU225msW_1kpIeABM,30567
|
|
@@ -77,7 +77,7 @@ lusid/extensions/rest.py,sha256=tjVCu-cRrYcjp-ttB975vebPKtBNyBWaeoAdO3QXG2I,1269
|
|
|
77
77
|
lusid/extensions/retry.py,sha256=orBJ1uF1iT1IncjWX1iGHVqsCgTh0SBe9rtiV_sPnwk,11564
|
|
78
78
|
lusid/extensions/socket_keep_alive.py,sha256=NGlqsv-E25IjJOLGZhXZY6kUdx51nEF8qCQyVdzayRk,1653
|
|
79
79
|
lusid/extensions/tcp_keep_alive_connector.py,sha256=zaGtUsygRsxB1_4B3x39K3ILwztdhMLDv5bFZV7zmGE,3877
|
|
80
|
-
lusid/models/__init__.py,sha256=
|
|
80
|
+
lusid/models/__init__.py,sha256=tSErjzxjmRT7ThzdR551H_07oEWtwlVmwVoURiBzEps,96099
|
|
81
81
|
lusid/models/a2_b_breakdown.py,sha256=MmG2do_CuV3zyMZJP0BORoG_jTe0G308IjBYhSZbpUw,2944
|
|
82
82
|
lusid/models/a2_b_category.py,sha256=DKiB3y93L3-MXpqRqGo93PeFlvD4ZjnQfH489NRLQVc,2722
|
|
83
83
|
lusid/models/a2_b_data_record.py,sha256=Xey2yvdCY9D-oBM_0Z5QIxboMAIzxKAgHcrvKie7Ypk,9734
|
|
@@ -379,7 +379,7 @@ lusid/models/forward_rate_agreement.py,sha256=KYktaQyiZfQfOLLVOYwbfClIYpiQq5Vxqu
|
|
|
379
379
|
lusid/models/from_recipe.py,sha256=FY1tuJJTdWumPX9qwyT_27-yVfQjfBVqyjJzEeQSiSg,2258
|
|
380
380
|
lusid/models/fund.py,sha256=F5ONwY6I6kJYrqi4f_yCLrpP3wEwEUuXIF2ShuIHiiw,8475
|
|
381
381
|
lusid/models/fund_properties.py,sha256=BEnVAQE_N26-2_xugtkhbyDY4m-l85-I57PuiA-zhrk,4239
|
|
382
|
-
lusid/models/fund_request.py,sha256=
|
|
382
|
+
lusid/models/fund_request.py,sha256=q5V0ifqSauXEbswZ1R5jGfUwLdPKFboY8HecA7dxt4g,7862
|
|
383
383
|
lusid/models/fund_share_class.py,sha256=dGCPHX_SGUei-8dRQbnVgCCfjiUOdJ8Z9wQXXzf-I_Q,6549
|
|
384
384
|
lusid/models/funding_leg.py,sha256=qejNziErzVaDnC17JvyrEiUhMBWikfCb-SKbTFSHnF0,7381
|
|
385
385
|
lusid/models/funding_leg_options.py,sha256=8R922n9hPhaaez4sbCr7moDSv3nApt9Amtj0xqDvD-I,3512
|
|
@@ -829,6 +829,7 @@ lusid/models/set_legal_entity_identifiers_request.py,sha256=ZISMFHbKpDF8iAe7fLma
|
|
|
829
829
|
lusid/models/set_legal_entity_properties_request.py,sha256=UOZTEHrX1go9hYIRwK9lw_rN51y5dYmApq0T8l-yilw,2980
|
|
830
830
|
lusid/models/set_person_identifiers_request.py,sha256=5sWcR9xnksJOHPxOm0uWm3tqlm0ZLkpQG_RMcjq4o70,2896
|
|
831
831
|
lusid/models/set_person_properties_request.py,sha256=vT6jfBgm2yi1mAA91ehMWOOq8znDHXMXZTK2a6d_mqk,2694
|
|
832
|
+
lusid/models/set_share_class_instruments_request.py,sha256=4qqF-vt2iMookexjEcr3NfYL192PmqVaiplLD0zhNho,3080
|
|
832
833
|
lusid/models/set_transaction_configuration_alias.py,sha256=AvA-QbuqzxtL-9A6JFkFAq30rniE2tqj_cqBv3Vqu3U,2933
|
|
833
834
|
lusid/models/set_transaction_configuration_source_request.py,sha256=UhvJfkaqXZ9Y0CeY7KEEPapN4Qxf4e4VPJFy5yBMYeA,4223
|
|
834
835
|
lusid/models/side_configuration_data.py,sha256=iT7rPjwXwN535P-ObpFwzSgceSwXXPWmDv5LuhmrqdA,3515
|
|
@@ -1002,6 +1003,6 @@ lusid/models/weighted_instruments.py,sha256=M2Mr7KTAcMS40g309xatBHDhvYk3g61yigx0
|
|
|
1002
1003
|
lusid/models/yield_curve_data.py,sha256=i2MHEJe9kdTTgxQFti2a6BAU7ikE0wTPXsS_sMJhrDk,6327
|
|
1003
1004
|
lusid/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1004
1005
|
lusid/rest.py,sha256=gHQ76psf1vzmBJI14ZGVvb3f_Urp0zBBo3R5u3-kNIM,10032
|
|
1005
|
-
lusid_sdk-2.0.
|
|
1006
|
-
lusid_sdk-2.0.
|
|
1007
|
-
lusid_sdk-2.0.
|
|
1006
|
+
lusid_sdk-2.0.469.dist-info/METADATA,sha256=RFhq2NyEnwxhB2Tb7UA6ZGo4QdohtfPV-YHx56v7Otk,176619
|
|
1007
|
+
lusid_sdk-2.0.469.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
|
|
1008
|
+
lusid_sdk-2.0.469.dist-info/RECORD,,
|
|
File without changes
|