lusid-sdk 2.0.460__py3-none-any.whl → 2.0.466__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 +16 -0
- lusid/api/__init__.py +2 -0
- lusid/api/staging_rule_set_api.py +885 -0
- lusid/configuration.py +1 -1
- lusid/models/__init__.py +14 -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/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/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/update_staging_rule_set_request.py +91 -0
- {lusid_sdk-2.0.460.dist-info → lusid_sdk-2.0.466.dist-info}/METADATA +15 -3
- {lusid_sdk-2.0.460.dist-info → lusid_sdk-2.0.466.dist-info}/RECORD +20 -12
- {lusid_sdk-2.0.460.dist-info → lusid_sdk-2.0.466.dist-info}/WHEEL +0 -0
|
@@ -0,0 +1,95 @@
|
|
|
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
|
|
22
|
+
from pydantic import BaseModel, Field, StrictStr, conlist, constr
|
|
23
|
+
|
|
24
|
+
class StagingRuleMatchCriteria(BaseModel):
|
|
25
|
+
"""
|
|
26
|
+
StagingRuleMatchCriteria
|
|
27
|
+
"""
|
|
28
|
+
action_in: Optional[conlist(StrictStr)] = Field(None, alias="actionIn")
|
|
29
|
+
requesting_user: Optional[constr(strict=True, max_length=16384, min_length=0)] = Field(None, alias="requestingUser")
|
|
30
|
+
entity_attributes: Optional[constr(strict=True, max_length=16384, min_length=0)] = Field(None, alias="entityAttributes")
|
|
31
|
+
changed_attribute_name_in: Optional[conlist(StrictStr)] = Field(None, alias="changedAttributeNameIn")
|
|
32
|
+
__properties = ["actionIn", "requestingUser", "entityAttributes", "changedAttributeNameIn"]
|
|
33
|
+
|
|
34
|
+
class Config:
|
|
35
|
+
"""Pydantic configuration"""
|
|
36
|
+
allow_population_by_field_name = True
|
|
37
|
+
validate_assignment = True
|
|
38
|
+
|
|
39
|
+
def to_str(self) -> str:
|
|
40
|
+
"""Returns the string representation of the model using alias"""
|
|
41
|
+
return pprint.pformat(self.dict(by_alias=True))
|
|
42
|
+
|
|
43
|
+
def to_json(self) -> str:
|
|
44
|
+
"""Returns the JSON representation of the model using alias"""
|
|
45
|
+
return json.dumps(self.to_dict())
|
|
46
|
+
|
|
47
|
+
@classmethod
|
|
48
|
+
def from_json(cls, json_str: str) -> StagingRuleMatchCriteria:
|
|
49
|
+
"""Create an instance of StagingRuleMatchCriteria from a JSON string"""
|
|
50
|
+
return cls.from_dict(json.loads(json_str))
|
|
51
|
+
|
|
52
|
+
def to_dict(self):
|
|
53
|
+
"""Returns the dictionary representation of the model using alias"""
|
|
54
|
+
_dict = self.dict(by_alias=True,
|
|
55
|
+
exclude={
|
|
56
|
+
},
|
|
57
|
+
exclude_none=True)
|
|
58
|
+
# set to None if action_in (nullable) is None
|
|
59
|
+
# and __fields_set__ contains the field
|
|
60
|
+
if self.action_in is None and "action_in" in self.__fields_set__:
|
|
61
|
+
_dict['actionIn'] = None
|
|
62
|
+
|
|
63
|
+
# set to None if requesting_user (nullable) is None
|
|
64
|
+
# and __fields_set__ contains the field
|
|
65
|
+
if self.requesting_user is None and "requesting_user" in self.__fields_set__:
|
|
66
|
+
_dict['requestingUser'] = None
|
|
67
|
+
|
|
68
|
+
# set to None if entity_attributes (nullable) is None
|
|
69
|
+
# and __fields_set__ contains the field
|
|
70
|
+
if self.entity_attributes is None and "entity_attributes" in self.__fields_set__:
|
|
71
|
+
_dict['entityAttributes'] = None
|
|
72
|
+
|
|
73
|
+
# set to None if changed_attribute_name_in (nullable) is None
|
|
74
|
+
# and __fields_set__ contains the field
|
|
75
|
+
if self.changed_attribute_name_in is None and "changed_attribute_name_in" in self.__fields_set__:
|
|
76
|
+
_dict['changedAttributeNameIn'] = None
|
|
77
|
+
|
|
78
|
+
return _dict
|
|
79
|
+
|
|
80
|
+
@classmethod
|
|
81
|
+
def from_dict(cls, obj: dict) -> StagingRuleMatchCriteria:
|
|
82
|
+
"""Create an instance of StagingRuleMatchCriteria from a dict"""
|
|
83
|
+
if obj is None:
|
|
84
|
+
return None
|
|
85
|
+
|
|
86
|
+
if not isinstance(obj, dict):
|
|
87
|
+
return StagingRuleMatchCriteria.parse_obj(obj)
|
|
88
|
+
|
|
89
|
+
_obj = StagingRuleMatchCriteria.parse_obj({
|
|
90
|
+
"action_in": obj.get("actionIn"),
|
|
91
|
+
"requesting_user": obj.get("requestingUser"),
|
|
92
|
+
"entity_attributes": obj.get("entityAttributes"),
|
|
93
|
+
"changed_attribute_name_in": obj.get("changedAttributeNameIn")
|
|
94
|
+
})
|
|
95
|
+
return _obj
|
|
@@ -0,0 +1,103 @@
|
|
|
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
|
|
22
|
+
from pydantic import BaseModel, Field, StrictStr, conlist, constr
|
|
23
|
+
from lusid.models.staging_rule import StagingRule
|
|
24
|
+
from lusid.models.version import Version
|
|
25
|
+
|
|
26
|
+
class StagingRuleSet(BaseModel):
|
|
27
|
+
"""
|
|
28
|
+
StagingRuleSet
|
|
29
|
+
"""
|
|
30
|
+
entity_type: constr(strict=True, min_length=1) = Field(..., alias="entityType", description="The entity type the staging rule set applies to.")
|
|
31
|
+
staging_rule_set_id: constr(strict=True, min_length=1) = Field(..., alias="stagingRuleSetId", description="System generated unique id for the staging rule set.")
|
|
32
|
+
display_name: constr(strict=True, min_length=1) = Field(..., alias="displayName", description="The name of the staging rule set.")
|
|
33
|
+
description: Optional[StrictStr] = Field(None, description="A description for the staging rule set.")
|
|
34
|
+
rules: conlist(StagingRule) = Field(..., description="The list of staging rules that apply to a specific entity type.")
|
|
35
|
+
href: Optional[StrictStr] = Field(None, description="The specific Uniform Resource Identifier (URI) for this resource at the requested effective and asAt datetime.")
|
|
36
|
+
version: Optional[Version] = None
|
|
37
|
+
__properties = ["entityType", "stagingRuleSetId", "displayName", "description", "rules", "href", "version"]
|
|
38
|
+
|
|
39
|
+
class Config:
|
|
40
|
+
"""Pydantic configuration"""
|
|
41
|
+
allow_population_by_field_name = True
|
|
42
|
+
validate_assignment = True
|
|
43
|
+
|
|
44
|
+
def to_str(self) -> str:
|
|
45
|
+
"""Returns the string representation of the model using alias"""
|
|
46
|
+
return pprint.pformat(self.dict(by_alias=True))
|
|
47
|
+
|
|
48
|
+
def to_json(self) -> str:
|
|
49
|
+
"""Returns the JSON representation of the model using alias"""
|
|
50
|
+
return json.dumps(self.to_dict())
|
|
51
|
+
|
|
52
|
+
@classmethod
|
|
53
|
+
def from_json(cls, json_str: str) -> StagingRuleSet:
|
|
54
|
+
"""Create an instance of StagingRuleSet from a JSON string"""
|
|
55
|
+
return cls.from_dict(json.loads(json_str))
|
|
56
|
+
|
|
57
|
+
def to_dict(self):
|
|
58
|
+
"""Returns the dictionary representation of the model using alias"""
|
|
59
|
+
_dict = self.dict(by_alias=True,
|
|
60
|
+
exclude={
|
|
61
|
+
},
|
|
62
|
+
exclude_none=True)
|
|
63
|
+
# override the default output from pydantic by calling `to_dict()` of each item in rules (list)
|
|
64
|
+
_items = []
|
|
65
|
+
if self.rules:
|
|
66
|
+
for _item in self.rules:
|
|
67
|
+
if _item:
|
|
68
|
+
_items.append(_item.to_dict())
|
|
69
|
+
_dict['rules'] = _items
|
|
70
|
+
# override the default output from pydantic by calling `to_dict()` of version
|
|
71
|
+
if self.version:
|
|
72
|
+
_dict['version'] = self.version.to_dict()
|
|
73
|
+
# set to None if description (nullable) is None
|
|
74
|
+
# and __fields_set__ contains the field
|
|
75
|
+
if self.description is None and "description" in self.__fields_set__:
|
|
76
|
+
_dict['description'] = None
|
|
77
|
+
|
|
78
|
+
# set to None if href (nullable) is None
|
|
79
|
+
# and __fields_set__ contains the field
|
|
80
|
+
if self.href is None and "href" in self.__fields_set__:
|
|
81
|
+
_dict['href'] = None
|
|
82
|
+
|
|
83
|
+
return _dict
|
|
84
|
+
|
|
85
|
+
@classmethod
|
|
86
|
+
def from_dict(cls, obj: dict) -> StagingRuleSet:
|
|
87
|
+
"""Create an instance of StagingRuleSet from a dict"""
|
|
88
|
+
if obj is None:
|
|
89
|
+
return None
|
|
90
|
+
|
|
91
|
+
if not isinstance(obj, dict):
|
|
92
|
+
return StagingRuleSet.parse_obj(obj)
|
|
93
|
+
|
|
94
|
+
_obj = StagingRuleSet.parse_obj({
|
|
95
|
+
"entity_type": obj.get("entityType"),
|
|
96
|
+
"staging_rule_set_id": obj.get("stagingRuleSetId"),
|
|
97
|
+
"display_name": obj.get("displayName"),
|
|
98
|
+
"description": obj.get("description"),
|
|
99
|
+
"rules": [StagingRule.from_dict(_item) for _item in obj.get("rules")] if obj.get("rules") is not None else None,
|
|
100
|
+
"href": obj.get("href"),
|
|
101
|
+
"version": Version.from_dict(obj.get("version")) if obj.get("version") is not None else None
|
|
102
|
+
})
|
|
103
|
+
return _obj
|
|
@@ -0,0 +1,91 @@
|
|
|
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
|
|
22
|
+
from pydantic import BaseModel, Field, conlist, constr
|
|
23
|
+
from lusid.models.staging_rule import StagingRule
|
|
24
|
+
|
|
25
|
+
class UpdateStagingRuleSetRequest(BaseModel):
|
|
26
|
+
"""
|
|
27
|
+
UpdateStagingRuleSetRequest
|
|
28
|
+
"""
|
|
29
|
+
display_name: Optional[constr(strict=True, max_length=256, min_length=1)] = Field(None, alias="displayName", description="The name of the staging rule set.")
|
|
30
|
+
description: Optional[constr(strict=True, max_length=1024, min_length=0)] = Field(None, description="A description for the staging rule set.")
|
|
31
|
+
rules: conlist(StagingRule) = Field(..., description="The list of staging rules that apply to a specific entity type.")
|
|
32
|
+
__properties = ["displayName", "description", "rules"]
|
|
33
|
+
|
|
34
|
+
class Config:
|
|
35
|
+
"""Pydantic configuration"""
|
|
36
|
+
allow_population_by_field_name = True
|
|
37
|
+
validate_assignment = True
|
|
38
|
+
|
|
39
|
+
def to_str(self) -> str:
|
|
40
|
+
"""Returns the string representation of the model using alias"""
|
|
41
|
+
return pprint.pformat(self.dict(by_alias=True))
|
|
42
|
+
|
|
43
|
+
def to_json(self) -> str:
|
|
44
|
+
"""Returns the JSON representation of the model using alias"""
|
|
45
|
+
return json.dumps(self.to_dict())
|
|
46
|
+
|
|
47
|
+
@classmethod
|
|
48
|
+
def from_json(cls, json_str: str) -> UpdateStagingRuleSetRequest:
|
|
49
|
+
"""Create an instance of UpdateStagingRuleSetRequest from a JSON string"""
|
|
50
|
+
return cls.from_dict(json.loads(json_str))
|
|
51
|
+
|
|
52
|
+
def to_dict(self):
|
|
53
|
+
"""Returns the dictionary representation of the model using alias"""
|
|
54
|
+
_dict = self.dict(by_alias=True,
|
|
55
|
+
exclude={
|
|
56
|
+
},
|
|
57
|
+
exclude_none=True)
|
|
58
|
+
# override the default output from pydantic by calling `to_dict()` of each item in rules (list)
|
|
59
|
+
_items = []
|
|
60
|
+
if self.rules:
|
|
61
|
+
for _item in self.rules:
|
|
62
|
+
if _item:
|
|
63
|
+
_items.append(_item.to_dict())
|
|
64
|
+
_dict['rules'] = _items
|
|
65
|
+
# set to None if display_name (nullable) is None
|
|
66
|
+
# and __fields_set__ contains the field
|
|
67
|
+
if self.display_name is None and "display_name" in self.__fields_set__:
|
|
68
|
+
_dict['displayName'] = None
|
|
69
|
+
|
|
70
|
+
# set to None if description (nullable) is None
|
|
71
|
+
# and __fields_set__ contains the field
|
|
72
|
+
if self.description is None and "description" in self.__fields_set__:
|
|
73
|
+
_dict['description'] = None
|
|
74
|
+
|
|
75
|
+
return _dict
|
|
76
|
+
|
|
77
|
+
@classmethod
|
|
78
|
+
def from_dict(cls, obj: dict) -> UpdateStagingRuleSetRequest:
|
|
79
|
+
"""Create an instance of UpdateStagingRuleSetRequest from a dict"""
|
|
80
|
+
if obj is None:
|
|
81
|
+
return None
|
|
82
|
+
|
|
83
|
+
if not isinstance(obj, dict):
|
|
84
|
+
return UpdateStagingRuleSetRequest.parse_obj(obj)
|
|
85
|
+
|
|
86
|
+
_obj = UpdateStagingRuleSetRequest.parse_obj({
|
|
87
|
+
"display_name": obj.get("displayName"),
|
|
88
|
+
"description": obj.get("description"),
|
|
89
|
+
"rules": [StagingRule.from_dict(_item) for _item in obj.get("rules")] if obj.get("rules") is not None else None
|
|
90
|
+
})
|
|
91
|
+
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.466
|
|
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.6413
|
|
33
|
+
- Package version: 2.0.466
|
|
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
|
|
|
@@ -625,6 +625,11 @@ Class | Method | HTTP request | Description
|
|
|
625
625
|
*SequencesApi* | [**get_sequence**](docs/SequencesApi.md#get_sequence) | **GET** /api/sequences/{scope}/{code} | [EARLY ACCESS] GetSequence: Get a specified sequence
|
|
626
626
|
*SequencesApi* | [**list_sequences**](docs/SequencesApi.md#list_sequences) | **GET** /api/sequences | [EARLY ACCESS] ListSequences: List Sequences
|
|
627
627
|
*SequencesApi* | [**next**](docs/SequencesApi.md#next) | **GET** /api/sequences/{scope}/{code}/next | [EARLY ACCESS] Next: Get next values from sequence
|
|
628
|
+
*StagingRuleSetApi* | [**create_staging_rule_set**](docs/StagingRuleSetApi.md#create_staging_rule_set) | **POST** /api/stagingrulesets/{entityType} | [EXPERIMENTAL] CreateStagingRuleSet: Create a StagingRuleSet
|
|
629
|
+
*StagingRuleSetApi* | [**delete_staging_rule_set**](docs/StagingRuleSetApi.md#delete_staging_rule_set) | **DELETE** /api/stagingrulesets/{entityType} | [EXPERIMENTAL] DeleteStagingRuleSet: Delete a StagingRuleSet
|
|
630
|
+
*StagingRuleSetApi* | [**get_staging_rule_set**](docs/StagingRuleSetApi.md#get_staging_rule_set) | **GET** /api/stagingrulesets/{entityType} | [EXPERIMENTAL] GetStagingRuleSet: Get a StagingRuleSet
|
|
631
|
+
*StagingRuleSetApi* | [**list_staging_rule_sets**](docs/StagingRuleSetApi.md#list_staging_rule_sets) | **GET** /api/stagingrulesets | [EXPERIMENTAL] ListStagingRuleSets: List StagingRuleSets
|
|
632
|
+
*StagingRuleSetApi* | [**update_staging_rule_set**](docs/StagingRuleSetApi.md#update_staging_rule_set) | **PUT** /api/stagingrulesets/{entityType} | [EXPERIMENTAL] UpdateStagingRuleSet: Update a StagingRuleSet
|
|
628
633
|
*StructuredResultDataApi* | [**create_data_map**](docs/StructuredResultDataApi.md#create_data_map) | **POST** /api/unitresults/datamap/{scope} | [EXPERIMENTAL] CreateDataMap: Create data map
|
|
629
634
|
*StructuredResultDataApi* | [**delete_structured_result_data**](docs/StructuredResultDataApi.md#delete_structured_result_data) | **POST** /api/unitresults/{scope}/$delete | [EXPERIMENTAL] DeleteStructuredResultData: Delete structured result data
|
|
630
635
|
*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 +894,7 @@ Class | Method | HTTP request | Description
|
|
|
889
894
|
- [CreateRelationshipDefinitionRequest](docs/CreateRelationshipDefinitionRequest.md)
|
|
890
895
|
- [CreateRelationshipRequest](docs/CreateRelationshipRequest.md)
|
|
891
896
|
- [CreateSequenceRequest](docs/CreateSequenceRequest.md)
|
|
897
|
+
- [CreateStagingRuleSetRequest](docs/CreateStagingRuleSetRequest.md)
|
|
892
898
|
- [CreateTaxRuleSetRequest](docs/CreateTaxRuleSetRequest.md)
|
|
893
899
|
- [CreateTradeTicketsResponse](docs/CreateTradeTicketsResponse.md)
|
|
894
900
|
- [CreateTransactionPortfolioRequest](docs/CreateTransactionPortfolioRequest.md)
|
|
@@ -1241,6 +1247,7 @@ Class | Method | HTTP request | Description
|
|
|
1241
1247
|
- [PagedResourceListOfReferenceListResponse](docs/PagedResourceListOfReferenceListResponse.md)
|
|
1242
1248
|
- [PagedResourceListOfRelationshipDefinition](docs/PagedResourceListOfRelationshipDefinition.md)
|
|
1243
1249
|
- [PagedResourceListOfSequenceDefinition](docs/PagedResourceListOfSequenceDefinition.md)
|
|
1250
|
+
- [PagedResourceListOfStagingRuleSet](docs/PagedResourceListOfStagingRuleSet.md)
|
|
1244
1251
|
- [PagedResourceListOfTransactionTemplate](docs/PagedResourceListOfTransactionTemplate.md)
|
|
1245
1252
|
- [PagedResourceListOfTransactionTemplateSpecification](docs/PagedResourceListOfTransactionTemplateSpecification.md)
|
|
1246
1253
|
- [PagedResourceListOfTranslationScriptId](docs/PagedResourceListOfTranslationScriptId.md)
|
|
@@ -1463,6 +1470,10 @@ Class | Method | HTTP request | Description
|
|
|
1463
1470
|
- [SimpleCashFlowLoan](docs/SimpleCashFlowLoan.md)
|
|
1464
1471
|
- [SimpleInstrument](docs/SimpleInstrument.md)
|
|
1465
1472
|
- [SortOrder](docs/SortOrder.md)
|
|
1473
|
+
- [StagingRule](docs/StagingRule.md)
|
|
1474
|
+
- [StagingRuleApprovalCriteria](docs/StagingRuleApprovalCriteria.md)
|
|
1475
|
+
- [StagingRuleMatchCriteria](docs/StagingRuleMatchCriteria.md)
|
|
1476
|
+
- [StagingRuleSet](docs/StagingRuleSet.md)
|
|
1466
1477
|
- [StepSchedule](docs/StepSchedule.md)
|
|
1467
1478
|
- [StockSplitEvent](docs/StockSplitEvent.md)
|
|
1468
1479
|
- [Stream](docs/Stream.md)
|
|
@@ -1548,6 +1559,7 @@ Class | Method | HTTP request | Description
|
|
|
1548
1559
|
- [UpdatePropertyDefinitionRequest](docs/UpdatePropertyDefinitionRequest.md)
|
|
1549
1560
|
- [UpdateReconciliationRequest](docs/UpdateReconciliationRequest.md)
|
|
1550
1561
|
- [UpdateRelationshipDefinitionRequest](docs/UpdateRelationshipDefinitionRequest.md)
|
|
1562
|
+
- [UpdateStagingRuleSetRequest](docs/UpdateStagingRuleSetRequest.md)
|
|
1551
1563
|
- [UpdateTaxRuleSetRequest](docs/UpdateTaxRuleSetRequest.md)
|
|
1552
1564
|
- [UpdateUnitRequest](docs/UpdateUnitRequest.md)
|
|
1553
1565
|
- [UpsertCdsFlowConventionsRequest](docs/UpsertCdsFlowConventionsRequest.md)
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
lusid/__init__.py,sha256=
|
|
2
|
-
lusid/api/__init__.py,sha256=
|
|
1
|
+
lusid/__init__.py,sha256=Wnx_8AbCP1dDHmZGV7A83MwgZYorozYwliW6hkMdkxY,102208
|
|
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
|
|
5
5
|
lusid/api/address_key_definition_api.py,sha256=7f7UvEzHKEfQLcR_NgABxJmfIIz2ujTM__wnUdJCqyg,31634
|
|
@@ -54,6 +54,7 @@ lusid/api/scopes_api.py,sha256=huZ6UOLN6Mh91hUeqT_VZJO1jzy6EQEBj9ASmQB-cAk,16384
|
|
|
54
54
|
lusid/api/scripted_translation_api.py,sha256=RaniqqVQwyVrJAJZrVSwtiuSYGZOiOEHXPUM4gK7bHE,84042
|
|
55
55
|
lusid/api/search_api.py,sha256=K69ZwT8JE4kXJ4ZWjY71Xg5cHOxYY8jrtdx7S8nBMkE,58527
|
|
56
56
|
lusid/api/sequences_api.py,sha256=942BSnzeEmfH5R46uXQAeM0l8G5BAAxCrPjg4aLgnxA,37454
|
|
57
|
+
lusid/api/staging_rule_set_api.py,sha256=uKK1DIEhmacN8gKUqiAWVXeuad2YWyLm1ghXgyaQVnQ,49940
|
|
57
58
|
lusid/api/structured_result_data_api.py,sha256=M93sy22sm7rcebryyE_lrUsmBa1ov6r2wZU8q8C3gIs,112483
|
|
58
59
|
lusid/api/system_configuration_api.py,sha256=VaDXmsgDYhTbshO7hRLQEezpjUe8mb6CfyXJ84EPkl4,62048
|
|
59
60
|
lusid/api/tax_rule_sets_api.py,sha256=PRk9ThxUMGjJ_0rWscJHLQl2PgZ0spANKTSCICMrxaw,50018
|
|
@@ -63,7 +64,7 @@ lusid/api/transaction_portfolios_api.py,sha256=Q-RvuNmYL4drz4LeytNHRCmvrWwxfnPnT
|
|
|
63
64
|
lusid/api/translation_api.py,sha256=8_YL07_CYCI-FV4jMdiq7zlsDXqvkPMFQPyT6NL4jvU,20086
|
|
64
65
|
lusid/api_client.py,sha256=dF6l9RAsdxdQjf6Qn4ny6LB-QXlJmsscWiozCvyyBFA,30709
|
|
65
66
|
lusid/api_response.py,sha256=uCehWdXXDnAO2HAHGKe0SgpQ_mJiGDbcu-BHDF3n_IM,852
|
|
66
|
-
lusid/configuration.py,sha256=
|
|
67
|
+
lusid/configuration.py,sha256=O8omgQTECQveync4byStBT1i-ObicZvmGL1_R7qXq_0,14404
|
|
67
68
|
lusid/exceptions.py,sha256=HIQwgmQrszLlcVCLaqex8dO0laVuejUyOMz7U2ZWJ6s,5326
|
|
68
69
|
lusid/extensions/__init__.py,sha256=DeUuQP7yTcklJH7LT-bw9wQhKEggcs1KwQbPbFcOlhw,560
|
|
69
70
|
lusid/extensions/api_client.py,sha256=Ob06urm4Em3MLzgP_geyeeGsPCkU225msW_1kpIeABM,30567
|
|
@@ -76,7 +77,7 @@ lusid/extensions/rest.py,sha256=tjVCu-cRrYcjp-ttB975vebPKtBNyBWaeoAdO3QXG2I,1269
|
|
|
76
77
|
lusid/extensions/retry.py,sha256=orBJ1uF1iT1IncjWX1iGHVqsCgTh0SBe9rtiV_sPnwk,11564
|
|
77
78
|
lusid/extensions/socket_keep_alive.py,sha256=NGlqsv-E25IjJOLGZhXZY6kUdx51nEF8qCQyVdzayRk,1653
|
|
78
79
|
lusid/extensions/tcp_keep_alive_connector.py,sha256=zaGtUsygRsxB1_4B3x39K3ILwztdhMLDv5bFZV7zmGE,3877
|
|
79
|
-
lusid/models/__init__.py,sha256=
|
|
80
|
+
lusid/models/__init__.py,sha256=aLQNWSHZ0HSIV8xEHWw9anOBq_e_kSjaiq4KoljOszs,95967
|
|
80
81
|
lusid/models/a2_b_breakdown.py,sha256=MmG2do_CuV3zyMZJP0BORoG_jTe0G308IjBYhSZbpUw,2944
|
|
81
82
|
lusid/models/a2_b_category.py,sha256=DKiB3y93L3-MXpqRqGo93PeFlvD4ZjnQfH489NRLQVc,2722
|
|
82
83
|
lusid/models/a2_b_data_record.py,sha256=Xey2yvdCY9D-oBM_0Z5QIxboMAIzxKAgHcrvKie7Ypk,9734
|
|
@@ -249,11 +250,11 @@ lusid/models/create_cut_label_definition_request.py,sha256=wfWpkFwehkihecK5A58bj
|
|
|
249
250
|
lusid/models/create_data_map_request.py,sha256=IF0E_xI-2SVTo7qF1fA7MA2JQV0nBNHt_oMH2HaLudc,2475
|
|
250
251
|
lusid/models/create_data_type_request.py,sha256=D7ZXjQXolelTatTuUS9Ni_fPpG37xAnOu4D3XWmgAxc,8055
|
|
251
252
|
lusid/models/create_date_request.py,sha256=K0KVdbYccw-WMeGYfAIg45eWfIWYEI8PtHDXWZyEtMQ,4782
|
|
252
|
-
lusid/models/create_derived_property_definition_request.py,sha256=
|
|
253
|
+
lusid/models/create_derived_property_definition_request.py,sha256=bQk27EHhtH8b9DuovQzDnqgkJxLMR1jZt2Pbwx6GbQQ,5948
|
|
253
254
|
lusid/models/create_derived_transaction_portfolio_request.py,sha256=iwn5XQE6rvgCfS1b9rGIZ23We8FIfBakRBFNNNTCTBQ,9642
|
|
254
255
|
lusid/models/create_portfolio_details.py,sha256=mFlulbLBeE0e-N6-hoQRwWHhDUbZPd8NO7NV8U4UiRk,2361
|
|
255
256
|
lusid/models/create_portfolio_group_request.py,sha256=ltsPuzQGyZretFlfC6C3mNIJP28mw6pRynsJPW5RYYI,6129
|
|
256
|
-
lusid/models/create_property_definition_request.py,sha256=
|
|
257
|
+
lusid/models/create_property_definition_request.py,sha256=oIt4YodEo0ZaGEpjQo1JUA3LQJZsW-LMHZqARtPMV_g,7426
|
|
257
258
|
lusid/models/create_recipe_request.py,sha256=3pEtX1XZQxjFNxSHGfKasSa5NqrKW82O4XClV-NsRBY,3730
|
|
258
259
|
lusid/models/create_reconciliation_request.py,sha256=lsNlQ-UDjSg-SzVejdMdJP1aS5QMiBGBQjcGKtLlUz8,6388
|
|
259
260
|
lusid/models/create_reference_portfolio_request.py,sha256=vq1Nwbuwc8RPJ2Jirn0cYnxLcZD99_Ts1I5QpP_qVgE,5015
|
|
@@ -262,6 +263,7 @@ lusid/models/create_relation_request.py,sha256=-9SVap4zJ0iktPXsoCQCAqOcZfzpxh1So
|
|
|
262
263
|
lusid/models/create_relationship_definition_request.py,sha256=qTuDRfksezzh_Fak6QZC-uXxaHzv19PoEOpmat2EL80,6599
|
|
263
264
|
lusid/models/create_relationship_request.py,sha256=UOemiknOezPGK8G4aqde9Y122jZDUUgQccSwyQcrlfI,4057
|
|
264
265
|
lusid/models/create_sequence_request.py,sha256=Farmz6CF2US6ZR4HoG06yIWAtF7fG-0r5JZ5sBW49l8,4882
|
|
266
|
+
lusid/models/create_staging_rule_set_request.py,sha256=M-vArxyOpkSW4Eca2BQKJ-Gj35ivzU5JOHEz2txa8Qw,3347
|
|
265
267
|
lusid/models/create_tax_rule_set_request.py,sha256=VCPozA_IvYUeROVppLBKZ4703CdG2a0BTEAKn8SHeP8,3737
|
|
266
268
|
lusid/models/create_trade_tickets_response.py,sha256=cpa_2jCxwEGnaqrbWBO1RmhJXJh1fVZW6qKxZDV5BCw,2958
|
|
267
269
|
lusid/models/create_transaction_portfolio_request.py,sha256=eXv4iOR0zZGDM74ljsTFa_fF62KmPpt8AyL9J24JEtU,10385
|
|
@@ -614,6 +616,7 @@ lusid/models/paged_resource_list_of_reconciliation.py,sha256=bhS07E9p4X7rVrVi9dS
|
|
|
614
616
|
lusid/models/paged_resource_list_of_reference_list_response.py,sha256=_cXf2elmGLOrTAnv0wNpoV0m-fy3TfU1NWhLQ_0H3_Y,4225
|
|
615
617
|
lusid/models/paged_resource_list_of_relationship_definition.py,sha256=YV75ebl_K6G_qygD6Jiaf7rslyJX0cdgOtWaQa45Db8,4236
|
|
616
618
|
lusid/models/paged_resource_list_of_sequence_definition.py,sha256=YgPVUaT2qZzerJSohfeYmSGClhhlQpyErcCfofH5vNU,4188
|
|
619
|
+
lusid/models/paged_resource_list_of_staging_rule_set.py,sha256=Hxy_aL2P5v-lkZ9aloRmT_Fh4XPexXg6SHV-BweC4ww,4141
|
|
617
620
|
lusid/models/paged_resource_list_of_transaction_template.py,sha256=iZjlmACjqFxnjDuK82x4KHsU-Bql31BCFjqvKjxW_u0,4200
|
|
618
621
|
lusid/models/paged_resource_list_of_transaction_template_specification.py,sha256=Kh6p0AoJABDSWXSSvcr9zU6qfPAOYRaWeemc-lDpUXA,4357
|
|
619
622
|
lusid/models/paged_resource_list_of_translation_script_id.py,sha256=MuVKq0kTNqdelvHfvXrF3yS3ut4op2mWO0KGoZz9L-U,4201
|
|
@@ -665,10 +668,10 @@ lusid/models/pricing_context.py,sha256=7x9V7Kq5yx2VvdBZS4KAzzD3Z8dhUE7MI56IY2zxA
|
|
|
665
668
|
lusid/models/pricing_model.py,sha256=DqxFxGtRJHj3BIDdHqND5MwI9X3d1jh6cPc3hDkzuCk,1447
|
|
666
669
|
lusid/models/pricing_options.py,sha256=nIopy4NbXwd9VWMACA7gcJ9UmSKPkaxaBgecFd-TQ_s,7958
|
|
667
670
|
lusid/models/processed_command.py,sha256=8YPJG_jv_jU3ZcuR8HcKRoTKw1R7pghI3JvKqxWuZoc,2967
|
|
668
|
-
lusid/models/property_definition.py,sha256=
|
|
669
|
-
lusid/models/property_definition_search_result.py,sha256=
|
|
671
|
+
lusid/models/property_definition.py,sha256=n-04bvKNEUiHP6DzBGiMbNalHsBlDguiq9-hbVEohMk,14733
|
|
672
|
+
lusid/models/property_definition_search_result.py,sha256=wA4TFkc-mpr6c44fdo8cc2YA0QDVw6ILObHWmM4MfAg,12848
|
|
670
673
|
lusid/models/property_definition_type.py,sha256=0OhOMXLaFU6yGWTx0XfyrbQL3LSWYiVW2eFE6D9y9Pw,731
|
|
671
|
-
lusid/models/property_domain.py,sha256=
|
|
674
|
+
lusid/models/property_domain.py,sha256=MNG4tthOwsty0M1d0yPUcZrQg3KK3tKesqp3xLQYhog,2060
|
|
672
675
|
lusid/models/property_filter.py,sha256=z2FeYifdeLyONlKFxP9eLJo0WmAFY1nGVDGU3yL7NCc,3644
|
|
673
676
|
lusid/models/property_interval.py,sha256=vClxXX09qL4CVpDbfhX3rcFrHVGYJ1zf02iYJNgaiTw,3218
|
|
674
677
|
lusid/models/property_key_compliance_parameter.py,sha256=x2SkLNVx3iXmsKHJ2M6wbhy0r4C953FkLHVbGZBDj6k,5210
|
|
@@ -836,6 +839,10 @@ lusid/models/sides_definition_request.py,sha256=Gr2sRchGc4kcOKi6pP_rqVuNZEITuXe2
|
|
|
836
839
|
lusid/models/simple_cash_flow_loan.py,sha256=8ohdLNBIbKHjd4QcR6I7Bh3tHXzu4M4x_rmqcB2ncuM,6269
|
|
837
840
|
lusid/models/simple_instrument.py,sha256=HPS0Lv9d-ZSR4b9KiRoYxOm6Jtt47w_vQmnpCVAmxXw,6775
|
|
838
841
|
lusid/models/sort_order.py,sha256=tx9hNHkrcdw2gQkSLTGQ-JED7cqZoFJ60abVdqkD-GM,644
|
|
842
|
+
lusid/models/staging_rule.py,sha256=MJApQWS124iMbLIjDFKgxoPJYbC7Ft0i2YhIHHtlJkQ,3557
|
|
843
|
+
lusid/models/staging_rule_approval_criteria.py,sha256=5mumHS8T2C1C77xx8uBVc14SowfCiqEbzoUtH1huIaU,2684
|
|
844
|
+
lusid/models/staging_rule_match_criteria.py,sha256=NVNH-vBKJwBaXpm0oUOMRNx6MnWH-juJnWI-4DaOuls,3558
|
|
845
|
+
lusid/models/staging_rule_set.py,sha256=U28OQZQ7FH0AmplciV3K6FS8jP8cBxp7JMg7WYQNto8,4193
|
|
839
846
|
lusid/models/step_schedule.py,sha256=92aya4yzyY0GQHS4b-HIyqXHmW1QOZbM5xg_XjA3SX8,4501
|
|
840
847
|
lusid/models/stock_split_event.py,sha256=2H2k5zeCMrxasGxO5Q1AW8d-uFnsRi6oCHoRTFbJEs8,4965
|
|
841
848
|
lusid/models/stream.py,sha256=aeDl9hmQ9wQliWkZsRs_iVLMELXD7Qo-b5BX7EN6-3Q,2862
|
|
@@ -921,6 +928,7 @@ lusid/models/update_portfolio_request.py,sha256=VRYBUnJa0lDvVPz-XOuaJQ0FJFwxrXlM
|
|
|
921
928
|
lusid/models/update_property_definition_request.py,sha256=SiSHOb_dVrlSK6bpObzVE9D1NFUXM8FeSyWMBPrOXsc,2572
|
|
922
929
|
lusid/models/update_reconciliation_request.py,sha256=1chsML4pPsMhTWQ9Vutdf4riv2YWtc2J7oanTCmtS5g,5898
|
|
923
930
|
lusid/models/update_relationship_definition_request.py,sha256=7jf49VIH-qT6bsFet84RXIQpE15F_yOBsPFqI3Dqh1I,3594
|
|
931
|
+
lusid/models/update_staging_rule_set_request.py,sha256=1lWqcFXybMnC8eudSo43eI9JdmjpqowZgTgMs6yIqA8,3347
|
|
924
932
|
lusid/models/update_tax_rule_set_request.py,sha256=VPbm1aQlDWFS5ETrVP8d6oeScGWhfvW6TldvuFVVnsM,3240
|
|
925
933
|
lusid/models/update_unit_request.py,sha256=8v3H0M5lw4TaVwb09TWwW1GrBNxc4sw1VUW_DlPeov4,3886
|
|
926
934
|
lusid/models/upsert_cds_flow_conventions_request.py,sha256=Ur3z1Muxs2n5p3P6BY3GnefC2m8ljB22LHSOi6LXdz8,2500
|
|
@@ -994,6 +1002,6 @@ lusid/models/weighted_instruments.py,sha256=M2Mr7KTAcMS40g309xatBHDhvYk3g61yigx0
|
|
|
994
1002
|
lusid/models/yield_curve_data.py,sha256=i2MHEJe9kdTTgxQFti2a6BAU7ikE0wTPXsS_sMJhrDk,6327
|
|
995
1003
|
lusid/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
996
1004
|
lusid/rest.py,sha256=gHQ76psf1vzmBJI14ZGVvb3f_Urp0zBBo3R5u3-kNIM,10032
|
|
997
|
-
lusid_sdk-2.0.
|
|
998
|
-
lusid_sdk-2.0.
|
|
999
|
-
lusid_sdk-2.0.
|
|
1005
|
+
lusid_sdk-2.0.466.dist-info/METADATA,sha256=690VP02sskioL8vSc4p41SoXh0--Wo-cmdomdtc0a0Q,176313
|
|
1006
|
+
lusid_sdk-2.0.466.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
|
|
1007
|
+
lusid_sdk-2.0.466.dist-info/RECORD,,
|
|
File without changes
|