lusid-sdk 2.1.390__py3-none-any.whl → 2.1.462__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 (252) hide show
  1. lusid/__init__.py +98 -8
  2. lusid/api/__init__.py +2 -2
  3. lusid/api/abor_api.py +126 -133
  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 +39 -38
  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 +454 -279
  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 +102 -101
  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 +431 -46
  26. lusid/api/executions_api.py +37 -36
  27. lusid/api/fee_types_api.py +55 -54
  28. lusid/api/{fund_configurations_api.py → fund_configuration_api.py} +222 -46
  29. lusid/api/funds_api.py +337 -162
  30. lusid/api/group_reconciliations_api.py +1437 -45
  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 +187 -186
  34. lusid/api/legacy_compliance_api.py +73 -72
  35. lusid/api/legal_entities_api.py +167 -166
  36. lusid/api/order_graph_api.py +32 -31
  37. lusid/api/order_instructions_api.py +37 -36
  38. lusid/api/order_management_api.py +276 -102
  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 +167 -166
  43. lusid/api/placements_api.py +37 -36
  44. lusid/api/portfolio_groups_api.py +235 -234
  45. lusid/api/portfolios_api.py +449 -272
  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 +39 -38
  51. lusid/api/reference_portfolio_api.py +213 -36
  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 +569 -326
  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 +96 -6
  81. lusid/models/access_metadata_value.py +1 -1
  82. lusid/models/accounting_method.py +7 -0
  83. lusid/models/accumulation_event.py +3 -3
  84. lusid/models/address_key_list.py +3 -3
  85. lusid/models/amortisation_event.py +3 -3
  86. lusid/models/amount.py +69 -0
  87. lusid/models/basket.py +3 -3
  88. lusid/models/batch_upsert_dates_for_calendar_response.py +146 -0
  89. lusid/models/batch_upsert_portfolio_access_metadata_request.py +92 -0
  90. lusid/models/batch_upsert_portfolio_access_metadata_response.py +122 -0
  91. lusid/models/batch_upsert_portfolio_access_metadata_response_item.py +92 -0
  92. lusid/models/bond.py +3 -3
  93. lusid/models/bond_coupon_event.py +3 -3
  94. lusid/models/bond_default_event.py +3 -3
  95. lusid/models/bond_principal_event.py +3 -3
  96. lusid/models/bonus_issue_event.py +166 -0
  97. lusid/models/{component_rule.py → break_code_source.py} +17 -21
  98. lusid/models/cancel_order_and_move_remaining_result.py +84 -0
  99. lusid/models/cancel_orders_and_move_remaining_request.py +83 -0
  100. lusid/models/cancel_orders_and_move_remaining_response.py +153 -0
  101. lusid/models/cap_floor.py +3 -3
  102. lusid/models/capital_distribution_event.py +3 -3
  103. lusid/models/cash.py +3 -3
  104. lusid/models/cash_dividend_event.py +3 -3
  105. lusid/models/cash_flow_event.py +3 -3
  106. lusid/models/cash_perpetual.py +3 -3
  107. lusid/models/cds_credit_event.py +105 -0
  108. lusid/models/cds_index.py +3 -3
  109. lusid/models/cdx_credit_event.py +114 -0
  110. lusid/models/change_interval.py +123 -0
  111. lusid/models/change_interval_with_order_management_detail.py +137 -0
  112. lusid/models/close_event.py +3 -3
  113. lusid/models/complex_bond.py +3 -3
  114. lusid/models/contract_for_difference.py +3 -3
  115. lusid/models/create_derived_transaction_portfolio_request.py +3 -3
  116. lusid/models/create_group_reconciliation_definition_request.py +113 -0
  117. lusid/models/create_transaction_portfolio_request.py +3 -3
  118. lusid/models/credit_default_swap.py +3 -3
  119. lusid/models/credit_premium_cash_flow_event.py +102 -0
  120. lusid/models/custom_entity_entity.py +146 -0
  121. lusid/models/custom_entity_response.py +7 -1
  122. lusid/models/decimal_list.py +3 -3
  123. lusid/models/diary_entry_request.py +10 -1
  124. lusid/models/dividend_option_event.py +3 -3
  125. lusid/models/dividend_reinvestment_event.py +3 -3
  126. lusid/models/effective_range.py +71 -0
  127. lusid/models/equity.py +3 -3
  128. lusid/models/equity_option.py +3 -3
  129. lusid/models/equity_swap.py +3 -3
  130. lusid/models/exchange_traded_option.py +3 -3
  131. lusid/models/exercise_event.py +3 -3
  132. lusid/models/exotic_instrument.py +3 -3
  133. lusid/models/expiry_event.py +3 -3
  134. lusid/models/fee.py +8 -8
  135. lusid/models/fee_request.py +8 -8
  136. lusid/models/fee_type.py +4 -4
  137. lusid/models/fee_type_request.py +3 -3
  138. lusid/models/fixed_leg.py +3 -3
  139. lusid/models/fixed_schedule.py +3 -3
  140. lusid/models/flexible_loan.py +3 -3
  141. lusid/models/float_schedule.py +4 -4
  142. lusid/models/floating_leg.py +3 -3
  143. lusid/models/flow_conventions.py +7 -1
  144. lusid/models/forward_rate_agreement.py +3 -3
  145. lusid/models/fund_configuration.py +44 -17
  146. lusid/models/fund_configuration_request.py +31 -19
  147. lusid/models/fund_id_list.py +99 -0
  148. lusid/models/fund_share_class.py +23 -8
  149. lusid/models/funding_leg.py +3 -3
  150. lusid/models/future.py +3 -3
  151. lusid/models/future_expiry_event.py +3 -3
  152. lusid/models/fx_forward.py +3 -3
  153. lusid/models/fx_forward_settlement_event.py +13 -5
  154. lusid/models/fx_option.py +3 -3
  155. lusid/models/fx_swap.py +3 -3
  156. lusid/models/group_reconciliation_aggregate_attribute_rule.py +2 -2
  157. lusid/models/group_reconciliation_aggregate_comparison_rule_operand.py +1 -1
  158. lusid/models/group_reconciliation_core_comparison_rule_operand.py +1 -1
  159. lusid/models/group_reconciliation_definition.py +136 -0
  160. lusid/models/group_reconciliation_definition_comparison_ruleset_ids.py +83 -0
  161. lusid/models/group_reconciliation_definition_currencies.py +71 -0
  162. lusid/models/group_reconciliation_definition_portfolio_entity_ids.py +86 -0
  163. lusid/models/group_reconciliation_definition_recipe_ids.py +78 -0
  164. lusid/models/holding_contributor.py +11 -4
  165. lusid/models/holding_ids_request.py +69 -0
  166. lusid/models/holding_pricing_info.py +110 -0
  167. lusid/models/inflation_leg.py +3 -3
  168. lusid/models/inflation_linked_bond.py +3 -3
  169. lusid/models/inflation_swap.py +3 -3
  170. lusid/models/informational_error_event.py +3 -3
  171. lusid/models/informational_event.py +3 -3
  172. lusid/models/instrument.py +7 -1
  173. lusid/models/instrument_definition.py +8 -2
  174. lusid/models/instrument_event.py +15 -5
  175. lusid/models/instrument_event_holder.py +9 -1
  176. lusid/models/instrument_event_type.py +10 -0
  177. lusid/models/instrument_leg.py +3 -3
  178. lusid/models/instrument_list.py +3 -3
  179. lusid/models/instrument_type.py +2 -0
  180. lusid/models/interest_rate_swap.py +3 -3
  181. lusid/models/interest_rate_swaption.py +3 -3
  182. lusid/models/lapse_election.py +73 -0
  183. lusid/models/loan_facility.py +97 -0
  184. lusid/models/lusid_instrument.py +7 -5
  185. lusid/models/market_data_key_rule.py +5 -3
  186. lusid/models/market_data_specific_rule.py +5 -3
  187. lusid/models/mastered_instrument.py +139 -0
  188. lusid/models/maturity_event.py +3 -3
  189. lusid/models/mbs_coupon_event.py +97 -0
  190. lusid/models/mbs_interest_deferral_event.py +97 -0
  191. lusid/models/mbs_interest_shortfall_event.py +97 -0
  192. lusid/models/mbs_principal_event.py +97 -0
  193. lusid/models/mbs_principal_write_off_event.py +97 -0
  194. lusid/models/merger_event.py +22 -22
  195. lusid/models/open_event.py +3 -3
  196. lusid/models/output_transaction.py +9 -2
  197. lusid/models/paged_resource_list_of_group_reconciliation_comparison_ruleset.py +113 -0
  198. lusid/models/paged_resource_list_of_group_reconciliation_definition.py +113 -0
  199. lusid/models/portfolio.py +3 -3
  200. lusid/models/portfolio_details.py +3 -3
  201. lusid/models/portfolio_group_id_list.py +3 -3
  202. lusid/models/portfolio_id_list.py +3 -3
  203. lusid/models/portfolio_without_href.py +3 -3
  204. lusid/models/pricing_context.py +8 -2
  205. lusid/models/property_list.py +3 -3
  206. lusid/models/raw_vendor_event.py +3 -3
  207. lusid/models/reference_instrument.py +3 -3
  208. lusid/models/reference_list.py +6 -5
  209. lusid/models/reference_list_type.py +1 -0
  210. lusid/models/repo.py +3 -3
  211. lusid/models/reset_event.py +3 -3
  212. lusid/models/{resource_list_of_entity_change_item.py → resource_list_of_change_interval.py} +11 -11
  213. lusid/models/resource_list_of_change_interval_with_order_management_detail.py +113 -0
  214. lusid/models/reverse_stock_split_event.py +21 -7
  215. lusid/models/scrip_dividend_event.py +3 -3
  216. lusid/models/settlement_cycle.py +79 -0
  217. lusid/models/share_class_dealing_breakdown.py +3 -2
  218. lusid/models/share_class_details.py +18 -1
  219. lusid/models/simple_cash_flow_loan.py +3 -3
  220. lusid/models/simple_instrument.py +3 -3
  221. lusid/models/simple_rounding_convention.py +76 -0
  222. lusid/models/specific_holding_pricing_info.py +75 -0
  223. lusid/models/spin_off_event.py +3 -3
  224. lusid/models/staged_modification.py +8 -1
  225. lusid/models/staged_modification_effective_range.py +2 -2
  226. lusid/models/stock_dividend_event.py +20 -6
  227. lusid/models/stock_split_event.py +3 -3
  228. lusid/models/string_list.py +3 -3
  229. lusid/models/swap_cash_flow_event.py +3 -3
  230. lusid/models/swap_principal_event.py +3 -3
  231. lusid/models/tender_event.py +172 -0
  232. lusid/models/term_deposit.py +3 -3
  233. lusid/models/total_return_swap.py +3 -3
  234. lusid/models/transaction.py +9 -2
  235. lusid/models/transaction_date_windows.py +85 -0
  236. lusid/models/transaction_request.py +9 -2
  237. lusid/models/transition_event.py +3 -3
  238. lusid/models/trigger_event.py +3 -3
  239. lusid/models/update_fee_type_request.py +4 -4
  240. lusid/models/update_group_reconciliation_comparison_ruleset_request.py +91 -0
  241. lusid/models/update_group_reconciliation_definition_request.py +107 -0
  242. lusid/models/update_reference_data_request.py +87 -0
  243. lusid/models/upsert_custom_entities_response.py +20 -1
  244. lusid/models/upsert_reference_portfolio_constituent_properties_request.py +84 -0
  245. lusid/models/upsert_reference_portfolio_constituent_properties_response.py +115 -0
  246. lusid/models/valuation_point_data_query_parameters.py +3 -3
  247. lusid/models/valuation_point_data_response.py +8 -13
  248. lusid/rest.py +70 -20
  249. {lusid_sdk-2.1.390.dist-info → lusid_sdk-2.1.462.dist-info}/METADATA +90 -25
  250. {lusid_sdk-2.1.390.dist-info → lusid_sdk-2.1.462.dist-info}/RECORD +251 -205
  251. lusid/models/entity_change_item.py +0 -121
  252. {lusid_sdk-2.1.390.dist-info → lusid_sdk-2.1.462.dist-info}/WHEEL +0 -0
@@ -31,6 +31,8 @@ from lusid.models.access_metadata_value import AccessMetadataValue
31
31
  from lusid.models.aggregated_returns_dispersion_request import AggregatedReturnsDispersionRequest
32
32
  from lusid.models.aggregated_returns_request import AggregatedReturnsRequest
33
33
  from lusid.models.aggregated_returns_response import AggregatedReturnsResponse
34
+ from lusid.models.batch_upsert_portfolio_access_metadata_request import BatchUpsertPortfolioAccessMetadataRequest
35
+ from lusid.models.batch_upsert_portfolio_access_metadata_response import BatchUpsertPortfolioAccessMetadataResponse
34
36
  from lusid.models.composite_breakdown_request import CompositeBreakdownRequest
35
37
  from lusid.models.composite_breakdown_response import CompositeBreakdownResponse
36
38
  from lusid.models.composite_dispersion_response import CompositeDispersionResponse
@@ -63,6 +65,7 @@ from lusid.exceptions import ( # noqa: F401
63
65
  ApiTypeError,
64
66
  ApiValueError
65
67
  )
68
+ from lusid.extensions.configuration_options import ConfigurationOptions
66
69
 
67
70
 
68
71
  class PortfoliosApi:
@@ -77,6 +80,180 @@ class PortfoliosApi:
77
80
  api_client = ApiClient.get_default()
78
81
  self.api_client = api_client
79
82
 
83
+ @overload
84
+ async def batch_upsert_portfolio_access_metadata(self, request_body : Annotated[Dict[str, BatchUpsertPortfolioAccessMetadataRequest], Field(..., description="The Access Metadata Rules to upsert and the Portfolio identifiers to upsert for")], effective_at : Annotated[Optional[StrictStr], Field(description="The date these rules will be effective from")] = None, effective_until : Annotated[Optional[StrictStr], Field(description="The effective date until which the Access Metadata is valid. If not supplied, this will be valid indefinitely, or until the next 'effectiveAt' date of the Access Metadata")] = None, **kwargs) -> BatchUpsertPortfolioAccessMetadataResponse: # noqa: E501
85
+ ...
86
+
87
+ @overload
88
+ def batch_upsert_portfolio_access_metadata(self, request_body : Annotated[Dict[str, BatchUpsertPortfolioAccessMetadataRequest], Field(..., description="The Access Metadata Rules to upsert and the Portfolio identifiers to upsert for")], effective_at : Annotated[Optional[StrictStr], Field(description="The date these rules will be effective from")] = None, effective_until : Annotated[Optional[StrictStr], Field(description="The effective date until which the Access Metadata is valid. If not supplied, this will be valid indefinitely, or until the next 'effectiveAt' date of the Access Metadata")] = None, async_req: Optional[bool]=True, **kwargs) -> BatchUpsertPortfolioAccessMetadataResponse: # noqa: E501
89
+ ...
90
+
91
+ @validate_arguments
92
+ def batch_upsert_portfolio_access_metadata(self, request_body : Annotated[Dict[str, BatchUpsertPortfolioAccessMetadataRequest], Field(..., description="The Access Metadata Rules to upsert and the Portfolio identifiers to upsert for")], effective_at : Annotated[Optional[StrictStr], Field(description="The date these rules will be effective from")] = None, effective_until : Annotated[Optional[StrictStr], Field(description="The effective date until which the Access Metadata is valid. If not supplied, this will be valid indefinitely, or until the next 'effectiveAt' date of the Access Metadata")] = None, async_req: Optional[bool]=None, **kwargs) -> Union[BatchUpsertPortfolioAccessMetadataResponse, Awaitable[BatchUpsertPortfolioAccessMetadataResponse]]: # noqa: E501
93
+ """[EARLY ACCESS] BatchUpsertPortfolioAccessMetadata: Upsert multiple Portfolio Access Metadata Rules to multiple Portfolios # noqa: E501
94
+
95
+ Update or insert multiple Access Metadata rules for multiple Portfolios. Items will be updated if they already exist and inserted if they do not. No other items will be affected The response will return the successfully updated or inserted Portfolio Access Metadata Rules or a failure message if unsuccessful Multiple rules for a metadataKey can exist with different effective at dates, when resources are accessed the rule that is active for the current time will be fetched # noqa: E501
96
+ This method makes a synchronous HTTP request by default. To make an
97
+ asynchronous HTTP request, please pass async_req=True
98
+
99
+ >>> thread = api.batch_upsert_portfolio_access_metadata(request_body, effective_at, effective_until, async_req=True)
100
+ >>> result = thread.get()
101
+
102
+ :param request_body: The Access Metadata Rules to upsert and the Portfolio identifiers to upsert for (required)
103
+ :type request_body: Dict[str, BatchUpsertPortfolioAccessMetadataRequest]
104
+ :param effective_at: The date these rules will be effective from
105
+ :type effective_at: str
106
+ :param effective_until: The effective date until which the Access Metadata is valid. If not supplied, this will be valid indefinitely, or until the next 'effectiveAt' date of the Access Metadata
107
+ :type effective_until: str
108
+ :param async_req: Whether to execute the request asynchronously.
109
+ :type async_req: bool, optional
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
+ :return: Returns the result object.
114
+ If the method is called asynchronously,
115
+ returns the request thread.
116
+ :rtype: BatchUpsertPortfolioAccessMetadataResponse
117
+ """
118
+ kwargs['_return_http_data_only'] = True
119
+ if '_preload_content' in kwargs:
120
+ message = "Error! Please call the batch_upsert_portfolio_access_metadata_with_http_info method with `_preload_content` instead and obtain raw data from ApiResponse.raw_data" # noqa: E501
121
+ raise ValueError(message)
122
+ if async_req is not None:
123
+ kwargs['async_req'] = async_req
124
+ return self.batch_upsert_portfolio_access_metadata_with_http_info(request_body, effective_at, effective_until, **kwargs) # noqa: E501
125
+
126
+ @validate_arguments
127
+ def batch_upsert_portfolio_access_metadata_with_http_info(self, request_body : Annotated[Dict[str, BatchUpsertPortfolioAccessMetadataRequest], Field(..., description="The Access Metadata Rules to upsert and the Portfolio identifiers to upsert for")], effective_at : Annotated[Optional[StrictStr], Field(description="The date these rules will be effective from")] = None, effective_until : Annotated[Optional[StrictStr], Field(description="The effective date until which the Access Metadata is valid. If not supplied, this will be valid indefinitely, or until the next 'effectiveAt' date of the Access Metadata")] = None, **kwargs) -> ApiResponse: # noqa: E501
128
+ """[EARLY ACCESS] BatchUpsertPortfolioAccessMetadata: Upsert multiple Portfolio Access Metadata Rules to multiple Portfolios # noqa: E501
129
+
130
+ Update or insert multiple Access Metadata rules for multiple Portfolios. Items will be updated if they already exist and inserted if they do not. No other items will be affected The response will return the successfully updated or inserted Portfolio Access Metadata Rules or a failure message if unsuccessful Multiple rules for a metadataKey can exist with different effective at dates, when resources are accessed the rule that is active for the current time will be fetched # noqa: E501
131
+ This method makes a synchronous HTTP request by default. To make an
132
+ asynchronous HTTP request, please pass async_req=True
133
+
134
+ >>> thread = api.batch_upsert_portfolio_access_metadata_with_http_info(request_body, effective_at, effective_until, async_req=True)
135
+ >>> result = thread.get()
136
+
137
+ :param request_body: The Access Metadata Rules to upsert and the Portfolio identifiers to upsert for (required)
138
+ :type request_body: Dict[str, BatchUpsertPortfolioAccessMetadataRequest]
139
+ :param effective_at: The date these rules will be effective from
140
+ :type effective_at: str
141
+ :param effective_until: The effective date until which the Access Metadata is valid. If not supplied, this will be valid indefinitely, or until the next 'effectiveAt' date of the Access Metadata
142
+ :type effective_until: str
143
+ :param async_req: Whether to execute the request asynchronously.
144
+ :type async_req: bool, optional
145
+ :param _preload_content: if False, the ApiResponse.data will
146
+ be set to none and raw_data will store the
147
+ HTTP response body without reading/decoding.
148
+ Default is True.
149
+ :type _preload_content: bool, optional
150
+ :param _return_http_data_only: response data instead of ApiResponse
151
+ object with status code, headers, etc
152
+ :type _return_http_data_only: bool, optional
153
+ :param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
154
+ :param opts: Configuration options for this request
155
+ :type opts: ConfigurationOptions, optional
156
+ :param _request_auth: set to override the auth_settings for an a single
157
+ request; this effectively ignores the authentication
158
+ in the spec for a single request.
159
+ :type _request_auth: dict, optional
160
+ :type _content_type: string, optional: force content-type for the request
161
+ :return: Returns the result object.
162
+ If the method is called asynchronously,
163
+ returns the request thread.
164
+ :rtype: tuple(BatchUpsertPortfolioAccessMetadataResponse, status_code(int), headers(HTTPHeaderDict))
165
+ """
166
+
167
+ _params = locals()
168
+
169
+ _all_params = [
170
+ 'request_body',
171
+ 'effective_at',
172
+ 'effective_until'
173
+ ]
174
+ _all_params.extend(
175
+ [
176
+ 'async_req',
177
+ '_return_http_data_only',
178
+ '_preload_content',
179
+ '_request_timeout',
180
+ '_request_auth',
181
+ '_content_type',
182
+ '_headers',
183
+ 'opts'
184
+ ]
185
+ )
186
+
187
+ # validate the arguments
188
+ for _key, _val in _params['kwargs'].items():
189
+ if _key not in _all_params:
190
+ raise ApiTypeError(
191
+ "Got an unexpected keyword argument '%s'"
192
+ " to method batch_upsert_portfolio_access_metadata" % _key
193
+ )
194
+ _params[_key] = _val
195
+ del _params['kwargs']
196
+
197
+ _collection_formats = {}
198
+
199
+ # process the path parameters
200
+ _path_params = {}
201
+
202
+ # process the query parameters
203
+ _query_params = []
204
+ if _params.get('effective_at') is not None: # noqa: E501
205
+ _query_params.append(('effectiveAt', _params['effective_at']))
206
+
207
+ if _params.get('effective_until') is not None: # noqa: E501
208
+ _query_params.append(('effectiveUntil', _params['effective_until']))
209
+
210
+ # process the header parameters
211
+ _header_params = dict(_params.get('_headers', {}))
212
+ # process the form parameters
213
+ _form_params = []
214
+ _files = {}
215
+ # process the body parameter
216
+ _body_params = None
217
+ if _params['request_body'] is not None:
218
+ _body_params = _params['request_body']
219
+
220
+ # set the HTTP header `Accept`
221
+ _header_params['Accept'] = self.api_client.select_header_accept(
222
+ ['text/plain', 'application/json', 'text/json']) # noqa: E501
223
+
224
+ # set the HTTP header `Content-Type`
225
+ _content_types_list = _params.get('_content_type',
226
+ self.api_client.select_header_content_type(
227
+ ['application/json-patch+json', 'application/json', 'text/json', 'application/*+json']))
228
+ if _content_types_list:
229
+ _header_params['Content-Type'] = _content_types_list
230
+
231
+ # authentication setting
232
+ _auth_settings = ['oauth2'] # noqa: E501
233
+
234
+ _response_types_map = {
235
+ '200': "BatchUpsertPortfolioAccessMetadataResponse",
236
+ '400': "LusidValidationProblemDetails",
237
+ }
238
+
239
+ return self.api_client.call_api(
240
+ '/api/portfolios/metadata', 'PUT',
241
+ _path_params,
242
+ _query_params,
243
+ _header_params,
244
+ body=_body_params,
245
+ post_params=_form_params,
246
+ files=_files,
247
+ response_types_map=_response_types_map,
248
+ auth_settings=_auth_settings,
249
+ async_req=_params.get('async_req'),
250
+ _return_http_data_only=_params.get('_return_http_data_only'), # noqa: E501
251
+ _preload_content=_params.get('_preload_content', True),
252
+ _request_timeout=_params.get('_request_timeout'),
253
+ opts=_params.get('opts'),
254
+ collection_formats=_collection_formats,
255
+ _request_auth=_params.get('_request_auth'))
256
+
80
257
  @overload
81
258
  async def delete_instrument_event_instruction(self, scope : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The scope of the portfolio.")], code : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The code of the portfolio. Together with the scope this uniquely identifies the portfolio.")], instrument_event_instruction_id : Annotated[StrictStr, Field(..., description="The id of the instruction to be deleted.")], portfolio_effective_at : Annotated[Optional[constr(strict=True, max_length=6000, min_length=0)], Field(description="The effective date at which the portfolio will be resolved. Defaults to current time if not specified.")] = None, **kwargs) -> DeletedEntityResponse: # noqa: E501
82
259
  ...
@@ -106,10 +283,9 @@ class PortfoliosApi:
106
283
  :type portfolio_effective_at: str
107
284
  :param async_req: Whether to execute the request asynchronously.
108
285
  :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.
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
113
289
  :return: Returns the result object.
114
290
  If the method is called asynchronously,
115
291
  returns the request thread.
@@ -152,10 +328,9 @@ class PortfoliosApi:
152
328
  :param _return_http_data_only: response data instead of ApiResponse
153
329
  object with status code, headers, etc
154
330
  :type _return_http_data_only: bool, optional
155
- :param _request_timeout: timeout setting for this request. If one
156
- number provided, it will be total request
157
- timeout. It can also be a pair (tuple) of
158
- (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
159
334
  :param _request_auth: set to override the auth_settings for an a single
160
335
  request; this effectively ignores the authentication
161
336
  in the spec for a single request.
@@ -183,7 +358,8 @@ class PortfoliosApi:
183
358
  '_request_timeout',
184
359
  '_request_auth',
185
360
  '_content_type',
186
- '_headers'
361
+ '_headers',
362
+ 'opts'
187
363
  ]
188
364
  )
189
365
 
@@ -249,6 +425,7 @@ class PortfoliosApi:
249
425
  _return_http_data_only=_params.get('_return_http_data_only'), # noqa: E501
250
426
  _preload_content=_params.get('_preload_content', True),
251
427
  _request_timeout=_params.get('_request_timeout'),
428
+ opts=_params.get('opts'),
252
429
  collection_formats=_collection_formats,
253
430
  _request_auth=_params.get('_request_auth'))
254
431
 
@@ -283,10 +460,9 @@ class PortfoliosApi:
283
460
  :type effective_until: datetime
284
461
  :param async_req: Whether to execute the request asynchronously.
285
462
  :type async_req: bool, optional
286
- :param _request_timeout: timeout setting for this request.
287
- If one number provided, it will be total request
288
- timeout. It can also be a pair (tuple) of
289
- (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
290
466
  :return: Returns the result object.
291
467
  If the method is called asynchronously,
292
468
  returns the request thread.
@@ -331,10 +507,9 @@ class PortfoliosApi:
331
507
  :param _return_http_data_only: response data instead of ApiResponse
332
508
  object with status code, headers, etc
333
509
  :type _return_http_data_only: bool, optional
334
- :param _request_timeout: timeout setting for this request. If one
335
- number provided, it will be total request
336
- timeout. It can also be a pair (tuple) of
337
- (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
338
513
  :param _request_auth: set to override the auth_settings for an a single
339
514
  request; this effectively ignores the authentication
340
515
  in the spec for a single request.
@@ -363,7 +538,8 @@ class PortfoliosApi:
363
538
  '_request_timeout',
364
539
  '_request_auth',
365
540
  '_content_type',
366
- '_headers'
541
+ '_headers',
542
+ 'opts'
367
543
  ]
368
544
  )
369
545
 
@@ -435,6 +611,7 @@ class PortfoliosApi:
435
611
  _return_http_data_only=_params.get('_return_http_data_only'), # noqa: E501
436
612
  _preload_content=_params.get('_preload_content', True),
437
613
  _request_timeout=_params.get('_request_timeout'),
614
+ opts=_params.get('opts'),
438
615
  collection_formats=_collection_formats,
439
616
  _request_auth=_params.get('_request_auth'))
440
617
 
@@ -463,10 +640,9 @@ class PortfoliosApi:
463
640
  :type code: str
464
641
  :param async_req: Whether to execute the request asynchronously.
465
642
  :type async_req: bool, optional
466
- :param _request_timeout: timeout setting for this request.
467
- If one number provided, it will be total request
468
- timeout. It can also be a pair (tuple) of
469
- (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
470
646
  :return: Returns the result object.
471
647
  If the method is called asynchronously,
472
648
  returns the request thread.
@@ -505,10 +681,9 @@ class PortfoliosApi:
505
681
  :param _return_http_data_only: response data instead of ApiResponse
506
682
  object with status code, headers, etc
507
683
  :type _return_http_data_only: bool, optional
508
- :param _request_timeout: timeout setting for this request. If one
509
- number provided, it will be total request
510
- timeout. It can also be a pair (tuple) of
511
- (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
512
687
  :param _request_auth: set to override the auth_settings for an a single
513
688
  request; this effectively ignores the authentication
514
689
  in the spec for a single request.
@@ -534,7 +709,8 @@ class PortfoliosApi:
534
709
  '_request_timeout',
535
710
  '_request_auth',
536
711
  '_content_type',
537
- '_headers'
712
+ '_headers',
713
+ 'opts'
538
714
  ]
539
715
  )
540
716
 
@@ -594,6 +770,7 @@ class PortfoliosApi:
594
770
  _return_http_data_only=_params.get('_return_http_data_only'), # noqa: E501
595
771
  _preload_content=_params.get('_preload_content', True),
596
772
  _request_timeout=_params.get('_request_timeout'),
773
+ opts=_params.get('opts'),
597
774
  collection_formats=_collection_formats,
598
775
  _request_auth=_params.get('_request_auth'))
599
776
 
@@ -626,10 +803,9 @@ class PortfoliosApi:
626
803
  :type effective_at: str
627
804
  :param async_req: Whether to execute the request asynchronously.
628
805
  :type async_req: bool, optional
629
- :param _request_timeout: timeout setting for this request.
630
- If one number provided, it will be total request
631
- timeout. It can also be a pair (tuple) of
632
- (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
633
809
  :return: Returns the result object.
634
810
  If the method is called asynchronously,
635
811
  returns the request thread.
@@ -672,10 +848,9 @@ class PortfoliosApi:
672
848
  :param _return_http_data_only: response data instead of ApiResponse
673
849
  object with status code, headers, etc
674
850
  :type _return_http_data_only: bool, optional
675
- :param _request_timeout: timeout setting for this request. If one
676
- number provided, it will be total request
677
- timeout. It can also be a pair (tuple) of
678
- (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
679
854
  :param _request_auth: set to override the auth_settings for an a single
680
855
  request; this effectively ignores the authentication
681
856
  in the spec for a single request.
@@ -703,7 +878,8 @@ class PortfoliosApi:
703
878
  '_request_timeout',
704
879
  '_request_auth',
705
880
  '_content_type',
706
- '_headers'
881
+ '_headers',
882
+ 'opts'
707
883
  ]
708
884
  )
709
885
 
@@ -770,6 +946,7 @@ class PortfoliosApi:
770
946
  _return_http_data_only=_params.get('_return_http_data_only'), # noqa: E501
771
947
  _preload_content=_params.get('_preload_content', True),
772
948
  _request_timeout=_params.get('_request_timeout'),
949
+ opts=_params.get('opts'),
773
950
  collection_formats=_collection_formats,
774
951
  _request_auth=_params.get('_request_auth'))
775
952
 
@@ -808,10 +985,9 @@ class PortfoliosApi:
808
985
  :type period: str
809
986
  :param async_req: Whether to execute the request asynchronously.
810
987
  :type async_req: bool, optional
811
- :param _request_timeout: timeout setting for this request.
812
- If one number provided, it will be total request
813
- timeout. It can also be a pair (tuple) of
814
- (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
815
991
  :return: Returns the result object.
816
992
  If the method is called asynchronously,
817
993
  returns the request thread.
@@ -860,10 +1036,9 @@ class PortfoliosApi:
860
1036
  :param _return_http_data_only: response data instead of ApiResponse
861
1037
  object with status code, headers, etc
862
1038
  :type _return_http_data_only: bool, optional
863
- :param _request_timeout: timeout setting for this request. If one
864
- number provided, it will be total request
865
- timeout. It can also be a pair (tuple) of
866
- (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
867
1042
  :param _request_auth: set to override the auth_settings for an a single
868
1043
  request; this effectively ignores the authentication
869
1044
  in the spec for a single request.
@@ -894,7 +1069,8 @@ class PortfoliosApi:
894
1069
  '_request_timeout',
895
1070
  '_request_auth',
896
1071
  '_content_type',
897
- '_headers'
1072
+ '_headers',
1073
+ 'opts'
898
1074
  ]
899
1075
  )
900
1076
 
@@ -969,6 +1145,7 @@ class PortfoliosApi:
969
1145
  _return_http_data_only=_params.get('_return_http_data_only'), # noqa: E501
970
1146
  _preload_content=_params.get('_preload_content', True),
971
1147
  _request_timeout=_params.get('_request_timeout'),
1148
+ opts=_params.get('opts'),
972
1149
  collection_formats=_collection_formats,
973
1150
  _request_auth=_params.get('_request_auth'))
974
1151
 
@@ -1001,10 +1178,9 @@ class PortfoliosApi:
1001
1178
  :type as_at: datetime
1002
1179
  :param async_req: Whether to execute the request asynchronously.
1003
1180
  :type async_req: bool, optional
1004
- :param _request_timeout: timeout setting for this request.
1005
- If one number provided, it will be total request
1006
- timeout. It can also be a pair (tuple) of
1007
- (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
1008
1184
  :return: Returns the result object.
1009
1185
  If the method is called asynchronously,
1010
1186
  returns the request thread.
@@ -1047,10 +1223,9 @@ class PortfoliosApi:
1047
1223
  :param _return_http_data_only: response data instead of ApiResponse
1048
1224
  object with status code, headers, etc
1049
1225
  :type _return_http_data_only: bool, optional
1050
- :param _request_timeout: timeout setting for this request. If one
1051
- number provided, it will be total request
1052
- timeout. It can also be a pair (tuple) of
1053
- (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
1054
1229
  :param _request_auth: set to override the auth_settings for an a single
1055
1230
  request; this effectively ignores the authentication
1056
1231
  in the spec for a single request.
@@ -1078,7 +1253,8 @@ class PortfoliosApi:
1078
1253
  '_request_timeout',
1079
1254
  '_request_auth',
1080
1255
  '_content_type',
1081
- '_headers'
1256
+ '_headers',
1257
+ 'opts'
1082
1258
  ]
1083
1259
  )
1084
1260
 
@@ -1154,6 +1330,7 @@ class PortfoliosApi:
1154
1330
  _return_http_data_only=_params.get('_return_http_data_only'), # noqa: E501
1155
1331
  _preload_content=_params.get('_preload_content', True),
1156
1332
  _request_timeout=_params.get('_request_timeout'),
1333
+ opts=_params.get('opts'),
1157
1334
  collection_formats=_collection_formats,
1158
1335
  _request_auth=_params.get('_request_auth'))
1159
1336
 
@@ -1190,10 +1367,9 @@ class PortfoliosApi:
1190
1367
  :type as_at: datetime
1191
1368
  :param async_req: Whether to execute the request asynchronously.
1192
1369
  :type async_req: bool, optional
1193
- :param _request_timeout: timeout setting for this request.
1194
- If one number provided, it will be total request
1195
- timeout. It can also be a pair (tuple) of
1196
- (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
1197
1373
  :return: Returns the result object.
1198
1374
  If the method is called asynchronously,
1199
1375
  returns the request thread.
@@ -1240,10 +1416,9 @@ class PortfoliosApi:
1240
1416
  :param _return_http_data_only: response data instead of ApiResponse
1241
1417
  object with status code, headers, etc
1242
1418
  :type _return_http_data_only: bool, optional
1243
- :param _request_timeout: timeout setting for this request. If one
1244
- number provided, it will be total request
1245
- timeout. It can also be a pair (tuple) of
1246
- (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
1247
1422
  :param _request_auth: set to override the auth_settings for an a single
1248
1423
  request; this effectively ignores the authentication
1249
1424
  in the spec for a single request.
@@ -1273,7 +1448,8 @@ class PortfoliosApi:
1273
1448
  '_request_timeout',
1274
1449
  '_request_auth',
1275
1450
  '_content_type',
1276
- '_headers'
1451
+ '_headers',
1452
+ 'opts'
1277
1453
  ]
1278
1454
  )
1279
1455
 
@@ -1355,6 +1531,7 @@ class PortfoliosApi:
1355
1531
  _return_http_data_only=_params.get('_return_http_data_only'), # noqa: E501
1356
1532
  _preload_content=_params.get('_preload_content', True),
1357
1533
  _request_timeout=_params.get('_request_timeout'),
1534
+ opts=_params.get('opts'),
1358
1535
  collection_formats=_collection_formats,
1359
1536
  _request_auth=_params.get('_request_auth'))
1360
1537
 
@@ -1389,10 +1566,9 @@ class PortfoliosApi:
1389
1566
  :type as_at: datetime
1390
1567
  :param async_req: Whether to execute the request asynchronously.
1391
1568
  :type async_req: bool, optional
1392
- :param _request_timeout: timeout setting for this request.
1393
- If one number provided, it will be total request
1394
- timeout. It can also be a pair (tuple) of
1395
- (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
1396
1572
  :return: Returns the result object.
1397
1573
  If the method is called asynchronously,
1398
1574
  returns the request thread.
@@ -1437,10 +1613,9 @@ class PortfoliosApi:
1437
1613
  :param _return_http_data_only: response data instead of ApiResponse
1438
1614
  object with status code, headers, etc
1439
1615
  :type _return_http_data_only: bool, optional
1440
- :param _request_timeout: timeout setting for this request. If one
1441
- number provided, it will be total request
1442
- timeout. It can also be a pair (tuple) of
1443
- (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
1444
1619
  :param _request_auth: set to override the auth_settings for an a single
1445
1620
  request; this effectively ignores the authentication
1446
1621
  in the spec for a single request.
@@ -1469,7 +1644,8 @@ class PortfoliosApi:
1469
1644
  '_request_timeout',
1470
1645
  '_request_auth',
1471
1646
  '_content_type',
1472
- '_headers'
1647
+ '_headers',
1648
+ 'opts'
1473
1649
  ]
1474
1650
  )
1475
1651
 
@@ -1541,6 +1717,7 @@ class PortfoliosApi:
1541
1717
  _return_http_data_only=_params.get('_return_http_data_only'), # noqa: E501
1542
1718
  _preload_content=_params.get('_preload_content', True),
1543
1719
  _request_timeout=_params.get('_request_timeout'),
1720
+ opts=_params.get('opts'),
1544
1721
  collection_formats=_collection_formats,
1545
1722
  _request_auth=_params.get('_request_auth'))
1546
1723
 
@@ -1577,10 +1754,9 @@ class PortfoliosApi:
1577
1754
  :type relationship_definition_ids: List[str]
1578
1755
  :param async_req: Whether to execute the request asynchronously.
1579
1756
  :type async_req: bool, optional
1580
- :param _request_timeout: timeout setting for this request.
1581
- If one number provided, it will be total request
1582
- timeout. It can also be a pair (tuple) of
1583
- (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
1584
1760
  :return: Returns the result object.
1585
1761
  If the method is called asynchronously,
1586
1762
  returns the request thread.
@@ -1627,10 +1803,9 @@ class PortfoliosApi:
1627
1803
  :param _return_http_data_only: response data instead of ApiResponse
1628
1804
  object with status code, headers, etc
1629
1805
  :type _return_http_data_only: bool, optional
1630
- :param _request_timeout: timeout setting for this request. If one
1631
- number provided, it will be total request
1632
- timeout. It can also be a pair (tuple) of
1633
- (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
1634
1809
  :param _request_auth: set to override the auth_settings for an a single
1635
1810
  request; this effectively ignores the authentication
1636
1811
  in the spec for a single request.
@@ -1660,7 +1835,8 @@ class PortfoliosApi:
1660
1835
  '_request_timeout',
1661
1836
  '_request_auth',
1662
1837
  '_content_type',
1663
- '_headers'
1838
+ '_headers',
1839
+ 'opts'
1664
1840
  ]
1665
1841
  )
1666
1842
 
@@ -1737,6 +1913,7 @@ class PortfoliosApi:
1737
1913
  _return_http_data_only=_params.get('_return_http_data_only'), # noqa: E501
1738
1914
  _preload_content=_params.get('_preload_content', True),
1739
1915
  _request_timeout=_params.get('_request_timeout'),
1916
+ opts=_params.get('opts'),
1740
1917
  collection_formats=_collection_formats,
1741
1918
  _request_auth=_params.get('_request_auth'))
1742
1919
 
@@ -1789,10 +1966,9 @@ class PortfoliosApi:
1789
1966
  :type alternative_inc_date: str
1790
1967
  :param async_req: Whether to execute the request asynchronously.
1791
1968
  :type async_req: bool, optional
1792
- :param _request_timeout: timeout setting for this request.
1793
- If one number provided, it will be total request
1794
- timeout. It can also be a pair (tuple) of
1795
- (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
1796
1972
  :return: Returns the result object.
1797
1973
  If the method is called asynchronously,
1798
1974
  returns the request thread.
@@ -1855,10 +2031,9 @@ class PortfoliosApi:
1855
2031
  :param _return_http_data_only: response data instead of ApiResponse
1856
2032
  object with status code, headers, etc
1857
2033
  :type _return_http_data_only: bool, optional
1858
- :param _request_timeout: timeout setting for this request. If one
1859
- number provided, it will be total request
1860
- timeout. It can also be a pair (tuple) of
1861
- (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
1862
2037
  :param _request_auth: set to override the auth_settings for an a single
1863
2038
  request; this effectively ignores the authentication
1864
2039
  in the spec for a single request.
@@ -1896,7 +2071,8 @@ class PortfoliosApi:
1896
2071
  '_request_timeout',
1897
2072
  '_request_auth',
1898
2073
  '_content_type',
1899
- '_headers'
2074
+ '_headers',
2075
+ 'opts'
1900
2076
  ]
1901
2077
  )
1902
2078
 
@@ -1996,6 +2172,7 @@ class PortfoliosApi:
1996
2172
  _return_http_data_only=_params.get('_return_http_data_only'), # noqa: E501
1997
2173
  _preload_content=_params.get('_preload_content', True),
1998
2174
  _request_timeout=_params.get('_request_timeout'),
2175
+ opts=_params.get('opts'),
1999
2176
  collection_formats=_collection_formats,
2000
2177
  _request_auth=_params.get('_request_auth'))
2001
2178
 
@@ -2032,10 +2209,9 @@ class PortfoliosApi:
2032
2209
  :type as_at: datetime
2033
2210
  :param async_req: Whether to execute the request asynchronously.
2034
2211
  :type async_req: bool, optional
2035
- :param _request_timeout: timeout setting for this request.
2036
- If one number provided, it will be total request
2037
- timeout. It can also be a pair (tuple) of
2038
- (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
2039
2215
  :return: Returns the result object.
2040
2216
  If the method is called asynchronously,
2041
2217
  returns the request thread.
@@ -2082,10 +2258,9 @@ class PortfoliosApi:
2082
2258
  :param _return_http_data_only: response data instead of ApiResponse
2083
2259
  object with status code, headers, etc
2084
2260
  :type _return_http_data_only: bool, optional
2085
- :param _request_timeout: timeout setting for this request. If one
2086
- number provided, it will be total request
2087
- timeout. It can also be a pair (tuple) of
2088
- (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
2089
2264
  :param _request_auth: set to override the auth_settings for an a single
2090
2265
  request; this effectively ignores the authentication
2091
2266
  in the spec for a single request.
@@ -2115,7 +2290,8 @@ class PortfoliosApi:
2115
2290
  '_request_timeout',
2116
2291
  '_request_auth',
2117
2292
  '_content_type',
2118
- '_headers'
2293
+ '_headers',
2294
+ 'opts'
2119
2295
  ]
2120
2296
  )
2121
2297
 
@@ -2197,6 +2373,7 @@ class PortfoliosApi:
2197
2373
  _return_http_data_only=_params.get('_return_http_data_only'), # noqa: E501
2198
2374
  _preload_content=_params.get('_preload_content', True),
2199
2375
  _request_timeout=_params.get('_request_timeout'),
2376
+ opts=_params.get('opts'),
2200
2377
  collection_formats=_collection_formats,
2201
2378
  _request_auth=_params.get('_request_auth'))
2202
2379
 
@@ -2235,10 +2412,9 @@ class PortfoliosApi:
2235
2412
  :type limit: int
2236
2413
  :param async_req: Whether to execute the request asynchronously.
2237
2414
  :type async_req: bool, optional
2238
- :param _request_timeout: timeout setting for this request.
2239
- If one number provided, it will be total request
2240
- timeout. It can also be a pair (tuple) of
2241
- (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
2242
2418
  :return: Returns the result object.
2243
2419
  If the method is called asynchronously,
2244
2420
  returns the request thread.
@@ -2287,10 +2463,9 @@ class PortfoliosApi:
2287
2463
  :param _return_http_data_only: response data instead of ApiResponse
2288
2464
  object with status code, headers, etc
2289
2465
  :type _return_http_data_only: bool, optional
2290
- :param _request_timeout: timeout setting for this request. If one
2291
- number provided, it will be total request
2292
- timeout. It can also be a pair (tuple) of
2293
- (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
2294
2469
  :param _request_auth: set to override the auth_settings for an a single
2295
2470
  request; this effectively ignores the authentication
2296
2471
  in the spec for a single request.
@@ -2321,7 +2496,8 @@ class PortfoliosApi:
2321
2496
  '_request_timeout',
2322
2497
  '_request_auth',
2323
2498
  '_content_type',
2324
- '_headers'
2499
+ '_headers',
2500
+ 'opts'
2325
2501
  ]
2326
2502
  )
2327
2503
 
@@ -2402,6 +2578,7 @@ class PortfoliosApi:
2402
2578
  _return_http_data_only=_params.get('_return_http_data_only'), # noqa: E501
2403
2579
  _preload_content=_params.get('_preload_content', True),
2404
2580
  _request_timeout=_params.get('_request_timeout'),
2581
+ opts=_params.get('opts'),
2405
2582
  collection_formats=_collection_formats,
2406
2583
  _request_auth=_params.get('_request_auth'))
2407
2584
 
@@ -2434,10 +2611,9 @@ class PortfoliosApi:
2434
2611
  :type as_at: datetime
2435
2612
  :param async_req: Whether to execute the request asynchronously.
2436
2613
  :type async_req: bool, optional
2437
- :param _request_timeout: timeout setting for this request.
2438
- If one number provided, it will be total request
2439
- timeout. It can also be a pair (tuple) of
2440
- (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
2441
2617
  :return: Returns the result object.
2442
2618
  If the method is called asynchronously,
2443
2619
  returns the request thread.
@@ -2480,10 +2656,9 @@ class PortfoliosApi:
2480
2656
  :param _return_http_data_only: response data instead of ApiResponse
2481
2657
  object with status code, headers, etc
2482
2658
  :type _return_http_data_only: bool, optional
2483
- :param _request_timeout: timeout setting for this request. If one
2484
- number provided, it will be total request
2485
- timeout. It can also be a pair (tuple) of
2486
- (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
2487
2662
  :param _request_auth: set to override the auth_settings for an a single
2488
2663
  request; this effectively ignores the authentication
2489
2664
  in the spec for a single request.
@@ -2511,7 +2686,8 @@ class PortfoliosApi:
2511
2686
  '_request_timeout',
2512
2687
  '_request_auth',
2513
2688
  '_content_type',
2514
- '_headers'
2689
+ '_headers',
2690
+ 'opts'
2515
2691
  ]
2516
2692
  )
2517
2693
 
@@ -2580,6 +2756,7 @@ class PortfoliosApi:
2580
2756
  _return_http_data_only=_params.get('_return_http_data_only'), # noqa: E501
2581
2757
  _preload_content=_params.get('_preload_content', True),
2582
2758
  _request_timeout=_params.get('_request_timeout'),
2759
+ opts=_params.get('opts'),
2583
2760
  collection_formats=_collection_formats,
2584
2761
  _request_auth=_params.get('_request_auth'))
2585
2762
 
@@ -2612,10 +2789,9 @@ class PortfoliosApi:
2612
2789
  :type as_at: datetime
2613
2790
  :param async_req: Whether to execute the request asynchronously.
2614
2791
  :type async_req: bool, optional
2615
- :param _request_timeout: timeout setting for this request.
2616
- If one number provided, it will be total request
2617
- timeout. It can also be a pair (tuple) of
2618
- (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
2619
2795
  :return: Returns the result object.
2620
2796
  If the method is called asynchronously,
2621
2797
  returns the request thread.
@@ -2658,10 +2834,9 @@ class PortfoliosApi:
2658
2834
  :param _return_http_data_only: response data instead of ApiResponse
2659
2835
  object with status code, headers, etc
2660
2836
  :type _return_http_data_only: bool, optional
2661
- :param _request_timeout: timeout setting for this request. If one
2662
- number provided, it will be total request
2663
- timeout. It can also be a pair (tuple) of
2664
- (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
2665
2840
  :param _request_auth: set to override the auth_settings for an a single
2666
2841
  request; this effectively ignores the authentication
2667
2842
  in the spec for a single request.
@@ -2689,7 +2864,8 @@ class PortfoliosApi:
2689
2864
  '_request_timeout',
2690
2865
  '_request_auth',
2691
2866
  '_content_type',
2692
- '_headers'
2867
+ '_headers',
2868
+ 'opts'
2693
2869
  ]
2694
2870
  )
2695
2871
 
@@ -2758,6 +2934,7 @@ class PortfoliosApi:
2758
2934
  _return_http_data_only=_params.get('_return_http_data_only'), # noqa: E501
2759
2935
  _preload_content=_params.get('_preload_content', True),
2760
2936
  _request_timeout=_params.get('_request_timeout'),
2937
+ opts=_params.get('opts'),
2761
2938
  collection_formats=_collection_formats,
2762
2939
  _request_auth=_params.get('_request_auth'))
2763
2940
 
@@ -2798,10 +2975,9 @@ class PortfoliosApi:
2798
2975
  :type limit: int
2799
2976
  :param async_req: Whether to execute the request asynchronously.
2800
2977
  :type async_req: bool, optional
2801
- :param _request_timeout: timeout setting for this request.
2802
- If one number provided, it will be total request
2803
- timeout. It can also be a pair (tuple) of
2804
- (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
2805
2981
  :return: Returns the result object.
2806
2982
  If the method is called asynchronously,
2807
2983
  returns the request thread.
@@ -2852,10 +3028,9 @@ class PortfoliosApi:
2852
3028
  :param _return_http_data_only: response data instead of ApiResponse
2853
3029
  object with status code, headers, etc
2854
3030
  :type _return_http_data_only: bool, optional
2855
- :param _request_timeout: timeout setting for this request. If one
2856
- number provided, it will be total request
2857
- timeout. It can also be a pair (tuple) of
2858
- (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
2859
3034
  :param _request_auth: set to override the auth_settings for an a single
2860
3035
  request; this effectively ignores the authentication
2861
3036
  in the spec for a single request.
@@ -2887,7 +3062,8 @@ class PortfoliosApi:
2887
3062
  '_request_timeout',
2888
3063
  '_request_auth',
2889
3064
  '_content_type',
2890
- '_headers'
3065
+ '_headers',
3066
+ 'opts'
2891
3067
  ]
2892
3068
  )
2893
3069
 
@@ -2968,6 +3144,7 @@ class PortfoliosApi:
2968
3144
  _return_http_data_only=_params.get('_return_http_data_only'), # noqa: E501
2969
3145
  _preload_content=_params.get('_preload_content', True),
2970
3146
  _request_timeout=_params.get('_request_timeout'),
3147
+ opts=_params.get('opts'),
2971
3148
  collection_formats=_collection_formats,
2972
3149
  _request_auth=_params.get('_request_auth'))
2973
3150
 
@@ -3004,10 +3181,9 @@ class PortfoliosApi:
3004
3181
  :type identifier_types: List[str]
3005
3182
  :param async_req: Whether to execute the request asynchronously.
3006
3183
  :type async_req: bool, optional
3007
- :param _request_timeout: timeout setting for this request.
3008
- If one number provided, it will be total request
3009
- timeout. It can also be a pair (tuple) of
3010
- (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
3011
3187
  :return: Returns the result object.
3012
3188
  If the method is called asynchronously,
3013
3189
  returns the request thread.
@@ -3054,10 +3230,9 @@ class PortfoliosApi:
3054
3230
  :param _return_http_data_only: response data instead of ApiResponse
3055
3231
  object with status code, headers, etc
3056
3232
  :type _return_http_data_only: bool, optional
3057
- :param _request_timeout: timeout setting for this request. If one
3058
- number provided, it will be total request
3059
- timeout. It can also be a pair (tuple) of
3060
- (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
3061
3236
  :param _request_auth: set to override the auth_settings for an a single
3062
3237
  request; this effectively ignores the authentication
3063
3238
  in the spec for a single request.
@@ -3087,7 +3262,8 @@ class PortfoliosApi:
3087
3262
  '_request_timeout',
3088
3263
  '_request_auth',
3089
3264
  '_content_type',
3090
- '_headers'
3265
+ '_headers',
3266
+ 'opts'
3091
3267
  ]
3092
3268
  )
3093
3269
 
@@ -3163,6 +3339,7 @@ class PortfoliosApi:
3163
3339
  _return_http_data_only=_params.get('_return_http_data_only'), # noqa: E501
3164
3340
  _preload_content=_params.get('_preload_content', True),
3165
3341
  _request_timeout=_params.get('_request_timeout'),
3342
+ opts=_params.get('opts'),
3166
3343
  collection_formats=_collection_formats,
3167
3344
  _request_auth=_params.get('_request_auth'))
3168
3345
 
@@ -3199,10 +3376,9 @@ class PortfoliosApi:
3199
3376
  :type identifier_types: List[str]
3200
3377
  :param async_req: Whether to execute the request asynchronously.
3201
3378
  :type async_req: bool, optional
3202
- :param _request_timeout: timeout setting for this request.
3203
- If one number provided, it will be total request
3204
- timeout. It can also be a pair (tuple) of
3205
- (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
3206
3382
  :return: Returns the result object.
3207
3383
  If the method is called asynchronously,
3208
3384
  returns the request thread.
@@ -3249,10 +3425,9 @@ class PortfoliosApi:
3249
3425
  :param _return_http_data_only: response data instead of ApiResponse
3250
3426
  object with status code, headers, etc
3251
3427
  :type _return_http_data_only: bool, optional
3252
- :param _request_timeout: timeout setting for this request. If one
3253
- number provided, it will be total request
3254
- timeout. It can also be a pair (tuple) of
3255
- (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
3256
3431
  :param _request_auth: set to override the auth_settings for an a single
3257
3432
  request; this effectively ignores the authentication
3258
3433
  in the spec for a single request.
@@ -3282,7 +3457,8 @@ class PortfoliosApi:
3282
3457
  '_request_timeout',
3283
3458
  '_request_auth',
3284
3459
  '_content_type',
3285
- '_headers'
3460
+ '_headers',
3461
+ 'opts'
3286
3462
  ]
3287
3463
  )
3288
3464
 
@@ -3358,6 +3534,7 @@ class PortfoliosApi:
3358
3534
  _return_http_data_only=_params.get('_return_http_data_only'), # noqa: E501
3359
3535
  _preload_content=_params.get('_preload_content', True),
3360
3536
  _request_timeout=_params.get('_request_timeout'),
3537
+ opts=_params.get('opts'),
3361
3538
  collection_formats=_collection_formats,
3362
3539
  _request_auth=_params.get('_request_auth'))
3363
3540
 
@@ -3398,10 +3575,9 @@ class PortfoliosApi:
3398
3575
  :type as_at: datetime
3399
3576
  :param async_req: Whether to execute the request asynchronously.
3400
3577
  :type async_req: bool, optional
3401
- :param _request_timeout: timeout setting for this request.
3402
- If one number provided, it will be total request
3403
- timeout. It can also be a pair (tuple) of
3404
- (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
3405
3581
  :return: Returns the result object.
3406
3582
  If the method is called asynchronously,
3407
3583
  returns the request thread.
@@ -3452,10 +3628,9 @@ class PortfoliosApi:
3452
3628
  :param _return_http_data_only: response data instead of ApiResponse
3453
3629
  object with status code, headers, etc
3454
3630
  :type _return_http_data_only: bool, optional
3455
- :param _request_timeout: timeout setting for this request. If one
3456
- number provided, it will be total request
3457
- timeout. It can also be a pair (tuple) of
3458
- (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
3459
3634
  :param _request_auth: set to override the auth_settings for an a single
3460
3635
  request; this effectively ignores the authentication
3461
3636
  in the spec for a single request.
@@ -3487,7 +3662,8 @@ class PortfoliosApi:
3487
3662
  '_request_timeout',
3488
3663
  '_request_auth',
3489
3664
  '_content_type',
3490
- '_headers'
3665
+ '_headers',
3666
+ 'opts'
3491
3667
  ]
3492
3668
  )
3493
3669
 
@@ -3568,6 +3744,7 @@ class PortfoliosApi:
3568
3744
  _return_http_data_only=_params.get('_return_http_data_only'), # noqa: E501
3569
3745
  _preload_content=_params.get('_preload_content', True),
3570
3746
  _request_timeout=_params.get('_request_timeout'),
3747
+ opts=_params.get('opts'),
3571
3748
  collection_formats=_collection_formats,
3572
3749
  _request_auth=_params.get('_request_auth'))
3573
3750
 
@@ -3602,10 +3779,9 @@ class PortfoliosApi:
3602
3779
  :type as_at: datetime
3603
3780
  :param async_req: Whether to execute the request asynchronously.
3604
3781
  :type async_req: bool, optional
3605
- :param _request_timeout: timeout setting for this request.
3606
- If one number provided, it will be total request
3607
- timeout. It can also be a pair (tuple) of
3608
- (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
3609
3785
  :return: Returns the result object.
3610
3786
  If the method is called asynchronously,
3611
3787
  returns the request thread.
@@ -3650,10 +3826,9 @@ class PortfoliosApi:
3650
3826
  :param _return_http_data_only: response data instead of ApiResponse
3651
3827
  object with status code, headers, etc
3652
3828
  :type _return_http_data_only: bool, optional
3653
- :param _request_timeout: timeout setting for this request. If one
3654
- number provided, it will be total request
3655
- timeout. It can also be a pair (tuple) of
3656
- (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
3657
3832
  :param _request_auth: set to override the auth_settings for an a single
3658
3833
  request; this effectively ignores the authentication
3659
3834
  in the spec for a single request.
@@ -3682,7 +3857,8 @@ class PortfoliosApi:
3682
3857
  '_request_timeout',
3683
3858
  '_request_auth',
3684
3859
  '_content_type',
3685
- '_headers'
3860
+ '_headers',
3861
+ 'opts'
3686
3862
  ]
3687
3863
  )
3688
3864
 
@@ -3754,6 +3930,7 @@ class PortfoliosApi:
3754
3930
  _return_http_data_only=_params.get('_return_http_data_only'), # noqa: E501
3755
3931
  _preload_content=_params.get('_preload_content', True),
3756
3932
  _request_timeout=_params.get('_request_timeout'),
3933
+ opts=_params.get('opts'),
3757
3934
  collection_formats=_collection_formats,
3758
3935
  _request_auth=_params.get('_request_auth'))
3759
3936
 
@@ -3794,10 +3971,9 @@ class PortfoliosApi:
3794
3971
  :type sort_by: List[str]
3795
3972
  :param async_req: Whether to execute the request asynchronously.
3796
3973
  :type async_req: bool, optional
3797
- :param _request_timeout: timeout setting for this request.
3798
- If one number provided, it will be total request
3799
- timeout. It can also be a pair (tuple) of
3800
- (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
3801
3977
  :return: Returns the result object.
3802
3978
  If the method is called asynchronously,
3803
3979
  returns the request thread.
@@ -3848,10 +4024,9 @@ class PortfoliosApi:
3848
4024
  :param _return_http_data_only: response data instead of ApiResponse
3849
4025
  object with status code, headers, etc
3850
4026
  :type _return_http_data_only: bool, optional
3851
- :param _request_timeout: timeout setting for this request. If one
3852
- number provided, it will be total request
3853
- timeout. It can also be a pair (tuple) of
3854
- (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
3855
4030
  :param _request_auth: set to override the auth_settings for an a single
3856
4031
  request; this effectively ignores the authentication
3857
4032
  in the spec for a single request.
@@ -3883,7 +4058,8 @@ class PortfoliosApi:
3883
4058
  '_request_timeout',
3884
4059
  '_request_auth',
3885
4060
  '_content_type',
3886
- '_headers'
4061
+ '_headers',
4062
+ 'opts'
3887
4063
  ]
3888
4064
  )
3889
4065
 
@@ -3965,6 +4141,7 @@ class PortfoliosApi:
3965
4141
  _return_http_data_only=_params.get('_return_http_data_only'), # noqa: E501
3966
4142
  _preload_content=_params.get('_preload_content', True),
3967
4143
  _request_timeout=_params.get('_request_timeout'),
4144
+ opts=_params.get('opts'),
3968
4145
  collection_formats=_collection_formats,
3969
4146
  _request_auth=_params.get('_request_auth'))
3970
4147
 
@@ -4001,10 +4178,9 @@ class PortfoliosApi:
4001
4178
  :type limit: int
4002
4179
  :param async_req: Whether to execute the request asynchronously.
4003
4180
  :type async_req: bool, optional
4004
- :param _request_timeout: timeout setting for this request.
4005
- If one number provided, it will be total request
4006
- timeout. It can also be a pair (tuple) of
4007
- (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
4008
4184
  :return: Returns the result object.
4009
4185
  If the method is called asynchronously,
4010
4186
  returns the request thread.
@@ -4051,10 +4227,9 @@ class PortfoliosApi:
4051
4227
  :param _return_http_data_only: response data instead of ApiResponse
4052
4228
  object with status code, headers, etc
4053
4229
  :type _return_http_data_only: bool, optional
4054
- :param _request_timeout: timeout setting for this request. If one
4055
- number provided, it will be total request
4056
- timeout. It can also be a pair (tuple) of
4057
- (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
4058
4233
  :param _request_auth: set to override the auth_settings for an a single
4059
4234
  request; this effectively ignores the authentication
4060
4235
  in the spec for a single request.
@@ -4084,7 +4259,8 @@ class PortfoliosApi:
4084
4259
  '_request_timeout',
4085
4260
  '_request_auth',
4086
4261
  '_content_type',
4087
- '_headers'
4262
+ '_headers',
4263
+ 'opts'
4088
4264
  ]
4089
4265
  )
4090
4266
 
@@ -4159,6 +4335,7 @@ class PortfoliosApi:
4159
4335
  _return_http_data_only=_params.get('_return_http_data_only'), # noqa: E501
4160
4336
  _preload_content=_params.get('_preload_content', True),
4161
4337
  _request_timeout=_params.get('_request_timeout'),
4338
+ opts=_params.get('opts'),
4162
4339
  collection_formats=_collection_formats,
4163
4340
  _request_auth=_params.get('_request_auth'))
4164
4341
 
@@ -4201,10 +4378,9 @@ class PortfoliosApi:
4201
4378
  :type relationship_definition_ids: List[str]
4202
4379
  :param async_req: Whether to execute the request asynchronously.
4203
4380
  :type async_req: bool, optional
4204
- :param _request_timeout: timeout setting for this request.
4205
- If one number provided, it will be total request
4206
- timeout. It can also be a pair (tuple) of
4207
- (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
4208
4384
  :return: Returns the result object.
4209
4385
  If the method is called asynchronously,
4210
4386
  returns the request thread.
@@ -4257,10 +4433,9 @@ class PortfoliosApi:
4257
4433
  :param _return_http_data_only: response data instead of ApiResponse
4258
4434
  object with status code, headers, etc
4259
4435
  :type _return_http_data_only: bool, optional
4260
- :param _request_timeout: timeout setting for this request. If one
4261
- number provided, it will be total request
4262
- timeout. It can also be a pair (tuple) of
4263
- (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
4264
4439
  :param _request_auth: set to override the auth_settings for an a single
4265
4440
  request; this effectively ignores the authentication
4266
4441
  in the spec for a single request.
@@ -4293,7 +4468,8 @@ class PortfoliosApi:
4293
4468
  '_request_timeout',
4294
4469
  '_request_auth',
4295
4470
  '_content_type',
4296
- '_headers'
4471
+ '_headers',
4472
+ 'opts'
4297
4473
  ]
4298
4474
  )
4299
4475
 
@@ -4380,6 +4556,7 @@ class PortfoliosApi:
4380
4556
  _return_http_data_only=_params.get('_return_http_data_only'), # noqa: E501
4381
4557
  _preload_content=_params.get('_preload_content', True),
4382
4558
  _request_timeout=_params.get('_request_timeout'),
4559
+ opts=_params.get('opts'),
4383
4560
  collection_formats=_collection_formats,
4384
4561
  _request_auth=_params.get('_request_auth'))
4385
4562
 
@@ -4422,10 +4599,9 @@ class PortfoliosApi:
4422
4599
  :type relationship_definition_ids: List[str]
4423
4600
  :param async_req: Whether to execute the request asynchronously.
4424
4601
  :type async_req: bool, optional
4425
- :param _request_timeout: timeout setting for this request.
4426
- If one number provided, it will be total request
4427
- timeout. It can also be a pair (tuple) of
4428
- (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
4429
4605
  :return: Returns the result object.
4430
4606
  If the method is called asynchronously,
4431
4607
  returns the request thread.
@@ -4478,10 +4654,9 @@ class PortfoliosApi:
4478
4654
  :param _return_http_data_only: response data instead of ApiResponse
4479
4655
  object with status code, headers, etc
4480
4656
  :type _return_http_data_only: bool, optional
4481
- :param _request_timeout: timeout setting for this request. If one
4482
- number provided, it will be total request
4483
- timeout. It can also be a pair (tuple) of
4484
- (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
4485
4660
  :param _request_auth: set to override the auth_settings for an a single
4486
4661
  request; this effectively ignores the authentication
4487
4662
  in the spec for a single request.
@@ -4514,7 +4689,8 @@ class PortfoliosApi:
4514
4689
  '_request_timeout',
4515
4690
  '_request_auth',
4516
4691
  '_content_type',
4517
- '_headers'
4692
+ '_headers',
4693
+ 'opts'
4518
4694
  ]
4519
4695
  )
4520
4696
 
@@ -4601,6 +4777,7 @@ class PortfoliosApi:
4601
4777
  _return_http_data_only=_params.get('_return_http_data_only'), # noqa: E501
4602
4778
  _preload_content=_params.get('_preload_content', True),
4603
4779
  _request_timeout=_params.get('_request_timeout'),
4780
+ opts=_params.get('opts'),
4604
4781
  collection_formats=_collection_formats,
4605
4782
  _request_auth=_params.get('_request_auth'))
4606
4783
 
@@ -4631,10 +4808,9 @@ class PortfoliosApi:
4631
4808
  :type operation: List[Operation]
4632
4809
  :param async_req: Whether to execute the request asynchronously.
4633
4810
  :type async_req: bool, optional
4634
- :param _request_timeout: timeout setting for this request.
4635
- If one number provided, it will be total request
4636
- timeout. It can also be a pair (tuple) of
4637
- (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
4638
4814
  :return: Returns the result object.
4639
4815
  If the method is called asynchronously,
4640
4816
  returns the request thread.
@@ -4675,10 +4851,9 @@ class PortfoliosApi:
4675
4851
  :param _return_http_data_only: response data instead of ApiResponse
4676
4852
  object with status code, headers, etc
4677
4853
  :type _return_http_data_only: bool, optional
4678
- :param _request_timeout: timeout setting for this request. If one
4679
- number provided, it will be total request
4680
- timeout. It can also be a pair (tuple) of
4681
- (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
4682
4857
  :param _request_auth: set to override the auth_settings for an a single
4683
4858
  request; this effectively ignores the authentication
4684
4859
  in the spec for a single request.
@@ -4705,7 +4880,8 @@ class PortfoliosApi:
4705
4880
  '_request_timeout',
4706
4881
  '_request_auth',
4707
4882
  '_content_type',
4708
- '_headers'
4883
+ '_headers',
4884
+ 'opts'
4709
4885
  ]
4710
4886
  )
4711
4887
 
@@ -4775,6 +4951,7 @@ class PortfoliosApi:
4775
4951
  _return_http_data_only=_params.get('_return_http_data_only'), # noqa: E501
4776
4952
  _preload_content=_params.get('_preload_content', True),
4777
4953
  _request_timeout=_params.get('_request_timeout'),
4954
+ opts=_params.get('opts'),
4778
4955
  collection_formats=_collection_formats,
4779
4956
  _request_auth=_params.get('_request_auth'))
4780
4957
 
@@ -4809,10 +4986,9 @@ class PortfoliosApi:
4809
4986
  :type effective_until: datetime
4810
4987
  :param async_req: Whether to execute the request asynchronously.
4811
4988
  :type async_req: bool, optional
4812
- :param _request_timeout: timeout setting for this request.
4813
- If one number provided, it will be total request
4814
- timeout. It can also be a pair (tuple) of
4815
- (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
4816
4992
  :return: Returns the result object.
4817
4993
  If the method is called asynchronously,
4818
4994
  returns the request thread.
@@ -4857,10 +5033,9 @@ class PortfoliosApi:
4857
5033
  :param _return_http_data_only: response data instead of ApiResponse
4858
5034
  object with status code, headers, etc
4859
5035
  :type _return_http_data_only: bool, optional
4860
- :param _request_timeout: timeout setting for this request. If one
4861
- number provided, it will be total request
4862
- timeout. It can also be a pair (tuple) of
4863
- (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
4864
5039
  :param _request_auth: set to override the auth_settings for an a single
4865
5040
  request; this effectively ignores the authentication
4866
5041
  in the spec for a single request.
@@ -4889,7 +5064,8 @@ class PortfoliosApi:
4889
5064
  '_request_timeout',
4890
5065
  '_request_auth',
4891
5066
  '_content_type',
4892
- '_headers'
5067
+ '_headers',
5068
+ 'opts'
4893
5069
  ]
4894
5070
  )
4895
5071
 
@@ -4968,6 +5144,7 @@ class PortfoliosApi:
4968
5144
  _return_http_data_only=_params.get('_return_http_data_only'), # noqa: E501
4969
5145
  _preload_content=_params.get('_preload_content', True),
4970
5146
  _request_timeout=_params.get('_request_timeout'),
5147
+ opts=_params.get('opts'),
4971
5148
  collection_formats=_collection_formats,
4972
5149
  _request_auth=_params.get('_request_auth'))
4973
5150
 
@@ -5000,10 +5177,9 @@ class PortfoliosApi:
5000
5177
  :type effective_at: str
5001
5178
  :param async_req: Whether to execute the request asynchronously.
5002
5179
  :type async_req: bool, optional
5003
- :param _request_timeout: timeout setting for this request.
5004
- If one number provided, it will be total request
5005
- timeout. It can also be a pair (tuple) of
5006
- (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
5007
5183
  :return: Returns the result object.
5008
5184
  If the method is called asynchronously,
5009
5185
  returns the request thread.
@@ -5046,10 +5222,9 @@ class PortfoliosApi:
5046
5222
  :param _return_http_data_only: response data instead of ApiResponse
5047
5223
  object with status code, headers, etc
5048
5224
  :type _return_http_data_only: bool, optional
5049
- :param _request_timeout: timeout setting for this request. If one
5050
- number provided, it will be total request
5051
- timeout. It can also be a pair (tuple) of
5052
- (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
5053
5228
  :param _request_auth: set to override the auth_settings for an a single
5054
5229
  request; this effectively ignores the authentication
5055
5230
  in the spec for a single request.
@@ -5077,7 +5252,8 @@ class PortfoliosApi:
5077
5252
  '_request_timeout',
5078
5253
  '_request_auth',
5079
5254
  '_content_type',
5080
- '_headers'
5255
+ '_headers',
5256
+ 'opts'
5081
5257
  ]
5082
5258
  )
5083
5259
 
@@ -5150,6 +5326,7 @@ class PortfoliosApi:
5150
5326
  _return_http_data_only=_params.get('_return_http_data_only'), # noqa: E501
5151
5327
  _preload_content=_params.get('_preload_content', True),
5152
5328
  _request_timeout=_params.get('_request_timeout'),
5329
+ opts=_params.get('opts'),
5153
5330
  collection_formats=_collection_formats,
5154
5331
  _request_auth=_params.get('_request_auth'))
5155
5332
 
@@ -5184,10 +5361,9 @@ class PortfoliosApi:
5184
5361
  :type portfolio_effective_at: str
5185
5362
  :param async_req: Whether to execute the request asynchronously.
5186
5363
  :type async_req: bool, optional
5187
- :param _request_timeout: timeout setting for this request.
5188
- If one number provided, it will be total request
5189
- timeout. It can also be a pair (tuple) of
5190
- (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
5191
5367
  :return: Returns the result object.
5192
5368
  If the method is called asynchronously,
5193
5369
  returns the request thread.
@@ -5232,10 +5408,9 @@ class PortfoliosApi:
5232
5408
  :param _return_http_data_only: response data instead of ApiResponse
5233
5409
  object with status code, headers, etc
5234
5410
  :type _return_http_data_only: bool, optional
5235
- :param _request_timeout: timeout setting for this request. If one
5236
- number provided, it will be total request
5237
- timeout. It can also be a pair (tuple) of
5238
- (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
5239
5414
  :param _request_auth: set to override the auth_settings for an a single
5240
5415
  request; this effectively ignores the authentication
5241
5416
  in the spec for a single request.
@@ -5264,7 +5439,8 @@ class PortfoliosApi:
5264
5439
  '_request_timeout',
5265
5440
  '_request_auth',
5266
5441
  '_content_type',
5267
- '_headers'
5442
+ '_headers',
5443
+ 'opts'
5268
5444
  ]
5269
5445
  )
5270
5446
 
@@ -5340,6 +5516,7 @@ class PortfoliosApi:
5340
5516
  _return_http_data_only=_params.get('_return_http_data_only'), # noqa: E501
5341
5517
  _preload_content=_params.get('_preload_content', True),
5342
5518
  _request_timeout=_params.get('_request_timeout'),
5519
+ opts=_params.get('opts'),
5343
5520
  collection_formats=_collection_formats,
5344
5521
  _request_auth=_params.get('_request_auth'))
5345
5522
 
@@ -5353,7 +5530,7 @@ class PortfoliosApi:
5353
5530
 
5354
5531
  @validate_arguments
5355
5532
  def upsert_portfolio_access_metadata(self, scope : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The scope to use when updating or inserting the Portfolio Access Metadata Rule.")], code : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="Portfolio code")], metadata_key : Annotated[constr(strict=True, max_length=256, min_length=1), Field(..., description="Key of the access metadata to upsert")], upsert_portfolio_access_metadata_request : Annotated[UpsertPortfolioAccessMetadataRequest, Field(..., description="The Portfolio Access Metadata Rule to update or insert")], effective_at : Annotated[Optional[StrictStr], Field(description="The date this rule will effective from")] = None, effective_until : Annotated[Optional[datetime], Field(description="The effective date until which the Access Metadata is valid. If not supplied this will be valid indefinitely, or until the next 'effectiveAt' date of the Access Metadata")] = None, async_req: Optional[bool]=None, **kwargs) -> Union[ResourceListOfAccessMetadataValueOf, Awaitable[ResourceListOfAccessMetadataValueOf]]: # noqa: E501
5356
- """[EARLY ACCESS] UpsertPortfolioAccessMetadata: Upsert a Portfolio Access Metadata Rule associated with specific metadataKey. This creates or updates the data in LUSID. # noqa: E501
5533
+ """UpsertPortfolioAccessMetadata: Upsert a Portfolio Access Metadata Rule associated with specific metadataKey. This creates or updates the data in LUSID. # noqa: E501
5357
5534
 
5358
5535
  Update or insert one Portfolio Access Metadata Rule in a single scope. An item will be updated if it already exists and inserted if it does not. The response will return the successfully updated or inserted Portfolio Access Metadata Rule or failure message if unsuccessful It is important to always check to verify success (or failure). Multiple rules for a metadataKey can exists with different effective at dates, when resources are accessed the rule that is active for the current time will be fetched # noqa: E501
5359
5536
  This method makes a synchronous HTTP request by default. To make an
@@ -5376,10 +5553,9 @@ class PortfoliosApi:
5376
5553
  :type effective_until: datetime
5377
5554
  :param async_req: Whether to execute the request asynchronously.
5378
5555
  :type async_req: bool, optional
5379
- :param _request_timeout: timeout setting for this request.
5380
- If one number provided, it will be total request
5381
- timeout. It can also be a pair (tuple) of
5382
- (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
5383
5559
  :return: Returns the result object.
5384
5560
  If the method is called asynchronously,
5385
5561
  returns the request thread.
@@ -5395,7 +5571,7 @@ class PortfoliosApi:
5395
5571
 
5396
5572
  @validate_arguments
5397
5573
  def upsert_portfolio_access_metadata_with_http_info(self, scope : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The scope to use when updating or inserting the Portfolio Access Metadata Rule.")], code : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="Portfolio code")], metadata_key : Annotated[constr(strict=True, max_length=256, min_length=1), Field(..., description="Key of the access metadata to upsert")], upsert_portfolio_access_metadata_request : Annotated[UpsertPortfolioAccessMetadataRequest, Field(..., description="The Portfolio Access Metadata Rule to update or insert")], effective_at : Annotated[Optional[StrictStr], Field(description="The date this rule will effective from")] = None, effective_until : Annotated[Optional[datetime], Field(description="The effective date until which the Access Metadata is valid. If not supplied this will be valid indefinitely, or until the next 'effectiveAt' date of the Access Metadata")] = None, **kwargs) -> ApiResponse: # noqa: E501
5398
- """[EARLY ACCESS] UpsertPortfolioAccessMetadata: Upsert a Portfolio Access Metadata Rule associated with specific metadataKey. This creates or updates the data in LUSID. # noqa: E501
5574
+ """UpsertPortfolioAccessMetadata: Upsert a Portfolio Access Metadata Rule associated with specific metadataKey. This creates or updates the data in LUSID. # noqa: E501
5399
5575
 
5400
5576
  Update or insert one Portfolio Access Metadata Rule in a single scope. An item will be updated if it already exists and inserted if it does not. The response will return the successfully updated or inserted Portfolio Access Metadata Rule or failure message if unsuccessful It is important to always check to verify success (or failure). Multiple rules for a metadataKey can exists with different effective at dates, when resources are accessed the rule that is active for the current time will be fetched # noqa: E501
5401
5577
  This method makes a synchronous HTTP request by default. To make an
@@ -5426,10 +5602,9 @@ class PortfoliosApi:
5426
5602
  :param _return_http_data_only: response data instead of ApiResponse
5427
5603
  object with status code, headers, etc
5428
5604
  :type _return_http_data_only: bool, optional
5429
- :param _request_timeout: timeout setting for this request. If one
5430
- number provided, it will be total request
5431
- timeout. It can also be a pair (tuple) of
5432
- (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
5433
5608
  :param _request_auth: set to override the auth_settings for an a single
5434
5609
  request; this effectively ignores the authentication
5435
5610
  in the spec for a single request.
@@ -5459,7 +5634,8 @@ class PortfoliosApi:
5459
5634
  '_request_timeout',
5460
5635
  '_request_auth',
5461
5636
  '_content_type',
5462
- '_headers'
5637
+ '_headers',
5638
+ 'opts'
5463
5639
  ]
5464
5640
  )
5465
5641
 
@@ -5541,6 +5717,7 @@ class PortfoliosApi:
5541
5717
  _return_http_data_only=_params.get('_return_http_data_only'), # noqa: E501
5542
5718
  _preload_content=_params.get('_preload_content', True),
5543
5719
  _request_timeout=_params.get('_request_timeout'),
5720
+ opts=_params.get('opts'),
5544
5721
  collection_formats=_collection_formats,
5545
5722
  _request_auth=_params.get('_request_auth'))
5546
5723
 
@@ -5571,10 +5748,9 @@ class PortfoliosApi:
5571
5748
  :type request_body: Dict[str, ModelProperty]
5572
5749
  :param async_req: Whether to execute the request asynchronously.
5573
5750
  :type async_req: bool, optional
5574
- :param _request_timeout: timeout setting for this request.
5575
- If one number provided, it will be total request
5576
- timeout. It can also be a pair (tuple) of
5577
- (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
5578
5754
  :return: Returns the result object.
5579
5755
  If the method is called asynchronously,
5580
5756
  returns the request thread.
@@ -5615,10 +5791,9 @@ class PortfoliosApi:
5615
5791
  :param _return_http_data_only: response data instead of ApiResponse
5616
5792
  object with status code, headers, etc
5617
5793
  :type _return_http_data_only: bool, optional
5618
- :param _request_timeout: timeout setting for this request. If one
5619
- number provided, it will be total request
5620
- timeout. It can also be a pair (tuple) of
5621
- (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
5622
5797
  :param _request_auth: set to override the auth_settings for an a single
5623
5798
  request; this effectively ignores the authentication
5624
5799
  in the spec for a single request.
@@ -5645,7 +5820,8 @@ class PortfoliosApi:
5645
5820
  '_request_timeout',
5646
5821
  '_request_auth',
5647
5822
  '_content_type',
5648
- '_headers'
5823
+ '_headers',
5824
+ 'opts'
5649
5825
  ]
5650
5826
  )
5651
5827
 
@@ -5715,6 +5891,7 @@ class PortfoliosApi:
5715
5891
  _return_http_data_only=_params.get('_return_http_data_only'), # noqa: E501
5716
5892
  _preload_content=_params.get('_preload_content', True),
5717
5893
  _request_timeout=_params.get('_request_timeout'),
5894
+ opts=_params.get('opts'),
5718
5895
  collection_formats=_collection_formats,
5719
5896
  _request_auth=_params.get('_request_auth'))
5720
5897
 
@@ -5749,10 +5926,9 @@ class PortfoliosApi:
5749
5926
  :type performance_return: List[PerformanceReturn]
5750
5927
  :param async_req: Whether to execute the request asynchronously.
5751
5928
  :type async_req: bool, optional
5752
- :param _request_timeout: timeout setting for this request.
5753
- If one number provided, it will be total request
5754
- timeout. It can also be a pair (tuple) of
5755
- (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
5756
5932
  :return: Returns the result object.
5757
5933
  If the method is called asynchronously,
5758
5934
  returns the request thread.
@@ -5797,10 +5973,9 @@ class PortfoliosApi:
5797
5973
  :param _return_http_data_only: response data instead of ApiResponse
5798
5974
  object with status code, headers, etc
5799
5975
  :type _return_http_data_only: bool, optional
5800
- :param _request_timeout: timeout setting for this request. If one
5801
- number provided, it will be total request
5802
- timeout. It can also be a pair (tuple) of
5803
- (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
5804
5979
  :param _request_auth: set to override the auth_settings for an a single
5805
5980
  request; this effectively ignores the authentication
5806
5981
  in the spec for a single request.
@@ -5829,7 +6004,8 @@ class PortfoliosApi:
5829
6004
  '_request_timeout',
5830
6005
  '_request_auth',
5831
6006
  '_content_type',
5832
- '_headers'
6007
+ '_headers',
6008
+ 'opts'
5833
6009
  ]
5834
6010
  )
5835
6011
 
@@ -5905,5 +6081,6 @@ class PortfoliosApi:
5905
6081
  _return_http_data_only=_params.get('_return_http_data_only'), # noqa: E501
5906
6082
  _preload_content=_params.get('_preload_content', True),
5907
6083
  _request_timeout=_params.get('_request_timeout'),
6084
+ opts=_params.get('opts'),
5908
6085
  collection_formats=_collection_formats,
5909
6086
  _request_auth=_params.get('_request_auth'))