lusid-sdk 2.1.405__py3-none-any.whl → 2.1.537__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.
- lusid/__init__.py +142 -8
- lusid/api/__init__.py +2 -2
- lusid/api/abor_api.py +126 -133
- lusid/api/abor_configuration_api.py +46 -45
- lusid/api/address_key_definition_api.py +28 -27
- lusid/api/aggregation_api.py +37 -36
- lusid/api/allocations_api.py +39 -38
- lusid/api/amortisation_rule_sets_api.py +55 -54
- lusid/api/application_metadata_api.py +28 -27
- lusid/api/blocks_api.py +37 -36
- lusid/api/calendars_api.py +469 -111
- lusid/api/chart_of_accounts_api.py +454 -279
- lusid/api/complex_market_data_api.py +37 -36
- lusid/api/compliance_api.py +136 -135
- lusid/api/configuration_recipe_api.py +100 -99
- lusid/api/conventions_api.py +109 -108
- lusid/api/corporate_action_sources_api.py +82 -81
- lusid/api/counterparties_api.py +73 -72
- lusid/api/custom_entities_api.py +102 -101
- lusid/api/custom_entity_definitions_api.py +37 -36
- lusid/api/custom_entity_types_api.py +37 -36
- lusid/api/cut_label_definitions_api.py +46 -45
- lusid/api/data_types_api.py +248 -72
- lusid/api/derived_transaction_portfolios_api.py +19 -18
- lusid/api/entities_api.py +431 -46
- lusid/api/executions_api.py +37 -36
- lusid/api/fee_types_api.py +55 -54
- lusid/api/{fund_configurations_api.py → fund_configuration_api.py} +222 -46
- lusid/api/funds_api.py +337 -162
- lusid/api/group_reconciliations_api.py +2182 -63
- lusid/api/instrument_event_types_api.py +64 -63
- lusid/api/instrument_events_api.py +46 -45
- lusid/api/instruments_api.py +374 -186
- lusid/api/legacy_compliance_api.py +73 -72
- lusid/api/legal_entities_api.py +167 -166
- lusid/api/order_graph_api.py +32 -31
- lusid/api/order_instructions_api.py +37 -36
- lusid/api/order_management_api.py +251 -90
- lusid/api/orders_api.py +37 -36
- lusid/api/packages_api.py +37 -36
- lusid/api/participations_api.py +37 -36
- lusid/api/persons_api.py +163 -162
- lusid/api/placements_api.py +37 -36
- lusid/api/portfolio_groups_api.py +235 -234
- lusid/api/portfolios_api.py +307 -309
- lusid/api/property_definitions_api.py +100 -99
- lusid/api/queryable_keys_api.py +10 -9
- lusid/api/quotes_api.py +82 -81
- lusid/api/reconciliations_api.py +136 -135
- lusid/api/reference_lists_api.py +39 -38
- lusid/api/reference_portfolio_api.py +213 -36
- lusid/api/relation_definitions_api.py +28 -27
- lusid/api/relations_api.py +19 -18
- lusid/api/relationship_definitions_api.py +46 -45
- lusid/api/relationships_api.py +19 -18
- lusid/api/schemas_api.py +37 -36
- lusid/api/scopes_api.py +19 -18
- lusid/api/scripted_translation_api.py +73 -72
- lusid/api/search_api.py +37 -36
- lusid/api/sequences_api.py +37 -36
- lusid/api/staged_modifications_api.py +37 -36
- lusid/api/staging_rule_set_api.py +46 -45
- lusid/api/structured_result_data_api.py +82 -81
- lusid/api/system_configuration_api.py +64 -63
- lusid/api/tax_rule_sets_api.py +46 -45
- lusid/api/transaction_configuration_api.py +100 -99
- lusid/api/transaction_fees_api.py +46 -45
- lusid/api/transaction_portfolios_api.py +771 -328
- lusid/api/translation_api.py +19 -18
- lusid/api/workspace_api.py +181 -180
- lusid/api_client.py +26 -17
- lusid/configuration.py +87 -2
- lusid/extensions/api_client.py +25 -17
- lusid/extensions/api_client_factory.py +14 -5
- lusid/extensions/api_configuration.py +50 -1
- lusid/extensions/configuration_loaders.py +39 -11
- lusid/extensions/configuration_options.py +67 -0
- lusid/extensions/rest.py +78 -26
- lusid/extensions/retry.py +109 -37
- lusid/models/__init__.py +140 -6
- lusid/models/access_metadata_value.py +1 -1
- lusid/models/accounting_method.py +7 -0
- lusid/models/accumulation_event.py +3 -3
- lusid/models/address_key_list.py +3 -3
- lusid/models/amortisation_event.py +3 -3
- lusid/models/amount.py +69 -0
- lusid/models/applicable_instrument_event.py +7 -2
- lusid/models/asset_leg.py +1 -1
- lusid/models/basket.py +3 -3
- lusid/models/batch_update_user_review_for_comparison_result_request.py +81 -0
- lusid/models/batch_update_user_review_for_comparison_result_response.py +146 -0
- lusid/models/batch_upsert_dates_for_calendar_response.py +146 -0
- lusid/models/batch_upsert_portfolio_access_metadata_request.py +27 -17
- lusid/models/batch_upsert_portfolio_access_metadata_response.py +56 -16
- lusid/models/{metadata_key_value.py → batch_upsert_portfolio_access_metadata_response_item.py} +15 -9
- lusid/models/bond.py +3 -3
- lusid/models/bond_coupon_event.py +10 -5
- lusid/models/bond_default_event.py +3 -3
- lusid/models/bond_principal_event.py +10 -5
- lusid/models/bonus_issue_event.py +166 -0
- lusid/models/{component_rule.py → break_code_source.py} +17 -21
- lusid/models/call_on_intermediate_securities_event.py +139 -0
- lusid/models/cancel_order_and_move_remaining_result.py +84 -0
- lusid/models/cancel_orders_and_move_remaining_request.py +83 -0
- lusid/models/cancel_orders_and_move_remaining_response.py +153 -0
- lusid/models/cap_floor.py +3 -3
- lusid/models/capital_distribution_event.py +3 -3
- lusid/models/cash.py +3 -3
- lusid/models/cash_dividend_event.py +3 -3
- lusid/models/cash_flow_event.py +3 -3
- lusid/models/cash_perpetual.py +3 -3
- lusid/models/cds_credit_event.py +6 -6
- lusid/models/cds_index.py +3 -3
- lusid/models/cdx_credit_event.py +6 -6
- lusid/models/change_interval.py +123 -0
- lusid/models/change_interval_with_order_management_detail.py +3 -3
- lusid/models/close_event.py +3 -3
- lusid/models/comparison_attribute_value_pair.py +71 -0
- lusid/models/complex_bond.py +3 -3
- lusid/models/component_transaction.py +10 -3
- lusid/models/contract_for_difference.py +3 -3
- lusid/models/create_derived_transaction_portfolio_request.py +3 -3
- lusid/models/create_group_reconciliation_definition_request.py +113 -0
- lusid/models/create_staging_rule_set_request.py +1 -6
- lusid/models/create_transaction_portfolio_request.py +3 -3
- lusid/models/credit_default_swap.py +3 -3
- lusid/models/credit_premium_cash_flow_event.py +3 -3
- lusid/models/custodian_account_request.py +1 -1
- lusid/models/custom_entity_entity.py +146 -0
- lusid/models/custom_entity_response.py +7 -1
- lusid/models/decimal_list.py +3 -3
- lusid/models/delete_instrument_properties_response.py +7 -1
- lusid/models/delete_instrument_response.py +7 -1
- lusid/models/delete_instruments_response.py +22 -1
- lusid/models/deleted_entity_response.py +7 -1
- lusid/models/diary_entry_request.py +10 -1
- lusid/models/dividend_option_event.py +3 -3
- lusid/models/dividend_reinvestment_event.py +9 -4
- lusid/models/effective_range.py +71 -0
- lusid/models/equity.py +3 -3
- lusid/models/equity_option.py +22 -7
- lusid/models/equity_swap.py +3 -3
- lusid/models/exchange_traded_option.py +3 -3
- lusid/models/exchange_traded_option_contract_details.py +1 -1
- lusid/models/exercise_event.py +3 -3
- lusid/models/exotic_instrument.py +3 -3
- lusid/models/expiry_event.py +3 -3
- lusid/models/fee.py +17 -10
- lusid/models/fee_request.py +20 -13
- lusid/models/fee_type.py +4 -4
- lusid/models/fee_type_request.py +3 -3
- lusid/models/fixed_leg.py +3 -3
- lusid/models/fixed_schedule.py +3 -3
- lusid/models/flexible_loan.py +3 -3
- lusid/models/float_schedule.py +4 -4
- lusid/models/floating_leg.py +3 -3
- lusid/models/flow_conventions.py +7 -1
- lusid/models/forward_rate_agreement.py +3 -3
- lusid/models/fund_configuration.py +44 -17
- lusid/models/fund_configuration_request.py +31 -19
- lusid/models/fund_id_list.py +99 -0
- lusid/models/fund_share_class.py +23 -8
- lusid/models/funding_leg.py +3 -3
- lusid/models/future.py +3 -3
- lusid/models/future_expiry_event.py +3 -3
- lusid/models/fx_forward.py +3 -3
- lusid/models/fx_forward_settlement_event.py +3 -3
- lusid/models/fx_option.py +3 -3
- lusid/models/fx_swap.py +3 -3
- lusid/models/group_reconciliation_aggregate_attribute_rule.py +2 -2
- lusid/models/group_reconciliation_aggregate_attribute_values.py +86 -0
- lusid/models/group_reconciliation_aggregate_comparison_rule_operand.py +1 -1
- lusid/models/group_reconciliation_comparison_result.py +148 -0
- lusid/models/group_reconciliation_core_attribute_values.py +86 -0
- lusid/models/group_reconciliation_core_comparison_rule_operand.py +1 -1
- lusid/models/group_reconciliation_date_pair.py +81 -0
- lusid/models/group_reconciliation_dates.py +78 -0
- lusid/models/group_reconciliation_definition.py +136 -0
- lusid/models/group_reconciliation_definition_comparison_ruleset_ids.py +83 -0
- lusid/models/group_reconciliation_definition_currencies.py +71 -0
- lusid/models/group_reconciliation_definition_portfolio_entity_ids.py +86 -0
- lusid/models/group_reconciliation_definition_recipe_ids.py +78 -0
- lusid/models/group_reconciliation_instance_id.py +71 -0
- lusid/models/group_reconciliation_result_statuses.py +89 -0
- lusid/models/group_reconciliation_result_types.py +96 -0
- lusid/models/group_reconciliation_review_statuses.py +96 -0
- lusid/models/group_reconciliation_run_details.py +76 -0
- lusid/models/group_reconciliation_run_request.py +75 -0
- lusid/models/{metadata_key_value_response.py → group_reconciliation_run_response.py} +20 -29
- lusid/models/group_reconciliation_summary.py +121 -0
- lusid/models/group_reconciliation_user_review.py +112 -0
- lusid/models/group_reconciliation_user_review_add.py +88 -0
- lusid/models/group_reconciliation_user_review_break_code.py +80 -0
- lusid/models/group_reconciliation_user_review_comment.py +80 -0
- lusid/models/group_reconciliation_user_review_match_key.py +80 -0
- lusid/models/group_reconciliation_user_review_remove.py +88 -0
- lusid/models/holding_contributor.py +11 -4
- lusid/models/holding_ids_request.py +69 -0
- lusid/models/inflation_leg.py +3 -3
- lusid/models/inflation_linked_bond.py +3 -3
- lusid/models/inflation_swap.py +3 -3
- lusid/models/informational_error_event.py +3 -3
- lusid/models/informational_event.py +3 -3
- lusid/models/instrument.py +7 -1
- lusid/models/instrument_definition.py +8 -2
- lusid/models/instrument_event.py +17 -5
- lusid/models/instrument_event_holder.py +9 -1
- lusid/models/instrument_event_type.py +12 -0
- lusid/models/instrument_leg.py +3 -3
- lusid/models/instrument_list.py +3 -3
- lusid/models/instrument_type.py +2 -0
- lusid/models/interest_rate_swap.py +3 -3
- lusid/models/interest_rate_swaption.py +3 -3
- lusid/models/intermediate_securities_distribution_event.py +140 -0
- lusid/models/lapse_election.py +73 -0
- lusid/models/loan_facility.py +97 -0
- lusid/models/lusid_instrument.py +7 -5
- lusid/models/market_data_key_rule.py +5 -3
- lusid/models/market_data_specific_rule.py +5 -3
- lusid/models/mastered_instrument.py +139 -0
- lusid/models/maturity_event.py +3 -3
- lusid/models/mbs_coupon_event.py +102 -0
- lusid/models/mbs_interest_deferral_event.py +102 -0
- lusid/models/mbs_interest_shortfall_event.py +102 -0
- lusid/models/mbs_principal_event.py +102 -0
- lusid/models/mbs_principal_write_off_event.py +102 -0
- lusid/models/merger_event.py +22 -22
- lusid/models/new_instrument.py +1 -1
- lusid/models/open_event.py +3 -3
- lusid/models/option_exercise_cash_event.py +144 -0
- lusid/models/option_exercise_election.py +73 -0
- lusid/models/option_exercise_physical_event.py +149 -0
- lusid/models/output_transaction.py +9 -2
- lusid/models/paged_resource_list_of_group_reconciliation_comparison_result.py +113 -0
- lusid/models/paged_resource_list_of_group_reconciliation_comparison_ruleset.py +113 -0
- lusid/models/paged_resource_list_of_group_reconciliation_definition.py +113 -0
- lusid/models/portfolio.py +3 -3
- lusid/models/portfolio_details.py +3 -3
- lusid/models/portfolio_group_id_list.py +3 -3
- lusid/models/portfolio_id_list.py +3 -3
- lusid/models/portfolio_without_href.py +3 -3
- lusid/models/pricing_options.py +8 -2
- lusid/models/property_list.py +3 -3
- lusid/models/protection_payout_cash_flow_event.py +102 -0
- lusid/models/raw_vendor_event.py +3 -3
- lusid/models/reference_instrument.py +3 -3
- lusid/models/reference_list.py +6 -5
- lusid/models/reference_list_type.py +1 -0
- lusid/models/repo.py +3 -3
- lusid/models/reset_event.py +3 -3
- lusid/models/resource_list_of_change_interval.py +113 -0
- lusid/models/resource_list_of_output_transaction.py +113 -0
- lusid/models/return_zero_pv_options.py +69 -0
- lusid/models/reverse_stock_split_event.py +21 -7
- lusid/models/scrip_dividend_event.py +3 -3
- lusid/models/settlement_cycle.py +79 -0
- lusid/models/share_class_dealing_breakdown.py +3 -2
- lusid/models/share_class_details.py +18 -1
- lusid/models/simple_cash_flow_loan.py +3 -3
- lusid/models/simple_instrument.py +3 -3
- lusid/models/simple_rounding_convention.py +76 -0
- lusid/models/spin_off_event.py +3 -3
- lusid/models/staged_modification_effective_range.py +2 -2
- lusid/models/stock_dividend_event.py +20 -6
- lusid/models/stock_split_event.py +3 -3
- lusid/models/string_list.py +3 -3
- lusid/models/swap_cash_flow_event.py +3 -3
- lusid/models/swap_principal_event.py +3 -3
- lusid/models/target_tax_lot.py +23 -2
- lusid/models/target_tax_lot_request.py +23 -2
- lusid/models/tender_event.py +172 -0
- lusid/models/term_deposit.py +3 -3
- lusid/models/total_return_swap.py +4 -4
- lusid/models/transaction.py +9 -2
- lusid/models/transaction_date_windows.py +85 -0
- lusid/models/transaction_price.py +3 -3
- lusid/models/transaction_price_type.py +2 -0
- lusid/models/transaction_request.py +9 -2
- lusid/models/transition_event.py +3 -3
- lusid/models/trigger_event.py +3 -3
- lusid/models/update_fee_type_request.py +4 -4
- lusid/models/update_group_reconciliation_comparison_ruleset_request.py +91 -0
- lusid/models/update_group_reconciliation_definition_request.py +107 -0
- lusid/models/update_reference_data_request.py +87 -0
- lusid/models/update_staging_rule_set_request.py +1 -6
- lusid/models/upsert_custom_entities_response.py +20 -1
- lusid/models/upsert_reference_portfolio_constituent_properties_request.py +84 -0
- lusid/models/upsert_reference_portfolio_constituent_properties_response.py +115 -0
- lusid/models/valuation_point_data_query_parameters.py +3 -3
- lusid/models/valuation_point_data_response.py +8 -13
- lusid/rest.py +70 -20
- {lusid_sdk-2.1.405.dist-info → lusid_sdk-2.1.537.dist-info}/METADATA +118 -26
- {lusid_sdk-2.1.405.dist-info → lusid_sdk-2.1.537.dist-info}/RECORD +294 -226
- {lusid_sdk-2.1.405.dist-info → lusid_sdk-2.1.537.dist-info}/WHEEL +0 -0
lusid/api/conventions_api.py
CHANGED
@@ -44,6 +44,7 @@ from lusid.exceptions import ( # noqa: F401
|
|
44
44
|
ApiTypeError,
|
45
45
|
ApiValueError
|
46
46
|
)
|
47
|
+
from lusid.extensions.configuration_options import ConfigurationOptions
|
47
48
|
|
48
49
|
|
49
50
|
class ConventionsApi:
|
@@ -83,10 +84,9 @@ class ConventionsApi:
|
|
83
84
|
:type code: str
|
84
85
|
:param async_req: Whether to execute the request asynchronously.
|
85
86
|
:type async_req: bool, optional
|
86
|
-
:param _request_timeout:
|
87
|
-
|
88
|
-
|
89
|
-
(connection, read) timeouts.
|
87
|
+
:param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
|
88
|
+
:param opts: Configuration options for this request
|
89
|
+
:type opts: ConfigurationOptions, optional
|
90
90
|
:return: Returns the result object.
|
91
91
|
If the method is called asynchronously,
|
92
92
|
returns the request thread.
|
@@ -125,10 +125,9 @@ class ConventionsApi:
|
|
125
125
|
:param _return_http_data_only: response data instead of ApiResponse
|
126
126
|
object with status code, headers, etc
|
127
127
|
:type _return_http_data_only: bool, optional
|
128
|
-
:param _request_timeout:
|
129
|
-
|
130
|
-
|
131
|
-
(connection, read) timeouts.
|
128
|
+
:param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
|
129
|
+
:param opts: Configuration options for this request
|
130
|
+
:type opts: ConfigurationOptions, optional
|
132
131
|
:param _request_auth: set to override the auth_settings for an a single
|
133
132
|
request; this effectively ignores the authentication
|
134
133
|
in the spec for a single request.
|
@@ -154,7 +153,8 @@ class ConventionsApi:
|
|
154
153
|
'_request_timeout',
|
155
154
|
'_request_auth',
|
156
155
|
'_content_type',
|
157
|
-
'_headers'
|
156
|
+
'_headers',
|
157
|
+
'opts'
|
158
158
|
]
|
159
159
|
)
|
160
160
|
|
@@ -214,6 +214,7 @@ class ConventionsApi:
|
|
214
214
|
_return_http_data_only=_params.get('_return_http_data_only'), # noqa: E501
|
215
215
|
_preload_content=_params.get('_preload_content', True),
|
216
216
|
_request_timeout=_params.get('_request_timeout'),
|
217
|
+
opts=_params.get('opts'),
|
217
218
|
collection_formats=_collection_formats,
|
218
219
|
_request_auth=_params.get('_request_auth'))
|
219
220
|
|
@@ -242,10 +243,9 @@ class ConventionsApi:
|
|
242
243
|
:type code: str
|
243
244
|
:param async_req: Whether to execute the request asynchronously.
|
244
245
|
:type async_req: bool, optional
|
245
|
-
:param _request_timeout:
|
246
|
-
|
247
|
-
|
248
|
-
(connection, read) timeouts.
|
246
|
+
:param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
|
247
|
+
:param opts: Configuration options for this request
|
248
|
+
:type opts: ConfigurationOptions, optional
|
249
249
|
:return: Returns the result object.
|
250
250
|
If the method is called asynchronously,
|
251
251
|
returns the request thread.
|
@@ -284,10 +284,9 @@ class ConventionsApi:
|
|
284
284
|
:param _return_http_data_only: response data instead of ApiResponse
|
285
285
|
object with status code, headers, etc
|
286
286
|
:type _return_http_data_only: bool, optional
|
287
|
-
:param _request_timeout:
|
288
|
-
|
289
|
-
|
290
|
-
(connection, read) timeouts.
|
287
|
+
:param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
|
288
|
+
:param opts: Configuration options for this request
|
289
|
+
:type opts: ConfigurationOptions, optional
|
291
290
|
:param _request_auth: set to override the auth_settings for an a single
|
292
291
|
request; this effectively ignores the authentication
|
293
292
|
in the spec for a single request.
|
@@ -313,7 +312,8 @@ class ConventionsApi:
|
|
313
312
|
'_request_timeout',
|
314
313
|
'_request_auth',
|
315
314
|
'_content_type',
|
316
|
-
'_headers'
|
315
|
+
'_headers',
|
316
|
+
'opts'
|
317
317
|
]
|
318
318
|
)
|
319
319
|
|
@@ -373,6 +373,7 @@ class ConventionsApi:
|
|
373
373
|
_return_http_data_only=_params.get('_return_http_data_only'), # noqa: E501
|
374
374
|
_preload_content=_params.get('_preload_content', True),
|
375
375
|
_request_timeout=_params.get('_request_timeout'),
|
376
|
+
opts=_params.get('opts'),
|
376
377
|
collection_formats=_collection_formats,
|
377
378
|
_request_auth=_params.get('_request_auth'))
|
378
379
|
|
@@ -401,10 +402,9 @@ class ConventionsApi:
|
|
401
402
|
:type code: str
|
402
403
|
:param async_req: Whether to execute the request asynchronously.
|
403
404
|
:type async_req: bool, optional
|
404
|
-
:param _request_timeout:
|
405
|
-
|
406
|
-
|
407
|
-
(connection, read) timeouts.
|
405
|
+
:param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
|
406
|
+
:param opts: Configuration options for this request
|
407
|
+
:type opts: ConfigurationOptions, optional
|
408
408
|
:return: Returns the result object.
|
409
409
|
If the method is called asynchronously,
|
410
410
|
returns the request thread.
|
@@ -443,10 +443,9 @@ class ConventionsApi:
|
|
443
443
|
:param _return_http_data_only: response data instead of ApiResponse
|
444
444
|
object with status code, headers, etc
|
445
445
|
:type _return_http_data_only: bool, optional
|
446
|
-
:param _request_timeout:
|
447
|
-
|
448
|
-
|
449
|
-
(connection, read) timeouts.
|
446
|
+
:param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
|
447
|
+
:param opts: Configuration options for this request
|
448
|
+
:type opts: ConfigurationOptions, optional
|
450
449
|
:param _request_auth: set to override the auth_settings for an a single
|
451
450
|
request; this effectively ignores the authentication
|
452
451
|
in the spec for a single request.
|
@@ -472,7 +471,8 @@ class ConventionsApi:
|
|
472
471
|
'_request_timeout',
|
473
472
|
'_request_auth',
|
474
473
|
'_content_type',
|
475
|
-
'_headers'
|
474
|
+
'_headers',
|
475
|
+
'opts'
|
476
476
|
]
|
477
477
|
)
|
478
478
|
|
@@ -532,6 +532,7 @@ class ConventionsApi:
|
|
532
532
|
_return_http_data_only=_params.get('_return_http_data_only'), # noqa: E501
|
533
533
|
_preload_content=_params.get('_preload_content', True),
|
534
534
|
_request_timeout=_params.get('_request_timeout'),
|
535
|
+
opts=_params.get('opts'),
|
535
536
|
collection_formats=_collection_formats,
|
536
537
|
_request_auth=_params.get('_request_auth'))
|
537
538
|
|
@@ -562,10 +563,9 @@ class ConventionsApi:
|
|
562
563
|
:type as_at: datetime
|
563
564
|
:param async_req: Whether to execute the request asynchronously.
|
564
565
|
:type async_req: bool, optional
|
565
|
-
:param _request_timeout:
|
566
|
-
|
567
|
-
|
568
|
-
(connection, read) timeouts.
|
566
|
+
:param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
|
567
|
+
:param opts: Configuration options for this request
|
568
|
+
:type opts: ConfigurationOptions, optional
|
569
569
|
:return: Returns the result object.
|
570
570
|
If the method is called asynchronously,
|
571
571
|
returns the request thread.
|
@@ -606,10 +606,9 @@ class ConventionsApi:
|
|
606
606
|
:param _return_http_data_only: response data instead of ApiResponse
|
607
607
|
object with status code, headers, etc
|
608
608
|
:type _return_http_data_only: bool, optional
|
609
|
-
:param _request_timeout:
|
610
|
-
|
611
|
-
|
612
|
-
(connection, read) timeouts.
|
609
|
+
:param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
|
610
|
+
:param opts: Configuration options for this request
|
611
|
+
:type opts: ConfigurationOptions, optional
|
613
612
|
:param _request_auth: set to override the auth_settings for an a single
|
614
613
|
request; this effectively ignores the authentication
|
615
614
|
in the spec for a single request.
|
@@ -636,7 +635,8 @@ class ConventionsApi:
|
|
636
635
|
'_request_timeout',
|
637
636
|
'_request_auth',
|
638
637
|
'_content_type',
|
639
|
-
'_headers'
|
638
|
+
'_headers',
|
639
|
+
'opts'
|
640
640
|
]
|
641
641
|
)
|
642
642
|
|
@@ -702,6 +702,7 @@ class ConventionsApi:
|
|
702
702
|
_return_http_data_only=_params.get('_return_http_data_only'), # noqa: E501
|
703
703
|
_preload_content=_params.get('_preload_content', True),
|
704
704
|
_request_timeout=_params.get('_request_timeout'),
|
705
|
+
opts=_params.get('opts'),
|
705
706
|
collection_formats=_collection_formats,
|
706
707
|
_request_auth=_params.get('_request_auth'))
|
707
708
|
|
@@ -732,10 +733,9 @@ class ConventionsApi:
|
|
732
733
|
:type as_at: datetime
|
733
734
|
:param async_req: Whether to execute the request asynchronously.
|
734
735
|
:type async_req: bool, optional
|
735
|
-
:param _request_timeout:
|
736
|
-
|
737
|
-
|
738
|
-
(connection, read) timeouts.
|
736
|
+
:param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
|
737
|
+
:param opts: Configuration options for this request
|
738
|
+
:type opts: ConfigurationOptions, optional
|
739
739
|
:return: Returns the result object.
|
740
740
|
If the method is called asynchronously,
|
741
741
|
returns the request thread.
|
@@ -776,10 +776,9 @@ class ConventionsApi:
|
|
776
776
|
:param _return_http_data_only: response data instead of ApiResponse
|
777
777
|
object with status code, headers, etc
|
778
778
|
:type _return_http_data_only: bool, optional
|
779
|
-
:param _request_timeout:
|
780
|
-
|
781
|
-
|
782
|
-
(connection, read) timeouts.
|
779
|
+
:param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
|
780
|
+
:param opts: Configuration options for this request
|
781
|
+
:type opts: ConfigurationOptions, optional
|
783
782
|
:param _request_auth: set to override the auth_settings for an a single
|
784
783
|
request; this effectively ignores the authentication
|
785
784
|
in the spec for a single request.
|
@@ -806,7 +805,8 @@ class ConventionsApi:
|
|
806
805
|
'_request_timeout',
|
807
806
|
'_request_auth',
|
808
807
|
'_content_type',
|
809
|
-
'_headers'
|
808
|
+
'_headers',
|
809
|
+
'opts'
|
810
810
|
]
|
811
811
|
)
|
812
812
|
|
@@ -872,6 +872,7 @@ class ConventionsApi:
|
|
872
872
|
_return_http_data_only=_params.get('_return_http_data_only'), # noqa: E501
|
873
873
|
_preload_content=_params.get('_preload_content', True),
|
874
874
|
_request_timeout=_params.get('_request_timeout'),
|
875
|
+
opts=_params.get('opts'),
|
875
876
|
collection_formats=_collection_formats,
|
876
877
|
_request_auth=_params.get('_request_auth'))
|
877
878
|
|
@@ -902,10 +903,9 @@ class ConventionsApi:
|
|
902
903
|
:type as_at: datetime
|
903
904
|
:param async_req: Whether to execute the request asynchronously.
|
904
905
|
:type async_req: bool, optional
|
905
|
-
:param _request_timeout:
|
906
|
-
|
907
|
-
|
908
|
-
(connection, read) timeouts.
|
906
|
+
:param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
|
907
|
+
:param opts: Configuration options for this request
|
908
|
+
:type opts: ConfigurationOptions, optional
|
909
909
|
:return: Returns the result object.
|
910
910
|
If the method is called asynchronously,
|
911
911
|
returns the request thread.
|
@@ -946,10 +946,9 @@ class ConventionsApi:
|
|
946
946
|
:param _return_http_data_only: response data instead of ApiResponse
|
947
947
|
object with status code, headers, etc
|
948
948
|
:type _return_http_data_only: bool, optional
|
949
|
-
:param _request_timeout:
|
950
|
-
|
951
|
-
|
952
|
-
(connection, read) timeouts.
|
949
|
+
:param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
|
950
|
+
:param opts: Configuration options for this request
|
951
|
+
:type opts: ConfigurationOptions, optional
|
953
952
|
:param _request_auth: set to override the auth_settings for an a single
|
954
953
|
request; this effectively ignores the authentication
|
955
954
|
in the spec for a single request.
|
@@ -976,7 +975,8 @@ class ConventionsApi:
|
|
976
975
|
'_request_timeout',
|
977
976
|
'_request_auth',
|
978
977
|
'_content_type',
|
979
|
-
'_headers'
|
978
|
+
'_headers',
|
979
|
+
'opts'
|
980
980
|
]
|
981
981
|
)
|
982
982
|
|
@@ -1042,6 +1042,7 @@ class ConventionsApi:
|
|
1042
1042
|
_return_http_data_only=_params.get('_return_http_data_only'), # noqa: E501
|
1043
1043
|
_preload_content=_params.get('_preload_content', True),
|
1044
1044
|
_request_timeout=_params.get('_request_timeout'),
|
1045
|
+
opts=_params.get('opts'),
|
1045
1046
|
collection_formats=_collection_formats,
|
1046
1047
|
_request_auth=_params.get('_request_auth'))
|
1047
1048
|
|
@@ -1068,10 +1069,9 @@ class ConventionsApi:
|
|
1068
1069
|
:type as_at: datetime
|
1069
1070
|
:param async_req: Whether to execute the request asynchronously.
|
1070
1071
|
:type async_req: bool, optional
|
1071
|
-
:param _request_timeout:
|
1072
|
-
|
1073
|
-
|
1074
|
-
(connection, read) timeouts.
|
1072
|
+
:param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
|
1073
|
+
:param opts: Configuration options for this request
|
1074
|
+
:type opts: ConfigurationOptions, optional
|
1075
1075
|
:return: Returns the result object.
|
1076
1076
|
If the method is called asynchronously,
|
1077
1077
|
returns the request thread.
|
@@ -1108,10 +1108,9 @@ class ConventionsApi:
|
|
1108
1108
|
:param _return_http_data_only: response data instead of ApiResponse
|
1109
1109
|
object with status code, headers, etc
|
1110
1110
|
:type _return_http_data_only: bool, optional
|
1111
|
-
:param _request_timeout:
|
1112
|
-
|
1113
|
-
|
1114
|
-
(connection, read) timeouts.
|
1111
|
+
:param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
|
1112
|
+
:param opts: Configuration options for this request
|
1113
|
+
:type opts: ConfigurationOptions, optional
|
1115
1114
|
:param _request_auth: set to override the auth_settings for an a single
|
1116
1115
|
request; this effectively ignores the authentication
|
1117
1116
|
in the spec for a single request.
|
@@ -1136,7 +1135,8 @@ class ConventionsApi:
|
|
1136
1135
|
'_request_timeout',
|
1137
1136
|
'_request_auth',
|
1138
1137
|
'_content_type',
|
1139
|
-
'_headers'
|
1138
|
+
'_headers',
|
1139
|
+
'opts'
|
1140
1140
|
]
|
1141
1141
|
)
|
1142
1142
|
|
@@ -1196,6 +1196,7 @@ class ConventionsApi:
|
|
1196
1196
|
_return_http_data_only=_params.get('_return_http_data_only'), # noqa: E501
|
1197
1197
|
_preload_content=_params.get('_preload_content', True),
|
1198
1198
|
_request_timeout=_params.get('_request_timeout'),
|
1199
|
+
opts=_params.get('opts'),
|
1199
1200
|
collection_formats=_collection_formats,
|
1200
1201
|
_request_auth=_params.get('_request_auth'))
|
1201
1202
|
|
@@ -1222,10 +1223,9 @@ class ConventionsApi:
|
|
1222
1223
|
:type as_at: datetime
|
1223
1224
|
:param async_req: Whether to execute the request asynchronously.
|
1224
1225
|
:type async_req: bool, optional
|
1225
|
-
:param _request_timeout:
|
1226
|
-
|
1227
|
-
|
1228
|
-
(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
|
1229
1229
|
:return: Returns the result object.
|
1230
1230
|
If the method is called asynchronously,
|
1231
1231
|
returns the request thread.
|
@@ -1262,10 +1262,9 @@ class ConventionsApi:
|
|
1262
1262
|
:param _return_http_data_only: response data instead of ApiResponse
|
1263
1263
|
object with status code, headers, etc
|
1264
1264
|
:type _return_http_data_only: bool, optional
|
1265
|
-
:param _request_timeout:
|
1266
|
-
|
1267
|
-
|
1268
|
-
(connection, read) timeouts.
|
1265
|
+
:param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
|
1266
|
+
:param opts: Configuration options for this request
|
1267
|
+
:type opts: ConfigurationOptions, optional
|
1269
1268
|
:param _request_auth: set to override the auth_settings for an a single
|
1270
1269
|
request; this effectively ignores the authentication
|
1271
1270
|
in the spec for a single request.
|
@@ -1290,7 +1289,8 @@ class ConventionsApi:
|
|
1290
1289
|
'_request_timeout',
|
1291
1290
|
'_request_auth',
|
1292
1291
|
'_content_type',
|
1293
|
-
'_headers'
|
1292
|
+
'_headers',
|
1293
|
+
'opts'
|
1294
1294
|
]
|
1295
1295
|
)
|
1296
1296
|
|
@@ -1350,6 +1350,7 @@ class ConventionsApi:
|
|
1350
1350
|
_return_http_data_only=_params.get('_return_http_data_only'), # noqa: E501
|
1351
1351
|
_preload_content=_params.get('_preload_content', True),
|
1352
1352
|
_request_timeout=_params.get('_request_timeout'),
|
1353
|
+
opts=_params.get('opts'),
|
1353
1354
|
collection_formats=_collection_formats,
|
1354
1355
|
_request_auth=_params.get('_request_auth'))
|
1355
1356
|
|
@@ -1376,10 +1377,9 @@ class ConventionsApi:
|
|
1376
1377
|
:type as_at: datetime
|
1377
1378
|
:param async_req: Whether to execute the request asynchronously.
|
1378
1379
|
:type async_req: bool, optional
|
1379
|
-
:param _request_timeout:
|
1380
|
-
|
1381
|
-
|
1382
|
-
(connection, read) timeouts.
|
1380
|
+
:param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
|
1381
|
+
:param opts: Configuration options for this request
|
1382
|
+
:type opts: ConfigurationOptions, optional
|
1383
1383
|
:return: Returns the result object.
|
1384
1384
|
If the method is called asynchronously,
|
1385
1385
|
returns the request thread.
|
@@ -1416,10 +1416,9 @@ class ConventionsApi:
|
|
1416
1416
|
:param _return_http_data_only: response data instead of ApiResponse
|
1417
1417
|
object with status code, headers, etc
|
1418
1418
|
:type _return_http_data_only: bool, optional
|
1419
|
-
:param _request_timeout:
|
1420
|
-
|
1421
|
-
|
1422
|
-
(connection, read) timeouts.
|
1419
|
+
:param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
|
1420
|
+
:param opts: Configuration options for this request
|
1421
|
+
:type opts: ConfigurationOptions, optional
|
1423
1422
|
:param _request_auth: set to override the auth_settings for an a single
|
1424
1423
|
request; this effectively ignores the authentication
|
1425
1424
|
in the spec for a single request.
|
@@ -1444,7 +1443,8 @@ class ConventionsApi:
|
|
1444
1443
|
'_request_timeout',
|
1445
1444
|
'_request_auth',
|
1446
1445
|
'_content_type',
|
1447
|
-
'_headers'
|
1446
|
+
'_headers',
|
1447
|
+
'opts'
|
1448
1448
|
]
|
1449
1449
|
)
|
1450
1450
|
|
@@ -1504,6 +1504,7 @@ class ConventionsApi:
|
|
1504
1504
|
_return_http_data_only=_params.get('_return_http_data_only'), # noqa: E501
|
1505
1505
|
_preload_content=_params.get('_preload_content', True),
|
1506
1506
|
_request_timeout=_params.get('_request_timeout'),
|
1507
|
+
opts=_params.get('opts'),
|
1507
1508
|
collection_formats=_collection_formats,
|
1508
1509
|
_request_auth=_params.get('_request_auth'))
|
1509
1510
|
|
@@ -1530,10 +1531,9 @@ class ConventionsApi:
|
|
1530
1531
|
:type upsert_cds_flow_conventions_request: UpsertCdsFlowConventionsRequest
|
1531
1532
|
:param async_req: Whether to execute the request asynchronously.
|
1532
1533
|
:type async_req: bool, optional
|
1533
|
-
:param _request_timeout:
|
1534
|
-
|
1535
|
-
|
1536
|
-
(connection, read) timeouts.
|
1534
|
+
:param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
|
1535
|
+
:param opts: Configuration options for this request
|
1536
|
+
:type opts: ConfigurationOptions, optional
|
1537
1537
|
:return: Returns the result object.
|
1538
1538
|
If the method is called asynchronously,
|
1539
1539
|
returns the request thread.
|
@@ -1570,10 +1570,9 @@ class ConventionsApi:
|
|
1570
1570
|
:param _return_http_data_only: response data instead of ApiResponse
|
1571
1571
|
object with status code, headers, etc
|
1572
1572
|
:type _return_http_data_only: bool, optional
|
1573
|
-
:param _request_timeout:
|
1574
|
-
|
1575
|
-
|
1576
|
-
(connection, read) timeouts.
|
1573
|
+
:param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
|
1574
|
+
:param opts: Configuration options for this request
|
1575
|
+
:type opts: ConfigurationOptions, optional
|
1577
1576
|
:param _request_auth: set to override the auth_settings for an a single
|
1578
1577
|
request; this effectively ignores the authentication
|
1579
1578
|
in the spec for a single request.
|
@@ -1598,7 +1597,8 @@ class ConventionsApi:
|
|
1598
1597
|
'_request_timeout',
|
1599
1598
|
'_request_auth',
|
1600
1599
|
'_content_type',
|
1601
|
-
'_headers'
|
1600
|
+
'_headers',
|
1601
|
+
'opts'
|
1602
1602
|
]
|
1603
1603
|
)
|
1604
1604
|
|
@@ -1662,6 +1662,7 @@ class ConventionsApi:
|
|
1662
1662
|
_return_http_data_only=_params.get('_return_http_data_only'), # noqa: E501
|
1663
1663
|
_preload_content=_params.get('_preload_content', True),
|
1664
1664
|
_request_timeout=_params.get('_request_timeout'),
|
1665
|
+
opts=_params.get('opts'),
|
1665
1666
|
collection_formats=_collection_formats,
|
1666
1667
|
_request_auth=_params.get('_request_auth'))
|
1667
1668
|
|
@@ -1688,10 +1689,9 @@ class ConventionsApi:
|
|
1688
1689
|
:type upsert_flow_conventions_request: UpsertFlowConventionsRequest
|
1689
1690
|
:param async_req: Whether to execute the request asynchronously.
|
1690
1691
|
:type async_req: bool, optional
|
1691
|
-
:param _request_timeout:
|
1692
|
-
|
1693
|
-
|
1694
|
-
(connection, read) timeouts.
|
1692
|
+
:param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
|
1693
|
+
:param opts: Configuration options for this request
|
1694
|
+
:type opts: ConfigurationOptions, optional
|
1695
1695
|
:return: Returns the result object.
|
1696
1696
|
If the method is called asynchronously,
|
1697
1697
|
returns the request thread.
|
@@ -1728,10 +1728,9 @@ class ConventionsApi:
|
|
1728
1728
|
:param _return_http_data_only: response data instead of ApiResponse
|
1729
1729
|
object with status code, headers, etc
|
1730
1730
|
:type _return_http_data_only: bool, optional
|
1731
|
-
:param _request_timeout:
|
1732
|
-
|
1733
|
-
|
1734
|
-
(connection, read) timeouts.
|
1731
|
+
:param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
|
1732
|
+
:param opts: Configuration options for this request
|
1733
|
+
:type opts: ConfigurationOptions, optional
|
1735
1734
|
:param _request_auth: set to override the auth_settings for an a single
|
1736
1735
|
request; this effectively ignores the authentication
|
1737
1736
|
in the spec for a single request.
|
@@ -1756,7 +1755,8 @@ class ConventionsApi:
|
|
1756
1755
|
'_request_timeout',
|
1757
1756
|
'_request_auth',
|
1758
1757
|
'_content_type',
|
1759
|
-
'_headers'
|
1758
|
+
'_headers',
|
1759
|
+
'opts'
|
1760
1760
|
]
|
1761
1761
|
)
|
1762
1762
|
|
@@ -1820,6 +1820,7 @@ class ConventionsApi:
|
|
1820
1820
|
_return_http_data_only=_params.get('_return_http_data_only'), # noqa: E501
|
1821
1821
|
_preload_content=_params.get('_preload_content', True),
|
1822
1822
|
_request_timeout=_params.get('_request_timeout'),
|
1823
|
+
opts=_params.get('opts'),
|
1823
1824
|
collection_formats=_collection_formats,
|
1824
1825
|
_request_auth=_params.get('_request_auth'))
|
1825
1826
|
|
@@ -1846,10 +1847,9 @@ class ConventionsApi:
|
|
1846
1847
|
:type upsert_index_convention_request: UpsertIndexConventionRequest
|
1847
1848
|
:param async_req: Whether to execute the request asynchronously.
|
1848
1849
|
:type async_req: bool, optional
|
1849
|
-
:param _request_timeout:
|
1850
|
-
|
1851
|
-
|
1852
|
-
(connection, read) timeouts.
|
1850
|
+
:param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
|
1851
|
+
:param opts: Configuration options for this request
|
1852
|
+
:type opts: ConfigurationOptions, optional
|
1853
1853
|
:return: Returns the result object.
|
1854
1854
|
If the method is called asynchronously,
|
1855
1855
|
returns the request thread.
|
@@ -1886,10 +1886,9 @@ class ConventionsApi:
|
|
1886
1886
|
:param _return_http_data_only: response data instead of ApiResponse
|
1887
1887
|
object with status code, headers, etc
|
1888
1888
|
:type _return_http_data_only: bool, optional
|
1889
|
-
:param _request_timeout:
|
1890
|
-
|
1891
|
-
|
1892
|
-
(connection, read) timeouts.
|
1889
|
+
:param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
|
1890
|
+
:param opts: Configuration options for this request
|
1891
|
+
:type opts: ConfigurationOptions, optional
|
1893
1892
|
:param _request_auth: set to override the auth_settings for an a single
|
1894
1893
|
request; this effectively ignores the authentication
|
1895
1894
|
in the spec for a single request.
|
@@ -1914,7 +1913,8 @@ class ConventionsApi:
|
|
1914
1913
|
'_request_timeout',
|
1915
1914
|
'_request_auth',
|
1916
1915
|
'_content_type',
|
1917
|
-
'_headers'
|
1916
|
+
'_headers',
|
1917
|
+
'opts'
|
1918
1918
|
]
|
1919
1919
|
)
|
1920
1920
|
|
@@ -1978,5 +1978,6 @@ class ConventionsApi:
|
|
1978
1978
|
_return_http_data_only=_params.get('_return_http_data_only'), # noqa: E501
|
1979
1979
|
_preload_content=_params.get('_preload_content', True),
|
1980
1980
|
_request_timeout=_params.get('_request_timeout'),
|
1981
|
+
opts=_params.get('opts'),
|
1981
1982
|
collection_formats=_collection_formats,
|
1982
1983
|
_request_auth=_params.get('_request_auth'))
|