lusid-sdk 2.1.989__py3-none-any.whl → 2.1.990__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.

@@ -0,0 +1,120 @@
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
22
+ from pydantic.v1 import StrictStr, Field, BaseModel, Field, constr
23
+ from lusid.models.relational_data_point_field_value_response import RelationalDataPointFieldValueResponse
24
+ from lusid.models.relational_data_series_response import RelationalDataSeriesResponse
25
+ from lusid.models.resource_id import ResourceId
26
+
27
+ class RelationalDataPointResponse(BaseModel):
28
+ """
29
+ RelationalDataPointResponse
30
+ """
31
+ relational_dataset_definition_id: ResourceId = Field(..., alias="relationalDatasetDefinitionId")
32
+ data_series: RelationalDataSeriesResponse = Field(..., alias="dataSeries")
33
+ effective_at: datetime = Field(..., alias="effectiveAt", description="The effectiveAt or cut-label datetime of the DataPoint.")
34
+ value_fields: Dict[str, RelationalDataPointFieldValueResponse] = Field(..., alias="valueFields", description="The values associated with the DataPoint, structured according to the FieldSchema of the parent RelationalDatasetDefinition.")
35
+ meta_data_fields: Dict[str, RelationalDataPointFieldValueResponse] = Field(..., alias="metaDataFields", description="The metadata associated with the DataPoint, structured according to the FieldSchema of the parent RelationalDatasetDefinition.")
36
+ effective_at_entered: StrictStr = Field(...,alias="effectiveAtEntered", description="The effectiveAt datetime as entered when the DataPoint was created.")
37
+ __properties = ["relationalDatasetDefinitionId", "dataSeries", "effectiveAt", "valueFields", "metaDataFields", "effectiveAtEntered"]
38
+
39
+ class Config:
40
+ """Pydantic configuration"""
41
+ allow_population_by_field_name = True
42
+ validate_assignment = True
43
+
44
+ def __str__(self):
45
+ """For `print` and `pprint`"""
46
+ return pprint.pformat(self.dict(by_alias=False))
47
+
48
+ def __repr__(self):
49
+ """For `print` and `pprint`"""
50
+ return self.to_str()
51
+
52
+ def to_str(self) -> str:
53
+ """Returns the string representation of the model using alias"""
54
+ return pprint.pformat(self.dict(by_alias=True))
55
+
56
+ def to_json(self) -> str:
57
+ """Returns the JSON representation of the model using alias"""
58
+ return json.dumps(self.to_dict())
59
+
60
+ @classmethod
61
+ def from_json(cls, json_str: str) -> RelationalDataPointResponse:
62
+ """Create an instance of RelationalDataPointResponse from a JSON string"""
63
+ return cls.from_dict(json.loads(json_str))
64
+
65
+ def to_dict(self):
66
+ """Returns the dictionary representation of the model using alias"""
67
+ _dict = self.dict(by_alias=True,
68
+ exclude={
69
+ },
70
+ exclude_none=True)
71
+ # override the default output from pydantic by calling `to_dict()` of relational_dataset_definition_id
72
+ if self.relational_dataset_definition_id:
73
+ _dict['relationalDatasetDefinitionId'] = self.relational_dataset_definition_id.to_dict()
74
+ # override the default output from pydantic by calling `to_dict()` of data_series
75
+ if self.data_series:
76
+ _dict['dataSeries'] = self.data_series.to_dict()
77
+ # override the default output from pydantic by calling `to_dict()` of each value in value_fields (dict)
78
+ _field_dict = {}
79
+ if self.value_fields:
80
+ for _key in self.value_fields:
81
+ if self.value_fields[_key]:
82
+ _field_dict[_key] = self.value_fields[_key].to_dict()
83
+ _dict['valueFields'] = _field_dict
84
+ # override the default output from pydantic by calling `to_dict()` of each value in meta_data_fields (dict)
85
+ _field_dict = {}
86
+ if self.meta_data_fields:
87
+ for _key in self.meta_data_fields:
88
+ if self.meta_data_fields[_key]:
89
+ _field_dict[_key] = self.meta_data_fields[_key].to_dict()
90
+ _dict['metaDataFields'] = _field_dict
91
+ return _dict
92
+
93
+ @classmethod
94
+ def from_dict(cls, obj: dict) -> RelationalDataPointResponse:
95
+ """Create an instance of RelationalDataPointResponse from a dict"""
96
+ if obj is None:
97
+ return None
98
+
99
+ if not isinstance(obj, dict):
100
+ return RelationalDataPointResponse.parse_obj(obj)
101
+
102
+ _obj = RelationalDataPointResponse.parse_obj({
103
+ "relational_dataset_definition_id": ResourceId.from_dict(obj.get("relationalDatasetDefinitionId")) if obj.get("relationalDatasetDefinitionId") is not None else None,
104
+ "data_series": RelationalDataSeriesResponse.from_dict(obj.get("dataSeries")) if obj.get("dataSeries") is not None else None,
105
+ "effective_at": obj.get("effectiveAt"),
106
+ "value_fields": dict(
107
+ (_k, RelationalDataPointFieldValueResponse.from_dict(_v))
108
+ for _k, _v in obj.get("valueFields").items()
109
+ )
110
+ if obj.get("valueFields") is not None
111
+ else None,
112
+ "meta_data_fields": dict(
113
+ (_k, RelationalDataPointFieldValueResponse.from_dict(_v))
114
+ for _k, _v in obj.get("metaDataFields").items()
115
+ )
116
+ if obj.get("metaDataFields") is not None
117
+ else None,
118
+ "effective_at_entered": obj.get("effectiveAtEntered")
119
+ })
120
+ return _obj
@@ -0,0 +1,98 @@
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.v1 import StrictStr, Field, BaseModel, Field, constr
23
+ from lusid.models.applicable_entity import ApplicableEntity
24
+ from lusid.models.relational_data_point_field_value_response import RelationalDataPointFieldValueResponse
25
+
26
+ class RelationalDataSeriesResponse(BaseModel):
27
+ """
28
+ RelationalDataSeriesResponse
29
+ """
30
+ series_scope: StrictStr = Field(...,alias="seriesScope", description="The scope of the DataSeries.")
31
+ applicable_entity: ApplicableEntity = Field(..., alias="applicableEntity")
32
+ series_identifiers: Dict[str, RelationalDataPointFieldValueResponse] = Field(..., alias="seriesIdentifiers", description="The identifiers that uniquely define this DataSeries, structured according to the FieldSchema of the parent RelationalDatasetDefinition.")
33
+ __properties = ["seriesScope", "applicableEntity", "seriesIdentifiers"]
34
+
35
+ class Config:
36
+ """Pydantic configuration"""
37
+ allow_population_by_field_name = True
38
+ validate_assignment = True
39
+
40
+ def __str__(self):
41
+ """For `print` and `pprint`"""
42
+ return pprint.pformat(self.dict(by_alias=False))
43
+
44
+ def __repr__(self):
45
+ """For `print` and `pprint`"""
46
+ return self.to_str()
47
+
48
+ def to_str(self) -> str:
49
+ """Returns the string representation of the model using alias"""
50
+ return pprint.pformat(self.dict(by_alias=True))
51
+
52
+ def to_json(self) -> str:
53
+ """Returns the JSON representation of the model using alias"""
54
+ return json.dumps(self.to_dict())
55
+
56
+ @classmethod
57
+ def from_json(cls, json_str: str) -> RelationalDataSeriesResponse:
58
+ """Create an instance of RelationalDataSeriesResponse from a JSON string"""
59
+ return cls.from_dict(json.loads(json_str))
60
+
61
+ def to_dict(self):
62
+ """Returns the dictionary representation of the model using alias"""
63
+ _dict = self.dict(by_alias=True,
64
+ exclude={
65
+ },
66
+ exclude_none=True)
67
+ # override the default output from pydantic by calling `to_dict()` of applicable_entity
68
+ if self.applicable_entity:
69
+ _dict['applicableEntity'] = self.applicable_entity.to_dict()
70
+ # override the default output from pydantic by calling `to_dict()` of each value in series_identifiers (dict)
71
+ _field_dict = {}
72
+ if self.series_identifiers:
73
+ for _key in self.series_identifiers:
74
+ if self.series_identifiers[_key]:
75
+ _field_dict[_key] = self.series_identifiers[_key].to_dict()
76
+ _dict['seriesIdentifiers'] = _field_dict
77
+ return _dict
78
+
79
+ @classmethod
80
+ def from_dict(cls, obj: dict) -> RelationalDataSeriesResponse:
81
+ """Create an instance of RelationalDataSeriesResponse from a dict"""
82
+ if obj is None:
83
+ return None
84
+
85
+ if not isinstance(obj, dict):
86
+ return RelationalDataSeriesResponse.parse_obj(obj)
87
+
88
+ _obj = RelationalDataSeriesResponse.parse_obj({
89
+ "series_scope": obj.get("seriesScope"),
90
+ "applicable_entity": ApplicableEntity.from_dict(obj.get("applicableEntity")) if obj.get("applicableEntity") is not None else None,
91
+ "series_identifiers": dict(
92
+ (_k, RelationalDataPointFieldValueResponse.from_dict(_v))
93
+ for _k, _v in obj.get("seriesIdentifiers").items()
94
+ )
95
+ if obj.get("seriesIdentifiers") is not None
96
+ else None
97
+ })
98
+ return _obj
@@ -0,0 +1,85 @@
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.v1 import StrictStr, Field, BaseModel, Field, constr
23
+ from lusid.models.applicable_entity import ApplicableEntity
24
+
25
+ class UpsertRelationalDataPointDataSeries(BaseModel):
26
+ """
27
+ UpsertRelationalDataPointDataSeries
28
+ """
29
+ series_scope: StrictStr = Field(...,alias="seriesScope", description="The scope of the DataSeries.")
30
+ applicable_entity: ApplicableEntity = Field(..., alias="applicableEntity")
31
+ series_identifiers: Dict[str, Any] = Field(..., alias="seriesIdentifiers", description="The identifiers that uniquely define this DataSeries, structured according to the FieldSchema of the parent RelationalDatasetDefinition.")
32
+ __properties = ["seriesScope", "applicableEntity", "seriesIdentifiers"]
33
+
34
+ class Config:
35
+ """Pydantic configuration"""
36
+ allow_population_by_field_name = True
37
+ validate_assignment = True
38
+
39
+ def __str__(self):
40
+ """For `print` and `pprint`"""
41
+ return pprint.pformat(self.dict(by_alias=False))
42
+
43
+ def __repr__(self):
44
+ """For `print` and `pprint`"""
45
+ return self.to_str()
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) -> UpsertRelationalDataPointDataSeries:
57
+ """Create an instance of UpsertRelationalDataPointDataSeries 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 applicable_entity
67
+ if self.applicable_entity:
68
+ _dict['applicableEntity'] = self.applicable_entity.to_dict()
69
+ return _dict
70
+
71
+ @classmethod
72
+ def from_dict(cls, obj: dict) -> UpsertRelationalDataPointDataSeries:
73
+ """Create an instance of UpsertRelationalDataPointDataSeries from a dict"""
74
+ if obj is None:
75
+ return None
76
+
77
+ if not isinstance(obj, dict):
78
+ return UpsertRelationalDataPointDataSeries.parse_obj(obj)
79
+
80
+ _obj = UpsertRelationalDataPointDataSeries.parse_obj({
81
+ "series_scope": obj.get("seriesScope"),
82
+ "applicable_entity": ApplicableEntity.from_dict(obj.get("applicableEntity")) if obj.get("applicableEntity") is not None else None,
83
+ "series_identifiers": obj.get("seriesIdentifiers")
84
+ })
85
+ return _obj
@@ -0,0 +1,92 @@
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.v1 import StrictStr, Field, BaseModel, Field, constr
23
+ from lusid.models.upsert_relational_data_point_data_series import UpsertRelationalDataPointDataSeries
24
+
25
+ class UpsertRelationalDataPointRequest(BaseModel):
26
+ """
27
+ UpsertRelationalDataPointRequest
28
+ """
29
+ data_point_data_series: UpsertRelationalDataPointDataSeries = Field(..., alias="dataPointDataSeries")
30
+ effective_at: StrictStr = Field(...,alias="effectiveAt", description="The effectiveAt or cut-label datetime of the DataPoint.")
31
+ value_fields: Dict[str, Any] = Field(..., alias="valueFields", description="The values associated with the DataPoint, structured according to the FieldSchema of the parent RelationalDatasetDefinition.")
32
+ meta_data_fields: Optional[Dict[str, Any]] = Field(None, alias="metaDataFields", description="The metadata associated with the DataPoint, structured according to the FieldSchema of the parent RelationalDatasetDefinition.")
33
+ __properties = ["dataPointDataSeries", "effectiveAt", "valueFields", "metaDataFields"]
34
+
35
+ class Config:
36
+ """Pydantic configuration"""
37
+ allow_population_by_field_name = True
38
+ validate_assignment = True
39
+
40
+ def __str__(self):
41
+ """For `print` and `pprint`"""
42
+ return pprint.pformat(self.dict(by_alias=False))
43
+
44
+ def __repr__(self):
45
+ """For `print` and `pprint`"""
46
+ return self.to_str()
47
+
48
+ def to_str(self) -> str:
49
+ """Returns the string representation of the model using alias"""
50
+ return pprint.pformat(self.dict(by_alias=True))
51
+
52
+ def to_json(self) -> str:
53
+ """Returns the JSON representation of the model using alias"""
54
+ return json.dumps(self.to_dict())
55
+
56
+ @classmethod
57
+ def from_json(cls, json_str: str) -> UpsertRelationalDataPointRequest:
58
+ """Create an instance of UpsertRelationalDataPointRequest from a JSON string"""
59
+ return cls.from_dict(json.loads(json_str))
60
+
61
+ def to_dict(self):
62
+ """Returns the dictionary representation of the model using alias"""
63
+ _dict = self.dict(by_alias=True,
64
+ exclude={
65
+ },
66
+ exclude_none=True)
67
+ # override the default output from pydantic by calling `to_dict()` of data_point_data_series
68
+ if self.data_point_data_series:
69
+ _dict['dataPointDataSeries'] = self.data_point_data_series.to_dict()
70
+ # set to None if meta_data_fields (nullable) is None
71
+ # and __fields_set__ contains the field
72
+ if self.meta_data_fields is None and "meta_data_fields" in self.__fields_set__:
73
+ _dict['metaDataFields'] = None
74
+
75
+ return _dict
76
+
77
+ @classmethod
78
+ def from_dict(cls, obj: dict) -> UpsertRelationalDataPointRequest:
79
+ """Create an instance of UpsertRelationalDataPointRequest from a dict"""
80
+ if obj is None:
81
+ return None
82
+
83
+ if not isinstance(obj, dict):
84
+ return UpsertRelationalDataPointRequest.parse_obj(obj)
85
+
86
+ _obj = UpsertRelationalDataPointRequest.parse_obj({
87
+ "data_point_data_series": UpsertRelationalDataPointDataSeries.from_dict(obj.get("dataPointDataSeries")) if obj.get("dataPointDataSeries") is not None else None,
88
+ "effective_at": obj.get("effectiveAt"),
89
+ "value_fields": obj.get("valueFields"),
90
+ "meta_data_fields": obj.get("metaDataFields")
91
+ })
92
+ return _obj
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: lusid-sdk
3
- Version: 2.1.989
3
+ Version: 2.1.990
4
4
  Summary: LUSID API
5
5
  Home-page: https://github.com/finbourne/lusid-sdk-python
6
6
  License: MIT
@@ -546,6 +546,8 @@ Class | Method | HTTP request | Description
546
546
  *RelationalDatasetDefinitionApi* | [**get_relational_dataset_definition**](docs/RelationalDatasetDefinitionApi.md#get_relational_dataset_definition) | **GET** /api/relationaldatasetdefinitions/{scope}/{code} | [EARLY ACCESS] GetRelationalDatasetDefinition: Get a Relational Dataset Definition
547
547
  *RelationalDatasetDefinitionApi* | [**list_relational_dataset_definitions**](docs/RelationalDatasetDefinitionApi.md#list_relational_dataset_definitions) | **GET** /api/relationaldatasetdefinitions | [EARLY ACCESS] ListRelationalDatasetDefinitions: List Relational Dataset Definitions
548
548
  *RelationalDatasetDefinitionApi* | [**update_relational_dataset_definition**](docs/RelationalDatasetDefinitionApi.md#update_relational_dataset_definition) | **PUT** /api/relationaldatasetdefinitions/{scope}/{code} | [EARLY ACCESS] UpdateRelationalDatasetDefinition: Update a Relational Dataset Definition
549
+ *RelationalDatasetsApi* | [**batch_upsert_relational_data**](docs/RelationalDatasetsApi.md#batch_upsert_relational_data) | **POST** /api/relationaldatasets/{relationalDatasetDefinitionScope}/{relationalDatasetDefinitionCode}/$batchUpsert | [EXPERIMENTAL] BatchUpsertRelationalData: Batch Upsert Relational Data Points for a given Relational Dataset Definition.
550
+ *RelationalDatasetsApi* | [**query_relational_data**](docs/RelationalDatasetsApi.md#query_relational_data) | **POST** /api/relationaldatasets/{relationalDatasetDefinitionScope}/{relationalDatasetDefinitionCode}/$query | [EXPERIMENTAL] QueryRelationalData: Query Relational Data Points for a given Relational Dataset Definition.
549
551
  *RelationsApi* | [**create_relation**](docs/RelationsApi.md#create_relation) | **POST** /api/relations/{scope}/{code} | [EXPERIMENTAL] CreateRelation: Create Relation
550
552
  *RelationsApi* | [**delete_relation**](docs/RelationsApi.md#delete_relation) | **POST** /api/relations/{scope}/{code}/$delete | [EXPERIMENTAL] DeleteRelation: Delete a relation
551
553
  *RelationshipDefinitionsApi* | [**create_relationship_definition**](docs/RelationshipDefinitionsApi.md#create_relationship_definition) | **POST** /api/relationshipdefinitions | [EARLY ACCESS] CreateRelationshipDefinition: Create Relationship Definition
@@ -768,6 +770,7 @@ Class | Method | HTTP request | Description
768
770
  - [AppendFxForwardTenorPipsCurveData](docs/AppendFxForwardTenorPipsCurveData.md)
769
771
  - [AppendMarketData](docs/AppendMarketData.md)
770
772
  - [AppendMarketDataType](docs/AppendMarketDataType.md)
773
+ - [ApplicableEntity](docs/ApplicableEntity.md)
771
774
  - [ApplicableInstrumentEvent](docs/ApplicableInstrumentEvent.md)
772
775
  - [AssetClass](docs/AssetClass.md)
773
776
  - [AssetLeg](docs/AssetLeg.md)
@@ -785,6 +788,7 @@ Class | Method | HTTP request | Description
785
788
  - [BatchUpsertPortfolioAccessMetadataResponseItem](docs/BatchUpsertPortfolioAccessMetadataResponseItem.md)
786
789
  - [BatchUpsertPortfolioTransactionsResponse](docs/BatchUpsertPortfolioTransactionsResponse.md)
787
790
  - [BatchUpsertPropertyDefinitionPropertiesResponse](docs/BatchUpsertPropertyDefinitionPropertiesResponse.md)
791
+ - [BatchUpsertRelationalDatasetsResponse](docs/BatchUpsertRelationalDatasetsResponse.md)
788
792
  - [BatchUpsertTransactionSettlementInstructionResponse](docs/BatchUpsertTransactionSettlementInstructionResponse.md)
789
793
  - [Block](docs/Block.md)
790
794
  - [BlockAndOrderIdRequest](docs/BlockAndOrderIdRequest.md)
@@ -1469,6 +1473,7 @@ Class | Method | HTTP request | Description
1469
1473
  - [PagedResourceListOfPropertyDefinitionSearchResult](docs/PagedResourceListOfPropertyDefinitionSearchResult.md)
1470
1474
  - [PagedResourceListOfReconciliation](docs/PagedResourceListOfReconciliation.md)
1471
1475
  - [PagedResourceListOfReferenceListResponse](docs/PagedResourceListOfReferenceListResponse.md)
1476
+ - [PagedResourceListOfRelationalDataPointResponse](docs/PagedResourceListOfRelationalDataPointResponse.md)
1472
1477
  - [PagedResourceListOfRelationalDatasetDefinition](docs/PagedResourceListOfRelationalDatasetDefinition.md)
1473
1478
  - [PagedResourceListOfRelationshipDefinition](docs/PagedResourceListOfRelationshipDefinition.md)
1474
1479
  - [PagedResourceListOfSequenceDefinition](docs/PagedResourceListOfSequenceDefinition.md)
@@ -1572,6 +1577,7 @@ Class | Method | HTTP request | Description
1572
1577
  - [QueryBucketedCashFlowsRequest](docs/QueryBucketedCashFlowsRequest.md)
1573
1578
  - [QueryCashFlowsRequest](docs/QueryCashFlowsRequest.md)
1574
1579
  - [QueryInstrumentEventsRequest](docs/QueryInstrumentEventsRequest.md)
1580
+ - [QueryRelationalDatasetRequest](docs/QueryRelationalDatasetRequest.md)
1575
1581
  - [QueryTradeTicketsRequest](docs/QueryTradeTicketsRequest.md)
1576
1582
  - [QueryableKey](docs/QueryableKey.md)
1577
1583
  - [Quote](docs/Quote.md)
@@ -1618,6 +1624,9 @@ Class | Method | HTTP request | Description
1618
1624
  - [RelatedEntity](docs/RelatedEntity.md)
1619
1625
  - [Relation](docs/Relation.md)
1620
1626
  - [RelationDefinition](docs/RelationDefinition.md)
1627
+ - [RelationalDataPointFieldValueResponse](docs/RelationalDataPointFieldValueResponse.md)
1628
+ - [RelationalDataPointResponse](docs/RelationalDataPointResponse.md)
1629
+ - [RelationalDataSeriesResponse](docs/RelationalDataSeriesResponse.md)
1621
1630
  - [RelationalDatasetDefinition](docs/RelationalDatasetDefinition.md)
1622
1631
  - [RelationalDatasetFieldDefinition](docs/RelationalDatasetFieldDefinition.md)
1623
1632
  - [Relationship](docs/Relationship.md)
@@ -1949,6 +1958,8 @@ Class | Method | HTTP request | Description
1949
1958
  - [UpsertReferencePortfolioConstituentPropertiesResponse](docs/UpsertReferencePortfolioConstituentPropertiesResponse.md)
1950
1959
  - [UpsertReferencePortfolioConstituentsRequest](docs/UpsertReferencePortfolioConstituentsRequest.md)
1951
1960
  - [UpsertReferencePortfolioConstituentsResponse](docs/UpsertReferencePortfolioConstituentsResponse.md)
1961
+ - [UpsertRelationalDataPointDataSeries](docs/UpsertRelationalDataPointDataSeries.md)
1962
+ - [UpsertRelationalDataPointRequest](docs/UpsertRelationalDataPointRequest.md)
1952
1963
  - [UpsertResultValuesDataRequest](docs/UpsertResultValuesDataRequest.md)
1953
1964
  - [UpsertReturnsResponse](docs/UpsertReturnsResponse.md)
1954
1965
  - [UpsertSingleStructuredDataResponse](docs/UpsertSingleStructuredDataResponse.md)
@@ -1,5 +1,5 @@
1
- lusid/__init__.py,sha256=i_k_TKhprFGdeLje0Xyxw0JFEgDD1OVyQ4EmIPmgHZk,148141
2
- lusid/api/__init__.py,sha256=yCGwgeQBZ1RZovOUo7Jq24Txz4o6naRgnWAzQVGdHAk,6784
1
+ lusid/__init__.py,sha256=oxkMA5wz6aOlBcLYfjFpYbsQiYfYVH0jNrnkvjwLY6Q,149449
2
+ lusid/api/__init__.py,sha256=ZRwaw_f87IHsKoGcZrKHw8M0fm3Mu3UM3nbiVK73HQg,6881
3
3
  lusid/api/abor_api.py,sha256=EdyHrd5yRcz7MOffhFa1cgtcBaPuPJmbArHWIXv7tuQ,174322
4
4
  lusid/api/abor_configuration_api.py,sha256=xQ9HcXm02eDFhCdWUHjqFRWl1oQMxm2LNObJ9kcLauU,84216
5
5
  lusid/api/address_key_definition_api.py,sha256=m1nlEYBeggP_6XUW-i7ah9G0Vmz8hNuKuYtM6Z9VTzA,31350
@@ -57,6 +57,7 @@ lusid/api/reference_lists_api.py,sha256=fYUbYIFmvXC8Fp-gL3MntpaA6ONXyom7eOl6KkpV
57
57
  lusid/api/reference_portfolio_api.py,sha256=g_uwUFZ7dq8lM44JFAE_MAjAS3jCR4n4vK2GxgA7CwY,58241
58
58
  lusid/api/relation_definitions_api.py,sha256=h5vvT8Uppe9TSQBThwtot-A8Pzpkfs70BX-Bd4CH7qE,27087
59
59
  lusid/api/relational_dataset_definition_api.py,sha256=QafRdn5zHJxSzPB3e6L5p8vsnBFNFnaPBx1ZrQtuuAM,49315
60
+ lusid/api/relational_datasets_api.py,sha256=cQY0A8w2oMzgpUp2OdStj7kT1z5j_hvyuznfw7hUWF4,30816
60
61
  lusid/api/relations_api.py,sha256=yNvUoANXP-c3OCbbsk56I5rMQUHv7aCFvj6aHsjoFE0,22407
61
62
  lusid/api/relationship_definitions_api.py,sha256=sWBT-UqG5Rruq9sI3SEJzQohWDb_OdWG2LmxBbb6764,53437
62
63
  lusid/api/relationships_api.py,sha256=JkDAW7scBkrf24NPlcf8a9pTX-2Xl2zwe5n2_13Sczw,19467
@@ -80,7 +81,7 @@ lusid/api/translation_api.py,sha256=xpRuTfwQvYBlWe6r_L2EI_uVpXqHFnEOim-i-kVQ85E,
80
81
  lusid/api/workspace_api.py,sha256=0pCNi3ZCRbIo0NXKa85XE7vtq0WV5YOKcQKvFlcLUaY,120708
81
82
  lusid/api_client.py,sha256=ewMTmf9SRurY8pYnUx9jy24RdldPCOa4US38pnrVxjA,31140
82
83
  lusid/api_response.py,sha256=6-gnhty6lu8MMAERt3_kTVD7UxQgWFfcjgpcq6iN5IU,855
83
- lusid/configuration.py,sha256=fALhXbtlyQVaBfcz-ujnCfHoHOk9LeGN9TEClr3yu2E,17980
84
+ lusid/configuration.py,sha256=A65XflhWFDxTUPhmv0XiHxSoQM5T_TC3AZoiC9JTuJA,17980
84
85
  lusid/exceptions.py,sha256=HIQwgmQrszLlcVCLaqex8dO0laVuejUyOMz7U2ZWJ6s,5326
85
86
  lusid/extensions/__init__.py,sha256=dzDHEzpn-9smd2-_UMWQzeyX6Ha4jGf6fnqx7qxKxNI,630
86
87
  lusid/extensions/api_client.py,sha256=GzygWg_h603QK1QS2HvAijuE2R1TnvoF6-Yg0CeM3ug,30943
@@ -95,7 +96,7 @@ lusid/extensions/rest.py,sha256=dp-bD_LMR2zAL1tmC3-urhWKLomXx7r5iGN1VteMBVQ,1601
95
96
  lusid/extensions/retry.py,sha256=EhW9OKJmGHipxN3H7eROH5DiMlAnfBVl95NQrttcsdg,14834
96
97
  lusid/extensions/socket_keep_alive.py,sha256=eX5ICvGfVzUCGIm80Q2RknfFZrBQAdnrcpY61M29V_k,1997
97
98
  lusid/extensions/tcp_keep_alive_connector.py,sha256=zaGtUsygRsxB1_4B3x39K3ILwztdhMLDv5bFZV7zmGE,3877
98
- lusid/models/__init__.py,sha256=HYjldlScVm8Oz5OyysMQBEhDJ3NeE2sxJWsYvaJulUQ,140325
99
+ lusid/models/__init__.py,sha256=BHfgo3dJ5TXZveu1ARGovhqaPQB44BlgaK4hAUyvdS4,141536
99
100
  lusid/models/a2_b_breakdown.py,sha256=-FXgILrvtZXQDmvS0ARaJVGBq5LJ4AH-o3HjujFVmS4,3198
100
101
  lusid/models/a2_b_category.py,sha256=WunXUgx-dCnApPeLC8Qo5tVCX8Ywxkehib1vmNqNgNs,2957
101
102
  lusid/models/a2_b_data_record.py,sha256=qANTmV1_HUEo4l72-F8qzZjlQxOe0Onc9WPz7h-WWuY,9993
@@ -166,6 +167,7 @@ lusid/models/append_fx_forward_tenor_curve_data.py,sha256=y-pu9NrXlMoCgGGxEIyjWU
166
167
  lusid/models/append_fx_forward_tenor_pips_curve_data.py,sha256=NJwpEZhk8hl3JNHSzZ2AhYRPL1hn4pEJbELPvxi1hW8,7263
167
168
  lusid/models/append_market_data.py,sha256=lfG19L2t-L_OlXLGCw1TOXs8N5v8A-kbHgL7p_Aq0K0,7640
168
169
  lusid/models/append_market_data_type.py,sha256=GS-6IYAIcnqdk5HeDunGvz4a_OB71jR7Lmnv3FSlkAU,1036
170
+ lusid/models/applicable_entity.py,sha256=i2pkF0zpYWK3Pr9yOeodMVmkscwPXZOE8jgcR7Y__0M,4080
169
171
  lusid/models/applicable_instrument_event.py,sha256=XT10BwbXdWKfQOZON1MLEouLyHyEKCNy2G1sDRDunwg,7064
170
172
  lusid/models/asset_class.py,sha256=yurc1IbYS3HCMRBncPFfIl8pBiYnt64MP4tiBYJ8usU,793
171
173
  lusid/models/asset_leg.py,sha256=zsJ_nkV4KuTtqNrBgb18Wf-g86Bgbr8NKKCcMyIWXuU,2834
@@ -183,6 +185,7 @@ lusid/models/batch_upsert_portfolio_access_metadata_response.py,sha256=DtCMT2jDx
183
185
  lusid/models/batch_upsert_portfolio_access_metadata_response_item.py,sha256=tuH9DGT8nUrmfPqOTwbVbMVuwdIlAoD31-yhVqZUrWQ,3550
184
186
  lusid/models/batch_upsert_portfolio_transactions_response.py,sha256=0IVDUtW7cwLo_DWrjiweBD_WRvUp2smI-unU0XJsnDI,6035
185
187
  lusid/models/batch_upsert_property_definition_properties_response.py,sha256=xITK95pcgyoFz3m4U96pRUQpG88I_XOFrSjchjKU7Wo,4656
188
+ lusid/models/batch_upsert_relational_datasets_response.py,sha256=UXHuNkGynHsuPTpgA5X1g3YNEKn_X40FXqmQvEHRlwM,5074
186
189
  lusid/models/batch_upsert_transaction_settlement_instruction_response.py,sha256=Yg-pEbeODPmodD2loGvS-3MKnHiDPI5bWP7_fr3D7Tg,5455
187
190
  lusid/models/block.py,sha256=b0VMrkJpD_uqrzLJU8jcMw516FB7jnV-HAmJxxI8-pA,8148
188
191
  lusid/models/block_and_order_id_request.py,sha256=vkvCIdiZKrery_X3-qnyB3Y0EY5zB_COFuh3HsGJNqA,2864
@@ -706,7 +709,7 @@ lusid/models/loan_facility.py,sha256=liN1YGGSwHnYbRnwv0b-d_ahCTYFvXpoW5GLQ2UQxck
706
709
  lusid/models/loan_facility_contract_rollover_event.py,sha256=3wP7uWpM9GaaSbzXYzU0FngjDOe7RLfNkHSGqVx-f3U,12791
707
710
  lusid/models/loan_interest_repayment_event.py,sha256=uA3m7fBv5OjVDgn_IVrQyZ10Rgg7jWZEff2JsluMBxo,13098
708
711
  lusid/models/loan_period.py,sha256=aYoZLiXQRkjj0DWmXs4ihxHUxYW7Nc0-mfkFaSBAE4k,2383
709
- lusid/models/loan_principal_repayment_event.py,sha256=KLplsHpXj5CSi8jXWe-0ooEMfcqG-iGZXFgkdQBJ_Dg,13770
712
+ lusid/models/loan_principal_repayment_event.py,sha256=V-NCtVCPB0jS7rqn18PnH_r7Fb0Y1VqwSL4dOwL1It0,14105
710
713
  lusid/models/lock_period_diary_entry_request.py,sha256=pqJQGtnL8Oy8WJ1St3QgA5HhESmvrunFPeBZ0fP9O3I,3126
711
714
  lusid/models/lusid_entity_dataset.py,sha256=liQjIxxpwWPoOosVGiuQjd0GylhpgiEkXPsYHHU9Vmg,4706
712
715
  lusid/models/lusid_entity_result.py,sha256=FcDEYQ-VyYsnfruavcwVwL8jxsQKURt9wfRAsPTr3ys,4934
@@ -867,6 +870,7 @@ lusid/models/paged_resource_list_of_property_definition.py,sha256=j5tafxvcBN12y3
867
870
  lusid/models/paged_resource_list_of_property_definition_search_result.py,sha256=VlIzHyCHJILXHFcejwye18h7PIVy34cgefTTqKzfYJ4,4593
868
871
  lusid/models/paged_resource_list_of_reconciliation.py,sha256=mvl8QgGtVkl65JVNYzH0YiXUe1KwG9cSyW2Jb-qtnYQ,4398
869
872
  lusid/models/paged_resource_list_of_reference_list_response.py,sha256=K4syOZyv2Dm7AmXo2Dpj7FLWk7hsbJNoKZK7TOmOYiY,4484
873
+ lusid/models/paged_resource_list_of_relational_data_point_response.py,sha256=aC55sG_C0evY8M-7zuNjccjb3OlicRnR5o3lQGUOQZM,4557
870
874
  lusid/models/paged_resource_list_of_relational_dataset_definition.py,sha256=Evwggm2vWjffEi2a0eBFvZrbfZqlzJWzUyqTQhhNnOo,4556
871
875
  lusid/models/paged_resource_list_of_relationship_definition.py,sha256=18GDK_-b_oVfooYdbyGuS1d03qnAbKsaAIB8kHvZy8k,4495
872
876
  lusid/models/paged_resource_list_of_sequence_definition.py,sha256=LMGolmIHHYo7B-Pqcwwz8D9PZg5_Uod6cDCwiLCyHME,4447
@@ -970,6 +974,7 @@ lusid/models/query_applicable_instrument_events_request.py,sha256=Zw5ofzuNC7-tUF
970
974
  lusid/models/query_bucketed_cash_flows_request.py,sha256=m5TZ-Mjm_g_qwX9BvjVhH36g8bVgTU3VadiigEIq8Ik,10179
971
975
  lusid/models/query_cash_flows_request.py,sha256=2kTdhwazeoyTim0cA5IIUS2ro3oHW6I0oSzoiMjMJ9I,4218
972
976
  lusid/models/query_instrument_events_request.py,sha256=lOtNB6SuFabev6MgaDCfLP6cnU4AFEpheBc5ShvKQc4,4794
977
+ lusid/models/query_relational_dataset_request.py,sha256=_F3RJiFckGU_JHwptdz7Zs5ZILxxerp9REGiGnccozc,3365
973
978
  lusid/models/query_trade_tickets_request.py,sha256=L_ewkx18rkMhzVBKbhYAsJBtOvku2zufEiQy3gE-bIc,4299
974
979
  lusid/models/queryable_key.py,sha256=J2k4FMn34zWg9M8ttfS4EH1TOHFN-0U_4hlgy3rYup4,8451
975
980
  lusid/models/quote.py,sha256=CHugRXD9w1Dvn_QVX5WnY3MUx-tVqFBWhYckQrZ2U_E,4707
@@ -1016,6 +1021,9 @@ lusid/models/reference_portfolio_weight_type.py,sha256=5rggGu_sCoc_lRpGyQRMA10l3
1016
1021
  lusid/models/related_entity.py,sha256=4ZzIfmT_PSsGW9CZjoXsU9uzLYWd3hnQftssv8Atz6g,5739
1017
1022
  lusid/models/relation.py,sha256=WUL9JD_PCPu1hVeiGuvKOAAkgpYWD9Qr4ybkE7yc3GU,3604
1018
1023
  lusid/models/relation_definition.py,sha256=oJfpalXDU1J1Xhu_e7aCelTwzgMx93RXt6HSW9vQ6JI,7153
1024
+ lusid/models/relational_data_point_field_value_response.py,sha256=1vXeBppxQcO1yhyqed85kdR536Q7Hv9NkUo8Ozcseq8,2467
1025
+ lusid/models/relational_data_point_response.py,sha256=VcjfK6qTwNcYycMxMB11U3qWc5Da6g9s5TeJhPp8FVo,5582
1026
+ lusid/models/relational_data_series_response.py,sha256=EzHLOFB9gUnwiBu1WFbZtGfgUvkDlYf3w3p0hxk4DwY,3826
1019
1027
  lusid/models/relational_dataset_definition.py,sha256=GitSfIp74N1SioKmUqR382SEjPql6aAoe0W6YdUN3NA,5674
1020
1028
  lusid/models/relational_dataset_field_definition.py,sha256=3ilrOwjN8Ogr7i_Myrq70hJosBZY1Vppq0watgyTI0c,3969
1021
1029
  lusid/models/relationship.py,sha256=ew5ZGga-Ps6xo50dz3BNsZJ3_YCahuqG0es1D5gt4_k,5024
@@ -1347,6 +1355,8 @@ lusid/models/upsert_reference_portfolio_constituent_properties_request.py,sha256
1347
1355
  lusid/models/upsert_reference_portfolio_constituent_properties_response.py,sha256=8f-urwzWyGpObshG8rcNtuXsu3zd4EofFynYYcJ_sPw,4815
1348
1356
  lusid/models/upsert_reference_portfolio_constituents_request.py,sha256=XLShjNQATpVGyB92ei76f4b3MXZtjbTynyTDlD5z_7c,11174
1349
1357
  lusid/models/upsert_reference_portfolio_constituents_response.py,sha256=RILzEKAHUv5NBJzyNmerZtPEgv78ueD8WLb9BbDD1NE,3578
1358
+ lusid/models/upsert_relational_data_point_data_series.py,sha256=Nltg8nNXry2y71qWElsosSH35w9f1seNcAze-UpolOQ,3121
1359
+ lusid/models/upsert_relational_data_point_request.py,sha256=DlBcVyN_5OV3SxAW1jj_7KbOPPggPReGWzbs11pOLI4,3757
1350
1360
  lusid/models/upsert_result_values_data_request.py,sha256=oTTTWztdQzBEYQV915b5fWtzaOvavIOSFGW31CWxBfs,3775
1351
1361
  lusid/models/upsert_returns_response.py,sha256=Ia9nUzYujOPW1K9TNSxNU3DPYzuEMCSQE1elCdNQAtg,4854
1352
1362
  lusid/models/upsert_single_structured_data_response.py,sha256=8i96E1H7A5TM6EJUBAUkkzTYxRH58b1-H8veHh5Ym2E,3477
@@ -1402,6 +1412,6 @@ lusid/models/year_month_day.py,sha256=gwSoxFwlD_wffKdddo1wfvAcLq3Cht3FHQidiaHzAA
1402
1412
  lusid/models/yield_curve_data.py,sha256=sifVmM0PAAB9wfI3aKf4dLbZS45bqiRv9ffZxQx7JRU,9663
1403
1413
  lusid/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1404
1414
  lusid/rest.py,sha256=HQT__5LQEMu6_1sLKvYj-DI4FH1DJXBIPYfZCTTyrY4,13431
1405
- lusid_sdk-2.1.989.dist-info/METADATA,sha256=OoVIVOS8gj2Kd2t69CcnHxiv74Qsu2CgRlSmLbkRD9c,235622
1406
- lusid_sdk-2.1.989.dist-info/WHEEL,sha256=Nq82e9rUAnEjt98J6MlVmMCZb-t9cYE2Ir1kpBmnWfs,88
1407
- lusid_sdk-2.1.989.dist-info/RECORD,,
1415
+ lusid_sdk-2.1.990.dist-info/METADATA,sha256=LAlvf5RMdglwi2g3JWMlshE7Q_UOU9xRZ_uv9DzDsTs,237029
1416
+ lusid_sdk-2.1.990.dist-info/WHEEL,sha256=Nq82e9rUAnEjt98J6MlVmMCZb-t9cYE2Ir1kpBmnWfs,88
1417
+ lusid_sdk-2.1.990.dist-info/RECORD,,