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
lusid/api/abor_api.py CHANGED
@@ -51,6 +51,7 @@ from lusid.exceptions import ( # noqa: F401
51
51
  ApiTypeError,
52
52
  ApiValueError
53
53
  )
54
+ from lusid.extensions.configuration_options import ConfigurationOptions
54
55
 
55
56
 
56
57
  class AborApi:
@@ -92,10 +93,9 @@ class AborApi:
92
93
  :type diary_entry_request: DiaryEntryRequest
93
94
  :param async_req: Whether to execute the request asynchronously.
94
95
  :type async_req: bool, optional
95
- :param _request_timeout: timeout setting for this request.
96
- If one number provided, it will be total request
97
- timeout. It can also be a pair (tuple) of
98
- (connection, read) timeouts.
96
+ :param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
97
+ :param opts: Configuration options for this request
98
+ :type opts: ConfigurationOptions, optional
99
99
  :return: Returns the result object.
100
100
  If the method is called asynchronously,
101
101
  returns the request thread.
@@ -136,10 +136,9 @@ class AborApi:
136
136
  :param _return_http_data_only: response data instead of ApiResponse
137
137
  object with status code, headers, etc
138
138
  :type _return_http_data_only: bool, optional
139
- :param _request_timeout: timeout setting for this request. If one
140
- number provided, it will be total request
141
- timeout. It can also be a pair (tuple) of
142
- (connection, read) timeouts.
139
+ :param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
140
+ :param opts: Configuration options for this request
141
+ :type opts: ConfigurationOptions, optional
143
142
  :param _request_auth: set to override the auth_settings for an a single
144
143
  request; this effectively ignores the authentication
145
144
  in the spec for a single request.
@@ -166,7 +165,8 @@ class AborApi:
166
165
  '_request_timeout',
167
166
  '_request_auth',
168
167
  '_content_type',
169
- '_headers'
168
+ '_headers',
169
+ 'opts'
170
170
  ]
171
171
  )
172
172
 
@@ -236,6 +236,7 @@ class AborApi:
236
236
  _return_http_data_only=_params.get('_return_http_data_only'), # noqa: E501
237
237
  _preload_content=_params.get('_preload_content', True),
238
238
  _request_timeout=_params.get('_request_timeout'),
239
+ opts=_params.get('opts'),
239
240
  collection_formats=_collection_formats,
240
241
  _request_auth=_params.get('_request_auth'))
241
242
 
@@ -266,10 +267,9 @@ class AborApi:
266
267
  :type close_period_diary_entry_request: ClosePeriodDiaryEntryRequest
267
268
  :param async_req: Whether to execute the request asynchronously.
268
269
  :type async_req: bool, optional
269
- :param _request_timeout: timeout setting for this request.
270
- If one number provided, it will be total request
271
- timeout. It can also be a pair (tuple) of
272
- (connection, read) timeouts.
270
+ :param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
271
+ :param opts: Configuration options for this request
272
+ :type opts: ConfigurationOptions, optional
273
273
  :return: Returns the result object.
274
274
  If the method is called asynchronously,
275
275
  returns the request thread.
@@ -310,10 +310,9 @@ class AborApi:
310
310
  :param _return_http_data_only: response data instead of ApiResponse
311
311
  object with status code, headers, etc
312
312
  :type _return_http_data_only: bool, optional
313
- :param _request_timeout: timeout setting for this request. If one
314
- number provided, it will be total request
315
- timeout. It can also be a pair (tuple) of
316
- (connection, read) timeouts.
313
+ :param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
314
+ :param opts: Configuration options for this request
315
+ :type opts: ConfigurationOptions, optional
317
316
  :param _request_auth: set to override the auth_settings for an a single
318
317
  request; this effectively ignores the authentication
319
318
  in the spec for a single request.
@@ -340,7 +339,8 @@ class AborApi:
340
339
  '_request_timeout',
341
340
  '_request_auth',
342
341
  '_content_type',
343
- '_headers'
342
+ '_headers',
343
+ 'opts'
344
344
  ]
345
345
  )
346
346
 
@@ -410,6 +410,7 @@ class AborApi:
410
410
  _return_http_data_only=_params.get('_return_http_data_only'), # noqa: E501
411
411
  _preload_content=_params.get('_preload_content', True),
412
412
  _request_timeout=_params.get('_request_timeout'),
413
+ opts=_params.get('opts'),
413
414
  collection_formats=_collection_formats,
414
415
  _request_auth=_params.get('_request_auth'))
415
416
 
@@ -438,10 +439,9 @@ class AborApi:
438
439
  :type abor_request: AborRequest
439
440
  :param async_req: Whether to execute the request asynchronously.
440
441
  :type async_req: bool, optional
441
- :param _request_timeout: timeout setting for this request.
442
- If one number provided, it will be total request
443
- timeout. It can also be a pair (tuple) of
444
- (connection, read) timeouts.
442
+ :param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
443
+ :param opts: Configuration options for this request
444
+ :type opts: ConfigurationOptions, optional
445
445
  :return: Returns the result object.
446
446
  If the method is called asynchronously,
447
447
  returns the request thread.
@@ -480,10 +480,9 @@ class AborApi:
480
480
  :param _return_http_data_only: response data instead of ApiResponse
481
481
  object with status code, headers, etc
482
482
  :type _return_http_data_only: bool, optional
483
- :param _request_timeout: timeout setting for this request. If one
484
- number provided, it will be total request
485
- timeout. It can also be a pair (tuple) of
486
- (connection, read) timeouts.
483
+ :param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
484
+ :param opts: Configuration options for this request
485
+ :type opts: ConfigurationOptions, optional
487
486
  :param _request_auth: set to override the auth_settings for an a single
488
487
  request; this effectively ignores the authentication
489
488
  in the spec for a single request.
@@ -509,7 +508,8 @@ class AborApi:
509
508
  '_request_timeout',
510
509
  '_request_auth',
511
510
  '_content_type',
512
- '_headers'
511
+ '_headers',
512
+ 'opts'
513
513
  ]
514
514
  )
515
515
 
@@ -576,6 +576,7 @@ class AborApi:
576
576
  _return_http_data_only=_params.get('_return_http_data_only'), # noqa: E501
577
577
  _preload_content=_params.get('_preload_content', True),
578
578
  _request_timeout=_params.get('_request_timeout'),
579
+ opts=_params.get('opts'),
579
580
  collection_formats=_collection_formats,
580
581
  _request_auth=_params.get('_request_auth'))
581
582
 
@@ -604,10 +605,9 @@ class AborApi:
604
605
  :type code: str
605
606
  :param async_req: Whether to execute the request asynchronously.
606
607
  :type async_req: bool, optional
607
- :param _request_timeout: timeout setting for this request.
608
- If one number provided, it will be total request
609
- timeout. It can also be a pair (tuple) of
610
- (connection, read) timeouts.
608
+ :param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
609
+ :param opts: Configuration options for this request
610
+ :type opts: ConfigurationOptions, optional
611
611
  :return: Returns the result object.
612
612
  If the method is called asynchronously,
613
613
  returns the request thread.
@@ -646,10 +646,9 @@ class AborApi:
646
646
  :param _return_http_data_only: response data instead of ApiResponse
647
647
  object with status code, headers, etc
648
648
  :type _return_http_data_only: bool, optional
649
- :param _request_timeout: timeout setting for this request. If one
650
- number provided, it will be total request
651
- timeout. It can also be a pair (tuple) of
652
- (connection, read) timeouts.
649
+ :param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
650
+ :param opts: Configuration options for this request
651
+ :type opts: ConfigurationOptions, optional
653
652
  :param _request_auth: set to override the auth_settings for an a single
654
653
  request; this effectively ignores the authentication
655
654
  in the spec for a single request.
@@ -675,7 +674,8 @@ class AborApi:
675
674
  '_request_timeout',
676
675
  '_request_auth',
677
676
  '_content_type',
678
- '_headers'
677
+ '_headers',
678
+ 'opts'
679
679
  ]
680
680
  )
681
681
 
@@ -735,6 +735,7 @@ class AborApi:
735
735
  _return_http_data_only=_params.get('_return_http_data_only'), # noqa: E501
736
736
  _preload_content=_params.get('_preload_content', True),
737
737
  _request_timeout=_params.get('_request_timeout'),
738
+ opts=_params.get('opts'),
738
739
  collection_formats=_collection_formats,
739
740
  _request_auth=_params.get('_request_auth'))
740
741
 
@@ -769,10 +770,9 @@ class AborApi:
769
770
  :type property_keys: List[str]
770
771
  :param async_req: Whether to execute the request asynchronously.
771
772
  :type async_req: bool, optional
772
- :param _request_timeout: timeout setting for this request.
773
- If one number provided, it will be total request
774
- timeout. It can also be a pair (tuple) of
775
- (connection, read) timeouts.
773
+ :param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
774
+ :param opts: Configuration options for this request
775
+ :type opts: ConfigurationOptions, optional
776
776
  :return: Returns the result object.
777
777
  If the method is called asynchronously,
778
778
  returns the request thread.
@@ -817,10 +817,9 @@ class AborApi:
817
817
  :param _return_http_data_only: response data instead of ApiResponse
818
818
  object with status code, headers, etc
819
819
  :type _return_http_data_only: bool, optional
820
- :param _request_timeout: timeout setting for this request. If one
821
- number provided, it will be total request
822
- timeout. It can also be a pair (tuple) of
823
- (connection, read) timeouts.
820
+ :param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
821
+ :param opts: Configuration options for this request
822
+ :type opts: ConfigurationOptions, optional
824
823
  :param _request_auth: set to override the auth_settings for an a single
825
824
  request; this effectively ignores the authentication
826
825
  in the spec for a single request.
@@ -849,7 +848,8 @@ class AborApi:
849
848
  '_request_timeout',
850
849
  '_request_auth',
851
850
  '_content_type',
852
- '_headers'
851
+ '_headers',
852
+ 'opts'
853
853
  ]
854
854
  )
855
855
 
@@ -922,6 +922,7 @@ class AborApi:
922
922
  _return_http_data_only=_params.get('_return_http_data_only'), # noqa: E501
923
923
  _preload_content=_params.get('_preload_content', True),
924
924
  _request_timeout=_params.get('_request_timeout'),
925
+ opts=_params.get('opts'),
925
926
  collection_formats=_collection_formats,
926
927
  _request_auth=_params.get('_request_auth'))
927
928
 
@@ -960,10 +961,9 @@ class AborApi:
960
961
  :type page: str
961
962
  :param async_req: Whether to execute the request asynchronously.
962
963
  :type async_req: bool, optional
963
- :param _request_timeout: timeout setting for this request.
964
- If one number provided, it will be total request
965
- timeout. It can also be a pair (tuple) of
966
- (connection, read) timeouts.
964
+ :param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
965
+ :param opts: Configuration options for this request
966
+ :type opts: ConfigurationOptions, optional
967
967
  :return: Returns the result object.
968
968
  If the method is called asynchronously,
969
969
  returns the request thread.
@@ -1012,10 +1012,9 @@ class AborApi:
1012
1012
  :param _return_http_data_only: response data instead of ApiResponse
1013
1013
  object with status code, headers, etc
1014
1014
  :type _return_http_data_only: bool, optional
1015
- :param _request_timeout: timeout setting for this request. If one
1016
- number provided, it will be total request
1017
- timeout. It can also be a pair (tuple) of
1018
- (connection, read) timeouts.
1015
+ :param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
1016
+ :param opts: Configuration options for this request
1017
+ :type opts: ConfigurationOptions, optional
1019
1018
  :param _request_auth: set to override the auth_settings for an a single
1020
1019
  request; this effectively ignores the authentication
1021
1020
  in the spec for a single request.
@@ -1046,7 +1045,8 @@ class AborApi:
1046
1045
  '_request_timeout',
1047
1046
  '_request_auth',
1048
1047
  '_content_type',
1049
- '_headers'
1048
+ '_headers',
1049
+ 'opts'
1050
1050
  ]
1051
1051
  )
1052
1052
 
@@ -1131,6 +1131,7 @@ class AborApi:
1131
1131
  _return_http_data_only=_params.get('_return_http_data_only'), # noqa: E501
1132
1132
  _preload_content=_params.get('_preload_content', True),
1133
1133
  _request_timeout=_params.get('_request_timeout'),
1134
+ opts=_params.get('opts'),
1134
1135
  collection_formats=_collection_formats,
1135
1136
  _request_auth=_params.get('_request_auth'))
1136
1137
 
@@ -1169,10 +1170,9 @@ class AborApi:
1169
1170
  :type page: str
1170
1171
  :param async_req: Whether to execute the request asynchronously.
1171
1172
  :type async_req: bool, optional
1172
- :param _request_timeout: timeout setting for this request.
1173
- If one number provided, it will be total request
1174
- timeout. It can also be a pair (tuple) of
1175
- (connection, read) timeouts.
1173
+ :param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
1174
+ :param opts: Configuration options for this request
1175
+ :type opts: ConfigurationOptions, optional
1176
1176
  :return: Returns the result object.
1177
1177
  If the method is called asynchronously,
1178
1178
  returns the request thread.
@@ -1221,10 +1221,9 @@ class AborApi:
1221
1221
  :param _return_http_data_only: response data instead of ApiResponse
1222
1222
  object with status code, headers, etc
1223
1223
  :type _return_http_data_only: bool, optional
1224
- :param _request_timeout: timeout setting for this request. If one
1225
- number provided, it will be total request
1226
- timeout. It can also be a pair (tuple) of
1227
- (connection, read) timeouts.
1224
+ :param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
1225
+ :param opts: Configuration options for this request
1226
+ :type opts: ConfigurationOptions, optional
1228
1227
  :param _request_auth: set to override the auth_settings for an a single
1229
1228
  request; this effectively ignores the authentication
1230
1229
  in the spec for a single request.
@@ -1255,7 +1254,8 @@ class AborApi:
1255
1254
  '_request_timeout',
1256
1255
  '_request_auth',
1257
1256
  '_content_type',
1258
- '_headers'
1257
+ '_headers',
1258
+ 'opts'
1259
1259
  ]
1260
1260
  )
1261
1261
 
@@ -1340,6 +1340,7 @@ class AborApi:
1340
1340
  _return_http_data_only=_params.get('_return_http_data_only'), # noqa: E501
1341
1341
  _preload_content=_params.get('_preload_content', True),
1342
1342
  _request_timeout=_params.get('_request_timeout'),
1343
+ opts=_params.get('opts'),
1343
1344
  collection_formats=_collection_formats,
1344
1345
  _request_auth=_params.get('_request_auth'))
1345
1346
 
@@ -1378,10 +1379,9 @@ class AborApi:
1378
1379
  :type property_keys: List[str]
1379
1380
  :param async_req: Whether to execute the request asynchronously.
1380
1381
  :type async_req: bool, optional
1381
- :param _request_timeout: timeout setting for this request.
1382
- If one number provided, it will be total request
1383
- timeout. It can also be a pair (tuple) of
1384
- (connection, read) timeouts.
1382
+ :param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
1383
+ :param opts: Configuration options for this request
1384
+ :type opts: ConfigurationOptions, optional
1385
1385
  :return: Returns the result object.
1386
1386
  If the method is called asynchronously,
1387
1387
  returns the request thread.
@@ -1430,10 +1430,9 @@ class AborApi:
1430
1430
  :param _return_http_data_only: response data instead of ApiResponse
1431
1431
  object with status code, headers, etc
1432
1432
  :type _return_http_data_only: bool, optional
1433
- :param _request_timeout: timeout setting for this request. If one
1434
- number provided, it will be total request
1435
- timeout. It can also be a pair (tuple) of
1436
- (connection, read) timeouts.
1433
+ :param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
1434
+ :param opts: Configuration options for this request
1435
+ :type opts: ConfigurationOptions, optional
1437
1436
  :param _request_auth: set to override the auth_settings for an a single
1438
1437
  request; this effectively ignores the authentication
1439
1438
  in the spec for a single request.
@@ -1464,7 +1463,8 @@ class AborApi:
1464
1463
  '_request_timeout',
1465
1464
  '_request_auth',
1466
1465
  '_content_type',
1467
- '_headers'
1466
+ '_headers',
1467
+ 'opts'
1468
1468
  ]
1469
1469
  )
1470
1470
 
@@ -1544,6 +1544,7 @@ class AborApi:
1544
1544
  _return_http_data_only=_params.get('_return_http_data_only'), # noqa: E501
1545
1545
  _preload_content=_params.get('_preload_content', True),
1546
1546
  _request_timeout=_params.get('_request_timeout'),
1547
+ opts=_params.get('opts'),
1547
1548
  collection_formats=_collection_formats,
1548
1549
  _request_auth=_params.get('_request_auth'))
1549
1550
 
@@ -1586,10 +1587,9 @@ class AborApi:
1586
1587
  :type property_keys: List[str]
1587
1588
  :param async_req: Whether to execute the request asynchronously.
1588
1589
  :type async_req: bool, optional
1589
- :param _request_timeout: timeout setting for this request.
1590
- If one number provided, it will be total request
1591
- timeout. It can also be a pair (tuple) of
1592
- (connection, read) timeouts.
1590
+ :param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
1591
+ :param opts: Configuration options for this request
1592
+ :type opts: ConfigurationOptions, optional
1593
1593
  :return: Returns the result object.
1594
1594
  If the method is called asynchronously,
1595
1595
  returns the request thread.
@@ -1642,10 +1642,9 @@ class AborApi:
1642
1642
  :param _return_http_data_only: response data instead of ApiResponse
1643
1643
  object with status code, headers, etc
1644
1644
  :type _return_http_data_only: bool, optional
1645
- :param _request_timeout: timeout setting for this request. If one
1646
- number provided, it will be total request
1647
- timeout. It can also be a pair (tuple) of
1648
- (connection, read) timeouts.
1645
+ :param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
1646
+ :param opts: Configuration options for this request
1647
+ :type opts: ConfigurationOptions, optional
1649
1648
  :param _request_auth: set to override the auth_settings for an a single
1650
1649
  request; this effectively ignores the authentication
1651
1650
  in the spec for a single request.
@@ -1678,7 +1677,8 @@ class AborApi:
1678
1677
  '_request_timeout',
1679
1678
  '_request_auth',
1680
1679
  '_content_type',
1681
- '_headers'
1680
+ '_headers',
1681
+ 'opts'
1682
1682
  ]
1683
1683
  )
1684
1684
 
@@ -1764,6 +1764,7 @@ class AborApi:
1764
1764
  _return_http_data_only=_params.get('_return_http_data_only'), # noqa: E501
1765
1765
  _preload_content=_params.get('_preload_content', True),
1766
1766
  _request_timeout=_params.get('_request_timeout'),
1767
+ opts=_params.get('opts'),
1767
1768
  collection_formats=_collection_formats,
1768
1769
  _request_auth=_params.get('_request_auth'))
1769
1770
 
@@ -1794,10 +1795,9 @@ class AborApi:
1794
1795
  :type lock_period_diary_entry_request: LockPeriodDiaryEntryRequest
1795
1796
  :param async_req: Whether to execute the request asynchronously.
1796
1797
  :type async_req: bool, optional
1797
- :param _request_timeout: timeout setting for this request.
1798
- If one number provided, it will be total request
1799
- timeout. It can also be a pair (tuple) of
1800
- (connection, read) timeouts.
1798
+ :param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
1799
+ :param opts: Configuration options for this request
1800
+ :type opts: ConfigurationOptions, optional
1801
1801
  :return: Returns the result object.
1802
1802
  If the method is called asynchronously,
1803
1803
  returns the request thread.
@@ -1838,10 +1838,9 @@ class AborApi:
1838
1838
  :param _return_http_data_only: response data instead of ApiResponse
1839
1839
  object with status code, headers, etc
1840
1840
  :type _return_http_data_only: bool, optional
1841
- :param _request_timeout: timeout setting for this request. If one
1842
- number provided, it will be total request
1843
- timeout. It can also be a pair (tuple) of
1844
- (connection, read) timeouts.
1841
+ :param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
1842
+ :param opts: Configuration options for this request
1843
+ :type opts: ConfigurationOptions, optional
1845
1844
  :param _request_auth: set to override the auth_settings for an a single
1846
1845
  request; this effectively ignores the authentication
1847
1846
  in the spec for a single request.
@@ -1868,7 +1867,8 @@ class AborApi:
1868
1867
  '_request_timeout',
1869
1868
  '_request_auth',
1870
1869
  '_content_type',
1871
- '_headers'
1870
+ '_headers',
1871
+ 'opts'
1872
1872
  ]
1873
1873
  )
1874
1874
 
@@ -1938,6 +1938,7 @@ class AborApi:
1938
1938
  _return_http_data_only=_params.get('_return_http_data_only'), # noqa: E501
1939
1939
  _preload_content=_params.get('_preload_content', True),
1940
1940
  _request_timeout=_params.get('_request_timeout'),
1941
+ opts=_params.get('opts'),
1941
1942
  collection_formats=_collection_formats,
1942
1943
  _request_auth=_params.get('_request_auth'))
1943
1944
 
@@ -1968,10 +1969,9 @@ class AborApi:
1968
1969
  :type operation: List[Operation]
1969
1970
  :param async_req: Whether to execute the request asynchronously.
1970
1971
  :type async_req: bool, optional
1971
- :param _request_timeout: timeout setting for this request.
1972
- If one number provided, it will be total request
1973
- timeout. It can also be a pair (tuple) of
1974
- (connection, read) timeouts.
1972
+ :param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
1973
+ :param opts: Configuration options for this request
1974
+ :type opts: ConfigurationOptions, optional
1975
1975
  :return: Returns the result object.
1976
1976
  If the method is called asynchronously,
1977
1977
  returns the request thread.
@@ -2012,10 +2012,9 @@ class AborApi:
2012
2012
  :param _return_http_data_only: response data instead of ApiResponse
2013
2013
  object with status code, headers, etc
2014
2014
  :type _return_http_data_only: bool, optional
2015
- :param _request_timeout: timeout setting for this request. If one
2016
- number provided, it will be total request
2017
- timeout. It can also be a pair (tuple) of
2018
- (connection, read) timeouts.
2015
+ :param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
2016
+ :param opts: Configuration options for this request
2017
+ :type opts: ConfigurationOptions, optional
2019
2018
  :param _request_auth: set to override the auth_settings for an a single
2020
2019
  request; this effectively ignores the authentication
2021
2020
  in the spec for a single request.
@@ -2042,7 +2041,8 @@ class AborApi:
2042
2041
  '_request_timeout',
2043
2042
  '_request_auth',
2044
2043
  '_content_type',
2045
- '_headers'
2044
+ '_headers',
2045
+ 'opts'
2046
2046
  ]
2047
2047
  )
2048
2048
 
@@ -2112,6 +2112,7 @@ class AborApi:
2112
2112
  _return_http_data_only=_params.get('_return_http_data_only'), # noqa: E501
2113
2113
  _preload_content=_params.get('_preload_content', True),
2114
2114
  _request_timeout=_params.get('_request_timeout'),
2115
+ opts=_params.get('opts'),
2115
2116
  collection_formats=_collection_formats,
2116
2117
  _request_auth=_params.get('_request_auth'))
2117
2118
 
@@ -2142,10 +2143,9 @@ class AborApi:
2142
2143
  :type re_open_period_diary_entry_request: ReOpenPeriodDiaryEntryRequest
2143
2144
  :param async_req: Whether to execute the request asynchronously.
2144
2145
  :type async_req: bool, optional
2145
- :param _request_timeout: timeout setting for this request.
2146
- If one number provided, it will be total request
2147
- timeout. It can also be a pair (tuple) of
2148
- (connection, read) timeouts.
2146
+ :param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
2147
+ :param opts: Configuration options for this request
2148
+ :type opts: ConfigurationOptions, optional
2149
2149
  :return: Returns the result object.
2150
2150
  If the method is called asynchronously,
2151
2151
  returns the request thread.
@@ -2186,10 +2186,9 @@ class AborApi:
2186
2186
  :param _return_http_data_only: response data instead of ApiResponse
2187
2187
  object with status code, headers, etc
2188
2188
  :type _return_http_data_only: bool, optional
2189
- :param _request_timeout: timeout setting for this request. If one
2190
- number provided, it will be total request
2191
- timeout. It can also be a pair (tuple) of
2192
- (connection, read) timeouts.
2189
+ :param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
2190
+ :param opts: Configuration options for this request
2191
+ :type opts: ConfigurationOptions, optional
2193
2192
  :param _request_auth: set to override the auth_settings for an a single
2194
2193
  request; this effectively ignores the authentication
2195
2194
  in the spec for a single request.
@@ -2216,7 +2215,8 @@ class AborApi:
2216
2215
  '_request_timeout',
2217
2216
  '_request_auth',
2218
2217
  '_content_type',
2219
- '_headers'
2218
+ '_headers',
2219
+ 'opts'
2220
2220
  ]
2221
2221
  )
2222
2222
 
@@ -2286,6 +2286,7 @@ class AborApi:
2286
2286
  _return_http_data_only=_params.get('_return_http_data_only'), # noqa: E501
2287
2287
  _preload_content=_params.get('_preload_content', True),
2288
2288
  _request_timeout=_params.get('_request_timeout'),
2289
+ opts=_params.get('opts'),
2289
2290
  collection_formats=_collection_formats,
2290
2291
  _request_auth=_params.get('_request_auth'))
2291
2292
 
@@ -2316,10 +2317,9 @@ class AborApi:
2316
2317
  :type request_body: Dict[str, ModelProperty]
2317
2318
  :param async_req: Whether to execute the request asynchronously.
2318
2319
  :type async_req: bool, optional
2319
- :param _request_timeout: timeout setting for this request.
2320
- If one number provided, it will be total request
2321
- timeout. It can also be a pair (tuple) of
2322
- (connection, read) timeouts.
2320
+ :param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
2321
+ :param opts: Configuration options for this request
2322
+ :type opts: ConfigurationOptions, optional
2323
2323
  :return: Returns the result object.
2324
2324
  If the method is called asynchronously,
2325
2325
  returns the request thread.
@@ -2360,10 +2360,9 @@ class AborApi:
2360
2360
  :param _return_http_data_only: response data instead of ApiResponse
2361
2361
  object with status code, headers, etc
2362
2362
  :type _return_http_data_only: bool, optional
2363
- :param _request_timeout: timeout setting for this request. If one
2364
- number provided, it will be total request
2365
- timeout. It can also be a pair (tuple) of
2366
- (connection, read) timeouts.
2363
+ :param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
2364
+ :param opts: Configuration options for this request
2365
+ :type opts: ConfigurationOptions, optional
2367
2366
  :param _request_auth: set to override the auth_settings for an a single
2368
2367
  request; this effectively ignores the authentication
2369
2368
  in the spec for a single request.
@@ -2390,7 +2389,8 @@ class AborApi:
2390
2389
  '_request_timeout',
2391
2390
  '_request_auth',
2392
2391
  '_content_type',
2393
- '_headers'
2392
+ '_headers',
2393
+ 'opts'
2394
2394
  ]
2395
2395
  )
2396
2396
 
@@ -2460,5 +2460,6 @@ class AborApi:
2460
2460
  _return_http_data_only=_params.get('_return_http_data_only'), # noqa: E501
2461
2461
  _preload_content=_params.get('_preload_content', True),
2462
2462
  _request_timeout=_params.get('_request_timeout'),
2463
+ opts=_params.get('opts'),
2463
2464
  collection_formats=_collection_formats,
2464
2465
  _request_auth=_params.get('_request_auth'))