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/persons_api.py
CHANGED
@@ -48,6 +48,7 @@ from lusid.exceptions import ( # noqa: F401
|
|
48
48
|
ApiTypeError,
|
49
49
|
ApiValueError
|
50
50
|
)
|
51
|
+
from lusid.extensions.configuration_options import ConfigurationOptions
|
51
52
|
|
52
53
|
|
53
54
|
class PersonsApi:
|
@@ -89,10 +90,9 @@ class PersonsApi:
|
|
89
90
|
:type code: str
|
90
91
|
:param async_req: Whether to execute the request asynchronously.
|
91
92
|
:type async_req: bool, optional
|
92
|
-
:param _request_timeout:
|
93
|
-
|
94
|
-
|
95
|
-
(connection, read) timeouts.
|
93
|
+
:param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
|
94
|
+
:param opts: Configuration options for this request
|
95
|
+
:type opts: ConfigurationOptions, optional
|
96
96
|
:return: Returns the result object.
|
97
97
|
If the method is called asynchronously,
|
98
98
|
returns the request thread.
|
@@ -133,10 +133,9 @@ class PersonsApi:
|
|
133
133
|
:param _return_http_data_only: response data instead of ApiResponse
|
134
134
|
object with status code, headers, etc
|
135
135
|
:type _return_http_data_only: bool, optional
|
136
|
-
:param _request_timeout:
|
137
|
-
|
138
|
-
|
139
|
-
(connection, read) timeouts.
|
136
|
+
:param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
|
137
|
+
:param opts: Configuration options for this request
|
138
|
+
:type opts: ConfigurationOptions, optional
|
140
139
|
:param _request_auth: set to override the auth_settings for an a single
|
141
140
|
request; this effectively ignores the authentication
|
142
141
|
in the spec for a single request.
|
@@ -163,7 +162,8 @@ class PersonsApi:
|
|
163
162
|
'_request_timeout',
|
164
163
|
'_request_auth',
|
165
164
|
'_content_type',
|
166
|
-
'_headers'
|
165
|
+
'_headers',
|
166
|
+
'opts'
|
167
167
|
]
|
168
168
|
)
|
169
169
|
|
@@ -226,6 +226,7 @@ class PersonsApi:
|
|
226
226
|
_return_http_data_only=_params.get('_return_http_data_only'), # noqa: E501
|
227
227
|
_preload_content=_params.get('_preload_content', True),
|
228
228
|
_request_timeout=_params.get('_request_timeout'),
|
229
|
+
opts=_params.get('opts'),
|
229
230
|
collection_formats=_collection_formats,
|
230
231
|
_request_auth=_params.get('_request_auth'))
|
231
232
|
|
@@ -262,10 +263,9 @@ class PersonsApi:
|
|
262
263
|
:type effective_until: datetime
|
263
264
|
:param async_req: Whether to execute the request asynchronously.
|
264
265
|
:type async_req: bool, optional
|
265
|
-
:param _request_timeout:
|
266
|
-
|
267
|
-
|
268
|
-
(connection, read) timeouts.
|
266
|
+
:param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
|
267
|
+
:param opts: Configuration options for this request
|
268
|
+
:type opts: ConfigurationOptions, optional
|
269
269
|
:return: Returns the result object.
|
270
270
|
If the method is called asynchronously,
|
271
271
|
returns the request thread.
|
@@ -312,10 +312,9 @@ class PersonsApi:
|
|
312
312
|
:param _return_http_data_only: response data instead of ApiResponse
|
313
313
|
object with status code, headers, etc
|
314
314
|
:type _return_http_data_only: bool, optional
|
315
|
-
:param _request_timeout:
|
316
|
-
|
317
|
-
|
318
|
-
(connection, read) timeouts.
|
315
|
+
:param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
|
316
|
+
:param opts: Configuration options for this request
|
317
|
+
:type opts: ConfigurationOptions, optional
|
319
318
|
:param _request_auth: set to override the auth_settings for an a single
|
320
319
|
request; this effectively ignores the authentication
|
321
320
|
in the spec for a single request.
|
@@ -345,7 +344,8 @@ class PersonsApi:
|
|
345
344
|
'_request_timeout',
|
346
345
|
'_request_auth',
|
347
346
|
'_content_type',
|
348
|
-
'_headers'
|
347
|
+
'_headers',
|
348
|
+
'opts'
|
349
349
|
]
|
350
350
|
)
|
351
351
|
|
@@ -420,6 +420,7 @@ class PersonsApi:
|
|
420
420
|
_return_http_data_only=_params.get('_return_http_data_only'), # noqa: E501
|
421
421
|
_preload_content=_params.get('_preload_content', True),
|
422
422
|
_request_timeout=_params.get('_request_timeout'),
|
423
|
+
opts=_params.get('opts'),
|
423
424
|
collection_formats=_collection_formats,
|
424
425
|
_request_auth=_params.get('_request_auth'))
|
425
426
|
|
@@ -454,10 +455,9 @@ class PersonsApi:
|
|
454
455
|
:type effective_at: str
|
455
456
|
:param async_req: Whether to execute the request asynchronously.
|
456
457
|
:type async_req: bool, optional
|
457
|
-
:param _request_timeout:
|
458
|
-
|
459
|
-
|
460
|
-
(connection, read) timeouts.
|
458
|
+
:param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
|
459
|
+
:param opts: Configuration options for this request
|
460
|
+
:type opts: ConfigurationOptions, optional
|
461
461
|
:return: Returns the result object.
|
462
462
|
If the method is called asynchronously,
|
463
463
|
returns the request thread.
|
@@ -502,10 +502,9 @@ class PersonsApi:
|
|
502
502
|
:param _return_http_data_only: response data instead of ApiResponse
|
503
503
|
object with status code, headers, etc
|
504
504
|
:type _return_http_data_only: bool, optional
|
505
|
-
:param _request_timeout:
|
506
|
-
|
507
|
-
|
508
|
-
(connection, read) timeouts.
|
505
|
+
:param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
|
506
|
+
:param opts: Configuration options for this request
|
507
|
+
:type opts: ConfigurationOptions, optional
|
509
508
|
:param _request_auth: set to override the auth_settings for an a single
|
510
509
|
request; this effectively ignores the authentication
|
511
510
|
in the spec for a single request.
|
@@ -534,7 +533,8 @@ class PersonsApi:
|
|
534
533
|
'_request_timeout',
|
535
534
|
'_request_auth',
|
536
535
|
'_content_type',
|
537
|
-
'_headers'
|
536
|
+
'_headers',
|
537
|
+
'opts'
|
538
538
|
]
|
539
539
|
)
|
540
540
|
|
@@ -604,6 +604,7 @@ class PersonsApi:
|
|
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
|
|
@@ -638,10 +639,9 @@ class PersonsApi:
|
|
638
639
|
:type effective_at: str
|
639
640
|
:param async_req: Whether to execute the request asynchronously.
|
640
641
|
:type async_req: bool, optional
|
641
|
-
:param _request_timeout:
|
642
|
-
|
643
|
-
|
644
|
-
(connection, read) timeouts.
|
642
|
+
:param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
|
643
|
+
:param opts: Configuration options for this request
|
644
|
+
:type opts: ConfigurationOptions, optional
|
645
645
|
:return: Returns the result object.
|
646
646
|
If the method is called asynchronously,
|
647
647
|
returns the request thread.
|
@@ -686,10 +686,9 @@ class PersonsApi:
|
|
686
686
|
:param _return_http_data_only: response data instead of ApiResponse
|
687
687
|
object with status code, headers, etc
|
688
688
|
:type _return_http_data_only: bool, optional
|
689
|
-
:param _request_timeout:
|
690
|
-
|
691
|
-
|
692
|
-
(connection, read) timeouts.
|
689
|
+
:param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
|
690
|
+
:param opts: Configuration options for this request
|
691
|
+
:type opts: ConfigurationOptions, optional
|
693
692
|
:param _request_auth: set to override the auth_settings for an a single
|
694
693
|
request; this effectively ignores the authentication
|
695
694
|
in the spec for a single request.
|
@@ -718,7 +717,8 @@ class PersonsApi:
|
|
718
717
|
'_request_timeout',
|
719
718
|
'_request_auth',
|
720
719
|
'_content_type',
|
721
|
-
'_headers'
|
720
|
+
'_headers',
|
721
|
+
'opts'
|
722
722
|
]
|
723
723
|
)
|
724
724
|
|
@@ -788,6 +788,7 @@ class PersonsApi:
|
|
788
788
|
_return_http_data_only=_params.get('_return_http_data_only'), # noqa: E501
|
789
789
|
_preload_content=_params.get('_preload_content', True),
|
790
790
|
_request_timeout=_params.get('_request_timeout'),
|
791
|
+
opts=_params.get('opts'),
|
791
792
|
collection_formats=_collection_formats,
|
792
793
|
_request_auth=_params.get('_request_auth'))
|
793
794
|
|
@@ -822,10 +823,9 @@ class PersonsApi:
|
|
822
823
|
:type as_at: datetime
|
823
824
|
:param async_req: Whether to execute the request asynchronously.
|
824
825
|
:type async_req: bool, optional
|
825
|
-
:param _request_timeout:
|
826
|
-
|
827
|
-
|
828
|
-
(connection, read) timeouts.
|
826
|
+
:param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
|
827
|
+
:param opts: Configuration options for this request
|
828
|
+
:type opts: ConfigurationOptions, optional
|
829
829
|
:return: Returns the result object.
|
830
830
|
If the method is called asynchronously,
|
831
831
|
returns the request thread.
|
@@ -870,10 +870,9 @@ class PersonsApi:
|
|
870
870
|
:param _return_http_data_only: response data instead of ApiResponse
|
871
871
|
object with status code, headers, etc
|
872
872
|
:type _return_http_data_only: bool, optional
|
873
|
-
:param _request_timeout:
|
874
|
-
|
875
|
-
|
876
|
-
(connection, read) timeouts.
|
873
|
+
:param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
|
874
|
+
:param opts: Configuration options for this request
|
875
|
+
:type opts: ConfigurationOptions, optional
|
877
876
|
:param _request_auth: set to override the auth_settings for an a single
|
878
877
|
request; this effectively ignores the authentication
|
879
878
|
in the spec for a single request.
|
@@ -902,7 +901,8 @@ class PersonsApi:
|
|
902
901
|
'_request_timeout',
|
903
902
|
'_request_auth',
|
904
903
|
'_content_type',
|
905
|
-
'_headers'
|
904
|
+
'_headers',
|
905
|
+
'opts'
|
906
906
|
]
|
907
907
|
)
|
908
908
|
|
@@ -974,6 +974,7 @@ class PersonsApi:
|
|
974
974
|
_return_http_data_only=_params.get('_return_http_data_only'), # noqa: E501
|
975
975
|
_preload_content=_params.get('_preload_content', True),
|
976
976
|
_request_timeout=_params.get('_request_timeout'),
|
977
|
+
opts=_params.get('opts'),
|
977
978
|
collection_formats=_collection_formats,
|
978
979
|
_request_auth=_params.get('_request_auth'))
|
979
980
|
|
@@ -1012,10 +1013,9 @@ class PersonsApi:
|
|
1012
1013
|
:type relationship_definition_ids: List[str]
|
1013
1014
|
:param async_req: Whether to execute the request asynchronously.
|
1014
1015
|
:type async_req: bool, optional
|
1015
|
-
:param _request_timeout:
|
1016
|
-
|
1017
|
-
|
1018
|
-
(connection, read) timeouts.
|
1016
|
+
:param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
|
1017
|
+
:param opts: Configuration options for this request
|
1018
|
+
:type opts: ConfigurationOptions, optional
|
1019
1019
|
:return: Returns the result object.
|
1020
1020
|
If the method is called asynchronously,
|
1021
1021
|
returns the request thread.
|
@@ -1064,10 +1064,9 @@ class PersonsApi:
|
|
1064
1064
|
:param _return_http_data_only: response data instead of ApiResponse
|
1065
1065
|
object with status code, headers, etc
|
1066
1066
|
:type _return_http_data_only: bool, optional
|
1067
|
-
:param _request_timeout:
|
1068
|
-
|
1069
|
-
|
1070
|
-
(connection, read) timeouts.
|
1067
|
+
:param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
|
1068
|
+
:param opts: Configuration options for this request
|
1069
|
+
:type opts: ConfigurationOptions, optional
|
1071
1070
|
:param _request_auth: set to override the auth_settings for an a single
|
1072
1071
|
request; this effectively ignores the authentication
|
1073
1072
|
in the spec for a single request.
|
@@ -1098,7 +1097,8 @@ class PersonsApi:
|
|
1098
1097
|
'_request_timeout',
|
1099
1098
|
'_request_auth',
|
1100
1099
|
'_content_type',
|
1101
|
-
'_headers'
|
1100
|
+
'_headers',
|
1101
|
+
'opts'
|
1102
1102
|
]
|
1103
1103
|
)
|
1104
1104
|
|
@@ -1178,6 +1178,7 @@ class PersonsApi:
|
|
1178
1178
|
_return_http_data_only=_params.get('_return_http_data_only'), # noqa: E501
|
1179
1179
|
_preload_content=_params.get('_preload_content', True),
|
1180
1180
|
_request_timeout=_params.get('_request_timeout'),
|
1181
|
+
opts=_params.get('opts'),
|
1181
1182
|
collection_formats=_collection_formats,
|
1182
1183
|
_request_auth=_params.get('_request_auth'))
|
1183
1184
|
|
@@ -1214,10 +1215,9 @@ class PersonsApi:
|
|
1214
1215
|
:type as_at: datetime
|
1215
1216
|
:param async_req: Whether to execute the request asynchronously.
|
1216
1217
|
:type async_req: bool, optional
|
1217
|
-
:param _request_timeout:
|
1218
|
-
|
1219
|
-
|
1220
|
-
(connection, read) timeouts.
|
1218
|
+
:param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
|
1219
|
+
:param opts: Configuration options for this request
|
1220
|
+
:type opts: ConfigurationOptions, optional
|
1221
1221
|
:return: Returns the result object.
|
1222
1222
|
If the method is called asynchronously,
|
1223
1223
|
returns the request thread.
|
@@ -1264,10 +1264,9 @@ class PersonsApi:
|
|
1264
1264
|
:param _return_http_data_only: response data instead of ApiResponse
|
1265
1265
|
object with status code, headers, etc
|
1266
1266
|
:type _return_http_data_only: bool, optional
|
1267
|
-
:param _request_timeout:
|
1268
|
-
|
1269
|
-
|
1270
|
-
(connection, read) timeouts.
|
1267
|
+
:param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
|
1268
|
+
:param opts: Configuration options for this request
|
1269
|
+
:type opts: ConfigurationOptions, optional
|
1271
1270
|
:param _request_auth: set to override the auth_settings for an a single
|
1272
1271
|
request; this effectively ignores the authentication
|
1273
1272
|
in the spec for a single request.
|
@@ -1297,7 +1296,8 @@ class PersonsApi:
|
|
1297
1296
|
'_request_timeout',
|
1298
1297
|
'_request_auth',
|
1299
1298
|
'_content_type',
|
1300
|
-
'_headers'
|
1299
|
+
'_headers',
|
1300
|
+
'opts'
|
1301
1301
|
]
|
1302
1302
|
)
|
1303
1303
|
|
@@ -1372,6 +1372,7 @@ class PersonsApi:
|
|
1372
1372
|
_return_http_data_only=_params.get('_return_http_data_only'), # noqa: E501
|
1373
1373
|
_preload_content=_params.get('_preload_content', True),
|
1374
1374
|
_request_timeout=_params.get('_request_timeout'),
|
1375
|
+
opts=_params.get('opts'),
|
1375
1376
|
collection_formats=_collection_formats,
|
1376
1377
|
_request_auth=_params.get('_request_auth'))
|
1377
1378
|
|
@@ -1412,10 +1413,9 @@ class PersonsApi:
|
|
1412
1413
|
:type limit: int
|
1413
1414
|
:param async_req: Whether to execute the request asynchronously.
|
1414
1415
|
:type async_req: bool, optional
|
1415
|
-
:param _request_timeout:
|
1416
|
-
|
1417
|
-
|
1418
|
-
(connection, read) timeouts.
|
1416
|
+
:param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
|
1417
|
+
:param opts: Configuration options for this request
|
1418
|
+
:type opts: ConfigurationOptions, optional
|
1419
1419
|
:return: Returns the result object.
|
1420
1420
|
If the method is called asynchronously,
|
1421
1421
|
returns the request thread.
|
@@ -1466,10 +1466,9 @@ class PersonsApi:
|
|
1466
1466
|
:param _return_http_data_only: response data instead of ApiResponse
|
1467
1467
|
object with status code, headers, etc
|
1468
1468
|
:type _return_http_data_only: bool, optional
|
1469
|
-
:param _request_timeout:
|
1470
|
-
|
1471
|
-
|
1472
|
-
(connection, read) timeouts.
|
1469
|
+
:param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
|
1470
|
+
:param opts: Configuration options for this request
|
1471
|
+
:type opts: ConfigurationOptions, optional
|
1473
1472
|
:param _request_auth: set to override the auth_settings for an a single
|
1474
1473
|
request; this effectively ignores the authentication
|
1475
1474
|
in the spec for a single request.
|
@@ -1501,7 +1500,8 @@ class PersonsApi:
|
|
1501
1500
|
'_request_timeout',
|
1502
1501
|
'_request_auth',
|
1503
1502
|
'_content_type',
|
1504
|
-
'_headers'
|
1503
|
+
'_headers',
|
1504
|
+
'opts'
|
1505
1505
|
]
|
1506
1506
|
)
|
1507
1507
|
|
@@ -1582,6 +1582,7 @@ class PersonsApi:
|
|
1582
1582
|
_return_http_data_only=_params.get('_return_http_data_only'), # noqa: E501
|
1583
1583
|
_preload_content=_params.get('_preload_content', True),
|
1584
1584
|
_request_timeout=_params.get('_request_timeout'),
|
1585
|
+
opts=_params.get('opts'),
|
1585
1586
|
collection_formats=_collection_formats,
|
1586
1587
|
_request_auth=_params.get('_request_auth'))
|
1587
1588
|
|
@@ -1620,10 +1621,9 @@ class PersonsApi:
|
|
1620
1621
|
:type identifier_types: List[str]
|
1621
1622
|
:param async_req: Whether to execute the request asynchronously.
|
1622
1623
|
:type async_req: bool, optional
|
1623
|
-
:param _request_timeout:
|
1624
|
-
|
1625
|
-
|
1626
|
-
(connection, read) timeouts.
|
1624
|
+
:param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
|
1625
|
+
:param opts: Configuration options for this request
|
1626
|
+
:type opts: ConfigurationOptions, optional
|
1627
1627
|
:return: Returns the result object.
|
1628
1628
|
If the method is called asynchronously,
|
1629
1629
|
returns the request thread.
|
@@ -1672,10 +1672,9 @@ class PersonsApi:
|
|
1672
1672
|
:param _return_http_data_only: response data instead of ApiResponse
|
1673
1673
|
object with status code, headers, etc
|
1674
1674
|
:type _return_http_data_only: bool, optional
|
1675
|
-
:param _request_timeout:
|
1676
|
-
|
1677
|
-
|
1678
|
-
(connection, read) timeouts.
|
1675
|
+
:param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
|
1676
|
+
:param opts: Configuration options for this request
|
1677
|
+
:type opts: ConfigurationOptions, optional
|
1679
1678
|
:param _request_auth: set to override the auth_settings for an a single
|
1680
1679
|
request; this effectively ignores the authentication
|
1681
1680
|
in the spec for a single request.
|
@@ -1706,7 +1705,8 @@ class PersonsApi:
|
|
1706
1705
|
'_request_timeout',
|
1707
1706
|
'_request_auth',
|
1708
1707
|
'_content_type',
|
1709
|
-
'_headers'
|
1708
|
+
'_headers',
|
1709
|
+
'opts'
|
1710
1710
|
]
|
1711
1711
|
)
|
1712
1712
|
|
@@ -1785,6 +1785,7 @@ class PersonsApi:
|
|
1785
1785
|
_return_http_data_only=_params.get('_return_http_data_only'), # noqa: E501
|
1786
1786
|
_preload_content=_params.get('_preload_content', True),
|
1787
1787
|
_request_timeout=_params.get('_request_timeout'),
|
1788
|
+
opts=_params.get('opts'),
|
1788
1789
|
collection_formats=_collection_formats,
|
1789
1790
|
_request_auth=_params.get('_request_auth'))
|
1790
1791
|
|
@@ -1823,10 +1824,9 @@ class PersonsApi:
|
|
1823
1824
|
:type identifier_types: List[str]
|
1824
1825
|
:param async_req: Whether to execute the request asynchronously.
|
1825
1826
|
:type async_req: bool, optional
|
1826
|
-
:param _request_timeout:
|
1827
|
-
|
1828
|
-
|
1829
|
-
(connection, read) timeouts.
|
1827
|
+
:param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
|
1828
|
+
:param opts: Configuration options for this request
|
1829
|
+
:type opts: ConfigurationOptions, optional
|
1830
1830
|
:return: Returns the result object.
|
1831
1831
|
If the method is called asynchronously,
|
1832
1832
|
returns the request thread.
|
@@ -1875,10 +1875,9 @@ class PersonsApi:
|
|
1875
1875
|
:param _return_http_data_only: response data instead of ApiResponse
|
1876
1876
|
object with status code, headers, etc
|
1877
1877
|
:type _return_http_data_only: bool, optional
|
1878
|
-
:param _request_timeout:
|
1879
|
-
|
1880
|
-
|
1881
|
-
(connection, read) timeouts.
|
1878
|
+
:param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
|
1879
|
+
:param opts: Configuration options for this request
|
1880
|
+
:type opts: ConfigurationOptions, optional
|
1882
1881
|
:param _request_auth: set to override the auth_settings for an a single
|
1883
1882
|
request; this effectively ignores the authentication
|
1884
1883
|
in the spec for a single request.
|
@@ -1909,7 +1908,8 @@ class PersonsApi:
|
|
1909
1908
|
'_request_timeout',
|
1910
1909
|
'_request_auth',
|
1911
1910
|
'_content_type',
|
1912
|
-
'_headers'
|
1911
|
+
'_headers',
|
1912
|
+
'opts'
|
1913
1913
|
]
|
1914
1914
|
)
|
1915
1915
|
|
@@ -1988,6 +1988,7 @@ class PersonsApi:
|
|
1988
1988
|
_return_http_data_only=_params.get('_return_http_data_only'), # noqa: E501
|
1989
1989
|
_preload_content=_params.get('_preload_content', True),
|
1990
1990
|
_request_timeout=_params.get('_request_timeout'),
|
1991
|
+
opts=_params.get('opts'),
|
1991
1992
|
collection_formats=_collection_formats,
|
1992
1993
|
_request_auth=_params.get('_request_auth'))
|
1993
1994
|
|
@@ -2026,10 +2027,9 @@ class PersonsApi:
|
|
2026
2027
|
:type relationship_definition_ids: List[str]
|
2027
2028
|
:param async_req: Whether to execute the request asynchronously.
|
2028
2029
|
:type async_req: bool, optional
|
2029
|
-
:param _request_timeout:
|
2030
|
-
|
2031
|
-
|
2032
|
-
(connection, read) timeouts.
|
2030
|
+
:param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
|
2031
|
+
:param opts: Configuration options for this request
|
2032
|
+
:type opts: ConfigurationOptions, optional
|
2033
2033
|
:return: Returns the result object.
|
2034
2034
|
If the method is called asynchronously,
|
2035
2035
|
returns the request thread.
|
@@ -2078,10 +2078,9 @@ class PersonsApi:
|
|
2078
2078
|
:param _return_http_data_only: response data instead of ApiResponse
|
2079
2079
|
object with status code, headers, etc
|
2080
2080
|
:type _return_http_data_only: bool, optional
|
2081
|
-
:param _request_timeout:
|
2082
|
-
|
2083
|
-
|
2084
|
-
(connection, read) timeouts.
|
2081
|
+
:param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
|
2082
|
+
:param opts: Configuration options for this request
|
2083
|
+
:type opts: ConfigurationOptions, optional
|
2085
2084
|
:param _request_auth: set to override the auth_settings for an a single
|
2086
2085
|
request; this effectively ignores the authentication
|
2087
2086
|
in the spec for a single request.
|
@@ -2112,7 +2111,8 @@ class PersonsApi:
|
|
2112
2111
|
'_request_timeout',
|
2113
2112
|
'_request_auth',
|
2114
2113
|
'_content_type',
|
2115
|
-
'_headers'
|
2114
|
+
'_headers',
|
2115
|
+
'opts'
|
2116
2116
|
]
|
2117
2117
|
)
|
2118
2118
|
|
@@ -2192,6 +2192,7 @@ class PersonsApi:
|
|
2192
2192
|
_return_http_data_only=_params.get('_return_http_data_only'), # noqa: E501
|
2193
2193
|
_preload_content=_params.get('_preload_content', True),
|
2194
2194
|
_request_timeout=_params.get('_request_timeout'),
|
2195
|
+
opts=_params.get('opts'),
|
2195
2196
|
collection_formats=_collection_formats,
|
2196
2197
|
_request_auth=_params.get('_request_auth'))
|
2197
2198
|
|
@@ -2234,10 +2235,9 @@ class PersonsApi:
|
|
2234
2235
|
:type relationship_definition_ids: List[str]
|
2235
2236
|
:param async_req: Whether to execute the request asynchronously.
|
2236
2237
|
:type async_req: bool, optional
|
2237
|
-
:param _request_timeout:
|
2238
|
-
|
2239
|
-
|
2240
|
-
(connection, read) timeouts.
|
2238
|
+
:param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
|
2239
|
+
:param opts: Configuration options for this request
|
2240
|
+
:type opts: ConfigurationOptions, optional
|
2241
2241
|
:return: Returns the result object.
|
2242
2242
|
If the method is called asynchronously,
|
2243
2243
|
returns the request thread.
|
@@ -2290,10 +2290,9 @@ class PersonsApi:
|
|
2290
2290
|
:param _return_http_data_only: response data instead of ApiResponse
|
2291
2291
|
object with status code, headers, etc
|
2292
2292
|
:type _return_http_data_only: bool, optional
|
2293
|
-
:param _request_timeout:
|
2294
|
-
|
2295
|
-
|
2296
|
-
(connection, read) timeouts.
|
2293
|
+
:param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
|
2294
|
+
:param opts: Configuration options for this request
|
2295
|
+
:type opts: ConfigurationOptions, optional
|
2297
2296
|
:param _request_auth: set to override the auth_settings for an a single
|
2298
2297
|
request; this effectively ignores the authentication
|
2299
2298
|
in the spec for a single request.
|
@@ -2326,7 +2325,8 @@ class PersonsApi:
|
|
2326
2325
|
'_request_timeout',
|
2327
2326
|
'_request_auth',
|
2328
2327
|
'_content_type',
|
2329
|
-
'_headers'
|
2328
|
+
'_headers',
|
2329
|
+
'opts'
|
2330
2330
|
]
|
2331
2331
|
)
|
2332
2332
|
|
@@ -2412,6 +2412,7 @@ class PersonsApi:
|
|
2412
2412
|
_return_http_data_only=_params.get('_return_http_data_only'), # noqa: E501
|
2413
2413
|
_preload_content=_params.get('_preload_content', True),
|
2414
2414
|
_request_timeout=_params.get('_request_timeout'),
|
2415
|
+
opts=_params.get('opts'),
|
2415
2416
|
collection_formats=_collection_formats,
|
2416
2417
|
_request_auth=_params.get('_request_auth'))
|
2417
2418
|
|
@@ -2448,10 +2449,9 @@ class PersonsApi:
|
|
2448
2449
|
:type effective_until: datetime
|
2449
2450
|
:param async_req: Whether to execute the request asynchronously.
|
2450
2451
|
:type async_req: bool, optional
|
2451
|
-
:param _request_timeout:
|
2452
|
-
|
2453
|
-
|
2454
|
-
(connection, read) timeouts.
|
2452
|
+
:param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
|
2453
|
+
:param opts: Configuration options for this request
|
2454
|
+
:type opts: ConfigurationOptions, optional
|
2455
2455
|
:return: Returns the result object.
|
2456
2456
|
If the method is called asynchronously,
|
2457
2457
|
returns the request thread.
|
@@ -2498,10 +2498,9 @@ class PersonsApi:
|
|
2498
2498
|
:param _return_http_data_only: response data instead of ApiResponse
|
2499
2499
|
object with status code, headers, etc
|
2500
2500
|
:type _return_http_data_only: bool, optional
|
2501
|
-
:param _request_timeout:
|
2502
|
-
|
2503
|
-
|
2504
|
-
(connection, read) timeouts.
|
2501
|
+
:param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
|
2502
|
+
:param opts: Configuration options for this request
|
2503
|
+
:type opts: ConfigurationOptions, optional
|
2505
2504
|
:param _request_auth: set to override the auth_settings for an a single
|
2506
2505
|
request; this effectively ignores the authentication
|
2507
2506
|
in the spec for a single request.
|
@@ -2531,7 +2530,8 @@ class PersonsApi:
|
|
2531
2530
|
'_request_timeout',
|
2532
2531
|
'_request_auth',
|
2533
2532
|
'_content_type',
|
2534
|
-
'_headers'
|
2533
|
+
'_headers',
|
2534
|
+
'opts'
|
2535
2535
|
]
|
2536
2536
|
)
|
2537
2537
|
|
@@ -2613,6 +2613,7 @@ class PersonsApi:
|
|
2613
2613
|
_return_http_data_only=_params.get('_return_http_data_only'), # noqa: E501
|
2614
2614
|
_preload_content=_params.get('_preload_content', True),
|
2615
2615
|
_request_timeout=_params.get('_request_timeout'),
|
2616
|
+
opts=_params.get('opts'),
|
2616
2617
|
collection_formats=_collection_formats,
|
2617
2618
|
_request_auth=_params.get('_request_auth'))
|
2618
2619
|
|
@@ -2645,10 +2646,9 @@ class PersonsApi:
|
|
2645
2646
|
:type set_person_identifiers_request: SetPersonIdentifiersRequest
|
2646
2647
|
:param async_req: Whether to execute the request asynchronously.
|
2647
2648
|
:type async_req: bool, optional
|
2648
|
-
:param _request_timeout:
|
2649
|
-
|
2650
|
-
|
2651
|
-
(connection, read) timeouts.
|
2649
|
+
:param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
|
2650
|
+
:param opts: Configuration options for this request
|
2651
|
+
:type opts: ConfigurationOptions, optional
|
2652
2652
|
:return: Returns the result object.
|
2653
2653
|
If the method is called asynchronously,
|
2654
2654
|
returns the request thread.
|
@@ -2691,10 +2691,9 @@ class PersonsApi:
|
|
2691
2691
|
:param _return_http_data_only: response data instead of ApiResponse
|
2692
2692
|
object with status code, headers, etc
|
2693
2693
|
:type _return_http_data_only: bool, optional
|
2694
|
-
:param _request_timeout:
|
2695
|
-
|
2696
|
-
|
2697
|
-
(connection, read) timeouts.
|
2694
|
+
:param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
|
2695
|
+
:param opts: Configuration options for this request
|
2696
|
+
:type opts: ConfigurationOptions, optional
|
2698
2697
|
:param _request_auth: set to override the auth_settings for an a single
|
2699
2698
|
request; this effectively ignores the authentication
|
2700
2699
|
in the spec for a single request.
|
@@ -2722,7 +2721,8 @@ class PersonsApi:
|
|
2722
2721
|
'_request_timeout',
|
2723
2722
|
'_request_auth',
|
2724
2723
|
'_content_type',
|
2725
|
-
'_headers'
|
2724
|
+
'_headers',
|
2725
|
+
'opts'
|
2726
2726
|
]
|
2727
2727
|
)
|
2728
2728
|
|
@@ -2795,6 +2795,7 @@ class PersonsApi:
|
|
2795
2795
|
_return_http_data_only=_params.get('_return_http_data_only'), # noqa: E501
|
2796
2796
|
_preload_content=_params.get('_preload_content', True),
|
2797
2797
|
_request_timeout=_params.get('_request_timeout'),
|
2798
|
+
opts=_params.get('opts'),
|
2798
2799
|
collection_formats=_collection_formats,
|
2799
2800
|
_request_auth=_params.get('_request_auth'))
|
2800
2801
|
|
@@ -2827,10 +2828,9 @@ class PersonsApi:
|
|
2827
2828
|
:type set_person_properties_request: SetPersonPropertiesRequest
|
2828
2829
|
:param async_req: Whether to execute the request asynchronously.
|
2829
2830
|
:type async_req: bool, optional
|
2830
|
-
:param _request_timeout:
|
2831
|
-
|
2832
|
-
|
2833
|
-
(connection, read) timeouts.
|
2831
|
+
:param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
|
2832
|
+
:param opts: Configuration options for this request
|
2833
|
+
:type opts: ConfigurationOptions, optional
|
2834
2834
|
:return: Returns the result object.
|
2835
2835
|
If the method is called asynchronously,
|
2836
2836
|
returns the request thread.
|
@@ -2873,10 +2873,9 @@ class PersonsApi:
|
|
2873
2873
|
:param _return_http_data_only: response data instead of ApiResponse
|
2874
2874
|
object with status code, headers, etc
|
2875
2875
|
:type _return_http_data_only: bool, optional
|
2876
|
-
:param _request_timeout:
|
2877
|
-
|
2878
|
-
|
2879
|
-
(connection, read) timeouts.
|
2876
|
+
:param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
|
2877
|
+
:param opts: Configuration options for this request
|
2878
|
+
:type opts: ConfigurationOptions, optional
|
2880
2879
|
:param _request_auth: set to override the auth_settings for an a single
|
2881
2880
|
request; this effectively ignores the authentication
|
2882
2881
|
in the spec for a single request.
|
@@ -2904,7 +2903,8 @@ class PersonsApi:
|
|
2904
2903
|
'_request_timeout',
|
2905
2904
|
'_request_auth',
|
2906
2905
|
'_content_type',
|
2907
|
-
'_headers'
|
2906
|
+
'_headers',
|
2907
|
+
'opts'
|
2908
2908
|
]
|
2909
2909
|
)
|
2910
2910
|
|
@@ -2977,6 +2977,7 @@ class PersonsApi:
|
|
2977
2977
|
_return_http_data_only=_params.get('_return_http_data_only'), # noqa: E501
|
2978
2978
|
_preload_content=_params.get('_preload_content', True),
|
2979
2979
|
_request_timeout=_params.get('_request_timeout'),
|
2980
|
+
opts=_params.get('opts'),
|
2980
2981
|
collection_formats=_collection_formats,
|
2981
2982
|
_request_auth=_params.get('_request_auth'))
|
2982
2983
|
|
@@ -3003,10 +3004,9 @@ class PersonsApi:
|
|
3003
3004
|
:type upsert_person_request: UpsertPersonRequest
|
3004
3005
|
:param async_req: Whether to execute the request asynchronously.
|
3005
3006
|
:type async_req: bool, optional
|
3006
|
-
:param _request_timeout:
|
3007
|
-
|
3008
|
-
|
3009
|
-
(connection, read) timeouts.
|
3007
|
+
:param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
|
3008
|
+
:param opts: Configuration options for this request
|
3009
|
+
:type opts: ConfigurationOptions, optional
|
3010
3010
|
:return: Returns the result object.
|
3011
3011
|
If the method is called asynchronously,
|
3012
3012
|
returns the request thread.
|
@@ -3043,10 +3043,9 @@ class PersonsApi:
|
|
3043
3043
|
:param _return_http_data_only: response data instead of ApiResponse
|
3044
3044
|
object with status code, headers, etc
|
3045
3045
|
:type _return_http_data_only: bool, optional
|
3046
|
-
:param _request_timeout:
|
3047
|
-
|
3048
|
-
|
3049
|
-
(connection, read) timeouts.
|
3046
|
+
:param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
|
3047
|
+
:param opts: Configuration options for this request
|
3048
|
+
:type opts: ConfigurationOptions, optional
|
3050
3049
|
:param _request_auth: set to override the auth_settings for an a single
|
3051
3050
|
request; this effectively ignores the authentication
|
3052
3051
|
in the spec for a single request.
|
@@ -3071,7 +3070,8 @@ class PersonsApi:
|
|
3071
3070
|
'_request_timeout',
|
3072
3071
|
'_request_auth',
|
3073
3072
|
'_content_type',
|
3074
|
-
'_headers'
|
3073
|
+
'_headers',
|
3074
|
+
'opts'
|
3075
3075
|
]
|
3076
3076
|
)
|
3077
3077
|
|
@@ -3135,6 +3135,7 @@ class PersonsApi:
|
|
3135
3135
|
_return_http_data_only=_params.get('_return_http_data_only'), # noqa: E501
|
3136
3136
|
_preload_content=_params.get('_preload_content', True),
|
3137
3137
|
_request_timeout=_params.get('_request_timeout'),
|
3138
|
+
opts=_params.get('opts'),
|
3138
3139
|
collection_formats=_collection_formats,
|
3139
3140
|
_request_auth=_params.get('_request_auth'))
|
3140
3141
|
|
@@ -3173,10 +3174,9 @@ class PersonsApi:
|
|
3173
3174
|
:type effective_until: datetime
|
3174
3175
|
:param async_req: Whether to execute the request asynchronously.
|
3175
3176
|
:type async_req: bool, optional
|
3176
|
-
:param _request_timeout:
|
3177
|
-
|
3178
|
-
|
3179
|
-
(connection, read) timeouts.
|
3177
|
+
:param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
|
3178
|
+
:param opts: Configuration options for this request
|
3179
|
+
:type opts: ConfigurationOptions, optional
|
3180
3180
|
:return: Returns the result object.
|
3181
3181
|
If the method is called asynchronously,
|
3182
3182
|
returns the request thread.
|
@@ -3225,10 +3225,9 @@ class PersonsApi:
|
|
3225
3225
|
:param _return_http_data_only: response data instead of ApiResponse
|
3226
3226
|
object with status code, headers, etc
|
3227
3227
|
:type _return_http_data_only: bool, optional
|
3228
|
-
:param _request_timeout:
|
3229
|
-
|
3230
|
-
|
3231
|
-
(connection, read) timeouts.
|
3228
|
+
:param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
|
3229
|
+
:param opts: Configuration options for this request
|
3230
|
+
:type opts: ConfigurationOptions, optional
|
3232
3231
|
:param _request_auth: set to override the auth_settings for an a single
|
3233
3232
|
request; this effectively ignores the authentication
|
3234
3233
|
in the spec for a single request.
|
@@ -3259,7 +3258,8 @@ class PersonsApi:
|
|
3259
3258
|
'_request_timeout',
|
3260
3259
|
'_request_auth',
|
3261
3260
|
'_content_type',
|
3262
|
-
'_headers'
|
3261
|
+
'_headers',
|
3262
|
+
'opts'
|
3263
3263
|
]
|
3264
3264
|
)
|
3265
3265
|
|
@@ -3344,6 +3344,7 @@ class PersonsApi:
|
|
3344
3344
|
_return_http_data_only=_params.get('_return_http_data_only'), # noqa: E501
|
3345
3345
|
_preload_content=_params.get('_preload_content', True),
|
3346
3346
|
_request_timeout=_params.get('_request_timeout'),
|
3347
|
+
opts=_params.get('opts'),
|
3347
3348
|
collection_formats=_collection_formats,
|
3348
3349
|
_request_auth=_params.get('_request_auth'))
|
3349
3350
|
|
@@ -3372,10 +3373,9 @@ class PersonsApi:
|
|
3372
3373
|
:type request_body: Dict[str, UpsertPersonRequest]
|
3373
3374
|
:param async_req: Whether to execute the request asynchronously.
|
3374
3375
|
:type async_req: bool, optional
|
3375
|
-
:param _request_timeout:
|
3376
|
-
|
3377
|
-
|
3378
|
-
(connection, read) timeouts.
|
3376
|
+
:param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
|
3377
|
+
:param opts: Configuration options for this request
|
3378
|
+
:type opts: ConfigurationOptions, optional
|
3379
3379
|
:return: Returns the result object.
|
3380
3380
|
If the method is called asynchronously,
|
3381
3381
|
returns the request thread.
|
@@ -3414,10 +3414,9 @@ class PersonsApi:
|
|
3414
3414
|
:param _return_http_data_only: response data instead of ApiResponse
|
3415
3415
|
object with status code, headers, etc
|
3416
3416
|
:type _return_http_data_only: bool, optional
|
3417
|
-
:param _request_timeout:
|
3418
|
-
|
3419
|
-
|
3420
|
-
(connection, read) timeouts.
|
3417
|
+
:param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
|
3418
|
+
:param opts: Configuration options for this request
|
3419
|
+
:type opts: ConfigurationOptions, optional
|
3421
3420
|
:param _request_auth: set to override the auth_settings for an a single
|
3422
3421
|
request; this effectively ignores the authentication
|
3423
3422
|
in the spec for a single request.
|
@@ -3443,7 +3442,8 @@ class PersonsApi:
|
|
3443
3442
|
'_request_timeout',
|
3444
3443
|
'_request_auth',
|
3445
3444
|
'_content_type',
|
3446
|
-
'_headers'
|
3445
|
+
'_headers',
|
3446
|
+
'opts'
|
3447
3447
|
]
|
3448
3448
|
)
|
3449
3449
|
|
@@ -3510,5 +3510,6 @@ class PersonsApi:
|
|
3510
3510
|
_return_http_data_only=_params.get('_return_http_data_only'), # noqa: E501
|
3511
3511
|
_preload_content=_params.get('_preload_content', True),
|
3512
3512
|
_request_timeout=_params.get('_request_timeout'),
|
3513
|
+
opts=_params.get('opts'),
|
3513
3514
|
collection_formats=_collection_formats,
|
3514
3515
|
_request_auth=_params.get('_request_auth'))
|