lusid-sdk 2.1.423__py3-none-any.whl → 2.1.450__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (190) hide show
  1. lusid/__init__.py +28 -2
  2. lusid/api/__init__.py +2 -2
  3. lusid/api/abor_api.py +118 -117
  4. lusid/api/abor_configuration_api.py +46 -45
  5. lusid/api/address_key_definition_api.py +28 -27
  6. lusid/api/aggregation_api.py +37 -36
  7. lusid/api/allocations_api.py +37 -36
  8. lusid/api/amortisation_rule_sets_api.py +55 -54
  9. lusid/api/application_metadata_api.py +28 -27
  10. lusid/api/blocks_api.py +37 -36
  11. lusid/api/calendars_api.py +469 -111
  12. lusid/api/chart_of_accounts_api.py +289 -288
  13. lusid/api/complex_market_data_api.py +37 -36
  14. lusid/api/compliance_api.py +136 -135
  15. lusid/api/configuration_recipe_api.py +100 -99
  16. lusid/api/conventions_api.py +109 -108
  17. lusid/api/corporate_action_sources_api.py +82 -81
  18. lusid/api/counterparties_api.py +73 -72
  19. lusid/api/custom_entities_api.py +100 -99
  20. lusid/api/custom_entity_definitions_api.py +37 -36
  21. lusid/api/custom_entity_types_api.py +37 -36
  22. lusid/api/cut_label_definitions_api.py +46 -45
  23. lusid/api/data_types_api.py +248 -72
  24. lusid/api/derived_transaction_portfolios_api.py +19 -18
  25. lusid/api/entities_api.py +260 -55
  26. lusid/api/executions_api.py +37 -36
  27. lusid/api/fee_types_api.py +55 -54
  28. lusid/api/{fund_configuration_entities_api.py → fund_configuration_api.py} +222 -46
  29. lusid/api/funds_api.py +163 -162
  30. lusid/api/group_reconciliations_api.py +91 -90
  31. lusid/api/instrument_event_types_api.py +64 -63
  32. lusid/api/instrument_events_api.py +46 -45
  33. lusid/api/instruments_api.py +181 -180
  34. lusid/api/legacy_compliance_api.py +73 -72
  35. lusid/api/legal_entities_api.py +163 -162
  36. lusid/api/order_graph_api.py +28 -27
  37. lusid/api/order_instructions_api.py +37 -36
  38. lusid/api/order_management_api.py +91 -90
  39. lusid/api/orders_api.py +37 -36
  40. lusid/api/packages_api.py +37 -36
  41. lusid/api/participations_api.py +37 -36
  42. lusid/api/persons_api.py +163 -162
  43. lusid/api/placements_api.py +37 -36
  44. lusid/api/portfolio_groups_api.py +235 -234
  45. lusid/api/portfolios_api.py +280 -279
  46. lusid/api/property_definitions_api.py +100 -99
  47. lusid/api/queryable_keys_api.py +10 -9
  48. lusid/api/quotes_api.py +82 -81
  49. lusid/api/reconciliations_api.py +136 -135
  50. lusid/api/reference_lists_api.py +37 -36
  51. lusid/api/reference_portfolio_api.py +46 -45
  52. lusid/api/relation_definitions_api.py +28 -27
  53. lusid/api/relations_api.py +19 -18
  54. lusid/api/relationship_definitions_api.py +46 -45
  55. lusid/api/relationships_api.py +19 -18
  56. lusid/api/schemas_api.py +37 -36
  57. lusid/api/scopes_api.py +19 -18
  58. lusid/api/scripted_translation_api.py +73 -72
  59. lusid/api/search_api.py +37 -36
  60. lusid/api/sequences_api.py +37 -36
  61. lusid/api/staged_modifications_api.py +37 -36
  62. lusid/api/staging_rule_set_api.py +46 -45
  63. lusid/api/structured_result_data_api.py +82 -81
  64. lusid/api/system_configuration_api.py +64 -63
  65. lusid/api/tax_rule_sets_api.py +46 -45
  66. lusid/api/transaction_configuration_api.py +100 -99
  67. lusid/api/transaction_fees_api.py +46 -45
  68. lusid/api/transaction_portfolios_api.py +325 -324
  69. lusid/api/translation_api.py +19 -18
  70. lusid/api/workspace_api.py +181 -180
  71. lusid/api_client.py +26 -17
  72. lusid/configuration.py +87 -2
  73. lusid/extensions/api_client.py +25 -17
  74. lusid/extensions/api_client_factory.py +14 -5
  75. lusid/extensions/api_configuration.py +50 -1
  76. lusid/extensions/configuration_loaders.py +39 -11
  77. lusid/extensions/configuration_options.py +67 -0
  78. lusid/extensions/rest.py +78 -26
  79. lusid/extensions/retry.py +109 -37
  80. lusid/models/__init__.py +26 -0
  81. lusid/models/accounting_method.py +7 -0
  82. lusid/models/accumulation_event.py +3 -3
  83. lusid/models/amortisation_event.py +3 -3
  84. lusid/models/basket.py +3 -3
  85. lusid/models/batch_upsert_dates_for_calendar_response.py +146 -0
  86. lusid/models/bond.py +3 -3
  87. lusid/models/bond_coupon_event.py +3 -3
  88. lusid/models/bond_default_event.py +3 -3
  89. lusid/models/bond_principal_event.py +3 -3
  90. lusid/models/bonus_issue_event.py +166 -0
  91. lusid/models/cap_floor.py +3 -3
  92. lusid/models/capital_distribution_event.py +3 -3
  93. lusid/models/cash.py +3 -3
  94. lusid/models/cash_dividend_event.py +3 -3
  95. lusid/models/cash_flow_event.py +3 -3
  96. lusid/models/cash_perpetual.py +3 -3
  97. lusid/models/cds_credit_event.py +6 -6
  98. lusid/models/cds_index.py +3 -3
  99. lusid/models/cdx_credit_event.py +6 -6
  100. lusid/models/change_interval.py +123 -0
  101. lusid/models/change_interval_with_order_management_detail.py +3 -3
  102. lusid/models/close_event.py +3 -3
  103. lusid/models/complex_bond.py +3 -3
  104. lusid/models/contract_for_difference.py +3 -3
  105. lusid/models/create_derived_transaction_portfolio_request.py +3 -3
  106. lusid/models/create_transaction_portfolio_request.py +3 -3
  107. lusid/models/credit_default_swap.py +3 -3
  108. lusid/models/credit_premium_cash_flow_event.py +3 -3
  109. lusid/models/custom_entity_response.py +7 -1
  110. lusid/models/dividend_option_event.py +3 -3
  111. lusid/models/dividend_reinvestment_event.py +3 -3
  112. lusid/models/effective_range.py +71 -0
  113. lusid/models/equity.py +3 -3
  114. lusid/models/equity_option.py +3 -3
  115. lusid/models/equity_swap.py +3 -3
  116. lusid/models/exchange_traded_option.py +3 -3
  117. lusid/models/exercise_event.py +3 -3
  118. lusid/models/exotic_instrument.py +3 -3
  119. lusid/models/expiry_event.py +3 -3
  120. lusid/models/fee.py +8 -8
  121. lusid/models/fee_request.py +8 -8
  122. lusid/models/fee_type.py +4 -4
  123. lusid/models/fee_type_request.py +3 -3
  124. lusid/models/fixed_leg.py +3 -3
  125. lusid/models/flexible_loan.py +3 -3
  126. lusid/models/floating_leg.py +3 -3
  127. lusid/models/forward_rate_agreement.py +3 -3
  128. lusid/models/fund_share_class.py +23 -8
  129. lusid/models/funding_leg.py +3 -3
  130. lusid/models/future.py +3 -3
  131. lusid/models/future_expiry_event.py +3 -3
  132. lusid/models/fx_forward.py +3 -3
  133. lusid/models/fx_forward_settlement_event.py +3 -3
  134. lusid/models/fx_option.py +3 -3
  135. lusid/models/fx_swap.py +3 -3
  136. lusid/models/inflation_leg.py +3 -3
  137. lusid/models/inflation_linked_bond.py +3 -3
  138. lusid/models/inflation_swap.py +3 -3
  139. lusid/models/informational_error_event.py +3 -3
  140. lusid/models/informational_event.py +3 -3
  141. lusid/models/instrument_event.py +10 -5
  142. lusid/models/instrument_event_holder.py +9 -1
  143. lusid/models/instrument_event_type.py +5 -0
  144. lusid/models/instrument_leg.py +3 -3
  145. lusid/models/instrument_type.py +1 -0
  146. lusid/models/interest_rate_swap.py +3 -3
  147. lusid/models/interest_rate_swaption.py +3 -3
  148. lusid/models/lapse_election.py +73 -0
  149. lusid/models/lusid_instrument.py +6 -5
  150. lusid/models/mastered_instrument.py +139 -0
  151. lusid/models/maturity_event.py +3 -3
  152. lusid/models/mbs_coupon_event.py +97 -0
  153. lusid/models/mbs_interest_deferral_event.py +97 -0
  154. lusid/models/mbs_principal_event.py +97 -0
  155. lusid/models/mbs_principal_write_off_event.py +97 -0
  156. lusid/models/merger_event.py +3 -3
  157. lusid/models/open_event.py +3 -3
  158. lusid/models/portfolio.py +3 -3
  159. lusid/models/portfolio_details.py +3 -3
  160. lusid/models/portfolio_without_href.py +3 -3
  161. lusid/models/raw_vendor_event.py +3 -3
  162. lusid/models/reference_instrument.py +3 -3
  163. lusid/models/repo.py +3 -3
  164. lusid/models/reset_event.py +3 -3
  165. lusid/models/resource_list_of_change_interval.py +113 -0
  166. lusid/models/reverse_stock_split_event.py +3 -3
  167. lusid/models/scrip_dividend_event.py +3 -3
  168. lusid/models/share_class_details.py +18 -1
  169. lusid/models/simple_cash_flow_loan.py +3 -3
  170. lusid/models/simple_instrument.py +3 -3
  171. lusid/models/simple_rounding_convention.py +76 -0
  172. lusid/models/spin_off_event.py +3 -3
  173. lusid/models/staged_modification_effective_range.py +2 -2
  174. lusid/models/stock_dividend_event.py +3 -3
  175. lusid/models/stock_split_event.py +3 -3
  176. lusid/models/swap_cash_flow_event.py +3 -3
  177. lusid/models/swap_principal_event.py +3 -3
  178. lusid/models/term_deposit.py +3 -3
  179. lusid/models/total_return_swap.py +3 -3
  180. lusid/models/transition_event.py +3 -3
  181. lusid/models/trigger_event.py +3 -3
  182. lusid/models/update_fee_type_request.py +4 -4
  183. lusid/models/update_reference_data_request.py +87 -0
  184. lusid/models/upsert_custom_entities_response.py +20 -1
  185. lusid/models/valuation_point_data_query_parameters.py +3 -3
  186. lusid/models/valuation_point_data_response.py +8 -13
  187. lusid/rest.py +70 -20
  188. {lusid_sdk-2.1.423.dist-info → lusid_sdk-2.1.450.dist-info}/METADATA +25 -7
  189. {lusid_sdk-2.1.423.dist-info → lusid_sdk-2.1.450.dist-info}/RECORD +190 -176
  190. {lusid_sdk-2.1.423.dist-info → lusid_sdk-2.1.450.dist-info}/WHEEL +0 -0
@@ -54,6 +54,7 @@ from lusid.exceptions import ( # noqa: F401
54
54
  ApiTypeError,
55
55
  ApiValueError
56
56
  )
57
+ from lusid.extensions.configuration_options import ConfigurationOptions
57
58
 
58
59
 
59
60
  class InstrumentsApi:
@@ -97,10 +98,9 @@ class InstrumentsApi:
97
98
  :type success_mode: str
98
99
  :param async_req: Whether to execute the request asynchronously.
99
100
  :type async_req: bool, optional
100
- :param _request_timeout: timeout setting for this request.
101
- If one number provided, it will be total request
102
- timeout. It can also be a pair (tuple) of
103
- (connection, read) timeouts.
101
+ :param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
102
+ :param opts: Configuration options for this request
103
+ :type opts: ConfigurationOptions, optional
104
104
  :return: Returns the result object.
105
105
  If the method is called asynchronously,
106
106
  returns the request thread.
@@ -143,10 +143,9 @@ class InstrumentsApi:
143
143
  :param _return_http_data_only: response data instead of ApiResponse
144
144
  object with status code, headers, etc
145
145
  :type _return_http_data_only: bool, optional
146
- :param _request_timeout: timeout setting for this request. If one
147
- number provided, it will be total request
148
- timeout. It can also be a pair (tuple) of
149
- (connection, read) timeouts.
146
+ :param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
147
+ :param opts: Configuration options for this request
148
+ :type opts: ConfigurationOptions, optional
150
149
  :param _request_auth: set to override the auth_settings for an a single
151
150
  request; this effectively ignores the authentication
152
151
  in the spec for a single request.
@@ -174,7 +173,8 @@ class InstrumentsApi:
174
173
  '_request_timeout',
175
174
  '_request_auth',
176
175
  '_content_type',
177
- '_headers'
176
+ '_headers',
177
+ 'opts'
178
178
  ]
179
179
  )
180
180
 
@@ -247,6 +247,7 @@ class InstrumentsApi:
247
247
  _return_http_data_only=_params.get('_return_http_data_only'), # noqa: E501
248
248
  _preload_content=_params.get('_preload_content', True),
249
249
  _request_timeout=_params.get('_request_timeout'),
250
+ opts=_params.get('opts'),
250
251
  collection_formats=_collection_formats,
251
252
  _request_auth=_params.get('_request_auth'))
252
253
 
@@ -277,10 +278,9 @@ class InstrumentsApi:
277
278
  :type scope: str
278
279
  :param async_req: Whether to execute the request asynchronously.
279
280
  :type async_req: bool, optional
280
- :param _request_timeout: timeout setting for this request.
281
- If one number provided, it will be total request
282
- timeout. It can also be a pair (tuple) of
283
- (connection, read) timeouts.
281
+ :param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
282
+ :param opts: Configuration options for this request
283
+ :type opts: ConfigurationOptions, optional
284
284
  :return: Returns the result object.
285
285
  If the method is called asynchronously,
286
286
  returns the request thread.
@@ -321,10 +321,9 @@ class InstrumentsApi:
321
321
  :param _return_http_data_only: response data instead of ApiResponse
322
322
  object with status code, headers, etc
323
323
  :type _return_http_data_only: bool, optional
324
- :param _request_timeout: timeout setting for this request. If one
325
- number provided, it will be total request
326
- timeout. It can also be a pair (tuple) of
327
- (connection, read) timeouts.
324
+ :param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
325
+ :param opts: Configuration options for this request
326
+ :type opts: ConfigurationOptions, optional
328
327
  :param _request_auth: set to override the auth_settings for an a single
329
328
  request; this effectively ignores the authentication
330
329
  in the spec for a single request.
@@ -351,7 +350,8 @@ class InstrumentsApi:
351
350
  '_request_timeout',
352
351
  '_request_auth',
353
352
  '_content_type',
354
- '_headers'
353
+ '_headers',
354
+ 'opts'
355
355
  ]
356
356
  )
357
357
 
@@ -414,6 +414,7 @@ class InstrumentsApi:
414
414
  _return_http_data_only=_params.get('_return_http_data_only'), # noqa: E501
415
415
  _preload_content=_params.get('_preload_content', True),
416
416
  _request_timeout=_params.get('_request_timeout'),
417
+ opts=_params.get('opts'),
417
418
  collection_formats=_collection_formats,
418
419
  _request_auth=_params.get('_request_auth'))
419
420
 
@@ -448,10 +449,9 @@ class InstrumentsApi:
448
449
  :type scope: str
449
450
  :param async_req: Whether to execute the request asynchronously.
450
451
  :type async_req: bool, optional
451
- :param _request_timeout: timeout setting for this request.
452
- If one number provided, it will be total request
453
- timeout. It can also be a pair (tuple) of
454
- (connection, read) timeouts.
452
+ :param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
453
+ :param opts: Configuration options for this request
454
+ :type opts: ConfigurationOptions, optional
455
455
  :return: Returns the result object.
456
456
  If the method is called asynchronously,
457
457
  returns the request thread.
@@ -496,10 +496,9 @@ class InstrumentsApi:
496
496
  :param _return_http_data_only: response data instead of ApiResponse
497
497
  object with status code, headers, etc
498
498
  :type _return_http_data_only: bool, optional
499
- :param _request_timeout: timeout setting for this request. If one
500
- number provided, it will be total request
501
- timeout. It can also be a pair (tuple) of
502
- (connection, read) timeouts.
499
+ :param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
500
+ :param opts: Configuration options for this request
501
+ :type opts: ConfigurationOptions, optional
503
502
  :param _request_auth: set to override the auth_settings for an a single
504
503
  request; this effectively ignores the authentication
505
504
  in the spec for a single request.
@@ -528,7 +527,8 @@ class InstrumentsApi:
528
527
  '_request_timeout',
529
528
  '_request_auth',
530
529
  '_content_type',
531
- '_headers'
530
+ '_headers',
531
+ 'opts'
532
532
  ]
533
533
  )
534
534
 
@@ -604,6 +604,7 @@ class InstrumentsApi:
604
604
  _return_http_data_only=_params.get('_return_http_data_only'), # noqa: E501
605
605
  _preload_content=_params.get('_preload_content', True),
606
606
  _request_timeout=_params.get('_request_timeout'),
607
+ opts=_params.get('opts'),
607
608
  collection_formats=_collection_formats,
608
609
  _request_auth=_params.get('_request_auth'))
609
610
 
@@ -634,10 +635,9 @@ class InstrumentsApi:
634
635
  :type scope: str
635
636
  :param async_req: Whether to execute the request asynchronously.
636
637
  :type async_req: bool, optional
637
- :param _request_timeout: timeout setting for this request.
638
- If one number provided, it will be total request
639
- timeout. It can also be a pair (tuple) of
640
- (connection, read) timeouts.
638
+ :param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
639
+ :param opts: Configuration options for this request
640
+ :type opts: ConfigurationOptions, optional
641
641
  :return: Returns the result object.
642
642
  If the method is called asynchronously,
643
643
  returns the request thread.
@@ -678,10 +678,9 @@ class InstrumentsApi:
678
678
  :param _return_http_data_only: response data instead of ApiResponse
679
679
  object with status code, headers, etc
680
680
  :type _return_http_data_only: bool, optional
681
- :param _request_timeout: timeout setting for this request. If one
682
- number provided, it will be total request
683
- timeout. It can also be a pair (tuple) of
684
- (connection, read) timeouts.
681
+ :param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
682
+ :param opts: Configuration options for this request
683
+ :type opts: ConfigurationOptions, optional
685
684
  :param _request_auth: set to override the auth_settings for an a single
686
685
  request; this effectively ignores the authentication
687
686
  in the spec for a single request.
@@ -708,7 +707,8 @@ class InstrumentsApi:
708
707
  '_request_timeout',
709
708
  '_request_auth',
710
709
  '_content_type',
711
- '_headers'
710
+ '_headers',
711
+ 'opts'
712
712
  ]
713
713
  )
714
714
 
@@ -778,6 +778,7 @@ class InstrumentsApi:
778
778
  _return_http_data_only=_params.get('_return_http_data_only'), # noqa: E501
779
779
  _preload_content=_params.get('_preload_content', True),
780
780
  _request_timeout=_params.get('_request_timeout'),
781
+ opts=_params.get('opts'),
781
782
  collection_formats=_collection_formats,
782
783
  _request_auth=_params.get('_request_auth'))
783
784
 
@@ -804,10 +805,9 @@ class InstrumentsApi:
804
805
  :type instrument_type: str
805
806
  :param async_req: Whether to execute the request asynchronously.
806
807
  :type async_req: bool, optional
807
- :param _request_timeout: timeout setting for this request.
808
- If one number provided, it will be total request
809
- timeout. It can also be a pair (tuple) of
810
- (connection, read) timeouts.
808
+ :param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
809
+ :param opts: Configuration options for this request
810
+ :type opts: ConfigurationOptions, optional
811
811
  :return: Returns the result object.
812
812
  If the method is called asynchronously,
813
813
  returns the request thread.
@@ -844,10 +844,9 @@ class InstrumentsApi:
844
844
  :param _return_http_data_only: response data instead of ApiResponse
845
845
  object with status code, headers, etc
846
846
  :type _return_http_data_only: bool, optional
847
- :param _request_timeout: timeout setting for this request. If one
848
- number provided, it will be total request
849
- timeout. It can also be a pair (tuple) of
850
- (connection, read) timeouts.
847
+ :param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
848
+ :param opts: Configuration options for this request
849
+ :type opts: ConfigurationOptions, optional
851
850
  :param _request_auth: set to override the auth_settings for an a single
852
851
  request; this effectively ignores the authentication
853
852
  in the spec for a single request.
@@ -872,7 +871,8 @@ class InstrumentsApi:
872
871
  '_request_timeout',
873
872
  '_request_auth',
874
873
  '_content_type',
875
- '_headers'
874
+ '_headers',
875
+ 'opts'
876
876
  ]
877
877
  )
878
878
 
@@ -929,6 +929,7 @@ class InstrumentsApi:
929
929
  _return_http_data_only=_params.get('_return_http_data_only'), # noqa: E501
930
930
  _preload_content=_params.get('_preload_content', True),
931
931
  _request_timeout=_params.get('_request_timeout'),
932
+ opts=_params.get('opts'),
932
933
  collection_formats=_collection_formats,
933
934
  _request_auth=_params.get('_request_auth'))
934
935
 
@@ -967,10 +968,9 @@ class InstrumentsApi:
967
968
  :type recipe_code: str
968
969
  :param async_req: Whether to execute the request asynchronously.
969
970
  :type async_req: bool, optional
970
- :param _request_timeout: timeout setting for this request.
971
- If one number provided, it will be total request
972
- timeout. It can also be a pair (tuple) of
973
- (connection, read) timeouts.
971
+ :param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
972
+ :param opts: Configuration options for this request
973
+ :type opts: ConfigurationOptions, optional
974
974
  :return: Returns the result object.
975
975
  If the method is called asynchronously,
976
976
  returns the request thread.
@@ -1019,10 +1019,9 @@ class InstrumentsApi:
1019
1019
  :param _return_http_data_only: response data instead of ApiResponse
1020
1020
  object with status code, headers, etc
1021
1021
  :type _return_http_data_only: bool, optional
1022
- :param _request_timeout: timeout setting for this request. If one
1023
- number provided, it will be total request
1024
- timeout. It can also be a pair (tuple) of
1025
- (connection, read) timeouts.
1022
+ :param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
1023
+ :param opts: Configuration options for this request
1024
+ :type opts: ConfigurationOptions, optional
1026
1025
  :param _request_auth: set to override the auth_settings for an a single
1027
1026
  request; this effectively ignores the authentication
1028
1027
  in the spec for a single request.
@@ -1053,7 +1052,8 @@ class InstrumentsApi:
1053
1052
  '_request_timeout',
1054
1053
  '_request_auth',
1055
1054
  '_content_type',
1056
- '_headers'
1055
+ '_headers',
1056
+ 'opts'
1057
1057
  ]
1058
1058
  )
1059
1059
 
@@ -1131,6 +1131,7 @@ class InstrumentsApi:
1131
1131
  _return_http_data_only=_params.get('_return_http_data_only'), # noqa: E501
1132
1132
  _preload_content=_params.get('_preload_content', True),
1133
1133
  _request_timeout=_params.get('_request_timeout'),
1134
+ opts=_params.get('opts'),
1134
1135
  collection_formats=_collection_formats,
1135
1136
  _request_auth=_params.get('_request_auth'))
1136
1137
 
@@ -1167,10 +1168,9 @@ class InstrumentsApi:
1167
1168
  :type recipe_code: str
1168
1169
  :param async_req: Whether to execute the request asynchronously.
1169
1170
  :type async_req: bool, optional
1170
- :param _request_timeout: timeout setting for this request.
1171
- If one number provided, it will be total request
1172
- timeout. It can also be a pair (tuple) of
1173
- (connection, read) timeouts.
1171
+ :param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
1172
+ :param opts: Configuration options for this request
1173
+ :type opts: ConfigurationOptions, optional
1174
1174
  :return: Returns the result object.
1175
1175
  If the method is called asynchronously,
1176
1176
  returns the request thread.
@@ -1217,10 +1217,9 @@ class InstrumentsApi:
1217
1217
  :param _return_http_data_only: response data instead of ApiResponse
1218
1218
  object with status code, headers, etc
1219
1219
  :type _return_http_data_only: bool, optional
1220
- :param _request_timeout: timeout setting for this request. If one
1221
- number provided, it will be total request
1222
- timeout. It can also be a pair (tuple) of
1223
- (connection, read) timeouts.
1220
+ :param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
1221
+ :param opts: Configuration options for this request
1222
+ :type opts: ConfigurationOptions, optional
1224
1223
  :param _request_auth: set to override the auth_settings for an a single
1225
1224
  request; this effectively ignores the authentication
1226
1225
  in the spec for a single request.
@@ -1250,7 +1249,8 @@ class InstrumentsApi:
1250
1249
  '_request_timeout',
1251
1250
  '_request_auth',
1252
1251
  '_content_type',
1253
- '_headers'
1252
+ '_headers',
1253
+ 'opts'
1254
1254
  ]
1255
1255
  )
1256
1256
 
@@ -1325,6 +1325,7 @@ class InstrumentsApi:
1325
1325
  _return_http_data_only=_params.get('_return_http_data_only'), # noqa: E501
1326
1326
  _preload_content=_params.get('_preload_content', True),
1327
1327
  _request_timeout=_params.get('_request_timeout'),
1328
+ opts=_params.get('opts'),
1328
1329
  collection_formats=_collection_formats,
1329
1330
  _request_auth=_params.get('_request_auth'))
1330
1331
 
@@ -1363,10 +1364,9 @@ class InstrumentsApi:
1363
1364
  :type relationship_definition_ids: List[str]
1364
1365
  :param async_req: Whether to execute the request asynchronously.
1365
1366
  :type async_req: bool, optional
1366
- :param _request_timeout: timeout setting for this request.
1367
- If one number provided, it will be total request
1368
- timeout. It can also be a pair (tuple) of
1369
- (connection, read) timeouts.
1367
+ :param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
1368
+ :param opts: Configuration options for this request
1369
+ :type opts: ConfigurationOptions, optional
1370
1370
  :return: Returns the result object.
1371
1371
  If the method is called asynchronously,
1372
1372
  returns the request thread.
@@ -1415,10 +1415,9 @@ class InstrumentsApi:
1415
1415
  :param _return_http_data_only: response data instead of ApiResponse
1416
1416
  object with status code, headers, etc
1417
1417
  :type _return_http_data_only: bool, optional
1418
- :param _request_timeout: timeout setting for this request. If one
1419
- number provided, it will be total request
1420
- timeout. It can also be a pair (tuple) of
1421
- (connection, read) timeouts.
1418
+ :param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
1419
+ :param opts: Configuration options for this request
1420
+ :type opts: ConfigurationOptions, optional
1422
1421
  :param _request_auth: set to override the auth_settings for an a single
1423
1422
  request; this effectively ignores the authentication
1424
1423
  in the spec for a single request.
@@ -1449,7 +1448,8 @@ class InstrumentsApi:
1449
1448
  '_request_timeout',
1450
1449
  '_request_auth',
1451
1450
  '_content_type',
1452
- '_headers'
1451
+ '_headers',
1452
+ 'opts'
1453
1453
  ]
1454
1454
  )
1455
1455
 
@@ -1529,6 +1529,7 @@ class InstrumentsApi:
1529
1529
  _return_http_data_only=_params.get('_return_http_data_only'), # noqa: E501
1530
1530
  _preload_content=_params.get('_preload_content', True),
1531
1531
  _request_timeout=_params.get('_request_timeout'),
1532
+ opts=_params.get('opts'),
1532
1533
  collection_formats=_collection_formats,
1533
1534
  _request_auth=_params.get('_request_auth'))
1534
1535
 
@@ -1553,10 +1554,9 @@ class InstrumentsApi:
1553
1554
 
1554
1555
  :param async_req: Whether to execute the request asynchronously.
1555
1556
  :type async_req: bool, optional
1556
- :param _request_timeout: timeout setting for this request.
1557
- If one number provided, it will be total request
1558
- timeout. It can also be a pair (tuple) of
1559
- (connection, read) timeouts.
1557
+ :param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
1558
+ :param opts: Configuration options for this request
1559
+ :type opts: ConfigurationOptions, optional
1560
1560
  :return: Returns the result object.
1561
1561
  If the method is called asynchronously,
1562
1562
  returns the request thread.
@@ -1591,10 +1591,9 @@ class InstrumentsApi:
1591
1591
  :param _return_http_data_only: response data instead of ApiResponse
1592
1592
  object with status code, headers, etc
1593
1593
  :type _return_http_data_only: bool, optional
1594
- :param _request_timeout: timeout setting for this request. If one
1595
- number provided, it will be total request
1596
- timeout. It can also be a pair (tuple) of
1597
- (connection, read) timeouts.
1594
+ :param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
1595
+ :param opts: Configuration options for this request
1596
+ :type opts: ConfigurationOptions, optional
1598
1597
  :param _request_auth: set to override the auth_settings for an a single
1599
1598
  request; this effectively ignores the authentication
1600
1599
  in the spec for a single request.
@@ -1618,7 +1617,8 @@ class InstrumentsApi:
1618
1617
  '_request_timeout',
1619
1618
  '_request_auth',
1620
1619
  '_content_type',
1621
- '_headers'
1620
+ '_headers',
1621
+ 'opts'
1622
1622
  ]
1623
1623
  )
1624
1624
 
@@ -1671,6 +1671,7 @@ class InstrumentsApi:
1671
1671
  _return_http_data_only=_params.get('_return_http_data_only'), # noqa: E501
1672
1672
  _preload_content=_params.get('_preload_content', True),
1673
1673
  _request_timeout=_params.get('_request_timeout'),
1674
+ opts=_params.get('opts'),
1674
1675
  collection_formats=_collection_formats,
1675
1676
  _request_auth=_params.get('_request_auth'))
1676
1677
 
@@ -1709,10 +1710,9 @@ class InstrumentsApi:
1709
1710
  :type scope: str
1710
1711
  :param async_req: Whether to execute the request asynchronously.
1711
1712
  :type async_req: bool, optional
1712
- :param _request_timeout: timeout setting for this request.
1713
- If one number provided, it will be total request
1714
- timeout. It can also be a pair (tuple) of
1715
- (connection, read) timeouts.
1713
+ :param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
1714
+ :param opts: Configuration options for this request
1715
+ :type opts: ConfigurationOptions, optional
1716
1716
  :return: Returns the result object.
1717
1717
  If the method is called asynchronously,
1718
1718
  returns the request thread.
@@ -1761,10 +1761,9 @@ class InstrumentsApi:
1761
1761
  :param _return_http_data_only: response data instead of ApiResponse
1762
1762
  object with status code, headers, etc
1763
1763
  :type _return_http_data_only: bool, optional
1764
- :param _request_timeout: timeout setting for this request. If one
1765
- number provided, it will be total request
1766
- timeout. It can also be a pair (tuple) of
1767
- (connection, read) timeouts.
1764
+ :param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
1765
+ :param opts: Configuration options for this request
1766
+ :type opts: ConfigurationOptions, optional
1768
1767
  :param _request_auth: set to override the auth_settings for an a single
1769
1768
  request; this effectively ignores the authentication
1770
1769
  in the spec for a single request.
@@ -1795,7 +1794,8 @@ class InstrumentsApi:
1795
1794
  '_request_timeout',
1796
1795
  '_request_auth',
1797
1796
  '_content_type',
1798
- '_headers'
1797
+ '_headers',
1798
+ 'opts'
1799
1799
  ]
1800
1800
  )
1801
1801
 
@@ -1873,6 +1873,7 @@ class InstrumentsApi:
1873
1873
  _return_http_data_only=_params.get('_return_http_data_only'), # noqa: E501
1874
1874
  _preload_content=_params.get('_preload_content', True),
1875
1875
  _request_timeout=_params.get('_request_timeout'),
1876
+ opts=_params.get('opts'),
1876
1877
  collection_formats=_collection_formats,
1877
1878
  _request_auth=_params.get('_request_auth'))
1878
1879
 
@@ -1907,10 +1908,9 @@ class InstrumentsApi:
1907
1908
  :type scope: str
1908
1909
  :param async_req: Whether to execute the request asynchronously.
1909
1910
  :type async_req: bool, optional
1910
- :param _request_timeout: timeout setting for this request.
1911
- If one number provided, it will be total request
1912
- timeout. It can also be a pair (tuple) of
1913
- (connection, read) timeouts.
1911
+ :param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
1912
+ :param opts: Configuration options for this request
1913
+ :type opts: ConfigurationOptions, optional
1914
1914
  :return: Returns the result object.
1915
1915
  If the method is called asynchronously,
1916
1916
  returns the request thread.
@@ -1955,10 +1955,9 @@ class InstrumentsApi:
1955
1955
  :param _return_http_data_only: response data instead of ApiResponse
1956
1956
  object with status code, headers, etc
1957
1957
  :type _return_http_data_only: bool, optional
1958
- :param _request_timeout: timeout setting for this request. If one
1959
- number provided, it will be total request
1960
- timeout. It can also be a pair (tuple) of
1961
- (connection, read) timeouts.
1958
+ :param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
1959
+ :param opts: Configuration options for this request
1960
+ :type opts: ConfigurationOptions, optional
1962
1961
  :param _request_auth: set to override the auth_settings for an a single
1963
1962
  request; this effectively ignores the authentication
1964
1963
  in the spec for a single request.
@@ -1987,7 +1986,8 @@ class InstrumentsApi:
1987
1986
  '_request_timeout',
1988
1987
  '_request_auth',
1989
1988
  '_content_type',
1990
- '_headers'
1989
+ '_headers',
1990
+ 'opts'
1991
1991
  ]
1992
1992
  )
1993
1993
 
@@ -2059,6 +2059,7 @@ class InstrumentsApi:
2059
2059
  _return_http_data_only=_params.get('_return_http_data_only'), # noqa: E501
2060
2060
  _preload_content=_params.get('_preload_content', True),
2061
2061
  _request_timeout=_params.get('_request_timeout'),
2062
+ opts=_params.get('opts'),
2062
2063
  collection_formats=_collection_formats,
2063
2064
  _request_auth=_params.get('_request_auth'))
2064
2065
 
@@ -2101,10 +2102,9 @@ class InstrumentsApi:
2101
2102
  :type scope: str
2102
2103
  :param async_req: Whether to execute the request asynchronously.
2103
2104
  :type async_req: bool, optional
2104
- :param _request_timeout: timeout setting for this request.
2105
- If one number provided, it will be total request
2106
- timeout. It can also be a pair (tuple) of
2107
- (connection, read) timeouts.
2105
+ :param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
2106
+ :param opts: Configuration options for this request
2107
+ :type opts: ConfigurationOptions, optional
2108
2108
  :return: Returns the result object.
2109
2109
  If the method is called asynchronously,
2110
2110
  returns the request thread.
@@ -2157,10 +2157,9 @@ class InstrumentsApi:
2157
2157
  :param _return_http_data_only: response data instead of ApiResponse
2158
2158
  object with status code, headers, etc
2159
2159
  :type _return_http_data_only: bool, optional
2160
- :param _request_timeout: timeout setting for this request. If one
2161
- number provided, it will be total request
2162
- timeout. It can also be a pair (tuple) of
2163
- (connection, read) timeouts.
2160
+ :param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
2161
+ :param opts: Configuration options for this request
2162
+ :type opts: ConfigurationOptions, optional
2164
2163
  :param _request_auth: set to override the auth_settings for an a single
2165
2164
  request; this effectively ignores the authentication
2166
2165
  in the spec for a single request.
@@ -2193,7 +2192,8 @@ class InstrumentsApi:
2193
2192
  '_request_timeout',
2194
2193
  '_request_auth',
2195
2194
  '_content_type',
2196
- '_headers'
2195
+ '_headers',
2196
+ 'opts'
2197
2197
  ]
2198
2198
  )
2199
2199
 
@@ -2277,6 +2277,7 @@ class InstrumentsApi:
2277
2277
  _return_http_data_only=_params.get('_return_http_data_only'), # noqa: E501
2278
2278
  _preload_content=_params.get('_preload_content', True),
2279
2279
  _request_timeout=_params.get('_request_timeout'),
2280
+ opts=_params.get('opts'),
2280
2281
  collection_formats=_collection_formats,
2281
2282
  _request_auth=_params.get('_request_auth'))
2282
2283
 
@@ -2315,10 +2316,9 @@ class InstrumentsApi:
2315
2316
  :type scope: str
2316
2317
  :param async_req: Whether to execute the request asynchronously.
2317
2318
  :type async_req: bool, optional
2318
- :param _request_timeout: timeout setting for this request.
2319
- If one number provided, it will be total request
2320
- timeout. It can also be a pair (tuple) of
2321
- (connection, read) timeouts.
2319
+ :param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
2320
+ :param opts: Configuration options for this request
2321
+ :type opts: ConfigurationOptions, optional
2322
2322
  :return: Returns the result object.
2323
2323
  If the method is called asynchronously,
2324
2324
  returns the request thread.
@@ -2367,10 +2367,9 @@ class InstrumentsApi:
2367
2367
  :param _return_http_data_only: response data instead of ApiResponse
2368
2368
  object with status code, headers, etc
2369
2369
  :type _return_http_data_only: bool, optional
2370
- :param _request_timeout: timeout setting for this request. If one
2371
- number provided, it will be total request
2372
- timeout. It can also be a pair (tuple) of
2373
- (connection, read) timeouts.
2370
+ :param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
2371
+ :param opts: Configuration options for this request
2372
+ :type opts: ConfigurationOptions, optional
2374
2373
  :param _request_auth: set to override the auth_settings for an a single
2375
2374
  request; this effectively ignores the authentication
2376
2375
  in the spec for a single request.
@@ -2401,7 +2400,8 @@ class InstrumentsApi:
2401
2400
  '_request_timeout',
2402
2401
  '_request_auth',
2403
2402
  '_content_type',
2404
- '_headers'
2403
+ '_headers',
2404
+ 'opts'
2405
2405
  ]
2406
2406
  )
2407
2407
 
@@ -2480,6 +2480,7 @@ class InstrumentsApi:
2480
2480
  _return_http_data_only=_params.get('_return_http_data_only'), # noqa: E501
2481
2481
  _preload_content=_params.get('_preload_content', True),
2482
2482
  _request_timeout=_params.get('_request_timeout'),
2483
+ opts=_params.get('opts'),
2483
2484
  collection_formats=_collection_formats,
2484
2485
  _request_auth=_params.get('_request_auth'))
2485
2486
 
@@ -2518,10 +2519,9 @@ class InstrumentsApi:
2518
2519
  :type relationship_definition_ids: List[str]
2519
2520
  :param async_req: Whether to execute the request asynchronously.
2520
2521
  :type async_req: bool, optional
2521
- :param _request_timeout: timeout setting for this request.
2522
- If one number provided, it will be total request
2523
- timeout. It can also be a pair (tuple) of
2524
- (connection, read) timeouts.
2522
+ :param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
2523
+ :param opts: Configuration options for this request
2524
+ :type opts: ConfigurationOptions, optional
2525
2525
  :return: Returns the result object.
2526
2526
  If the method is called asynchronously,
2527
2527
  returns the request thread.
@@ -2570,10 +2570,9 @@ class InstrumentsApi:
2570
2570
  :param _return_http_data_only: response data instead of ApiResponse
2571
2571
  object with status code, headers, etc
2572
2572
  :type _return_http_data_only: bool, optional
2573
- :param _request_timeout: timeout setting for this request. If one
2574
- number provided, it will be total request
2575
- timeout. It can also be a pair (tuple) of
2576
- (connection, read) timeouts.
2573
+ :param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
2574
+ :param opts: Configuration options for this request
2575
+ :type opts: ConfigurationOptions, optional
2577
2576
  :param _request_auth: set to override the auth_settings for an a single
2578
2577
  request; this effectively ignores the authentication
2579
2578
  in the spec for a single request.
@@ -2604,7 +2603,8 @@ class InstrumentsApi:
2604
2603
  '_request_timeout',
2605
2604
  '_request_auth',
2606
2605
  '_content_type',
2607
- '_headers'
2606
+ '_headers',
2607
+ 'opts'
2608
2608
  ]
2609
2609
  )
2610
2610
 
@@ -2691,6 +2691,7 @@ class InstrumentsApi:
2691
2691
  _return_http_data_only=_params.get('_return_http_data_only'), # noqa: E501
2692
2692
  _preload_content=_params.get('_preload_content', True),
2693
2693
  _request_timeout=_params.get('_request_timeout'),
2694
+ opts=_params.get('opts'),
2694
2695
  collection_formats=_collection_formats,
2695
2696
  _request_auth=_params.get('_request_auth'))
2696
2697
 
@@ -2729,10 +2730,9 @@ class InstrumentsApi:
2729
2730
  :type scope: str
2730
2731
  :param async_req: Whether to execute the request asynchronously.
2731
2732
  :type async_req: bool, optional
2732
- :param _request_timeout: timeout setting for this request.
2733
- If one number provided, it will be total request
2734
- timeout. It can also be a pair (tuple) of
2735
- (connection, read) timeouts.
2733
+ :param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
2734
+ :param opts: Configuration options for this request
2735
+ :type opts: ConfigurationOptions, optional
2736
2736
  :return: Returns the result object.
2737
2737
  If the method is called asynchronously,
2738
2738
  returns the request thread.
@@ -2781,10 +2781,9 @@ class InstrumentsApi:
2781
2781
  :param _return_http_data_only: response data instead of ApiResponse
2782
2782
  object with status code, headers, etc
2783
2783
  :type _return_http_data_only: bool, optional
2784
- :param _request_timeout: timeout setting for this request. If one
2785
- number provided, it will be total request
2786
- timeout. It can also be a pair (tuple) of
2787
- (connection, read) timeouts.
2784
+ :param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
2785
+ :param opts: Configuration options for this request
2786
+ :type opts: ConfigurationOptions, optional
2788
2787
  :param _request_auth: set to override the auth_settings for an a single
2789
2788
  request; this effectively ignores the authentication
2790
2789
  in the spec for a single request.
@@ -2815,7 +2814,8 @@ class InstrumentsApi:
2815
2814
  '_request_timeout',
2816
2815
  '_request_auth',
2817
2816
  '_content_type',
2818
- '_headers'
2817
+ '_headers',
2818
+ 'opts'
2819
2819
  ]
2820
2820
  )
2821
2821
 
@@ -2893,6 +2893,7 @@ class InstrumentsApi:
2893
2893
  _return_http_data_only=_params.get('_return_http_data_only'), # noqa: E501
2894
2894
  _preload_content=_params.get('_preload_content', True),
2895
2895
  _request_timeout=_params.get('_request_timeout'),
2896
+ opts=_params.get('opts'),
2896
2897
  collection_formats=_collection_formats,
2897
2898
  _request_auth=_params.get('_request_auth'))
2898
2899
 
@@ -2935,10 +2936,9 @@ class InstrumentsApi:
2935
2936
  :type relationship_definition_ids: List[str]
2936
2937
  :param async_req: Whether to execute the request asynchronously.
2937
2938
  :type async_req: bool, optional
2938
- :param _request_timeout: timeout setting for this request.
2939
- If one number provided, it will be total request
2940
- timeout. It can also be a pair (tuple) of
2941
- (connection, read) timeouts.
2939
+ :param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
2940
+ :param opts: Configuration options for this request
2941
+ :type opts: ConfigurationOptions, optional
2942
2942
  :return: Returns the result object.
2943
2943
  If the method is called asynchronously,
2944
2944
  returns the request thread.
@@ -2991,10 +2991,9 @@ class InstrumentsApi:
2991
2991
  :param _return_http_data_only: response data instead of ApiResponse
2992
2992
  object with status code, headers, etc
2993
2993
  :type _return_http_data_only: bool, optional
2994
- :param _request_timeout: timeout setting for this request. If one
2995
- number provided, it will be total request
2996
- timeout. It can also be a pair (tuple) of
2997
- (connection, read) timeouts.
2994
+ :param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
2995
+ :param opts: Configuration options for this request
2996
+ :type opts: ConfigurationOptions, optional
2998
2997
  :param _request_auth: set to override the auth_settings for an a single
2999
2998
  request; this effectively ignores the authentication
3000
2999
  in the spec for a single request.
@@ -3027,7 +3026,8 @@ class InstrumentsApi:
3027
3026
  '_request_timeout',
3028
3027
  '_request_auth',
3029
3028
  '_content_type',
3030
- '_headers'
3029
+ '_headers',
3030
+ 'opts'
3031
3031
  ]
3032
3032
  )
3033
3033
 
@@ -3114,6 +3114,7 @@ class InstrumentsApi:
3114
3114
  _return_http_data_only=_params.get('_return_http_data_only'), # noqa: E501
3115
3115
  _preload_content=_params.get('_preload_content', True),
3116
3116
  _request_timeout=_params.get('_request_timeout'),
3117
+ opts=_params.get('opts'),
3117
3118
  collection_formats=_collection_formats,
3118
3119
  _request_auth=_params.get('_request_auth'))
3119
3120
 
@@ -3142,10 +3143,9 @@ class InstrumentsApi:
3142
3143
  :type model: str
3143
3144
  :param async_req: Whether to execute the request asynchronously.
3144
3145
  :type async_req: bool, optional
3145
- :param _request_timeout: timeout setting for this request.
3146
- If one number provided, it will be total request
3147
- timeout. It can also be a pair (tuple) of
3148
- (connection, read) timeouts.
3146
+ :param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
3147
+ :param opts: Configuration options for this request
3148
+ :type opts: ConfigurationOptions, optional
3149
3149
  :return: Returns the result object.
3150
3150
  If the method is called asynchronously,
3151
3151
  returns the request thread.
@@ -3184,10 +3184,9 @@ class InstrumentsApi:
3184
3184
  :param _return_http_data_only: response data instead of ApiResponse
3185
3185
  object with status code, headers, etc
3186
3186
  :type _return_http_data_only: bool, optional
3187
- :param _request_timeout: timeout setting for this request. If one
3188
- number provided, it will be total request
3189
- timeout. It can also be a pair (tuple) of
3190
- (connection, read) timeouts.
3187
+ :param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
3188
+ :param opts: Configuration options for this request
3189
+ :type opts: ConfigurationOptions, optional
3191
3190
  :param _request_auth: set to override the auth_settings for an a single
3192
3191
  request; this effectively ignores the authentication
3193
3192
  in the spec for a single request.
@@ -3213,7 +3212,8 @@ class InstrumentsApi:
3213
3212
  '_request_timeout',
3214
3213
  '_request_auth',
3215
3214
  '_content_type',
3216
- '_headers'
3215
+ '_headers',
3216
+ 'opts'
3217
3217
  ]
3218
3218
  )
3219
3219
 
@@ -3280,6 +3280,7 @@ class InstrumentsApi:
3280
3280
  _return_http_data_only=_params.get('_return_http_data_only'), # noqa: E501
3281
3281
  _preload_content=_params.get('_preload_content', True),
3282
3282
  _request_timeout=_params.get('_request_timeout'),
3283
+ opts=_params.get('opts'),
3283
3284
  collection_formats=_collection_formats,
3284
3285
  _request_auth=_params.get('_request_auth'))
3285
3286
 
@@ -3312,10 +3313,9 @@ class InstrumentsApi:
3312
3313
  :type scope: str
3313
3314
  :param async_req: Whether to execute the request asynchronously.
3314
3315
  :type async_req: bool, optional
3315
- :param _request_timeout: timeout setting for this request.
3316
- If one number provided, it will be total request
3317
- timeout. It can also be a pair (tuple) of
3318
- (connection, read) timeouts.
3316
+ :param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
3317
+ :param opts: Configuration options for this request
3318
+ :type opts: ConfigurationOptions, optional
3319
3319
  :return: Returns the result object.
3320
3320
  If the method is called asynchronously,
3321
3321
  returns the request thread.
@@ -3358,10 +3358,9 @@ class InstrumentsApi:
3358
3358
  :param _return_http_data_only: response data instead of ApiResponse
3359
3359
  object with status code, headers, etc
3360
3360
  :type _return_http_data_only: bool, optional
3361
- :param _request_timeout: timeout setting for this request. If one
3362
- number provided, it will be total request
3363
- timeout. It can also be a pair (tuple) of
3364
- (connection, read) timeouts.
3361
+ :param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
3362
+ :param opts: Configuration options for this request
3363
+ :type opts: ConfigurationOptions, optional
3365
3364
  :param _request_auth: set to override the auth_settings for an a single
3366
3365
  request; this effectively ignores the authentication
3367
3366
  in the spec for a single request.
@@ -3389,7 +3388,8 @@ class InstrumentsApi:
3389
3388
  '_request_timeout',
3390
3389
  '_request_auth',
3391
3390
  '_content_type',
3392
- '_headers'
3391
+ '_headers',
3392
+ 'opts'
3393
3393
  ]
3394
3394
  )
3395
3395
 
@@ -3462,6 +3462,7 @@ class InstrumentsApi:
3462
3462
  _return_http_data_only=_params.get('_return_http_data_only'), # noqa: E501
3463
3463
  _preload_content=_params.get('_preload_content', True),
3464
3464
  _request_timeout=_params.get('_request_timeout'),
3465
+ opts=_params.get('opts'),
3465
3466
  collection_formats=_collection_formats,
3466
3467
  _request_auth=_params.get('_request_auth'))
3467
3468
 
@@ -3490,10 +3491,9 @@ class InstrumentsApi:
3490
3491
  :type scope: str
3491
3492
  :param async_req: Whether to execute the request asynchronously.
3492
3493
  :type async_req: bool, optional
3493
- :param _request_timeout: timeout setting for this request.
3494
- If one number provided, it will be total request
3495
- timeout. It can also be a pair (tuple) of
3496
- (connection, read) timeouts.
3494
+ :param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
3495
+ :param opts: Configuration options for this request
3496
+ :type opts: ConfigurationOptions, optional
3497
3497
  :return: Returns the result object.
3498
3498
  If the method is called asynchronously,
3499
3499
  returns the request thread.
@@ -3532,10 +3532,9 @@ class InstrumentsApi:
3532
3532
  :param _return_http_data_only: response data instead of ApiResponse
3533
3533
  object with status code, headers, etc
3534
3534
  :type _return_http_data_only: bool, optional
3535
- :param _request_timeout: timeout setting for this request. If one
3536
- number provided, it will be total request
3537
- timeout. It can also be a pair (tuple) of
3538
- (connection, read) timeouts.
3535
+ :param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
3536
+ :param opts: Configuration options for this request
3537
+ :type opts: ConfigurationOptions, optional
3539
3538
  :param _request_auth: set to override the auth_settings for an a single
3540
3539
  request; this effectively ignores the authentication
3541
3540
  in the spec for a single request.
@@ -3561,7 +3560,8 @@ class InstrumentsApi:
3561
3560
  '_request_timeout',
3562
3561
  '_request_auth',
3563
3562
  '_content_type',
3564
- '_headers'
3563
+ '_headers',
3564
+ 'opts'
3565
3565
  ]
3566
3566
  )
3567
3567
 
@@ -3628,6 +3628,7 @@ class InstrumentsApi:
3628
3628
  _return_http_data_only=_params.get('_return_http_data_only'), # noqa: E501
3629
3629
  _preload_content=_params.get('_preload_content', True),
3630
3630
  _request_timeout=_params.get('_request_timeout'),
3631
+ opts=_params.get('opts'),
3631
3632
  collection_formats=_collection_formats,
3632
3633
  _request_auth=_params.get('_request_auth'))
3633
3634
 
@@ -3656,10 +3657,9 @@ class InstrumentsApi:
3656
3657
  :type scope: str
3657
3658
  :param async_req: Whether to execute the request asynchronously.
3658
3659
  :type async_req: bool, optional
3659
- :param _request_timeout: timeout setting for this request.
3660
- If one number provided, it will be total request
3661
- timeout. It can also be a pair (tuple) of
3662
- (connection, read) timeouts.
3660
+ :param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
3661
+ :param opts: Configuration options for this request
3662
+ :type opts: ConfigurationOptions, optional
3663
3663
  :return: Returns the result object.
3664
3664
  If the method is called asynchronously,
3665
3665
  returns the request thread.
@@ -3698,10 +3698,9 @@ class InstrumentsApi:
3698
3698
  :param _return_http_data_only: response data instead of ApiResponse
3699
3699
  object with status code, headers, etc
3700
3700
  :type _return_http_data_only: bool, optional
3701
- :param _request_timeout: timeout setting for this request. If one
3702
- number provided, it will be total request
3703
- timeout. It can also be a pair (tuple) of
3704
- (connection, read) timeouts.
3701
+ :param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
3702
+ :param opts: Configuration options for this request
3703
+ :type opts: ConfigurationOptions, optional
3705
3704
  :param _request_auth: set to override the auth_settings for an a single
3706
3705
  request; this effectively ignores the authentication
3707
3706
  in the spec for a single request.
@@ -3727,7 +3726,8 @@ class InstrumentsApi:
3727
3726
  '_request_timeout',
3728
3727
  '_request_auth',
3729
3728
  '_content_type',
3730
- '_headers'
3729
+ '_headers',
3730
+ 'opts'
3731
3731
  ]
3732
3732
  )
3733
3733
 
@@ -3794,5 +3794,6 @@ class InstrumentsApi:
3794
3794
  _return_http_data_only=_params.get('_return_http_data_only'), # noqa: E501
3795
3795
  _preload_content=_params.get('_preload_content', True),
3796
3796
  _request_timeout=_params.get('_request_timeout'),
3797
+ opts=_params.get('opts'),
3797
3798
  collection_formats=_collection_formats,
3798
3799
  _request_auth=_params.get('_request_auth'))