lusid-sdk 2.0.455__py3-none-any.whl → 2.0.485__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 +26 -0
- lusid/api/__init__.py +2 -0
- lusid/api/funds_api.py +1179 -125
- lusid/api/staging_rule_set_api.py +885 -0
- lusid/configuration.py +1 -1
- lusid/extensions/api_client_factory.py +4 -1
- lusid/models/__init__.py +24 -0
- lusid/models/create_derived_property_definition_request.py +3 -3
- lusid/models/create_property_definition_request.py +3 -3
- lusid/models/create_staging_rule_set_request.py +91 -0
- lusid/models/fund_request.py +1 -1
- lusid/models/instrument_event_configuration.py +8 -2
- lusid/models/order_graph_block_order_synopsis.py +9 -2
- lusid/models/order_graph_block_placement_synopsis.py +9 -2
- lusid/models/paged_resource_list_of_staging_rule_set.py +113 -0
- lusid/models/property_definition.py +3 -3
- lusid/models/property_definition_search_result.py +3 -3
- lusid/models/property_domain.py +1 -0
- lusid/models/set_share_class_instruments_request.py +79 -0
- lusid/models/staging_rule.py +90 -0
- lusid/models/staging_rule_approval_criteria.py +81 -0
- lusid/models/staging_rule_match_criteria.py +95 -0
- lusid/models/staging_rule_set.py +103 -0
- lusid/models/transaction_property_map.py +9 -8
- lusid/models/update_staging_rule_set_request.py +91 -0
- lusid/models/upsert_valuation_point_request.py +135 -0
- lusid/models/valuation_point_data_query_parameters.py +73 -0
- lusid/models/valuation_point_data_request.py +76 -0
- lusid/models/valuation_point_data_response.py +107 -0
- {lusid_sdk-2.0.455.dist-info → lusid_sdk-2.0.485.dist-info}/METADATA +28 -6
- {lusid_sdk-2.0.455.dist-info → lusid_sdk-2.0.485.dist-info}/RECORD +32 -19
- {lusid_sdk-2.0.455.dist-info → lusid_sdk-2.0.485.dist-info}/WHEEL +0 -0
|
@@ -0,0 +1,135 @@
|
|
|
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
|
+
from datetime import datetime
|
|
21
|
+
from typing import Any, Dict, Optional
|
|
22
|
+
from pydantic import BaseModel, Field, constr, validator
|
|
23
|
+
from lusid.models.model_property import ModelProperty
|
|
24
|
+
|
|
25
|
+
class UpsertValuationPointRequest(BaseModel):
|
|
26
|
+
"""
|
|
27
|
+
A definition for the period you wish to close # noqa: E501
|
|
28
|
+
"""
|
|
29
|
+
diary_entry_code: Optional[constr(strict=True, max_length=64, min_length=1)] = Field(None, alias="diaryEntryCode", description="Unique code for the Valuation Point.")
|
|
30
|
+
name: Optional[constr(strict=True, max_length=512, min_length=1)] = Field(None, description="Identifiable Name assigned to the Valuation Point.")
|
|
31
|
+
effective_at: Optional[datetime] = Field(None, alias="effectiveAt", description="The effective time of the diary entry.")
|
|
32
|
+
query_as_at: Optional[datetime] = Field(None, alias="queryAsAt", description="The query time of the diary entry. Defaults to latest.")
|
|
33
|
+
properties: Optional[Dict[str, ModelProperty]] = Field(None, description="A set of properties for the diary entry.")
|
|
34
|
+
__properties = ["diaryEntryCode", "name", "effectiveAt", "queryAsAt", "properties"]
|
|
35
|
+
|
|
36
|
+
@validator('diary_entry_code')
|
|
37
|
+
def diary_entry_code_validate_regular_expression(cls, value):
|
|
38
|
+
"""Validates the regular expression"""
|
|
39
|
+
if value is None:
|
|
40
|
+
return value
|
|
41
|
+
|
|
42
|
+
if not re.match(r"^[a-zA-Z0-9\-_]+$", value):
|
|
43
|
+
raise ValueError(r"must validate the regular expression /^[a-zA-Z0-9\-_]+$/")
|
|
44
|
+
return value
|
|
45
|
+
|
|
46
|
+
@validator('name')
|
|
47
|
+
def name_validate_regular_expression(cls, value):
|
|
48
|
+
"""Validates the regular expression"""
|
|
49
|
+
if value is None:
|
|
50
|
+
return value
|
|
51
|
+
|
|
52
|
+
if not re.match(r"^[\s\S]*$", value):
|
|
53
|
+
raise ValueError(r"must validate the regular expression /^[\s\S]*$/")
|
|
54
|
+
return value
|
|
55
|
+
|
|
56
|
+
class Config:
|
|
57
|
+
"""Pydantic configuration"""
|
|
58
|
+
allow_population_by_field_name = True
|
|
59
|
+
validate_assignment = True
|
|
60
|
+
|
|
61
|
+
def to_str(self) -> str:
|
|
62
|
+
"""Returns the string representation of the model using alias"""
|
|
63
|
+
return pprint.pformat(self.dict(by_alias=True))
|
|
64
|
+
|
|
65
|
+
def to_json(self) -> str:
|
|
66
|
+
"""Returns the JSON representation of the model using alias"""
|
|
67
|
+
return json.dumps(self.to_dict())
|
|
68
|
+
|
|
69
|
+
@classmethod
|
|
70
|
+
def from_json(cls, json_str: str) -> UpsertValuationPointRequest:
|
|
71
|
+
"""Create an instance of UpsertValuationPointRequest from a JSON string"""
|
|
72
|
+
return cls.from_dict(json.loads(json_str))
|
|
73
|
+
|
|
74
|
+
def to_dict(self):
|
|
75
|
+
"""Returns the dictionary representation of the model using alias"""
|
|
76
|
+
_dict = self.dict(by_alias=True,
|
|
77
|
+
exclude={
|
|
78
|
+
},
|
|
79
|
+
exclude_none=True)
|
|
80
|
+
# override the default output from pydantic by calling `to_dict()` of each value in properties (dict)
|
|
81
|
+
_field_dict = {}
|
|
82
|
+
if self.properties:
|
|
83
|
+
for _key in self.properties:
|
|
84
|
+
if self.properties[_key]:
|
|
85
|
+
_field_dict[_key] = self.properties[_key].to_dict()
|
|
86
|
+
_dict['properties'] = _field_dict
|
|
87
|
+
# set to None if diary_entry_code (nullable) is None
|
|
88
|
+
# and __fields_set__ contains the field
|
|
89
|
+
if self.diary_entry_code is None and "diary_entry_code" in self.__fields_set__:
|
|
90
|
+
_dict['diaryEntryCode'] = None
|
|
91
|
+
|
|
92
|
+
# set to None if name (nullable) is None
|
|
93
|
+
# and __fields_set__ contains the field
|
|
94
|
+
if self.name is None and "name" in self.__fields_set__:
|
|
95
|
+
_dict['name'] = None
|
|
96
|
+
|
|
97
|
+
# set to None if effective_at (nullable) is None
|
|
98
|
+
# and __fields_set__ contains the field
|
|
99
|
+
if self.effective_at is None and "effective_at" in self.__fields_set__:
|
|
100
|
+
_dict['effectiveAt'] = None
|
|
101
|
+
|
|
102
|
+
# set to None if query_as_at (nullable) is None
|
|
103
|
+
# and __fields_set__ contains the field
|
|
104
|
+
if self.query_as_at is None and "query_as_at" in self.__fields_set__:
|
|
105
|
+
_dict['queryAsAt'] = None
|
|
106
|
+
|
|
107
|
+
# set to None if properties (nullable) is None
|
|
108
|
+
# and __fields_set__ contains the field
|
|
109
|
+
if self.properties is None and "properties" in self.__fields_set__:
|
|
110
|
+
_dict['properties'] = None
|
|
111
|
+
|
|
112
|
+
return _dict
|
|
113
|
+
|
|
114
|
+
@classmethod
|
|
115
|
+
def from_dict(cls, obj: dict) -> UpsertValuationPointRequest:
|
|
116
|
+
"""Create an instance of UpsertValuationPointRequest from a dict"""
|
|
117
|
+
if obj is None:
|
|
118
|
+
return None
|
|
119
|
+
|
|
120
|
+
if not isinstance(obj, dict):
|
|
121
|
+
return UpsertValuationPointRequest.parse_obj(obj)
|
|
122
|
+
|
|
123
|
+
_obj = UpsertValuationPointRequest.parse_obj({
|
|
124
|
+
"diary_entry_code": obj.get("diaryEntryCode"),
|
|
125
|
+
"name": obj.get("name"),
|
|
126
|
+
"effective_at": obj.get("effectiveAt"),
|
|
127
|
+
"query_as_at": obj.get("queryAsAt"),
|
|
128
|
+
"properties": dict(
|
|
129
|
+
(_k, ModelProperty.from_dict(_v))
|
|
130
|
+
for _k, _v in obj.get("properties").items()
|
|
131
|
+
)
|
|
132
|
+
if obj.get("properties") is not None
|
|
133
|
+
else None
|
|
134
|
+
})
|
|
135
|
+
return _obj
|
|
@@ -0,0 +1,73 @@
|
|
|
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, Optional
|
|
22
|
+
from pydantic import BaseModel
|
|
23
|
+
from lusid.models.date_or_diary_entry import DateOrDiaryEntry
|
|
24
|
+
|
|
25
|
+
class ValuationPointDataQueryParameters(BaseModel):
|
|
26
|
+
"""
|
|
27
|
+
The parameters used in getting the ValuationPointData. # noqa: E501
|
|
28
|
+
"""
|
|
29
|
+
end: Optional[DateOrDiaryEntry] = None
|
|
30
|
+
__properties = ["end"]
|
|
31
|
+
|
|
32
|
+
class Config:
|
|
33
|
+
"""Pydantic configuration"""
|
|
34
|
+
allow_population_by_field_name = True
|
|
35
|
+
validate_assignment = True
|
|
36
|
+
|
|
37
|
+
def to_str(self) -> str:
|
|
38
|
+
"""Returns the string representation of the model using alias"""
|
|
39
|
+
return pprint.pformat(self.dict(by_alias=True))
|
|
40
|
+
|
|
41
|
+
def to_json(self) -> str:
|
|
42
|
+
"""Returns the JSON representation of the model using alias"""
|
|
43
|
+
return json.dumps(self.to_dict())
|
|
44
|
+
|
|
45
|
+
@classmethod
|
|
46
|
+
def from_json(cls, json_str: str) -> ValuationPointDataQueryParameters:
|
|
47
|
+
"""Create an instance of ValuationPointDataQueryParameters from a JSON string"""
|
|
48
|
+
return cls.from_dict(json.loads(json_str))
|
|
49
|
+
|
|
50
|
+
def to_dict(self):
|
|
51
|
+
"""Returns the dictionary representation of the model using alias"""
|
|
52
|
+
_dict = self.dict(by_alias=True,
|
|
53
|
+
exclude={
|
|
54
|
+
},
|
|
55
|
+
exclude_none=True)
|
|
56
|
+
# override the default output from pydantic by calling `to_dict()` of end
|
|
57
|
+
if self.end:
|
|
58
|
+
_dict['end'] = self.end.to_dict()
|
|
59
|
+
return _dict
|
|
60
|
+
|
|
61
|
+
@classmethod
|
|
62
|
+
def from_dict(cls, obj: dict) -> ValuationPointDataQueryParameters:
|
|
63
|
+
"""Create an instance of ValuationPointDataQueryParameters from a dict"""
|
|
64
|
+
if obj is None:
|
|
65
|
+
return None
|
|
66
|
+
|
|
67
|
+
if not isinstance(obj, dict):
|
|
68
|
+
return ValuationPointDataQueryParameters.parse_obj(obj)
|
|
69
|
+
|
|
70
|
+
_obj = ValuationPointDataQueryParameters.parse_obj({
|
|
71
|
+
"end": DateOrDiaryEntry.from_dict(obj.get("end")) if obj.get("end") is not None else None
|
|
72
|
+
})
|
|
73
|
+
return _obj
|
|
@@ -0,0 +1,76 @@
|
|
|
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
|
|
22
|
+
from pydantic import BaseModel, Field, constr, validator
|
|
23
|
+
|
|
24
|
+
class ValuationPointDataRequest(BaseModel):
|
|
25
|
+
"""
|
|
26
|
+
The ValuationPointDataRequest. # noqa: E501
|
|
27
|
+
"""
|
|
28
|
+
diary_entry_code: constr(strict=True, max_length=64, min_length=1) = Field(..., alias="diaryEntryCode", description="Unique code for the Valuation Point.")
|
|
29
|
+
__properties = ["diaryEntryCode"]
|
|
30
|
+
|
|
31
|
+
@validator('diary_entry_code')
|
|
32
|
+
def diary_entry_code_validate_regular_expression(cls, value):
|
|
33
|
+
"""Validates the regular expression"""
|
|
34
|
+
if not re.match(r"^[a-zA-Z0-9\-_]+$", value):
|
|
35
|
+
raise ValueError(r"must validate the regular expression /^[a-zA-Z0-9\-_]+$/")
|
|
36
|
+
return value
|
|
37
|
+
|
|
38
|
+
class Config:
|
|
39
|
+
"""Pydantic configuration"""
|
|
40
|
+
allow_population_by_field_name = True
|
|
41
|
+
validate_assignment = True
|
|
42
|
+
|
|
43
|
+
def to_str(self) -> str:
|
|
44
|
+
"""Returns the string representation of the model using alias"""
|
|
45
|
+
return pprint.pformat(self.dict(by_alias=True))
|
|
46
|
+
|
|
47
|
+
def to_json(self) -> str:
|
|
48
|
+
"""Returns the JSON representation of the model using alias"""
|
|
49
|
+
return json.dumps(self.to_dict())
|
|
50
|
+
|
|
51
|
+
@classmethod
|
|
52
|
+
def from_json(cls, json_str: str) -> ValuationPointDataRequest:
|
|
53
|
+
"""Create an instance of ValuationPointDataRequest from a JSON string"""
|
|
54
|
+
return cls.from_dict(json.loads(json_str))
|
|
55
|
+
|
|
56
|
+
def to_dict(self):
|
|
57
|
+
"""Returns the dictionary representation of the model using alias"""
|
|
58
|
+
_dict = self.dict(by_alias=True,
|
|
59
|
+
exclude={
|
|
60
|
+
},
|
|
61
|
+
exclude_none=True)
|
|
62
|
+
return _dict
|
|
63
|
+
|
|
64
|
+
@classmethod
|
|
65
|
+
def from_dict(cls, obj: dict) -> ValuationPointDataRequest:
|
|
66
|
+
"""Create an instance of ValuationPointDataRequest from a dict"""
|
|
67
|
+
if obj is None:
|
|
68
|
+
return None
|
|
69
|
+
|
|
70
|
+
if not isinstance(obj, dict):
|
|
71
|
+
return ValuationPointDataRequest.parse_obj(obj)
|
|
72
|
+
|
|
73
|
+
_obj = ValuationPointDataRequest.parse_obj({
|
|
74
|
+
"diary_entry_code": obj.get("diaryEntryCode")
|
|
75
|
+
})
|
|
76
|
+
return _obj
|
|
@@ -0,0 +1,107 @@
|
|
|
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, Optional, Union
|
|
22
|
+
from pydantic import BaseModel, Field, StrictFloat, StrictInt, StrictStr, conlist, constr
|
|
23
|
+
from lusid.models.link import Link
|
|
24
|
+
|
|
25
|
+
class ValuationPointDataResponse(BaseModel):
|
|
26
|
+
"""
|
|
27
|
+
The Valuation Point Data Response for the Fund and specified date. # noqa: E501
|
|
28
|
+
"""
|
|
29
|
+
href: Optional[StrictStr] = Field(None, description="The specific Uniform Resource Identifier (URI) for this resource at the requested effective and asAt datetime.")
|
|
30
|
+
type: constr(strict=True, min_length=1) = Field(..., description="The Type of the associated Diary Entry ('PeriodBoundary','ValuationPoint','Other' or 'Adhoc' when a diary Entry wasn't used).")
|
|
31
|
+
status: constr(strict=True, min_length=1) = Field(..., description="The Status of the associated Diary Entry ('Estimate','Final','Candidate' or 'Unofficial').")
|
|
32
|
+
backout: Dict[str, Union[StrictFloat, StrictInt]] = Field(..., description="Bucket of detail for the Valuation Point, where data points have been 'backed out'.")
|
|
33
|
+
dealing: Dict[str, Union[StrictFloat, StrictInt]] = Field(..., description="Bucket of detail for any 'Dealing' that has occured inside the queried period.")
|
|
34
|
+
pn_l: Dict[str, Union[StrictFloat, StrictInt]] = Field(..., alias="pnL", description="Bucket of detail for 'PnL' that has occured inside the queried period.")
|
|
35
|
+
gav: Union[StrictFloat, StrictInt] = Field(..., description="The Gross Asset Value of the Fund at the Period end. This is effectively a summation of all Trial balance entries linked to accounts of types 'Asset' and 'Liabilities'.")
|
|
36
|
+
fees: Dict[str, Union[StrictFloat, StrictInt]] = Field(..., description="Bucket of detail for any 'Fees' that have been charged in the selected period.")
|
|
37
|
+
nav: Union[StrictFloat, StrictInt] = Field(..., description="The Net Asset Value of the Fund at the Period end. This represents the GAV with any fees applied in the period.")
|
|
38
|
+
previous_nav: Union[StrictFloat, StrictInt] = Field(..., alias="previousNav", description="The Net Asset Value of the Fund at the End of the last Period.")
|
|
39
|
+
links: Optional[conlist(Link)] = None
|
|
40
|
+
__properties = ["href", "type", "status", "backout", "dealing", "pnL", "gav", "fees", "nav", "previousNav", "links"]
|
|
41
|
+
|
|
42
|
+
class Config:
|
|
43
|
+
"""Pydantic configuration"""
|
|
44
|
+
allow_population_by_field_name = True
|
|
45
|
+
validate_assignment = True
|
|
46
|
+
|
|
47
|
+
def to_str(self) -> str:
|
|
48
|
+
"""Returns the string representation of the model using alias"""
|
|
49
|
+
return pprint.pformat(self.dict(by_alias=True))
|
|
50
|
+
|
|
51
|
+
def to_json(self) -> str:
|
|
52
|
+
"""Returns the JSON representation of the model using alias"""
|
|
53
|
+
return json.dumps(self.to_dict())
|
|
54
|
+
|
|
55
|
+
@classmethod
|
|
56
|
+
def from_json(cls, json_str: str) -> ValuationPointDataResponse:
|
|
57
|
+
"""Create an instance of ValuationPointDataResponse from a JSON string"""
|
|
58
|
+
return cls.from_dict(json.loads(json_str))
|
|
59
|
+
|
|
60
|
+
def to_dict(self):
|
|
61
|
+
"""Returns the dictionary representation of the model using alias"""
|
|
62
|
+
_dict = self.dict(by_alias=True,
|
|
63
|
+
exclude={
|
|
64
|
+
},
|
|
65
|
+
exclude_none=True)
|
|
66
|
+
# override the default output from pydantic by calling `to_dict()` of each item in links (list)
|
|
67
|
+
_items = []
|
|
68
|
+
if self.links:
|
|
69
|
+
for _item in self.links:
|
|
70
|
+
if _item:
|
|
71
|
+
_items.append(_item.to_dict())
|
|
72
|
+
_dict['links'] = _items
|
|
73
|
+
# set to None if href (nullable) is None
|
|
74
|
+
# and __fields_set__ contains the field
|
|
75
|
+
if self.href is None and "href" in self.__fields_set__:
|
|
76
|
+
_dict['href'] = None
|
|
77
|
+
|
|
78
|
+
# set to None if links (nullable) is None
|
|
79
|
+
# and __fields_set__ contains the field
|
|
80
|
+
if self.links is None and "links" in self.__fields_set__:
|
|
81
|
+
_dict['links'] = None
|
|
82
|
+
|
|
83
|
+
return _dict
|
|
84
|
+
|
|
85
|
+
@classmethod
|
|
86
|
+
def from_dict(cls, obj: dict) -> ValuationPointDataResponse:
|
|
87
|
+
"""Create an instance of ValuationPointDataResponse from a dict"""
|
|
88
|
+
if obj is None:
|
|
89
|
+
return None
|
|
90
|
+
|
|
91
|
+
if not isinstance(obj, dict):
|
|
92
|
+
return ValuationPointDataResponse.parse_obj(obj)
|
|
93
|
+
|
|
94
|
+
_obj = ValuationPointDataResponse.parse_obj({
|
|
95
|
+
"href": obj.get("href"),
|
|
96
|
+
"type": obj.get("type"),
|
|
97
|
+
"status": obj.get("status"),
|
|
98
|
+
"backout": obj.get("backout"),
|
|
99
|
+
"dealing": obj.get("dealing"),
|
|
100
|
+
"pn_l": obj.get("pnL"),
|
|
101
|
+
"gav": obj.get("gav"),
|
|
102
|
+
"fees": obj.get("fees"),
|
|
103
|
+
"nav": obj.get("nav"),
|
|
104
|
+
"previous_nav": obj.get("previousNav"),
|
|
105
|
+
"links": [Link.from_dict(_item) for _item in obj.get("links")] if obj.get("links") is not None else None
|
|
106
|
+
})
|
|
107
|
+
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.485
|
|
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.6432
|
|
33
|
+
- Package version: 2.0.485
|
|
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
|
|
|
@@ -86,8 +86,7 @@ FBN_LUSID_API_URL,
|
|
|
86
86
|
FBN_USERNAME,
|
|
87
87
|
FBN_PASSWORD,
|
|
88
88
|
FBN_CLIENT_ID,
|
|
89
|
-
FBN_CLIENT_SECRET
|
|
90
|
-
FBN_ACCESS_TOKEN
|
|
89
|
+
FBN_CLIENT_SECRET
|
|
91
90
|
```
|
|
92
91
|
|
|
93
92
|
To use a long lived Personal Access Token, you must provide the following environment variables:
|
|
@@ -388,11 +387,17 @@ Class | Method | HTTP request | Description
|
|
|
388
387
|
*ExecutionsApi* | [**get_execution**](docs/ExecutionsApi.md#get_execution) | **GET** /api/executions/{scope}/{code} | [EARLY ACCESS] GetExecution: Get Execution
|
|
389
388
|
*ExecutionsApi* | [**list_executions**](docs/ExecutionsApi.md#list_executions) | **GET** /api/executions | [EARLY ACCESS] ListExecutions: List Executions
|
|
390
389
|
*ExecutionsApi* | [**upsert_executions**](docs/ExecutionsApi.md#upsert_executions) | **POST** /api/executions | [EARLY ACCESS] UpsertExecutions: Upsert Execution
|
|
390
|
+
*FundsApi* | [**accept_estimate_point**](docs/FundsApi.md#accept_estimate_point) | **POST** /api/funds/{scope}/{code}/valuationpoints/$acceptestimate | [EXPERIMENTAL] AcceptEstimatePoint: Accepts an Estimate Valuation Point.
|
|
391
391
|
*FundsApi* | [**create_fund**](docs/FundsApi.md#create_fund) | **POST** /api/funds/{scope} | [EXPERIMENTAL] CreateFund: Create a Fund.
|
|
392
392
|
*FundsApi* | [**delete_fund**](docs/FundsApi.md#delete_fund) | **DELETE** /api/funds/{scope}/{code} | [EXPERIMENTAL] DeleteFund: Delete a Fund.
|
|
393
|
+
*FundsApi* | [**delete_valuation_point**](docs/FundsApi.md#delete_valuation_point) | **DELETE** /api/funds/{scope}/{code}/valuationpoints/{diaryEntryCode} | [EXPERIMENTAL] DeleteValuationPoint: Delete a Valuation Point.
|
|
394
|
+
*FundsApi* | [**finalise_candidate_valuation**](docs/FundsApi.md#finalise_candidate_valuation) | **POST** /api/funds/{scope}/{code}/valuationpoints/$finalisecandidate | [EXPERIMENTAL] FinaliseCandidateValuation: Finalise Candidate.
|
|
393
395
|
*FundsApi* | [**get_fund**](docs/FundsApi.md#get_fund) | **GET** /api/funds/{scope}/{code} | [EXPERIMENTAL] GetFund: Get a Fund.
|
|
396
|
+
*FundsApi* | [**get_valuation_point_data**](docs/FundsApi.md#get_valuation_point_data) | **POST** /api/funds/{scope}/{code}/valuationpoints | [EXPERIMENTAL] GetValuationPointData: Get Valuation Point Data for a Fund.
|
|
394
397
|
*FundsApi* | [**list_funds**](docs/FundsApi.md#list_funds) | **GET** /api/funds | [EXPERIMENTAL] ListFunds: List Funds.
|
|
395
|
-
*FundsApi* | [**
|
|
398
|
+
*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.
|
|
399
|
+
*FundsApi* | [**upsert_fund_properties**](docs/FundsApi.md#upsert_fund_properties) | **POST** /api/funds/{scope}/{code}/properties/$upsert | [EXPERIMENTAL] UpsertFundProperties: Upsert Fund properties.
|
|
400
|
+
*FundsApi* | [**upsert_valuation_point**](docs/FundsApi.md#upsert_valuation_point) | **POST** /api/funds/{scope}/{code}/valuationpoints/$upsert | [EXPERIMENTAL] UpsertValuationPoint: Upsert Valuation Point.
|
|
396
401
|
*InstrumentEventTypesApi* | [**create_transaction_template**](docs/InstrumentEventTypesApi.md#create_transaction_template) | **POST** /api/instrumenteventtypes/{instrumentEventType}/transactiontemplates/{instrumentType}/{scope} | [EXPERIMENTAL] CreateTransactionTemplate: Create Transaction Template
|
|
397
402
|
*InstrumentEventTypesApi* | [**delete_transaction_template**](docs/InstrumentEventTypesApi.md#delete_transaction_template) | **DELETE** /api/instrumenteventtypes/{instrumentEventType}/transactiontemplates/{instrumentType}/{scope} | [EXPERIMENTAL] DeleteTransactionTemplate: Delete Transaction Template
|
|
398
403
|
*InstrumentEventTypesApi* | [**get_transaction_template**](docs/InstrumentEventTypesApi.md#get_transaction_template) | **GET** /api/instrumenteventtypes/{instrumentEventType}/transactiontemplates/{instrumentType}/{scope} | [EXPERIMENTAL] GetTransactionTemplate: Get Transaction Template
|
|
@@ -625,6 +630,11 @@ Class | Method | HTTP request | Description
|
|
|
625
630
|
*SequencesApi* | [**get_sequence**](docs/SequencesApi.md#get_sequence) | **GET** /api/sequences/{scope}/{code} | [EARLY ACCESS] GetSequence: Get a specified sequence
|
|
626
631
|
*SequencesApi* | [**list_sequences**](docs/SequencesApi.md#list_sequences) | **GET** /api/sequences | [EARLY ACCESS] ListSequences: List Sequences
|
|
627
632
|
*SequencesApi* | [**next**](docs/SequencesApi.md#next) | **GET** /api/sequences/{scope}/{code}/next | [EARLY ACCESS] Next: Get next values from sequence
|
|
633
|
+
*StagingRuleSetApi* | [**create_staging_rule_set**](docs/StagingRuleSetApi.md#create_staging_rule_set) | **POST** /api/stagingrulesets/{entityType} | [EXPERIMENTAL] CreateStagingRuleSet: Create a StagingRuleSet
|
|
634
|
+
*StagingRuleSetApi* | [**delete_staging_rule_set**](docs/StagingRuleSetApi.md#delete_staging_rule_set) | **DELETE** /api/stagingrulesets/{entityType} | [EXPERIMENTAL] DeleteStagingRuleSet: Delete a StagingRuleSet
|
|
635
|
+
*StagingRuleSetApi* | [**get_staging_rule_set**](docs/StagingRuleSetApi.md#get_staging_rule_set) | **GET** /api/stagingrulesets/{entityType} | [EXPERIMENTAL] GetStagingRuleSet: Get a StagingRuleSet
|
|
636
|
+
*StagingRuleSetApi* | [**list_staging_rule_sets**](docs/StagingRuleSetApi.md#list_staging_rule_sets) | **GET** /api/stagingrulesets | [EXPERIMENTAL] ListStagingRuleSets: List StagingRuleSets
|
|
637
|
+
*StagingRuleSetApi* | [**update_staging_rule_set**](docs/StagingRuleSetApi.md#update_staging_rule_set) | **PUT** /api/stagingrulesets/{entityType} | [EXPERIMENTAL] UpdateStagingRuleSet: Update a StagingRuleSet
|
|
628
638
|
*StructuredResultDataApi* | [**create_data_map**](docs/StructuredResultDataApi.md#create_data_map) | **POST** /api/unitresults/datamap/{scope} | [EXPERIMENTAL] CreateDataMap: Create data map
|
|
629
639
|
*StructuredResultDataApi* | [**delete_structured_result_data**](docs/StructuredResultDataApi.md#delete_structured_result_data) | **POST** /api/unitresults/{scope}/$delete | [EXPERIMENTAL] DeleteStructuredResultData: Delete structured result data
|
|
630
640
|
*StructuredResultDataApi* | [**get_address_key_definitions_for_document**](docs/StructuredResultDataApi.md#get_address_key_definitions_for_document) | **GET** /api/unitresults/virtualdocument/{scope}/{code}/{source}/{resultType}/addresskeydefinitions | [EARLY ACCESS] GetAddressKeyDefinitionsForDocument: Get AddressKeyDefinitions for a virtual document.
|
|
@@ -889,6 +899,7 @@ Class | Method | HTTP request | Description
|
|
|
889
899
|
- [CreateRelationshipDefinitionRequest](docs/CreateRelationshipDefinitionRequest.md)
|
|
890
900
|
- [CreateRelationshipRequest](docs/CreateRelationshipRequest.md)
|
|
891
901
|
- [CreateSequenceRequest](docs/CreateSequenceRequest.md)
|
|
902
|
+
- [CreateStagingRuleSetRequest](docs/CreateStagingRuleSetRequest.md)
|
|
892
903
|
- [CreateTaxRuleSetRequest](docs/CreateTaxRuleSetRequest.md)
|
|
893
904
|
- [CreateTradeTicketsResponse](docs/CreateTradeTicketsResponse.md)
|
|
894
905
|
- [CreateTransactionPortfolioRequest](docs/CreateTransactionPortfolioRequest.md)
|
|
@@ -1241,6 +1252,7 @@ Class | Method | HTTP request | Description
|
|
|
1241
1252
|
- [PagedResourceListOfReferenceListResponse](docs/PagedResourceListOfReferenceListResponse.md)
|
|
1242
1253
|
- [PagedResourceListOfRelationshipDefinition](docs/PagedResourceListOfRelationshipDefinition.md)
|
|
1243
1254
|
- [PagedResourceListOfSequenceDefinition](docs/PagedResourceListOfSequenceDefinition.md)
|
|
1255
|
+
- [PagedResourceListOfStagingRuleSet](docs/PagedResourceListOfStagingRuleSet.md)
|
|
1244
1256
|
- [PagedResourceListOfTransactionTemplate](docs/PagedResourceListOfTransactionTemplate.md)
|
|
1245
1257
|
- [PagedResourceListOfTransactionTemplateSpecification](docs/PagedResourceListOfTransactionTemplateSpecification.md)
|
|
1246
1258
|
- [PagedResourceListOfTranslationScriptId](docs/PagedResourceListOfTranslationScriptId.md)
|
|
@@ -1453,6 +1465,7 @@ Class | Method | HTTP request | Description
|
|
|
1453
1465
|
- [SetLegalEntityPropertiesRequest](docs/SetLegalEntityPropertiesRequest.md)
|
|
1454
1466
|
- [SetPersonIdentifiersRequest](docs/SetPersonIdentifiersRequest.md)
|
|
1455
1467
|
- [SetPersonPropertiesRequest](docs/SetPersonPropertiesRequest.md)
|
|
1468
|
+
- [SetShareClassInstrumentsRequest](docs/SetShareClassInstrumentsRequest.md)
|
|
1456
1469
|
- [SetTransactionConfigurationAlias](docs/SetTransactionConfigurationAlias.md)
|
|
1457
1470
|
- [SetTransactionConfigurationSourceRequest](docs/SetTransactionConfigurationSourceRequest.md)
|
|
1458
1471
|
- [SideConfigurationData](docs/SideConfigurationData.md)
|
|
@@ -1463,6 +1476,10 @@ Class | Method | HTTP request | Description
|
|
|
1463
1476
|
- [SimpleCashFlowLoan](docs/SimpleCashFlowLoan.md)
|
|
1464
1477
|
- [SimpleInstrument](docs/SimpleInstrument.md)
|
|
1465
1478
|
- [SortOrder](docs/SortOrder.md)
|
|
1479
|
+
- [StagingRule](docs/StagingRule.md)
|
|
1480
|
+
- [StagingRuleApprovalCriteria](docs/StagingRuleApprovalCriteria.md)
|
|
1481
|
+
- [StagingRuleMatchCriteria](docs/StagingRuleMatchCriteria.md)
|
|
1482
|
+
- [StagingRuleSet](docs/StagingRuleSet.md)
|
|
1466
1483
|
- [StepSchedule](docs/StepSchedule.md)
|
|
1467
1484
|
- [StockSplitEvent](docs/StockSplitEvent.md)
|
|
1468
1485
|
- [Stream](docs/Stream.md)
|
|
@@ -1548,6 +1565,7 @@ Class | Method | HTTP request | Description
|
|
|
1548
1565
|
- [UpdatePropertyDefinitionRequest](docs/UpdatePropertyDefinitionRequest.md)
|
|
1549
1566
|
- [UpdateReconciliationRequest](docs/UpdateReconciliationRequest.md)
|
|
1550
1567
|
- [UpdateRelationshipDefinitionRequest](docs/UpdateRelationshipDefinitionRequest.md)
|
|
1568
|
+
- [UpdateStagingRuleSetRequest](docs/UpdateStagingRuleSetRequest.md)
|
|
1551
1569
|
- [UpdateTaxRuleSetRequest](docs/UpdateTaxRuleSetRequest.md)
|
|
1552
1570
|
- [UpdateUnitRequest](docs/UpdateUnitRequest.md)
|
|
1553
1571
|
- [UpsertCdsFlowConventionsRequest](docs/UpsertCdsFlowConventionsRequest.md)
|
|
@@ -1591,7 +1609,11 @@ Class | Method | HTTP request | Description
|
|
|
1591
1609
|
- [UpsertStructuredResultDataRequest](docs/UpsertStructuredResultDataRequest.md)
|
|
1592
1610
|
- [UpsertTransactionPropertiesResponse](docs/UpsertTransactionPropertiesResponse.md)
|
|
1593
1611
|
- [UpsertTranslationScriptRequest](docs/UpsertTranslationScriptRequest.md)
|
|
1612
|
+
- [UpsertValuationPointRequest](docs/UpsertValuationPointRequest.md)
|
|
1594
1613
|
- [User](docs/User.md)
|
|
1614
|
+
- [ValuationPointDataQueryParameters](docs/ValuationPointDataQueryParameters.md)
|
|
1615
|
+
- [ValuationPointDataRequest](docs/ValuationPointDataRequest.md)
|
|
1616
|
+
- [ValuationPointDataResponse](docs/ValuationPointDataResponse.md)
|
|
1595
1617
|
- [ValuationRequest](docs/ValuationRequest.md)
|
|
1596
1618
|
- [ValuationSchedule](docs/ValuationSchedule.md)
|
|
1597
1619
|
- [ValuationsReconciliationRequest](docs/ValuationsReconciliationRequest.md)
|