lusid-sdk 2.1.423__py3-none-any.whl → 2.1.450__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.
Files changed (190) hide show
  1. lusid/__init__.py +28 -2
  2. lusid/api/__init__.py +2 -2
  3. lusid/api/abor_api.py +118 -117
  4. lusid/api/abor_configuration_api.py +46 -45
  5. lusid/api/address_key_definition_api.py +28 -27
  6. lusid/api/aggregation_api.py +37 -36
  7. lusid/api/allocations_api.py +37 -36
  8. lusid/api/amortisation_rule_sets_api.py +55 -54
  9. lusid/api/application_metadata_api.py +28 -27
  10. lusid/api/blocks_api.py +37 -36
  11. lusid/api/calendars_api.py +469 -111
  12. lusid/api/chart_of_accounts_api.py +289 -288
  13. lusid/api/complex_market_data_api.py +37 -36
  14. lusid/api/compliance_api.py +136 -135
  15. lusid/api/configuration_recipe_api.py +100 -99
  16. lusid/api/conventions_api.py +109 -108
  17. lusid/api/corporate_action_sources_api.py +82 -81
  18. lusid/api/counterparties_api.py +73 -72
  19. lusid/api/custom_entities_api.py +100 -99
  20. lusid/api/custom_entity_definitions_api.py +37 -36
  21. lusid/api/custom_entity_types_api.py +37 -36
  22. lusid/api/cut_label_definitions_api.py +46 -45
  23. lusid/api/data_types_api.py +248 -72
  24. lusid/api/derived_transaction_portfolios_api.py +19 -18
  25. lusid/api/entities_api.py +260 -55
  26. lusid/api/executions_api.py +37 -36
  27. lusid/api/fee_types_api.py +55 -54
  28. lusid/api/{fund_configuration_entities_api.py → fund_configuration_api.py} +222 -46
  29. lusid/api/funds_api.py +163 -162
  30. lusid/api/group_reconciliations_api.py +91 -90
  31. lusid/api/instrument_event_types_api.py +64 -63
  32. lusid/api/instrument_events_api.py +46 -45
  33. lusid/api/instruments_api.py +181 -180
  34. lusid/api/legacy_compliance_api.py +73 -72
  35. lusid/api/legal_entities_api.py +163 -162
  36. lusid/api/order_graph_api.py +28 -27
  37. lusid/api/order_instructions_api.py +37 -36
  38. lusid/api/order_management_api.py +91 -90
  39. lusid/api/orders_api.py +37 -36
  40. lusid/api/packages_api.py +37 -36
  41. lusid/api/participations_api.py +37 -36
  42. lusid/api/persons_api.py +163 -162
  43. lusid/api/placements_api.py +37 -36
  44. lusid/api/portfolio_groups_api.py +235 -234
  45. lusid/api/portfolios_api.py +280 -279
  46. lusid/api/property_definitions_api.py +100 -99
  47. lusid/api/queryable_keys_api.py +10 -9
  48. lusid/api/quotes_api.py +82 -81
  49. lusid/api/reconciliations_api.py +136 -135
  50. lusid/api/reference_lists_api.py +37 -36
  51. lusid/api/reference_portfolio_api.py +46 -45
  52. lusid/api/relation_definitions_api.py +28 -27
  53. lusid/api/relations_api.py +19 -18
  54. lusid/api/relationship_definitions_api.py +46 -45
  55. lusid/api/relationships_api.py +19 -18
  56. lusid/api/schemas_api.py +37 -36
  57. lusid/api/scopes_api.py +19 -18
  58. lusid/api/scripted_translation_api.py +73 -72
  59. lusid/api/search_api.py +37 -36
  60. lusid/api/sequences_api.py +37 -36
  61. lusid/api/staged_modifications_api.py +37 -36
  62. lusid/api/staging_rule_set_api.py +46 -45
  63. lusid/api/structured_result_data_api.py +82 -81
  64. lusid/api/system_configuration_api.py +64 -63
  65. lusid/api/tax_rule_sets_api.py +46 -45
  66. lusid/api/transaction_configuration_api.py +100 -99
  67. lusid/api/transaction_fees_api.py +46 -45
  68. lusid/api/transaction_portfolios_api.py +325 -324
  69. lusid/api/translation_api.py +19 -18
  70. lusid/api/workspace_api.py +181 -180
  71. lusid/api_client.py +26 -17
  72. lusid/configuration.py +87 -2
  73. lusid/extensions/api_client.py +25 -17
  74. lusid/extensions/api_client_factory.py +14 -5
  75. lusid/extensions/api_configuration.py +50 -1
  76. lusid/extensions/configuration_loaders.py +39 -11
  77. lusid/extensions/configuration_options.py +67 -0
  78. lusid/extensions/rest.py +78 -26
  79. lusid/extensions/retry.py +109 -37
  80. lusid/models/__init__.py +26 -0
  81. lusid/models/accounting_method.py +7 -0
  82. lusid/models/accumulation_event.py +3 -3
  83. lusid/models/amortisation_event.py +3 -3
  84. lusid/models/basket.py +3 -3
  85. lusid/models/batch_upsert_dates_for_calendar_response.py +146 -0
  86. lusid/models/bond.py +3 -3
  87. lusid/models/bond_coupon_event.py +3 -3
  88. lusid/models/bond_default_event.py +3 -3
  89. lusid/models/bond_principal_event.py +3 -3
  90. lusid/models/bonus_issue_event.py +166 -0
  91. lusid/models/cap_floor.py +3 -3
  92. lusid/models/capital_distribution_event.py +3 -3
  93. lusid/models/cash.py +3 -3
  94. lusid/models/cash_dividend_event.py +3 -3
  95. lusid/models/cash_flow_event.py +3 -3
  96. lusid/models/cash_perpetual.py +3 -3
  97. lusid/models/cds_credit_event.py +6 -6
  98. lusid/models/cds_index.py +3 -3
  99. lusid/models/cdx_credit_event.py +6 -6
  100. lusid/models/change_interval.py +123 -0
  101. lusid/models/change_interval_with_order_management_detail.py +3 -3
  102. lusid/models/close_event.py +3 -3
  103. lusid/models/complex_bond.py +3 -3
  104. lusid/models/contract_for_difference.py +3 -3
  105. lusid/models/create_derived_transaction_portfolio_request.py +3 -3
  106. lusid/models/create_transaction_portfolio_request.py +3 -3
  107. lusid/models/credit_default_swap.py +3 -3
  108. lusid/models/credit_premium_cash_flow_event.py +3 -3
  109. lusid/models/custom_entity_response.py +7 -1
  110. lusid/models/dividend_option_event.py +3 -3
  111. lusid/models/dividend_reinvestment_event.py +3 -3
  112. lusid/models/effective_range.py +71 -0
  113. lusid/models/equity.py +3 -3
  114. lusid/models/equity_option.py +3 -3
  115. lusid/models/equity_swap.py +3 -3
  116. lusid/models/exchange_traded_option.py +3 -3
  117. lusid/models/exercise_event.py +3 -3
  118. lusid/models/exotic_instrument.py +3 -3
  119. lusid/models/expiry_event.py +3 -3
  120. lusid/models/fee.py +8 -8
  121. lusid/models/fee_request.py +8 -8
  122. lusid/models/fee_type.py +4 -4
  123. lusid/models/fee_type_request.py +3 -3
  124. lusid/models/fixed_leg.py +3 -3
  125. lusid/models/flexible_loan.py +3 -3
  126. lusid/models/floating_leg.py +3 -3
  127. lusid/models/forward_rate_agreement.py +3 -3
  128. lusid/models/fund_share_class.py +23 -8
  129. lusid/models/funding_leg.py +3 -3
  130. lusid/models/future.py +3 -3
  131. lusid/models/future_expiry_event.py +3 -3
  132. lusid/models/fx_forward.py +3 -3
  133. lusid/models/fx_forward_settlement_event.py +3 -3
  134. lusid/models/fx_option.py +3 -3
  135. lusid/models/fx_swap.py +3 -3
  136. lusid/models/inflation_leg.py +3 -3
  137. lusid/models/inflation_linked_bond.py +3 -3
  138. lusid/models/inflation_swap.py +3 -3
  139. lusid/models/informational_error_event.py +3 -3
  140. lusid/models/informational_event.py +3 -3
  141. lusid/models/instrument_event.py +10 -5
  142. lusid/models/instrument_event_holder.py +9 -1
  143. lusid/models/instrument_event_type.py +5 -0
  144. lusid/models/instrument_leg.py +3 -3
  145. lusid/models/instrument_type.py +1 -0
  146. lusid/models/interest_rate_swap.py +3 -3
  147. lusid/models/interest_rate_swaption.py +3 -3
  148. lusid/models/lapse_election.py +73 -0
  149. lusid/models/lusid_instrument.py +6 -5
  150. lusid/models/mastered_instrument.py +139 -0
  151. lusid/models/maturity_event.py +3 -3
  152. lusid/models/mbs_coupon_event.py +97 -0
  153. lusid/models/mbs_interest_deferral_event.py +97 -0
  154. lusid/models/mbs_principal_event.py +97 -0
  155. lusid/models/mbs_principal_write_off_event.py +97 -0
  156. lusid/models/merger_event.py +3 -3
  157. lusid/models/open_event.py +3 -3
  158. lusid/models/portfolio.py +3 -3
  159. lusid/models/portfolio_details.py +3 -3
  160. lusid/models/portfolio_without_href.py +3 -3
  161. lusid/models/raw_vendor_event.py +3 -3
  162. lusid/models/reference_instrument.py +3 -3
  163. lusid/models/repo.py +3 -3
  164. lusid/models/reset_event.py +3 -3
  165. lusid/models/resource_list_of_change_interval.py +113 -0
  166. lusid/models/reverse_stock_split_event.py +3 -3
  167. lusid/models/scrip_dividend_event.py +3 -3
  168. lusid/models/share_class_details.py +18 -1
  169. lusid/models/simple_cash_flow_loan.py +3 -3
  170. lusid/models/simple_instrument.py +3 -3
  171. lusid/models/simple_rounding_convention.py +76 -0
  172. lusid/models/spin_off_event.py +3 -3
  173. lusid/models/staged_modification_effective_range.py +2 -2
  174. lusid/models/stock_dividend_event.py +3 -3
  175. lusid/models/stock_split_event.py +3 -3
  176. lusid/models/swap_cash_flow_event.py +3 -3
  177. lusid/models/swap_principal_event.py +3 -3
  178. lusid/models/term_deposit.py +3 -3
  179. lusid/models/total_return_swap.py +3 -3
  180. lusid/models/transition_event.py +3 -3
  181. lusid/models/trigger_event.py +3 -3
  182. lusid/models/update_fee_type_request.py +4 -4
  183. lusid/models/update_reference_data_request.py +87 -0
  184. lusid/models/upsert_custom_entities_response.py +20 -1
  185. lusid/models/valuation_point_data_query_parameters.py +3 -3
  186. lusid/models/valuation_point_data_response.py +8 -13
  187. lusid/rest.py +70 -20
  188. {lusid_sdk-2.1.423.dist-info → lusid_sdk-2.1.450.dist-info}/METADATA +25 -7
  189. {lusid_sdk-2.1.423.dist-info → lusid_sdk-2.1.450.dist-info}/RECORD +190 -176
  190. {lusid_sdk-2.1.423.dist-info → lusid_sdk-2.1.450.dist-info}/WHEEL +0 -0
@@ -37,6 +37,7 @@ from lusid.exceptions import ( # noqa: F401
37
37
  ApiTypeError,
38
38
  ApiValueError
39
39
  )
40
+ from lusid.extensions.configuration_options import ConfigurationOptions
40
41
 
41
42
 
42
43
  class ReferenceListsApi:
@@ -76,10 +77,9 @@ class ReferenceListsApi:
76
77
  :type code: str
77
78
  :param async_req: Whether to execute the request asynchronously.
78
79
  :type async_req: bool, optional
79
- :param _request_timeout: timeout setting for this request.
80
- If one number provided, it will be total request
81
- timeout. It can also be a pair (tuple) of
82
- (connection, read) timeouts.
80
+ :param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
81
+ :param opts: Configuration options for this request
82
+ :type opts: ConfigurationOptions, optional
83
83
  :return: Returns the result object.
84
84
  If the method is called asynchronously,
85
85
  returns the request thread.
@@ -118,10 +118,9 @@ class ReferenceListsApi:
118
118
  :param _return_http_data_only: response data instead of ApiResponse
119
119
  object with status code, headers, etc
120
120
  :type _return_http_data_only: bool, optional
121
- :param _request_timeout: timeout setting for this request. If one
122
- number provided, it will be total request
123
- timeout. It can also be a pair (tuple) of
124
- (connection, read) timeouts.
121
+ :param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
122
+ :param opts: Configuration options for this request
123
+ :type opts: ConfigurationOptions, optional
125
124
  :param _request_auth: set to override the auth_settings for an a single
126
125
  request; this effectively ignores the authentication
127
126
  in the spec for a single request.
@@ -147,7 +146,8 @@ class ReferenceListsApi:
147
146
  '_request_timeout',
148
147
  '_request_auth',
149
148
  '_content_type',
150
- '_headers'
149
+ '_headers',
150
+ 'opts'
151
151
  ]
152
152
  )
153
153
 
@@ -207,6 +207,7 @@ class ReferenceListsApi:
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'))
212
213
 
@@ -237,10 +238,9 @@ class ReferenceListsApi:
237
238
  :type as_at: datetime
238
239
  :param async_req: Whether to execute the request asynchronously.
239
240
  :type async_req: bool, optional
240
- :param _request_timeout: timeout setting for this request.
241
- If one number provided, it will be total request
242
- timeout. It can also be a pair (tuple) of
243
- (connection, read) timeouts.
241
+ :param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
242
+ :param opts: Configuration options for this request
243
+ :type opts: ConfigurationOptions, optional
244
244
  :return: Returns the result object.
245
245
  If the method is called asynchronously,
246
246
  returns the request thread.
@@ -281,10 +281,9 @@ class ReferenceListsApi:
281
281
  :param _return_http_data_only: response data instead of ApiResponse
282
282
  object with status code, headers, etc
283
283
  :type _return_http_data_only: bool, optional
284
- :param _request_timeout: timeout setting for this request. If one
285
- number provided, it will be total request
286
- timeout. It can also be a pair (tuple) of
287
- (connection, read) timeouts.
284
+ :param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
285
+ :param opts: Configuration options for this request
286
+ :type opts: ConfigurationOptions, optional
288
287
  :param _request_auth: set to override the auth_settings for an a single
289
288
  request; this effectively ignores the authentication
290
289
  in the spec for a single request.
@@ -311,7 +310,8 @@ class ReferenceListsApi:
311
310
  '_request_timeout',
312
311
  '_request_auth',
313
312
  '_content_type',
314
- '_headers'
313
+ '_headers',
314
+ 'opts'
315
315
  ]
316
316
  )
317
317
 
@@ -377,6 +377,7 @@ class ReferenceListsApi:
377
377
  _return_http_data_only=_params.get('_return_http_data_only'), # noqa: E501
378
378
  _preload_content=_params.get('_preload_content', True),
379
379
  _request_timeout=_params.get('_request_timeout'),
380
+ opts=_params.get('opts'),
380
381
  collection_formats=_collection_formats,
381
382
  _request_auth=_params.get('_request_auth'))
382
383
 
@@ -409,10 +410,9 @@ class ReferenceListsApi:
409
410
  :type filter: str
410
411
  :param async_req: Whether to execute the request asynchronously.
411
412
  :type async_req: bool, optional
412
- :param _request_timeout: timeout setting for this request.
413
- If one number provided, it will be total request
414
- timeout. It can also be a pair (tuple) of
415
- (connection, read) timeouts.
413
+ :param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
414
+ :param opts: Configuration options for this request
415
+ :type opts: ConfigurationOptions, optional
416
416
  :return: Returns the result object.
417
417
  If the method is called asynchronously,
418
418
  returns the request thread.
@@ -455,10 +455,9 @@ class ReferenceListsApi:
455
455
  :param _return_http_data_only: response data instead of ApiResponse
456
456
  object with status code, headers, etc
457
457
  :type _return_http_data_only: bool, optional
458
- :param _request_timeout: timeout setting for this request. If one
459
- number provided, it will be total request
460
- timeout. It can also be a pair (tuple) of
461
- (connection, read) timeouts.
458
+ :param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
459
+ :param opts: Configuration options for this request
460
+ :type opts: ConfigurationOptions, optional
462
461
  :param _request_auth: set to override the auth_settings for an a single
463
462
  request; this effectively ignores the authentication
464
463
  in the spec for a single request.
@@ -486,7 +485,8 @@ class ReferenceListsApi:
486
485
  '_request_timeout',
487
486
  '_request_auth',
488
487
  '_content_type',
489
- '_headers'
488
+ '_headers',
489
+ 'opts'
490
490
  ]
491
491
  )
492
492
 
@@ -555,6 +555,7 @@ class ReferenceListsApi:
555
555
  _return_http_data_only=_params.get('_return_http_data_only'), # noqa: E501
556
556
  _preload_content=_params.get('_preload_content', True),
557
557
  _request_timeout=_params.get('_request_timeout'),
558
+ opts=_params.get('opts'),
558
559
  collection_formats=_collection_formats,
559
560
  _request_auth=_params.get('_request_auth'))
560
561
 
@@ -581,10 +582,9 @@ class ReferenceListsApi:
581
582
  :type reference_list_request: ReferenceListRequest
582
583
  :param async_req: Whether to execute the request asynchronously.
583
584
  :type async_req: bool, optional
584
- :param _request_timeout: timeout setting for this request.
585
- If one number provided, it will be total request
586
- timeout. It can also be a pair (tuple) of
587
- (connection, read) timeouts.
585
+ :param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
586
+ :param opts: Configuration options for this request
587
+ :type opts: ConfigurationOptions, optional
588
588
  :return: Returns the result object.
589
589
  If the method is called asynchronously,
590
590
  returns the request thread.
@@ -621,10 +621,9 @@ class ReferenceListsApi:
621
621
  :param _return_http_data_only: response data instead of ApiResponse
622
622
  object with status code, headers, etc
623
623
  :type _return_http_data_only: bool, optional
624
- :param _request_timeout: timeout setting for this request. If one
625
- number provided, it will be total request
626
- timeout. It can also be a pair (tuple) of
627
- (connection, read) timeouts.
624
+ :param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
625
+ :param opts: Configuration options for this request
626
+ :type opts: ConfigurationOptions, optional
628
627
  :param _request_auth: set to override the auth_settings for an a single
629
628
  request; this effectively ignores the authentication
630
629
  in the spec for a single request.
@@ -649,7 +648,8 @@ class ReferenceListsApi:
649
648
  '_request_timeout',
650
649
  '_request_auth',
651
650
  '_content_type',
652
- '_headers'
651
+ '_headers',
652
+ 'opts'
653
653
  ]
654
654
  )
655
655
 
@@ -713,5 +713,6 @@ class ReferenceListsApi:
713
713
  _return_http_data_only=_params.get('_return_http_data_only'), # noqa: E501
714
714
  _preload_content=_params.get('_preload_content', True),
715
715
  _request_timeout=_params.get('_request_timeout'),
716
+ opts=_params.get('opts'),
716
717
  collection_formats=_collection_formats,
717
718
  _request_auth=_params.get('_request_auth'))
@@ -41,6 +41,7 @@ from lusid.exceptions import ( # noqa: F401
41
41
  ApiTypeError,
42
42
  ApiValueError
43
43
  )
44
+ from lusid.extensions.configuration_options import ConfigurationOptions
44
45
 
45
46
 
46
47
  class ReferencePortfolioApi:
@@ -80,10 +81,9 @@ class ReferencePortfolioApi:
80
81
  :type create_reference_portfolio_request: CreateReferencePortfolioRequest
81
82
  :param async_req: Whether to execute the request asynchronously.
82
83
  :type async_req: bool, optional
83
- :param _request_timeout: timeout setting for this request.
84
- If one number provided, it will be total request
85
- timeout. It can also be a pair (tuple) of
86
- (connection, read) timeouts.
84
+ :param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
85
+ :param opts: Configuration options for this request
86
+ :type opts: ConfigurationOptions, optional
87
87
  :return: Returns the result object.
88
88
  If the method is called asynchronously,
89
89
  returns the request thread.
@@ -122,10 +122,9 @@ class ReferencePortfolioApi:
122
122
  :param _return_http_data_only: response data instead of ApiResponse
123
123
  object with status code, headers, etc
124
124
  :type _return_http_data_only: bool, optional
125
- :param _request_timeout: timeout setting for this request. If one
126
- number provided, it will be total request
127
- timeout. It can also be a pair (tuple) of
128
- (connection, read) timeouts.
125
+ :param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
126
+ :param opts: Configuration options for this request
127
+ :type opts: ConfigurationOptions, optional
129
128
  :param _request_auth: set to override the auth_settings for an a single
130
129
  request; this effectively ignores the authentication
131
130
  in the spec for a single request.
@@ -151,7 +150,8 @@ class ReferencePortfolioApi:
151
150
  '_request_timeout',
152
151
  '_request_auth',
153
152
  '_content_type',
154
- '_headers'
153
+ '_headers',
154
+ 'opts'
155
155
  ]
156
156
  )
157
157
 
@@ -218,6 +218,7 @@ class ReferencePortfolioApi:
218
218
  _return_http_data_only=_params.get('_return_http_data_only'), # noqa: E501
219
219
  _preload_content=_params.get('_preload_content', True),
220
220
  _request_timeout=_params.get('_request_timeout'),
221
+ opts=_params.get('opts'),
221
222
  collection_formats=_collection_formats,
222
223
  _request_auth=_params.get('_request_auth'))
223
224
 
@@ -252,10 +253,9 @@ class ReferencePortfolioApi:
252
253
  :type property_keys: List[str]
253
254
  :param async_req: Whether to execute the request asynchronously.
254
255
  :type async_req: bool, optional
255
- :param _request_timeout: timeout setting for this request.
256
- If one number provided, it will be total request
257
- timeout. It can also be a pair (tuple) of
258
- (connection, read) timeouts.
256
+ :param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
257
+ :param opts: Configuration options for this request
258
+ :type opts: ConfigurationOptions, optional
259
259
  :return: Returns the result object.
260
260
  If the method is called asynchronously,
261
261
  returns the request thread.
@@ -300,10 +300,9 @@ class ReferencePortfolioApi:
300
300
  :param _return_http_data_only: response data instead of ApiResponse
301
301
  object with status code, headers, etc
302
302
  :type _return_http_data_only: bool, optional
303
- :param _request_timeout: timeout setting for this request. If one
304
- number provided, it will be total request
305
- timeout. It can also be a pair (tuple) of
306
- (connection, read) timeouts.
303
+ :param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
304
+ :param opts: Configuration options for this request
305
+ :type opts: ConfigurationOptions, optional
307
306
  :param _request_auth: set to override the auth_settings for an a single
308
307
  request; this effectively ignores the authentication
309
308
  in the spec for a single request.
@@ -332,7 +331,8 @@ class ReferencePortfolioApi:
332
331
  '_request_timeout',
333
332
  '_request_auth',
334
333
  '_content_type',
335
- '_headers'
334
+ '_headers',
335
+ 'opts'
336
336
  ]
337
337
  )
338
338
 
@@ -405,6 +405,7 @@ class ReferencePortfolioApi:
405
405
  _return_http_data_only=_params.get('_return_http_data_only'), # noqa: E501
406
406
  _preload_content=_params.get('_preload_content', True),
407
407
  _request_timeout=_params.get('_request_timeout'),
408
+ opts=_params.get('opts'),
408
409
  collection_formats=_collection_formats,
409
410
  _request_auth=_params.get('_request_auth'))
410
411
 
@@ -439,10 +440,9 @@ class ReferencePortfolioApi:
439
440
  :type as_at_time: datetime
440
441
  :param async_req: Whether to execute the request asynchronously.
441
442
  :type async_req: bool, optional
442
- :param _request_timeout: timeout setting for this request.
443
- If one number provided, it will be total request
444
- timeout. It can also be a pair (tuple) of
445
- (connection, read) timeouts.
443
+ :param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
444
+ :param opts: Configuration options for this request
445
+ :type opts: ConfigurationOptions, optional
446
446
  :return: Returns the result object.
447
447
  If the method is called asynchronously,
448
448
  returns the request thread.
@@ -487,10 +487,9 @@ class ReferencePortfolioApi:
487
487
  :param _return_http_data_only: response data instead of ApiResponse
488
488
  object with status code, headers, etc
489
489
  :type _return_http_data_only: bool, optional
490
- :param _request_timeout: timeout setting for this request. If one
491
- number provided, it will be total request
492
- timeout. It can also be a pair (tuple) of
493
- (connection, read) timeouts.
490
+ :param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
491
+ :param opts: Configuration options for this request
492
+ :type opts: ConfigurationOptions, optional
494
493
  :param _request_auth: set to override the auth_settings for an a single
495
494
  request; this effectively ignores the authentication
496
495
  in the spec for a single request.
@@ -519,7 +518,8 @@ class ReferencePortfolioApi:
519
518
  '_request_timeout',
520
519
  '_request_auth',
521
520
  '_content_type',
522
- '_headers'
521
+ '_headers',
522
+ 'opts'
523
523
  ]
524
524
  )
525
525
 
@@ -591,6 +591,7 @@ class ReferencePortfolioApi:
591
591
  _return_http_data_only=_params.get('_return_http_data_only'), # noqa: E501
592
592
  _preload_content=_params.get('_preload_content', True),
593
593
  _request_timeout=_params.get('_request_timeout'),
594
+ opts=_params.get('opts'),
594
595
  collection_formats=_collection_formats,
595
596
  _request_auth=_params.get('_request_auth'))
596
597
 
@@ -621,10 +622,9 @@ class ReferencePortfolioApi:
621
622
  :type upsert_reference_portfolio_constituent_properties_request: UpsertReferencePortfolioConstituentPropertiesRequest
622
623
  :param async_req: Whether to execute the request asynchronously.
623
624
  :type async_req: bool, optional
624
- :param _request_timeout: timeout setting for this request.
625
- If one number provided, it will be total request
626
- timeout. It can also be a pair (tuple) of
627
- (connection, read) timeouts.
625
+ :param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
626
+ :param opts: Configuration options for this request
627
+ :type opts: ConfigurationOptions, optional
628
628
  :return: Returns the result object.
629
629
  If the method is called asynchronously,
630
630
  returns the request thread.
@@ -665,10 +665,9 @@ class ReferencePortfolioApi:
665
665
  :param _return_http_data_only: response data instead of ApiResponse
666
666
  object with status code, headers, etc
667
667
  :type _return_http_data_only: bool, optional
668
- :param _request_timeout: timeout setting for this request. If one
669
- number provided, it will be total request
670
- timeout. It can also be a pair (tuple) of
671
- (connection, read) timeouts.
668
+ :param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
669
+ :param opts: Configuration options for this request
670
+ :type opts: ConfigurationOptions, optional
672
671
  :param _request_auth: set to override the auth_settings for an a single
673
672
  request; this effectively ignores the authentication
674
673
  in the spec for a single request.
@@ -695,7 +694,8 @@ class ReferencePortfolioApi:
695
694
  '_request_timeout',
696
695
  '_request_auth',
697
696
  '_content_type',
698
- '_headers'
697
+ '_headers',
698
+ 'opts'
699
699
  ]
700
700
  )
701
701
 
@@ -765,6 +765,7 @@ class ReferencePortfolioApi:
765
765
  _return_http_data_only=_params.get('_return_http_data_only'), # noqa: E501
766
766
  _preload_content=_params.get('_preload_content', True),
767
767
  _request_timeout=_params.get('_request_timeout'),
768
+ opts=_params.get('opts'),
768
769
  collection_formats=_collection_formats,
769
770
  _request_auth=_params.get('_request_auth'))
770
771
 
@@ -795,10 +796,9 @@ class ReferencePortfolioApi:
795
796
  :type upsert_reference_portfolio_constituents_request: UpsertReferencePortfolioConstituentsRequest
796
797
  :param async_req: Whether to execute the request asynchronously.
797
798
  :type async_req: bool, optional
798
- :param _request_timeout: timeout setting for this request.
799
- If one number provided, it will be total request
800
- timeout. It can also be a pair (tuple) of
801
- (connection, read) timeouts.
799
+ :param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
800
+ :param opts: Configuration options for this request
801
+ :type opts: ConfigurationOptions, optional
802
802
  :return: Returns the result object.
803
803
  If the method is called asynchronously,
804
804
  returns the request thread.
@@ -839,10 +839,9 @@ class ReferencePortfolioApi:
839
839
  :param _return_http_data_only: response data instead of ApiResponse
840
840
  object with status code, headers, etc
841
841
  :type _return_http_data_only: bool, optional
842
- :param _request_timeout: timeout setting for this request. If one
843
- number provided, it will be total request
844
- timeout. It can also be a pair (tuple) of
845
- (connection, read) timeouts.
842
+ :param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
843
+ :param opts: Configuration options for this request
844
+ :type opts: ConfigurationOptions, optional
846
845
  :param _request_auth: set to override the auth_settings for an a single
847
846
  request; this effectively ignores the authentication
848
847
  in the spec for a single request.
@@ -869,7 +868,8 @@ class ReferencePortfolioApi:
869
868
  '_request_timeout',
870
869
  '_request_auth',
871
870
  '_content_type',
872
- '_headers'
871
+ '_headers',
872
+ 'opts'
873
873
  ]
874
874
  )
875
875
 
@@ -939,5 +939,6 @@ class ReferencePortfolioApi:
939
939
  _return_http_data_only=_params.get('_return_http_data_only'), # noqa: E501
940
940
  _preload_content=_params.get('_preload_content', True),
941
941
  _request_timeout=_params.get('_request_timeout'),
942
+ opts=_params.get('opts'),
942
943
  collection_formats=_collection_formats,
943
944
  _request_auth=_params.get('_request_auth'))
@@ -36,6 +36,7 @@ from lusid.exceptions import ( # noqa: F401
36
36
  ApiTypeError,
37
37
  ApiValueError
38
38
  )
39
+ from lusid.extensions.configuration_options import ConfigurationOptions
39
40
 
40
41
 
41
42
  class RelationDefinitionsApi:
@@ -73,10 +74,9 @@ class RelationDefinitionsApi:
73
74
  :type create_relation_definition_request: CreateRelationDefinitionRequest
74
75
  :param async_req: Whether to execute the request asynchronously.
75
76
  :type async_req: bool, optional
76
- :param _request_timeout: timeout setting for this request.
77
- If one number provided, it will be total request
78
- timeout. It can also be a pair (tuple) of
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.
@@ -113,10 +113,9 @@ class RelationDefinitionsApi:
113
113
  :param _return_http_data_only: response data instead of ApiResponse
114
114
  object with status code, headers, etc
115
115
  :type _return_http_data_only: bool, optional
116
- :param _request_timeout: timeout setting for this request. If one
117
- number provided, it will be total request
118
- timeout. It can also be a pair (tuple) of
119
- (connection, read) timeouts.
116
+ :param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
117
+ :param opts: Configuration options for this request
118
+ :type opts: ConfigurationOptions, optional
120
119
  :param _request_auth: set to override the auth_settings for an a single
121
120
  request; this effectively ignores the authentication
122
121
  in the spec for a single request.
@@ -141,7 +140,8 @@ class RelationDefinitionsApi:
141
140
  '_request_timeout',
142
141
  '_request_auth',
143
142
  '_content_type',
144
- '_headers'
143
+ '_headers',
144
+ 'opts'
145
145
  ]
146
146
  )
147
147
 
@@ -205,6 +205,7 @@ class RelationDefinitionsApi:
205
205
  _return_http_data_only=_params.get('_return_http_data_only'), # noqa: E501
206
206
  _preload_content=_params.get('_preload_content', True),
207
207
  _request_timeout=_params.get('_request_timeout'),
208
+ opts=_params.get('opts'),
208
209
  collection_formats=_collection_formats,
209
210
  _request_auth=_params.get('_request_auth'))
210
211
 
@@ -233,10 +234,9 @@ class RelationDefinitionsApi:
233
234
  :type code: str
234
235
  :param async_req: Whether to execute the request asynchronously.
235
236
  :type async_req: bool, optional
236
- :param _request_timeout: timeout setting for this request.
237
- If one number provided, it will be total request
238
- timeout. It can also be a pair (tuple) of
239
- (connection, read) timeouts.
237
+ :param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
238
+ :param opts: Configuration options for this request
239
+ :type opts: ConfigurationOptions, optional
240
240
  :return: Returns the result object.
241
241
  If the method is called asynchronously,
242
242
  returns the request thread.
@@ -275,10 +275,9 @@ class RelationDefinitionsApi:
275
275
  :param _return_http_data_only: response data instead of ApiResponse
276
276
  object with status code, headers, etc
277
277
  :type _return_http_data_only: bool, optional
278
- :param _request_timeout: timeout setting for this request. If one
279
- number provided, it will be total request
280
- timeout. It can also be a pair (tuple) of
281
- (connection, read) timeouts.
278
+ :param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
279
+ :param opts: Configuration options for this request
280
+ :type opts: ConfigurationOptions, optional
282
281
  :param _request_auth: set to override the auth_settings for an a single
283
282
  request; this effectively ignores the authentication
284
283
  in the spec for a single request.
@@ -304,7 +303,8 @@ class RelationDefinitionsApi:
304
303
  '_request_timeout',
305
304
  '_request_auth',
306
305
  '_content_type',
307
- '_headers'
306
+ '_headers',
307
+ 'opts'
308
308
  ]
309
309
  )
310
310
 
@@ -364,6 +364,7 @@ class RelationDefinitionsApi:
364
364
  _return_http_data_only=_params.get('_return_http_data_only'), # noqa: E501
365
365
  _preload_content=_params.get('_preload_content', True),
366
366
  _request_timeout=_params.get('_request_timeout'),
367
+ opts=_params.get('opts'),
367
368
  collection_formats=_collection_formats,
368
369
  _request_auth=_params.get('_request_auth'))
369
370
 
@@ -394,10 +395,9 @@ class RelationDefinitionsApi:
394
395
  :type as_at: datetime
395
396
  :param async_req: Whether to execute the request asynchronously.
396
397
  :type async_req: bool, optional
397
- :param _request_timeout: timeout setting for this request.
398
- If one number provided, it will be total request
399
- timeout. It can also be a pair (tuple) of
400
- (connection, read) timeouts.
398
+ :param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
399
+ :param opts: Configuration options for this request
400
+ :type opts: ConfigurationOptions, optional
401
401
  :return: Returns the result object.
402
402
  If the method is called asynchronously,
403
403
  returns the request thread.
@@ -438,10 +438,9 @@ class RelationDefinitionsApi:
438
438
  :param _return_http_data_only: response data instead of ApiResponse
439
439
  object with status code, headers, etc
440
440
  :type _return_http_data_only: bool, optional
441
- :param _request_timeout: timeout setting for this request. If one
442
- number provided, it will be total request
443
- timeout. It can also be a pair (tuple) of
444
- (connection, read) timeouts.
441
+ :param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
442
+ :param opts: Configuration options for this request
443
+ :type opts: ConfigurationOptions, optional
445
444
  :param _request_auth: set to override the auth_settings for an a single
446
445
  request; this effectively ignores the authentication
447
446
  in the spec for a single request.
@@ -468,7 +467,8 @@ class RelationDefinitionsApi:
468
467
  '_request_timeout',
469
468
  '_request_auth',
470
469
  '_content_type',
471
- '_headers'
470
+ '_headers',
471
+ 'opts'
472
472
  ]
473
473
  )
474
474
 
@@ -534,5 +534,6 @@ class RelationDefinitionsApi:
534
534
  _return_http_data_only=_params.get('_return_http_data_only'), # noqa: E501
535
535
  _preload_content=_params.get('_preload_content', True),
536
536
  _request_timeout=_params.get('_request_timeout'),
537
+ opts=_params.get('opts'),
537
538
  collection_formats=_collection_formats,
538
539
  _request_auth=_params.get('_request_auth'))