lusid-sdk 2.1.351__py3-none-any.whl → 2.1.405__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.
- lusid/__init__.py +52 -0
- lusid/api/__init__.py +2 -0
- lusid/api/funds_api.py +9 -8
- lusid/api/group_reconciliations_api.py +378 -0
- lusid/api/order_management_api.py +174 -0
- lusid/api/persons_api.py +4 -4
- lusid/api/portfolios_api.py +179 -0
- lusid/api/workspace_api.py +40 -40
- lusid/configuration.py +1 -1
- lusid/models/__init__.py +50 -0
- lusid/models/accept_estimate_valuation_point_response.py +100 -0
- lusid/models/accumulation_event.py +3 -3
- lusid/models/action_id.py +1 -1
- lusid/models/amortisation_event.py +3 -3
- lusid/models/applicable_instrument_event.py +14 -2
- lusid/models/batch_upsert_portfolio_access_metadata_request.py +82 -0
- lusid/models/batch_upsert_portfolio_access_metadata_response.py +82 -0
- lusid/models/bond_coupon_event.py +3 -3
- lusid/models/bond_default_event.py +3 -3
- lusid/models/bond_principal_event.py +3 -3
- lusid/models/calendar.py +17 -2
- lusid/models/capital_distribution_event.py +3 -3
- lusid/models/cash_dividend_event.py +3 -3
- lusid/models/cash_flow_event.py +3 -3
- lusid/models/cds_credit_event.py +105 -0
- lusid/models/cdx_credit_event.py +114 -0
- lusid/models/change_interval_with_order_management_detail.py +137 -0
- lusid/models/close_event.py +3 -3
- lusid/models/create_group_reconciliation_comparison_ruleset_request.py +97 -0
- lusid/models/credit_premium_cash_flow_event.py +102 -0
- lusid/models/custom_entity_definition.py +17 -2
- lusid/models/custom_entity_type.py +17 -2
- lusid/models/data_type.py +7 -1
- lusid/models/dividend_option_event.py +3 -3
- lusid/models/dividend_reinvestment_event.py +3 -3
- lusid/models/exercise_event.py +3 -3
- lusid/models/expiry_event.py +3 -3
- lusid/models/fee.py +1 -1
- lusid/models/fee_request.py +1 -1
- lusid/models/flow_conventions.py +1 -1
- lusid/models/fund_amount.py +1 -1
- lusid/models/fund_details.py +74 -0
- lusid/models/future_expiry_event.py +3 -3
- lusid/models/futures_contract_details.py +6 -1
- lusid/models/fx_forward_settlement_event.py +13 -5
- lusid/models/generated_event_diagnostics.py +75 -0
- lusid/models/group_reconciliation_aggregate_attribute_rule.py +84 -0
- lusid/models/group_reconciliation_aggregate_comparison_rule_operand.py +71 -0
- lusid/models/group_reconciliation_comparison_rule_string_value_map.py +73 -0
- lusid/models/group_reconciliation_comparison_rule_tolerance.py +71 -0
- lusid/models/group_reconciliation_comparison_ruleset.py +125 -0
- lusid/models/group_reconciliation_core_attribute_rule.py +95 -0
- lusid/models/group_reconciliation_core_comparison_rule_operand.py +71 -0
- lusid/models/holding_pricing_info.py +110 -0
- lusid/models/index_convention.py +1 -1
- lusid/models/informational_error_event.py +3 -3
- lusid/models/informational_event.py +3 -3
- lusid/models/instrument_event.py +10 -5
- lusid/models/instrument_event_instruction.py +19 -4
- lusid/models/instrument_event_type.py +5 -0
- lusid/models/maturity_event.py +3 -3
- lusid/models/merger_event.py +3 -3
- lusid/models/metadata_key_value.py +86 -0
- lusid/models/metadata_key_value_response.py +86 -0
- lusid/models/new_instrument.py +10 -2
- lusid/models/open_event.py +3 -3
- lusid/models/order_graph_block_order_detail.py +1 -1
- lusid/models/order_update_request.py +5 -0
- lusid/models/person.py +17 -2
- lusid/models/placement_update_request.py +6 -1
- lusid/models/previous_nav.py +3 -3
- lusid/models/pricing_context.py +8 -2
- lusid/models/raw_vendor_event.py +3 -3
- lusid/models/reset_event.py +3 -3
- lusid/models/resource_list_of_change_interval_with_order_management_detail.py +113 -0
- lusid/models/reverse_stock_split_event.py +3 -3
- lusid/models/scrip_dividend_event.py +3 -3
- lusid/models/share_class_amount.py +7 -9
- lusid/models/share_class_breakdown.py +4 -5
- lusid/models/specific_holding_pricing_info.py +75 -0
- lusid/models/spin_off_event.py +3 -3
- lusid/models/staged_modification.py +8 -1
- lusid/models/stock_dividend_event.py +3 -3
- lusid/models/stock_split_event.py +3 -3
- lusid/models/swap_cash_flow_event.py +97 -0
- lusid/models/swap_principal_event.py +97 -0
- lusid/models/transaction_diagnostics.py +71 -0
- lusid/models/transition_event.py +3 -3
- lusid/models/trigger_event.py +3 -3
- lusid/models/valuation_point_data_response.py +21 -1
- lusid/models/weighted_instrument.py +9 -2
- {lusid_sdk-2.1.351.dist-info → lusid_sdk-2.1.405.dist-info}/METADATA +52 -23
- {lusid_sdk-2.1.351.dist-info → lusid_sdk-2.1.405.dist-info}/RECORD +94 -68
- {lusid_sdk-2.1.351.dist-info → lusid_sdk-2.1.405.dist-info}/WHEEL +0 -0
lusid/api/portfolios_api.py
CHANGED
@@ -31,6 +31,8 @@ from lusid.models.access_metadata_value import AccessMetadataValue
|
|
31
31
|
from lusid.models.aggregated_returns_dispersion_request import AggregatedReturnsDispersionRequest
|
32
32
|
from lusid.models.aggregated_returns_request import AggregatedReturnsRequest
|
33
33
|
from lusid.models.aggregated_returns_response import AggregatedReturnsResponse
|
34
|
+
from lusid.models.batch_upsert_portfolio_access_metadata_request import BatchUpsertPortfolioAccessMetadataRequest
|
35
|
+
from lusid.models.batch_upsert_portfolio_access_metadata_response import BatchUpsertPortfolioAccessMetadataResponse
|
34
36
|
from lusid.models.composite_breakdown_request import CompositeBreakdownRequest
|
35
37
|
from lusid.models.composite_breakdown_response import CompositeBreakdownResponse
|
36
38
|
from lusid.models.composite_dispersion_response import CompositeDispersionResponse
|
@@ -77,6 +79,183 @@ class PortfoliosApi:
|
|
77
79
|
api_client = ApiClient.get_default()
|
78
80
|
self.api_client = api_client
|
79
81
|
|
82
|
+
@overload
|
83
|
+
async def batch_upsert_portfolio_access_metadata(self, batch_upsert_portfolio_access_metadata_request : Annotated[BatchUpsertPortfolioAccessMetadataRequest, Field(..., description="The Portfolio Access Metadata Rule to update or insert")], effective_at : Annotated[Optional[StrictStr], Field(description="The date this rule will effective from")] = None, effective_until : Annotated[Optional[datetime], Field(description="The effective date until which the Access Metadata is valid. If not supplied this will be valid indefinitely, or until the next 'effectiveAt' date of the Access Metadata")] = None, **kwargs) -> BatchUpsertPortfolioAccessMetadataResponse: # noqa: E501
|
84
|
+
...
|
85
|
+
|
86
|
+
@overload
|
87
|
+
def batch_upsert_portfolio_access_metadata(self, batch_upsert_portfolio_access_metadata_request : Annotated[BatchUpsertPortfolioAccessMetadataRequest, Field(..., description="The Portfolio Access Metadata Rule to update or insert")], effective_at : Annotated[Optional[StrictStr], Field(description="The date this rule will effective from")] = None, effective_until : Annotated[Optional[datetime], Field(description="The effective date until which the Access Metadata is valid. If not supplied this will be valid indefinitely, or until the next 'effectiveAt' date of the Access Metadata")] = None, async_req: Optional[bool]=True, **kwargs) -> BatchUpsertPortfolioAccessMetadataResponse: # noqa: E501
|
88
|
+
...
|
89
|
+
|
90
|
+
@validate_arguments
|
91
|
+
def batch_upsert_portfolio_access_metadata(self, batch_upsert_portfolio_access_metadata_request : Annotated[BatchUpsertPortfolioAccessMetadataRequest, Field(..., description="The Portfolio Access Metadata Rule to update or insert")], effective_at : Annotated[Optional[StrictStr], Field(description="The date this rule will effective from")] = None, effective_until : Annotated[Optional[datetime], Field(description="The effective date until which the Access Metadata is valid. If not supplied this will be valid indefinitely, or until the next 'effectiveAt' date of the Access Metadata")] = None, async_req: Optional[bool]=None, **kwargs) -> Union[BatchUpsertPortfolioAccessMetadataResponse, Awaitable[BatchUpsertPortfolioAccessMetadataResponse]]: # noqa: E501
|
92
|
+
"""[EXPERIMENTAL] BatchUpsertPortfolioAccessMetadata: Upsert multiple portfolio access metadata with different keys to multiple portfolios # noqa: E501
|
93
|
+
|
94
|
+
Update or insert multiple Portfolios Access Metadata Rule in multiple scopes. Items will be updated if it already exists and inserted if it does not. No other items will be affected The response will return the successfully updated or inserted Portfolio Access Metadata Rules or failure message if unsuccessful It is important to always check to verify success (or failure). Multiple rules for a metadataKey can exist with different effective at dates, when resources are accessed the rule that is active for the current time will be fetched # noqa: E501
|
95
|
+
This method makes a synchronous HTTP request by default. To make an
|
96
|
+
asynchronous HTTP request, please pass async_req=True
|
97
|
+
|
98
|
+
>>> thread = api.batch_upsert_portfolio_access_metadata(batch_upsert_portfolio_access_metadata_request, effective_at, effective_until, async_req=True)
|
99
|
+
>>> result = thread.get()
|
100
|
+
|
101
|
+
:param batch_upsert_portfolio_access_metadata_request: The Portfolio Access Metadata Rule to update or insert (required)
|
102
|
+
:type batch_upsert_portfolio_access_metadata_request: BatchUpsertPortfolioAccessMetadataRequest
|
103
|
+
:param effective_at: The date this rule will effective from
|
104
|
+
:type effective_at: str
|
105
|
+
:param effective_until: The effective date until which the Access Metadata is valid. If not supplied this will be valid indefinitely, or until the next 'effectiveAt' date of the Access Metadata
|
106
|
+
:type effective_until: datetime
|
107
|
+
:param async_req: Whether to execute the request asynchronously.
|
108
|
+
:type async_req: bool, optional
|
109
|
+
:param _request_timeout: timeout setting for this request.
|
110
|
+
If one number provided, it will be total request
|
111
|
+
timeout. It can also be a pair (tuple) of
|
112
|
+
(connection, read) timeouts.
|
113
|
+
:return: Returns the result object.
|
114
|
+
If the method is called asynchronously,
|
115
|
+
returns the request thread.
|
116
|
+
:rtype: BatchUpsertPortfolioAccessMetadataResponse
|
117
|
+
"""
|
118
|
+
kwargs['_return_http_data_only'] = True
|
119
|
+
if '_preload_content' in kwargs:
|
120
|
+
message = "Error! Please call the batch_upsert_portfolio_access_metadata_with_http_info method with `_preload_content` instead and obtain raw data from ApiResponse.raw_data" # noqa: E501
|
121
|
+
raise ValueError(message)
|
122
|
+
if async_req is not None:
|
123
|
+
kwargs['async_req'] = async_req
|
124
|
+
return self.batch_upsert_portfolio_access_metadata_with_http_info(batch_upsert_portfolio_access_metadata_request, effective_at, effective_until, **kwargs) # noqa: E501
|
125
|
+
|
126
|
+
@validate_arguments
|
127
|
+
def batch_upsert_portfolio_access_metadata_with_http_info(self, batch_upsert_portfolio_access_metadata_request : Annotated[BatchUpsertPortfolioAccessMetadataRequest, Field(..., description="The Portfolio Access Metadata Rule to update or insert")], effective_at : Annotated[Optional[StrictStr], Field(description="The date this rule will effective from")] = None, effective_until : Annotated[Optional[datetime], Field(description="The effective date until which the Access Metadata is valid. If not supplied this will be valid indefinitely, or until the next 'effectiveAt' date of the Access Metadata")] = None, **kwargs) -> ApiResponse: # noqa: E501
|
128
|
+
"""[EXPERIMENTAL] BatchUpsertPortfolioAccessMetadata: Upsert multiple portfolio access metadata with different keys to multiple portfolios # noqa: E501
|
129
|
+
|
130
|
+
Update or insert multiple Portfolios Access Metadata Rule in multiple scopes. Items will be updated if it already exists and inserted if it does not. No other items will be affected The response will return the successfully updated or inserted Portfolio Access Metadata Rules or failure message if unsuccessful It is important to always check to verify success (or failure). Multiple rules for a metadataKey can exist with different effective at dates, when resources are accessed the rule that is active for the current time will be fetched # noqa: E501
|
131
|
+
This method makes a synchronous HTTP request by default. To make an
|
132
|
+
asynchronous HTTP request, please pass async_req=True
|
133
|
+
|
134
|
+
>>> thread = api.batch_upsert_portfolio_access_metadata_with_http_info(batch_upsert_portfolio_access_metadata_request, effective_at, effective_until, async_req=True)
|
135
|
+
>>> result = thread.get()
|
136
|
+
|
137
|
+
:param batch_upsert_portfolio_access_metadata_request: The Portfolio Access Metadata Rule to update or insert (required)
|
138
|
+
:type batch_upsert_portfolio_access_metadata_request: BatchUpsertPortfolioAccessMetadataRequest
|
139
|
+
:param effective_at: The date this rule will effective from
|
140
|
+
:type effective_at: str
|
141
|
+
:param effective_until: The effective date until which the Access Metadata is valid. If not supplied this will be valid indefinitely, or until the next 'effectiveAt' date of the Access Metadata
|
142
|
+
:type effective_until: datetime
|
143
|
+
:param async_req: Whether to execute the request asynchronously.
|
144
|
+
:type async_req: bool, optional
|
145
|
+
:param _preload_content: if False, the ApiResponse.data will
|
146
|
+
be set to none and raw_data will store the
|
147
|
+
HTTP response body without reading/decoding.
|
148
|
+
Default is True.
|
149
|
+
:type _preload_content: bool, optional
|
150
|
+
:param _return_http_data_only: response data instead of ApiResponse
|
151
|
+
object with status code, headers, etc
|
152
|
+
:type _return_http_data_only: bool, optional
|
153
|
+
:param _request_timeout: timeout setting for this request. If one
|
154
|
+
number provided, it will be total request
|
155
|
+
timeout. It can also be a pair (tuple) of
|
156
|
+
(connection, read) timeouts.
|
157
|
+
:param _request_auth: set to override the auth_settings for an a single
|
158
|
+
request; this effectively ignores the authentication
|
159
|
+
in the spec for a single request.
|
160
|
+
:type _request_auth: dict, optional
|
161
|
+
:type _content_type: string, optional: force content-type for the request
|
162
|
+
:return: Returns the result object.
|
163
|
+
If the method is called asynchronously,
|
164
|
+
returns the request thread.
|
165
|
+
:rtype: tuple(BatchUpsertPortfolioAccessMetadataResponse, status_code(int), headers(HTTPHeaderDict))
|
166
|
+
"""
|
167
|
+
|
168
|
+
_params = locals()
|
169
|
+
|
170
|
+
_all_params = [
|
171
|
+
'batch_upsert_portfolio_access_metadata_request',
|
172
|
+
'effective_at',
|
173
|
+
'effective_until'
|
174
|
+
]
|
175
|
+
_all_params.extend(
|
176
|
+
[
|
177
|
+
'async_req',
|
178
|
+
'_return_http_data_only',
|
179
|
+
'_preload_content',
|
180
|
+
'_request_timeout',
|
181
|
+
'_request_auth',
|
182
|
+
'_content_type',
|
183
|
+
'_headers'
|
184
|
+
]
|
185
|
+
)
|
186
|
+
|
187
|
+
# validate the arguments
|
188
|
+
for _key, _val in _params['kwargs'].items():
|
189
|
+
if _key not in _all_params:
|
190
|
+
raise ApiTypeError(
|
191
|
+
"Got an unexpected keyword argument '%s'"
|
192
|
+
" to method batch_upsert_portfolio_access_metadata" % _key
|
193
|
+
)
|
194
|
+
_params[_key] = _val
|
195
|
+
del _params['kwargs']
|
196
|
+
|
197
|
+
_collection_formats = {}
|
198
|
+
|
199
|
+
# process the path parameters
|
200
|
+
_path_params = {}
|
201
|
+
|
202
|
+
# process the query parameters
|
203
|
+
_query_params = []
|
204
|
+
if _params.get('effective_at') is not None: # noqa: E501
|
205
|
+
_query_params.append(('effectiveAt', _params['effective_at']))
|
206
|
+
|
207
|
+
if _params.get('effective_until') is not None: # noqa: E501
|
208
|
+
if isinstance(_params['effective_until'], datetime):
|
209
|
+
_query_params.append(('effectiveUntil', _params['effective_until'].strftime(self.api_client.configuration.datetime_format)))
|
210
|
+
else:
|
211
|
+
_query_params.append(('effectiveUntil', _params['effective_until']))
|
212
|
+
|
213
|
+
# process the header parameters
|
214
|
+
_header_params = dict(_params.get('_headers', {}))
|
215
|
+
# process the form parameters
|
216
|
+
_form_params = []
|
217
|
+
_files = {}
|
218
|
+
# process the body parameter
|
219
|
+
_body_params = None
|
220
|
+
if _params['batch_upsert_portfolio_access_metadata_request'] is not None:
|
221
|
+
_body_params = _params['batch_upsert_portfolio_access_metadata_request']
|
222
|
+
|
223
|
+
# set the HTTP header `Accept`
|
224
|
+
_header_params['Accept'] = self.api_client.select_header_accept(
|
225
|
+
['text/plain', 'application/json', 'text/json']) # noqa: E501
|
226
|
+
|
227
|
+
# set the HTTP header `Content-Type`
|
228
|
+
_content_types_list = _params.get('_content_type',
|
229
|
+
self.api_client.select_header_content_type(
|
230
|
+
['application/json-patch+json', 'application/json', 'text/json', 'application/*+json']))
|
231
|
+
if _content_types_list:
|
232
|
+
_header_params['Content-Type'] = _content_types_list
|
233
|
+
|
234
|
+
# authentication setting
|
235
|
+
_auth_settings = ['oauth2'] # noqa: E501
|
236
|
+
|
237
|
+
_response_types_map = {
|
238
|
+
'200': "BatchUpsertPortfolioAccessMetadataResponse",
|
239
|
+
'400': "LusidValidationProblemDetails",
|
240
|
+
}
|
241
|
+
|
242
|
+
return self.api_client.call_api(
|
243
|
+
'/api/portfolios/metadata', 'PUT',
|
244
|
+
_path_params,
|
245
|
+
_query_params,
|
246
|
+
_header_params,
|
247
|
+
body=_body_params,
|
248
|
+
post_params=_form_params,
|
249
|
+
files=_files,
|
250
|
+
response_types_map=_response_types_map,
|
251
|
+
auth_settings=_auth_settings,
|
252
|
+
async_req=_params.get('async_req'),
|
253
|
+
_return_http_data_only=_params.get('_return_http_data_only'), # noqa: E501
|
254
|
+
_preload_content=_params.get('_preload_content', True),
|
255
|
+
_request_timeout=_params.get('_request_timeout'),
|
256
|
+
collection_formats=_collection_formats,
|
257
|
+
_request_auth=_params.get('_request_auth'))
|
258
|
+
|
80
259
|
@overload
|
81
260
|
async def delete_instrument_event_instruction(self, scope : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The scope of the portfolio.")], code : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The code of the portfolio. Together with the scope this uniquely identifies the portfolio.")], instrument_event_instruction_id : Annotated[StrictStr, Field(..., description="The id of the instruction to be deleted.")], portfolio_effective_at : Annotated[Optional[constr(strict=True, max_length=6000, min_length=0)], Field(description="The effective date at which the portfolio will be resolved. Defaults to current time if not specified.")] = None, **kwargs) -> DeletedEntityResponse: # noqa: E501
|
82
261
|
...
|
lusid/api/workspace_api.py
CHANGED
@@ -66,7 +66,7 @@ class WorkspaceApi:
|
|
66
66
|
|
67
67
|
@validate_arguments
|
68
68
|
def create_personal_item(self, workspace_name : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The item's workspace name.")], workspace_item_creation_request : Annotated[Optional[WorkspaceItemCreationRequest], Field(description="The item to be created.")] = None, async_req: Optional[bool]=None, **kwargs) -> Union[WorkspaceItem, Awaitable[WorkspaceItem]]: # noqa: E501
|
69
|
-
"""[
|
69
|
+
"""[EXPERIMENTAL] CreatePersonalItem: Create a new item in a personal workspace. # noqa: E501
|
70
70
|
|
71
71
|
Create a new item in a personal workspace. # noqa: E501
|
72
72
|
This method makes a synchronous HTTP request by default. To make an
|
@@ -100,7 +100,7 @@ class WorkspaceApi:
|
|
100
100
|
|
101
101
|
@validate_arguments
|
102
102
|
def create_personal_item_with_http_info(self, workspace_name : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The item's workspace name.")], workspace_item_creation_request : Annotated[Optional[WorkspaceItemCreationRequest], Field(description="The item to be created.")] = None, **kwargs) -> ApiResponse: # noqa: E501
|
103
|
-
"""[
|
103
|
+
"""[EXPERIMENTAL] CreatePersonalItem: Create a new item in a personal workspace. # noqa: E501
|
104
104
|
|
105
105
|
Create a new item in a personal workspace. # noqa: E501
|
106
106
|
This method makes a synchronous HTTP request by default. To make an
|
@@ -232,7 +232,7 @@ class WorkspaceApi:
|
|
232
232
|
|
233
233
|
@validate_arguments
|
234
234
|
def create_personal_workspace(self, workspace_creation_request : Annotated[Optional[WorkspaceCreationRequest], Field(description="The workspace to be created.")] = None, async_req: Optional[bool]=None, **kwargs) -> Union[Workspace, Awaitable[Workspace]]: # noqa: E501
|
235
|
-
"""[
|
235
|
+
"""[EXPERIMENTAL] CreatePersonalWorkspace: Create a new personal workspace. # noqa: E501
|
236
236
|
|
237
237
|
Create a new personal workspace. # noqa: E501
|
238
238
|
This method makes a synchronous HTTP request by default. To make an
|
@@ -264,7 +264,7 @@ class WorkspaceApi:
|
|
264
264
|
|
265
265
|
@validate_arguments
|
266
266
|
def create_personal_workspace_with_http_info(self, workspace_creation_request : Annotated[Optional[WorkspaceCreationRequest], Field(description="The workspace to be created.")] = None, **kwargs) -> ApiResponse: # noqa: E501
|
267
|
-
"""[
|
267
|
+
"""[EXPERIMENTAL] CreatePersonalWorkspace: Create a new personal workspace. # noqa: E501
|
268
268
|
|
269
269
|
Create a new personal workspace. # noqa: E501
|
270
270
|
This method makes a synchronous HTTP request by default. To make an
|
@@ -390,7 +390,7 @@ class WorkspaceApi:
|
|
390
390
|
|
391
391
|
@validate_arguments
|
392
392
|
def create_shared_item(self, workspace_name : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The item's workspace name.")], workspace_item_creation_request : Annotated[Optional[WorkspaceItemCreationRequest], Field(description="The item to be created.")] = None, async_req: Optional[bool]=None, **kwargs) -> Union[WorkspaceItem, Awaitable[WorkspaceItem]]: # noqa: E501
|
393
|
-
"""[
|
393
|
+
"""[EXPERIMENTAL] CreateSharedItem: Create a new item in a shared workspace. # noqa: E501
|
394
394
|
|
395
395
|
Create a new item in a shared workspace. # noqa: E501
|
396
396
|
This method makes a synchronous HTTP request by default. To make an
|
@@ -424,7 +424,7 @@ class WorkspaceApi:
|
|
424
424
|
|
425
425
|
@validate_arguments
|
426
426
|
def create_shared_item_with_http_info(self, workspace_name : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The item's workspace name.")], workspace_item_creation_request : Annotated[Optional[WorkspaceItemCreationRequest], Field(description="The item to be created.")] = None, **kwargs) -> ApiResponse: # noqa: E501
|
427
|
-
"""[
|
427
|
+
"""[EXPERIMENTAL] CreateSharedItem: Create a new item in a shared workspace. # noqa: E501
|
428
428
|
|
429
429
|
Create a new item in a shared workspace. # noqa: E501
|
430
430
|
This method makes a synchronous HTTP request by default. To make an
|
@@ -556,7 +556,7 @@ class WorkspaceApi:
|
|
556
556
|
|
557
557
|
@validate_arguments
|
558
558
|
def create_shared_workspace(self, workspace_creation_request : Annotated[Optional[WorkspaceCreationRequest], Field(description="The workspace to be created.")] = None, async_req: Optional[bool]=None, **kwargs) -> Union[Workspace, Awaitable[Workspace]]: # noqa: E501
|
559
|
-
"""[
|
559
|
+
"""[EXPERIMENTAL] CreateSharedWorkspace: Create a new shared workspace. # noqa: E501
|
560
560
|
|
561
561
|
Create a new shared workspace. # noqa: E501
|
562
562
|
This method makes a synchronous HTTP request by default. To make an
|
@@ -588,7 +588,7 @@ class WorkspaceApi:
|
|
588
588
|
|
589
589
|
@validate_arguments
|
590
590
|
def create_shared_workspace_with_http_info(self, workspace_creation_request : Annotated[Optional[WorkspaceCreationRequest], Field(description="The workspace to be created.")] = None, **kwargs) -> ApiResponse: # noqa: E501
|
591
|
-
"""[
|
591
|
+
"""[EXPERIMENTAL] CreateSharedWorkspace: Create a new shared workspace. # noqa: E501
|
592
592
|
|
593
593
|
Create a new shared workspace. # noqa: E501
|
594
594
|
This method makes a synchronous HTTP request by default. To make an
|
@@ -714,7 +714,7 @@ class WorkspaceApi:
|
|
714
714
|
|
715
715
|
@validate_arguments
|
716
716
|
def delete_personal_item(self, workspace_name : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The name of the personal workspace.")], item_name : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The name of the item.")], async_req: Optional[bool]=None, **kwargs) -> Union[DeletedEntityResponse, Awaitable[DeletedEntityResponse]]: # noqa: E501
|
717
|
-
"""[
|
717
|
+
"""[EXPERIMENTAL] DeletePersonalItem: Delete an item from a personal workspace. # noqa: E501
|
718
718
|
|
719
719
|
Delete an item from a personal workspace. # noqa: E501
|
720
720
|
This method makes a synchronous HTTP request by default. To make an
|
@@ -748,7 +748,7 @@ class WorkspaceApi:
|
|
748
748
|
|
749
749
|
@validate_arguments
|
750
750
|
def delete_personal_item_with_http_info(self, workspace_name : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The name of the personal workspace.")], item_name : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The name of the item.")], **kwargs) -> ApiResponse: # noqa: E501
|
751
|
-
"""[
|
751
|
+
"""[EXPERIMENTAL] DeletePersonalItem: Delete an item from a personal workspace. # noqa: E501
|
752
752
|
|
753
753
|
Delete an item from a personal workspace. # noqa: E501
|
754
754
|
This method makes a synchronous HTTP request by default. To make an
|
@@ -873,7 +873,7 @@ class WorkspaceApi:
|
|
873
873
|
|
874
874
|
@validate_arguments
|
875
875
|
def delete_personal_workspace(self, workspace_name : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The name of the personal workspace.")], async_req: Optional[bool]=None, **kwargs) -> Union[DeletedEntityResponse, Awaitable[DeletedEntityResponse]]: # noqa: E501
|
876
|
-
"""[
|
876
|
+
"""[EXPERIMENTAL] DeletePersonalWorkspace: Delete a personal workspace. # noqa: E501
|
877
877
|
|
878
878
|
Delete a personal workspace. # noqa: E501
|
879
879
|
This method makes a synchronous HTTP request by default. To make an
|
@@ -905,7 +905,7 @@ class WorkspaceApi:
|
|
905
905
|
|
906
906
|
@validate_arguments
|
907
907
|
def delete_personal_workspace_with_http_info(self, workspace_name : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The name of the personal workspace.")], **kwargs) -> ApiResponse: # noqa: E501
|
908
|
-
"""[
|
908
|
+
"""[EXPERIMENTAL] DeletePersonalWorkspace: Delete a personal workspace. # noqa: E501
|
909
909
|
|
910
910
|
Delete a personal workspace. # noqa: E501
|
911
911
|
This method makes a synchronous HTTP request by default. To make an
|
@@ -1024,7 +1024,7 @@ class WorkspaceApi:
|
|
1024
1024
|
|
1025
1025
|
@validate_arguments
|
1026
1026
|
def delete_shared_item(self, workspace_name : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The name of the shared workspace.")], item_name : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The name of the item.")], async_req: Optional[bool]=None, **kwargs) -> Union[DeletedEntityResponse, Awaitable[DeletedEntityResponse]]: # noqa: E501
|
1027
|
-
"""[
|
1027
|
+
"""[EXPERIMENTAL] DeleteSharedItem: Delete an item from a shared workspace. # noqa: E501
|
1028
1028
|
|
1029
1029
|
Delete an item from a shared workspace. # noqa: E501
|
1030
1030
|
This method makes a synchronous HTTP request by default. To make an
|
@@ -1058,7 +1058,7 @@ class WorkspaceApi:
|
|
1058
1058
|
|
1059
1059
|
@validate_arguments
|
1060
1060
|
def delete_shared_item_with_http_info(self, workspace_name : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The name of the shared workspace.")], item_name : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The name of the item.")], **kwargs) -> ApiResponse: # noqa: E501
|
1061
|
-
"""[
|
1061
|
+
"""[EXPERIMENTAL] DeleteSharedItem: Delete an item from a shared workspace. # noqa: E501
|
1062
1062
|
|
1063
1063
|
Delete an item from a shared workspace. # noqa: E501
|
1064
1064
|
This method makes a synchronous HTTP request by default. To make an
|
@@ -1183,7 +1183,7 @@ class WorkspaceApi:
|
|
1183
1183
|
|
1184
1184
|
@validate_arguments
|
1185
1185
|
def delete_shared_workspace(self, workspace_name : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The name of the shared workspace.")], async_req: Optional[bool]=None, **kwargs) -> Union[DeletedEntityResponse, Awaitable[DeletedEntityResponse]]: # noqa: E501
|
1186
|
-
"""[
|
1186
|
+
"""[EXPERIMENTAL] DeleteSharedWorkspace: Delete a shared workspace. # noqa: E501
|
1187
1187
|
|
1188
1188
|
Delete a shared workspace. # noqa: E501
|
1189
1189
|
This method makes a synchronous HTTP request by default. To make an
|
@@ -1215,7 +1215,7 @@ class WorkspaceApi:
|
|
1215
1215
|
|
1216
1216
|
@validate_arguments
|
1217
1217
|
def delete_shared_workspace_with_http_info(self, workspace_name : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The name of the shared workspace.")], **kwargs) -> ApiResponse: # noqa: E501
|
1218
|
-
"""[
|
1218
|
+
"""[EXPERIMENTAL] DeleteSharedWorkspace: Delete a shared workspace. # noqa: E501
|
1219
1219
|
|
1220
1220
|
Delete a shared workspace. # noqa: E501
|
1221
1221
|
This method makes a synchronous HTTP request by default. To make an
|
@@ -1334,7 +1334,7 @@ class WorkspaceApi:
|
|
1334
1334
|
|
1335
1335
|
@validate_arguments
|
1336
1336
|
def get_personal_item(self, workspace_name : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The name of the personal workspace.")], item_name : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The name of the item.")], as_at : Annotated[Optional[datetime], Field(description="The datetime at which to request the workspace item. If not provided, defaults to 'latest'.")] = None, async_req: Optional[bool]=None, **kwargs) -> Union[WorkspaceItem, Awaitable[WorkspaceItem]]: # noqa: E501
|
1337
|
-
"""[
|
1337
|
+
"""[EXPERIMENTAL] GetPersonalItem: Get a single personal workspace item. # noqa: E501
|
1338
1338
|
|
1339
1339
|
Get a single personal workspace item. # noqa: E501
|
1340
1340
|
This method makes a synchronous HTTP request by default. To make an
|
@@ -1370,7 +1370,7 @@ class WorkspaceApi:
|
|
1370
1370
|
|
1371
1371
|
@validate_arguments
|
1372
1372
|
def get_personal_item_with_http_info(self, workspace_name : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The name of the personal workspace.")], item_name : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The name of the item.")], as_at : Annotated[Optional[datetime], Field(description="The datetime at which to request the workspace item. If not provided, defaults to 'latest'.")] = None, **kwargs) -> ApiResponse: # noqa: E501
|
1373
|
-
"""[
|
1373
|
+
"""[EXPERIMENTAL] GetPersonalItem: Get a single personal workspace item. # noqa: E501
|
1374
1374
|
|
1375
1375
|
Get a single personal workspace item. # noqa: E501
|
1376
1376
|
This method makes a synchronous HTTP request by default. To make an
|
@@ -1504,7 +1504,7 @@ class WorkspaceApi:
|
|
1504
1504
|
|
1505
1505
|
@validate_arguments
|
1506
1506
|
def get_personal_workspace(self, workspace_name : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The personal workspace name.")], as_at : Annotated[Optional[datetime], Field(description="The asAt datetime at which to retrieve workspaces. Defaults to 'latest' if not specified.")] = None, async_req: Optional[bool]=None, **kwargs) -> Union[Workspace, Awaitable[Workspace]]: # noqa: E501
|
1507
|
-
"""[
|
1507
|
+
"""[EXPERIMENTAL] GetPersonalWorkspace: Get a personal workspace. # noqa: E501
|
1508
1508
|
|
1509
1509
|
Get a personal workspace. # noqa: E501
|
1510
1510
|
This method makes a synchronous HTTP request by default. To make an
|
@@ -1538,7 +1538,7 @@ class WorkspaceApi:
|
|
1538
1538
|
|
1539
1539
|
@validate_arguments
|
1540
1540
|
def get_personal_workspace_with_http_info(self, workspace_name : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The personal workspace name.")], as_at : Annotated[Optional[datetime], Field(description="The asAt datetime at which to retrieve workspaces. Defaults to 'latest' if not specified.")] = None, **kwargs) -> ApiResponse: # noqa: E501
|
1541
|
-
"""[
|
1541
|
+
"""[EXPERIMENTAL] GetPersonalWorkspace: Get a personal workspace. # noqa: E501
|
1542
1542
|
|
1543
1543
|
Get a personal workspace. # noqa: E501
|
1544
1544
|
This method makes a synchronous HTTP request by default. To make an
|
@@ -1666,7 +1666,7 @@ class WorkspaceApi:
|
|
1666
1666
|
|
1667
1667
|
@validate_arguments
|
1668
1668
|
def get_shared_item(self, workspace_name : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The name of the shared workspace.")], item_name : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The name of the item.")], as_at : Annotated[Optional[datetime], Field(description="The datetime at which to request the workspace item. If not provided, defaults to 'latest'.")] = None, async_req: Optional[bool]=None, **kwargs) -> Union[WorkspaceItem, Awaitable[WorkspaceItem]]: # noqa: E501
|
1669
|
-
"""[
|
1669
|
+
"""[EXPERIMENTAL] GetSharedItem: Get a single shared workspace item. # noqa: E501
|
1670
1670
|
|
1671
1671
|
Get a single shared workspace item. # noqa: E501
|
1672
1672
|
This method makes a synchronous HTTP request by default. To make an
|
@@ -1702,7 +1702,7 @@ class WorkspaceApi:
|
|
1702
1702
|
|
1703
1703
|
@validate_arguments
|
1704
1704
|
def get_shared_item_with_http_info(self, workspace_name : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The name of the shared workspace.")], item_name : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The name of the item.")], as_at : Annotated[Optional[datetime], Field(description="The datetime at which to request the workspace item. If not provided, defaults to 'latest'.")] = None, **kwargs) -> ApiResponse: # noqa: E501
|
1705
|
-
"""[
|
1705
|
+
"""[EXPERIMENTAL] GetSharedItem: Get a single shared workspace item. # noqa: E501
|
1706
1706
|
|
1707
1707
|
Get a single shared workspace item. # noqa: E501
|
1708
1708
|
This method makes a synchronous HTTP request by default. To make an
|
@@ -1836,7 +1836,7 @@ class WorkspaceApi:
|
|
1836
1836
|
|
1837
1837
|
@validate_arguments
|
1838
1838
|
def get_shared_workspace(self, workspace_name : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The shared workspace name.")], as_at : Annotated[Optional[datetime], Field(description="The asAt datetime at which to retrieve workspaces. Defaults to 'latest' if not specified.")] = None, async_req: Optional[bool]=None, **kwargs) -> Union[Workspace, Awaitable[Workspace]]: # noqa: E501
|
1839
|
-
"""[
|
1839
|
+
"""[EXPERIMENTAL] GetSharedWorkspace: Get a shared workspace. # noqa: E501
|
1840
1840
|
|
1841
1841
|
Get a shared workspace. # noqa: E501
|
1842
1842
|
This method makes a synchronous HTTP request by default. To make an
|
@@ -1870,7 +1870,7 @@ class WorkspaceApi:
|
|
1870
1870
|
|
1871
1871
|
@validate_arguments
|
1872
1872
|
def get_shared_workspace_with_http_info(self, workspace_name : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The shared workspace name.")], as_at : Annotated[Optional[datetime], Field(description="The asAt datetime at which to retrieve workspaces. Defaults to 'latest' if not specified.")] = None, **kwargs) -> ApiResponse: # noqa: E501
|
1873
|
-
"""[
|
1873
|
+
"""[EXPERIMENTAL] GetSharedWorkspace: Get a shared workspace. # noqa: E501
|
1874
1874
|
|
1875
1875
|
Get a shared workspace. # noqa: E501
|
1876
1876
|
This method makes a synchronous HTTP request by default. To make an
|
@@ -1998,7 +1998,7 @@ class WorkspaceApi:
|
|
1998
1998
|
|
1999
1999
|
@validate_arguments
|
2000
2000
|
def list_personal_items(self, workspace_name : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The item's workspace name.")], as_at : Annotated[Optional[datetime], Field(description="The asAt datetime at which to retrieve workspace items. Defaults to 'latest' if not specified.")] = None, page : Annotated[Optional[constr(strict=True, max_length=500, min_length=1)], Field(description="The pagination token to use to continue listing workspaces items from a previous call to list workspaces items. This value is returned from the previous call. If a pagination token is provided the sortBy, filter, effectiveAt, and asAt fields must not have changed since the original request.")] = None, sort_by : Annotated[Optional[conlist(StrictStr)], Field(description="A list of field names to sort by, each suffixed by \" ASC\" or \" DESC\".")] = None, limit : Annotated[Optional[conint(strict=True, le=5000, ge=1)], Field(description="When paginating, limit the number of returned results to this many.")] = None, filter : Annotated[Optional[constr(strict=True, max_length=16384, min_length=0)], Field(description="Expression to filter the result set. Read more about filtering results from LUSID here: https://support.lusid.com/filtering-results-from-lusid.")] = None, async_req: Optional[bool]=None, **kwargs) -> Union[PagedResourceListOfWorkspaceItem, Awaitable[PagedResourceListOfWorkspaceItem]]: # noqa: E501
|
2001
|
-
"""[
|
2001
|
+
"""[EXPERIMENTAL] ListPersonalItems: List the items in a personal workspace. # noqa: E501
|
2002
2002
|
|
2003
2003
|
List the items in a personal workspace. # noqa: E501
|
2004
2004
|
This method makes a synchronous HTTP request by default. To make an
|
@@ -2040,7 +2040,7 @@ class WorkspaceApi:
|
|
2040
2040
|
|
2041
2041
|
@validate_arguments
|
2042
2042
|
def list_personal_items_with_http_info(self, workspace_name : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The item's workspace name.")], as_at : Annotated[Optional[datetime], Field(description="The asAt datetime at which to retrieve workspace items. Defaults to 'latest' if not specified.")] = None, page : Annotated[Optional[constr(strict=True, max_length=500, min_length=1)], Field(description="The pagination token to use to continue listing workspaces items from a previous call to list workspaces items. This value is returned from the previous call. If a pagination token is provided the sortBy, filter, effectiveAt, and asAt fields must not have changed since the original request.")] = None, sort_by : Annotated[Optional[conlist(StrictStr)], Field(description="A list of field names to sort by, each suffixed by \" ASC\" or \" DESC\".")] = None, limit : Annotated[Optional[conint(strict=True, le=5000, ge=1)], Field(description="When paginating, limit the number of returned results to this many.")] = None, filter : Annotated[Optional[constr(strict=True, max_length=16384, min_length=0)], Field(description="Expression to filter the result set. Read more about filtering results from LUSID here: https://support.lusid.com/filtering-results-from-lusid.")] = None, **kwargs) -> ApiResponse: # noqa: E501
|
2043
|
-
"""[
|
2043
|
+
"""[EXPERIMENTAL] ListPersonalItems: List the items in a personal workspace. # noqa: E501
|
2044
2044
|
|
2045
2045
|
List the items in a personal workspace. # noqa: E501
|
2046
2046
|
This method makes a synchronous HTTP request by default. To make an
|
@@ -2193,7 +2193,7 @@ class WorkspaceApi:
|
|
2193
2193
|
|
2194
2194
|
@validate_arguments
|
2195
2195
|
def list_personal_workspaces(self, as_at : Annotated[Optional[datetime], Field(description="The asAt datetime at which to retrieve workspaces. Defaults to 'latest' if not specified.")] = None, page : Annotated[Optional[constr(strict=True, max_length=500, min_length=1)], Field(description="The pagination token to use to continue listing workspaces from a previous call to list workspaces. This value is returned from the previous call. If a pagination token is provided the sortBy, filter, effectiveAt, and asAt fields must not have changed since the original request.")] = None, sort_by : Annotated[Optional[conlist(StrictStr)], Field(description="A list of field names to sort by, each suffixed by \" ASC\" or \" DESC\".")] = None, limit : Annotated[Optional[conint(strict=True, le=5000, ge=1)], Field(description="When paginating, limit the number of returned results to this many.")] = None, filter : Annotated[Optional[constr(strict=True, max_length=16384, min_length=0)], Field(description="Expression to filter the result set. Read more about filtering results from LUSID here: https://support.lusid.com/filtering-results-from-lusid.")] = None, async_req: Optional[bool]=None, **kwargs) -> Union[PagedResourceListOfWorkspace, Awaitable[PagedResourceListOfWorkspace]]: # noqa: E501
|
2196
|
-
"""[
|
2196
|
+
"""[EXPERIMENTAL] ListPersonalWorkspaces: List personal workspaces. # noqa: E501
|
2197
2197
|
|
2198
2198
|
List personal workspaces. # noqa: E501
|
2199
2199
|
This method makes a synchronous HTTP request by default. To make an
|
@@ -2233,7 +2233,7 @@ class WorkspaceApi:
|
|
2233
2233
|
|
2234
2234
|
@validate_arguments
|
2235
2235
|
def list_personal_workspaces_with_http_info(self, as_at : Annotated[Optional[datetime], Field(description="The asAt datetime at which to retrieve workspaces. Defaults to 'latest' if not specified.")] = None, page : Annotated[Optional[constr(strict=True, max_length=500, min_length=1)], Field(description="The pagination token to use to continue listing workspaces from a previous call to list workspaces. This value is returned from the previous call. If a pagination token is provided the sortBy, filter, effectiveAt, and asAt fields must not have changed since the original request.")] = None, sort_by : Annotated[Optional[conlist(StrictStr)], Field(description="A list of field names to sort by, each suffixed by \" ASC\" or \" DESC\".")] = None, limit : Annotated[Optional[conint(strict=True, le=5000, ge=1)], Field(description="When paginating, limit the number of returned results to this many.")] = None, filter : Annotated[Optional[constr(strict=True, max_length=16384, min_length=0)], Field(description="Expression to filter the result set. Read more about filtering results from LUSID here: https://support.lusid.com/filtering-results-from-lusid.")] = None, **kwargs) -> ApiResponse: # noqa: E501
|
2236
|
-
"""[
|
2236
|
+
"""[EXPERIMENTAL] ListPersonalWorkspaces: List personal workspaces. # noqa: E501
|
2237
2237
|
|
2238
2238
|
List personal workspaces. # noqa: E501
|
2239
2239
|
This method makes a synchronous HTTP request by default. To make an
|
@@ -2380,7 +2380,7 @@ class WorkspaceApi:
|
|
2380
2380
|
|
2381
2381
|
@validate_arguments
|
2382
2382
|
def list_shared_items(self, workspace_name : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The item's workspace name.")], as_at : Annotated[Optional[datetime], Field(description="The asAt datetime at which to retrieve workspace items. Defaults to 'latest' if not specified.")] = None, page : Annotated[Optional[constr(strict=True, max_length=500, min_length=1)], Field(description="The pagination token to use to continue listing workspaces items from a previous call to list workspaces items. This value is returned from the previous call. If a pagination token is provided the sortBy, filter, effectiveAt, and asAt fields must not have changed since the original request.")] = None, sort_by : Annotated[Optional[conlist(StrictStr)], Field(description="A list of field names to sort by, each suffixed by \" ASC\" or \" DESC\".")] = None, limit : Annotated[Optional[conint(strict=True, le=5000, ge=1)], Field(description="When paginating, limit the number of returned results to this many.")] = None, filter : Annotated[Optional[constr(strict=True, max_length=16384, min_length=0)], Field(description="Expression to filter the result set. Read more about filtering results from LUSID here: https://support.lusid.com/filtering-results-from-lusid.")] = None, async_req: Optional[bool]=None, **kwargs) -> Union[PagedResourceListOfWorkspaceItem, Awaitable[PagedResourceListOfWorkspaceItem]]: # noqa: E501
|
2383
|
-
"""[
|
2383
|
+
"""[EXPERIMENTAL] ListSharedItems: List the items in a shared workspace. # noqa: E501
|
2384
2384
|
|
2385
2385
|
List the items in a shared workspace. # noqa: E501
|
2386
2386
|
This method makes a synchronous HTTP request by default. To make an
|
@@ -2422,7 +2422,7 @@ class WorkspaceApi:
|
|
2422
2422
|
|
2423
2423
|
@validate_arguments
|
2424
2424
|
def list_shared_items_with_http_info(self, workspace_name : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The item's workspace name.")], as_at : Annotated[Optional[datetime], Field(description="The asAt datetime at which to retrieve workspace items. Defaults to 'latest' if not specified.")] = None, page : Annotated[Optional[constr(strict=True, max_length=500, min_length=1)], Field(description="The pagination token to use to continue listing workspaces items from a previous call to list workspaces items. This value is returned from the previous call. If a pagination token is provided the sortBy, filter, effectiveAt, and asAt fields must not have changed since the original request.")] = None, sort_by : Annotated[Optional[conlist(StrictStr)], Field(description="A list of field names to sort by, each suffixed by \" ASC\" or \" DESC\".")] = None, limit : Annotated[Optional[conint(strict=True, le=5000, ge=1)], Field(description="When paginating, limit the number of returned results to this many.")] = None, filter : Annotated[Optional[constr(strict=True, max_length=16384, min_length=0)], Field(description="Expression to filter the result set. Read more about filtering results from LUSID here: https://support.lusid.com/filtering-results-from-lusid.")] = None, **kwargs) -> ApiResponse: # noqa: E501
|
2425
|
-
"""[
|
2425
|
+
"""[EXPERIMENTAL] ListSharedItems: List the items in a shared workspace. # noqa: E501
|
2426
2426
|
|
2427
2427
|
List the items in a shared workspace. # noqa: E501
|
2428
2428
|
This method makes a synchronous HTTP request by default. To make an
|
@@ -2575,7 +2575,7 @@ class WorkspaceApi:
|
|
2575
2575
|
|
2576
2576
|
@validate_arguments
|
2577
2577
|
def list_shared_workspaces(self, as_at : Annotated[Optional[datetime], Field(description="The asAt datetime at which to retrieve workspaces. Defaults to 'latest' if not specified.")] = None, page : Annotated[Optional[constr(strict=True, max_length=500, min_length=1)], Field(description="The pagination token to use to continue listing workspaces from a previous call to list workspaces. This value is returned from the previous call. If a pagination token is provided the sortBy, filter, effectiveAt, and asAt fields must not have changed since the original request.")] = None, sort_by : Annotated[Optional[conlist(StrictStr)], Field(description="A list of field names to sort by, each suffixed by \" ASC\" or \" DESC\".")] = None, limit : Annotated[Optional[conint(strict=True, le=5000, ge=1)], Field(description="When paginating, limit the number of returned results to this many.")] = None, filter : Annotated[Optional[constr(strict=True, max_length=16384, min_length=0)], Field(description="Expression to filter the result set. Read more about filtering results from LUSID here: https://support.lusid.com/filtering-results-from-lusid.")] = None, async_req: Optional[bool]=None, **kwargs) -> Union[PagedResourceListOfWorkspace, Awaitable[PagedResourceListOfWorkspace]]: # noqa: E501
|
2578
|
-
"""[
|
2578
|
+
"""[EXPERIMENTAL] ListSharedWorkspaces: List shared workspaces. # noqa: E501
|
2579
2579
|
|
2580
2580
|
List shared workspaces. # noqa: E501
|
2581
2581
|
This method makes a synchronous HTTP request by default. To make an
|
@@ -2615,7 +2615,7 @@ class WorkspaceApi:
|
|
2615
2615
|
|
2616
2616
|
@validate_arguments
|
2617
2617
|
def list_shared_workspaces_with_http_info(self, as_at : Annotated[Optional[datetime], Field(description="The asAt datetime at which to retrieve workspaces. Defaults to 'latest' if not specified.")] = None, page : Annotated[Optional[constr(strict=True, max_length=500, min_length=1)], Field(description="The pagination token to use to continue listing workspaces from a previous call to list workspaces. This value is returned from the previous call. If a pagination token is provided the sortBy, filter, effectiveAt, and asAt fields must not have changed since the original request.")] = None, sort_by : Annotated[Optional[conlist(StrictStr)], Field(description="A list of field names to sort by, each suffixed by \" ASC\" or \" DESC\".")] = None, limit : Annotated[Optional[conint(strict=True, le=5000, ge=1)], Field(description="When paginating, limit the number of returned results to this many.")] = None, filter : Annotated[Optional[constr(strict=True, max_length=16384, min_length=0)], Field(description="Expression to filter the result set. Read more about filtering results from LUSID here: https://support.lusid.com/filtering-results-from-lusid.")] = None, **kwargs) -> ApiResponse: # noqa: E501
|
2618
|
-
"""[
|
2618
|
+
"""[EXPERIMENTAL] ListSharedWorkspaces: List shared workspaces. # noqa: E501
|
2619
2619
|
|
2620
2620
|
List shared workspaces. # noqa: E501
|
2621
2621
|
This method makes a synchronous HTTP request by default. To make an
|
@@ -2762,7 +2762,7 @@ class WorkspaceApi:
|
|
2762
2762
|
|
2763
2763
|
@validate_arguments
|
2764
2764
|
def update_personal_item(self, workspace_name : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The personal workspace name.")], item_name : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The item name.")], workspace_item_update_request : Annotated[Optional[WorkspaceItemUpdateRequest], Field(description="The new item details.")] = None, async_req: Optional[bool]=None, **kwargs) -> Union[WorkspaceItem, Awaitable[WorkspaceItem]]: # noqa: E501
|
2765
|
-
"""[
|
2765
|
+
"""[EXPERIMENTAL] UpdatePersonalItem: Update an item in a personal workspace. # noqa: E501
|
2766
2766
|
|
2767
2767
|
Update an item in a personal workspace. # noqa: E501
|
2768
2768
|
This method makes a synchronous HTTP request by default. To make an
|
@@ -2798,7 +2798,7 @@ class WorkspaceApi:
|
|
2798
2798
|
|
2799
2799
|
@validate_arguments
|
2800
2800
|
def update_personal_item_with_http_info(self, workspace_name : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The personal workspace name.")], item_name : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The item name.")], workspace_item_update_request : Annotated[Optional[WorkspaceItemUpdateRequest], Field(description="The new item details.")] = None, **kwargs) -> ApiResponse: # noqa: E501
|
2801
|
-
"""[
|
2801
|
+
"""[EXPERIMENTAL] UpdatePersonalItem: Update an item in a personal workspace. # noqa: E501
|
2802
2802
|
|
2803
2803
|
Update an item in a personal workspace. # noqa: E501
|
2804
2804
|
This method makes a synchronous HTTP request by default. To make an
|
@@ -2936,7 +2936,7 @@ class WorkspaceApi:
|
|
2936
2936
|
|
2937
2937
|
@validate_arguments
|
2938
2938
|
def update_personal_workspace(self, workspace_name : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The personal workspace name.")], workspace_update_request : Annotated[Optional[WorkspaceUpdateRequest], Field(description="The new workspace details.")] = None, async_req: Optional[bool]=None, **kwargs) -> Union[Workspace, Awaitable[Workspace]]: # noqa: E501
|
2939
|
-
"""[
|
2939
|
+
"""[EXPERIMENTAL] UpdatePersonalWorkspace: Update a personal workspace. # noqa: E501
|
2940
2940
|
|
2941
2941
|
Update a personal workspace. # noqa: E501
|
2942
2942
|
This method makes a synchronous HTTP request by default. To make an
|
@@ -2970,7 +2970,7 @@ class WorkspaceApi:
|
|
2970
2970
|
|
2971
2971
|
@validate_arguments
|
2972
2972
|
def update_personal_workspace_with_http_info(self, workspace_name : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The personal workspace name.")], workspace_update_request : Annotated[Optional[WorkspaceUpdateRequest], Field(description="The new workspace details.")] = None, **kwargs) -> ApiResponse: # noqa: E501
|
2973
|
-
"""[
|
2973
|
+
"""[EXPERIMENTAL] UpdatePersonalWorkspace: Update a personal workspace. # noqa: E501
|
2974
2974
|
|
2975
2975
|
Update a personal workspace. # noqa: E501
|
2976
2976
|
This method makes a synchronous HTTP request by default. To make an
|
@@ -3102,7 +3102,7 @@ class WorkspaceApi:
|
|
3102
3102
|
|
3103
3103
|
@validate_arguments
|
3104
3104
|
def update_shared_item(self, workspace_name : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The shared workspace name.")], item_name : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The item name.")], workspace_item_update_request : Annotated[Optional[WorkspaceItemUpdateRequest], Field(description="The new item details.")] = None, async_req: Optional[bool]=None, **kwargs) -> Union[WorkspaceItem, Awaitable[WorkspaceItem]]: # noqa: E501
|
3105
|
-
"""[
|
3105
|
+
"""[EXPERIMENTAL] UpdateSharedItem: Update an item in a shared workspace. # noqa: E501
|
3106
3106
|
|
3107
3107
|
Update an item in a shared workspace. # noqa: E501
|
3108
3108
|
This method makes a synchronous HTTP request by default. To make an
|
@@ -3138,7 +3138,7 @@ class WorkspaceApi:
|
|
3138
3138
|
|
3139
3139
|
@validate_arguments
|
3140
3140
|
def update_shared_item_with_http_info(self, workspace_name : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The shared workspace name.")], item_name : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The item name.")], workspace_item_update_request : Annotated[Optional[WorkspaceItemUpdateRequest], Field(description="The new item details.")] = None, **kwargs) -> ApiResponse: # noqa: E501
|
3141
|
-
"""[
|
3141
|
+
"""[EXPERIMENTAL] UpdateSharedItem: Update an item in a shared workspace. # noqa: E501
|
3142
3142
|
|
3143
3143
|
Update an item in a shared workspace. # noqa: E501
|
3144
3144
|
This method makes a synchronous HTTP request by default. To make an
|
@@ -3276,7 +3276,7 @@ class WorkspaceApi:
|
|
3276
3276
|
|
3277
3277
|
@validate_arguments
|
3278
3278
|
def update_shared_workspace(self, workspace_name : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The shared workspace name.")], workspace_update_request : Annotated[Optional[WorkspaceUpdateRequest], Field(description="The new workspace details.")] = None, async_req: Optional[bool]=None, **kwargs) -> Union[Workspace, Awaitable[Workspace]]: # noqa: E501
|
3279
|
-
"""[
|
3279
|
+
"""[EXPERIMENTAL] UpdateSharedWorkspace: Update a shared workspace. # noqa: E501
|
3280
3280
|
|
3281
3281
|
Update a shared workspace. # noqa: E501
|
3282
3282
|
This method makes a synchronous HTTP request by default. To make an
|
@@ -3310,7 +3310,7 @@ class WorkspaceApi:
|
|
3310
3310
|
|
3311
3311
|
@validate_arguments
|
3312
3312
|
def update_shared_workspace_with_http_info(self, workspace_name : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The shared workspace name.")], workspace_update_request : Annotated[Optional[WorkspaceUpdateRequest], Field(description="The new workspace details.")] = None, **kwargs) -> ApiResponse: # noqa: E501
|
3313
|
-
"""[
|
3313
|
+
"""[EXPERIMENTAL] UpdateSharedWorkspace: Update a shared workspace. # noqa: E501
|
3314
3314
|
|
3315
3315
|
Update a shared workspace. # noqa: E501
|
3316
3316
|
This method makes a synchronous HTTP request by default. To make an
|
lusid/configuration.py
CHANGED
@@ -382,7 +382,7 @@ class Configuration:
|
|
382
382
|
return "Python SDK Debug Report:\n"\
|
383
383
|
"OS: {env}\n"\
|
384
384
|
"Python Version: {pyversion}\n"\
|
385
|
-
"Version of the API: 0.11.
|
385
|
+
"Version of the API: 0.11.6835\n"\
|
386
386
|
"SDK Package Version: {package_version}".\
|
387
387
|
format(env=sys.platform, pyversion=sys.version, package_version=package_version)
|
388
388
|
|