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/portfolios_api.py
CHANGED
@@ -65,6 +65,7 @@ from lusid.exceptions import ( # noqa: F401
|
|
65
65
|
ApiTypeError,
|
66
66
|
ApiValueError
|
67
67
|
)
|
68
|
+
from lusid.extensions.configuration_options import ConfigurationOptions
|
68
69
|
|
69
70
|
|
70
71
|
class PortfoliosApi:
|
@@ -80,36 +81,35 @@ class PortfoliosApi:
|
|
80
81
|
self.api_client = api_client
|
81
82
|
|
82
83
|
@overload
|
83
|
-
async def batch_upsert_portfolio_access_metadata(self,
|
84
|
+
async def batch_upsert_portfolio_access_metadata(self, request_body : Annotated[Dict[str, BatchUpsertPortfolioAccessMetadataRequest], Field(..., description="The Access Metadata Rules to upsert and the Portfolio identifiers to upsert for")], effective_at : Annotated[Optional[StrictStr], Field(description="The date these rules will be effective from")] = None, effective_until : Annotated[Optional[StrictStr], Field(description="The effective date until which the Access Metadata is valid. If not supplied, this will be valid indefinitely, or until the next 'effectiveAt' date of the Access Metadata")] = None, **kwargs) -> BatchUpsertPortfolioAccessMetadataResponse: # noqa: E501
|
84
85
|
...
|
85
86
|
|
86
87
|
@overload
|
87
|
-
def batch_upsert_portfolio_access_metadata(self,
|
88
|
+
def batch_upsert_portfolio_access_metadata(self, request_body : Annotated[Dict[str, BatchUpsertPortfolioAccessMetadataRequest], Field(..., description="The Access Metadata Rules to upsert and the Portfolio identifiers to upsert for")], effective_at : Annotated[Optional[StrictStr], Field(description="The date these rules will be effective from")] = None, effective_until : Annotated[Optional[StrictStr], Field(description="The effective date until which the Access Metadata is valid. If not supplied, this will be valid indefinitely, or until the next 'effectiveAt' date of the Access Metadata")] = None, async_req: Optional[bool]=True, **kwargs) -> BatchUpsertPortfolioAccessMetadataResponse: # noqa: E501
|
88
89
|
...
|
89
90
|
|
90
91
|
@validate_arguments
|
91
|
-
def batch_upsert_portfolio_access_metadata(self,
|
92
|
-
"""[
|
92
|
+
def batch_upsert_portfolio_access_metadata(self, request_body : Annotated[Dict[str, BatchUpsertPortfolioAccessMetadataRequest], Field(..., description="The Access Metadata Rules to upsert and the Portfolio identifiers to upsert for")], effective_at : Annotated[Optional[StrictStr], Field(description="The date these rules will be effective from")] = None, effective_until : Annotated[Optional[StrictStr], Field(description="The effective date until which the Access Metadata is valid. If not supplied, this will be valid indefinitely, or until the next 'effectiveAt' date of the Access Metadata")] = None, async_req: Optional[bool]=None, **kwargs) -> Union[BatchUpsertPortfolioAccessMetadataResponse, Awaitable[BatchUpsertPortfolioAccessMetadataResponse]]: # noqa: E501
|
93
|
+
"""[EARLY ACCESS] BatchUpsertPortfolioAccessMetadata: Upsert multiple Portfolio Access Metadata Rules to multiple Portfolios # noqa: E501
|
93
94
|
|
94
|
-
Update or insert multiple
|
95
|
+
Update or insert multiple Access Metadata rules for multiple Portfolios. Items will be updated if they already exist and inserted if they do not. No other items will be affected The response will return the successfully updated or inserted Portfolio Access Metadata Rules or a failure message if unsuccessful Multiple rules for a metadataKey can exist with different effective at dates, when resources are accessed the rule that is active for the current time will be fetched # noqa: E501
|
95
96
|
This method makes a synchronous HTTP request by default. To make an
|
96
97
|
asynchronous HTTP request, please pass async_req=True
|
97
98
|
|
98
|
-
>>> thread = api.batch_upsert_portfolio_access_metadata(
|
99
|
+
>>> thread = api.batch_upsert_portfolio_access_metadata(request_body, effective_at, effective_until, async_req=True)
|
99
100
|
>>> result = thread.get()
|
100
101
|
|
101
|
-
:param
|
102
|
-
:type
|
103
|
-
:param effective_at: The date
|
102
|
+
:param request_body: The Access Metadata Rules to upsert and the Portfolio identifiers to upsert for (required)
|
103
|
+
:type request_body: Dict[str, BatchUpsertPortfolioAccessMetadataRequest]
|
104
|
+
:param effective_at: The date these rules will be effective from
|
104
105
|
:type effective_at: str
|
105
|
-
:param effective_until: The effective date until which the Access Metadata is valid. If not supplied this will be valid indefinitely, or until the next 'effectiveAt' date of the Access Metadata
|
106
|
-
:type effective_until:
|
106
|
+
:param effective_until: The effective date until which the Access Metadata is valid. If not supplied, this will be valid indefinitely, or until the next 'effectiveAt' date of the Access Metadata
|
107
|
+
:type effective_until: str
|
107
108
|
:param async_req: Whether to execute the request asynchronously.
|
108
109
|
:type async_req: bool, optional
|
109
|
-
:param _request_timeout:
|
110
|
-
|
111
|
-
|
112
|
-
(connection, read) timeouts.
|
110
|
+
:param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
|
111
|
+
:param opts: Configuration options for this request
|
112
|
+
:type opts: ConfigurationOptions, optional
|
113
113
|
:return: Returns the result object.
|
114
114
|
If the method is called asynchronously,
|
115
115
|
returns the request thread.
|
@@ -121,25 +121,25 @@ class PortfoliosApi:
|
|
121
121
|
raise ValueError(message)
|
122
122
|
if async_req is not None:
|
123
123
|
kwargs['async_req'] = async_req
|
124
|
-
return self.batch_upsert_portfolio_access_metadata_with_http_info(
|
124
|
+
return self.batch_upsert_portfolio_access_metadata_with_http_info(request_body, effective_at, effective_until, **kwargs) # noqa: E501
|
125
125
|
|
126
126
|
@validate_arguments
|
127
|
-
def batch_upsert_portfolio_access_metadata_with_http_info(self,
|
128
|
-
"""[
|
127
|
+
def batch_upsert_portfolio_access_metadata_with_http_info(self, request_body : Annotated[Dict[str, BatchUpsertPortfolioAccessMetadataRequest], Field(..., description="The Access Metadata Rules to upsert and the Portfolio identifiers to upsert for")], effective_at : Annotated[Optional[StrictStr], Field(description="The date these rules will be effective from")] = None, effective_until : Annotated[Optional[StrictStr], Field(description="The effective date until which the Access Metadata is valid. If not supplied, this will be valid indefinitely, or until the next 'effectiveAt' date of the Access Metadata")] = None, **kwargs) -> ApiResponse: # noqa: E501
|
128
|
+
"""[EARLY ACCESS] BatchUpsertPortfolioAccessMetadata: Upsert multiple Portfolio Access Metadata Rules to multiple Portfolios # noqa: E501
|
129
129
|
|
130
|
-
Update or insert multiple
|
130
|
+
Update or insert multiple Access Metadata rules for multiple Portfolios. Items will be updated if they already exist and inserted if they do not. No other items will be affected The response will return the successfully updated or inserted Portfolio Access Metadata Rules or a failure message if unsuccessful Multiple rules for a metadataKey can exist with different effective at dates, when resources are accessed the rule that is active for the current time will be fetched # noqa: E501
|
131
131
|
This method makes a synchronous HTTP request by default. To make an
|
132
132
|
asynchronous HTTP request, please pass async_req=True
|
133
133
|
|
134
|
-
>>> thread = api.batch_upsert_portfolio_access_metadata_with_http_info(
|
134
|
+
>>> thread = api.batch_upsert_portfolio_access_metadata_with_http_info(request_body, effective_at, effective_until, async_req=True)
|
135
135
|
>>> result = thread.get()
|
136
136
|
|
137
|
-
:param
|
138
|
-
:type
|
139
|
-
:param effective_at: The date
|
137
|
+
:param request_body: The Access Metadata Rules to upsert and the Portfolio identifiers to upsert for (required)
|
138
|
+
:type request_body: Dict[str, BatchUpsertPortfolioAccessMetadataRequest]
|
139
|
+
:param effective_at: The date these rules will be effective from
|
140
140
|
:type effective_at: str
|
141
|
-
:param effective_until: The effective date until which the Access Metadata is valid. If not supplied this will be valid indefinitely, or until the next 'effectiveAt' date of the Access Metadata
|
142
|
-
:type effective_until:
|
141
|
+
:param effective_until: The effective date until which the Access Metadata is valid. If not supplied, this will be valid indefinitely, or until the next 'effectiveAt' date of the Access Metadata
|
142
|
+
:type effective_until: str
|
143
143
|
:param async_req: Whether to execute the request asynchronously.
|
144
144
|
:type async_req: bool, optional
|
145
145
|
:param _preload_content: if False, the ApiResponse.data will
|
@@ -150,10 +150,9 @@ class PortfoliosApi:
|
|
150
150
|
:param _return_http_data_only: response data instead of ApiResponse
|
151
151
|
object with status code, headers, etc
|
152
152
|
:type _return_http_data_only: bool, optional
|
153
|
-
:param _request_timeout:
|
154
|
-
|
155
|
-
|
156
|
-
(connection, read) timeouts.
|
153
|
+
:param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
|
154
|
+
:param opts: Configuration options for this request
|
155
|
+
:type opts: ConfigurationOptions, optional
|
157
156
|
:param _request_auth: set to override the auth_settings for an a single
|
158
157
|
request; this effectively ignores the authentication
|
159
158
|
in the spec for a single request.
|
@@ -168,7 +167,7 @@ class PortfoliosApi:
|
|
168
167
|
_params = locals()
|
169
168
|
|
170
169
|
_all_params = [
|
171
|
-
'
|
170
|
+
'request_body',
|
172
171
|
'effective_at',
|
173
172
|
'effective_until'
|
174
173
|
]
|
@@ -180,7 +179,8 @@ class PortfoliosApi:
|
|
180
179
|
'_request_timeout',
|
181
180
|
'_request_auth',
|
182
181
|
'_content_type',
|
183
|
-
'_headers'
|
182
|
+
'_headers',
|
183
|
+
'opts'
|
184
184
|
]
|
185
185
|
)
|
186
186
|
|
@@ -205,10 +205,7 @@ class PortfoliosApi:
|
|
205
205
|
_query_params.append(('effectiveAt', _params['effective_at']))
|
206
206
|
|
207
207
|
if _params.get('effective_until') is not None: # noqa: E501
|
208
|
-
|
209
|
-
_query_params.append(('effectiveUntil', _params['effective_until'].strftime(self.api_client.configuration.datetime_format)))
|
210
|
-
else:
|
211
|
-
_query_params.append(('effectiveUntil', _params['effective_until']))
|
208
|
+
_query_params.append(('effectiveUntil', _params['effective_until']))
|
212
209
|
|
213
210
|
# process the header parameters
|
214
211
|
_header_params = dict(_params.get('_headers', {}))
|
@@ -217,8 +214,8 @@ class PortfoliosApi:
|
|
217
214
|
_files = {}
|
218
215
|
# process the body parameter
|
219
216
|
_body_params = None
|
220
|
-
if _params['
|
221
|
-
_body_params = _params['
|
217
|
+
if _params['request_body'] is not None:
|
218
|
+
_body_params = _params['request_body']
|
222
219
|
|
223
220
|
# set the HTTP header `Accept`
|
224
221
|
_header_params['Accept'] = self.api_client.select_header_accept(
|
@@ -253,6 +250,7 @@ class PortfoliosApi:
|
|
253
250
|
_return_http_data_only=_params.get('_return_http_data_only'), # noqa: E501
|
254
251
|
_preload_content=_params.get('_preload_content', True),
|
255
252
|
_request_timeout=_params.get('_request_timeout'),
|
253
|
+
opts=_params.get('opts'),
|
256
254
|
collection_formats=_collection_formats,
|
257
255
|
_request_auth=_params.get('_request_auth'))
|
258
256
|
|
@@ -285,10 +283,9 @@ class PortfoliosApi:
|
|
285
283
|
:type portfolio_effective_at: str
|
286
284
|
:param async_req: Whether to execute the request asynchronously.
|
287
285
|
:type async_req: bool, optional
|
288
|
-
:param _request_timeout:
|
289
|
-
|
290
|
-
|
291
|
-
(connection, read) timeouts.
|
286
|
+
:param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
|
287
|
+
:param opts: Configuration options for this request
|
288
|
+
:type opts: ConfigurationOptions, optional
|
292
289
|
:return: Returns the result object.
|
293
290
|
If the method is called asynchronously,
|
294
291
|
returns the request thread.
|
@@ -331,10 +328,9 @@ class PortfoliosApi:
|
|
331
328
|
:param _return_http_data_only: response data instead of ApiResponse
|
332
329
|
object with status code, headers, etc
|
333
330
|
:type _return_http_data_only: bool, optional
|
334
|
-
:param _request_timeout:
|
335
|
-
|
336
|
-
|
337
|
-
(connection, read) timeouts.
|
331
|
+
:param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
|
332
|
+
:param opts: Configuration options for this request
|
333
|
+
:type opts: ConfigurationOptions, optional
|
338
334
|
:param _request_auth: set to override the auth_settings for an a single
|
339
335
|
request; this effectively ignores the authentication
|
340
336
|
in the spec for a single request.
|
@@ -362,7 +358,8 @@ class PortfoliosApi:
|
|
362
358
|
'_request_timeout',
|
363
359
|
'_request_auth',
|
364
360
|
'_content_type',
|
365
|
-
'_headers'
|
361
|
+
'_headers',
|
362
|
+
'opts'
|
366
363
|
]
|
367
364
|
)
|
368
365
|
|
@@ -428,6 +425,7 @@ class PortfoliosApi:
|
|
428
425
|
_return_http_data_only=_params.get('_return_http_data_only'), # noqa: E501
|
429
426
|
_preload_content=_params.get('_preload_content', True),
|
430
427
|
_request_timeout=_params.get('_request_timeout'),
|
428
|
+
opts=_params.get('opts'),
|
431
429
|
collection_formats=_collection_formats,
|
432
430
|
_request_auth=_params.get('_request_auth'))
|
433
431
|
|
@@ -462,10 +460,9 @@ class PortfoliosApi:
|
|
462
460
|
:type effective_until: datetime
|
463
461
|
:param async_req: Whether to execute the request asynchronously.
|
464
462
|
:type async_req: bool, optional
|
465
|
-
:param _request_timeout:
|
466
|
-
|
467
|
-
|
468
|
-
(connection, read) timeouts.
|
463
|
+
:param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
|
464
|
+
:param opts: Configuration options for this request
|
465
|
+
:type opts: ConfigurationOptions, optional
|
469
466
|
:return: Returns the result object.
|
470
467
|
If the method is called asynchronously,
|
471
468
|
returns the request thread.
|
@@ -510,10 +507,9 @@ class PortfoliosApi:
|
|
510
507
|
:param _return_http_data_only: response data instead of ApiResponse
|
511
508
|
object with status code, headers, etc
|
512
509
|
:type _return_http_data_only: bool, optional
|
513
|
-
:param _request_timeout:
|
514
|
-
|
515
|
-
|
516
|
-
(connection, read) timeouts.
|
510
|
+
:param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
|
511
|
+
:param opts: Configuration options for this request
|
512
|
+
:type opts: ConfigurationOptions, optional
|
517
513
|
:param _request_auth: set to override the auth_settings for an a single
|
518
514
|
request; this effectively ignores the authentication
|
519
515
|
in the spec for a single request.
|
@@ -542,7 +538,8 @@ class PortfoliosApi:
|
|
542
538
|
'_request_timeout',
|
543
539
|
'_request_auth',
|
544
540
|
'_content_type',
|
545
|
-
'_headers'
|
541
|
+
'_headers',
|
542
|
+
'opts'
|
546
543
|
]
|
547
544
|
)
|
548
545
|
|
@@ -614,6 +611,7 @@ class PortfoliosApi:
|
|
614
611
|
_return_http_data_only=_params.get('_return_http_data_only'), # noqa: E501
|
615
612
|
_preload_content=_params.get('_preload_content', True),
|
616
613
|
_request_timeout=_params.get('_request_timeout'),
|
614
|
+
opts=_params.get('opts'),
|
617
615
|
collection_formats=_collection_formats,
|
618
616
|
_request_auth=_params.get('_request_auth'))
|
619
617
|
|
@@ -642,10 +640,9 @@ class PortfoliosApi:
|
|
642
640
|
:type code: str
|
643
641
|
:param async_req: Whether to execute the request asynchronously.
|
644
642
|
:type async_req: bool, optional
|
645
|
-
:param _request_timeout:
|
646
|
-
|
647
|
-
|
648
|
-
(connection, read) timeouts.
|
643
|
+
:param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
|
644
|
+
:param opts: Configuration options for this request
|
645
|
+
:type opts: ConfigurationOptions, optional
|
649
646
|
:return: Returns the result object.
|
650
647
|
If the method is called asynchronously,
|
651
648
|
returns the request thread.
|
@@ -684,10 +681,9 @@ class PortfoliosApi:
|
|
684
681
|
:param _return_http_data_only: response data instead of ApiResponse
|
685
682
|
object with status code, headers, etc
|
686
683
|
:type _return_http_data_only: bool, optional
|
687
|
-
:param _request_timeout:
|
688
|
-
|
689
|
-
|
690
|
-
(connection, read) timeouts.
|
684
|
+
:param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
|
685
|
+
:param opts: Configuration options for this request
|
686
|
+
:type opts: ConfigurationOptions, optional
|
691
687
|
:param _request_auth: set to override the auth_settings for an a single
|
692
688
|
request; this effectively ignores the authentication
|
693
689
|
in the spec for a single request.
|
@@ -713,7 +709,8 @@ class PortfoliosApi:
|
|
713
709
|
'_request_timeout',
|
714
710
|
'_request_auth',
|
715
711
|
'_content_type',
|
716
|
-
'_headers'
|
712
|
+
'_headers',
|
713
|
+
'opts'
|
717
714
|
]
|
718
715
|
)
|
719
716
|
|
@@ -773,6 +770,7 @@ class PortfoliosApi:
|
|
773
770
|
_return_http_data_only=_params.get('_return_http_data_only'), # noqa: E501
|
774
771
|
_preload_content=_params.get('_preload_content', True),
|
775
772
|
_request_timeout=_params.get('_request_timeout'),
|
773
|
+
opts=_params.get('opts'),
|
776
774
|
collection_formats=_collection_formats,
|
777
775
|
_request_auth=_params.get('_request_auth'))
|
778
776
|
|
@@ -805,10 +803,9 @@ class PortfoliosApi:
|
|
805
803
|
:type effective_at: str
|
806
804
|
:param async_req: Whether to execute the request asynchronously.
|
807
805
|
:type async_req: bool, optional
|
808
|
-
:param _request_timeout:
|
809
|
-
|
810
|
-
|
811
|
-
(connection, read) timeouts.
|
806
|
+
:param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
|
807
|
+
:param opts: Configuration options for this request
|
808
|
+
:type opts: ConfigurationOptions, optional
|
812
809
|
:return: Returns the result object.
|
813
810
|
If the method is called asynchronously,
|
814
811
|
returns the request thread.
|
@@ -851,10 +848,9 @@ class PortfoliosApi:
|
|
851
848
|
:param _return_http_data_only: response data instead of ApiResponse
|
852
849
|
object with status code, headers, etc
|
853
850
|
:type _return_http_data_only: bool, optional
|
854
|
-
:param _request_timeout:
|
855
|
-
|
856
|
-
|
857
|
-
(connection, read) timeouts.
|
851
|
+
:param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
|
852
|
+
:param opts: Configuration options for this request
|
853
|
+
:type opts: ConfigurationOptions, optional
|
858
854
|
:param _request_auth: set to override the auth_settings for an a single
|
859
855
|
request; this effectively ignores the authentication
|
860
856
|
in the spec for a single request.
|
@@ -882,7 +878,8 @@ class PortfoliosApi:
|
|
882
878
|
'_request_timeout',
|
883
879
|
'_request_auth',
|
884
880
|
'_content_type',
|
885
|
-
'_headers'
|
881
|
+
'_headers',
|
882
|
+
'opts'
|
886
883
|
]
|
887
884
|
)
|
888
885
|
|
@@ -949,6 +946,7 @@ class PortfoliosApi:
|
|
949
946
|
_return_http_data_only=_params.get('_return_http_data_only'), # noqa: E501
|
950
947
|
_preload_content=_params.get('_preload_content', True),
|
951
948
|
_request_timeout=_params.get('_request_timeout'),
|
949
|
+
opts=_params.get('opts'),
|
952
950
|
collection_formats=_collection_formats,
|
953
951
|
_request_auth=_params.get('_request_auth'))
|
954
952
|
|
@@ -987,10 +985,9 @@ class PortfoliosApi:
|
|
987
985
|
:type period: str
|
988
986
|
:param async_req: Whether to execute the request asynchronously.
|
989
987
|
:type async_req: bool, optional
|
990
|
-
:param _request_timeout:
|
991
|
-
|
992
|
-
|
993
|
-
(connection, read) timeouts.
|
988
|
+
:param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
|
989
|
+
:param opts: Configuration options for this request
|
990
|
+
:type opts: ConfigurationOptions, optional
|
994
991
|
:return: Returns the result object.
|
995
992
|
If the method is called asynchronously,
|
996
993
|
returns the request thread.
|
@@ -1039,10 +1036,9 @@ class PortfoliosApi:
|
|
1039
1036
|
:param _return_http_data_only: response data instead of ApiResponse
|
1040
1037
|
object with status code, headers, etc
|
1041
1038
|
:type _return_http_data_only: bool, optional
|
1042
|
-
:param _request_timeout:
|
1043
|
-
|
1044
|
-
|
1045
|
-
(connection, read) timeouts.
|
1039
|
+
:param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
|
1040
|
+
:param opts: Configuration options for this request
|
1041
|
+
:type opts: ConfigurationOptions, optional
|
1046
1042
|
:param _request_auth: set to override the auth_settings for an a single
|
1047
1043
|
request; this effectively ignores the authentication
|
1048
1044
|
in the spec for a single request.
|
@@ -1073,7 +1069,8 @@ class PortfoliosApi:
|
|
1073
1069
|
'_request_timeout',
|
1074
1070
|
'_request_auth',
|
1075
1071
|
'_content_type',
|
1076
|
-
'_headers'
|
1072
|
+
'_headers',
|
1073
|
+
'opts'
|
1077
1074
|
]
|
1078
1075
|
)
|
1079
1076
|
|
@@ -1148,6 +1145,7 @@ class PortfoliosApi:
|
|
1148
1145
|
_return_http_data_only=_params.get('_return_http_data_only'), # noqa: E501
|
1149
1146
|
_preload_content=_params.get('_preload_content', True),
|
1150
1147
|
_request_timeout=_params.get('_request_timeout'),
|
1148
|
+
opts=_params.get('opts'),
|
1151
1149
|
collection_formats=_collection_formats,
|
1152
1150
|
_request_auth=_params.get('_request_auth'))
|
1153
1151
|
|
@@ -1180,10 +1178,9 @@ class PortfoliosApi:
|
|
1180
1178
|
:type as_at: datetime
|
1181
1179
|
:param async_req: Whether to execute the request asynchronously.
|
1182
1180
|
:type async_req: bool, optional
|
1183
|
-
:param _request_timeout:
|
1184
|
-
|
1185
|
-
|
1186
|
-
(connection, read) timeouts.
|
1181
|
+
:param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
|
1182
|
+
:param opts: Configuration options for this request
|
1183
|
+
:type opts: ConfigurationOptions, optional
|
1187
1184
|
:return: Returns the result object.
|
1188
1185
|
If the method is called asynchronously,
|
1189
1186
|
returns the request thread.
|
@@ -1226,10 +1223,9 @@ class PortfoliosApi:
|
|
1226
1223
|
:param _return_http_data_only: response data instead of ApiResponse
|
1227
1224
|
object with status code, headers, etc
|
1228
1225
|
:type _return_http_data_only: bool, optional
|
1229
|
-
:param _request_timeout:
|
1230
|
-
|
1231
|
-
|
1232
|
-
(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
|
1233
1229
|
:param _request_auth: set to override the auth_settings for an a single
|
1234
1230
|
request; this effectively ignores the authentication
|
1235
1231
|
in the spec for a single request.
|
@@ -1257,7 +1253,8 @@ class PortfoliosApi:
|
|
1257
1253
|
'_request_timeout',
|
1258
1254
|
'_request_auth',
|
1259
1255
|
'_content_type',
|
1260
|
-
'_headers'
|
1256
|
+
'_headers',
|
1257
|
+
'opts'
|
1261
1258
|
]
|
1262
1259
|
)
|
1263
1260
|
|
@@ -1333,6 +1330,7 @@ class PortfoliosApi:
|
|
1333
1330
|
_return_http_data_only=_params.get('_return_http_data_only'), # noqa: E501
|
1334
1331
|
_preload_content=_params.get('_preload_content', True),
|
1335
1332
|
_request_timeout=_params.get('_request_timeout'),
|
1333
|
+
opts=_params.get('opts'),
|
1336
1334
|
collection_formats=_collection_formats,
|
1337
1335
|
_request_auth=_params.get('_request_auth'))
|
1338
1336
|
|
@@ -1369,10 +1367,9 @@ class PortfoliosApi:
|
|
1369
1367
|
:type as_at: datetime
|
1370
1368
|
:param async_req: Whether to execute the request asynchronously.
|
1371
1369
|
:type async_req: bool, optional
|
1372
|
-
:param _request_timeout:
|
1373
|
-
|
1374
|
-
|
1375
|
-
(connection, read) timeouts.
|
1370
|
+
:param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
|
1371
|
+
:param opts: Configuration options for this request
|
1372
|
+
:type opts: ConfigurationOptions, optional
|
1376
1373
|
:return: Returns the result object.
|
1377
1374
|
If the method is called asynchronously,
|
1378
1375
|
returns the request thread.
|
@@ -1419,10 +1416,9 @@ class PortfoliosApi:
|
|
1419
1416
|
:param _return_http_data_only: response data instead of ApiResponse
|
1420
1417
|
object with status code, headers, etc
|
1421
1418
|
:type _return_http_data_only: bool, optional
|
1422
|
-
:param _request_timeout:
|
1423
|
-
|
1424
|
-
|
1425
|
-
(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
|
1426
1422
|
:param _request_auth: set to override the auth_settings for an a single
|
1427
1423
|
request; this effectively ignores the authentication
|
1428
1424
|
in the spec for a single request.
|
@@ -1452,7 +1448,8 @@ class PortfoliosApi:
|
|
1452
1448
|
'_request_timeout',
|
1453
1449
|
'_request_auth',
|
1454
1450
|
'_content_type',
|
1455
|
-
'_headers'
|
1451
|
+
'_headers',
|
1452
|
+
'opts'
|
1456
1453
|
]
|
1457
1454
|
)
|
1458
1455
|
|
@@ -1534,6 +1531,7 @@ class PortfoliosApi:
|
|
1534
1531
|
_return_http_data_only=_params.get('_return_http_data_only'), # noqa: E501
|
1535
1532
|
_preload_content=_params.get('_preload_content', True),
|
1536
1533
|
_request_timeout=_params.get('_request_timeout'),
|
1534
|
+
opts=_params.get('opts'),
|
1537
1535
|
collection_formats=_collection_formats,
|
1538
1536
|
_request_auth=_params.get('_request_auth'))
|
1539
1537
|
|
@@ -1568,10 +1566,9 @@ class PortfoliosApi:
|
|
1568
1566
|
:type as_at: datetime
|
1569
1567
|
:param async_req: Whether to execute the request asynchronously.
|
1570
1568
|
:type async_req: bool, optional
|
1571
|
-
:param _request_timeout:
|
1572
|
-
|
1573
|
-
|
1574
|
-
(connection, read) timeouts.
|
1569
|
+
:param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
|
1570
|
+
:param opts: Configuration options for this request
|
1571
|
+
:type opts: ConfigurationOptions, optional
|
1575
1572
|
:return: Returns the result object.
|
1576
1573
|
If the method is called asynchronously,
|
1577
1574
|
returns the request thread.
|
@@ -1616,10 +1613,9 @@ class PortfoliosApi:
|
|
1616
1613
|
:param _return_http_data_only: response data instead of ApiResponse
|
1617
1614
|
object with status code, headers, etc
|
1618
1615
|
:type _return_http_data_only: bool, optional
|
1619
|
-
:param _request_timeout:
|
1620
|
-
|
1621
|
-
|
1622
|
-
(connection, read) timeouts.
|
1616
|
+
:param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
|
1617
|
+
:param opts: Configuration options for this request
|
1618
|
+
:type opts: ConfigurationOptions, optional
|
1623
1619
|
:param _request_auth: set to override the auth_settings for an a single
|
1624
1620
|
request; this effectively ignores the authentication
|
1625
1621
|
in the spec for a single request.
|
@@ -1648,7 +1644,8 @@ class PortfoliosApi:
|
|
1648
1644
|
'_request_timeout',
|
1649
1645
|
'_request_auth',
|
1650
1646
|
'_content_type',
|
1651
|
-
'_headers'
|
1647
|
+
'_headers',
|
1648
|
+
'opts'
|
1652
1649
|
]
|
1653
1650
|
)
|
1654
1651
|
|
@@ -1720,6 +1717,7 @@ class PortfoliosApi:
|
|
1720
1717
|
_return_http_data_only=_params.get('_return_http_data_only'), # noqa: E501
|
1721
1718
|
_preload_content=_params.get('_preload_content', True),
|
1722
1719
|
_request_timeout=_params.get('_request_timeout'),
|
1720
|
+
opts=_params.get('opts'),
|
1723
1721
|
collection_formats=_collection_formats,
|
1724
1722
|
_request_auth=_params.get('_request_auth'))
|
1725
1723
|
|
@@ -1756,10 +1754,9 @@ class PortfoliosApi:
|
|
1756
1754
|
:type relationship_definition_ids: List[str]
|
1757
1755
|
:param async_req: Whether to execute the request asynchronously.
|
1758
1756
|
:type async_req: bool, optional
|
1759
|
-
:param _request_timeout:
|
1760
|
-
|
1761
|
-
|
1762
|
-
(connection, read) timeouts.
|
1757
|
+
:param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
|
1758
|
+
:param opts: Configuration options for this request
|
1759
|
+
:type opts: ConfigurationOptions, optional
|
1763
1760
|
:return: Returns the result object.
|
1764
1761
|
If the method is called asynchronously,
|
1765
1762
|
returns the request thread.
|
@@ -1806,10 +1803,9 @@ class PortfoliosApi:
|
|
1806
1803
|
:param _return_http_data_only: response data instead of ApiResponse
|
1807
1804
|
object with status code, headers, etc
|
1808
1805
|
:type _return_http_data_only: bool, optional
|
1809
|
-
:param _request_timeout:
|
1810
|
-
|
1811
|
-
|
1812
|
-
(connection, read) timeouts.
|
1806
|
+
:param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
|
1807
|
+
:param opts: Configuration options for this request
|
1808
|
+
:type opts: ConfigurationOptions, optional
|
1813
1809
|
:param _request_auth: set to override the auth_settings for an a single
|
1814
1810
|
request; this effectively ignores the authentication
|
1815
1811
|
in the spec for a single request.
|
@@ -1839,7 +1835,8 @@ class PortfoliosApi:
|
|
1839
1835
|
'_request_timeout',
|
1840
1836
|
'_request_auth',
|
1841
1837
|
'_content_type',
|
1842
|
-
'_headers'
|
1838
|
+
'_headers',
|
1839
|
+
'opts'
|
1843
1840
|
]
|
1844
1841
|
)
|
1845
1842
|
|
@@ -1916,6 +1913,7 @@ class PortfoliosApi:
|
|
1916
1913
|
_return_http_data_only=_params.get('_return_http_data_only'), # noqa: E501
|
1917
1914
|
_preload_content=_params.get('_preload_content', True),
|
1918
1915
|
_request_timeout=_params.get('_request_timeout'),
|
1916
|
+
opts=_params.get('opts'),
|
1919
1917
|
collection_formats=_collection_formats,
|
1920
1918
|
_request_auth=_params.get('_request_auth'))
|
1921
1919
|
|
@@ -1968,10 +1966,9 @@ class PortfoliosApi:
|
|
1968
1966
|
:type alternative_inc_date: str
|
1969
1967
|
:param async_req: Whether to execute the request asynchronously.
|
1970
1968
|
:type async_req: bool, optional
|
1971
|
-
:param _request_timeout:
|
1972
|
-
|
1973
|
-
|
1974
|
-
(connection, read) timeouts.
|
1969
|
+
:param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
|
1970
|
+
:param opts: Configuration options for this request
|
1971
|
+
:type opts: ConfigurationOptions, optional
|
1975
1972
|
:return: Returns the result object.
|
1976
1973
|
If the method is called asynchronously,
|
1977
1974
|
returns the request thread.
|
@@ -2034,10 +2031,9 @@ class PortfoliosApi:
|
|
2034
2031
|
:param _return_http_data_only: response data instead of ApiResponse
|
2035
2032
|
object with status code, headers, etc
|
2036
2033
|
:type _return_http_data_only: bool, optional
|
2037
|
-
:param _request_timeout:
|
2038
|
-
|
2039
|
-
|
2040
|
-
(connection, read) timeouts.
|
2034
|
+
:param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
|
2035
|
+
:param opts: Configuration options for this request
|
2036
|
+
:type opts: ConfigurationOptions, optional
|
2041
2037
|
:param _request_auth: set to override the auth_settings for an a single
|
2042
2038
|
request; this effectively ignores the authentication
|
2043
2039
|
in the spec for a single request.
|
@@ -2075,7 +2071,8 @@ class PortfoliosApi:
|
|
2075
2071
|
'_request_timeout',
|
2076
2072
|
'_request_auth',
|
2077
2073
|
'_content_type',
|
2078
|
-
'_headers'
|
2074
|
+
'_headers',
|
2075
|
+
'opts'
|
2079
2076
|
]
|
2080
2077
|
)
|
2081
2078
|
|
@@ -2175,6 +2172,7 @@ class PortfoliosApi:
|
|
2175
2172
|
_return_http_data_only=_params.get('_return_http_data_only'), # noqa: E501
|
2176
2173
|
_preload_content=_params.get('_preload_content', True),
|
2177
2174
|
_request_timeout=_params.get('_request_timeout'),
|
2175
|
+
opts=_params.get('opts'),
|
2178
2176
|
collection_formats=_collection_formats,
|
2179
2177
|
_request_auth=_params.get('_request_auth'))
|
2180
2178
|
|
@@ -2211,10 +2209,9 @@ class PortfoliosApi:
|
|
2211
2209
|
:type as_at: datetime
|
2212
2210
|
:param async_req: Whether to execute the request asynchronously.
|
2213
2211
|
:type async_req: bool, optional
|
2214
|
-
:param _request_timeout:
|
2215
|
-
|
2216
|
-
|
2217
|
-
(connection, read) timeouts.
|
2212
|
+
:param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
|
2213
|
+
:param opts: Configuration options for this request
|
2214
|
+
:type opts: ConfigurationOptions, optional
|
2218
2215
|
:return: Returns the result object.
|
2219
2216
|
If the method is called asynchronously,
|
2220
2217
|
returns the request thread.
|
@@ -2261,10 +2258,9 @@ class PortfoliosApi:
|
|
2261
2258
|
:param _return_http_data_only: response data instead of ApiResponse
|
2262
2259
|
object with status code, headers, etc
|
2263
2260
|
:type _return_http_data_only: bool, optional
|
2264
|
-
:param _request_timeout:
|
2265
|
-
|
2266
|
-
|
2267
|
-
(connection, read) timeouts.
|
2261
|
+
:param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
|
2262
|
+
:param opts: Configuration options for this request
|
2263
|
+
:type opts: ConfigurationOptions, optional
|
2268
2264
|
:param _request_auth: set to override the auth_settings for an a single
|
2269
2265
|
request; this effectively ignores the authentication
|
2270
2266
|
in the spec for a single request.
|
@@ -2294,7 +2290,8 @@ class PortfoliosApi:
|
|
2294
2290
|
'_request_timeout',
|
2295
2291
|
'_request_auth',
|
2296
2292
|
'_content_type',
|
2297
|
-
'_headers'
|
2293
|
+
'_headers',
|
2294
|
+
'opts'
|
2298
2295
|
]
|
2299
2296
|
)
|
2300
2297
|
|
@@ -2376,6 +2373,7 @@ class PortfoliosApi:
|
|
2376
2373
|
_return_http_data_only=_params.get('_return_http_data_only'), # noqa: E501
|
2377
2374
|
_preload_content=_params.get('_preload_content', True),
|
2378
2375
|
_request_timeout=_params.get('_request_timeout'),
|
2376
|
+
opts=_params.get('opts'),
|
2379
2377
|
collection_formats=_collection_formats,
|
2380
2378
|
_request_auth=_params.get('_request_auth'))
|
2381
2379
|
|
@@ -2414,10 +2412,9 @@ class PortfoliosApi:
|
|
2414
2412
|
:type limit: int
|
2415
2413
|
:param async_req: Whether to execute the request asynchronously.
|
2416
2414
|
:type async_req: bool, optional
|
2417
|
-
:param _request_timeout:
|
2418
|
-
|
2419
|
-
|
2420
|
-
(connection, read) timeouts.
|
2415
|
+
:param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
|
2416
|
+
:param opts: Configuration options for this request
|
2417
|
+
:type opts: ConfigurationOptions, optional
|
2421
2418
|
:return: Returns the result object.
|
2422
2419
|
If the method is called asynchronously,
|
2423
2420
|
returns the request thread.
|
@@ -2466,10 +2463,9 @@ class PortfoliosApi:
|
|
2466
2463
|
:param _return_http_data_only: response data instead of ApiResponse
|
2467
2464
|
object with status code, headers, etc
|
2468
2465
|
:type _return_http_data_only: bool, optional
|
2469
|
-
:param _request_timeout:
|
2470
|
-
|
2471
|
-
|
2472
|
-
(connection, read) timeouts.
|
2466
|
+
:param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
|
2467
|
+
:param opts: Configuration options for this request
|
2468
|
+
:type opts: ConfigurationOptions, optional
|
2473
2469
|
:param _request_auth: set to override the auth_settings for an a single
|
2474
2470
|
request; this effectively ignores the authentication
|
2475
2471
|
in the spec for a single request.
|
@@ -2500,7 +2496,8 @@ class PortfoliosApi:
|
|
2500
2496
|
'_request_timeout',
|
2501
2497
|
'_request_auth',
|
2502
2498
|
'_content_type',
|
2503
|
-
'_headers'
|
2499
|
+
'_headers',
|
2500
|
+
'opts'
|
2504
2501
|
]
|
2505
2502
|
)
|
2506
2503
|
|
@@ -2581,6 +2578,7 @@ class PortfoliosApi:
|
|
2581
2578
|
_return_http_data_only=_params.get('_return_http_data_only'), # noqa: E501
|
2582
2579
|
_preload_content=_params.get('_preload_content', True),
|
2583
2580
|
_request_timeout=_params.get('_request_timeout'),
|
2581
|
+
opts=_params.get('opts'),
|
2584
2582
|
collection_formats=_collection_formats,
|
2585
2583
|
_request_auth=_params.get('_request_auth'))
|
2586
2584
|
|
@@ -2613,10 +2611,9 @@ class PortfoliosApi:
|
|
2613
2611
|
:type as_at: datetime
|
2614
2612
|
:param async_req: Whether to execute the request asynchronously.
|
2615
2613
|
:type async_req: bool, optional
|
2616
|
-
:param _request_timeout:
|
2617
|
-
|
2618
|
-
|
2619
|
-
(connection, read) timeouts.
|
2614
|
+
:param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
|
2615
|
+
:param opts: Configuration options for this request
|
2616
|
+
:type opts: ConfigurationOptions, optional
|
2620
2617
|
:return: Returns the result object.
|
2621
2618
|
If the method is called asynchronously,
|
2622
2619
|
returns the request thread.
|
@@ -2659,10 +2656,9 @@ class PortfoliosApi:
|
|
2659
2656
|
:param _return_http_data_only: response data instead of ApiResponse
|
2660
2657
|
object with status code, headers, etc
|
2661
2658
|
:type _return_http_data_only: bool, optional
|
2662
|
-
:param _request_timeout:
|
2663
|
-
|
2664
|
-
|
2665
|
-
(connection, read) timeouts.
|
2659
|
+
:param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
|
2660
|
+
:param opts: Configuration options for this request
|
2661
|
+
:type opts: ConfigurationOptions, optional
|
2666
2662
|
:param _request_auth: set to override the auth_settings for an a single
|
2667
2663
|
request; this effectively ignores the authentication
|
2668
2664
|
in the spec for a single request.
|
@@ -2690,7 +2686,8 @@ class PortfoliosApi:
|
|
2690
2686
|
'_request_timeout',
|
2691
2687
|
'_request_auth',
|
2692
2688
|
'_content_type',
|
2693
|
-
'_headers'
|
2689
|
+
'_headers',
|
2690
|
+
'opts'
|
2694
2691
|
]
|
2695
2692
|
)
|
2696
2693
|
|
@@ -2759,6 +2756,7 @@ class PortfoliosApi:
|
|
2759
2756
|
_return_http_data_only=_params.get('_return_http_data_only'), # noqa: E501
|
2760
2757
|
_preload_content=_params.get('_preload_content', True),
|
2761
2758
|
_request_timeout=_params.get('_request_timeout'),
|
2759
|
+
opts=_params.get('opts'),
|
2762
2760
|
collection_formats=_collection_formats,
|
2763
2761
|
_request_auth=_params.get('_request_auth'))
|
2764
2762
|
|
@@ -2791,10 +2789,9 @@ class PortfoliosApi:
|
|
2791
2789
|
:type as_at: datetime
|
2792
2790
|
:param async_req: Whether to execute the request asynchronously.
|
2793
2791
|
:type async_req: bool, optional
|
2794
|
-
:param _request_timeout:
|
2795
|
-
|
2796
|
-
|
2797
|
-
(connection, read) timeouts.
|
2792
|
+
:param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
|
2793
|
+
:param opts: Configuration options for this request
|
2794
|
+
:type opts: ConfigurationOptions, optional
|
2798
2795
|
:return: Returns the result object.
|
2799
2796
|
If the method is called asynchronously,
|
2800
2797
|
returns the request thread.
|
@@ -2837,10 +2834,9 @@ class PortfoliosApi:
|
|
2837
2834
|
:param _return_http_data_only: response data instead of ApiResponse
|
2838
2835
|
object with status code, headers, etc
|
2839
2836
|
:type _return_http_data_only: bool, optional
|
2840
|
-
:param _request_timeout:
|
2841
|
-
|
2842
|
-
|
2843
|
-
(connection, read) timeouts.
|
2837
|
+
:param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
|
2838
|
+
:param opts: Configuration options for this request
|
2839
|
+
:type opts: ConfigurationOptions, optional
|
2844
2840
|
:param _request_auth: set to override the auth_settings for an a single
|
2845
2841
|
request; this effectively ignores the authentication
|
2846
2842
|
in the spec for a single request.
|
@@ -2868,7 +2864,8 @@ class PortfoliosApi:
|
|
2868
2864
|
'_request_timeout',
|
2869
2865
|
'_request_auth',
|
2870
2866
|
'_content_type',
|
2871
|
-
'_headers'
|
2867
|
+
'_headers',
|
2868
|
+
'opts'
|
2872
2869
|
]
|
2873
2870
|
)
|
2874
2871
|
|
@@ -2937,6 +2934,7 @@ class PortfoliosApi:
|
|
2937
2934
|
_return_http_data_only=_params.get('_return_http_data_only'), # noqa: E501
|
2938
2935
|
_preload_content=_params.get('_preload_content', True),
|
2939
2936
|
_request_timeout=_params.get('_request_timeout'),
|
2937
|
+
opts=_params.get('opts'),
|
2940
2938
|
collection_formats=_collection_formats,
|
2941
2939
|
_request_auth=_params.get('_request_auth'))
|
2942
2940
|
|
@@ -2977,10 +2975,9 @@ class PortfoliosApi:
|
|
2977
2975
|
:type limit: int
|
2978
2976
|
:param async_req: Whether to execute the request asynchronously.
|
2979
2977
|
:type async_req: bool, optional
|
2980
|
-
:param _request_timeout:
|
2981
|
-
|
2982
|
-
|
2983
|
-
(connection, read) timeouts.
|
2978
|
+
:param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
|
2979
|
+
:param opts: Configuration options for this request
|
2980
|
+
:type opts: ConfigurationOptions, optional
|
2984
2981
|
:return: Returns the result object.
|
2985
2982
|
If the method is called asynchronously,
|
2986
2983
|
returns the request thread.
|
@@ -3031,10 +3028,9 @@ class PortfoliosApi:
|
|
3031
3028
|
:param _return_http_data_only: response data instead of ApiResponse
|
3032
3029
|
object with status code, headers, etc
|
3033
3030
|
:type _return_http_data_only: bool, optional
|
3034
|
-
:param _request_timeout:
|
3035
|
-
|
3036
|
-
|
3037
|
-
(connection, read) timeouts.
|
3031
|
+
:param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
|
3032
|
+
:param opts: Configuration options for this request
|
3033
|
+
:type opts: ConfigurationOptions, optional
|
3038
3034
|
:param _request_auth: set to override the auth_settings for an a single
|
3039
3035
|
request; this effectively ignores the authentication
|
3040
3036
|
in the spec for a single request.
|
@@ -3066,7 +3062,8 @@ class PortfoliosApi:
|
|
3066
3062
|
'_request_timeout',
|
3067
3063
|
'_request_auth',
|
3068
3064
|
'_content_type',
|
3069
|
-
'_headers'
|
3065
|
+
'_headers',
|
3066
|
+
'opts'
|
3070
3067
|
]
|
3071
3068
|
)
|
3072
3069
|
|
@@ -3147,6 +3144,7 @@ class PortfoliosApi:
|
|
3147
3144
|
_return_http_data_only=_params.get('_return_http_data_only'), # noqa: E501
|
3148
3145
|
_preload_content=_params.get('_preload_content', True),
|
3149
3146
|
_request_timeout=_params.get('_request_timeout'),
|
3147
|
+
opts=_params.get('opts'),
|
3150
3148
|
collection_formats=_collection_formats,
|
3151
3149
|
_request_auth=_params.get('_request_auth'))
|
3152
3150
|
|
@@ -3183,10 +3181,9 @@ class PortfoliosApi:
|
|
3183
3181
|
:type identifier_types: List[str]
|
3184
3182
|
:param async_req: Whether to execute the request asynchronously.
|
3185
3183
|
:type async_req: bool, optional
|
3186
|
-
:param _request_timeout:
|
3187
|
-
|
3188
|
-
|
3189
|
-
(connection, read) timeouts.
|
3184
|
+
:param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
|
3185
|
+
:param opts: Configuration options for this request
|
3186
|
+
:type opts: ConfigurationOptions, optional
|
3190
3187
|
:return: Returns the result object.
|
3191
3188
|
If the method is called asynchronously,
|
3192
3189
|
returns the request thread.
|
@@ -3233,10 +3230,9 @@ class PortfoliosApi:
|
|
3233
3230
|
:param _return_http_data_only: response data instead of ApiResponse
|
3234
3231
|
object with status code, headers, etc
|
3235
3232
|
:type _return_http_data_only: bool, optional
|
3236
|
-
:param _request_timeout:
|
3237
|
-
|
3238
|
-
|
3239
|
-
(connection, read) timeouts.
|
3233
|
+
:param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
|
3234
|
+
:param opts: Configuration options for this request
|
3235
|
+
:type opts: ConfigurationOptions, optional
|
3240
3236
|
:param _request_auth: set to override the auth_settings for an a single
|
3241
3237
|
request; this effectively ignores the authentication
|
3242
3238
|
in the spec for a single request.
|
@@ -3266,7 +3262,8 @@ class PortfoliosApi:
|
|
3266
3262
|
'_request_timeout',
|
3267
3263
|
'_request_auth',
|
3268
3264
|
'_content_type',
|
3269
|
-
'_headers'
|
3265
|
+
'_headers',
|
3266
|
+
'opts'
|
3270
3267
|
]
|
3271
3268
|
)
|
3272
3269
|
|
@@ -3342,6 +3339,7 @@ class PortfoliosApi:
|
|
3342
3339
|
_return_http_data_only=_params.get('_return_http_data_only'), # noqa: E501
|
3343
3340
|
_preload_content=_params.get('_preload_content', True),
|
3344
3341
|
_request_timeout=_params.get('_request_timeout'),
|
3342
|
+
opts=_params.get('opts'),
|
3345
3343
|
collection_formats=_collection_formats,
|
3346
3344
|
_request_auth=_params.get('_request_auth'))
|
3347
3345
|
|
@@ -3378,10 +3376,9 @@ class PortfoliosApi:
|
|
3378
3376
|
:type identifier_types: List[str]
|
3379
3377
|
:param async_req: Whether to execute the request asynchronously.
|
3380
3378
|
:type async_req: bool, optional
|
3381
|
-
:param _request_timeout:
|
3382
|
-
|
3383
|
-
|
3384
|
-
(connection, read) timeouts.
|
3379
|
+
:param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
|
3380
|
+
:param opts: Configuration options for this request
|
3381
|
+
:type opts: ConfigurationOptions, optional
|
3385
3382
|
:return: Returns the result object.
|
3386
3383
|
If the method is called asynchronously,
|
3387
3384
|
returns the request thread.
|
@@ -3428,10 +3425,9 @@ class PortfoliosApi:
|
|
3428
3425
|
:param _return_http_data_only: response data instead of ApiResponse
|
3429
3426
|
object with status code, headers, etc
|
3430
3427
|
:type _return_http_data_only: bool, optional
|
3431
|
-
:param _request_timeout:
|
3432
|
-
|
3433
|
-
|
3434
|
-
(connection, read) timeouts.
|
3428
|
+
:param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
|
3429
|
+
:param opts: Configuration options for this request
|
3430
|
+
:type opts: ConfigurationOptions, optional
|
3435
3431
|
:param _request_auth: set to override the auth_settings for an a single
|
3436
3432
|
request; this effectively ignores the authentication
|
3437
3433
|
in the spec for a single request.
|
@@ -3461,7 +3457,8 @@ class PortfoliosApi:
|
|
3461
3457
|
'_request_timeout',
|
3462
3458
|
'_request_auth',
|
3463
3459
|
'_content_type',
|
3464
|
-
'_headers'
|
3460
|
+
'_headers',
|
3461
|
+
'opts'
|
3465
3462
|
]
|
3466
3463
|
)
|
3467
3464
|
|
@@ -3537,6 +3534,7 @@ class PortfoliosApi:
|
|
3537
3534
|
_return_http_data_only=_params.get('_return_http_data_only'), # noqa: E501
|
3538
3535
|
_preload_content=_params.get('_preload_content', True),
|
3539
3536
|
_request_timeout=_params.get('_request_timeout'),
|
3537
|
+
opts=_params.get('opts'),
|
3540
3538
|
collection_formats=_collection_formats,
|
3541
3539
|
_request_auth=_params.get('_request_auth'))
|
3542
3540
|
|
@@ -3577,10 +3575,9 @@ class PortfoliosApi:
|
|
3577
3575
|
:type as_at: datetime
|
3578
3576
|
:param async_req: Whether to execute the request asynchronously.
|
3579
3577
|
:type async_req: bool, optional
|
3580
|
-
:param _request_timeout:
|
3581
|
-
|
3582
|
-
|
3583
|
-
(connection, read) timeouts.
|
3578
|
+
:param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
|
3579
|
+
:param opts: Configuration options for this request
|
3580
|
+
:type opts: ConfigurationOptions, optional
|
3584
3581
|
:return: Returns the result object.
|
3585
3582
|
If the method is called asynchronously,
|
3586
3583
|
returns the request thread.
|
@@ -3631,10 +3628,9 @@ class PortfoliosApi:
|
|
3631
3628
|
:param _return_http_data_only: response data instead of ApiResponse
|
3632
3629
|
object with status code, headers, etc
|
3633
3630
|
:type _return_http_data_only: bool, optional
|
3634
|
-
:param _request_timeout:
|
3635
|
-
|
3636
|
-
|
3637
|
-
(connection, read) timeouts.
|
3631
|
+
:param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
|
3632
|
+
:param opts: Configuration options for this request
|
3633
|
+
:type opts: ConfigurationOptions, optional
|
3638
3634
|
:param _request_auth: set to override the auth_settings for an a single
|
3639
3635
|
request; this effectively ignores the authentication
|
3640
3636
|
in the spec for a single request.
|
@@ -3666,7 +3662,8 @@ class PortfoliosApi:
|
|
3666
3662
|
'_request_timeout',
|
3667
3663
|
'_request_auth',
|
3668
3664
|
'_content_type',
|
3669
|
-
'_headers'
|
3665
|
+
'_headers',
|
3666
|
+
'opts'
|
3670
3667
|
]
|
3671
3668
|
)
|
3672
3669
|
|
@@ -3747,6 +3744,7 @@ class PortfoliosApi:
|
|
3747
3744
|
_return_http_data_only=_params.get('_return_http_data_only'), # noqa: E501
|
3748
3745
|
_preload_content=_params.get('_preload_content', True),
|
3749
3746
|
_request_timeout=_params.get('_request_timeout'),
|
3747
|
+
opts=_params.get('opts'),
|
3750
3748
|
collection_formats=_collection_formats,
|
3751
3749
|
_request_auth=_params.get('_request_auth'))
|
3752
3750
|
|
@@ -3781,10 +3779,9 @@ class PortfoliosApi:
|
|
3781
3779
|
:type as_at: datetime
|
3782
3780
|
:param async_req: Whether to execute the request asynchronously.
|
3783
3781
|
:type async_req: bool, optional
|
3784
|
-
:param _request_timeout:
|
3785
|
-
|
3786
|
-
|
3787
|
-
(connection, read) timeouts.
|
3782
|
+
:param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
|
3783
|
+
:param opts: Configuration options for this request
|
3784
|
+
:type opts: ConfigurationOptions, optional
|
3788
3785
|
:return: Returns the result object.
|
3789
3786
|
If the method is called asynchronously,
|
3790
3787
|
returns the request thread.
|
@@ -3829,10 +3826,9 @@ class PortfoliosApi:
|
|
3829
3826
|
:param _return_http_data_only: response data instead of ApiResponse
|
3830
3827
|
object with status code, headers, etc
|
3831
3828
|
:type _return_http_data_only: bool, optional
|
3832
|
-
:param _request_timeout:
|
3833
|
-
|
3834
|
-
|
3835
|
-
(connection, read) timeouts.
|
3829
|
+
:param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
|
3830
|
+
:param opts: Configuration options for this request
|
3831
|
+
:type opts: ConfigurationOptions, optional
|
3836
3832
|
:param _request_auth: set to override the auth_settings for an a single
|
3837
3833
|
request; this effectively ignores the authentication
|
3838
3834
|
in the spec for a single request.
|
@@ -3861,7 +3857,8 @@ class PortfoliosApi:
|
|
3861
3857
|
'_request_timeout',
|
3862
3858
|
'_request_auth',
|
3863
3859
|
'_content_type',
|
3864
|
-
'_headers'
|
3860
|
+
'_headers',
|
3861
|
+
'opts'
|
3865
3862
|
]
|
3866
3863
|
)
|
3867
3864
|
|
@@ -3933,6 +3930,7 @@ class PortfoliosApi:
|
|
3933
3930
|
_return_http_data_only=_params.get('_return_http_data_only'), # noqa: E501
|
3934
3931
|
_preload_content=_params.get('_preload_content', True),
|
3935
3932
|
_request_timeout=_params.get('_request_timeout'),
|
3933
|
+
opts=_params.get('opts'),
|
3936
3934
|
collection_formats=_collection_formats,
|
3937
3935
|
_request_auth=_params.get('_request_auth'))
|
3938
3936
|
|
@@ -3973,10 +3971,9 @@ class PortfoliosApi:
|
|
3973
3971
|
:type sort_by: List[str]
|
3974
3972
|
:param async_req: Whether to execute the request asynchronously.
|
3975
3973
|
:type async_req: bool, optional
|
3976
|
-
:param _request_timeout:
|
3977
|
-
|
3978
|
-
|
3979
|
-
(connection, read) timeouts.
|
3974
|
+
:param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
|
3975
|
+
:param opts: Configuration options for this request
|
3976
|
+
:type opts: ConfigurationOptions, optional
|
3980
3977
|
:return: Returns the result object.
|
3981
3978
|
If the method is called asynchronously,
|
3982
3979
|
returns the request thread.
|
@@ -4027,10 +4024,9 @@ class PortfoliosApi:
|
|
4027
4024
|
:param _return_http_data_only: response data instead of ApiResponse
|
4028
4025
|
object with status code, headers, etc
|
4029
4026
|
:type _return_http_data_only: bool, optional
|
4030
|
-
:param _request_timeout:
|
4031
|
-
|
4032
|
-
|
4033
|
-
(connection, read) timeouts.
|
4027
|
+
:param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
|
4028
|
+
:param opts: Configuration options for this request
|
4029
|
+
:type opts: ConfigurationOptions, optional
|
4034
4030
|
:param _request_auth: set to override the auth_settings for an a single
|
4035
4031
|
request; this effectively ignores the authentication
|
4036
4032
|
in the spec for a single request.
|
@@ -4062,7 +4058,8 @@ class PortfoliosApi:
|
|
4062
4058
|
'_request_timeout',
|
4063
4059
|
'_request_auth',
|
4064
4060
|
'_content_type',
|
4065
|
-
'_headers'
|
4061
|
+
'_headers',
|
4062
|
+
'opts'
|
4066
4063
|
]
|
4067
4064
|
)
|
4068
4065
|
|
@@ -4144,6 +4141,7 @@ class PortfoliosApi:
|
|
4144
4141
|
_return_http_data_only=_params.get('_return_http_data_only'), # noqa: E501
|
4145
4142
|
_preload_content=_params.get('_preload_content', True),
|
4146
4143
|
_request_timeout=_params.get('_request_timeout'),
|
4144
|
+
opts=_params.get('opts'),
|
4147
4145
|
collection_formats=_collection_formats,
|
4148
4146
|
_request_auth=_params.get('_request_auth'))
|
4149
4147
|
|
@@ -4180,10 +4178,9 @@ class PortfoliosApi:
|
|
4180
4178
|
:type limit: int
|
4181
4179
|
:param async_req: Whether to execute the request asynchronously.
|
4182
4180
|
:type async_req: bool, optional
|
4183
|
-
:param _request_timeout:
|
4184
|
-
|
4185
|
-
|
4186
|
-
(connection, read) timeouts.
|
4181
|
+
:param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
|
4182
|
+
:param opts: Configuration options for this request
|
4183
|
+
:type opts: ConfigurationOptions, optional
|
4187
4184
|
:return: Returns the result object.
|
4188
4185
|
If the method is called asynchronously,
|
4189
4186
|
returns the request thread.
|
@@ -4230,10 +4227,9 @@ class PortfoliosApi:
|
|
4230
4227
|
:param _return_http_data_only: response data instead of ApiResponse
|
4231
4228
|
object with status code, headers, etc
|
4232
4229
|
:type _return_http_data_only: bool, optional
|
4233
|
-
:param _request_timeout:
|
4234
|
-
|
4235
|
-
|
4236
|
-
(connection, read) timeouts.
|
4230
|
+
:param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
|
4231
|
+
:param opts: Configuration options for this request
|
4232
|
+
:type opts: ConfigurationOptions, optional
|
4237
4233
|
:param _request_auth: set to override the auth_settings for an a single
|
4238
4234
|
request; this effectively ignores the authentication
|
4239
4235
|
in the spec for a single request.
|
@@ -4263,7 +4259,8 @@ class PortfoliosApi:
|
|
4263
4259
|
'_request_timeout',
|
4264
4260
|
'_request_auth',
|
4265
4261
|
'_content_type',
|
4266
|
-
'_headers'
|
4262
|
+
'_headers',
|
4263
|
+
'opts'
|
4267
4264
|
]
|
4268
4265
|
)
|
4269
4266
|
|
@@ -4338,6 +4335,7 @@ class PortfoliosApi:
|
|
4338
4335
|
_return_http_data_only=_params.get('_return_http_data_only'), # noqa: E501
|
4339
4336
|
_preload_content=_params.get('_preload_content', True),
|
4340
4337
|
_request_timeout=_params.get('_request_timeout'),
|
4338
|
+
opts=_params.get('opts'),
|
4341
4339
|
collection_formats=_collection_formats,
|
4342
4340
|
_request_auth=_params.get('_request_auth'))
|
4343
4341
|
|
@@ -4380,10 +4378,9 @@ class PortfoliosApi:
|
|
4380
4378
|
:type relationship_definition_ids: List[str]
|
4381
4379
|
:param async_req: Whether to execute the request asynchronously.
|
4382
4380
|
:type async_req: bool, optional
|
4383
|
-
:param _request_timeout:
|
4384
|
-
|
4385
|
-
|
4386
|
-
(connection, read) timeouts.
|
4381
|
+
:param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
|
4382
|
+
:param opts: Configuration options for this request
|
4383
|
+
:type opts: ConfigurationOptions, optional
|
4387
4384
|
:return: Returns the result object.
|
4388
4385
|
If the method is called asynchronously,
|
4389
4386
|
returns the request thread.
|
@@ -4436,10 +4433,9 @@ class PortfoliosApi:
|
|
4436
4433
|
:param _return_http_data_only: response data instead of ApiResponse
|
4437
4434
|
object with status code, headers, etc
|
4438
4435
|
:type _return_http_data_only: bool, optional
|
4439
|
-
:param _request_timeout:
|
4440
|
-
|
4441
|
-
|
4442
|
-
(connection, read) timeouts.
|
4436
|
+
:param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
|
4437
|
+
:param opts: Configuration options for this request
|
4438
|
+
:type opts: ConfigurationOptions, optional
|
4443
4439
|
:param _request_auth: set to override the auth_settings for an a single
|
4444
4440
|
request; this effectively ignores the authentication
|
4445
4441
|
in the spec for a single request.
|
@@ -4472,7 +4468,8 @@ class PortfoliosApi:
|
|
4472
4468
|
'_request_timeout',
|
4473
4469
|
'_request_auth',
|
4474
4470
|
'_content_type',
|
4475
|
-
'_headers'
|
4471
|
+
'_headers',
|
4472
|
+
'opts'
|
4476
4473
|
]
|
4477
4474
|
)
|
4478
4475
|
|
@@ -4559,6 +4556,7 @@ class PortfoliosApi:
|
|
4559
4556
|
_return_http_data_only=_params.get('_return_http_data_only'), # noqa: E501
|
4560
4557
|
_preload_content=_params.get('_preload_content', True),
|
4561
4558
|
_request_timeout=_params.get('_request_timeout'),
|
4559
|
+
opts=_params.get('opts'),
|
4562
4560
|
collection_formats=_collection_formats,
|
4563
4561
|
_request_auth=_params.get('_request_auth'))
|
4564
4562
|
|
@@ -4601,10 +4599,9 @@ class PortfoliosApi:
|
|
4601
4599
|
:type relationship_definition_ids: List[str]
|
4602
4600
|
:param async_req: Whether to execute the request asynchronously.
|
4603
4601
|
:type async_req: bool, optional
|
4604
|
-
:param _request_timeout:
|
4605
|
-
|
4606
|
-
|
4607
|
-
(connection, read) timeouts.
|
4602
|
+
:param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
|
4603
|
+
:param opts: Configuration options for this request
|
4604
|
+
:type opts: ConfigurationOptions, optional
|
4608
4605
|
:return: Returns the result object.
|
4609
4606
|
If the method is called asynchronously,
|
4610
4607
|
returns the request thread.
|
@@ -4657,10 +4654,9 @@ class PortfoliosApi:
|
|
4657
4654
|
:param _return_http_data_only: response data instead of ApiResponse
|
4658
4655
|
object with status code, headers, etc
|
4659
4656
|
:type _return_http_data_only: bool, optional
|
4660
|
-
:param _request_timeout:
|
4661
|
-
|
4662
|
-
|
4663
|
-
(connection, read) timeouts.
|
4657
|
+
:param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
|
4658
|
+
:param opts: Configuration options for this request
|
4659
|
+
:type opts: ConfigurationOptions, optional
|
4664
4660
|
:param _request_auth: set to override the auth_settings for an a single
|
4665
4661
|
request; this effectively ignores the authentication
|
4666
4662
|
in the spec for a single request.
|
@@ -4693,7 +4689,8 @@ class PortfoliosApi:
|
|
4693
4689
|
'_request_timeout',
|
4694
4690
|
'_request_auth',
|
4695
4691
|
'_content_type',
|
4696
|
-
'_headers'
|
4692
|
+
'_headers',
|
4693
|
+
'opts'
|
4697
4694
|
]
|
4698
4695
|
)
|
4699
4696
|
|
@@ -4780,6 +4777,7 @@ class PortfoliosApi:
|
|
4780
4777
|
_return_http_data_only=_params.get('_return_http_data_only'), # noqa: E501
|
4781
4778
|
_preload_content=_params.get('_preload_content', True),
|
4782
4779
|
_request_timeout=_params.get('_request_timeout'),
|
4780
|
+
opts=_params.get('opts'),
|
4783
4781
|
collection_formats=_collection_formats,
|
4784
4782
|
_request_auth=_params.get('_request_auth'))
|
4785
4783
|
|
@@ -4810,10 +4808,9 @@ class PortfoliosApi:
|
|
4810
4808
|
:type operation: List[Operation]
|
4811
4809
|
:param async_req: Whether to execute the request asynchronously.
|
4812
4810
|
:type async_req: bool, optional
|
4813
|
-
:param _request_timeout:
|
4814
|
-
|
4815
|
-
|
4816
|
-
(connection, read) timeouts.
|
4811
|
+
:param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
|
4812
|
+
:param opts: Configuration options for this request
|
4813
|
+
:type opts: ConfigurationOptions, optional
|
4817
4814
|
:return: Returns the result object.
|
4818
4815
|
If the method is called asynchronously,
|
4819
4816
|
returns the request thread.
|
@@ -4854,10 +4851,9 @@ class PortfoliosApi:
|
|
4854
4851
|
:param _return_http_data_only: response data instead of ApiResponse
|
4855
4852
|
object with status code, headers, etc
|
4856
4853
|
:type _return_http_data_only: bool, optional
|
4857
|
-
:param _request_timeout:
|
4858
|
-
|
4859
|
-
|
4860
|
-
(connection, read) timeouts.
|
4854
|
+
:param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
|
4855
|
+
:param opts: Configuration options for this request
|
4856
|
+
:type opts: ConfigurationOptions, optional
|
4861
4857
|
:param _request_auth: set to override the auth_settings for an a single
|
4862
4858
|
request; this effectively ignores the authentication
|
4863
4859
|
in the spec for a single request.
|
@@ -4884,7 +4880,8 @@ class PortfoliosApi:
|
|
4884
4880
|
'_request_timeout',
|
4885
4881
|
'_request_auth',
|
4886
4882
|
'_content_type',
|
4887
|
-
'_headers'
|
4883
|
+
'_headers',
|
4884
|
+
'opts'
|
4888
4885
|
]
|
4889
4886
|
)
|
4890
4887
|
|
@@ -4954,6 +4951,7 @@ class PortfoliosApi:
|
|
4954
4951
|
_return_http_data_only=_params.get('_return_http_data_only'), # noqa: E501
|
4955
4952
|
_preload_content=_params.get('_preload_content', True),
|
4956
4953
|
_request_timeout=_params.get('_request_timeout'),
|
4954
|
+
opts=_params.get('opts'),
|
4957
4955
|
collection_formats=_collection_formats,
|
4958
4956
|
_request_auth=_params.get('_request_auth'))
|
4959
4957
|
|
@@ -4988,10 +4986,9 @@ class PortfoliosApi:
|
|
4988
4986
|
:type effective_until: datetime
|
4989
4987
|
:param async_req: Whether to execute the request asynchronously.
|
4990
4988
|
:type async_req: bool, optional
|
4991
|
-
:param _request_timeout:
|
4992
|
-
|
4993
|
-
|
4994
|
-
(connection, read) timeouts.
|
4989
|
+
:param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
|
4990
|
+
:param opts: Configuration options for this request
|
4991
|
+
:type opts: ConfigurationOptions, optional
|
4995
4992
|
:return: Returns the result object.
|
4996
4993
|
If the method is called asynchronously,
|
4997
4994
|
returns the request thread.
|
@@ -5036,10 +5033,9 @@ class PortfoliosApi:
|
|
5036
5033
|
:param _return_http_data_only: response data instead of ApiResponse
|
5037
5034
|
object with status code, headers, etc
|
5038
5035
|
:type _return_http_data_only: bool, optional
|
5039
|
-
:param _request_timeout:
|
5040
|
-
|
5041
|
-
|
5042
|
-
(connection, read) timeouts.
|
5036
|
+
:param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
|
5037
|
+
:param opts: Configuration options for this request
|
5038
|
+
:type opts: ConfigurationOptions, optional
|
5043
5039
|
:param _request_auth: set to override the auth_settings for an a single
|
5044
5040
|
request; this effectively ignores the authentication
|
5045
5041
|
in the spec for a single request.
|
@@ -5068,7 +5064,8 @@ class PortfoliosApi:
|
|
5068
5064
|
'_request_timeout',
|
5069
5065
|
'_request_auth',
|
5070
5066
|
'_content_type',
|
5071
|
-
'_headers'
|
5067
|
+
'_headers',
|
5068
|
+
'opts'
|
5072
5069
|
]
|
5073
5070
|
)
|
5074
5071
|
|
@@ -5147,6 +5144,7 @@ class PortfoliosApi:
|
|
5147
5144
|
_return_http_data_only=_params.get('_return_http_data_only'), # noqa: E501
|
5148
5145
|
_preload_content=_params.get('_preload_content', True),
|
5149
5146
|
_request_timeout=_params.get('_request_timeout'),
|
5147
|
+
opts=_params.get('opts'),
|
5150
5148
|
collection_formats=_collection_formats,
|
5151
5149
|
_request_auth=_params.get('_request_auth'))
|
5152
5150
|
|
@@ -5179,10 +5177,9 @@ class PortfoliosApi:
|
|
5179
5177
|
:type effective_at: str
|
5180
5178
|
:param async_req: Whether to execute the request asynchronously.
|
5181
5179
|
:type async_req: bool, optional
|
5182
|
-
:param _request_timeout:
|
5183
|
-
|
5184
|
-
|
5185
|
-
(connection, read) timeouts.
|
5180
|
+
:param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
|
5181
|
+
:param opts: Configuration options for this request
|
5182
|
+
:type opts: ConfigurationOptions, optional
|
5186
5183
|
:return: Returns the result object.
|
5187
5184
|
If the method is called asynchronously,
|
5188
5185
|
returns the request thread.
|
@@ -5225,10 +5222,9 @@ class PortfoliosApi:
|
|
5225
5222
|
:param _return_http_data_only: response data instead of ApiResponse
|
5226
5223
|
object with status code, headers, etc
|
5227
5224
|
:type _return_http_data_only: bool, optional
|
5228
|
-
:param _request_timeout:
|
5229
|
-
|
5230
|
-
|
5231
|
-
(connection, read) timeouts.
|
5225
|
+
:param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
|
5226
|
+
:param opts: Configuration options for this request
|
5227
|
+
:type opts: ConfigurationOptions, optional
|
5232
5228
|
:param _request_auth: set to override the auth_settings for an a single
|
5233
5229
|
request; this effectively ignores the authentication
|
5234
5230
|
in the spec for a single request.
|
@@ -5256,7 +5252,8 @@ class PortfoliosApi:
|
|
5256
5252
|
'_request_timeout',
|
5257
5253
|
'_request_auth',
|
5258
5254
|
'_content_type',
|
5259
|
-
'_headers'
|
5255
|
+
'_headers',
|
5256
|
+
'opts'
|
5260
5257
|
]
|
5261
5258
|
)
|
5262
5259
|
|
@@ -5329,6 +5326,7 @@ class PortfoliosApi:
|
|
5329
5326
|
_return_http_data_only=_params.get('_return_http_data_only'), # noqa: E501
|
5330
5327
|
_preload_content=_params.get('_preload_content', True),
|
5331
5328
|
_request_timeout=_params.get('_request_timeout'),
|
5329
|
+
opts=_params.get('opts'),
|
5332
5330
|
collection_formats=_collection_formats,
|
5333
5331
|
_request_auth=_params.get('_request_auth'))
|
5334
5332
|
|
@@ -5363,10 +5361,9 @@ class PortfoliosApi:
|
|
5363
5361
|
:type portfolio_effective_at: str
|
5364
5362
|
:param async_req: Whether to execute the request asynchronously.
|
5365
5363
|
:type async_req: bool, optional
|
5366
|
-
:param _request_timeout:
|
5367
|
-
|
5368
|
-
|
5369
|
-
(connection, read) timeouts.
|
5364
|
+
:param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
|
5365
|
+
:param opts: Configuration options for this request
|
5366
|
+
:type opts: ConfigurationOptions, optional
|
5370
5367
|
:return: Returns the result object.
|
5371
5368
|
If the method is called asynchronously,
|
5372
5369
|
returns the request thread.
|
@@ -5411,10 +5408,9 @@ class PortfoliosApi:
|
|
5411
5408
|
:param _return_http_data_only: response data instead of ApiResponse
|
5412
5409
|
object with status code, headers, etc
|
5413
5410
|
:type _return_http_data_only: bool, optional
|
5414
|
-
:param _request_timeout:
|
5415
|
-
|
5416
|
-
|
5417
|
-
(connection, read) timeouts.
|
5411
|
+
:param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
|
5412
|
+
:param opts: Configuration options for this request
|
5413
|
+
:type opts: ConfigurationOptions, optional
|
5418
5414
|
:param _request_auth: set to override the auth_settings for an a single
|
5419
5415
|
request; this effectively ignores the authentication
|
5420
5416
|
in the spec for a single request.
|
@@ -5443,7 +5439,8 @@ class PortfoliosApi:
|
|
5443
5439
|
'_request_timeout',
|
5444
5440
|
'_request_auth',
|
5445
5441
|
'_content_type',
|
5446
|
-
'_headers'
|
5442
|
+
'_headers',
|
5443
|
+
'opts'
|
5447
5444
|
]
|
5448
5445
|
)
|
5449
5446
|
|
@@ -5519,6 +5516,7 @@ class PortfoliosApi:
|
|
5519
5516
|
_return_http_data_only=_params.get('_return_http_data_only'), # noqa: E501
|
5520
5517
|
_preload_content=_params.get('_preload_content', True),
|
5521
5518
|
_request_timeout=_params.get('_request_timeout'),
|
5519
|
+
opts=_params.get('opts'),
|
5522
5520
|
collection_formats=_collection_formats,
|
5523
5521
|
_request_auth=_params.get('_request_auth'))
|
5524
5522
|
|
@@ -5532,7 +5530,7 @@ class PortfoliosApi:
|
|
5532
5530
|
|
5533
5531
|
@validate_arguments
|
5534
5532
|
def upsert_portfolio_access_metadata(self, scope : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The scope to use when updating or inserting the Portfolio Access Metadata Rule.")], code : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="Portfolio code")], metadata_key : Annotated[constr(strict=True, max_length=256, min_length=1), Field(..., description="Key of the access metadata to upsert")], upsert_portfolio_access_metadata_request : Annotated[UpsertPortfolioAccessMetadataRequest, Field(..., description="The Portfolio Access Metadata Rule to update or insert")], effective_at : Annotated[Optional[StrictStr], Field(description="The date this rule will effective from")] = None, effective_until : Annotated[Optional[datetime], Field(description="The effective date until which the Access Metadata is valid. If not supplied this will be valid indefinitely, or until the next 'effectiveAt' date of the Access Metadata")] = None, async_req: Optional[bool]=None, **kwargs) -> Union[ResourceListOfAccessMetadataValueOf, Awaitable[ResourceListOfAccessMetadataValueOf]]: # noqa: E501
|
5535
|
-
"""
|
5533
|
+
"""UpsertPortfolioAccessMetadata: Upsert a Portfolio Access Metadata Rule associated with specific metadataKey. This creates or updates the data in LUSID. # noqa: E501
|
5536
5534
|
|
5537
5535
|
Update or insert one Portfolio Access Metadata Rule in a single scope. An item will be updated if it already exists and inserted if it does not. The response will return the successfully updated or inserted Portfolio Access Metadata Rule or failure message if unsuccessful It is important to always check to verify success (or failure). Multiple rules for a metadataKey can exists with different effective at dates, when resources are accessed the rule that is active for the current time will be fetched # noqa: E501
|
5538
5536
|
This method makes a synchronous HTTP request by default. To make an
|
@@ -5555,10 +5553,9 @@ class PortfoliosApi:
|
|
5555
5553
|
:type effective_until: datetime
|
5556
5554
|
:param async_req: Whether to execute the request asynchronously.
|
5557
5555
|
:type async_req: bool, optional
|
5558
|
-
:param _request_timeout:
|
5559
|
-
|
5560
|
-
|
5561
|
-
(connection, read) timeouts.
|
5556
|
+
:param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
|
5557
|
+
:param opts: Configuration options for this request
|
5558
|
+
:type opts: ConfigurationOptions, optional
|
5562
5559
|
:return: Returns the result object.
|
5563
5560
|
If the method is called asynchronously,
|
5564
5561
|
returns the request thread.
|
@@ -5574,7 +5571,7 @@ class PortfoliosApi:
|
|
5574
5571
|
|
5575
5572
|
@validate_arguments
|
5576
5573
|
def upsert_portfolio_access_metadata_with_http_info(self, scope : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The scope to use when updating or inserting the Portfolio Access Metadata Rule.")], code : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="Portfolio code")], metadata_key : Annotated[constr(strict=True, max_length=256, min_length=1), Field(..., description="Key of the access metadata to upsert")], upsert_portfolio_access_metadata_request : Annotated[UpsertPortfolioAccessMetadataRequest, Field(..., description="The Portfolio Access Metadata Rule to update or insert")], effective_at : Annotated[Optional[StrictStr], Field(description="The date this rule will effective from")] = None, effective_until : Annotated[Optional[datetime], Field(description="The effective date until which the Access Metadata is valid. If not supplied this will be valid indefinitely, or until the next 'effectiveAt' date of the Access Metadata")] = None, **kwargs) -> ApiResponse: # noqa: E501
|
5577
|
-
"""
|
5574
|
+
"""UpsertPortfolioAccessMetadata: Upsert a Portfolio Access Metadata Rule associated with specific metadataKey. This creates or updates the data in LUSID. # noqa: E501
|
5578
5575
|
|
5579
5576
|
Update or insert one Portfolio Access Metadata Rule in a single scope. An item will be updated if it already exists and inserted if it does not. The response will return the successfully updated or inserted Portfolio Access Metadata Rule or failure message if unsuccessful It is important to always check to verify success (or failure). Multiple rules for a metadataKey can exists with different effective at dates, when resources are accessed the rule that is active for the current time will be fetched # noqa: E501
|
5580
5577
|
This method makes a synchronous HTTP request by default. To make an
|
@@ -5605,10 +5602,9 @@ class PortfoliosApi:
|
|
5605
5602
|
:param _return_http_data_only: response data instead of ApiResponse
|
5606
5603
|
object with status code, headers, etc
|
5607
5604
|
:type _return_http_data_only: bool, optional
|
5608
|
-
:param _request_timeout:
|
5609
|
-
|
5610
|
-
|
5611
|
-
(connection, read) timeouts.
|
5605
|
+
:param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
|
5606
|
+
:param opts: Configuration options for this request
|
5607
|
+
:type opts: ConfigurationOptions, optional
|
5612
5608
|
:param _request_auth: set to override the auth_settings for an a single
|
5613
5609
|
request; this effectively ignores the authentication
|
5614
5610
|
in the spec for a single request.
|
@@ -5638,7 +5634,8 @@ class PortfoliosApi:
|
|
5638
5634
|
'_request_timeout',
|
5639
5635
|
'_request_auth',
|
5640
5636
|
'_content_type',
|
5641
|
-
'_headers'
|
5637
|
+
'_headers',
|
5638
|
+
'opts'
|
5642
5639
|
]
|
5643
5640
|
)
|
5644
5641
|
|
@@ -5720,6 +5717,7 @@ class PortfoliosApi:
|
|
5720
5717
|
_return_http_data_only=_params.get('_return_http_data_only'), # noqa: E501
|
5721
5718
|
_preload_content=_params.get('_preload_content', True),
|
5722
5719
|
_request_timeout=_params.get('_request_timeout'),
|
5720
|
+
opts=_params.get('opts'),
|
5723
5721
|
collection_formats=_collection_formats,
|
5724
5722
|
_request_auth=_params.get('_request_auth'))
|
5725
5723
|
|
@@ -5750,10 +5748,9 @@ class PortfoliosApi:
|
|
5750
5748
|
:type request_body: Dict[str, ModelProperty]
|
5751
5749
|
:param async_req: Whether to execute the request asynchronously.
|
5752
5750
|
:type async_req: bool, optional
|
5753
|
-
:param _request_timeout:
|
5754
|
-
|
5755
|
-
|
5756
|
-
(connection, read) timeouts.
|
5751
|
+
:param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
|
5752
|
+
:param opts: Configuration options for this request
|
5753
|
+
:type opts: ConfigurationOptions, optional
|
5757
5754
|
:return: Returns the result object.
|
5758
5755
|
If the method is called asynchronously,
|
5759
5756
|
returns the request thread.
|
@@ -5794,10 +5791,9 @@ class PortfoliosApi:
|
|
5794
5791
|
:param _return_http_data_only: response data instead of ApiResponse
|
5795
5792
|
object with status code, headers, etc
|
5796
5793
|
:type _return_http_data_only: bool, optional
|
5797
|
-
:param _request_timeout:
|
5798
|
-
|
5799
|
-
|
5800
|
-
(connection, read) timeouts.
|
5794
|
+
:param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
|
5795
|
+
:param opts: Configuration options for this request
|
5796
|
+
:type opts: ConfigurationOptions, optional
|
5801
5797
|
:param _request_auth: set to override the auth_settings for an a single
|
5802
5798
|
request; this effectively ignores the authentication
|
5803
5799
|
in the spec for a single request.
|
@@ -5824,7 +5820,8 @@ class PortfoliosApi:
|
|
5824
5820
|
'_request_timeout',
|
5825
5821
|
'_request_auth',
|
5826
5822
|
'_content_type',
|
5827
|
-
'_headers'
|
5823
|
+
'_headers',
|
5824
|
+
'opts'
|
5828
5825
|
]
|
5829
5826
|
)
|
5830
5827
|
|
@@ -5894,6 +5891,7 @@ class PortfoliosApi:
|
|
5894
5891
|
_return_http_data_only=_params.get('_return_http_data_only'), # noqa: E501
|
5895
5892
|
_preload_content=_params.get('_preload_content', True),
|
5896
5893
|
_request_timeout=_params.get('_request_timeout'),
|
5894
|
+
opts=_params.get('opts'),
|
5897
5895
|
collection_formats=_collection_formats,
|
5898
5896
|
_request_auth=_params.get('_request_auth'))
|
5899
5897
|
|
@@ -5928,10 +5926,9 @@ class PortfoliosApi:
|
|
5928
5926
|
:type performance_return: List[PerformanceReturn]
|
5929
5927
|
:param async_req: Whether to execute the request asynchronously.
|
5930
5928
|
:type async_req: bool, optional
|
5931
|
-
:param _request_timeout:
|
5932
|
-
|
5933
|
-
|
5934
|
-
(connection, read) timeouts.
|
5929
|
+
:param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
|
5930
|
+
:param opts: Configuration options for this request
|
5931
|
+
:type opts: ConfigurationOptions, optional
|
5935
5932
|
:return: Returns the result object.
|
5936
5933
|
If the method is called asynchronously,
|
5937
5934
|
returns the request thread.
|
@@ -5976,10 +5973,9 @@ class PortfoliosApi:
|
|
5976
5973
|
:param _return_http_data_only: response data instead of ApiResponse
|
5977
5974
|
object with status code, headers, etc
|
5978
5975
|
:type _return_http_data_only: bool, optional
|
5979
|
-
:param _request_timeout:
|
5980
|
-
|
5981
|
-
|
5982
|
-
(connection, read) timeouts.
|
5976
|
+
:param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
|
5977
|
+
:param opts: Configuration options for this request
|
5978
|
+
:type opts: ConfigurationOptions, optional
|
5983
5979
|
:param _request_auth: set to override the auth_settings for an a single
|
5984
5980
|
request; this effectively ignores the authentication
|
5985
5981
|
in the spec for a single request.
|
@@ -6008,7 +6004,8 @@ class PortfoliosApi:
|
|
6008
6004
|
'_request_timeout',
|
6009
6005
|
'_request_auth',
|
6010
6006
|
'_content_type',
|
6011
|
-
'_headers'
|
6007
|
+
'_headers',
|
6008
|
+
'opts'
|
6012
6009
|
]
|
6013
6010
|
)
|
6014
6011
|
|
@@ -6084,5 +6081,6 @@ class PortfoliosApi:
|
|
6084
6081
|
_return_http_data_only=_params.get('_return_http_data_only'), # noqa: E501
|
6085
6082
|
_preload_content=_params.get('_preload_content', True),
|
6086
6083
|
_request_timeout=_params.get('_request_timeout'),
|
6084
|
+
opts=_params.get('opts'),
|
6087
6085
|
collection_formats=_collection_formats,
|
6088
6086
|
_request_auth=_params.get('_request_auth'))
|