lusid-sdk 2.1.405__py3-none-any.whl → 2.1.537__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 +142 -8
- lusid/api/__init__.py +2 -2
- lusid/api/abor_api.py +126 -133
- lusid/api/abor_configuration_api.py +46 -45
- lusid/api/address_key_definition_api.py +28 -27
- lusid/api/aggregation_api.py +37 -36
- lusid/api/allocations_api.py +39 -38
- lusid/api/amortisation_rule_sets_api.py +55 -54
- lusid/api/application_metadata_api.py +28 -27
- lusid/api/blocks_api.py +37 -36
- lusid/api/calendars_api.py +469 -111
- lusid/api/chart_of_accounts_api.py +454 -279
- lusid/api/complex_market_data_api.py +37 -36
- lusid/api/compliance_api.py +136 -135
- lusid/api/configuration_recipe_api.py +100 -99
- lusid/api/conventions_api.py +109 -108
- lusid/api/corporate_action_sources_api.py +82 -81
- lusid/api/counterparties_api.py +73 -72
- lusid/api/custom_entities_api.py +102 -101
- lusid/api/custom_entity_definitions_api.py +37 -36
- lusid/api/custom_entity_types_api.py +37 -36
- lusid/api/cut_label_definitions_api.py +46 -45
- lusid/api/data_types_api.py +248 -72
- lusid/api/derived_transaction_portfolios_api.py +19 -18
- lusid/api/entities_api.py +431 -46
- lusid/api/executions_api.py +37 -36
- lusid/api/fee_types_api.py +55 -54
- lusid/api/{fund_configurations_api.py → fund_configuration_api.py} +222 -46
- lusid/api/funds_api.py +337 -162
- lusid/api/group_reconciliations_api.py +2182 -63
- lusid/api/instrument_event_types_api.py +64 -63
- lusid/api/instrument_events_api.py +46 -45
- lusid/api/instruments_api.py +374 -186
- lusid/api/legacy_compliance_api.py +73 -72
- lusid/api/legal_entities_api.py +167 -166
- lusid/api/order_graph_api.py +32 -31
- lusid/api/order_instructions_api.py +37 -36
- lusid/api/order_management_api.py +251 -90
- lusid/api/orders_api.py +37 -36
- lusid/api/packages_api.py +37 -36
- lusid/api/participations_api.py +37 -36
- lusid/api/persons_api.py +163 -162
- lusid/api/placements_api.py +37 -36
- lusid/api/portfolio_groups_api.py +235 -234
- lusid/api/portfolios_api.py +307 -309
- lusid/api/property_definitions_api.py +100 -99
- lusid/api/queryable_keys_api.py +10 -9
- lusid/api/quotes_api.py +82 -81
- lusid/api/reconciliations_api.py +136 -135
- lusid/api/reference_lists_api.py +39 -38
- lusid/api/reference_portfolio_api.py +213 -36
- lusid/api/relation_definitions_api.py +28 -27
- lusid/api/relations_api.py +19 -18
- lusid/api/relationship_definitions_api.py +46 -45
- lusid/api/relationships_api.py +19 -18
- lusid/api/schemas_api.py +37 -36
- lusid/api/scopes_api.py +19 -18
- lusid/api/scripted_translation_api.py +73 -72
- lusid/api/search_api.py +37 -36
- lusid/api/sequences_api.py +37 -36
- lusid/api/staged_modifications_api.py +37 -36
- lusid/api/staging_rule_set_api.py +46 -45
- lusid/api/structured_result_data_api.py +82 -81
- lusid/api/system_configuration_api.py +64 -63
- lusid/api/tax_rule_sets_api.py +46 -45
- lusid/api/transaction_configuration_api.py +100 -99
- lusid/api/transaction_fees_api.py +46 -45
- lusid/api/transaction_portfolios_api.py +771 -328
- lusid/api/translation_api.py +19 -18
- lusid/api/workspace_api.py +181 -180
- lusid/api_client.py +26 -17
- lusid/configuration.py +87 -2
- lusid/extensions/api_client.py +25 -17
- lusid/extensions/api_client_factory.py +14 -5
- lusid/extensions/api_configuration.py +50 -1
- lusid/extensions/configuration_loaders.py +39 -11
- lusid/extensions/configuration_options.py +67 -0
- lusid/extensions/rest.py +78 -26
- lusid/extensions/retry.py +109 -37
- lusid/models/__init__.py +140 -6
- lusid/models/access_metadata_value.py +1 -1
- lusid/models/accounting_method.py +7 -0
- lusid/models/accumulation_event.py +3 -3
- lusid/models/address_key_list.py +3 -3
- lusid/models/amortisation_event.py +3 -3
- lusid/models/amount.py +69 -0
- lusid/models/applicable_instrument_event.py +7 -2
- lusid/models/asset_leg.py +1 -1
- lusid/models/basket.py +3 -3
- lusid/models/batch_update_user_review_for_comparison_result_request.py +81 -0
- lusid/models/batch_update_user_review_for_comparison_result_response.py +146 -0
- lusid/models/batch_upsert_dates_for_calendar_response.py +146 -0
- lusid/models/batch_upsert_portfolio_access_metadata_request.py +27 -17
- lusid/models/batch_upsert_portfolio_access_metadata_response.py +56 -16
- lusid/models/{metadata_key_value.py → batch_upsert_portfolio_access_metadata_response_item.py} +15 -9
- lusid/models/bond.py +3 -3
- lusid/models/bond_coupon_event.py +10 -5
- lusid/models/bond_default_event.py +3 -3
- lusid/models/bond_principal_event.py +10 -5
- lusid/models/bonus_issue_event.py +166 -0
- lusid/models/{component_rule.py → break_code_source.py} +17 -21
- lusid/models/call_on_intermediate_securities_event.py +139 -0
- lusid/models/cancel_order_and_move_remaining_result.py +84 -0
- lusid/models/cancel_orders_and_move_remaining_request.py +83 -0
- lusid/models/cancel_orders_and_move_remaining_response.py +153 -0
- lusid/models/cap_floor.py +3 -3
- lusid/models/capital_distribution_event.py +3 -3
- lusid/models/cash.py +3 -3
- lusid/models/cash_dividend_event.py +3 -3
- lusid/models/cash_flow_event.py +3 -3
- lusid/models/cash_perpetual.py +3 -3
- lusid/models/cds_credit_event.py +6 -6
- lusid/models/cds_index.py +3 -3
- lusid/models/cdx_credit_event.py +6 -6
- lusid/models/change_interval.py +123 -0
- lusid/models/change_interval_with_order_management_detail.py +3 -3
- lusid/models/close_event.py +3 -3
- lusid/models/comparison_attribute_value_pair.py +71 -0
- lusid/models/complex_bond.py +3 -3
- lusid/models/component_transaction.py +10 -3
- lusid/models/contract_for_difference.py +3 -3
- lusid/models/create_derived_transaction_portfolio_request.py +3 -3
- lusid/models/create_group_reconciliation_definition_request.py +113 -0
- lusid/models/create_staging_rule_set_request.py +1 -6
- lusid/models/create_transaction_portfolio_request.py +3 -3
- lusid/models/credit_default_swap.py +3 -3
- lusid/models/credit_premium_cash_flow_event.py +3 -3
- lusid/models/custodian_account_request.py +1 -1
- lusid/models/custom_entity_entity.py +146 -0
- lusid/models/custom_entity_response.py +7 -1
- lusid/models/decimal_list.py +3 -3
- lusid/models/delete_instrument_properties_response.py +7 -1
- lusid/models/delete_instrument_response.py +7 -1
- lusid/models/delete_instruments_response.py +22 -1
- lusid/models/deleted_entity_response.py +7 -1
- lusid/models/diary_entry_request.py +10 -1
- lusid/models/dividend_option_event.py +3 -3
- lusid/models/dividend_reinvestment_event.py +9 -4
- lusid/models/effective_range.py +71 -0
- lusid/models/equity.py +3 -3
- lusid/models/equity_option.py +22 -7
- lusid/models/equity_swap.py +3 -3
- lusid/models/exchange_traded_option.py +3 -3
- lusid/models/exchange_traded_option_contract_details.py +1 -1
- lusid/models/exercise_event.py +3 -3
- lusid/models/exotic_instrument.py +3 -3
- lusid/models/expiry_event.py +3 -3
- lusid/models/fee.py +17 -10
- lusid/models/fee_request.py +20 -13
- lusid/models/fee_type.py +4 -4
- lusid/models/fee_type_request.py +3 -3
- lusid/models/fixed_leg.py +3 -3
- lusid/models/fixed_schedule.py +3 -3
- lusid/models/flexible_loan.py +3 -3
- lusid/models/float_schedule.py +4 -4
- lusid/models/floating_leg.py +3 -3
- lusid/models/flow_conventions.py +7 -1
- lusid/models/forward_rate_agreement.py +3 -3
- lusid/models/fund_configuration.py +44 -17
- lusid/models/fund_configuration_request.py +31 -19
- lusid/models/fund_id_list.py +99 -0
- lusid/models/fund_share_class.py +23 -8
- lusid/models/funding_leg.py +3 -3
- lusid/models/future.py +3 -3
- lusid/models/future_expiry_event.py +3 -3
- lusid/models/fx_forward.py +3 -3
- lusid/models/fx_forward_settlement_event.py +3 -3
- lusid/models/fx_option.py +3 -3
- lusid/models/fx_swap.py +3 -3
- lusid/models/group_reconciliation_aggregate_attribute_rule.py +2 -2
- lusid/models/group_reconciliation_aggregate_attribute_values.py +86 -0
- lusid/models/group_reconciliation_aggregate_comparison_rule_operand.py +1 -1
- lusid/models/group_reconciliation_comparison_result.py +148 -0
- lusid/models/group_reconciliation_core_attribute_values.py +86 -0
- lusid/models/group_reconciliation_core_comparison_rule_operand.py +1 -1
- lusid/models/group_reconciliation_date_pair.py +81 -0
- lusid/models/group_reconciliation_dates.py +78 -0
- lusid/models/group_reconciliation_definition.py +136 -0
- lusid/models/group_reconciliation_definition_comparison_ruleset_ids.py +83 -0
- lusid/models/group_reconciliation_definition_currencies.py +71 -0
- lusid/models/group_reconciliation_definition_portfolio_entity_ids.py +86 -0
- lusid/models/group_reconciliation_definition_recipe_ids.py +78 -0
- lusid/models/group_reconciliation_instance_id.py +71 -0
- lusid/models/group_reconciliation_result_statuses.py +89 -0
- lusid/models/group_reconciliation_result_types.py +96 -0
- lusid/models/group_reconciliation_review_statuses.py +96 -0
- lusid/models/group_reconciliation_run_details.py +76 -0
- lusid/models/group_reconciliation_run_request.py +75 -0
- lusid/models/{metadata_key_value_response.py → group_reconciliation_run_response.py} +20 -29
- lusid/models/group_reconciliation_summary.py +121 -0
- lusid/models/group_reconciliation_user_review.py +112 -0
- lusid/models/group_reconciliation_user_review_add.py +88 -0
- lusid/models/group_reconciliation_user_review_break_code.py +80 -0
- lusid/models/group_reconciliation_user_review_comment.py +80 -0
- lusid/models/group_reconciliation_user_review_match_key.py +80 -0
- lusid/models/group_reconciliation_user_review_remove.py +88 -0
- lusid/models/holding_contributor.py +11 -4
- lusid/models/holding_ids_request.py +69 -0
- lusid/models/inflation_leg.py +3 -3
- lusid/models/inflation_linked_bond.py +3 -3
- lusid/models/inflation_swap.py +3 -3
- lusid/models/informational_error_event.py +3 -3
- lusid/models/informational_event.py +3 -3
- lusid/models/instrument.py +7 -1
- lusid/models/instrument_definition.py +8 -2
- lusid/models/instrument_event.py +17 -5
- lusid/models/instrument_event_holder.py +9 -1
- lusid/models/instrument_event_type.py +12 -0
- lusid/models/instrument_leg.py +3 -3
- lusid/models/instrument_list.py +3 -3
- lusid/models/instrument_type.py +2 -0
- lusid/models/interest_rate_swap.py +3 -3
- lusid/models/interest_rate_swaption.py +3 -3
- lusid/models/intermediate_securities_distribution_event.py +140 -0
- lusid/models/lapse_election.py +73 -0
- lusid/models/loan_facility.py +97 -0
- lusid/models/lusid_instrument.py +7 -5
- lusid/models/market_data_key_rule.py +5 -3
- lusid/models/market_data_specific_rule.py +5 -3
- lusid/models/mastered_instrument.py +139 -0
- lusid/models/maturity_event.py +3 -3
- lusid/models/mbs_coupon_event.py +102 -0
- lusid/models/mbs_interest_deferral_event.py +102 -0
- lusid/models/mbs_interest_shortfall_event.py +102 -0
- lusid/models/mbs_principal_event.py +102 -0
- lusid/models/mbs_principal_write_off_event.py +102 -0
- lusid/models/merger_event.py +22 -22
- lusid/models/new_instrument.py +1 -1
- lusid/models/open_event.py +3 -3
- lusid/models/option_exercise_cash_event.py +144 -0
- lusid/models/option_exercise_election.py +73 -0
- lusid/models/option_exercise_physical_event.py +149 -0
- lusid/models/output_transaction.py +9 -2
- lusid/models/paged_resource_list_of_group_reconciliation_comparison_result.py +113 -0
- lusid/models/paged_resource_list_of_group_reconciliation_comparison_ruleset.py +113 -0
- lusid/models/paged_resource_list_of_group_reconciliation_definition.py +113 -0
- lusid/models/portfolio.py +3 -3
- lusid/models/portfolio_details.py +3 -3
- lusid/models/portfolio_group_id_list.py +3 -3
- lusid/models/portfolio_id_list.py +3 -3
- lusid/models/portfolio_without_href.py +3 -3
- lusid/models/pricing_options.py +8 -2
- lusid/models/property_list.py +3 -3
- lusid/models/protection_payout_cash_flow_event.py +102 -0
- lusid/models/raw_vendor_event.py +3 -3
- lusid/models/reference_instrument.py +3 -3
- lusid/models/reference_list.py +6 -5
- lusid/models/reference_list_type.py +1 -0
- lusid/models/repo.py +3 -3
- lusid/models/reset_event.py +3 -3
- lusid/models/resource_list_of_change_interval.py +113 -0
- lusid/models/resource_list_of_output_transaction.py +113 -0
- lusid/models/return_zero_pv_options.py +69 -0
- lusid/models/reverse_stock_split_event.py +21 -7
- lusid/models/scrip_dividend_event.py +3 -3
- lusid/models/settlement_cycle.py +79 -0
- lusid/models/share_class_dealing_breakdown.py +3 -2
- lusid/models/share_class_details.py +18 -1
- lusid/models/simple_cash_flow_loan.py +3 -3
- lusid/models/simple_instrument.py +3 -3
- lusid/models/simple_rounding_convention.py +76 -0
- lusid/models/spin_off_event.py +3 -3
- lusid/models/staged_modification_effective_range.py +2 -2
- lusid/models/stock_dividend_event.py +20 -6
- lusid/models/stock_split_event.py +3 -3
- lusid/models/string_list.py +3 -3
- lusid/models/swap_cash_flow_event.py +3 -3
- lusid/models/swap_principal_event.py +3 -3
- lusid/models/target_tax_lot.py +23 -2
- lusid/models/target_tax_lot_request.py +23 -2
- lusid/models/tender_event.py +172 -0
- lusid/models/term_deposit.py +3 -3
- lusid/models/total_return_swap.py +4 -4
- lusid/models/transaction.py +9 -2
- lusid/models/transaction_date_windows.py +85 -0
- lusid/models/transaction_price.py +3 -3
- lusid/models/transaction_price_type.py +2 -0
- lusid/models/transaction_request.py +9 -2
- lusid/models/transition_event.py +3 -3
- lusid/models/trigger_event.py +3 -3
- lusid/models/update_fee_type_request.py +4 -4
- lusid/models/update_group_reconciliation_comparison_ruleset_request.py +91 -0
- lusid/models/update_group_reconciliation_definition_request.py +107 -0
- lusid/models/update_reference_data_request.py +87 -0
- lusid/models/update_staging_rule_set_request.py +1 -6
- lusid/models/upsert_custom_entities_response.py +20 -1
- lusid/models/upsert_reference_portfolio_constituent_properties_request.py +84 -0
- lusid/models/upsert_reference_portfolio_constituent_properties_response.py +115 -0
- lusid/models/valuation_point_data_query_parameters.py +3 -3
- lusid/models/valuation_point_data_response.py +8 -13
- lusid/rest.py +70 -20
- {lusid_sdk-2.1.405.dist-info → lusid_sdk-2.1.537.dist-info}/METADATA +118 -26
- {lusid_sdk-2.1.405.dist-info → lusid_sdk-2.1.537.dist-info}/RECORD +294 -226
- {lusid_sdk-2.1.405.dist-info → lusid_sdk-2.1.537.dist-info}/WHEEL +0 -0
@@ -44,6 +44,7 @@ from lusid.exceptions import ( # noqa: F401
|
|
44
44
|
ApiTypeError,
|
45
45
|
ApiValueError
|
46
46
|
)
|
47
|
+
from lusid.extensions.configuration_options import ConfigurationOptions
|
47
48
|
|
48
49
|
|
49
50
|
class PropertyDefinitionsApi:
|
@@ -81,10 +82,9 @@ class PropertyDefinitionsApi:
|
|
81
82
|
:type create_derived_property_definition_request: CreateDerivedPropertyDefinitionRequest
|
82
83
|
:param async_req: Whether to execute the request asynchronously.
|
83
84
|
:type async_req: bool, optional
|
84
|
-
:param _request_timeout:
|
85
|
-
|
86
|
-
|
87
|
-
(connection, read) timeouts.
|
85
|
+
:param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
|
86
|
+
:param opts: Configuration options for this request
|
87
|
+
:type opts: ConfigurationOptions, optional
|
88
88
|
:return: Returns the result object.
|
89
89
|
If the method is called asynchronously,
|
90
90
|
returns the request thread.
|
@@ -121,10 +121,9 @@ class PropertyDefinitionsApi:
|
|
121
121
|
:param _return_http_data_only: response data instead of ApiResponse
|
122
122
|
object with status code, headers, etc
|
123
123
|
:type _return_http_data_only: bool, optional
|
124
|
-
:param _request_timeout:
|
125
|
-
|
126
|
-
|
127
|
-
(connection, read) timeouts.
|
124
|
+
:param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
|
125
|
+
:param opts: Configuration options for this request
|
126
|
+
:type opts: ConfigurationOptions, optional
|
128
127
|
:param _request_auth: set to override the auth_settings for an a single
|
129
128
|
request; this effectively ignores the authentication
|
130
129
|
in the spec for a single request.
|
@@ -149,7 +148,8 @@ class PropertyDefinitionsApi:
|
|
149
148
|
'_request_timeout',
|
150
149
|
'_request_auth',
|
151
150
|
'_content_type',
|
152
|
-
'_headers'
|
151
|
+
'_headers',
|
152
|
+
'opts'
|
153
153
|
]
|
154
154
|
)
|
155
155
|
|
@@ -213,6 +213,7 @@ class PropertyDefinitionsApi:
|
|
213
213
|
_return_http_data_only=_params.get('_return_http_data_only'), # noqa: E501
|
214
214
|
_preload_content=_params.get('_preload_content', True),
|
215
215
|
_request_timeout=_params.get('_request_timeout'),
|
216
|
+
opts=_params.get('opts'),
|
216
217
|
collection_formats=_collection_formats,
|
217
218
|
_request_auth=_params.get('_request_auth'))
|
218
219
|
|
@@ -239,10 +240,9 @@ class PropertyDefinitionsApi:
|
|
239
240
|
:type create_property_definition_request: CreatePropertyDefinitionRequest
|
240
241
|
:param async_req: Whether to execute the request asynchronously.
|
241
242
|
:type async_req: bool, optional
|
242
|
-
:param _request_timeout:
|
243
|
-
|
244
|
-
|
245
|
-
(connection, read) timeouts.
|
243
|
+
:param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
|
244
|
+
:param opts: Configuration options for this request
|
245
|
+
:type opts: ConfigurationOptions, optional
|
246
246
|
:return: Returns the result object.
|
247
247
|
If the method is called asynchronously,
|
248
248
|
returns the request thread.
|
@@ -279,10 +279,9 @@ class PropertyDefinitionsApi:
|
|
279
279
|
:param _return_http_data_only: response data instead of ApiResponse
|
280
280
|
object with status code, headers, etc
|
281
281
|
:type _return_http_data_only: bool, optional
|
282
|
-
:param _request_timeout:
|
283
|
-
|
284
|
-
|
285
|
-
(connection, read) timeouts.
|
282
|
+
:param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
|
283
|
+
:param opts: Configuration options for this request
|
284
|
+
:type opts: ConfigurationOptions, optional
|
286
285
|
:param _request_auth: set to override the auth_settings for an a single
|
287
286
|
request; this effectively ignores the authentication
|
288
287
|
in the spec for a single request.
|
@@ -307,7 +306,8 @@ class PropertyDefinitionsApi:
|
|
307
306
|
'_request_timeout',
|
308
307
|
'_request_auth',
|
309
308
|
'_content_type',
|
310
|
-
'_headers'
|
309
|
+
'_headers',
|
310
|
+
'opts'
|
311
311
|
]
|
312
312
|
)
|
313
313
|
|
@@ -371,6 +371,7 @@ class PropertyDefinitionsApi:
|
|
371
371
|
_return_http_data_only=_params.get('_return_http_data_only'), # noqa: E501
|
372
372
|
_preload_content=_params.get('_preload_content', True),
|
373
373
|
_request_timeout=_params.get('_request_timeout'),
|
374
|
+
opts=_params.get('opts'),
|
374
375
|
collection_formats=_collection_formats,
|
375
376
|
_request_auth=_params.get('_request_auth'))
|
376
377
|
|
@@ -401,10 +402,9 @@ class PropertyDefinitionsApi:
|
|
401
402
|
:type code: str
|
402
403
|
:param async_req: Whether to execute the request asynchronously.
|
403
404
|
:type async_req: bool, optional
|
404
|
-
:param _request_timeout:
|
405
|
-
|
406
|
-
|
407
|
-
(connection, read) timeouts.
|
405
|
+
:param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
|
406
|
+
:param opts: Configuration options for this request
|
407
|
+
:type opts: ConfigurationOptions, optional
|
408
408
|
:return: Returns the result object.
|
409
409
|
If the method is called asynchronously,
|
410
410
|
returns the request thread.
|
@@ -445,10 +445,9 @@ class PropertyDefinitionsApi:
|
|
445
445
|
:param _return_http_data_only: response data instead of ApiResponse
|
446
446
|
object with status code, headers, etc
|
447
447
|
:type _return_http_data_only: bool, optional
|
448
|
-
:param _request_timeout:
|
449
|
-
|
450
|
-
|
451
|
-
(connection, read) timeouts.
|
448
|
+
:param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
|
449
|
+
:param opts: Configuration options for this request
|
450
|
+
:type opts: ConfigurationOptions, optional
|
452
451
|
:param _request_auth: set to override the auth_settings for an a single
|
453
452
|
request; this effectively ignores the authentication
|
454
453
|
in the spec for a single request.
|
@@ -475,7 +474,8 @@ class PropertyDefinitionsApi:
|
|
475
474
|
'_request_timeout',
|
476
475
|
'_request_auth',
|
477
476
|
'_content_type',
|
478
|
-
'_headers'
|
477
|
+
'_headers',
|
478
|
+
'opts'
|
479
479
|
]
|
480
480
|
)
|
481
481
|
|
@@ -538,6 +538,7 @@ class PropertyDefinitionsApi:
|
|
538
538
|
_return_http_data_only=_params.get('_return_http_data_only'), # noqa: E501
|
539
539
|
_preload_content=_params.get('_preload_content', True),
|
540
540
|
_request_timeout=_params.get('_request_timeout'),
|
541
|
+
opts=_params.get('opts'),
|
541
542
|
collection_formats=_collection_formats,
|
542
543
|
_request_auth=_params.get('_request_auth'))
|
543
544
|
|
@@ -572,10 +573,9 @@ class PropertyDefinitionsApi:
|
|
572
573
|
:type effective_at: str
|
573
574
|
:param async_req: Whether to execute the request asynchronously.
|
574
575
|
:type async_req: bool, optional
|
575
|
-
:param _request_timeout:
|
576
|
-
|
577
|
-
|
578
|
-
(connection, read) timeouts.
|
576
|
+
:param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
|
577
|
+
:param opts: Configuration options for this request
|
578
|
+
:type opts: ConfigurationOptions, optional
|
579
579
|
:return: Returns the result object.
|
580
580
|
If the method is called asynchronously,
|
581
581
|
returns the request thread.
|
@@ -620,10 +620,9 @@ class PropertyDefinitionsApi:
|
|
620
620
|
:param _return_http_data_only: response data instead of ApiResponse
|
621
621
|
object with status code, headers, etc
|
622
622
|
:type _return_http_data_only: bool, optional
|
623
|
-
:param _request_timeout:
|
624
|
-
|
625
|
-
|
626
|
-
(connection, read) timeouts.
|
623
|
+
:param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
|
624
|
+
:param opts: Configuration options for this request
|
625
|
+
:type opts: ConfigurationOptions, optional
|
627
626
|
:param _request_auth: set to override the auth_settings for an a single
|
628
627
|
request; this effectively ignores the authentication
|
629
628
|
in the spec for a single request.
|
@@ -652,7 +651,8 @@ class PropertyDefinitionsApi:
|
|
652
651
|
'_request_timeout',
|
653
652
|
'_request_auth',
|
654
653
|
'_content_type',
|
655
|
-
'_headers'
|
654
|
+
'_headers',
|
655
|
+
'opts'
|
656
656
|
]
|
657
657
|
)
|
658
658
|
|
@@ -728,6 +728,7 @@ class PropertyDefinitionsApi:
|
|
728
728
|
_return_http_data_only=_params.get('_return_http_data_only'), # noqa: E501
|
729
729
|
_preload_content=_params.get('_preload_content', True),
|
730
730
|
_request_timeout=_params.get('_request_timeout'),
|
731
|
+
opts=_params.get('opts'),
|
731
732
|
collection_formats=_collection_formats,
|
732
733
|
_request_auth=_params.get('_request_auth'))
|
733
734
|
|
@@ -760,10 +761,9 @@ class PropertyDefinitionsApi:
|
|
760
761
|
:type effective_at: str
|
761
762
|
:param async_req: Whether to execute the request asynchronously.
|
762
763
|
:type async_req: bool, optional
|
763
|
-
:param _request_timeout:
|
764
|
-
|
765
|
-
|
766
|
-
(connection, read) timeouts.
|
764
|
+
:param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
|
765
|
+
:param opts: Configuration options for this request
|
766
|
+
:type opts: ConfigurationOptions, optional
|
767
767
|
:return: Returns the result object.
|
768
768
|
If the method is called asynchronously,
|
769
769
|
returns the request thread.
|
@@ -806,10 +806,9 @@ class PropertyDefinitionsApi:
|
|
806
806
|
:param _return_http_data_only: response data instead of ApiResponse
|
807
807
|
object with status code, headers, etc
|
808
808
|
:type _return_http_data_only: bool, optional
|
809
|
-
:param _request_timeout:
|
810
|
-
|
811
|
-
|
812
|
-
(connection, read) timeouts.
|
809
|
+
:param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
|
810
|
+
:param opts: Configuration options for this request
|
811
|
+
:type opts: ConfigurationOptions, optional
|
813
812
|
:param _request_auth: set to override the auth_settings for an a single
|
814
813
|
request; this effectively ignores the authentication
|
815
814
|
in the spec for a single request.
|
@@ -837,7 +836,8 @@ class PropertyDefinitionsApi:
|
|
837
836
|
'_request_timeout',
|
838
837
|
'_request_auth',
|
839
838
|
'_content_type',
|
840
|
-
'_headers'
|
839
|
+
'_headers',
|
840
|
+
'opts'
|
841
841
|
]
|
842
842
|
)
|
843
843
|
|
@@ -907,6 +907,7 @@ class PropertyDefinitionsApi:
|
|
907
907
|
_return_http_data_only=_params.get('_return_http_data_only'), # noqa: E501
|
908
908
|
_preload_content=_params.get('_preload_content', True),
|
909
909
|
_request_timeout=_params.get('_request_timeout'),
|
910
|
+
opts=_params.get('opts'),
|
910
911
|
collection_formats=_collection_formats,
|
911
912
|
_request_auth=_params.get('_request_auth'))
|
912
913
|
|
@@ -941,10 +942,9 @@ class PropertyDefinitionsApi:
|
|
941
942
|
:type effective_at: str
|
942
943
|
:param async_req: Whether to execute the request asynchronously.
|
943
944
|
:type async_req: bool, optional
|
944
|
-
:param _request_timeout:
|
945
|
-
|
946
|
-
|
947
|
-
(connection, read) timeouts.
|
945
|
+
:param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
|
946
|
+
:param opts: Configuration options for this request
|
947
|
+
:type opts: ConfigurationOptions, optional
|
948
948
|
:return: Returns the result object.
|
949
949
|
If the method is called asynchronously,
|
950
950
|
returns the request thread.
|
@@ -989,10 +989,9 @@ class PropertyDefinitionsApi:
|
|
989
989
|
:param _return_http_data_only: response data instead of ApiResponse
|
990
990
|
object with status code, headers, etc
|
991
991
|
:type _return_http_data_only: bool, optional
|
992
|
-
:param _request_timeout:
|
993
|
-
|
994
|
-
|
995
|
-
(connection, read) timeouts.
|
992
|
+
:param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
|
993
|
+
:param opts: Configuration options for this request
|
994
|
+
:type opts: ConfigurationOptions, optional
|
996
995
|
:param _request_auth: set to override the auth_settings for an a single
|
997
996
|
request; this effectively ignores the authentication
|
998
997
|
in the spec for a single request.
|
@@ -1021,7 +1020,8 @@ class PropertyDefinitionsApi:
|
|
1021
1020
|
'_request_timeout',
|
1022
1021
|
'_request_auth',
|
1023
1022
|
'_content_type',
|
1024
|
-
'_headers'
|
1023
|
+
'_headers',
|
1024
|
+
'opts'
|
1025
1025
|
]
|
1026
1026
|
)
|
1027
1027
|
|
@@ -1093,6 +1093,7 @@ class PropertyDefinitionsApi:
|
|
1093
1093
|
_return_http_data_only=_params.get('_return_http_data_only'), # noqa: E501
|
1094
1094
|
_preload_content=_params.get('_preload_content', True),
|
1095
1095
|
_request_timeout=_params.get('_request_timeout'),
|
1096
|
+
opts=_params.get('opts'),
|
1096
1097
|
collection_formats=_collection_formats,
|
1097
1098
|
_request_auth=_params.get('_request_auth'))
|
1098
1099
|
|
@@ -1133,10 +1134,9 @@ class PropertyDefinitionsApi:
|
|
1133
1134
|
:type limit: int
|
1134
1135
|
:param async_req: Whether to execute the request asynchronously.
|
1135
1136
|
:type async_req: bool, optional
|
1136
|
-
:param _request_timeout:
|
1137
|
-
|
1138
|
-
|
1139
|
-
(connection, read) timeouts.
|
1137
|
+
:param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
|
1138
|
+
:param opts: Configuration options for this request
|
1139
|
+
:type opts: ConfigurationOptions, optional
|
1140
1140
|
:return: Returns the result object.
|
1141
1141
|
If the method is called asynchronously,
|
1142
1142
|
returns the request thread.
|
@@ -1187,10 +1187,9 @@ class PropertyDefinitionsApi:
|
|
1187
1187
|
:param _return_http_data_only: response data instead of ApiResponse
|
1188
1188
|
object with status code, headers, etc
|
1189
1189
|
:type _return_http_data_only: bool, optional
|
1190
|
-
:param _request_timeout:
|
1191
|
-
|
1192
|
-
|
1193
|
-
(connection, read) timeouts.
|
1190
|
+
:param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
|
1191
|
+
:param opts: Configuration options for this request
|
1192
|
+
:type opts: ConfigurationOptions, optional
|
1194
1193
|
:param _request_auth: set to override the auth_settings for an a single
|
1195
1194
|
request; this effectively ignores the authentication
|
1196
1195
|
in the spec for a single request.
|
@@ -1222,7 +1221,8 @@ class PropertyDefinitionsApi:
|
|
1222
1221
|
'_request_timeout',
|
1223
1222
|
'_request_auth',
|
1224
1223
|
'_content_type',
|
1225
|
-
'_headers'
|
1224
|
+
'_headers',
|
1225
|
+
'opts'
|
1226
1226
|
]
|
1227
1227
|
)
|
1228
1228
|
|
@@ -1303,6 +1303,7 @@ class PropertyDefinitionsApi:
|
|
1303
1303
|
_return_http_data_only=_params.get('_return_http_data_only'), # noqa: E501
|
1304
1304
|
_preload_content=_params.get('_preload_content', True),
|
1305
1305
|
_request_timeout=_params.get('_request_timeout'),
|
1306
|
+
opts=_params.get('opts'),
|
1306
1307
|
collection_formats=_collection_formats,
|
1307
1308
|
_request_auth=_params.get('_request_auth'))
|
1308
1309
|
|
@@ -1341,10 +1342,9 @@ class PropertyDefinitionsApi:
|
|
1341
1342
|
:type sort_by: List[str]
|
1342
1343
|
:param async_req: Whether to execute the request asynchronously.
|
1343
1344
|
:type async_req: bool, optional
|
1344
|
-
:param _request_timeout:
|
1345
|
-
|
1346
|
-
|
1347
|
-
(connection, read) timeouts.
|
1345
|
+
:param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
|
1346
|
+
:param opts: Configuration options for this request
|
1347
|
+
:type opts: ConfigurationOptions, optional
|
1348
1348
|
:return: Returns the result object.
|
1349
1349
|
If the method is called asynchronously,
|
1350
1350
|
returns the request thread.
|
@@ -1393,10 +1393,9 @@ class PropertyDefinitionsApi:
|
|
1393
1393
|
:param _return_http_data_only: response data instead of ApiResponse
|
1394
1394
|
object with status code, headers, etc
|
1395
1395
|
:type _return_http_data_only: bool, optional
|
1396
|
-
:param _request_timeout:
|
1397
|
-
|
1398
|
-
|
1399
|
-
(connection, read) timeouts.
|
1396
|
+
:param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
|
1397
|
+
:param opts: Configuration options for this request
|
1398
|
+
:type opts: ConfigurationOptions, optional
|
1400
1399
|
:param _request_auth: set to override the auth_settings for an a single
|
1401
1400
|
request; this effectively ignores the authentication
|
1402
1401
|
in the spec for a single request.
|
@@ -1427,7 +1426,8 @@ class PropertyDefinitionsApi:
|
|
1427
1426
|
'_request_timeout',
|
1428
1427
|
'_request_auth',
|
1429
1428
|
'_content_type',
|
1430
|
-
'_headers'
|
1429
|
+
'_headers',
|
1430
|
+
'opts'
|
1431
1431
|
]
|
1432
1432
|
)
|
1433
1433
|
|
@@ -1507,6 +1507,7 @@ class PropertyDefinitionsApi:
|
|
1507
1507
|
_return_http_data_only=_params.get('_return_http_data_only'), # noqa: E501
|
1508
1508
|
_preload_content=_params.get('_preload_content', True),
|
1509
1509
|
_request_timeout=_params.get('_request_timeout'),
|
1510
|
+
opts=_params.get('opts'),
|
1510
1511
|
collection_formats=_collection_formats,
|
1511
1512
|
_request_auth=_params.get('_request_auth'))
|
1512
1513
|
|
@@ -1539,10 +1540,9 @@ class PropertyDefinitionsApi:
|
|
1539
1540
|
:type update_derived_property_definition_request: UpdateDerivedPropertyDefinitionRequest
|
1540
1541
|
:param async_req: Whether to execute the request asynchronously.
|
1541
1542
|
:type async_req: bool, optional
|
1542
|
-
:param _request_timeout:
|
1543
|
-
|
1544
|
-
|
1545
|
-
(connection, read) timeouts.
|
1543
|
+
:param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
|
1544
|
+
:param opts: Configuration options for this request
|
1545
|
+
:type opts: ConfigurationOptions, optional
|
1546
1546
|
:return: Returns the result object.
|
1547
1547
|
If the method is called asynchronously,
|
1548
1548
|
returns the request thread.
|
@@ -1585,10 +1585,9 @@ class PropertyDefinitionsApi:
|
|
1585
1585
|
:param _return_http_data_only: response data instead of ApiResponse
|
1586
1586
|
object with status code, headers, etc
|
1587
1587
|
:type _return_http_data_only: bool, optional
|
1588
|
-
:param _request_timeout:
|
1589
|
-
|
1590
|
-
|
1591
|
-
(connection, read) timeouts.
|
1588
|
+
:param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
|
1589
|
+
:param opts: Configuration options for this request
|
1590
|
+
:type opts: ConfigurationOptions, optional
|
1592
1591
|
:param _request_auth: set to override the auth_settings for an a single
|
1593
1592
|
request; this effectively ignores the authentication
|
1594
1593
|
in the spec for a single request.
|
@@ -1616,7 +1615,8 @@ class PropertyDefinitionsApi:
|
|
1616
1615
|
'_request_timeout',
|
1617
1616
|
'_request_auth',
|
1618
1617
|
'_content_type',
|
1619
|
-
'_headers'
|
1618
|
+
'_headers',
|
1619
|
+
'opts'
|
1620
1620
|
]
|
1621
1621
|
)
|
1622
1622
|
|
@@ -1689,6 +1689,7 @@ class PropertyDefinitionsApi:
|
|
1689
1689
|
_return_http_data_only=_params.get('_return_http_data_only'), # noqa: E501
|
1690
1690
|
_preload_content=_params.get('_preload_content', True),
|
1691
1691
|
_request_timeout=_params.get('_request_timeout'),
|
1692
|
+
opts=_params.get('opts'),
|
1692
1693
|
collection_formats=_collection_formats,
|
1693
1694
|
_request_auth=_params.get('_request_auth'))
|
1694
1695
|
|
@@ -1721,10 +1722,9 @@ class PropertyDefinitionsApi:
|
|
1721
1722
|
:type update_property_definition_request: UpdatePropertyDefinitionRequest
|
1722
1723
|
:param async_req: Whether to execute the request asynchronously.
|
1723
1724
|
:type async_req: bool, optional
|
1724
|
-
:param _request_timeout:
|
1725
|
-
|
1726
|
-
|
1727
|
-
(connection, read) timeouts.
|
1725
|
+
:param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
|
1726
|
+
:param opts: Configuration options for this request
|
1727
|
+
:type opts: ConfigurationOptions, optional
|
1728
1728
|
:return: Returns the result object.
|
1729
1729
|
If the method is called asynchronously,
|
1730
1730
|
returns the request thread.
|
@@ -1767,10 +1767,9 @@ class PropertyDefinitionsApi:
|
|
1767
1767
|
:param _return_http_data_only: response data instead of ApiResponse
|
1768
1768
|
object with status code, headers, etc
|
1769
1769
|
:type _return_http_data_only: bool, optional
|
1770
|
-
:param _request_timeout:
|
1771
|
-
|
1772
|
-
|
1773
|
-
(connection, read) timeouts.
|
1770
|
+
:param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
|
1771
|
+
:param opts: Configuration options for this request
|
1772
|
+
:type opts: ConfigurationOptions, optional
|
1774
1773
|
:param _request_auth: set to override the auth_settings for an a single
|
1775
1774
|
request; this effectively ignores the authentication
|
1776
1775
|
in the spec for a single request.
|
@@ -1798,7 +1797,8 @@ class PropertyDefinitionsApi:
|
|
1798
1797
|
'_request_timeout',
|
1799
1798
|
'_request_auth',
|
1800
1799
|
'_content_type',
|
1801
|
-
'_headers'
|
1800
|
+
'_headers',
|
1801
|
+
'opts'
|
1802
1802
|
]
|
1803
1803
|
)
|
1804
1804
|
|
@@ -1871,6 +1871,7 @@ class PropertyDefinitionsApi:
|
|
1871
1871
|
_return_http_data_only=_params.get('_return_http_data_only'), # noqa: E501
|
1872
1872
|
_preload_content=_params.get('_preload_content', True),
|
1873
1873
|
_request_timeout=_params.get('_request_timeout'),
|
1874
|
+
opts=_params.get('opts'),
|
1874
1875
|
collection_formats=_collection_formats,
|
1875
1876
|
_request_auth=_params.get('_request_auth'))
|
1876
1877
|
|
@@ -1905,10 +1906,9 @@ class PropertyDefinitionsApi:
|
|
1905
1906
|
:type success_mode: str
|
1906
1907
|
:param async_req: Whether to execute the request asynchronously.
|
1907
1908
|
:type async_req: bool, optional
|
1908
|
-
:param _request_timeout:
|
1909
|
-
|
1910
|
-
|
1911
|
-
(connection, read) timeouts.
|
1909
|
+
:param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
|
1910
|
+
:param opts: Configuration options for this request
|
1911
|
+
:type opts: ConfigurationOptions, optional
|
1912
1912
|
:return: Returns the result object.
|
1913
1913
|
If the method is called asynchronously,
|
1914
1914
|
returns the request thread.
|
@@ -1953,10 +1953,9 @@ class PropertyDefinitionsApi:
|
|
1953
1953
|
:param _return_http_data_only: response data instead of ApiResponse
|
1954
1954
|
object with status code, headers, etc
|
1955
1955
|
:type _return_http_data_only: bool, optional
|
1956
|
-
:param _request_timeout:
|
1957
|
-
|
1958
|
-
|
1959
|
-
(connection, read) timeouts.
|
1956
|
+
:param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
|
1957
|
+
:param opts: Configuration options for this request
|
1958
|
+
:type opts: ConfigurationOptions, optional
|
1960
1959
|
:param _request_auth: set to override the auth_settings for an a single
|
1961
1960
|
request; this effectively ignores the authentication
|
1962
1961
|
in the spec for a single request.
|
@@ -1985,7 +1984,8 @@ class PropertyDefinitionsApi:
|
|
1985
1984
|
'_request_timeout',
|
1986
1985
|
'_request_auth',
|
1987
1986
|
'_content_type',
|
1988
|
-
'_headers'
|
1987
|
+
'_headers',
|
1988
|
+
'opts'
|
1989
1989
|
]
|
1990
1990
|
)
|
1991
1991
|
|
@@ -2061,5 +2061,6 @@ class PropertyDefinitionsApi:
|
|
2061
2061
|
_return_http_data_only=_params.get('_return_http_data_only'), # noqa: E501
|
2062
2062
|
_preload_content=_params.get('_preload_content', True),
|
2063
2063
|
_request_timeout=_params.get('_request_timeout'),
|
2064
|
+
opts=_params.get('opts'),
|
2064
2065
|
collection_formats=_collection_formats,
|
2065
2066
|
_request_auth=_params.get('_request_auth'))
|
lusid/api/queryable_keys_api.py
CHANGED
@@ -34,6 +34,7 @@ from lusid.exceptions import ( # noqa: F401
|
|
34
34
|
ApiTypeError,
|
35
35
|
ApiValueError
|
36
36
|
)
|
37
|
+
from lusid.extensions.configuration_options import ConfigurationOptions
|
37
38
|
|
38
39
|
|
39
40
|
class QueryableKeysApi:
|
@@ -73,10 +74,9 @@ class QueryableKeysApi:
|
|
73
74
|
:type filter: str
|
74
75
|
:param async_req: Whether to execute the request asynchronously.
|
75
76
|
:type async_req: bool, optional
|
76
|
-
:param _request_timeout:
|
77
|
-
|
78
|
-
|
79
|
-
(connection, read) timeouts.
|
77
|
+
:param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
|
78
|
+
:param opts: Configuration options for this request
|
79
|
+
:type opts: ConfigurationOptions, optional
|
80
80
|
:return: Returns the result object.
|
81
81
|
If the method is called asynchronously,
|
82
82
|
returns the request thread.
|
@@ -115,10 +115,9 @@ class QueryableKeysApi:
|
|
115
115
|
:param _return_http_data_only: response data instead of ApiResponse
|
116
116
|
object with status code, headers, etc
|
117
117
|
:type _return_http_data_only: bool, optional
|
118
|
-
:param _request_timeout:
|
119
|
-
|
120
|
-
|
121
|
-
(connection, read) timeouts.
|
118
|
+
:param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
|
119
|
+
:param opts: Configuration options for this request
|
120
|
+
:type opts: ConfigurationOptions, optional
|
122
121
|
:param _request_auth: set to override the auth_settings for an a single
|
123
122
|
request; this effectively ignores the authentication
|
124
123
|
in the spec for a single request.
|
@@ -144,7 +143,8 @@ class QueryableKeysApi:
|
|
144
143
|
'_request_timeout',
|
145
144
|
'_request_auth',
|
146
145
|
'_content_type',
|
147
|
-
'_headers'
|
146
|
+
'_headers',
|
147
|
+
'opts'
|
148
148
|
]
|
149
149
|
)
|
150
150
|
|
@@ -207,5 +207,6 @@ class QueryableKeysApi:
|
|
207
207
|
_return_http_data_only=_params.get('_return_http_data_only'), # noqa: E501
|
208
208
|
_preload_content=_params.get('_preload_content', True),
|
209
209
|
_request_timeout=_params.get('_request_timeout'),
|
210
|
+
opts=_params.get('opts'),
|
210
211
|
collection_formats=_collection_formats,
|
211
212
|
_request_auth=_params.get('_request_auth'))
|