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
@@ -65,6 +65,7 @@ from lusid.exceptions import ( # noqa: F401
65
65
  ApiTypeError,
66
66
  ApiValueError
67
67
  )
68
+ from lusid.extensions.configuration_options import ConfigurationOptions
68
69
 
69
70
 
70
71
  class PortfoliosApi:
@@ -106,10 +107,9 @@ class PortfoliosApi:
106
107
  :type effective_until: str
107
108
  :param async_req: Whether to execute the request asynchronously.
108
109
  :type async_req: bool, optional
109
- :param _request_timeout: timeout setting for this request.
110
- If one number provided, it will be total request
111
- timeout. It can also be a pair (tuple) of
112
- (connection, read) timeouts.
110
+ :param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
111
+ :param opts: Configuration options for this request
112
+ :type opts: ConfigurationOptions, optional
113
113
  :return: Returns the result object.
114
114
  If the method is called asynchronously,
115
115
  returns the request thread.
@@ -150,10 +150,9 @@ class PortfoliosApi:
150
150
  :param _return_http_data_only: response data instead of ApiResponse
151
151
  object with status code, headers, etc
152
152
  :type _return_http_data_only: bool, optional
153
- :param _request_timeout: timeout setting for this request. If one
154
- number provided, it will be total request
155
- timeout. It can also be a pair (tuple) of
156
- (connection, read) timeouts.
153
+ :param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
154
+ :param opts: Configuration options for this request
155
+ :type opts: ConfigurationOptions, optional
157
156
  :param _request_auth: set to override the auth_settings for an a single
158
157
  request; this effectively ignores the authentication
159
158
  in the spec for a single request.
@@ -180,7 +179,8 @@ class PortfoliosApi:
180
179
  '_request_timeout',
181
180
  '_request_auth',
182
181
  '_content_type',
183
- '_headers'
182
+ '_headers',
183
+ 'opts'
184
184
  ]
185
185
  )
186
186
 
@@ -250,6 +250,7 @@ class PortfoliosApi:
250
250
  _return_http_data_only=_params.get('_return_http_data_only'), # noqa: E501
251
251
  _preload_content=_params.get('_preload_content', True),
252
252
  _request_timeout=_params.get('_request_timeout'),
253
+ opts=_params.get('opts'),
253
254
  collection_formats=_collection_formats,
254
255
  _request_auth=_params.get('_request_auth'))
255
256
 
@@ -282,10 +283,9 @@ class PortfoliosApi:
282
283
  :type portfolio_effective_at: str
283
284
  :param async_req: Whether to execute the request asynchronously.
284
285
  :type async_req: bool, optional
285
- :param _request_timeout: timeout setting for this request.
286
- If one number provided, it will be total request
287
- timeout. It can also be a pair (tuple) of
288
- (connection, read) timeouts.
286
+ :param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
287
+ :param opts: Configuration options for this request
288
+ :type opts: ConfigurationOptions, optional
289
289
  :return: Returns the result object.
290
290
  If the method is called asynchronously,
291
291
  returns the request thread.
@@ -328,10 +328,9 @@ class PortfoliosApi:
328
328
  :param _return_http_data_only: response data instead of ApiResponse
329
329
  object with status code, headers, etc
330
330
  :type _return_http_data_only: bool, optional
331
- :param _request_timeout: timeout setting for this request. If one
332
- number provided, it will be total request
333
- timeout. It can also be a pair (tuple) of
334
- (connection, read) timeouts.
331
+ :param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
332
+ :param opts: Configuration options for this request
333
+ :type opts: ConfigurationOptions, optional
335
334
  :param _request_auth: set to override the auth_settings for an a single
336
335
  request; this effectively ignores the authentication
337
336
  in the spec for a single request.
@@ -359,7 +358,8 @@ class PortfoliosApi:
359
358
  '_request_timeout',
360
359
  '_request_auth',
361
360
  '_content_type',
362
- '_headers'
361
+ '_headers',
362
+ 'opts'
363
363
  ]
364
364
  )
365
365
 
@@ -425,6 +425,7 @@ class PortfoliosApi:
425
425
  _return_http_data_only=_params.get('_return_http_data_only'), # noqa: E501
426
426
  _preload_content=_params.get('_preload_content', True),
427
427
  _request_timeout=_params.get('_request_timeout'),
428
+ opts=_params.get('opts'),
428
429
  collection_formats=_collection_formats,
429
430
  _request_auth=_params.get('_request_auth'))
430
431
 
@@ -459,10 +460,9 @@ class PortfoliosApi:
459
460
  :type effective_until: datetime
460
461
  :param async_req: Whether to execute the request asynchronously.
461
462
  :type async_req: bool, optional
462
- :param _request_timeout: timeout setting for this request.
463
- If one number provided, it will be total request
464
- timeout. It can also be a pair (tuple) of
465
- (connection, read) timeouts.
463
+ :param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
464
+ :param opts: Configuration options for this request
465
+ :type opts: ConfigurationOptions, optional
466
466
  :return: Returns the result object.
467
467
  If the method is called asynchronously,
468
468
  returns the request thread.
@@ -507,10 +507,9 @@ class PortfoliosApi:
507
507
  :param _return_http_data_only: response data instead of ApiResponse
508
508
  object with status code, headers, etc
509
509
  :type _return_http_data_only: bool, optional
510
- :param _request_timeout: timeout setting for this request. If one
511
- number provided, it will be total request
512
- timeout. It can also be a pair (tuple) of
513
- (connection, read) timeouts.
510
+ :param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
511
+ :param opts: Configuration options for this request
512
+ :type opts: ConfigurationOptions, optional
514
513
  :param _request_auth: set to override the auth_settings for an a single
515
514
  request; this effectively ignores the authentication
516
515
  in the spec for a single request.
@@ -539,7 +538,8 @@ class PortfoliosApi:
539
538
  '_request_timeout',
540
539
  '_request_auth',
541
540
  '_content_type',
542
- '_headers'
541
+ '_headers',
542
+ 'opts'
543
543
  ]
544
544
  )
545
545
 
@@ -611,6 +611,7 @@ class PortfoliosApi:
611
611
  _return_http_data_only=_params.get('_return_http_data_only'), # noqa: E501
612
612
  _preload_content=_params.get('_preload_content', True),
613
613
  _request_timeout=_params.get('_request_timeout'),
614
+ opts=_params.get('opts'),
614
615
  collection_formats=_collection_formats,
615
616
  _request_auth=_params.get('_request_auth'))
616
617
 
@@ -639,10 +640,9 @@ class PortfoliosApi:
639
640
  :type code: str
640
641
  :param async_req: Whether to execute the request asynchronously.
641
642
  :type async_req: bool, optional
642
- :param _request_timeout: timeout setting for this request.
643
- If one number provided, it will be total request
644
- timeout. It can also be a pair (tuple) of
645
- (connection, read) timeouts.
643
+ :param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
644
+ :param opts: Configuration options for this request
645
+ :type opts: ConfigurationOptions, optional
646
646
  :return: Returns the result object.
647
647
  If the method is called asynchronously,
648
648
  returns the request thread.
@@ -681,10 +681,9 @@ class PortfoliosApi:
681
681
  :param _return_http_data_only: response data instead of ApiResponse
682
682
  object with status code, headers, etc
683
683
  :type _return_http_data_only: bool, optional
684
- :param _request_timeout: timeout setting for this request. If one
685
- number provided, it will be total request
686
- timeout. It can also be a pair (tuple) of
687
- (connection, read) timeouts.
684
+ :param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
685
+ :param opts: Configuration options for this request
686
+ :type opts: ConfigurationOptions, optional
688
687
  :param _request_auth: set to override the auth_settings for an a single
689
688
  request; this effectively ignores the authentication
690
689
  in the spec for a single request.
@@ -710,7 +709,8 @@ class PortfoliosApi:
710
709
  '_request_timeout',
711
710
  '_request_auth',
712
711
  '_content_type',
713
- '_headers'
712
+ '_headers',
713
+ 'opts'
714
714
  ]
715
715
  )
716
716
 
@@ -770,6 +770,7 @@ class PortfoliosApi:
770
770
  _return_http_data_only=_params.get('_return_http_data_only'), # noqa: E501
771
771
  _preload_content=_params.get('_preload_content', True),
772
772
  _request_timeout=_params.get('_request_timeout'),
773
+ opts=_params.get('opts'),
773
774
  collection_formats=_collection_formats,
774
775
  _request_auth=_params.get('_request_auth'))
775
776
 
@@ -802,10 +803,9 @@ class PortfoliosApi:
802
803
  :type effective_at: str
803
804
  :param async_req: Whether to execute the request asynchronously.
804
805
  :type async_req: bool, optional
805
- :param _request_timeout: timeout setting for this request.
806
- If one number provided, it will be total request
807
- timeout. It can also be a pair (tuple) of
808
- (connection, read) timeouts.
806
+ :param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
807
+ :param opts: Configuration options for this request
808
+ :type opts: ConfigurationOptions, optional
809
809
  :return: Returns the result object.
810
810
  If the method is called asynchronously,
811
811
  returns the request thread.
@@ -848,10 +848,9 @@ class PortfoliosApi:
848
848
  :param _return_http_data_only: response data instead of ApiResponse
849
849
  object with status code, headers, etc
850
850
  :type _return_http_data_only: bool, optional
851
- :param _request_timeout: timeout setting for this request. If one
852
- number provided, it will be total request
853
- timeout. It can also be a pair (tuple) of
854
- (connection, read) timeouts.
851
+ :param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
852
+ :param opts: Configuration options for this request
853
+ :type opts: ConfigurationOptions, optional
855
854
  :param _request_auth: set to override the auth_settings for an a single
856
855
  request; this effectively ignores the authentication
857
856
  in the spec for a single request.
@@ -879,7 +878,8 @@ class PortfoliosApi:
879
878
  '_request_timeout',
880
879
  '_request_auth',
881
880
  '_content_type',
882
- '_headers'
881
+ '_headers',
882
+ 'opts'
883
883
  ]
884
884
  )
885
885
 
@@ -946,6 +946,7 @@ class PortfoliosApi:
946
946
  _return_http_data_only=_params.get('_return_http_data_only'), # noqa: E501
947
947
  _preload_content=_params.get('_preload_content', True),
948
948
  _request_timeout=_params.get('_request_timeout'),
949
+ opts=_params.get('opts'),
949
950
  collection_formats=_collection_formats,
950
951
  _request_auth=_params.get('_request_auth'))
951
952
 
@@ -984,10 +985,9 @@ class PortfoliosApi:
984
985
  :type period: str
985
986
  :param async_req: Whether to execute the request asynchronously.
986
987
  :type async_req: bool, optional
987
- :param _request_timeout: timeout setting for this request.
988
- If one number provided, it will be total request
989
- timeout. It can also be a pair (tuple) of
990
- (connection, read) timeouts.
988
+ :param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
989
+ :param opts: Configuration options for this request
990
+ :type opts: ConfigurationOptions, optional
991
991
  :return: Returns the result object.
992
992
  If the method is called asynchronously,
993
993
  returns the request thread.
@@ -1036,10 +1036,9 @@ class PortfoliosApi:
1036
1036
  :param _return_http_data_only: response data instead of ApiResponse
1037
1037
  object with status code, headers, etc
1038
1038
  :type _return_http_data_only: bool, optional
1039
- :param _request_timeout: timeout setting for this request. If one
1040
- number provided, it will be total request
1041
- timeout. It can also be a pair (tuple) of
1042
- (connection, read) timeouts.
1039
+ :param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
1040
+ :param opts: Configuration options for this request
1041
+ :type opts: ConfigurationOptions, optional
1043
1042
  :param _request_auth: set to override the auth_settings for an a single
1044
1043
  request; this effectively ignores the authentication
1045
1044
  in the spec for a single request.
@@ -1070,7 +1069,8 @@ class PortfoliosApi:
1070
1069
  '_request_timeout',
1071
1070
  '_request_auth',
1072
1071
  '_content_type',
1073
- '_headers'
1072
+ '_headers',
1073
+ 'opts'
1074
1074
  ]
1075
1075
  )
1076
1076
 
@@ -1145,6 +1145,7 @@ class PortfoliosApi:
1145
1145
  _return_http_data_only=_params.get('_return_http_data_only'), # noqa: E501
1146
1146
  _preload_content=_params.get('_preload_content', True),
1147
1147
  _request_timeout=_params.get('_request_timeout'),
1148
+ opts=_params.get('opts'),
1148
1149
  collection_formats=_collection_formats,
1149
1150
  _request_auth=_params.get('_request_auth'))
1150
1151
 
@@ -1177,10 +1178,9 @@ class PortfoliosApi:
1177
1178
  :type as_at: datetime
1178
1179
  :param async_req: Whether to execute the request asynchronously.
1179
1180
  :type async_req: bool, optional
1180
- :param _request_timeout: timeout setting for this request.
1181
- If one number provided, it will be total request
1182
- timeout. It can also be a pair (tuple) of
1183
- (connection, read) timeouts.
1181
+ :param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
1182
+ :param opts: Configuration options for this request
1183
+ :type opts: ConfigurationOptions, optional
1184
1184
  :return: Returns the result object.
1185
1185
  If the method is called asynchronously,
1186
1186
  returns the request thread.
@@ -1223,10 +1223,9 @@ class PortfoliosApi:
1223
1223
  :param _return_http_data_only: response data instead of ApiResponse
1224
1224
  object with status code, headers, etc
1225
1225
  :type _return_http_data_only: bool, optional
1226
- :param _request_timeout: timeout setting for this request. If one
1227
- number provided, it will be total request
1228
- timeout. It can also be a pair (tuple) of
1229
- (connection, read) timeouts.
1226
+ :param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
1227
+ :param opts: Configuration options for this request
1228
+ :type opts: ConfigurationOptions, optional
1230
1229
  :param _request_auth: set to override the auth_settings for an a single
1231
1230
  request; this effectively ignores the authentication
1232
1231
  in the spec for a single request.
@@ -1254,7 +1253,8 @@ class PortfoliosApi:
1254
1253
  '_request_timeout',
1255
1254
  '_request_auth',
1256
1255
  '_content_type',
1257
- '_headers'
1256
+ '_headers',
1257
+ 'opts'
1258
1258
  ]
1259
1259
  )
1260
1260
 
@@ -1330,6 +1330,7 @@ class PortfoliosApi:
1330
1330
  _return_http_data_only=_params.get('_return_http_data_only'), # noqa: E501
1331
1331
  _preload_content=_params.get('_preload_content', True),
1332
1332
  _request_timeout=_params.get('_request_timeout'),
1333
+ opts=_params.get('opts'),
1333
1334
  collection_formats=_collection_formats,
1334
1335
  _request_auth=_params.get('_request_auth'))
1335
1336
 
@@ -1366,10 +1367,9 @@ class PortfoliosApi:
1366
1367
  :type as_at: datetime
1367
1368
  :param async_req: Whether to execute the request asynchronously.
1368
1369
  :type async_req: bool, optional
1369
- :param _request_timeout: timeout setting for this request.
1370
- If one number provided, it will be total request
1371
- timeout. It can also be a pair (tuple) of
1372
- (connection, read) timeouts.
1370
+ :param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
1371
+ :param opts: Configuration options for this request
1372
+ :type opts: ConfigurationOptions, optional
1373
1373
  :return: Returns the result object.
1374
1374
  If the method is called asynchronously,
1375
1375
  returns the request thread.
@@ -1416,10 +1416,9 @@ class PortfoliosApi:
1416
1416
  :param _return_http_data_only: response data instead of ApiResponse
1417
1417
  object with status code, headers, etc
1418
1418
  :type _return_http_data_only: bool, optional
1419
- :param _request_timeout: timeout setting for this request. If one
1420
- number provided, it will be total request
1421
- timeout. It can also be a pair (tuple) of
1422
- (connection, read) timeouts.
1419
+ :param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
1420
+ :param opts: Configuration options for this request
1421
+ :type opts: ConfigurationOptions, optional
1423
1422
  :param _request_auth: set to override the auth_settings for an a single
1424
1423
  request; this effectively ignores the authentication
1425
1424
  in the spec for a single request.
@@ -1449,7 +1448,8 @@ class PortfoliosApi:
1449
1448
  '_request_timeout',
1450
1449
  '_request_auth',
1451
1450
  '_content_type',
1452
- '_headers'
1451
+ '_headers',
1452
+ 'opts'
1453
1453
  ]
1454
1454
  )
1455
1455
 
@@ -1531,6 +1531,7 @@ class PortfoliosApi:
1531
1531
  _return_http_data_only=_params.get('_return_http_data_only'), # noqa: E501
1532
1532
  _preload_content=_params.get('_preload_content', True),
1533
1533
  _request_timeout=_params.get('_request_timeout'),
1534
+ opts=_params.get('opts'),
1534
1535
  collection_formats=_collection_formats,
1535
1536
  _request_auth=_params.get('_request_auth'))
1536
1537
 
@@ -1565,10 +1566,9 @@ class PortfoliosApi:
1565
1566
  :type as_at: datetime
1566
1567
  :param async_req: Whether to execute the request asynchronously.
1567
1568
  :type async_req: bool, optional
1568
- :param _request_timeout: timeout setting for this request.
1569
- If one number provided, it will be total request
1570
- timeout. It can also be a pair (tuple) of
1571
- (connection, read) timeouts.
1569
+ :param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
1570
+ :param opts: Configuration options for this request
1571
+ :type opts: ConfigurationOptions, optional
1572
1572
  :return: Returns the result object.
1573
1573
  If the method is called asynchronously,
1574
1574
  returns the request thread.
@@ -1613,10 +1613,9 @@ class PortfoliosApi:
1613
1613
  :param _return_http_data_only: response data instead of ApiResponse
1614
1614
  object with status code, headers, etc
1615
1615
  :type _return_http_data_only: bool, optional
1616
- :param _request_timeout: timeout setting for this request. If one
1617
- number provided, it will be total request
1618
- timeout. It can also be a pair (tuple) of
1619
- (connection, read) timeouts.
1616
+ :param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
1617
+ :param opts: Configuration options for this request
1618
+ :type opts: ConfigurationOptions, optional
1620
1619
  :param _request_auth: set to override the auth_settings for an a single
1621
1620
  request; this effectively ignores the authentication
1622
1621
  in the spec for a single request.
@@ -1645,7 +1644,8 @@ class PortfoliosApi:
1645
1644
  '_request_timeout',
1646
1645
  '_request_auth',
1647
1646
  '_content_type',
1648
- '_headers'
1647
+ '_headers',
1648
+ 'opts'
1649
1649
  ]
1650
1650
  )
1651
1651
 
@@ -1717,6 +1717,7 @@ class PortfoliosApi:
1717
1717
  _return_http_data_only=_params.get('_return_http_data_only'), # noqa: E501
1718
1718
  _preload_content=_params.get('_preload_content', True),
1719
1719
  _request_timeout=_params.get('_request_timeout'),
1720
+ opts=_params.get('opts'),
1720
1721
  collection_formats=_collection_formats,
1721
1722
  _request_auth=_params.get('_request_auth'))
1722
1723
 
@@ -1753,10 +1754,9 @@ class PortfoliosApi:
1753
1754
  :type relationship_definition_ids: List[str]
1754
1755
  :param async_req: Whether to execute the request asynchronously.
1755
1756
  :type async_req: bool, optional
1756
- :param _request_timeout: timeout setting for this request.
1757
- If one number provided, it will be total request
1758
- timeout. It can also be a pair (tuple) of
1759
- (connection, read) timeouts.
1757
+ :param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
1758
+ :param opts: Configuration options for this request
1759
+ :type opts: ConfigurationOptions, optional
1760
1760
  :return: Returns the result object.
1761
1761
  If the method is called asynchronously,
1762
1762
  returns the request thread.
@@ -1803,10 +1803,9 @@ class PortfoliosApi:
1803
1803
  :param _return_http_data_only: response data instead of ApiResponse
1804
1804
  object with status code, headers, etc
1805
1805
  :type _return_http_data_only: bool, optional
1806
- :param _request_timeout: timeout setting for this request. If one
1807
- number provided, it will be total request
1808
- timeout. It can also be a pair (tuple) of
1809
- (connection, read) timeouts.
1806
+ :param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
1807
+ :param opts: Configuration options for this request
1808
+ :type opts: ConfigurationOptions, optional
1810
1809
  :param _request_auth: set to override the auth_settings for an a single
1811
1810
  request; this effectively ignores the authentication
1812
1811
  in the spec for a single request.
@@ -1836,7 +1835,8 @@ class PortfoliosApi:
1836
1835
  '_request_timeout',
1837
1836
  '_request_auth',
1838
1837
  '_content_type',
1839
- '_headers'
1838
+ '_headers',
1839
+ 'opts'
1840
1840
  ]
1841
1841
  )
1842
1842
 
@@ -1913,6 +1913,7 @@ class PortfoliosApi:
1913
1913
  _return_http_data_only=_params.get('_return_http_data_only'), # noqa: E501
1914
1914
  _preload_content=_params.get('_preload_content', True),
1915
1915
  _request_timeout=_params.get('_request_timeout'),
1916
+ opts=_params.get('opts'),
1916
1917
  collection_formats=_collection_formats,
1917
1918
  _request_auth=_params.get('_request_auth'))
1918
1919
 
@@ -1965,10 +1966,9 @@ class PortfoliosApi:
1965
1966
  :type alternative_inc_date: str
1966
1967
  :param async_req: Whether to execute the request asynchronously.
1967
1968
  :type async_req: bool, optional
1968
- :param _request_timeout: timeout setting for this request.
1969
- If one number provided, it will be total request
1970
- timeout. It can also be a pair (tuple) of
1971
- (connection, read) timeouts.
1969
+ :param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
1970
+ :param opts: Configuration options for this request
1971
+ :type opts: ConfigurationOptions, optional
1972
1972
  :return: Returns the result object.
1973
1973
  If the method is called asynchronously,
1974
1974
  returns the request thread.
@@ -2031,10 +2031,9 @@ class PortfoliosApi:
2031
2031
  :param _return_http_data_only: response data instead of ApiResponse
2032
2032
  object with status code, headers, etc
2033
2033
  :type _return_http_data_only: bool, optional
2034
- :param _request_timeout: timeout setting for this request. If one
2035
- number provided, it will be total request
2036
- timeout. It can also be a pair (tuple) of
2037
- (connection, read) timeouts.
2034
+ :param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
2035
+ :param opts: Configuration options for this request
2036
+ :type opts: ConfigurationOptions, optional
2038
2037
  :param _request_auth: set to override the auth_settings for an a single
2039
2038
  request; this effectively ignores the authentication
2040
2039
  in the spec for a single request.
@@ -2072,7 +2071,8 @@ class PortfoliosApi:
2072
2071
  '_request_timeout',
2073
2072
  '_request_auth',
2074
2073
  '_content_type',
2075
- '_headers'
2074
+ '_headers',
2075
+ 'opts'
2076
2076
  ]
2077
2077
  )
2078
2078
 
@@ -2172,6 +2172,7 @@ class PortfoliosApi:
2172
2172
  _return_http_data_only=_params.get('_return_http_data_only'), # noqa: E501
2173
2173
  _preload_content=_params.get('_preload_content', True),
2174
2174
  _request_timeout=_params.get('_request_timeout'),
2175
+ opts=_params.get('opts'),
2175
2176
  collection_formats=_collection_formats,
2176
2177
  _request_auth=_params.get('_request_auth'))
2177
2178
 
@@ -2208,10 +2209,9 @@ class PortfoliosApi:
2208
2209
  :type as_at: datetime
2209
2210
  :param async_req: Whether to execute the request asynchronously.
2210
2211
  :type async_req: bool, optional
2211
- :param _request_timeout: timeout setting for this request.
2212
- If one number provided, it will be total request
2213
- timeout. It can also be a pair (tuple) of
2214
- (connection, read) timeouts.
2212
+ :param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
2213
+ :param opts: Configuration options for this request
2214
+ :type opts: ConfigurationOptions, optional
2215
2215
  :return: Returns the result object.
2216
2216
  If the method is called asynchronously,
2217
2217
  returns the request thread.
@@ -2258,10 +2258,9 @@ class PortfoliosApi:
2258
2258
  :param _return_http_data_only: response data instead of ApiResponse
2259
2259
  object with status code, headers, etc
2260
2260
  :type _return_http_data_only: bool, optional
2261
- :param _request_timeout: timeout setting for this request. If one
2262
- number provided, it will be total request
2263
- timeout. It can also be a pair (tuple) of
2264
- (connection, read) timeouts.
2261
+ :param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
2262
+ :param opts: Configuration options for this request
2263
+ :type opts: ConfigurationOptions, optional
2265
2264
  :param _request_auth: set to override the auth_settings for an a single
2266
2265
  request; this effectively ignores the authentication
2267
2266
  in the spec for a single request.
@@ -2291,7 +2290,8 @@ class PortfoliosApi:
2291
2290
  '_request_timeout',
2292
2291
  '_request_auth',
2293
2292
  '_content_type',
2294
- '_headers'
2293
+ '_headers',
2294
+ 'opts'
2295
2295
  ]
2296
2296
  )
2297
2297
 
@@ -2373,6 +2373,7 @@ class PortfoliosApi:
2373
2373
  _return_http_data_only=_params.get('_return_http_data_only'), # noqa: E501
2374
2374
  _preload_content=_params.get('_preload_content', True),
2375
2375
  _request_timeout=_params.get('_request_timeout'),
2376
+ opts=_params.get('opts'),
2376
2377
  collection_formats=_collection_formats,
2377
2378
  _request_auth=_params.get('_request_auth'))
2378
2379
 
@@ -2411,10 +2412,9 @@ class PortfoliosApi:
2411
2412
  :type limit: int
2412
2413
  :param async_req: Whether to execute the request asynchronously.
2413
2414
  :type async_req: bool, optional
2414
- :param _request_timeout: timeout setting for this request.
2415
- If one number provided, it will be total request
2416
- timeout. It can also be a pair (tuple) of
2417
- (connection, read) timeouts.
2415
+ :param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
2416
+ :param opts: Configuration options for this request
2417
+ :type opts: ConfigurationOptions, optional
2418
2418
  :return: Returns the result object.
2419
2419
  If the method is called asynchronously,
2420
2420
  returns the request thread.
@@ -2463,10 +2463,9 @@ class PortfoliosApi:
2463
2463
  :param _return_http_data_only: response data instead of ApiResponse
2464
2464
  object with status code, headers, etc
2465
2465
  :type _return_http_data_only: bool, optional
2466
- :param _request_timeout: timeout setting for this request. If one
2467
- number provided, it will be total request
2468
- timeout. It can also be a pair (tuple) of
2469
- (connection, read) timeouts.
2466
+ :param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
2467
+ :param opts: Configuration options for this request
2468
+ :type opts: ConfigurationOptions, optional
2470
2469
  :param _request_auth: set to override the auth_settings for an a single
2471
2470
  request; this effectively ignores the authentication
2472
2471
  in the spec for a single request.
@@ -2497,7 +2496,8 @@ class PortfoliosApi:
2497
2496
  '_request_timeout',
2498
2497
  '_request_auth',
2499
2498
  '_content_type',
2500
- '_headers'
2499
+ '_headers',
2500
+ 'opts'
2501
2501
  ]
2502
2502
  )
2503
2503
 
@@ -2578,6 +2578,7 @@ class PortfoliosApi:
2578
2578
  _return_http_data_only=_params.get('_return_http_data_only'), # noqa: E501
2579
2579
  _preload_content=_params.get('_preload_content', True),
2580
2580
  _request_timeout=_params.get('_request_timeout'),
2581
+ opts=_params.get('opts'),
2581
2582
  collection_formats=_collection_formats,
2582
2583
  _request_auth=_params.get('_request_auth'))
2583
2584
 
@@ -2610,10 +2611,9 @@ class PortfoliosApi:
2610
2611
  :type as_at: datetime
2611
2612
  :param async_req: Whether to execute the request asynchronously.
2612
2613
  :type async_req: bool, optional
2613
- :param _request_timeout: timeout setting for this request.
2614
- If one number provided, it will be total request
2615
- timeout. It can also be a pair (tuple) of
2616
- (connection, read) timeouts.
2614
+ :param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
2615
+ :param opts: Configuration options for this request
2616
+ :type opts: ConfigurationOptions, optional
2617
2617
  :return: Returns the result object.
2618
2618
  If the method is called asynchronously,
2619
2619
  returns the request thread.
@@ -2656,10 +2656,9 @@ class PortfoliosApi:
2656
2656
  :param _return_http_data_only: response data instead of ApiResponse
2657
2657
  object with status code, headers, etc
2658
2658
  :type _return_http_data_only: bool, optional
2659
- :param _request_timeout: timeout setting for this request. If one
2660
- number provided, it will be total request
2661
- timeout. It can also be a pair (tuple) of
2662
- (connection, read) timeouts.
2659
+ :param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
2660
+ :param opts: Configuration options for this request
2661
+ :type opts: ConfigurationOptions, optional
2663
2662
  :param _request_auth: set to override the auth_settings for an a single
2664
2663
  request; this effectively ignores the authentication
2665
2664
  in the spec for a single request.
@@ -2687,7 +2686,8 @@ class PortfoliosApi:
2687
2686
  '_request_timeout',
2688
2687
  '_request_auth',
2689
2688
  '_content_type',
2690
- '_headers'
2689
+ '_headers',
2690
+ 'opts'
2691
2691
  ]
2692
2692
  )
2693
2693
 
@@ -2756,6 +2756,7 @@ class PortfoliosApi:
2756
2756
  _return_http_data_only=_params.get('_return_http_data_only'), # noqa: E501
2757
2757
  _preload_content=_params.get('_preload_content', True),
2758
2758
  _request_timeout=_params.get('_request_timeout'),
2759
+ opts=_params.get('opts'),
2759
2760
  collection_formats=_collection_formats,
2760
2761
  _request_auth=_params.get('_request_auth'))
2761
2762
 
@@ -2788,10 +2789,9 @@ class PortfoliosApi:
2788
2789
  :type as_at: datetime
2789
2790
  :param async_req: Whether to execute the request asynchronously.
2790
2791
  :type async_req: bool, optional
2791
- :param _request_timeout: timeout setting for this request.
2792
- If one number provided, it will be total request
2793
- timeout. It can also be a pair (tuple) of
2794
- (connection, read) timeouts.
2792
+ :param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
2793
+ :param opts: Configuration options for this request
2794
+ :type opts: ConfigurationOptions, optional
2795
2795
  :return: Returns the result object.
2796
2796
  If the method is called asynchronously,
2797
2797
  returns the request thread.
@@ -2834,10 +2834,9 @@ class PortfoliosApi:
2834
2834
  :param _return_http_data_only: response data instead of ApiResponse
2835
2835
  object with status code, headers, etc
2836
2836
  :type _return_http_data_only: bool, optional
2837
- :param _request_timeout: timeout setting for this request. If one
2838
- number provided, it will be total request
2839
- timeout. It can also be a pair (tuple) of
2840
- (connection, read) timeouts.
2837
+ :param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
2838
+ :param opts: Configuration options for this request
2839
+ :type opts: ConfigurationOptions, optional
2841
2840
  :param _request_auth: set to override the auth_settings for an a single
2842
2841
  request; this effectively ignores the authentication
2843
2842
  in the spec for a single request.
@@ -2865,7 +2864,8 @@ class PortfoliosApi:
2865
2864
  '_request_timeout',
2866
2865
  '_request_auth',
2867
2866
  '_content_type',
2868
- '_headers'
2867
+ '_headers',
2868
+ 'opts'
2869
2869
  ]
2870
2870
  )
2871
2871
 
@@ -2934,6 +2934,7 @@ class PortfoliosApi:
2934
2934
  _return_http_data_only=_params.get('_return_http_data_only'), # noqa: E501
2935
2935
  _preload_content=_params.get('_preload_content', True),
2936
2936
  _request_timeout=_params.get('_request_timeout'),
2937
+ opts=_params.get('opts'),
2937
2938
  collection_formats=_collection_formats,
2938
2939
  _request_auth=_params.get('_request_auth'))
2939
2940
 
@@ -2974,10 +2975,9 @@ class PortfoliosApi:
2974
2975
  :type limit: int
2975
2976
  :param async_req: Whether to execute the request asynchronously.
2976
2977
  :type async_req: bool, optional
2977
- :param _request_timeout: timeout setting for this request.
2978
- If one number provided, it will be total request
2979
- timeout. It can also be a pair (tuple) of
2980
- (connection, read) timeouts.
2978
+ :param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
2979
+ :param opts: Configuration options for this request
2980
+ :type opts: ConfigurationOptions, optional
2981
2981
  :return: Returns the result object.
2982
2982
  If the method is called asynchronously,
2983
2983
  returns the request thread.
@@ -3028,10 +3028,9 @@ class PortfoliosApi:
3028
3028
  :param _return_http_data_only: response data instead of ApiResponse
3029
3029
  object with status code, headers, etc
3030
3030
  :type _return_http_data_only: bool, optional
3031
- :param _request_timeout: timeout setting for this request. If one
3032
- number provided, it will be total request
3033
- timeout. It can also be a pair (tuple) of
3034
- (connection, read) timeouts.
3031
+ :param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
3032
+ :param opts: Configuration options for this request
3033
+ :type opts: ConfigurationOptions, optional
3035
3034
  :param _request_auth: set to override the auth_settings for an a single
3036
3035
  request; this effectively ignores the authentication
3037
3036
  in the spec for a single request.
@@ -3063,7 +3062,8 @@ class PortfoliosApi:
3063
3062
  '_request_timeout',
3064
3063
  '_request_auth',
3065
3064
  '_content_type',
3066
- '_headers'
3065
+ '_headers',
3066
+ 'opts'
3067
3067
  ]
3068
3068
  )
3069
3069
 
@@ -3144,6 +3144,7 @@ class PortfoliosApi:
3144
3144
  _return_http_data_only=_params.get('_return_http_data_only'), # noqa: E501
3145
3145
  _preload_content=_params.get('_preload_content', True),
3146
3146
  _request_timeout=_params.get('_request_timeout'),
3147
+ opts=_params.get('opts'),
3147
3148
  collection_formats=_collection_formats,
3148
3149
  _request_auth=_params.get('_request_auth'))
3149
3150
 
@@ -3180,10 +3181,9 @@ class PortfoliosApi:
3180
3181
  :type identifier_types: List[str]
3181
3182
  :param async_req: Whether to execute the request asynchronously.
3182
3183
  :type async_req: bool, optional
3183
- :param _request_timeout: timeout setting for this request.
3184
- If one number provided, it will be total request
3185
- timeout. It can also be a pair (tuple) of
3186
- (connection, read) timeouts.
3184
+ :param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
3185
+ :param opts: Configuration options for this request
3186
+ :type opts: ConfigurationOptions, optional
3187
3187
  :return: Returns the result object.
3188
3188
  If the method is called asynchronously,
3189
3189
  returns the request thread.
@@ -3230,10 +3230,9 @@ class PortfoliosApi:
3230
3230
  :param _return_http_data_only: response data instead of ApiResponse
3231
3231
  object with status code, headers, etc
3232
3232
  :type _return_http_data_only: bool, optional
3233
- :param _request_timeout: timeout setting for this request. If one
3234
- number provided, it will be total request
3235
- timeout. It can also be a pair (tuple) of
3236
- (connection, read) timeouts.
3233
+ :param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
3234
+ :param opts: Configuration options for this request
3235
+ :type opts: ConfigurationOptions, optional
3237
3236
  :param _request_auth: set to override the auth_settings for an a single
3238
3237
  request; this effectively ignores the authentication
3239
3238
  in the spec for a single request.
@@ -3263,7 +3262,8 @@ class PortfoliosApi:
3263
3262
  '_request_timeout',
3264
3263
  '_request_auth',
3265
3264
  '_content_type',
3266
- '_headers'
3265
+ '_headers',
3266
+ 'opts'
3267
3267
  ]
3268
3268
  )
3269
3269
 
@@ -3339,6 +3339,7 @@ class PortfoliosApi:
3339
3339
  _return_http_data_only=_params.get('_return_http_data_only'), # noqa: E501
3340
3340
  _preload_content=_params.get('_preload_content', True),
3341
3341
  _request_timeout=_params.get('_request_timeout'),
3342
+ opts=_params.get('opts'),
3342
3343
  collection_formats=_collection_formats,
3343
3344
  _request_auth=_params.get('_request_auth'))
3344
3345
 
@@ -3375,10 +3376,9 @@ class PortfoliosApi:
3375
3376
  :type identifier_types: List[str]
3376
3377
  :param async_req: Whether to execute the request asynchronously.
3377
3378
  :type async_req: bool, optional
3378
- :param _request_timeout: timeout setting for this request.
3379
- If one number provided, it will be total request
3380
- timeout. It can also be a pair (tuple) of
3381
- (connection, read) timeouts.
3379
+ :param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
3380
+ :param opts: Configuration options for this request
3381
+ :type opts: ConfigurationOptions, optional
3382
3382
  :return: Returns the result object.
3383
3383
  If the method is called asynchronously,
3384
3384
  returns the request thread.
@@ -3425,10 +3425,9 @@ class PortfoliosApi:
3425
3425
  :param _return_http_data_only: response data instead of ApiResponse
3426
3426
  object with status code, headers, etc
3427
3427
  :type _return_http_data_only: bool, optional
3428
- :param _request_timeout: timeout setting for this request. If one
3429
- number provided, it will be total request
3430
- timeout. It can also be a pair (tuple) of
3431
- (connection, read) timeouts.
3428
+ :param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
3429
+ :param opts: Configuration options for this request
3430
+ :type opts: ConfigurationOptions, optional
3432
3431
  :param _request_auth: set to override the auth_settings for an a single
3433
3432
  request; this effectively ignores the authentication
3434
3433
  in the spec for a single request.
@@ -3458,7 +3457,8 @@ class PortfoliosApi:
3458
3457
  '_request_timeout',
3459
3458
  '_request_auth',
3460
3459
  '_content_type',
3461
- '_headers'
3460
+ '_headers',
3461
+ 'opts'
3462
3462
  ]
3463
3463
  )
3464
3464
 
@@ -3534,6 +3534,7 @@ class PortfoliosApi:
3534
3534
  _return_http_data_only=_params.get('_return_http_data_only'), # noqa: E501
3535
3535
  _preload_content=_params.get('_preload_content', True),
3536
3536
  _request_timeout=_params.get('_request_timeout'),
3537
+ opts=_params.get('opts'),
3537
3538
  collection_formats=_collection_formats,
3538
3539
  _request_auth=_params.get('_request_auth'))
3539
3540
 
@@ -3574,10 +3575,9 @@ class PortfoliosApi:
3574
3575
  :type as_at: datetime
3575
3576
  :param async_req: Whether to execute the request asynchronously.
3576
3577
  :type async_req: bool, optional
3577
- :param _request_timeout: timeout setting for this request.
3578
- If one number provided, it will be total request
3579
- timeout. It can also be a pair (tuple) of
3580
- (connection, read) timeouts.
3578
+ :param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
3579
+ :param opts: Configuration options for this request
3580
+ :type opts: ConfigurationOptions, optional
3581
3581
  :return: Returns the result object.
3582
3582
  If the method is called asynchronously,
3583
3583
  returns the request thread.
@@ -3628,10 +3628,9 @@ class PortfoliosApi:
3628
3628
  :param _return_http_data_only: response data instead of ApiResponse
3629
3629
  object with status code, headers, etc
3630
3630
  :type _return_http_data_only: bool, optional
3631
- :param _request_timeout: timeout setting for this request. If one
3632
- number provided, it will be total request
3633
- timeout. It can also be a pair (tuple) of
3634
- (connection, read) timeouts.
3631
+ :param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
3632
+ :param opts: Configuration options for this request
3633
+ :type opts: ConfigurationOptions, optional
3635
3634
  :param _request_auth: set to override the auth_settings for an a single
3636
3635
  request; this effectively ignores the authentication
3637
3636
  in the spec for a single request.
@@ -3663,7 +3662,8 @@ class PortfoliosApi:
3663
3662
  '_request_timeout',
3664
3663
  '_request_auth',
3665
3664
  '_content_type',
3666
- '_headers'
3665
+ '_headers',
3666
+ 'opts'
3667
3667
  ]
3668
3668
  )
3669
3669
 
@@ -3744,6 +3744,7 @@ class PortfoliosApi:
3744
3744
  _return_http_data_only=_params.get('_return_http_data_only'), # noqa: E501
3745
3745
  _preload_content=_params.get('_preload_content', True),
3746
3746
  _request_timeout=_params.get('_request_timeout'),
3747
+ opts=_params.get('opts'),
3747
3748
  collection_formats=_collection_formats,
3748
3749
  _request_auth=_params.get('_request_auth'))
3749
3750
 
@@ -3778,10 +3779,9 @@ class PortfoliosApi:
3778
3779
  :type as_at: datetime
3779
3780
  :param async_req: Whether to execute the request asynchronously.
3780
3781
  :type async_req: bool, optional
3781
- :param _request_timeout: timeout setting for this request.
3782
- If one number provided, it will be total request
3783
- timeout. It can also be a pair (tuple) of
3784
- (connection, read) timeouts.
3782
+ :param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
3783
+ :param opts: Configuration options for this request
3784
+ :type opts: ConfigurationOptions, optional
3785
3785
  :return: Returns the result object.
3786
3786
  If the method is called asynchronously,
3787
3787
  returns the request thread.
@@ -3826,10 +3826,9 @@ class PortfoliosApi:
3826
3826
  :param _return_http_data_only: response data instead of ApiResponse
3827
3827
  object with status code, headers, etc
3828
3828
  :type _return_http_data_only: bool, optional
3829
- :param _request_timeout: timeout setting for this request. If one
3830
- number provided, it will be total request
3831
- timeout. It can also be a pair (tuple) of
3832
- (connection, read) timeouts.
3829
+ :param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
3830
+ :param opts: Configuration options for this request
3831
+ :type opts: ConfigurationOptions, optional
3833
3832
  :param _request_auth: set to override the auth_settings for an a single
3834
3833
  request; this effectively ignores the authentication
3835
3834
  in the spec for a single request.
@@ -3858,7 +3857,8 @@ class PortfoliosApi:
3858
3857
  '_request_timeout',
3859
3858
  '_request_auth',
3860
3859
  '_content_type',
3861
- '_headers'
3860
+ '_headers',
3861
+ 'opts'
3862
3862
  ]
3863
3863
  )
3864
3864
 
@@ -3930,6 +3930,7 @@ class PortfoliosApi:
3930
3930
  _return_http_data_only=_params.get('_return_http_data_only'), # noqa: E501
3931
3931
  _preload_content=_params.get('_preload_content', True),
3932
3932
  _request_timeout=_params.get('_request_timeout'),
3933
+ opts=_params.get('opts'),
3933
3934
  collection_formats=_collection_formats,
3934
3935
  _request_auth=_params.get('_request_auth'))
3935
3936
 
@@ -3970,10 +3971,9 @@ class PortfoliosApi:
3970
3971
  :type sort_by: List[str]
3971
3972
  :param async_req: Whether to execute the request asynchronously.
3972
3973
  :type async_req: bool, optional
3973
- :param _request_timeout: timeout setting for this request.
3974
- If one number provided, it will be total request
3975
- timeout. It can also be a pair (tuple) of
3976
- (connection, read) timeouts.
3974
+ :param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
3975
+ :param opts: Configuration options for this request
3976
+ :type opts: ConfigurationOptions, optional
3977
3977
  :return: Returns the result object.
3978
3978
  If the method is called asynchronously,
3979
3979
  returns the request thread.
@@ -4024,10 +4024,9 @@ class PortfoliosApi:
4024
4024
  :param _return_http_data_only: response data instead of ApiResponse
4025
4025
  object with status code, headers, etc
4026
4026
  :type _return_http_data_only: bool, optional
4027
- :param _request_timeout: timeout setting for this request. If one
4028
- number provided, it will be total request
4029
- timeout. It can also be a pair (tuple) of
4030
- (connection, read) timeouts.
4027
+ :param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
4028
+ :param opts: Configuration options for this request
4029
+ :type opts: ConfigurationOptions, optional
4031
4030
  :param _request_auth: set to override the auth_settings for an a single
4032
4031
  request; this effectively ignores the authentication
4033
4032
  in the spec for a single request.
@@ -4059,7 +4058,8 @@ class PortfoliosApi:
4059
4058
  '_request_timeout',
4060
4059
  '_request_auth',
4061
4060
  '_content_type',
4062
- '_headers'
4061
+ '_headers',
4062
+ 'opts'
4063
4063
  ]
4064
4064
  )
4065
4065
 
@@ -4141,6 +4141,7 @@ class PortfoliosApi:
4141
4141
  _return_http_data_only=_params.get('_return_http_data_only'), # noqa: E501
4142
4142
  _preload_content=_params.get('_preload_content', True),
4143
4143
  _request_timeout=_params.get('_request_timeout'),
4144
+ opts=_params.get('opts'),
4144
4145
  collection_formats=_collection_formats,
4145
4146
  _request_auth=_params.get('_request_auth'))
4146
4147
 
@@ -4177,10 +4178,9 @@ class PortfoliosApi:
4177
4178
  :type limit: int
4178
4179
  :param async_req: Whether to execute the request asynchronously.
4179
4180
  :type async_req: bool, optional
4180
- :param _request_timeout: timeout setting for this request.
4181
- If one number provided, it will be total request
4182
- timeout. It can also be a pair (tuple) of
4183
- (connection, read) timeouts.
4181
+ :param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
4182
+ :param opts: Configuration options for this request
4183
+ :type opts: ConfigurationOptions, optional
4184
4184
  :return: Returns the result object.
4185
4185
  If the method is called asynchronously,
4186
4186
  returns the request thread.
@@ -4227,10 +4227,9 @@ class PortfoliosApi:
4227
4227
  :param _return_http_data_only: response data instead of ApiResponse
4228
4228
  object with status code, headers, etc
4229
4229
  :type _return_http_data_only: bool, optional
4230
- :param _request_timeout: timeout setting for this request. If one
4231
- number provided, it will be total request
4232
- timeout. It can also be a pair (tuple) of
4233
- (connection, read) timeouts.
4230
+ :param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
4231
+ :param opts: Configuration options for this request
4232
+ :type opts: ConfigurationOptions, optional
4234
4233
  :param _request_auth: set to override the auth_settings for an a single
4235
4234
  request; this effectively ignores the authentication
4236
4235
  in the spec for a single request.
@@ -4260,7 +4259,8 @@ class PortfoliosApi:
4260
4259
  '_request_timeout',
4261
4260
  '_request_auth',
4262
4261
  '_content_type',
4263
- '_headers'
4262
+ '_headers',
4263
+ 'opts'
4264
4264
  ]
4265
4265
  )
4266
4266
 
@@ -4335,6 +4335,7 @@ class PortfoliosApi:
4335
4335
  _return_http_data_only=_params.get('_return_http_data_only'), # noqa: E501
4336
4336
  _preload_content=_params.get('_preload_content', True),
4337
4337
  _request_timeout=_params.get('_request_timeout'),
4338
+ opts=_params.get('opts'),
4338
4339
  collection_formats=_collection_formats,
4339
4340
  _request_auth=_params.get('_request_auth'))
4340
4341
 
@@ -4377,10 +4378,9 @@ class PortfoliosApi:
4377
4378
  :type relationship_definition_ids: List[str]
4378
4379
  :param async_req: Whether to execute the request asynchronously.
4379
4380
  :type async_req: bool, optional
4380
- :param _request_timeout: timeout setting for this request.
4381
- If one number provided, it will be total request
4382
- timeout. It can also be a pair (tuple) of
4383
- (connection, read) timeouts.
4381
+ :param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
4382
+ :param opts: Configuration options for this request
4383
+ :type opts: ConfigurationOptions, optional
4384
4384
  :return: Returns the result object.
4385
4385
  If the method is called asynchronously,
4386
4386
  returns the request thread.
@@ -4433,10 +4433,9 @@ class PortfoliosApi:
4433
4433
  :param _return_http_data_only: response data instead of ApiResponse
4434
4434
  object with status code, headers, etc
4435
4435
  :type _return_http_data_only: bool, optional
4436
- :param _request_timeout: timeout setting for this request. If one
4437
- number provided, it will be total request
4438
- timeout. It can also be a pair (tuple) of
4439
- (connection, read) timeouts.
4436
+ :param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
4437
+ :param opts: Configuration options for this request
4438
+ :type opts: ConfigurationOptions, optional
4440
4439
  :param _request_auth: set to override the auth_settings for an a single
4441
4440
  request; this effectively ignores the authentication
4442
4441
  in the spec for a single request.
@@ -4469,7 +4468,8 @@ class PortfoliosApi:
4469
4468
  '_request_timeout',
4470
4469
  '_request_auth',
4471
4470
  '_content_type',
4472
- '_headers'
4471
+ '_headers',
4472
+ 'opts'
4473
4473
  ]
4474
4474
  )
4475
4475
 
@@ -4556,6 +4556,7 @@ class PortfoliosApi:
4556
4556
  _return_http_data_only=_params.get('_return_http_data_only'), # noqa: E501
4557
4557
  _preload_content=_params.get('_preload_content', True),
4558
4558
  _request_timeout=_params.get('_request_timeout'),
4559
+ opts=_params.get('opts'),
4559
4560
  collection_formats=_collection_formats,
4560
4561
  _request_auth=_params.get('_request_auth'))
4561
4562
 
@@ -4598,10 +4599,9 @@ class PortfoliosApi:
4598
4599
  :type relationship_definition_ids: List[str]
4599
4600
  :param async_req: Whether to execute the request asynchronously.
4600
4601
  :type async_req: bool, optional
4601
- :param _request_timeout: timeout setting for this request.
4602
- If one number provided, it will be total request
4603
- timeout. It can also be a pair (tuple) of
4604
- (connection, read) timeouts.
4602
+ :param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
4603
+ :param opts: Configuration options for this request
4604
+ :type opts: ConfigurationOptions, optional
4605
4605
  :return: Returns the result object.
4606
4606
  If the method is called asynchronously,
4607
4607
  returns the request thread.
@@ -4654,10 +4654,9 @@ class PortfoliosApi:
4654
4654
  :param _return_http_data_only: response data instead of ApiResponse
4655
4655
  object with status code, headers, etc
4656
4656
  :type _return_http_data_only: bool, optional
4657
- :param _request_timeout: timeout setting for this request. If one
4658
- number provided, it will be total request
4659
- timeout. It can also be a pair (tuple) of
4660
- (connection, read) timeouts.
4657
+ :param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
4658
+ :param opts: Configuration options for this request
4659
+ :type opts: ConfigurationOptions, optional
4661
4660
  :param _request_auth: set to override the auth_settings for an a single
4662
4661
  request; this effectively ignores the authentication
4663
4662
  in the spec for a single request.
@@ -4690,7 +4689,8 @@ class PortfoliosApi:
4690
4689
  '_request_timeout',
4691
4690
  '_request_auth',
4692
4691
  '_content_type',
4693
- '_headers'
4692
+ '_headers',
4693
+ 'opts'
4694
4694
  ]
4695
4695
  )
4696
4696
 
@@ -4777,6 +4777,7 @@ class PortfoliosApi:
4777
4777
  _return_http_data_only=_params.get('_return_http_data_only'), # noqa: E501
4778
4778
  _preload_content=_params.get('_preload_content', True),
4779
4779
  _request_timeout=_params.get('_request_timeout'),
4780
+ opts=_params.get('opts'),
4780
4781
  collection_formats=_collection_formats,
4781
4782
  _request_auth=_params.get('_request_auth'))
4782
4783
 
@@ -4807,10 +4808,9 @@ class PortfoliosApi:
4807
4808
  :type operation: List[Operation]
4808
4809
  :param async_req: Whether to execute the request asynchronously.
4809
4810
  :type async_req: bool, optional
4810
- :param _request_timeout: timeout setting for this request.
4811
- If one number provided, it will be total request
4812
- timeout. It can also be a pair (tuple) of
4813
- (connection, read) timeouts.
4811
+ :param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
4812
+ :param opts: Configuration options for this request
4813
+ :type opts: ConfigurationOptions, optional
4814
4814
  :return: Returns the result object.
4815
4815
  If the method is called asynchronously,
4816
4816
  returns the request thread.
@@ -4851,10 +4851,9 @@ class PortfoliosApi:
4851
4851
  :param _return_http_data_only: response data instead of ApiResponse
4852
4852
  object with status code, headers, etc
4853
4853
  :type _return_http_data_only: bool, optional
4854
- :param _request_timeout: timeout setting for this request. If one
4855
- number provided, it will be total request
4856
- timeout. It can also be a pair (tuple) of
4857
- (connection, read) timeouts.
4854
+ :param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
4855
+ :param opts: Configuration options for this request
4856
+ :type opts: ConfigurationOptions, optional
4858
4857
  :param _request_auth: set to override the auth_settings for an a single
4859
4858
  request; this effectively ignores the authentication
4860
4859
  in the spec for a single request.
@@ -4881,7 +4880,8 @@ class PortfoliosApi:
4881
4880
  '_request_timeout',
4882
4881
  '_request_auth',
4883
4882
  '_content_type',
4884
- '_headers'
4883
+ '_headers',
4884
+ 'opts'
4885
4885
  ]
4886
4886
  )
4887
4887
 
@@ -4951,6 +4951,7 @@ class PortfoliosApi:
4951
4951
  _return_http_data_only=_params.get('_return_http_data_only'), # noqa: E501
4952
4952
  _preload_content=_params.get('_preload_content', True),
4953
4953
  _request_timeout=_params.get('_request_timeout'),
4954
+ opts=_params.get('opts'),
4954
4955
  collection_formats=_collection_formats,
4955
4956
  _request_auth=_params.get('_request_auth'))
4956
4957
 
@@ -4985,10 +4986,9 @@ class PortfoliosApi:
4985
4986
  :type effective_until: datetime
4986
4987
  :param async_req: Whether to execute the request asynchronously.
4987
4988
  :type async_req: bool, optional
4988
- :param _request_timeout: timeout setting for this request.
4989
- If one number provided, it will be total request
4990
- timeout. It can also be a pair (tuple) of
4991
- (connection, read) timeouts.
4989
+ :param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
4990
+ :param opts: Configuration options for this request
4991
+ :type opts: ConfigurationOptions, optional
4992
4992
  :return: Returns the result object.
4993
4993
  If the method is called asynchronously,
4994
4994
  returns the request thread.
@@ -5033,10 +5033,9 @@ class PortfoliosApi:
5033
5033
  :param _return_http_data_only: response data instead of ApiResponse
5034
5034
  object with status code, headers, etc
5035
5035
  :type _return_http_data_only: bool, optional
5036
- :param _request_timeout: timeout setting for this request. If one
5037
- number provided, it will be total request
5038
- timeout. It can also be a pair (tuple) of
5039
- (connection, read) timeouts.
5036
+ :param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
5037
+ :param opts: Configuration options for this request
5038
+ :type opts: ConfigurationOptions, optional
5040
5039
  :param _request_auth: set to override the auth_settings for an a single
5041
5040
  request; this effectively ignores the authentication
5042
5041
  in the spec for a single request.
@@ -5065,7 +5064,8 @@ class PortfoliosApi:
5065
5064
  '_request_timeout',
5066
5065
  '_request_auth',
5067
5066
  '_content_type',
5068
- '_headers'
5067
+ '_headers',
5068
+ 'opts'
5069
5069
  ]
5070
5070
  )
5071
5071
 
@@ -5144,6 +5144,7 @@ class PortfoliosApi:
5144
5144
  _return_http_data_only=_params.get('_return_http_data_only'), # noqa: E501
5145
5145
  _preload_content=_params.get('_preload_content', True),
5146
5146
  _request_timeout=_params.get('_request_timeout'),
5147
+ opts=_params.get('opts'),
5147
5148
  collection_formats=_collection_formats,
5148
5149
  _request_auth=_params.get('_request_auth'))
5149
5150
 
@@ -5176,10 +5177,9 @@ class PortfoliosApi:
5176
5177
  :type effective_at: str
5177
5178
  :param async_req: Whether to execute the request asynchronously.
5178
5179
  :type async_req: bool, optional
5179
- :param _request_timeout: timeout setting for this request.
5180
- If one number provided, it will be total request
5181
- timeout. It can also be a pair (tuple) of
5182
- (connection, read) timeouts.
5180
+ :param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
5181
+ :param opts: Configuration options for this request
5182
+ :type opts: ConfigurationOptions, optional
5183
5183
  :return: Returns the result object.
5184
5184
  If the method is called asynchronously,
5185
5185
  returns the request thread.
@@ -5222,10 +5222,9 @@ class PortfoliosApi:
5222
5222
  :param _return_http_data_only: response data instead of ApiResponse
5223
5223
  object with status code, headers, etc
5224
5224
  :type _return_http_data_only: bool, optional
5225
- :param _request_timeout: timeout setting for this request. If one
5226
- number provided, it will be total request
5227
- timeout. It can also be a pair (tuple) of
5228
- (connection, read) timeouts.
5225
+ :param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
5226
+ :param opts: Configuration options for this request
5227
+ :type opts: ConfigurationOptions, optional
5229
5228
  :param _request_auth: set to override the auth_settings for an a single
5230
5229
  request; this effectively ignores the authentication
5231
5230
  in the spec for a single request.
@@ -5253,7 +5252,8 @@ class PortfoliosApi:
5253
5252
  '_request_timeout',
5254
5253
  '_request_auth',
5255
5254
  '_content_type',
5256
- '_headers'
5255
+ '_headers',
5256
+ 'opts'
5257
5257
  ]
5258
5258
  )
5259
5259
 
@@ -5326,6 +5326,7 @@ class PortfoliosApi:
5326
5326
  _return_http_data_only=_params.get('_return_http_data_only'), # noqa: E501
5327
5327
  _preload_content=_params.get('_preload_content', True),
5328
5328
  _request_timeout=_params.get('_request_timeout'),
5329
+ opts=_params.get('opts'),
5329
5330
  collection_formats=_collection_formats,
5330
5331
  _request_auth=_params.get('_request_auth'))
5331
5332
 
@@ -5360,10 +5361,9 @@ class PortfoliosApi:
5360
5361
  :type portfolio_effective_at: str
5361
5362
  :param async_req: Whether to execute the request asynchronously.
5362
5363
  :type async_req: bool, optional
5363
- :param _request_timeout: timeout setting for this request.
5364
- If one number provided, it will be total request
5365
- timeout. It can also be a pair (tuple) of
5366
- (connection, read) timeouts.
5364
+ :param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
5365
+ :param opts: Configuration options for this request
5366
+ :type opts: ConfigurationOptions, optional
5367
5367
  :return: Returns the result object.
5368
5368
  If the method is called asynchronously,
5369
5369
  returns the request thread.
@@ -5408,10 +5408,9 @@ class PortfoliosApi:
5408
5408
  :param _return_http_data_only: response data instead of ApiResponse
5409
5409
  object with status code, headers, etc
5410
5410
  :type _return_http_data_only: bool, optional
5411
- :param _request_timeout: timeout setting for this request. If one
5412
- number provided, it will be total request
5413
- timeout. It can also be a pair (tuple) of
5414
- (connection, read) timeouts.
5411
+ :param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
5412
+ :param opts: Configuration options for this request
5413
+ :type opts: ConfigurationOptions, optional
5415
5414
  :param _request_auth: set to override the auth_settings for an a single
5416
5415
  request; this effectively ignores the authentication
5417
5416
  in the spec for a single request.
@@ -5440,7 +5439,8 @@ class PortfoliosApi:
5440
5439
  '_request_timeout',
5441
5440
  '_request_auth',
5442
5441
  '_content_type',
5443
- '_headers'
5442
+ '_headers',
5443
+ 'opts'
5444
5444
  ]
5445
5445
  )
5446
5446
 
@@ -5516,6 +5516,7 @@ class PortfoliosApi:
5516
5516
  _return_http_data_only=_params.get('_return_http_data_only'), # noqa: E501
5517
5517
  _preload_content=_params.get('_preload_content', True),
5518
5518
  _request_timeout=_params.get('_request_timeout'),
5519
+ opts=_params.get('opts'),
5519
5520
  collection_formats=_collection_formats,
5520
5521
  _request_auth=_params.get('_request_auth'))
5521
5522
 
@@ -5552,10 +5553,9 @@ class PortfoliosApi:
5552
5553
  :type effective_until: datetime
5553
5554
  :param async_req: Whether to execute the request asynchronously.
5554
5555
  :type async_req: bool, optional
5555
- :param _request_timeout: timeout setting for this request.
5556
- If one number provided, it will be total request
5557
- timeout. It can also be a pair (tuple) of
5558
- (connection, read) timeouts.
5556
+ :param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
5557
+ :param opts: Configuration options for this request
5558
+ :type opts: ConfigurationOptions, optional
5559
5559
  :return: Returns the result object.
5560
5560
  If the method is called asynchronously,
5561
5561
  returns the request thread.
@@ -5602,10 +5602,9 @@ class PortfoliosApi:
5602
5602
  :param _return_http_data_only: response data instead of ApiResponse
5603
5603
  object with status code, headers, etc
5604
5604
  :type _return_http_data_only: bool, optional
5605
- :param _request_timeout: timeout setting for this request. If one
5606
- number provided, it will be total request
5607
- timeout. It can also be a pair (tuple) of
5608
- (connection, read) timeouts.
5605
+ :param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
5606
+ :param opts: Configuration options for this request
5607
+ :type opts: ConfigurationOptions, optional
5609
5608
  :param _request_auth: set to override the auth_settings for an a single
5610
5609
  request; this effectively ignores the authentication
5611
5610
  in the spec for a single request.
@@ -5635,7 +5634,8 @@ class PortfoliosApi:
5635
5634
  '_request_timeout',
5636
5635
  '_request_auth',
5637
5636
  '_content_type',
5638
- '_headers'
5637
+ '_headers',
5638
+ 'opts'
5639
5639
  ]
5640
5640
  )
5641
5641
 
@@ -5717,6 +5717,7 @@ class PortfoliosApi:
5717
5717
  _return_http_data_only=_params.get('_return_http_data_only'), # noqa: E501
5718
5718
  _preload_content=_params.get('_preload_content', True),
5719
5719
  _request_timeout=_params.get('_request_timeout'),
5720
+ opts=_params.get('opts'),
5720
5721
  collection_formats=_collection_formats,
5721
5722
  _request_auth=_params.get('_request_auth'))
5722
5723
 
@@ -5747,10 +5748,9 @@ class PortfoliosApi:
5747
5748
  :type request_body: Dict[str, ModelProperty]
5748
5749
  :param async_req: Whether to execute the request asynchronously.
5749
5750
  :type async_req: bool, optional
5750
- :param _request_timeout: timeout setting for this request.
5751
- If one number provided, it will be total request
5752
- timeout. It can also be a pair (tuple) of
5753
- (connection, read) timeouts.
5751
+ :param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
5752
+ :param opts: Configuration options for this request
5753
+ :type opts: ConfigurationOptions, optional
5754
5754
  :return: Returns the result object.
5755
5755
  If the method is called asynchronously,
5756
5756
  returns the request thread.
@@ -5791,10 +5791,9 @@ class PortfoliosApi:
5791
5791
  :param _return_http_data_only: response data instead of ApiResponse
5792
5792
  object with status code, headers, etc
5793
5793
  :type _return_http_data_only: bool, optional
5794
- :param _request_timeout: timeout setting for this request. If one
5795
- number provided, it will be total request
5796
- timeout. It can also be a pair (tuple) of
5797
- (connection, read) timeouts.
5794
+ :param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
5795
+ :param opts: Configuration options for this request
5796
+ :type opts: ConfigurationOptions, optional
5798
5797
  :param _request_auth: set to override the auth_settings for an a single
5799
5798
  request; this effectively ignores the authentication
5800
5799
  in the spec for a single request.
@@ -5821,7 +5820,8 @@ class PortfoliosApi:
5821
5820
  '_request_timeout',
5822
5821
  '_request_auth',
5823
5822
  '_content_type',
5824
- '_headers'
5823
+ '_headers',
5824
+ 'opts'
5825
5825
  ]
5826
5826
  )
5827
5827
 
@@ -5891,6 +5891,7 @@ class PortfoliosApi:
5891
5891
  _return_http_data_only=_params.get('_return_http_data_only'), # noqa: E501
5892
5892
  _preload_content=_params.get('_preload_content', True),
5893
5893
  _request_timeout=_params.get('_request_timeout'),
5894
+ opts=_params.get('opts'),
5894
5895
  collection_formats=_collection_formats,
5895
5896
  _request_auth=_params.get('_request_auth'))
5896
5897
 
@@ -5925,10 +5926,9 @@ class PortfoliosApi:
5925
5926
  :type performance_return: List[PerformanceReturn]
5926
5927
  :param async_req: Whether to execute the request asynchronously.
5927
5928
  :type async_req: bool, optional
5928
- :param _request_timeout: timeout setting for this request.
5929
- If one number provided, it will be total request
5930
- timeout. It can also be a pair (tuple) of
5931
- (connection, read) timeouts.
5929
+ :param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
5930
+ :param opts: Configuration options for this request
5931
+ :type opts: ConfigurationOptions, optional
5932
5932
  :return: Returns the result object.
5933
5933
  If the method is called asynchronously,
5934
5934
  returns the request thread.
@@ -5973,10 +5973,9 @@ class PortfoliosApi:
5973
5973
  :param _return_http_data_only: response data instead of ApiResponse
5974
5974
  object with status code, headers, etc
5975
5975
  :type _return_http_data_only: bool, optional
5976
- :param _request_timeout: timeout setting for this request. If one
5977
- number provided, it will be total request
5978
- timeout. It can also be a pair (tuple) of
5979
- (connection, read) timeouts.
5976
+ :param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
5977
+ :param opts: Configuration options for this request
5978
+ :type opts: ConfigurationOptions, optional
5980
5979
  :param _request_auth: set to override the auth_settings for an a single
5981
5980
  request; this effectively ignores the authentication
5982
5981
  in the spec for a single request.
@@ -6005,7 +6004,8 @@ class PortfoliosApi:
6005
6004
  '_request_timeout',
6006
6005
  '_request_auth',
6007
6006
  '_content_type',
6008
- '_headers'
6007
+ '_headers',
6008
+ 'opts'
6009
6009
  ]
6010
6010
  )
6011
6011
 
@@ -6081,5 +6081,6 @@ class PortfoliosApi:
6081
6081
  _return_http_data_only=_params.get('_return_http_data_only'), # noqa: E501
6082
6082
  _preload_content=_params.get('_preload_content', True),
6083
6083
  _request_timeout=_params.get('_request_timeout'),
6084
+ opts=_params.get('opts'),
6084
6085
  collection_formats=_collection_formats,
6085
6086
  _request_auth=_params.get('_request_auth'))