lusid-sdk 2.0.50b0__py3-none-any.whl → 2.1.683__py3-none-any.whl
Sign up to get free protection for your applications and to get access to all the features.
- lusid/__init__.py +1647 -15
- lusid/api/__init__.py +87 -0
- lusid/api/abor_api.py +807 -305
- lusid/api/abor_configuration_api.py +72 -70
- lusid/api/address_key_definition_api.py +30 -29
- lusid/api/aggregation_api.py +41 -40
- lusid/api/allocations_api.py +83 -71
- lusid/api/amortisation_rule_sets_api.py +1101 -0
- lusid/api/application_metadata_api.py +30 -29
- lusid/api/blocks_api.py +45 -44
- lusid/api/calendars_api.py +492 -142
- lusid/api/chart_of_accounts_api.py +2488 -644
- lusid/api/complex_market_data_api.py +41 -40
- lusid/api/compliance_api.py +1147 -444
- lusid/api/configuration_recipe_api.py +1237 -94
- lusid/api/conventions_api.py +111 -110
- lusid/api/corporate_action_sources_api.py +98 -97
- lusid/api/counterparties_api.py +75 -74
- lusid/api/custom_data_models_api.py +1043 -0
- lusid/api/custom_entities_api.py +116 -115
- lusid/api/custom_entity_definitions_api.py +39 -38
- lusid/api/custom_entity_types_api.py +39 -38
- lusid/api/cut_label_definitions_api.py +57 -64
- lusid/api/data_types_api.py +417 -97
- lusid/api/derived_transaction_portfolios_api.py +21 -20
- lusid/api/entities_api.py +1110 -13
- lusid/api/executions_api.py +49 -48
- lusid/api/fee_types_api.py +1053 -0
- lusid/api/fund_configuration_api.py +1120 -0
- lusid/api/funds_api.py +4402 -0
- lusid/api/group_reconciliations_api.py +2497 -0
- lusid/api/instrument_event_types_api.py +1288 -0
- lusid/api/instrument_events_api.py +232 -42
- lusid/api/instruments_api.py +391 -211
- lusid/api/legacy_compliance_api.py +87 -86
- lusid/api/legal_entities_api.py +201 -200
- lusid/api/order_graph_api.py +46 -45
- lusid/api/order_instructions_api.py +45 -44
- lusid/api/order_management_api.py +1537 -67
- lusid/api/orders_api.py +58 -65
- lusid/api/packages_api.py +45 -44
- lusid/api/participations_api.py +39 -38
- lusid/api/persons_api.py +342 -182
- lusid/api/placements_api.py +51 -50
- lusid/api/portfolio_groups_api.py +263 -254
- lusid/api/portfolios_api.py +1343 -417
- lusid/api/property_definitions_api.py +304 -98
- lusid/api/queryable_keys_api.py +212 -0
- lusid/api/quotes_api.py +106 -121
- lusid/api/reconciliations_api.py +548 -2115
- lusid/api/reference_lists_api.py +41 -40
- lusid/api/reference_portfolio_api.py +215 -38
- lusid/api/relation_definitions_api.py +30 -29
- lusid/api/relations_api.py +22 -21
- lusid/api/relationship_definitions_api.py +48 -47
- lusid/api/relationships_api.py +23 -22
- lusid/api/schemas_api.py +46 -53
- lusid/api/scopes_api.py +192 -11
- lusid/api/scripted_translation_api.py +105 -102
- lusid/api/search_api.py +39 -38
- lusid/api/sequences_api.py +39 -38
- lusid/api/simple_position_portfolios_api.py +213 -0
- lusid/api/staged_modifications_api.py +763 -0
- lusid/api/staging_rule_set_api.py +886 -0
- lusid/api/structured_result_data_api.py +90 -89
- lusid/api/system_configuration_api.py +66 -65
- lusid/api/tax_rule_sets_api.py +48 -47
- lusid/api/timelines_api.py +1307 -0
- lusid/api/transaction_configuration_api.py +124 -123
- lusid/api/transaction_fees_api.py +48 -47
- lusid/api/transaction_portfolios_api.py +1454 -925
- lusid/api/translation_api.py +21 -20
- lusid/api/workspace_api.py +3482 -0
- lusid/api_client.py +31 -20
- lusid/api_response.py +1 -1
- lusid/configuration.py +102 -8
- lusid/extensions/__init__.py +12 -7
- lusid/extensions/api_client.py +28 -18
- lusid/extensions/api_client_factory.py +168 -45
- lusid/extensions/api_configuration.py +172 -14
- lusid/extensions/configuration_loaders.py +117 -20
- lusid/extensions/configuration_options.py +67 -0
- lusid/extensions/file_access_token.py +42 -0
- lusid/extensions/proxy_config.py +8 -5
- lusid/extensions/rest.py +78 -26
- lusid/extensions/retry.py +109 -37
- lusid/extensions/socket_keep_alive.py +14 -15
- lusid/extensions/tcp_keep_alive_connector.py +93 -46
- lusid/models/__init__.py +1537 -14
- lusid/models/a2_b_breakdown.py +9 -1
- lusid/models/a2_b_category.py +9 -1
- lusid/models/a2_b_data_record.py +9 -1
- lusid/models/a2_b_movement_record.py +9 -1
- lusid/models/abor.py +18 -3
- lusid/models/abor_configuration.py +17 -9
- lusid/models/abor_configuration_properties.py +9 -1
- lusid/models/abor_configuration_request.py +18 -10
- lusid/models/abor_properties.py +9 -1
- lusid/models/abor_request.py +10 -2
- lusid/models/accept_estimate_valuation_point_response.py +108 -0
- lusid/models/access_controlled_action.py +9 -1
- lusid/models/access_controlled_resource.py +9 -1
- lusid/models/access_metadata_operation.py +12 -4
- lusid/models/access_metadata_value.py +10 -2
- lusid/models/account.py +16 -3
- lusid/models/account_properties.py +9 -1
- lusid/models/accounted_transaction.py +96 -0
- lusid/models/accounting_method.py +10 -0
- lusid/models/accounts_upsert_response.py +9 -1
- lusid/models/accumulation_event.py +112 -0
- lusid/models/action_id.py +10 -2
- lusid/models/add_business_days_to_date_request.py +9 -1
- lusid/models/add_business_days_to_date_response.py +9 -1
- lusid/models/additional_payment.py +12 -4
- lusid/models/address_definition.py +9 -1
- lusid/models/address_key_compliance_parameter.py +13 -12
- lusid/models/address_key_definition.py +9 -1
- lusid/models/address_key_filter.py +9 -1
- lusid/models/address_key_list.py +13 -5
- lusid/models/address_key_list_compliance_parameter.py +12 -4
- lusid/models/address_key_option_definition.py +12 -2
- lusid/models/adjust_global_commitment_event.py +101 -0
- lusid/models/adjust_holding.py +9 -1
- lusid/models/adjust_holding_for_date_request.py +9 -1
- lusid/models/adjust_holding_request.py +9 -1
- lusid/models/aggregate_spec.py +12 -4
- lusid/models/aggregated_return.py +9 -1
- lusid/models/aggregated_returns_dispersion_request.py +9 -1
- lusid/models/aggregated_returns_request.py +9 -1
- lusid/models/aggregated_returns_response.py +9 -1
- lusid/models/aggregated_transactions_request.py +9 -1
- lusid/models/aggregation_context.py +9 -1
- lusid/models/aggregation_measure_failure_detail.py +9 -1
- lusid/models/aggregation_op.py +1 -0
- lusid/models/aggregation_options.py +9 -1
- lusid/models/aggregation_query.py +9 -1
- lusid/models/alias.py +79 -0
- lusid/models/allocation.py +9 -1
- lusid/models/allocation_request.py +9 -1
- lusid/models/allocation_service_run_response.py +9 -1
- lusid/models/allocation_set_request.py +9 -1
- lusid/models/amortisation_event.py +13 -7
- lusid/models/amortisation_rule.py +112 -0
- lusid/models/amortisation_rule_set.py +141 -0
- lusid/models/amount.py +77 -0
- lusid/models/annul_quotes_response.py +9 -1
- lusid/models/annul_single_structured_data_response.py +9 -1
- lusid/models/annul_structured_data_response.py +9 -1
- lusid/models/applicable_instrument_event.py +138 -0
- lusid/models/{underlying_leg.py → asset_leg.py} +25 -17
- lusid/models/barrier.py +9 -1
- lusid/models/basket.py +12 -4
- lusid/models/basket_identifier.py +9 -1
- lusid/models/batch_adjust_holdings_response.py +9 -1
- lusid/models/batch_update_user_review_for_comparison_result_request.py +89 -0
- lusid/models/batch_update_user_review_for_comparison_result_response.py +154 -0
- lusid/models/batch_upsert_dates_for_calendar_response.py +154 -0
- lusid/models/batch_upsert_instrument_properties_response.py +9 -1
- lusid/models/batch_upsert_portfolio_access_metadata_request.py +100 -0
- lusid/models/batch_upsert_portfolio_access_metadata_response.py +130 -0
- lusid/models/batch_upsert_portfolio_access_metadata_response_item.py +100 -0
- lusid/models/batch_upsert_portfolio_transactions_response.py +9 -1
- lusid/models/batch_upsert_property_definition_properties_response.py +9 -1
- lusid/models/block.py +9 -1
- lusid/models/block_and_order_id_request.py +86 -0
- lusid/models/block_and_orders.py +91 -0
- lusid/models/block_and_orders_create_request.py +85 -0
- lusid/models/block_and_orders_request.py +142 -0
- lusid/models/block_request.py +9 -1
- lusid/models/block_set_request.py +9 -1
- lusid/models/blocked_order_request.py +138 -0
- lusid/models/bond.py +29 -8
- lusid/models/bond_conversion_entry.py +83 -0
- lusid/models/bond_conversion_schedule.py +138 -0
- lusid/models/bond_coupon_event.py +110 -0
- lusid/models/bond_default_event.py +16 -18
- lusid/models/bond_principal_event.py +110 -0
- lusid/models/bonus_issue_event.py +174 -0
- lusid/models/book_transactions_request.py +105 -0
- lusid/models/book_transactions_response.py +9 -1
- lusid/models/bool_compliance_parameter.py +12 -4
- lusid/models/bool_list_compliance_parameter.py +12 -4
- lusid/models/branch_step.py +109 -0
- lusid/models/branch_step_request.py +106 -0
- lusid/models/break_code_source.py +81 -0
- lusid/models/bucketed_cash_flow_request.py +9 -1
- lusid/models/bucketed_cash_flow_response.py +9 -1
- lusid/models/bucketing_schedule.py +9 -1
- lusid/models/calculation_info.py +9 -1
- lusid/models/calendar.py +26 -3
- lusid/models/calendar_date.py +9 -1
- lusid/models/calendar_dependency.py +9 -1
- lusid/models/call_on_intermediate_securities_event.py +147 -0
- lusid/models/cancel_order_and_move_remaining_result.py +92 -0
- lusid/models/cancel_orders_and_move_remaining_request.py +91 -0
- lusid/models/cancel_orders_and_move_remaining_response.py +161 -0
- lusid/models/cancel_orders_response.py +161 -0
- lusid/models/cancel_placements_response.py +161 -0
- lusid/models/cancel_single_holding_adjustment_request.py +104 -0
- lusid/models/cancelled_order_result.py +81 -0
- lusid/models/cancelled_placement_result.py +91 -0
- lusid/models/cap_floor.py +42 -9
- lusid/models/capital_distribution_event.py +125 -0
- lusid/models/cash.py +101 -0
- lusid/models/cash_and_security_offer_election.py +98 -0
- lusid/models/cash_dependency.py +9 -1
- lusid/models/cash_dividend_event.py +40 -10
- lusid/models/cash_election.py +99 -0
- lusid/models/cash_flow_event.py +14 -8
- lusid/models/cash_flow_lineage.py +9 -1
- lusid/models/cash_flow_value.py +9 -1
- lusid/models/cash_flow_value_set.py +9 -1
- lusid/models/cash_ladder_record.py +9 -1
- lusid/models/cash_offer_election.py +85 -0
- lusid/models/cash_perpetual.py +12 -4
- lusid/models/cds_credit_event.py +113 -0
- lusid/models/cds_flow_conventions.py +10 -2
- lusid/models/cds_index.py +31 -8
- lusid/models/cds_protection_detail_specification.py +9 -1
- lusid/models/cdx_credit_event.py +122 -0
- lusid/models/change.py +9 -1
- lusid/models/change_history.py +9 -1
- lusid/models/change_interval.py +131 -0
- lusid/models/change_interval_with_order_management_detail.py +145 -0
- lusid/models/change_item.py +9 -1
- lusid/models/chart_of_accounts.py +9 -1
- lusid/models/chart_of_accounts_properties.py +9 -1
- lusid/models/chart_of_accounts_request.py +9 -1
- lusid/models/check_step.py +118 -0
- lusid/models/check_step_request.py +106 -0
- lusid/models/cleardown_module_details.py +103 -0
- lusid/models/cleardown_module_request.py +125 -0
- lusid/models/cleardown_module_response.py +147 -0
- lusid/models/cleardown_module_rule.py +102 -0
- lusid/models/cleardown_module_rules_updated_response.py +118 -0
- lusid/models/client.py +9 -1
- lusid/models/close_event.py +12 -4
- lusid/models/close_period_diary_entry_request.py +157 -0
- lusid/models/closed_period.py +136 -0
- lusid/models/comparison_attribute_value_pair.py +84 -0
- lusid/models/complete_portfolio.py +20 -5
- lusid/models/complete_relation.py +9 -1
- lusid/models/complete_relationship.py +9 -1
- lusid/models/complex_bond.py +30 -9
- lusid/models/complex_market_data.py +15 -6
- lusid/models/complex_market_data_id.py +9 -1
- lusid/models/compliance_breached_order_info.py +9 -1
- lusid/models/compliance_parameter.py +19 -6
- lusid/models/compliance_parameter_type.py +5 -0
- lusid/models/compliance_rule.py +9 -1
- lusid/models/compliance_rule_breakdown.py +25 -9
- lusid/models/compliance_rule_breakdown_request.py +21 -5
- lusid/models/compliance_rule_response.py +9 -1
- lusid/models/compliance_rule_result.py +9 -1
- lusid/models/compliance_rule_result_detail.py +9 -1
- lusid/models/compliance_rule_result_portfolio_detail.py +9 -1
- lusid/models/compliance_rule_result_v2.py +93 -0
- lusid/models/compliance_rule_template.py +161 -0
- lusid/models/compliance_rule_upsert_request.py +9 -1
- lusid/models/compliance_rule_upsert_response.py +9 -1
- lusid/models/compliance_run_configuration.py +81 -0
- lusid/models/compliance_run_info.py +9 -1
- lusid/models/compliance_run_info_v2.py +9 -1
- lusid/models/compliance_step.py +108 -0
- lusid/models/compliance_step_request.py +107 -0
- lusid/models/compliance_step_type.py +43 -0
- lusid/models/compliance_step_type_request.py +42 -0
- lusid/models/compliance_summary_rule_result.py +20 -15
- lusid/models/compliance_summary_rule_result_request.py +20 -15
- lusid/models/compliance_template.py +9 -1
- lusid/models/compliance_template_parameter.py +9 -1
- lusid/models/compliance_template_variation.py +29 -4
- lusid/models/compliance_template_variation_dto.py +120 -0
- lusid/models/compliance_template_variation_request.py +120 -0
- lusid/models/component_filter.py +93 -0
- lusid/models/component_transaction.py +107 -0
- lusid/models/composite_breakdown.py +9 -1
- lusid/models/composite_breakdown_request.py +9 -1
- lusid/models/composite_breakdown_response.py +9 -1
- lusid/models/composite_dispersion.py +39 -6
- lusid/models/composite_dispersion_response.py +9 -1
- lusid/models/compounding.py +13 -5
- lusid/models/configuration_recipe.py +18 -19
- lusid/models/constant_volatility_surface.py +110 -0
- lusid/models/constituents_adjustment_header.py +9 -1
- lusid/models/contract_details.py +109 -0
- lusid/models/contract_for_difference.py +16 -6
- lusid/models/contract_initialisation_event.py +107 -0
- lusid/models/contribution_to_non_passing_rule_detail.py +97 -0
- lusid/models/corporate_action.py +9 -1
- lusid/models/corporate_action_source.py +9 -1
- lusid/models/corporate_action_transition.py +9 -1
- lusid/models/corporate_action_transition_component.py +9 -1
- lusid/models/corporate_action_transition_component_request.py +9 -1
- lusid/models/corporate_action_transition_request.py +9 -1
- lusid/models/counterparty_agreement.py +9 -1
- lusid/models/counterparty_risk_information.py +9 -1
- lusid/models/counterparty_signatory.py +9 -1
- lusid/models/create_address_key_definition_request.py +9 -1
- lusid/models/create_amortisation_rule_set_request.py +110 -0
- lusid/models/create_calendar_request.py +9 -1
- lusid/models/create_closed_period_request.py +104 -0
- lusid/models/create_compliance_template_request.py +103 -0
- lusid/models/create_corporate_action_source_request.py +9 -1
- lusid/models/create_custom_entity_type_request.py +9 -1
- lusid/models/create_cut_label_definition_request.py +9 -1
- lusid/models/create_data_map_request.py +9 -1
- lusid/models/create_data_type_request.py +9 -1
- lusid/models/create_date_request.py +9 -1
- lusid/models/create_derived_property_definition_request.py +16 -6
- lusid/models/create_derived_transaction_portfolio_request.py +33 -7
- lusid/models/create_group_reconciliation_comparison_ruleset_request.py +105 -0
- lusid/models/create_group_reconciliation_definition_request.py +121 -0
- lusid/models/create_portfolio_details.py +9 -1
- lusid/models/create_portfolio_group_request.py +9 -1
- lusid/models/create_property_definition_request.py +21 -6
- lusid/models/create_recipe_request.py +9 -1
- lusid/models/create_reconciliation_request.py +9 -1
- lusid/models/create_reference_portfolio_request.py +9 -1
- lusid/models/create_relation_definition_request.py +9 -1
- lusid/models/create_relation_request.py +9 -1
- lusid/models/create_relationship_definition_request.py +11 -3
- lusid/models/create_relationship_request.py +9 -1
- lusid/models/create_sequence_request.py +9 -1
- lusid/models/create_simple_position_portfolio_request.py +196 -0
- lusid/models/create_staging_rule_set_request.py +94 -0
- lusid/models/create_tax_rule_set_request.py +9 -1
- lusid/models/create_timeline_request.py +110 -0
- lusid/models/create_trade_tickets_response.py +95 -0
- lusid/models/create_transaction_portfolio_request.py +33 -7
- lusid/models/create_unit_definition.py +9 -1
- lusid/models/credit_default_swap.py +32 -9
- lusid/models/credit_premium_cash_flow_event.py +110 -0
- lusid/models/credit_rating.py +9 -1
- lusid/models/credit_spread_curve_data.py +13 -5
- lusid/models/credit_support_annex.py +9 -1
- lusid/models/currency_and_amount.py +10 -7
- lusid/models/curve_options.py +9 -1
- lusid/models/custodian_account.py +10 -2
- lusid/models/custodian_account_properties.py +9 -1
- lusid/models/custodian_account_request.py +11 -3
- lusid/models/custodian_accounts_upsert_response.py +9 -1
- lusid/models/custom_data_model.py +97 -0
- lusid/models/custom_data_model_criteria.py +142 -0
- lusid/models/custom_data_model_identifier_type_specification.py +79 -0
- lusid/models/custom_data_model_identifier_type_specification_with_display_name.py +86 -0
- lusid/models/custom_data_model_property_specification.py +79 -0
- lusid/models/custom_data_model_property_specification_with_display_name.py +86 -0
- lusid/models/custom_entity_definition.py +32 -3
- lusid/models/custom_entity_definition_request.py +9 -1
- lusid/models/custom_entity_entity.py +154 -0
- lusid/models/custom_entity_field.py +9 -1
- lusid/models/custom_entity_field_definition.py +9 -1
- lusid/models/custom_entity_id.py +9 -1
- lusid/models/custom_entity_request.py +9 -1
- lusid/models/custom_entity_response.py +16 -2
- lusid/models/custom_entity_type.py +32 -3
- lusid/models/cut_label_definition.py +16 -2
- lusid/models/cut_local_time.py +14 -4
- lusid/models/data_definition.py +9 -1
- lusid/models/data_map_key.py +9 -1
- lusid/models/data_mapping.py +9 -1
- lusid/models/data_model_summary.py +120 -0
- lusid/models/data_scope.py +9 -1
- lusid/models/data_type.py +29 -9
- lusid/models/data_type_entity.py +139 -0
- lusid/models/data_type_summary.py +17 -3
- lusid/models/date_attributes.py +9 -1
- lusid/models/date_or_diary_entry.py +9 -1
- lusid/models/date_range.py +9 -1
- lusid/models/date_time_compliance_parameter.py +12 -4
- lusid/models/date_time_list_compliance_parameter.py +12 -4
- lusid/models/day_month.py +79 -0
- lusid/models/decimal_compliance_parameter.py +12 -4
- lusid/models/decimal_list.py +13 -5
- lusid/models/decimal_list_compliance_parameter.py +12 -4
- lusid/models/decorated_compliance_run_summary.py +9 -1
- lusid/models/delete_accounts_response.py +9 -1
- lusid/models/delete_custodian_accounts_response.py +9 -1
- lusid/models/delete_instrument_properties_response.py +16 -2
- lusid/models/delete_instrument_response.py +16 -2
- lusid/models/delete_instruments_response.py +31 -2
- lusid/models/delete_relation_request.py +9 -1
- lusid/models/delete_relationship_request.py +9 -1
- lusid/models/deleted_entity_response.py +30 -2
- lusid/models/dependency_source_filter.py +34 -4
- lusid/models/described_address_key.py +9 -1
- lusid/models/dialect.py +18 -4
- lusid/models/dialect_id.py +9 -1
- lusid/models/dialect_schema.py +9 -1
- lusid/models/diary_entry.py +10 -2
- lusid/models/diary_entry_request.py +20 -3
- lusid/models/discount_factor_curve_data.py +12 -4
- lusid/models/discounting_dependency.py +9 -1
- lusid/models/dividend_option_event.py +137 -0
- lusid/models/dividend_reinvestment_event.py +137 -0
- lusid/models/drawdown_event.py +107 -0
- lusid/models/early_redemption_election.py +81 -0
- lusid/models/early_redemption_event.py +132 -0
- lusid/models/economic_dependency.py +9 -1
- lusid/models/economic_dependency_with_complex_market_data.py +9 -1
- lusid/models/economic_dependency_with_quote.py +9 -1
- lusid/models/effective_range.py +79 -0
- lusid/models/election_specification.py +81 -0
- lusid/models/eligibility_calculation.py +81 -0
- lusid/models/empty_model_options.py +12 -4
- lusid/models/entity_identifier.py +9 -1
- lusid/models/equity.py +16 -6
- lusid/models/equity_all_of_identifiers.py +9 -1
- lusid/models/equity_curve_by_prices_data.py +12 -4
- lusid/models/equity_curve_dependency.py +9 -1
- lusid/models/equity_model_options.py +12 -4
- lusid/models/equity_option.py +54 -10
- lusid/models/equity_swap.py +31 -8
- lusid/models/equity_vol_dependency.py +9 -1
- lusid/models/equity_vol_surface_data.py +12 -4
- lusid/models/error_detail.py +9 -1
- lusid/models/event_date_range.py +9 -1
- lusid/models/ex_dividend_configuration.py +9 -1
- lusid/models/exchange_traded_option.py +21 -7
- lusid/models/exchange_traded_option_contract_details.py +29 -5
- lusid/models/execution.py +9 -1
- lusid/models/execution_request.py +9 -1
- lusid/models/execution_set_request.py +9 -1
- lusid/models/exercise_event.py +13 -7
- lusid/models/exotic_instrument.py +12 -4
- lusid/models/expanded_group.py +9 -1
- lusid/models/expiry_event.py +99 -0
- lusid/models/external_fee_component_filter.py +102 -0
- lusid/models/fee.py +223 -0
- lusid/models/fee_accrual.py +113 -0
- lusid/models/{reconciliation_run_break.py → fee_properties.py} +42 -35
- lusid/models/fee_request.py +192 -0
- lusid/models/fee_rule.py +9 -1
- lusid/models/fee_rule_upsert_request.py +9 -1
- lusid/models/fee_rule_upsert_response.py +9 -1
- lusid/models/fee_transaction_template_specification.py +87 -0
- lusid/models/fee_type.py +123 -0
- lusid/models/fee_type_request.py +113 -0
- lusid/models/field_definition.py +19 -4
- lusid/models/field_schema.py +9 -1
- lusid/models/field_value.py +25 -5
- lusid/models/file_response.py +9 -1
- lusid/models/filter_predicate_compliance_parameter.py +99 -0
- lusid/models/filter_step.py +109 -0
- lusid/models/filter_step_request.py +106 -0
- lusid/models/fixed_leg.py +12 -4
- lusid/models/fixed_leg_all_of_overrides.py +9 -1
- lusid/models/fixed_schedule.py +16 -13
- lusid/models/flexible_deposit.py +113 -0
- lusid/models/flexible_loan.py +113 -0
- lusid/models/float_schedule.py +34 -16
- lusid/models/floating_leg.py +12 -4
- lusid/models/flow_convention_name.py +10 -2
- lusid/models/flow_conventions.py +26 -5
- lusid/models/forward_rate_agreement.py +12 -4
- lusid/models/from_recipe.py +89 -0
- lusid/models/fund.py +195 -0
- lusid/models/fund_amount.py +77 -0
- lusid/models/fund_configuration.py +201 -0
- lusid/models/fund_configuration_properties.py +123 -0
- lusid/models/fund_configuration_request.py +171 -0
- lusid/models/fund_details.py +82 -0
- lusid/models/fund_id_list.py +107 -0
- lusid/models/fund_pnl_breakdown.py +118 -0
- lusid/models/fund_previous_nav.py +77 -0
- lusid/models/fund_properties.py +123 -0
- lusid/models/fund_request.py +178 -0
- lusid/models/fund_share_class.py +122 -0
- lusid/models/fund_valuation_point_data.py +154 -0
- lusid/models/funding_leg.py +12 -4
- lusid/models/funding_leg_options.py +12 -4
- lusid/models/future.py +28 -8
- lusid/models/future_expiry_event.py +108 -0
- lusid/models/future_mark_to_market_event.py +108 -0
- lusid/models/futures_contract_details.py +24 -4
- lusid/models/fx_conventions.py +81 -0
- lusid/models/fx_dependency.py +9 -1
- lusid/models/fx_forward.py +18 -8
- lusid/models/fx_forward_curve_by_quote_reference.py +13 -5
- lusid/models/fx_forward_curve_data.py +12 -4
- lusid/models/fx_forward_model_options.py +12 -4
- lusid/models/fx_forward_pips_curve_data.py +12 -4
- lusid/models/fx_forward_settlement_event.py +152 -0
- lusid/models/fx_forward_tenor_curve_data.py +13 -5
- lusid/models/fx_forward_tenor_pips_curve_data.py +13 -5
- lusid/models/fx_forwards_dependency.py +9 -1
- lusid/models/fx_linked_notional_schedule.py +116 -0
- lusid/models/fx_option.py +12 -4
- lusid/models/fx_rate_schedule.py +12 -4
- lusid/models/fx_swap.py +13 -5
- lusid/models/fx_tenor_convention.py +9 -1
- lusid/models/fx_vol_dependency.py +9 -1
- lusid/models/fx_vol_surface_data.py +12 -4
- lusid/models/general_ledger_profile_mapping.py +9 -1
- lusid/models/general_ledger_profile_request.py +9 -1
- lusid/models/general_ledger_profile_response.py +9 -1
- lusid/models/generated_event_diagnostics.py +83 -0
- lusid/models/get_cds_flow_conventions_response.py +9 -1
- lusid/models/get_complex_market_data_response.py +9 -1
- lusid/models/get_counterparty_agreement_response.py +9 -1
- lusid/models/get_credit_support_annex_response.py +9 -1
- lusid/models/get_data_map_response.py +9 -1
- lusid/models/get_flow_conventions_response.py +9 -1
- lusid/models/get_index_convention_response.py +9 -1
- lusid/models/get_instruments_response.py +9 -1
- lusid/models/get_quotes_response.py +9 -1
- lusid/models/{reconciliation_run.py → get_recipe_composer_response.py} +24 -16
- lusid/models/get_recipe_response.py +9 -1
- lusid/models/get_reference_portfolio_constituents_response.py +9 -1
- lusid/models/get_structured_result_data_response.py +9 -1
- lusid/models/get_virtual_document_response.py +9 -1
- lusid/models/group_by_selector_compliance_parameter.py +99 -0
- lusid/models/group_by_step.py +109 -0
- lusid/models/group_by_step_request.py +106 -0
- lusid/models/group_calculation_compliance_parameter.py +99 -0
- lusid/models/group_filter_predicate_compliance_parameter.py +99 -0
- lusid/models/group_filter_step.py +109 -0
- lusid/models/group_filter_step_request.py +106 -0
- lusid/models/group_of_market_data_key_rules.py +87 -0
- lusid/models/group_reconciliation_aggregate_attribute_rule.py +92 -0
- lusid/models/group_reconciliation_aggregate_attribute_values.py +94 -0
- lusid/models/group_reconciliation_aggregate_comparison_rule_operand.py +79 -0
- lusid/models/group_reconciliation_comparison_result.py +156 -0
- lusid/models/group_reconciliation_comparison_rule_string_value_map.py +81 -0
- lusid/models/group_reconciliation_comparison_rule_tolerance.py +79 -0
- lusid/models/group_reconciliation_comparison_ruleset.py +133 -0
- lusid/models/group_reconciliation_core_attribute_rule.py +103 -0
- lusid/models/group_reconciliation_core_attribute_values.py +94 -0
- lusid/models/group_reconciliation_core_comparison_rule_operand.py +79 -0
- lusid/models/group_reconciliation_date_pair.py +89 -0
- lusid/models/group_reconciliation_dates.py +86 -0
- lusid/models/group_reconciliation_definition.py +144 -0
- lusid/models/group_reconciliation_definition_comparison_ruleset_ids.py +91 -0
- lusid/models/group_reconciliation_definition_currencies.py +79 -0
- lusid/models/group_reconciliation_definition_portfolio_entity_ids.py +94 -0
- lusid/models/group_reconciliation_definition_recipe_ids.py +86 -0
- lusid/models/group_reconciliation_instance_id.py +79 -0
- lusid/models/group_reconciliation_result_statuses.py +97 -0
- lusid/models/group_reconciliation_result_types.py +104 -0
- lusid/models/group_reconciliation_review_statuses.py +104 -0
- lusid/models/group_reconciliation_run_details.py +84 -0
- lusid/models/group_reconciliation_run_request.py +83 -0
- lusid/models/group_reconciliation_run_response.py +85 -0
- lusid/models/group_reconciliation_summary.py +129 -0
- lusid/models/group_reconciliation_user_review.py +120 -0
- lusid/models/group_reconciliation_user_review_add.py +96 -0
- lusid/models/group_reconciliation_user_review_break_code.py +88 -0
- lusid/models/group_reconciliation_user_review_comment.py +88 -0
- lusid/models/group_reconciliation_user_review_match_key.py +88 -0
- lusid/models/group_reconciliation_user_review_remove.py +96 -0
- lusid/models/grouped_result_of_address_key.py +9 -1
- lusid/models/holding_adjustment.py +9 -1
- lusid/models/holding_adjustment_with_date.py +9 -1
- lusid/models/holding_context.py +9 -1
- lusid/models/holding_contributor.py +19 -4
- lusid/models/holding_ids_request.py +77 -0
- lusid/models/holding_pricing_info.py +118 -0
- lusid/models/holdings_adjustment.py +9 -1
- lusid/models/holdings_adjustment_header.py +9 -1
- lusid/models/i_unit_definition_dto.py +9 -1
- lusid/models/id_selector_definition.py +9 -1
- lusid/models/identifier_part_schema.py +9 -1
- lusid/models/index_convention.py +11 -3
- lusid/models/index_model_options.py +12 -4
- lusid/models/index_projection_dependency.py +9 -1
- lusid/models/industry_classifier.py +9 -1
- lusid/models/inflation_fixing_dependency.py +9 -1
- lusid/models/inflation_index_conventions.py +11 -3
- lusid/models/inflation_leg.py +12 -4
- lusid/models/inflation_linked_bond.py +28 -7
- lusid/models/inflation_swap.py +31 -8
- lusid/models/informational_error_event.py +12 -4
- lusid/models/informational_event.py +13 -7
- lusid/models/inline_valuation_request.py +9 -1
- lusid/models/inline_valuations_reconciliation_request.py +9 -1
- lusid/models/input_transition.py +9 -1
- lusid/models/instrument.py +22 -2
- lusid/models/instrument_capabilities.py +9 -1
- lusid/models/instrument_cash_flow.py +9 -1
- lusid/models/instrument_definition.py +17 -3
- lusid/models/instrument_definition_format.py +9 -1
- lusid/models/instrument_entity.py +154 -0
- lusid/models/instrument_event.py +54 -6
- lusid/models/instrument_event_configuration.py +88 -0
- lusid/models/instrument_event_holder.py +28 -3
- lusid/models/instrument_event_instruction.py +151 -0
- lusid/models/instrument_event_instruction_request.py +102 -0
- lusid/models/instrument_event_instructions_response.py +115 -0
- lusid/models/instrument_event_type.py +40 -0
- lusid/models/instrument_id_type_descriptor.py +9 -1
- lusid/models/instrument_id_value.py +9 -1
- lusid/models/instrument_leg.py +12 -4
- lusid/models/instrument_list.py +13 -5
- lusid/models/instrument_list_compliance_parameter.py +12 -4
- lusid/models/instrument_match.py +9 -1
- lusid/models/instrument_models.py +9 -1
- lusid/models/instrument_payment_diary.py +9 -1
- lusid/models/instrument_payment_diary_leg.py +13 -3
- lusid/models/instrument_payment_diary_row.py +9 -1
- lusid/models/instrument_properties.py +9 -1
- lusid/models/instrument_resolution_detail.py +127 -0
- lusid/models/instrument_search_property.py +9 -1
- lusid/models/instrument_type.py +7 -0
- lusid/models/interest_rate_swap.py +14 -6
- lusid/models/interest_rate_swaption.py +13 -5
- lusid/models/intermediate_compliance_step.py +118 -0
- lusid/models/intermediate_compliance_step_request.py +106 -0
- lusid/models/intermediate_securities_distribution_event.py +148 -0
- lusid/models/ir_vol_cube_data.py +12 -4
- lusid/models/ir_vol_dependency.py +9 -1
- lusid/models/is_business_day_response.py +9 -1
- lusid/models/journal_entry_line.py +60 -5
- lusid/models/journal_entry_lines_query_parameters.py +10 -2
- lusid/models/label_value_set.py +10 -2
- lusid/models/lapse_election.py +81 -0
- lusid/models/leg_definition.py +24 -3
- lusid/models/legal_entity.py +9 -1
- lusid/models/level_step.py +9 -1
- lusid/models/life_cycle_event_lineage.py +9 -1
- lusid/models/life_cycle_event_value.py +9 -1
- lusid/models/lineage_member.py +95 -0
- lusid/models/link.py +9 -1
- lusid/models/list_aggregation_reconciliation.py +9 -1
- lusid/models/list_aggregation_response.py +9 -1
- lusid/models/list_complex_market_data_with_meta_data_response.py +9 -1
- lusid/models/loan_facility.py +115 -0
- lusid/models/loan_interest_repayment_event.py +105 -0
- lusid/models/loan_period.py +9 -1
- lusid/models/lock_period_diary_entry_request.py +99 -0
- lusid/models/lusid_instrument.py +20 -6
- lusid/models/lusid_problem_details.py +9 -1
- lusid/models/lusid_trade_ticket.py +17 -2
- lusid/models/lusid_unique_id.py +9 -1
- lusid/models/lusid_validation_problem_details.py +9 -1
- lusid/models/mapped_string.py +9 -1
- lusid/models/mapping.py +9 -1
- lusid/models/mapping_rule.py +9 -1
- lusid/models/mark_to_market_conventions.py +82 -0
- lusid/models/market_context.py +26 -3
- lusid/models/market_context_suppliers.py +9 -1
- lusid/models/market_data_key_rule.py +17 -7
- lusid/models/market_data_options.py +9 -1
- lusid/models/market_data_overrides.py +9 -1
- lusid/models/market_data_specific_rule.py +17 -7
- lusid/models/market_data_type.py +1 -0
- lusid/models/market_options.py +9 -1
- lusid/models/market_quote.py +12 -4
- lusid/models/mastered_instrument.py +147 -0
- lusid/models/match_criterion.py +9 -1
- lusid/models/maturity_event.py +99 -0
- lusid/models/mbs_coupon_event.py +110 -0
- lusid/models/mbs_interest_deferral_event.py +110 -0
- lusid/models/mbs_interest_shortfall_event.py +110 -0
- lusid/models/mbs_principal_event.py +110 -0
- lusid/models/mbs_principal_write_off_event.py +110 -0
- lusid/models/merger_event.py +180 -0
- lusid/models/metric_value.py +9 -1
- lusid/models/model_options.py +14 -7
- lusid/models/model_options_type.py +0 -1
- lusid/models/model_property.py +9 -1
- lusid/models/model_schema.py +9 -1
- lusid/models/model_selection.py +12 -4
- lusid/models/move_orders_to_different_blocks_request.py +85 -0
- lusid/models/moved_order_to_different_block_response.py +93 -0
- lusid/models/movement_type.py +4 -0
- lusid/models/multi_currency_amounts.py +79 -0
- lusid/models/new_instrument.py +101 -0
- lusid/models/next_value_in_sequence_response.py +9 -1
- lusid/models/opaque_dependency.py +9 -1
- lusid/models/opaque_market_data.py +12 -4
- lusid/models/opaque_model_options.py +12 -4
- lusid/models/open_event.py +12 -4
- lusid/models/operation.py +10 -2
- lusid/models/operation_type.py +1 -0
- lusid/models/option_entry.py +19 -4
- lusid/models/option_exercise_cash_event.py +159 -0
- lusid/models/option_exercise_election.py +81 -0
- lusid/models/option_exercise_physical_event.py +164 -0
- lusid/models/optionality_schedule.py +12 -4
- lusid/models/order.py +9 -1
- lusid/models/order_by_spec.py +9 -1
- lusid/models/order_flow_configuration.py +10 -2
- lusid/models/order_graph_block.py +19 -3
- lusid/models/order_graph_block_allocation_detail.py +9 -1
- lusid/models/order_graph_block_allocation_synopsis.py +9 -1
- lusid/models/order_graph_block_execution_detail.py +9 -1
- lusid/models/order_graph_block_execution_synopsis.py +9 -1
- lusid/models/order_graph_block_order_detail.py +42 -5
- lusid/models/order_graph_block_order_synopsis.py +18 -3
- lusid/models/order_graph_block_placement_detail.py +9 -1
- lusid/models/order_graph_block_placement_synopsis.py +18 -3
- lusid/models/{upsert_reconciliation_run_request.py → order_graph_block_transaction_detail.py} +21 -15
- lusid/models/order_graph_block_transaction_synopsis.py +87 -0
- lusid/models/order_graph_placement.py +9 -1
- lusid/models/order_graph_placement_allocation_detail.py +9 -1
- lusid/models/order_graph_placement_allocation_synopsis.py +9 -1
- lusid/models/order_graph_placement_child_placement_detail.py +9 -1
- lusid/models/order_graph_placement_execution_detail.py +9 -1
- lusid/models/order_graph_placement_execution_synopsis.py +9 -1
- lusid/models/order_graph_placement_order_detail.py +9 -1
- lusid/models/order_graph_placement_order_synopsis.py +9 -1
- lusid/models/order_graph_placement_placement_synopsis.py +9 -1
- lusid/models/order_instruction.py +9 -1
- lusid/models/order_instruction_request.py +9 -1
- lusid/models/order_instruction_set_request.py +9 -1
- lusid/models/order_request.py +9 -1
- lusid/models/order_set_request.py +9 -1
- lusid/models/order_update_request.py +129 -0
- lusid/models/otc_confirmation.py +9 -1
- lusid/models/output_transaction.py +46 -3
- lusid/models/output_transition.py +9 -1
- lusid/models/package.py +9 -1
- lusid/models/package_request.py +9 -1
- lusid/models/package_set_request.py +9 -1
- lusid/models/paged_resource_list_of_abor.py +9 -1
- lusid/models/paged_resource_list_of_abor_configuration.py +9 -1
- lusid/models/paged_resource_list_of_account.py +9 -1
- lusid/models/paged_resource_list_of_address_key_definition.py +9 -1
- lusid/models/paged_resource_list_of_allocation.py +9 -1
- lusid/models/paged_resource_list_of_amortisation_rule_set.py +121 -0
- lusid/models/paged_resource_list_of_block.py +9 -1
- lusid/models/paged_resource_list_of_calendar.py +9 -1
- lusid/models/paged_resource_list_of_chart_of_accounts.py +9 -1
- lusid/models/paged_resource_list_of_cleardown_module_response.py +121 -0
- lusid/models/paged_resource_list_of_cleardown_module_rule.py +121 -0
- lusid/models/paged_resource_list_of_closed_period.py +121 -0
- lusid/models/paged_resource_list_of_compliance_rule_response.py +9 -1
- lusid/models/paged_resource_list_of_compliance_run_info_v2.py +9 -1
- lusid/models/paged_resource_list_of_compliance_template.py +9 -1
- lusid/models/paged_resource_list_of_corporate_action_source.py +9 -1
- lusid/models/paged_resource_list_of_custodian_account.py +9 -1
- lusid/models/paged_resource_list_of_custom_entity_definition.py +9 -1
- lusid/models/paged_resource_list_of_custom_entity_response.py +9 -1
- lusid/models/paged_resource_list_of_custom_entity_type.py +9 -1
- lusid/models/paged_resource_list_of_cut_label_definition.py +9 -1
- lusid/models/paged_resource_list_of_data_type_summary.py +9 -1
- lusid/models/paged_resource_list_of_dialect_id.py +9 -1
- lusid/models/paged_resource_list_of_diary_entry.py +9 -1
- lusid/models/paged_resource_list_of_execution.py +9 -1
- lusid/models/{paged_resource_list_of_reconciliation_run.py → paged_resource_list_of_fee.py} +20 -12
- lusid/models/paged_resource_list_of_fee_type.py +121 -0
- lusid/models/{paged_resource_list_of_reconciliation_run_break.py → paged_resource_list_of_fund.py} +20 -12
- lusid/models/paged_resource_list_of_fund_configuration.py +121 -0
- lusid/models/paged_resource_list_of_general_ledger_profile_response.py +9 -1
- lusid/models/paged_resource_list_of_group_reconciliation_comparison_result.py +121 -0
- lusid/models/paged_resource_list_of_group_reconciliation_comparison_ruleset.py +121 -0
- lusid/models/paged_resource_list_of_group_reconciliation_definition.py +121 -0
- lusid/models/paged_resource_list_of_instrument.py +9 -1
- lusid/models/paged_resource_list_of_instrument_event_holder.py +9 -1
- lusid/models/paged_resource_list_of_instrument_event_instruction.py +121 -0
- lusid/models/paged_resource_list_of_legal_entity.py +9 -1
- lusid/models/paged_resource_list_of_order.py +9 -1
- lusid/models/paged_resource_list_of_order_graph_block.py +9 -1
- lusid/models/paged_resource_list_of_order_graph_placement.py +9 -1
- lusid/models/paged_resource_list_of_order_instruction.py +9 -1
- lusid/models/paged_resource_list_of_package.py +9 -1
- lusid/models/paged_resource_list_of_participation.py +9 -1
- lusid/models/paged_resource_list_of_person.py +9 -1
- lusid/models/paged_resource_list_of_placement.py +9 -1
- lusid/models/paged_resource_list_of_portfolio_group.py +9 -1
- lusid/models/paged_resource_list_of_portfolio_group_search_result.py +9 -1
- lusid/models/paged_resource_list_of_portfolio_search_result.py +9 -1
- lusid/models/paged_resource_list_of_posting_module_response.py +9 -1
- lusid/models/paged_resource_list_of_posting_module_rule.py +9 -1
- lusid/models/paged_resource_list_of_property_definition.py +121 -0
- lusid/models/paged_resource_list_of_property_definition_search_result.py +9 -1
- lusid/models/paged_resource_list_of_reconciliation.py +9 -1
- lusid/models/paged_resource_list_of_reference_list_response.py +9 -1
- lusid/models/paged_resource_list_of_relationship_definition.py +9 -1
- lusid/models/paged_resource_list_of_sequence_definition.py +9 -1
- lusid/models/paged_resource_list_of_staged_modification.py +121 -0
- lusid/models/paged_resource_list_of_staged_modifications_requested_change_interval.py +121 -0
- lusid/models/paged_resource_list_of_staging_rule_set.py +121 -0
- lusid/models/paged_resource_list_of_transaction_template.py +121 -0
- lusid/models/paged_resource_list_of_transaction_template_specification.py +121 -0
- lusid/models/paged_resource_list_of_translation_script_id.py +9 -1
- lusid/models/paged_resource_list_of_valuation_point_overview.py +121 -0
- lusid/models/paged_resource_list_of_virtual_row.py +9 -1
- lusid/models/paged_resource_list_of_workspace.py +121 -0
- lusid/models/paged_resource_list_of_workspace_item.py +121 -0
- lusid/models/participation.py +9 -1
- lusid/models/participation_request.py +12 -10
- lusid/models/participation_set_request.py +9 -1
- lusid/models/percent_check_step.py +118 -0
- lusid/models/percent_check_step_request.py +106 -0
- lusid/models/performance_return.py +9 -1
- lusid/models/performance_returns_metric.py +10 -2
- lusid/models/period_diary_entries_reopened_response.py +112 -0
- lusid/models/perpetual_property.py +9 -1
- lusid/models/person.py +26 -3
- lusid/models/place_blocks_request.py +85 -0
- lusid/models/placement.py +9 -1
- lusid/models/placement_request.py +9 -1
- lusid/models/placement_set_request.py +9 -1
- lusid/models/placement_update_request.py +129 -0
- lusid/models/pnl_journal_entry_line.py +103 -0
- lusid/models/portfolio.py +41 -9
- lusid/models/portfolio_cash_flow.py +9 -1
- lusid/models/portfolio_cash_ladder.py +9 -1
- lusid/models/portfolio_details.py +38 -6
- lusid/models/portfolio_entity.py +154 -0
- lusid/models/portfolio_entity_id.py +11 -19
- lusid/models/portfolio_group.py +9 -1
- lusid/models/portfolio_group_id_compliance_parameter.py +12 -4
- lusid/models/portfolio_group_id_list.py +13 -5
- lusid/models/portfolio_group_id_list_compliance_parameter.py +12 -4
- lusid/models/portfolio_group_properties.py +9 -1
- lusid/models/portfolio_group_search_result.py +9 -1
- lusid/models/portfolio_holding.py +52 -4
- lusid/models/portfolio_id.py +88 -0
- lusid/models/portfolio_id_compliance_parameter.py +12 -4
- lusid/models/portfolio_id_list.py +13 -5
- lusid/models/portfolio_id_list_compliance_parameter.py +12 -4
- lusid/models/portfolio_properties.py +16 -2
- lusid/models/portfolio_reconciliation_request.py +9 -1
- lusid/models/portfolio_result_data_key_rule.py +9 -1
- lusid/models/portfolio_return_breakdown.py +9 -1
- lusid/models/portfolio_search_result.py +12 -4
- lusid/models/portfolio_trade_ticket.py +9 -1
- lusid/models/portfolio_type.py +1 -0
- lusid/models/portfolio_without_href.py +228 -0
- lusid/models/portfolios_reconciliation_request.py +9 -1
- lusid/models/posting_module_details.py +9 -1
- lusid/models/posting_module_request.py +9 -1
- lusid/models/posting_module_response.py +9 -1
- lusid/models/posting_module_rule.py +14 -6
- lusid/models/posting_module_rules_updated_response.py +9 -1
- lusid/models/pre_trade_configuration.py +77 -0
- lusid/models/premium.py +9 -1
- lusid/models/previous_fund_valuation_point_data.py +81 -0
- lusid/models/{action_result_of_portfolio.py → previous_nav.py} +24 -18
- lusid/models/previous_share_class_breakdown.py +89 -0
- lusid/models/pricing_context.py +17 -3
- lusid/models/pricing_model.py +3 -1
- lusid/models/pricing_options.py +17 -3
- lusid/models/processed_command.py +9 -1
- lusid/models/property_definition.py +34 -5
- lusid/models/property_definition_entity.py +154 -0
- lusid/models/property_definition_search_result.py +15 -5
- lusid/models/property_domain.py +41 -0
- lusid/models/property_filter.py +9 -1
- lusid/models/property_interval.py +9 -1
- lusid/models/property_key_compliance_parameter.py +12 -4
- lusid/models/property_key_list_compliance_parameter.py +12 -4
- lusid/models/property_list.py +107 -0
- lusid/models/property_list_compliance_parameter.py +103 -0
- lusid/models/property_schema.py +9 -1
- lusid/models/property_value.py +9 -1
- lusid/models/property_value_equals.py +9 -1
- lusid/models/property_value_in.py +9 -1
- lusid/models/protection_payout_cash_flow_event.py +110 -0
- lusid/models/query_applicable_instrument_events_request.py +97 -0
- lusid/models/query_bucketed_cash_flows_request.py +9 -1
- lusid/models/query_cash_flows_request.py +9 -1
- lusid/models/query_instrument_events_request.py +9 -1
- lusid/models/query_trade_tickets_request.py +9 -1
- lusid/models/queryable_key.py +132 -0
- lusid/models/quote.py +9 -1
- lusid/models/quote_access_metadata_rule.py +9 -1
- lusid/models/quote_access_metadata_rule_id.py +11 -3
- lusid/models/quote_dependency.py +9 -1
- lusid/models/quote_id.py +9 -1
- lusid/models/quote_series_id.py +15 -23
- lusid/models/quote_type.py +3 -0
- lusid/models/raw_vendor_event.py +14 -8
- lusid/models/re_open_period_diary_entry_request.py +92 -0
- lusid/models/realised_gain_loss.py +11 -3
- lusid/models/recipe_block.py +95 -0
- lusid/models/recipe_composer.py +108 -0
- lusid/models/recipe_value.py +95 -0
- lusid/models/recombine_step.py +109 -0
- lusid/models/recommended_sort_by.py +84 -0
- lusid/models/reconcile_date_time_rule.py +9 -1
- lusid/models/reconcile_numeric_rule.py +9 -1
- lusid/models/reconcile_string_rule.py +9 -1
- lusid/models/reconciled_transaction.py +9 -1
- lusid/models/reconciliation.py +9 -1
- lusid/models/reconciliation_break.py +9 -1
- lusid/models/reconciliation_configuration.py +9 -1
- lusid/models/reconciliation_id.py +9 -1
- lusid/models/reconciliation_left_right_address_key_pair.py +9 -1
- lusid/models/reconciliation_line.py +9 -1
- lusid/models/reconciliation_request.py +9 -1
- lusid/models/reconciliation_response.py +9 -1
- lusid/models/reconciliation_rule.py +9 -1
- lusid/models/reconciliation_side_configuration.py +9 -1
- lusid/models/reconciliation_transactions.py +9 -1
- lusid/models/reference_data.py +9 -1
- lusid/models/reference_instrument.py +12 -4
- lusid/models/reference_list.py +16 -6
- lusid/models/reference_list_request.py +9 -1
- lusid/models/reference_list_response.py +9 -1
- lusid/models/reference_list_type.py +2 -0
- lusid/models/reference_portfolio_constituent.py +9 -1
- lusid/models/reference_portfolio_constituent_request.py +9 -1
- lusid/models/related_entity.py +10 -2
- lusid/models/relation.py +9 -1
- lusid/models/relation_definition.py +9 -1
- lusid/models/relationship.py +9 -1
- lusid/models/relationship_definition.py +9 -1
- lusid/models/relative_date_offset.py +86 -0
- lusid/models/repo.py +12 -4
- lusid/models/requested_changes.py +84 -0
- lusid/models/reset_event.py +13 -7
- lusid/models/resource_id.py +9 -1
- lusid/models/resource_list_of_access_controlled_resource.py +9 -1
- lusid/models/resource_list_of_access_metadata_value_of.py +9 -1
- lusid/models/resource_list_of_address_key_definition.py +9 -1
- lusid/models/resource_list_of_aggregated_return.py +9 -1
- lusid/models/resource_list_of_aggregation_query.py +9 -1
- lusid/models/resource_list_of_allocation.py +9 -1
- lusid/models/resource_list_of_applicable_instrument_event.py +121 -0
- lusid/models/resource_list_of_block.py +9 -1
- lusid/models/resource_list_of_block_and_orders.py +121 -0
- lusid/models/resource_list_of_calendar_date.py +9 -1
- lusid/models/resource_list_of_change.py +9 -1
- lusid/models/resource_list_of_change_history.py +9 -1
- lusid/models/resource_list_of_change_interval.py +121 -0
- lusid/models/resource_list_of_change_interval_with_order_management_detail.py +121 -0
- lusid/models/resource_list_of_compliance_breached_order_info.py +9 -1
- lusid/models/resource_list_of_compliance_rule.py +9 -1
- lusid/models/resource_list_of_compliance_rule_result.py +9 -1
- lusid/models/resource_list_of_compliance_run_info.py +9 -1
- lusid/models/resource_list_of_constituents_adjustment_header.py +9 -1
- lusid/models/resource_list_of_corporate_action.py +9 -1
- lusid/models/resource_list_of_data_model_summary.py +121 -0
- lusid/models/resource_list_of_data_type.py +9 -1
- lusid/models/resource_list_of_execution.py +9 -1
- lusid/models/resource_list_of_fee_rule.py +9 -1
- lusid/models/resource_list_of_get_cds_flow_conventions_response.py +9 -1
- lusid/models/resource_list_of_get_counterparty_agreement_response.py +9 -1
- lusid/models/resource_list_of_get_credit_support_annex_response.py +9 -1
- lusid/models/resource_list_of_get_flow_conventions_response.py +9 -1
- lusid/models/resource_list_of_get_index_convention_response.py +9 -1
- lusid/models/resource_list_of_get_recipe_composer_response.py +121 -0
- lusid/models/resource_list_of_get_recipe_response.py +9 -1
- lusid/models/resource_list_of_holdings_adjustment_header.py +9 -1
- lusid/models/resource_list_of_i_unit_definition_dto.py +9 -1
- lusid/models/resource_list_of_instrument_cash_flow.py +9 -1
- lusid/models/resource_list_of_instrument_event_holder.py +9 -1
- lusid/models/resource_list_of_instrument_id_type_descriptor.py +9 -1
- lusid/models/resource_list_of_legal_entity.py +9 -1
- lusid/models/resource_list_of_list_complex_market_data_with_meta_data_response.py +9 -1
- lusid/models/resource_list_of_mapping.py +9 -1
- lusid/models/resource_list_of_moved_order_to_different_block_response.py +121 -0
- lusid/models/resource_list_of_order.py +9 -1
- lusid/models/resource_list_of_order_instruction.py +9 -1
- lusid/models/resource_list_of_output_transaction.py +121 -0
- lusid/models/resource_list_of_package.py +9 -1
- lusid/models/resource_list_of_participation.py +9 -1
- lusid/models/resource_list_of_performance_return.py +9 -1
- lusid/models/resource_list_of_person.py +9 -1
- lusid/models/resource_list_of_placement.py +9 -1
- lusid/models/resource_list_of_portfolio.py +9 -1
- lusid/models/resource_list_of_portfolio_cash_flow.py +9 -1
- lusid/models/resource_list_of_portfolio_cash_ladder.py +9 -1
- lusid/models/resource_list_of_portfolio_trade_ticket.py +9 -1
- lusid/models/resource_list_of_processed_command.py +9 -1
- lusid/models/resource_list_of_property.py +9 -1
- lusid/models/resource_list_of_property_definition.py +9 -1
- lusid/models/resource_list_of_property_interval.py +9 -1
- lusid/models/resource_list_of_queryable_key.py +121 -0
- lusid/models/resource_list_of_quote.py +9 -1
- lusid/models/resource_list_of_quote_access_metadata_rule.py +9 -1
- lusid/models/resource_list_of_reconciliation_break.py +9 -1
- lusid/models/resource_list_of_relation.py +9 -1
- lusid/models/resource_list_of_relationship.py +9 -1
- lusid/models/resource_list_of_scope_definition.py +9 -1
- lusid/models/resource_list_of_side_definition.py +9 -1
- lusid/models/resource_list_of_string.py +9 -1
- lusid/models/resource_list_of_tax_rule_set.py +9 -1
- lusid/models/resource_list_of_transaction.py +9 -1
- lusid/models/resource_list_of_transaction_type.py +9 -1
- lusid/models/resource_list_of_value_type.py +9 -1
- lusid/models/response_meta_data.py +9 -1
- lusid/models/result_data_key_rule.py +9 -1
- lusid/models/result_data_schema.py +9 -1
- lusid/models/result_key_rule.py +9 -1
- lusid/models/result_value.py +9 -1
- lusid/models/result_value0_d.py +9 -1
- lusid/models/result_value_bool.py +9 -1
- lusid/models/result_value_currency.py +9 -1
- lusid/models/result_value_date_time_offset.py +9 -1
- lusid/models/result_value_decimal.py +9 -1
- lusid/models/result_value_dictionary.py +9 -1
- lusid/models/result_value_int.py +9 -1
- lusid/models/result_value_string.py +9 -1
- lusid/models/return_zero_pv_options.py +77 -0
- lusid/models/reverse_stock_split_event.py +135 -0
- lusid/models/rounding_configuration.py +9 -1
- lusid/models/rounding_configuration_component.py +9 -1
- lusid/models/rounding_convention.py +9 -1
- lusid/models/rules_interval.py +91 -0
- lusid/models/schedule.py +16 -6
- lusid/models/schedule_type.py +2 -0
- lusid/models/scope_definition.py +9 -1
- lusid/models/scrip_dividend_event.py +135 -0
- lusid/models/script_map_reference.py +102 -0
- lusid/models/security_election.py +94 -0
- lusid/models/security_offer_election.py +87 -0
- lusid/models/sequence_definition.py +9 -1
- lusid/models/set_amortisation_rules_request.py +81 -0
- lusid/models/set_legal_entity_identifiers_request.py +9 -1
- lusid/models/set_legal_entity_properties_request.py +9 -1
- lusid/models/set_person_identifiers_request.py +9 -1
- lusid/models/set_person_properties_request.py +9 -1
- lusid/models/set_share_class_instruments_request.py +87 -0
- lusid/models/set_transaction_configuration_alias.py +9 -1
- lusid/models/set_transaction_configuration_source_request.py +9 -1
- lusid/models/settlement_cycle.py +87 -0
- lusid/models/settlement_schedule.py +86 -0
- lusid/models/share_class_amount.py +79 -0
- lusid/models/share_class_breakdown.py +162 -0
- lusid/models/share_class_data.py +87 -0
- lusid/models/share_class_dealing_breakdown.py +105 -0
- lusid/models/share_class_details.py +135 -0
- lusid/models/share_class_pnl_breakdown.py +118 -0
- lusid/models/side_configuration_data.py +9 -1
- lusid/models/side_configuration_data_request.py +9 -1
- lusid/models/side_definition.py +17 -9
- lusid/models/side_definition_request.py +18 -3
- lusid/models/sides_definition_request.py +9 -8
- lusid/models/simple_cash_flow_loan.py +12 -4
- lusid/models/simple_instrument.py +12 -4
- lusid/models/simple_rounding_convention.py +84 -0
- lusid/models/specific_holding_pricing_info.py +83 -0
- lusid/models/spin_off_event.py +148 -0
- lusid/models/staged_modification.py +197 -0
- lusid/models/staged_modification_decision.py +105 -0
- lusid/models/staged_modification_decision_request.py +79 -0
- lusid/models/staged_modification_effective_range.py +79 -0
- lusid/models/staged_modification_staging_rule.py +93 -0
- lusid/models/staged_modifications_entity_hrefs.py +111 -0
- lusid/models/staged_modifications_info.py +86 -0
- lusid/models/staged_modifications_requested_change_interval.py +121 -0
- lusid/models/staging_rule.py +98 -0
- lusid/models/staging_rule_approval_criteria.py +96 -0
- lusid/models/staging_rule_match_criteria.py +103 -0
- lusid/models/staging_rule_set.py +126 -0
- lusid/models/step_schedule.py +12 -4
- lusid/models/stock_dividend_event.py +135 -0
- lusid/models/stock_split_event.py +51 -11
- lusid/models/strategy.py +89 -0
- lusid/models/stream.py +9 -1
- lusid/models/string_compliance_parameter.py +12 -4
- lusid/models/string_list.py +13 -5
- lusid/models/string_list_compliance_parameter.py +12 -4
- lusid/models/structured_result_data.py +9 -1
- lusid/models/structured_result_data_id.py +9 -1
- lusid/models/sub_holding_key_value_equals.py +9 -1
- lusid/models/swap_cash_flow_event.py +105 -0
- lusid/models/swap_principal_event.py +105 -0
- lusid/models/target_tax_lot.py +32 -3
- lusid/models/target_tax_lot_request.py +32 -3
- lusid/models/tax_rule.py +9 -1
- lusid/models/tax_rule_set.py +9 -1
- lusid/models/template_field.py +87 -0
- lusid/models/tender_event.py +180 -0
- lusid/models/term_deposit.py +12 -4
- lusid/models/term_deposit_interest_event.py +108 -0
- lusid/models/term_deposit_principal_event.py +108 -0
- lusid/models/timeline.py +143 -0
- lusid/models/total_return_swap.py +41 -18
- lusid/models/touch.py +9 -1
- lusid/models/trade_ticket.py +9 -1
- lusid/models/trading_conventions.py +81 -0
- lusid/models/transaction.py +40 -4
- lusid/models/transaction_configuration_data.py +9 -1
- lusid/models/transaction_configuration_data_request.py +9 -1
- lusid/models/transaction_configuration_movement_data.py +13 -5
- lusid/models/transaction_configuration_movement_data_request.py +13 -5
- lusid/models/transaction_configuration_type_alias.py +9 -1
- lusid/models/transaction_currency_and_amount.py +89 -0
- lusid/models/transaction_date_windows.py +93 -0
- lusid/models/transaction_diagnostics.py +79 -0
- lusid/models/transaction_field_map.py +110 -0
- lusid/models/transaction_price.py +12 -4
- lusid/models/transaction_price_and_type.py +89 -0
- lusid/models/transaction_price_type.py +3 -0
- lusid/models/transaction_property_map.py +89 -0
- lusid/models/transaction_property_mapping.py +9 -1
- lusid/models/transaction_property_mapping_request.py +9 -1
- lusid/models/transaction_query_parameters.py +9 -1
- lusid/models/transaction_reconciliation_request.py +9 -1
- lusid/models/transaction_reconciliation_request_v2.py +9 -1
- lusid/models/transaction_request.py +34 -4
- lusid/models/transaction_set_configuration_data.py +9 -1
- lusid/models/transaction_set_configuration_data_request.py +9 -1
- lusid/models/transaction_template.py +108 -0
- lusid/models/transaction_template_request.py +87 -0
- lusid/models/transaction_template_specification.py +107 -0
- lusid/models/transaction_type.py +9 -1
- lusid/models/transaction_type_alias.py +9 -8
- lusid/models/transaction_type_calculation.py +26 -13
- lusid/models/transaction_type_details.py +81 -0
- lusid/models/transaction_type_movement.py +30 -5
- lusid/models/transaction_type_property_mapping.py +35 -3
- lusid/models/transaction_type_request.py +9 -1
- lusid/models/transactions_reconciliations_response.py +9 -1
- lusid/models/transition_event.py +12 -4
- lusid/models/translate_entities_inlined_request.py +9 -1
- lusid/models/translate_entities_request.py +9 -1
- lusid/models/translate_entities_response.py +9 -1
- lusid/models/translate_instrument_definitions_request.py +9 -1
- lusid/models/translate_instrument_definitions_response.py +9 -1
- lusid/models/translate_trade_ticket_request.py +9 -1
- lusid/models/translate_trade_tickets_response.py +9 -1
- lusid/models/translation_context.py +83 -0
- lusid/models/translation_input.py +9 -1
- lusid/models/translation_result.py +9 -1
- lusid/models/translation_script.py +18 -4
- lusid/models/translation_script_id.py +9 -1
- lusid/models/trial_balance.py +58 -15
- lusid/models/trial_balance_query_parameters.py +23 -6
- lusid/models/trigger_event.py +12 -4
- lusid/models/typed_resource_id.py +9 -1
- lusid/models/unitisation_data.py +81 -0
- lusid/models/units_ratio.py +79 -0
- lusid/models/update_amortisation_rule_set_details_request.py +101 -0
- lusid/models/update_calendar_request.py +9 -1
- lusid/models/update_compliance_template_request.py +103 -0
- lusid/models/update_custom_entity_definition_request.py +9 -1
- lusid/models/update_custom_entity_type_request.py +9 -1
- lusid/models/update_cut_label_definition_request.py +9 -1
- lusid/models/update_data_type_request.py +9 -1
- lusid/models/update_derived_property_definition_request.py +13 -3
- lusid/models/update_fee_type_request.py +104 -0
- lusid/models/update_group_reconciliation_comparison_ruleset_request.py +99 -0
- lusid/models/update_group_reconciliation_definition_request.py +115 -0
- lusid/models/update_instrument_identifier_request.py +9 -1
- lusid/models/update_orders_response.py +161 -0
- lusid/models/update_placements_response.py +161 -0
- lusid/models/update_portfolio_group_request.py +9 -1
- lusid/models/update_portfolio_request.py +9 -1
- lusid/models/update_property_definition_request.py +9 -1
- lusid/models/update_reconciliation_request.py +9 -1
- lusid/models/update_reference_data_request.py +95 -0
- lusid/models/update_relationship_definition_request.py +9 -1
- lusid/models/update_staging_rule_set_request.py +94 -0
- lusid/models/update_tax_rule_set_request.py +9 -1
- lusid/models/update_timeline_request.py +104 -0
- lusid/models/update_unit_request.py +9 -1
- lusid/models/upsert_cds_flow_conventions_request.py +9 -1
- lusid/models/upsert_complex_market_data_request.py +9 -1
- lusid/models/upsert_compliance_rule_request.py +9 -1
- lusid/models/upsert_compliance_run_summary_request.py +9 -1
- lusid/models/{compliance_run_summary.py → upsert_compliance_run_summary_result.py} +17 -9
- lusid/models/upsert_corporate_action_request.py +9 -1
- lusid/models/upsert_corporate_actions_response.py +9 -1
- lusid/models/upsert_counterparty_agreement_request.py +9 -1
- lusid/models/upsert_credit_support_annex_request.py +9 -1
- lusid/models/upsert_custom_data_model_request.py +176 -0
- lusid/models/upsert_custom_entities_response.py +29 -2
- lusid/models/upsert_custom_entity_access_metadata_request.py +9 -1
- lusid/models/upsert_dialect_request.py +87 -0
- lusid/models/upsert_flow_conventions_request.py +9 -1
- lusid/models/upsert_index_convention_request.py +9 -1
- lusid/models/upsert_instrument_event_request.py +20 -3
- lusid/models/upsert_instrument_events_response.py +9 -1
- lusid/models/upsert_instrument_properties_response.py +9 -1
- lusid/models/upsert_instrument_property_request.py +9 -1
- lusid/models/upsert_instruments_response.py +29 -2
- lusid/models/upsert_legal_entities_response.py +9 -1
- lusid/models/upsert_legal_entity_access_metadata_request.py +9 -1
- lusid/models/upsert_legal_entity_request.py +9 -1
- lusid/models/upsert_person_access_metadata_request.py +9 -1
- lusid/models/upsert_person_request.py +9 -1
- lusid/models/upsert_persons_response.py +122 -0
- lusid/models/upsert_portfolio_access_metadata_request.py +9 -1
- lusid/models/upsert_portfolio_group_access_metadata_request.py +9 -1
- lusid/models/upsert_portfolio_transactions_response.py +9 -1
- lusid/models/upsert_quote_access_metadata_rule_request.py +9 -1
- lusid/models/upsert_quote_request.py +10 -2
- lusid/models/upsert_quotes_response.py +9 -1
- lusid/models/upsert_recipe_composer_request.py +81 -0
- lusid/models/upsert_recipe_request.py +12 -10
- lusid/models/upsert_reference_portfolio_constituent_properties_request.py +92 -0
- lusid/models/upsert_reference_portfolio_constituent_properties_response.py +123 -0
- lusid/models/upsert_reference_portfolio_constituents_request.py +9 -1
- lusid/models/upsert_reference_portfolio_constituents_response.py +9 -1
- lusid/models/upsert_result_values_data_request.py +9 -1
- lusid/models/upsert_returns_response.py +9 -1
- lusid/models/upsert_single_structured_data_response.py +9 -1
- lusid/models/upsert_structured_data_response.py +9 -1
- lusid/models/upsert_structured_result_data_request.py +9 -1
- lusid/models/upsert_transaction_properties_response.py +9 -1
- lusid/models/upsert_translation_script_request.py +83 -0
- lusid/models/upsert_valuation_point_request.py +130 -0
- lusid/models/user.py +9 -1
- lusid/models/valuation_point_data_query_parameters.py +81 -0
- lusid/models/valuation_point_data_request.py +84 -0
- lusid/models/valuation_point_data_response.py +164 -0
- lusid/models/valuation_point_overview.py +133 -0
- lusid/models/valuation_point_resource_list_of_accounted_transaction.py +133 -0
- lusid/models/valuation_point_resource_list_of_journal_entry_line.py +133 -0
- lusid/models/valuation_point_resource_list_of_pnl_journal_entry_line.py +133 -0
- lusid/models/valuation_point_resource_list_of_trial_balance.py +133 -0
- lusid/models/valuation_request.py +9 -1
- lusid/models/valuation_schedule.py +19 -4
- lusid/models/valuations_reconciliation_request.py +9 -1
- lusid/models/vendor_dependency.py +9 -1
- lusid/models/vendor_model_rule.py +9 -1
- lusid/models/version.py +25 -10
- lusid/models/version_summary_dto.py +9 -1
- lusid/models/versioned_resource_list_of_a2_b_data_record.py +9 -1
- lusid/models/versioned_resource_list_of_a2_b_movement_record.py +9 -1
- lusid/models/versioned_resource_list_of_holding_contributor.py +9 -1
- lusid/models/versioned_resource_list_of_journal_entry_line.py +9 -1
- lusid/models/versioned_resource_list_of_output_transaction.py +9 -1
- lusid/models/versioned_resource_list_of_portfolio_holding.py +9 -1
- lusid/models/versioned_resource_list_of_transaction.py +9 -1
- lusid/models/versioned_resource_list_of_trial_balance.py +9 -1
- lusid/models/versioned_resource_list_with_warnings_of_portfolio_holding.py +9 -1
- lusid/models/virtual_document.py +9 -1
- lusid/models/virtual_document_row.py +9 -1
- lusid/models/virtual_row.py +9 -1
- lusid/models/warning.py +9 -1
- lusid/models/weekend_mask.py +9 -1
- lusid/models/weighted_instrument.py +29 -3
- lusid/models/weighted_instrument_in_line_lookup_identifiers.py +97 -0
- lusid/models/weighted_instruments.py +9 -1
- lusid/models/workspace.py +100 -0
- lusid/models/workspace_creation_request.py +86 -0
- lusid/models/workspace_item.py +120 -0
- lusid/models/workspace_item_creation_request.py +113 -0
- lusid/models/workspace_item_update_request.py +95 -0
- lusid/models/workspace_update_request.py +77 -0
- lusid/models/yield_curve_data.py +12 -4
- lusid/rest.py +75 -22
- {lusid_sdk-2.0.50b0.dist-info → lusid_sdk-2.1.683.dist-info}/METADATA +614 -245
- lusid_sdk-2.1.683.dist-info/RECORD +1273 -0
- {lusid_sdk-2.0.50b0.dist-info → lusid_sdk-2.1.683.dist-info}/WHEEL +1 -1
- lusid/extensions/api_client_builder.py +0 -138
- lusid/models/configuration_recipe_snippet.py +0 -139
- lusid/models/je_lines_query_parameters.py +0 -105
- lusid/models/look_up_pricing_model_options.py +0 -93
- lusid/models/reconciliation_break_id.py +0 -88
- lusid/models/reconciliation_run_id.py +0 -85
- lusid/models/upsert_reconciliation_break_request.py +0 -98
- lusid_sdk-2.0.50b0.dist-info/RECORD +0 -917
@@ -16,13 +16,13 @@ import re # noqa: F401
|
|
16
16
|
import io
|
17
17
|
import warnings
|
18
18
|
|
19
|
-
from pydantic import validate_arguments, ValidationError
|
19
|
+
from pydantic.v1 import validate_arguments, ValidationError
|
20
20
|
from typing import overload, Optional, Union, Awaitable
|
21
21
|
|
22
22
|
from typing_extensions import Annotated
|
23
23
|
from datetime import datetime
|
24
24
|
|
25
|
-
from pydantic import Field, StrictBool, StrictInt, StrictStr, conint, conlist, constr, validator
|
25
|
+
from pydantic.v1 import Field, StrictBool, StrictInt, StrictStr, conint, conlist, constr, validator
|
26
26
|
|
27
27
|
from typing import Dict, List, Optional
|
28
28
|
|
@@ -55,6 +55,7 @@ from lusid.exceptions import ( # noqa: F401
|
|
55
55
|
ApiTypeError,
|
56
56
|
ApiValueError
|
57
57
|
)
|
58
|
+
from lusid.extensions.configuration_options import ConfigurationOptions
|
58
59
|
|
59
60
|
|
60
61
|
class PortfolioGroupsApi:
|
@@ -98,10 +99,9 @@ class PortfolioGroupsApi:
|
|
98
99
|
:type resource_id: ResourceId
|
99
100
|
:param async_req: Whether to execute the request asynchronously.
|
100
101
|
:type async_req: bool, optional
|
101
|
-
:param _request_timeout:
|
102
|
-
|
103
|
-
|
104
|
-
(connection, read) timeouts.
|
102
|
+
:param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
|
103
|
+
:param opts: Configuration options for this request
|
104
|
+
:type opts: ConfigurationOptions, optional
|
105
105
|
:return: Returns the result object.
|
106
106
|
If the method is called asynchronously,
|
107
107
|
returns the request thread.
|
@@ -144,10 +144,9 @@ class PortfolioGroupsApi:
|
|
144
144
|
:param _return_http_data_only: response data instead of ApiResponse
|
145
145
|
object with status code, headers, etc
|
146
146
|
:type _return_http_data_only: bool, optional
|
147
|
-
:param _request_timeout:
|
148
|
-
|
149
|
-
|
150
|
-
(connection, read) timeouts.
|
147
|
+
:param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
|
148
|
+
:param opts: Configuration options for this request
|
149
|
+
:type opts: ConfigurationOptions, optional
|
151
150
|
:param _request_auth: set to override the auth_settings for an a single
|
152
151
|
request; this effectively ignores the authentication
|
153
152
|
in the spec for a single request.
|
@@ -175,7 +174,8 @@ class PortfolioGroupsApi:
|
|
175
174
|
'_request_timeout',
|
176
175
|
'_request_auth',
|
177
176
|
'_content_type',
|
178
|
-
'_headers'
|
177
|
+
'_headers',
|
178
|
+
'opts'
|
179
179
|
]
|
180
180
|
)
|
181
181
|
|
@@ -248,6 +248,7 @@ class PortfolioGroupsApi:
|
|
248
248
|
_return_http_data_only=_params.get('_return_http_data_only'), # noqa: E501
|
249
249
|
_preload_content=_params.get('_preload_content', True),
|
250
250
|
_request_timeout=_params.get('_request_timeout'),
|
251
|
+
opts=_params.get('opts'),
|
251
252
|
collection_formats=_collection_formats,
|
252
253
|
_request_auth=_params.get('_request_auth'))
|
253
254
|
|
@@ -280,10 +281,9 @@ class PortfolioGroupsApi:
|
|
280
281
|
:type resource_id: ResourceId
|
281
282
|
:param async_req: Whether to execute the request asynchronously.
|
282
283
|
:type async_req: bool, optional
|
283
|
-
:param _request_timeout:
|
284
|
-
|
285
|
-
|
286
|
-
(connection, read) timeouts.
|
284
|
+
:param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
|
285
|
+
:param opts: Configuration options for this request
|
286
|
+
:type opts: ConfigurationOptions, optional
|
287
287
|
:return: Returns the result object.
|
288
288
|
If the method is called asynchronously,
|
289
289
|
returns the request thread.
|
@@ -326,10 +326,9 @@ class PortfolioGroupsApi:
|
|
326
326
|
:param _return_http_data_only: response data instead of ApiResponse
|
327
327
|
object with status code, headers, etc
|
328
328
|
:type _return_http_data_only: bool, optional
|
329
|
-
:param _request_timeout:
|
330
|
-
|
331
|
-
|
332
|
-
(connection, read) timeouts.
|
329
|
+
:param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
|
330
|
+
:param opts: Configuration options for this request
|
331
|
+
:type opts: ConfigurationOptions, optional
|
333
332
|
:param _request_auth: set to override the auth_settings for an a single
|
334
333
|
request; this effectively ignores the authentication
|
335
334
|
in the spec for a single request.
|
@@ -357,7 +356,8 @@ class PortfolioGroupsApi:
|
|
357
356
|
'_request_timeout',
|
358
357
|
'_request_auth',
|
359
358
|
'_content_type',
|
360
|
-
'_headers'
|
359
|
+
'_headers',
|
360
|
+
'opts'
|
361
361
|
]
|
362
362
|
)
|
363
363
|
|
@@ -430,6 +430,7 @@ class PortfolioGroupsApi:
|
|
430
430
|
_return_http_data_only=_params.get('_return_http_data_only'), # noqa: E501
|
431
431
|
_preload_content=_params.get('_preload_content', True),
|
432
432
|
_request_timeout=_params.get('_request_timeout'),
|
433
|
+
opts=_params.get('opts'),
|
433
434
|
collection_formats=_collection_formats,
|
434
435
|
_request_auth=_params.get('_request_auth'))
|
435
436
|
|
@@ -470,10 +471,9 @@ class PortfolioGroupsApi:
|
|
470
471
|
:type page: str
|
471
472
|
:param async_req: Whether to execute the request asynchronously.
|
472
473
|
:type async_req: bool, optional
|
473
|
-
:param _request_timeout:
|
474
|
-
|
475
|
-
|
476
|
-
(connection, read) timeouts.
|
474
|
+
:param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
|
475
|
+
:param opts: Configuration options for this request
|
476
|
+
:type opts: ConfigurationOptions, optional
|
477
477
|
:return: Returns the result object.
|
478
478
|
If the method is called asynchronously,
|
479
479
|
returns the request thread.
|
@@ -524,10 +524,9 @@ class PortfolioGroupsApi:
|
|
524
524
|
:param _return_http_data_only: response data instead of ApiResponse
|
525
525
|
object with status code, headers, etc
|
526
526
|
:type _return_http_data_only: bool, optional
|
527
|
-
:param _request_timeout:
|
528
|
-
|
529
|
-
|
530
|
-
(connection, read) timeouts.
|
527
|
+
:param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
|
528
|
+
:param opts: Configuration options for this request
|
529
|
+
:type opts: ConfigurationOptions, optional
|
531
530
|
:param _request_auth: set to override the auth_settings for an a single
|
532
531
|
request; this effectively ignores the authentication
|
533
532
|
in the spec for a single request.
|
@@ -559,7 +558,8 @@ class PortfolioGroupsApi:
|
|
559
558
|
'_request_timeout',
|
560
559
|
'_request_auth',
|
561
560
|
'_content_type',
|
562
|
-
'_headers'
|
561
|
+
'_headers',
|
562
|
+
'opts'
|
563
563
|
]
|
564
564
|
)
|
565
565
|
|
@@ -648,6 +648,7 @@ class PortfolioGroupsApi:
|
|
648
648
|
_return_http_data_only=_params.get('_return_http_data_only'), # noqa: E501
|
649
649
|
_preload_content=_params.get('_preload_content', True),
|
650
650
|
_request_timeout=_params.get('_request_timeout'),
|
651
|
+
opts=_params.get('opts'),
|
651
652
|
collection_formats=_collection_formats,
|
652
653
|
_request_auth=_params.get('_request_auth'))
|
653
654
|
|
@@ -676,10 +677,9 @@ class PortfolioGroupsApi:
|
|
676
677
|
:type create_portfolio_group_request: CreatePortfolioGroupRequest
|
677
678
|
:param async_req: Whether to execute the request asynchronously.
|
678
679
|
:type async_req: bool, optional
|
679
|
-
:param _request_timeout:
|
680
|
-
|
681
|
-
|
682
|
-
(connection, read) timeouts.
|
680
|
+
:param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
|
681
|
+
:param opts: Configuration options for this request
|
682
|
+
:type opts: ConfigurationOptions, optional
|
683
683
|
:return: Returns the result object.
|
684
684
|
If the method is called asynchronously,
|
685
685
|
returns the request thread.
|
@@ -718,10 +718,9 @@ class PortfolioGroupsApi:
|
|
718
718
|
:param _return_http_data_only: response data instead of ApiResponse
|
719
719
|
object with status code, headers, etc
|
720
720
|
:type _return_http_data_only: bool, optional
|
721
|
-
:param _request_timeout:
|
722
|
-
|
723
|
-
|
724
|
-
(connection, read) timeouts.
|
721
|
+
:param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
|
722
|
+
:param opts: Configuration options for this request
|
723
|
+
:type opts: ConfigurationOptions, optional
|
725
724
|
:param _request_auth: set to override the auth_settings for an a single
|
726
725
|
request; this effectively ignores the authentication
|
727
726
|
in the spec for a single request.
|
@@ -747,7 +746,8 @@ class PortfolioGroupsApi:
|
|
747
746
|
'_request_timeout',
|
748
747
|
'_request_auth',
|
749
748
|
'_content_type',
|
750
|
-
'_headers'
|
749
|
+
'_headers',
|
750
|
+
'opts'
|
751
751
|
]
|
752
752
|
)
|
753
753
|
|
@@ -814,6 +814,7 @@ class PortfolioGroupsApi:
|
|
814
814
|
_return_http_data_only=_params.get('_return_http_data_only'), # noqa: E501
|
815
815
|
_preload_content=_params.get('_preload_content', True),
|
816
816
|
_request_timeout=_params.get('_request_timeout'),
|
817
|
+
opts=_params.get('opts'),
|
817
818
|
collection_formats=_collection_formats,
|
818
819
|
_request_auth=_params.get('_request_auth'))
|
819
820
|
|
@@ -846,10 +847,9 @@ class PortfolioGroupsApi:
|
|
846
847
|
:type effective_at: str
|
847
848
|
:param async_req: Whether to execute the request asynchronously.
|
848
849
|
:type async_req: bool, optional
|
849
|
-
:param _request_timeout:
|
850
|
-
|
851
|
-
|
852
|
-
(connection, read) timeouts.
|
850
|
+
:param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
|
851
|
+
:param opts: Configuration options for this request
|
852
|
+
:type opts: ConfigurationOptions, optional
|
853
853
|
:return: Returns the result object.
|
854
854
|
If the method is called asynchronously,
|
855
855
|
returns the request thread.
|
@@ -892,10 +892,9 @@ class PortfolioGroupsApi:
|
|
892
892
|
:param _return_http_data_only: response data instead of ApiResponse
|
893
893
|
object with status code, headers, etc
|
894
894
|
:type _return_http_data_only: bool, optional
|
895
|
-
:param _request_timeout:
|
896
|
-
|
897
|
-
|
898
|
-
(connection, read) timeouts.
|
895
|
+
:param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
|
896
|
+
:param opts: Configuration options for this request
|
897
|
+
:type opts: ConfigurationOptions, optional
|
899
898
|
:param _request_auth: set to override the auth_settings for an a single
|
900
899
|
request; this effectively ignores the authentication
|
901
900
|
in the spec for a single request.
|
@@ -923,7 +922,8 @@ class PortfolioGroupsApi:
|
|
923
922
|
'_request_timeout',
|
924
923
|
'_request_auth',
|
925
924
|
'_content_type',
|
926
|
-
'_headers'
|
925
|
+
'_headers',
|
926
|
+
'opts'
|
927
927
|
]
|
928
928
|
)
|
929
929
|
|
@@ -996,6 +996,7 @@ class PortfolioGroupsApi:
|
|
996
996
|
_return_http_data_only=_params.get('_return_http_data_only'), # noqa: E501
|
997
997
|
_preload_content=_params.get('_preload_content', True),
|
998
998
|
_request_timeout=_params.get('_request_timeout'),
|
999
|
+
opts=_params.get('opts'),
|
999
1000
|
collection_formats=_collection_formats,
|
1000
1001
|
_request_auth=_params.get('_request_auth'))
|
1001
1002
|
|
@@ -1030,10 +1031,9 @@ class PortfolioGroupsApi:
|
|
1030
1031
|
:type effective_until: datetime
|
1031
1032
|
:param async_req: Whether to execute the request asynchronously.
|
1032
1033
|
:type async_req: bool, optional
|
1033
|
-
:param _request_timeout:
|
1034
|
-
|
1035
|
-
|
1036
|
-
(connection, read) timeouts.
|
1034
|
+
:param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
|
1035
|
+
:param opts: Configuration options for this request
|
1036
|
+
:type opts: ConfigurationOptions, optional
|
1037
1037
|
:return: Returns the result object.
|
1038
1038
|
If the method is called asynchronously,
|
1039
1039
|
returns the request thread.
|
@@ -1078,10 +1078,9 @@ class PortfolioGroupsApi:
|
|
1078
1078
|
:param _return_http_data_only: response data instead of ApiResponse
|
1079
1079
|
object with status code, headers, etc
|
1080
1080
|
:type _return_http_data_only: bool, optional
|
1081
|
-
:param _request_timeout:
|
1082
|
-
|
1083
|
-
|
1084
|
-
(connection, read) timeouts.
|
1081
|
+
:param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
|
1082
|
+
:param opts: Configuration options for this request
|
1083
|
+
:type opts: ConfigurationOptions, optional
|
1085
1084
|
:param _request_auth: set to override the auth_settings for an a single
|
1086
1085
|
request; this effectively ignores the authentication
|
1087
1086
|
in the spec for a single request.
|
@@ -1110,7 +1109,8 @@ class PortfolioGroupsApi:
|
|
1110
1109
|
'_request_timeout',
|
1111
1110
|
'_request_auth',
|
1112
1111
|
'_content_type',
|
1113
|
-
'_headers'
|
1112
|
+
'_headers',
|
1113
|
+
'opts'
|
1114
1114
|
]
|
1115
1115
|
)
|
1116
1116
|
|
@@ -1182,6 +1182,7 @@ class PortfolioGroupsApi:
|
|
1182
1182
|
_return_http_data_only=_params.get('_return_http_data_only'), # noqa: E501
|
1183
1183
|
_preload_content=_params.get('_preload_content', True),
|
1184
1184
|
_request_timeout=_params.get('_request_timeout'),
|
1185
|
+
opts=_params.get('opts'),
|
1185
1186
|
collection_formats=_collection_formats,
|
1186
1187
|
_request_auth=_params.get('_request_auth'))
|
1187
1188
|
|
@@ -1216,10 +1217,9 @@ class PortfolioGroupsApi:
|
|
1216
1217
|
:type effective_at: str
|
1217
1218
|
:param async_req: Whether to execute the request asynchronously.
|
1218
1219
|
:type async_req: bool, optional
|
1219
|
-
:param _request_timeout:
|
1220
|
-
|
1221
|
-
|
1222
|
-
(connection, read) timeouts.
|
1220
|
+
:param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
|
1221
|
+
:param opts: Configuration options for this request
|
1222
|
+
:type opts: ConfigurationOptions, optional
|
1223
1223
|
:return: Returns the result object.
|
1224
1224
|
If the method is called asynchronously,
|
1225
1225
|
returns the request thread.
|
@@ -1264,10 +1264,9 @@ class PortfolioGroupsApi:
|
|
1264
1264
|
:param _return_http_data_only: response data instead of ApiResponse
|
1265
1265
|
object with status code, headers, etc
|
1266
1266
|
:type _return_http_data_only: bool, optional
|
1267
|
-
:param _request_timeout:
|
1268
|
-
|
1269
|
-
|
1270
|
-
(connection, read) timeouts.
|
1267
|
+
:param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
|
1268
|
+
:param opts: Configuration options for this request
|
1269
|
+
:type opts: ConfigurationOptions, optional
|
1271
1270
|
:param _request_auth: set to override the auth_settings for an a single
|
1272
1271
|
request; this effectively ignores the authentication
|
1273
1272
|
in the spec for a single request.
|
@@ -1296,7 +1295,8 @@ class PortfolioGroupsApi:
|
|
1296
1295
|
'_request_timeout',
|
1297
1296
|
'_request_auth',
|
1298
1297
|
'_content_type',
|
1299
|
-
'_headers'
|
1298
|
+
'_headers',
|
1299
|
+
'opts'
|
1300
1300
|
]
|
1301
1301
|
)
|
1302
1302
|
|
@@ -1365,6 +1365,7 @@ class PortfolioGroupsApi:
|
|
1365
1365
|
_return_http_data_only=_params.get('_return_http_data_only'), # noqa: E501
|
1366
1366
|
_preload_content=_params.get('_preload_content', True),
|
1367
1367
|
_request_timeout=_params.get('_request_timeout'),
|
1368
|
+
opts=_params.get('opts'),
|
1368
1369
|
collection_formats=_collection_formats,
|
1369
1370
|
_request_auth=_params.get('_request_auth'))
|
1370
1371
|
|
@@ -1393,10 +1394,9 @@ class PortfolioGroupsApi:
|
|
1393
1394
|
:type code: str
|
1394
1395
|
:param async_req: Whether to execute the request asynchronously.
|
1395
1396
|
:type async_req: bool, optional
|
1396
|
-
:param _request_timeout:
|
1397
|
-
|
1398
|
-
|
1399
|
-
(connection, read) timeouts.
|
1397
|
+
:param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
|
1398
|
+
:param opts: Configuration options for this request
|
1399
|
+
:type opts: ConfigurationOptions, optional
|
1400
1400
|
:return: Returns the result object.
|
1401
1401
|
If the method is called asynchronously,
|
1402
1402
|
returns the request thread.
|
@@ -1435,10 +1435,9 @@ class PortfolioGroupsApi:
|
|
1435
1435
|
:param _return_http_data_only: response data instead of ApiResponse
|
1436
1436
|
object with status code, headers, etc
|
1437
1437
|
:type _return_http_data_only: bool, optional
|
1438
|
-
:param _request_timeout:
|
1439
|
-
|
1440
|
-
|
1441
|
-
(connection, read) timeouts.
|
1438
|
+
:param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
|
1439
|
+
:param opts: Configuration options for this request
|
1440
|
+
:type opts: ConfigurationOptions, optional
|
1442
1441
|
:param _request_auth: set to override the auth_settings for an a single
|
1443
1442
|
request; this effectively ignores the authentication
|
1444
1443
|
in the spec for a single request.
|
@@ -1464,7 +1463,8 @@ class PortfolioGroupsApi:
|
|
1464
1463
|
'_request_timeout',
|
1465
1464
|
'_request_auth',
|
1466
1465
|
'_content_type',
|
1467
|
-
'_headers'
|
1466
|
+
'_headers',
|
1467
|
+
'opts'
|
1468
1468
|
]
|
1469
1469
|
)
|
1470
1470
|
|
@@ -1524,6 +1524,7 @@ class PortfolioGroupsApi:
|
|
1524
1524
|
_return_http_data_only=_params.get('_return_http_data_only'), # noqa: E501
|
1525
1525
|
_preload_content=_params.get('_preload_content', True),
|
1526
1526
|
_request_timeout=_params.get('_request_timeout'),
|
1527
|
+
opts=_params.get('opts'),
|
1527
1528
|
collection_formats=_collection_formats,
|
1528
1529
|
_request_auth=_params.get('_request_auth'))
|
1529
1530
|
|
@@ -1558,10 +1559,9 @@ class PortfolioGroupsApi:
|
|
1558
1559
|
:type effective_at: str
|
1559
1560
|
:param async_req: Whether to execute the request asynchronously.
|
1560
1561
|
:type async_req: bool, optional
|
1561
|
-
:param _request_timeout:
|
1562
|
-
|
1563
|
-
|
1564
|
-
(connection, read) timeouts.
|
1562
|
+
:param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
|
1563
|
+
:param opts: Configuration options for this request
|
1564
|
+
:type opts: ConfigurationOptions, optional
|
1565
1565
|
:return: Returns the result object.
|
1566
1566
|
If the method is called asynchronously,
|
1567
1567
|
returns the request thread.
|
@@ -1606,10 +1606,9 @@ class PortfolioGroupsApi:
|
|
1606
1606
|
:param _return_http_data_only: response data instead of ApiResponse
|
1607
1607
|
object with status code, headers, etc
|
1608
1608
|
:type _return_http_data_only: bool, optional
|
1609
|
-
:param _request_timeout:
|
1610
|
-
|
1611
|
-
|
1612
|
-
(connection, read) timeouts.
|
1609
|
+
:param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
|
1610
|
+
:param opts: Configuration options for this request
|
1611
|
+
:type opts: ConfigurationOptions, optional
|
1613
1612
|
:param _request_auth: set to override the auth_settings for an a single
|
1614
1613
|
request; this effectively ignores the authentication
|
1615
1614
|
in the spec for a single request.
|
@@ -1638,7 +1637,8 @@ class PortfolioGroupsApi:
|
|
1638
1637
|
'_request_timeout',
|
1639
1638
|
'_request_auth',
|
1640
1639
|
'_content_type',
|
1641
|
-
'_headers'
|
1640
|
+
'_headers',
|
1641
|
+
'opts'
|
1642
1642
|
]
|
1643
1643
|
)
|
1644
1644
|
|
@@ -1707,6 +1707,7 @@ class PortfolioGroupsApi:
|
|
1707
1707
|
_return_http_data_only=_params.get('_return_http_data_only'), # noqa: E501
|
1708
1708
|
_preload_content=_params.get('_preload_content', True),
|
1709
1709
|
_request_timeout=_params.get('_request_timeout'),
|
1710
|
+
opts=_params.get('opts'),
|
1710
1711
|
collection_formats=_collection_formats,
|
1711
1712
|
_request_auth=_params.get('_request_auth'))
|
1712
1713
|
|
@@ -1749,10 +1750,9 @@ class PortfolioGroupsApi:
|
|
1749
1750
|
:type filter: str
|
1750
1751
|
:param async_req: Whether to execute the request asynchronously.
|
1751
1752
|
:type async_req: bool, optional
|
1752
|
-
:param _request_timeout:
|
1753
|
-
|
1754
|
-
|
1755
|
-
(connection, read) timeouts.
|
1753
|
+
:param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
|
1754
|
+
:param opts: Configuration options for this request
|
1755
|
+
:type opts: ConfigurationOptions, optional
|
1756
1756
|
:return: Returns the result object.
|
1757
1757
|
If the method is called asynchronously,
|
1758
1758
|
returns the request thread.
|
@@ -1805,10 +1805,9 @@ class PortfolioGroupsApi:
|
|
1805
1805
|
:param _return_http_data_only: response data instead of ApiResponse
|
1806
1806
|
object with status code, headers, etc
|
1807
1807
|
:type _return_http_data_only: bool, optional
|
1808
|
-
:param _request_timeout:
|
1809
|
-
|
1810
|
-
|
1811
|
-
(connection, read) timeouts.
|
1808
|
+
:param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
|
1809
|
+
:param opts: Configuration options for this request
|
1810
|
+
:type opts: ConfigurationOptions, optional
|
1812
1811
|
:param _request_auth: set to override the auth_settings for an a single
|
1813
1812
|
request; this effectively ignores the authentication
|
1814
1813
|
in the spec for a single request.
|
@@ -1841,7 +1840,8 @@ class PortfolioGroupsApi:
|
|
1841
1840
|
'_request_timeout',
|
1842
1841
|
'_request_auth',
|
1843
1842
|
'_content_type',
|
1844
|
-
'_headers'
|
1843
|
+
'_headers',
|
1844
|
+
'opts'
|
1845
1845
|
]
|
1846
1846
|
)
|
1847
1847
|
|
@@ -1926,6 +1926,7 @@ class PortfolioGroupsApi:
|
|
1926
1926
|
_return_http_data_only=_params.get('_return_http_data_only'), # noqa: E501
|
1927
1927
|
_preload_content=_params.get('_preload_content', True),
|
1928
1928
|
_request_timeout=_params.get('_request_timeout'),
|
1929
|
+
opts=_params.get('opts'),
|
1929
1930
|
collection_formats=_collection_formats,
|
1930
1931
|
_request_auth=_params.get('_request_auth'))
|
1931
1932
|
|
@@ -1958,10 +1959,9 @@ class PortfolioGroupsApi:
|
|
1958
1959
|
:type as_at: datetime
|
1959
1960
|
:param async_req: Whether to execute the request asynchronously.
|
1960
1961
|
:type async_req: bool, optional
|
1961
|
-
:param _request_timeout:
|
1962
|
-
|
1963
|
-
|
1964
|
-
(connection, read) timeouts.
|
1962
|
+
:param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
|
1963
|
+
:param opts: Configuration options for this request
|
1964
|
+
:type opts: ConfigurationOptions, optional
|
1965
1965
|
:return: Returns the result object.
|
1966
1966
|
If the method is called asynchronously,
|
1967
1967
|
returns the request thread.
|
@@ -2004,10 +2004,9 @@ class PortfolioGroupsApi:
|
|
2004
2004
|
:param _return_http_data_only: response data instead of ApiResponse
|
2005
2005
|
object with status code, headers, etc
|
2006
2006
|
:type _return_http_data_only: bool, optional
|
2007
|
-
:param _request_timeout:
|
2008
|
-
|
2009
|
-
|
2010
|
-
(connection, read) timeouts.
|
2007
|
+
:param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
|
2008
|
+
:param opts: Configuration options for this request
|
2009
|
+
:type opts: ConfigurationOptions, optional
|
2011
2010
|
:param _request_auth: set to override the auth_settings for an a single
|
2012
2011
|
request; this effectively ignores the authentication
|
2013
2012
|
in the spec for a single request.
|
@@ -2035,7 +2034,8 @@ class PortfolioGroupsApi:
|
|
2035
2034
|
'_request_timeout',
|
2036
2035
|
'_request_auth',
|
2037
2036
|
'_content_type',
|
2038
|
-
'_headers'
|
2037
|
+
'_headers',
|
2038
|
+
'opts'
|
2039
2039
|
]
|
2040
2040
|
)
|
2041
2041
|
|
@@ -2104,26 +2104,27 @@ class PortfolioGroupsApi:
|
|
2104
2104
|
_return_http_data_only=_params.get('_return_http_data_only'), # noqa: E501
|
2105
2105
|
_preload_content=_params.get('_preload_content', True),
|
2106
2106
|
_request_timeout=_params.get('_request_timeout'),
|
2107
|
+
opts=_params.get('opts'),
|
2107
2108
|
collection_formats=_collection_formats,
|
2108
2109
|
_request_auth=_params.get('_request_auth'))
|
2109
2110
|
|
2110
2111
|
@overload
|
2111
|
-
async def get_holdings_for_portfolio_group(self, scope : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The scope of the portfolio group.")], code : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The code of the portfolio group. Together with the scope this uniquely identifies the portfolio group.")], effective_at : Annotated[Optional[StrictStr], Field(description="The effective datetime or cut label at which to retrieve the holdings of transaction portfolios in the portfolio group. Defaults to the current LUSID system datetime if not specified.")] = None, as_at : Annotated[Optional[datetime], Field(description="The asAt datetime at which to retrieve the holdings of transaction portfolios in the portfolio group. Defaults to return the latest version of the holdings if not specified.")] = None, filter : Annotated[Optional[constr(strict=True, max_length=16384, min_length=0)], Field(description="Expression to filter the result set. Read more about filtering results from LUSID here https://support.lusid.com/filtering-results-from-lusid.")] = None, property_keys : Annotated[Optional[conlist(StrictStr)], Field(description="A list of property keys from the \"Instrument\", \"Holding\" or \"Portfolio\" domain to decorate onto the holdings. These take the format {domain}/{scope}/{code} e.g. \"Instrument/system/Name\" or \"Holding/system/Cost\".")] = None, by_taxlots : Annotated[Optional[StrictBool], Field(description="Whether or not to expand the holdings to return the underlying tax-lots. Defaults to False.")] = None, **kwargs) -> VersionedResourceListOfPortfolioHolding: # noqa: E501
|
2112
|
+
async def get_holdings_for_portfolio_group(self, scope : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The scope of the portfolio group.")], code : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The code of the portfolio group. Together with the scope this uniquely identifies the portfolio group.")], effective_at : Annotated[Optional[StrictStr], Field(description="The effective datetime or cut label at which to retrieve the holdings of transaction portfolios in the portfolio group. Defaults to the current LUSID system datetime if not specified.")] = None, as_at : Annotated[Optional[datetime], Field(description="The asAt datetime at which to retrieve the holdings of transaction portfolios in the portfolio group. Defaults to return the latest version of the holdings if not specified.")] = None, filter : Annotated[Optional[constr(strict=True, max_length=16384, min_length=0)], Field(description="Expression to filter the result set. Read more about filtering results from LUSID here https://support.lusid.com/filtering-results-from-lusid.")] = None, property_keys : Annotated[Optional[conlist(StrictStr)], Field(description="A list of property keys from the \"Instrument\", \"Holding\" or \"Portfolio\" domain to decorate onto the holdings. These take the format {domain}/{scope}/{code} e.g. \"Instrument/system/Name\" or \"Holding/system/Cost\".")] = None, by_taxlots : Annotated[Optional[StrictBool], Field(description="Whether or not to expand the holdings to return the underlying tax-lots. Defaults to False.")] = None, include_settlement_events_after_days : Annotated[Optional[StrictInt], Field(description="Number of days ahead to bring back settlements from, in relation to the specified effectiveAt")] = None, **kwargs) -> VersionedResourceListOfPortfolioHolding: # noqa: E501
|
2112
2113
|
...
|
2113
2114
|
|
2114
2115
|
@overload
|
2115
|
-
def get_holdings_for_portfolio_group(self, scope : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The scope of the portfolio group.")], code : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The code of the portfolio group. Together with the scope this uniquely identifies the portfolio group.")], effective_at : Annotated[Optional[StrictStr], Field(description="The effective datetime or cut label at which to retrieve the holdings of transaction portfolios in the portfolio group. Defaults to the current LUSID system datetime if not specified.")] = None, as_at : Annotated[Optional[datetime], Field(description="The asAt datetime at which to retrieve the holdings of transaction portfolios in the portfolio group. Defaults to return the latest version of the holdings if not specified.")] = None, filter : Annotated[Optional[constr(strict=True, max_length=16384, min_length=0)], Field(description="Expression to filter the result set. Read more about filtering results from LUSID here https://support.lusid.com/filtering-results-from-lusid.")] = None, property_keys : Annotated[Optional[conlist(StrictStr)], Field(description="A list of property keys from the \"Instrument\", \"Holding\" or \"Portfolio\" domain to decorate onto the holdings. These take the format {domain}/{scope}/{code} e.g. \"Instrument/system/Name\" or \"Holding/system/Cost\".")] = None, by_taxlots : Annotated[Optional[StrictBool], Field(description="Whether or not to expand the holdings to return the underlying tax-lots. Defaults to False.")] = None, async_req: Optional[bool]=True, **kwargs) -> VersionedResourceListOfPortfolioHolding: # noqa: E501
|
2116
|
+
def get_holdings_for_portfolio_group(self, scope : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The scope of the portfolio group.")], code : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The code of the portfolio group. Together with the scope this uniquely identifies the portfolio group.")], effective_at : Annotated[Optional[StrictStr], Field(description="The effective datetime or cut label at which to retrieve the holdings of transaction portfolios in the portfolio group. Defaults to the current LUSID system datetime if not specified.")] = None, as_at : Annotated[Optional[datetime], Field(description="The asAt datetime at which to retrieve the holdings of transaction portfolios in the portfolio group. Defaults to return the latest version of the holdings if not specified.")] = None, filter : Annotated[Optional[constr(strict=True, max_length=16384, min_length=0)], Field(description="Expression to filter the result set. Read more about filtering results from LUSID here https://support.lusid.com/filtering-results-from-lusid.")] = None, property_keys : Annotated[Optional[conlist(StrictStr)], Field(description="A list of property keys from the \"Instrument\", \"Holding\" or \"Portfolio\" domain to decorate onto the holdings. These take the format {domain}/{scope}/{code} e.g. \"Instrument/system/Name\" or \"Holding/system/Cost\".")] = None, by_taxlots : Annotated[Optional[StrictBool], Field(description="Whether or not to expand the holdings to return the underlying tax-lots. Defaults to False.")] = None, include_settlement_events_after_days : Annotated[Optional[StrictInt], Field(description="Number of days ahead to bring back settlements from, in relation to the specified effectiveAt")] = None, async_req: Optional[bool]=True, **kwargs) -> VersionedResourceListOfPortfolioHolding: # noqa: E501
|
2116
2117
|
...
|
2117
2118
|
|
2118
2119
|
@validate_arguments
|
2119
|
-
def get_holdings_for_portfolio_group(self, scope : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The scope of the portfolio group.")], code : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The code of the portfolio group. Together with the scope this uniquely identifies the portfolio group.")], effective_at : Annotated[Optional[StrictStr], Field(description="The effective datetime or cut label at which to retrieve the holdings of transaction portfolios in the portfolio group. Defaults to the current LUSID system datetime if not specified.")] = None, as_at : Annotated[Optional[datetime], Field(description="The asAt datetime at which to retrieve the holdings of transaction portfolios in the portfolio group. Defaults to return the latest version of the holdings if not specified.")] = None, filter : Annotated[Optional[constr(strict=True, max_length=16384, min_length=0)], Field(description="Expression to filter the result set. Read more about filtering results from LUSID here https://support.lusid.com/filtering-results-from-lusid.")] = None, property_keys : Annotated[Optional[conlist(StrictStr)], Field(description="A list of property keys from the \"Instrument\", \"Holding\" or \"Portfolio\" domain to decorate onto the holdings. These take the format {domain}/{scope}/{code} e.g. \"Instrument/system/Name\" or \"Holding/system/Cost\".")] = None, by_taxlots : Annotated[Optional[StrictBool], Field(description="Whether or not to expand the holdings to return the underlying tax-lots. Defaults to False.")] = None, async_req: Optional[bool]=None, **kwargs) -> Union[VersionedResourceListOfPortfolioHolding, Awaitable[VersionedResourceListOfPortfolioHolding]]: # noqa: E501
|
2120
|
+
def get_holdings_for_portfolio_group(self, scope : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The scope of the portfolio group.")], code : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The code of the portfolio group. Together with the scope this uniquely identifies the portfolio group.")], effective_at : Annotated[Optional[StrictStr], Field(description="The effective datetime or cut label at which to retrieve the holdings of transaction portfolios in the portfolio group. Defaults to the current LUSID system datetime if not specified.")] = None, as_at : Annotated[Optional[datetime], Field(description="The asAt datetime at which to retrieve the holdings of transaction portfolios in the portfolio group. Defaults to return the latest version of the holdings if not specified.")] = None, filter : Annotated[Optional[constr(strict=True, max_length=16384, min_length=0)], Field(description="Expression to filter the result set. Read more about filtering results from LUSID here https://support.lusid.com/filtering-results-from-lusid.")] = None, property_keys : Annotated[Optional[conlist(StrictStr)], Field(description="A list of property keys from the \"Instrument\", \"Holding\" or \"Portfolio\" domain to decorate onto the holdings. These take the format {domain}/{scope}/{code} e.g. \"Instrument/system/Name\" or \"Holding/system/Cost\".")] = None, by_taxlots : Annotated[Optional[StrictBool], Field(description="Whether or not to expand the holdings to return the underlying tax-lots. Defaults to False.")] = None, include_settlement_events_after_days : Annotated[Optional[StrictInt], Field(description="Number of days ahead to bring back settlements from, in relation to the specified effectiveAt")] = None, async_req: Optional[bool]=None, **kwargs) -> Union[VersionedResourceListOfPortfolioHolding, Awaitable[VersionedResourceListOfPortfolioHolding]]: # noqa: E501
|
2120
2121
|
"""GetHoldingsForPortfolioGroup: Get holdings for transaction portfolios in portfolio group # noqa: E501
|
2121
2122
|
|
2122
2123
|
Get the holdings of transaction portfolios in specified portfolio group. # noqa: E501
|
2123
2124
|
This method makes a synchronous HTTP request by default. To make an
|
2124
2125
|
asynchronous HTTP request, please pass async_req=True
|
2125
2126
|
|
2126
|
-
>>> thread = api.get_holdings_for_portfolio_group(scope, code, effective_at, as_at, filter, property_keys, by_taxlots, async_req=True)
|
2127
|
+
>>> thread = api.get_holdings_for_portfolio_group(scope, code, effective_at, as_at, filter, property_keys, by_taxlots, include_settlement_events_after_days, async_req=True)
|
2127
2128
|
>>> result = thread.get()
|
2128
2129
|
|
2129
2130
|
:param scope: The scope of the portfolio group. (required)
|
@@ -2140,12 +2141,13 @@ class PortfolioGroupsApi:
|
|
2140
2141
|
:type property_keys: List[str]
|
2141
2142
|
:param by_taxlots: Whether or not to expand the holdings to return the underlying tax-lots. Defaults to False.
|
2142
2143
|
:type by_taxlots: bool
|
2144
|
+
:param include_settlement_events_after_days: Number of days ahead to bring back settlements from, in relation to the specified effectiveAt
|
2145
|
+
:type include_settlement_events_after_days: int
|
2143
2146
|
:param async_req: Whether to execute the request asynchronously.
|
2144
2147
|
:type async_req: bool, optional
|
2145
|
-
:param _request_timeout:
|
2146
|
-
|
2147
|
-
|
2148
|
-
(connection, read) timeouts.
|
2148
|
+
:param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
|
2149
|
+
:param opts: Configuration options for this request
|
2150
|
+
:type opts: ConfigurationOptions, optional
|
2149
2151
|
:return: Returns the result object.
|
2150
2152
|
If the method is called asynchronously,
|
2151
2153
|
returns the request thread.
|
@@ -2157,17 +2159,17 @@ class PortfolioGroupsApi:
|
|
2157
2159
|
raise ValueError(message)
|
2158
2160
|
if async_req is not None:
|
2159
2161
|
kwargs['async_req'] = async_req
|
2160
|
-
return self.get_holdings_for_portfolio_group_with_http_info(scope, code, effective_at, as_at, filter, property_keys, by_taxlots, **kwargs) # noqa: E501
|
2162
|
+
return self.get_holdings_for_portfolio_group_with_http_info(scope, code, effective_at, as_at, filter, property_keys, by_taxlots, include_settlement_events_after_days, **kwargs) # noqa: E501
|
2161
2163
|
|
2162
2164
|
@validate_arguments
|
2163
|
-
def get_holdings_for_portfolio_group_with_http_info(self, scope : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The scope of the portfolio group.")], code : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The code of the portfolio group. Together with the scope this uniquely identifies the portfolio group.")], effective_at : Annotated[Optional[StrictStr], Field(description="The effective datetime or cut label at which to retrieve the holdings of transaction portfolios in the portfolio group. Defaults to the current LUSID system datetime if not specified.")] = None, as_at : Annotated[Optional[datetime], Field(description="The asAt datetime at which to retrieve the holdings of transaction portfolios in the portfolio group. Defaults to return the latest version of the holdings if not specified.")] = None, filter : Annotated[Optional[constr(strict=True, max_length=16384, min_length=0)], Field(description="Expression to filter the result set. Read more about filtering results from LUSID here https://support.lusid.com/filtering-results-from-lusid.")] = None, property_keys : Annotated[Optional[conlist(StrictStr)], Field(description="A list of property keys from the \"Instrument\", \"Holding\" or \"Portfolio\" domain to decorate onto the holdings. These take the format {domain}/{scope}/{code} e.g. \"Instrument/system/Name\" or \"Holding/system/Cost\".")] = None, by_taxlots : Annotated[Optional[StrictBool], Field(description="Whether or not to expand the holdings to return the underlying tax-lots. Defaults to False.")] = None, **kwargs) -> ApiResponse: # noqa: E501
|
2165
|
+
def get_holdings_for_portfolio_group_with_http_info(self, scope : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The scope of the portfolio group.")], code : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The code of the portfolio group. Together with the scope this uniquely identifies the portfolio group.")], effective_at : Annotated[Optional[StrictStr], Field(description="The effective datetime or cut label at which to retrieve the holdings of transaction portfolios in the portfolio group. Defaults to the current LUSID system datetime if not specified.")] = None, as_at : Annotated[Optional[datetime], Field(description="The asAt datetime at which to retrieve the holdings of transaction portfolios in the portfolio group. Defaults to return the latest version of the holdings if not specified.")] = None, filter : Annotated[Optional[constr(strict=True, max_length=16384, min_length=0)], Field(description="Expression to filter the result set. Read more about filtering results from LUSID here https://support.lusid.com/filtering-results-from-lusid.")] = None, property_keys : Annotated[Optional[conlist(StrictStr)], Field(description="A list of property keys from the \"Instrument\", \"Holding\" or \"Portfolio\" domain to decorate onto the holdings. These take the format {domain}/{scope}/{code} e.g. \"Instrument/system/Name\" or \"Holding/system/Cost\".")] = None, by_taxlots : Annotated[Optional[StrictBool], Field(description="Whether or not to expand the holdings to return the underlying tax-lots. Defaults to False.")] = None, include_settlement_events_after_days : Annotated[Optional[StrictInt], Field(description="Number of days ahead to bring back settlements from, in relation to the specified effectiveAt")] = None, **kwargs) -> ApiResponse: # noqa: E501
|
2164
2166
|
"""GetHoldingsForPortfolioGroup: Get holdings for transaction portfolios in portfolio group # noqa: E501
|
2165
2167
|
|
2166
2168
|
Get the holdings of transaction portfolios in specified portfolio group. # noqa: E501
|
2167
2169
|
This method makes a synchronous HTTP request by default. To make an
|
2168
2170
|
asynchronous HTTP request, please pass async_req=True
|
2169
2171
|
|
2170
|
-
>>> thread = api.get_holdings_for_portfolio_group_with_http_info(scope, code, effective_at, as_at, filter, property_keys, by_taxlots, async_req=True)
|
2172
|
+
>>> thread = api.get_holdings_for_portfolio_group_with_http_info(scope, code, effective_at, as_at, filter, property_keys, by_taxlots, include_settlement_events_after_days, async_req=True)
|
2171
2173
|
>>> result = thread.get()
|
2172
2174
|
|
2173
2175
|
:param scope: The scope of the portfolio group. (required)
|
@@ -2184,6 +2186,8 @@ class PortfolioGroupsApi:
|
|
2184
2186
|
:type property_keys: List[str]
|
2185
2187
|
:param by_taxlots: Whether or not to expand the holdings to return the underlying tax-lots. Defaults to False.
|
2186
2188
|
:type by_taxlots: bool
|
2189
|
+
:param include_settlement_events_after_days: Number of days ahead to bring back settlements from, in relation to the specified effectiveAt
|
2190
|
+
:type include_settlement_events_after_days: int
|
2187
2191
|
:param async_req: Whether to execute the request asynchronously.
|
2188
2192
|
:type async_req: bool, optional
|
2189
2193
|
:param _preload_content: if False, the ApiResponse.data will
|
@@ -2194,10 +2198,9 @@ class PortfolioGroupsApi:
|
|
2194
2198
|
:param _return_http_data_only: response data instead of ApiResponse
|
2195
2199
|
object with status code, headers, etc
|
2196
2200
|
:type _return_http_data_only: bool, optional
|
2197
|
-
:param _request_timeout:
|
2198
|
-
|
2199
|
-
|
2200
|
-
(connection, read) timeouts.
|
2201
|
+
:param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
|
2202
|
+
:param opts: Configuration options for this request
|
2203
|
+
:type opts: ConfigurationOptions, optional
|
2201
2204
|
:param _request_auth: set to override the auth_settings for an a single
|
2202
2205
|
request; this effectively ignores the authentication
|
2203
2206
|
in the spec for a single request.
|
@@ -2218,7 +2221,8 @@ class PortfolioGroupsApi:
|
|
2218
2221
|
'as_at',
|
2219
2222
|
'filter',
|
2220
2223
|
'property_keys',
|
2221
|
-
'by_taxlots'
|
2224
|
+
'by_taxlots',
|
2225
|
+
'include_settlement_events_after_days'
|
2222
2226
|
]
|
2223
2227
|
_all_params.extend(
|
2224
2228
|
[
|
@@ -2228,7 +2232,8 @@ class PortfolioGroupsApi:
|
|
2228
2232
|
'_request_timeout',
|
2229
2233
|
'_request_auth',
|
2230
2234
|
'_content_type',
|
2231
|
-
'_headers'
|
2235
|
+
'_headers',
|
2236
|
+
'opts'
|
2232
2237
|
]
|
2233
2238
|
)
|
2234
2239
|
|
@@ -2274,6 +2279,9 @@ class PortfolioGroupsApi:
|
|
2274
2279
|
if _params.get('by_taxlots') is not None: # noqa: E501
|
2275
2280
|
_query_params.append(('byTaxlots', _params['by_taxlots']))
|
2276
2281
|
|
2282
|
+
if _params.get('include_settlement_events_after_days') is not None: # noqa: E501
|
2283
|
+
_query_params.append(('includeSettlementEventsAfterDays', _params['include_settlement_events_after_days']))
|
2284
|
+
|
2277
2285
|
# process the header parameters
|
2278
2286
|
_header_params = dict(_params.get('_headers', {}))
|
2279
2287
|
# process the form parameters
|
@@ -2307,6 +2315,7 @@ class PortfolioGroupsApi:
|
|
2307
2315
|
_return_http_data_only=_params.get('_return_http_data_only'), # noqa: E501
|
2308
2316
|
_preload_content=_params.get('_preload_content', True),
|
2309
2317
|
_request_timeout=_params.get('_request_timeout'),
|
2318
|
+
opts=_params.get('opts'),
|
2310
2319
|
collection_formats=_collection_formats,
|
2311
2320
|
_request_auth=_params.get('_request_auth'))
|
2312
2321
|
|
@@ -2343,10 +2352,9 @@ class PortfolioGroupsApi:
|
|
2343
2352
|
:type relationship_definition_ids: List[str]
|
2344
2353
|
:param async_req: Whether to execute the request asynchronously.
|
2345
2354
|
:type async_req: bool, optional
|
2346
|
-
:param _request_timeout:
|
2347
|
-
|
2348
|
-
|
2349
|
-
(connection, read) timeouts.
|
2355
|
+
:param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
|
2356
|
+
:param opts: Configuration options for this request
|
2357
|
+
:type opts: ConfigurationOptions, optional
|
2350
2358
|
:return: Returns the result object.
|
2351
2359
|
If the method is called asynchronously,
|
2352
2360
|
returns the request thread.
|
@@ -2393,10 +2401,9 @@ class PortfolioGroupsApi:
|
|
2393
2401
|
:param _return_http_data_only: response data instead of ApiResponse
|
2394
2402
|
object with status code, headers, etc
|
2395
2403
|
:type _return_http_data_only: bool, optional
|
2396
|
-
:param _request_timeout:
|
2397
|
-
|
2398
|
-
|
2399
|
-
(connection, read) timeouts.
|
2404
|
+
:param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
|
2405
|
+
:param opts: Configuration options for this request
|
2406
|
+
:type opts: ConfigurationOptions, optional
|
2400
2407
|
:param _request_auth: set to override the auth_settings for an a single
|
2401
2408
|
request; this effectively ignores the authentication
|
2402
2409
|
in the spec for a single request.
|
@@ -2426,7 +2433,8 @@ class PortfolioGroupsApi:
|
|
2426
2433
|
'_request_timeout',
|
2427
2434
|
'_request_auth',
|
2428
2435
|
'_content_type',
|
2429
|
-
'_headers'
|
2436
|
+
'_headers',
|
2437
|
+
'opts'
|
2430
2438
|
]
|
2431
2439
|
)
|
2432
2440
|
|
@@ -2503,6 +2511,7 @@ class PortfolioGroupsApi:
|
|
2503
2511
|
_return_http_data_only=_params.get('_return_http_data_only'), # noqa: E501
|
2504
2512
|
_preload_content=_params.get('_preload_content', True),
|
2505
2513
|
_request_timeout=_params.get('_request_timeout'),
|
2514
|
+
opts=_params.get('opts'),
|
2506
2515
|
collection_formats=_collection_formats,
|
2507
2516
|
_request_auth=_params.get('_request_auth'))
|
2508
2517
|
|
@@ -2537,10 +2546,9 @@ class PortfolioGroupsApi:
|
|
2537
2546
|
:type as_at: datetime
|
2538
2547
|
:param async_req: Whether to execute the request asynchronously.
|
2539
2548
|
:type async_req: bool, optional
|
2540
|
-
:param _request_timeout:
|
2541
|
-
|
2542
|
-
|
2543
|
-
(connection, read) timeouts.
|
2549
|
+
:param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
|
2550
|
+
:param opts: Configuration options for this request
|
2551
|
+
:type opts: ConfigurationOptions, optional
|
2544
2552
|
:return: Returns the result object.
|
2545
2553
|
If the method is called asynchronously,
|
2546
2554
|
returns the request thread.
|
@@ -2585,10 +2593,9 @@ class PortfolioGroupsApi:
|
|
2585
2593
|
:param _return_http_data_only: response data instead of ApiResponse
|
2586
2594
|
object with status code, headers, etc
|
2587
2595
|
:type _return_http_data_only: bool, optional
|
2588
|
-
:param _request_timeout:
|
2589
|
-
|
2590
|
-
|
2591
|
-
(connection, read) timeouts.
|
2596
|
+
:param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
|
2597
|
+
:param opts: Configuration options for this request
|
2598
|
+
:type opts: ConfigurationOptions, optional
|
2592
2599
|
:param _request_auth: set to override the auth_settings for an a single
|
2593
2600
|
request; this effectively ignores the authentication
|
2594
2601
|
in the spec for a single request.
|
@@ -2617,7 +2624,8 @@ class PortfolioGroupsApi:
|
|
2617
2624
|
'_request_timeout',
|
2618
2625
|
'_request_auth',
|
2619
2626
|
'_content_type',
|
2620
|
-
'_headers'
|
2627
|
+
'_headers',
|
2628
|
+
'opts'
|
2621
2629
|
]
|
2622
2630
|
)
|
2623
2631
|
|
@@ -2689,6 +2697,7 @@ class PortfolioGroupsApi:
|
|
2689
2697
|
_return_http_data_only=_params.get('_return_http_data_only'), # noqa: E501
|
2690
2698
|
_preload_content=_params.get('_preload_content', True),
|
2691
2699
|
_request_timeout=_params.get('_request_timeout'),
|
2700
|
+
opts=_params.get('opts'),
|
2692
2701
|
collection_formats=_collection_formats,
|
2693
2702
|
_request_auth=_params.get('_request_auth'))
|
2694
2703
|
|
@@ -2723,10 +2732,9 @@ class PortfolioGroupsApi:
|
|
2723
2732
|
:type filter: str
|
2724
2733
|
:param async_req: Whether to execute the request asynchronously.
|
2725
2734
|
:type async_req: bool, optional
|
2726
|
-
:param _request_timeout:
|
2727
|
-
|
2728
|
-
|
2729
|
-
(connection, read) timeouts.
|
2735
|
+
:param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
|
2736
|
+
:param opts: Configuration options for this request
|
2737
|
+
:type opts: ConfigurationOptions, optional
|
2730
2738
|
:return: Returns the result object.
|
2731
2739
|
If the method is called asynchronously,
|
2732
2740
|
returns the request thread.
|
@@ -2771,10 +2779,9 @@ class PortfolioGroupsApi:
|
|
2771
2779
|
:param _return_http_data_only: response data instead of ApiResponse
|
2772
2780
|
object with status code, headers, etc
|
2773
2781
|
:type _return_http_data_only: bool, optional
|
2774
|
-
:param _request_timeout:
|
2775
|
-
|
2776
|
-
|
2777
|
-
(connection, read) timeouts.
|
2782
|
+
:param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
|
2783
|
+
:param opts: Configuration options for this request
|
2784
|
+
:type opts: ConfigurationOptions, optional
|
2778
2785
|
:param _request_auth: set to override the auth_settings for an a single
|
2779
2786
|
request; this effectively ignores the authentication
|
2780
2787
|
in the spec for a single request.
|
@@ -2803,7 +2810,8 @@ class PortfolioGroupsApi:
|
|
2803
2810
|
'_request_timeout',
|
2804
2811
|
'_request_auth',
|
2805
2812
|
'_content_type',
|
2806
|
-
'_headers'
|
2813
|
+
'_headers',
|
2814
|
+
'opts'
|
2807
2815
|
]
|
2808
2816
|
)
|
2809
2817
|
|
@@ -2878,6 +2886,7 @@ class PortfolioGroupsApi:
|
|
2878
2886
|
_return_http_data_only=_params.get('_return_http_data_only'), # noqa: E501
|
2879
2887
|
_preload_content=_params.get('_preload_content', True),
|
2880
2888
|
_request_timeout=_params.get('_request_timeout'),
|
2889
|
+
opts=_params.get('opts'),
|
2881
2890
|
collection_formats=_collection_formats,
|
2882
2891
|
_request_auth=_params.get('_request_auth'))
|
2883
2892
|
|
@@ -2912,10 +2921,9 @@ class PortfolioGroupsApi:
|
|
2912
2921
|
:type property_filter: List[str]
|
2913
2922
|
:param async_req: Whether to execute the request asynchronously.
|
2914
2923
|
:type async_req: bool, optional
|
2915
|
-
:param _request_timeout:
|
2916
|
-
|
2917
|
-
|
2918
|
-
(connection, read) timeouts.
|
2924
|
+
:param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
|
2925
|
+
:param opts: Configuration options for this request
|
2926
|
+
:type opts: ConfigurationOptions, optional
|
2919
2927
|
:return: Returns the result object.
|
2920
2928
|
If the method is called asynchronously,
|
2921
2929
|
returns the request thread.
|
@@ -2960,10 +2968,9 @@ class PortfolioGroupsApi:
|
|
2960
2968
|
:param _return_http_data_only: response data instead of ApiResponse
|
2961
2969
|
object with status code, headers, etc
|
2962
2970
|
:type _return_http_data_only: bool, optional
|
2963
|
-
:param _request_timeout:
|
2964
|
-
|
2965
|
-
|
2966
|
-
(connection, read) timeouts.
|
2971
|
+
:param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
|
2972
|
+
:param opts: Configuration options for this request
|
2973
|
+
:type opts: ConfigurationOptions, optional
|
2967
2974
|
:param _request_auth: set to override the auth_settings for an a single
|
2968
2975
|
request; this effectively ignores the authentication
|
2969
2976
|
in the spec for a single request.
|
@@ -2992,7 +2999,8 @@ class PortfolioGroupsApi:
|
|
2992
2999
|
'_request_timeout',
|
2993
3000
|
'_request_auth',
|
2994
3001
|
'_content_type',
|
2995
|
-
'_headers'
|
3002
|
+
'_headers',
|
3003
|
+
'opts'
|
2996
3004
|
]
|
2997
3005
|
)
|
2998
3006
|
|
@@ -3065,6 +3073,7 @@ class PortfolioGroupsApi:
|
|
3065
3073
|
_return_http_data_only=_params.get('_return_http_data_only'), # noqa: E501
|
3066
3074
|
_preload_content=_params.get('_preload_content', True),
|
3067
3075
|
_request_timeout=_params.get('_request_timeout'),
|
3076
|
+
opts=_params.get('opts'),
|
3068
3077
|
collection_formats=_collection_formats,
|
3069
3078
|
_request_auth=_params.get('_request_auth'))
|
3070
3079
|
|
@@ -3097,10 +3106,9 @@ class PortfolioGroupsApi:
|
|
3097
3106
|
:type as_at: datetime
|
3098
3107
|
:param async_req: Whether to execute the request asynchronously.
|
3099
3108
|
:type async_req: bool, optional
|
3100
|
-
:param _request_timeout:
|
3101
|
-
|
3102
|
-
|
3103
|
-
(connection, read) timeouts.
|
3109
|
+
:param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
|
3110
|
+
:param opts: Configuration options for this request
|
3111
|
+
:type opts: ConfigurationOptions, optional
|
3104
3112
|
:return: Returns the result object.
|
3105
3113
|
If the method is called asynchronously,
|
3106
3114
|
returns the request thread.
|
@@ -3143,10 +3151,9 @@ class PortfolioGroupsApi:
|
|
3143
3151
|
:param _return_http_data_only: response data instead of ApiResponse
|
3144
3152
|
object with status code, headers, etc
|
3145
3153
|
:type _return_http_data_only: bool, optional
|
3146
|
-
:param _request_timeout:
|
3147
|
-
|
3148
|
-
|
3149
|
-
(connection, read) timeouts.
|
3154
|
+
:param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
|
3155
|
+
:param opts: Configuration options for this request
|
3156
|
+
:type opts: ConfigurationOptions, optional
|
3150
3157
|
:param _request_auth: set to override the auth_settings for an a single
|
3151
3158
|
request; this effectively ignores the authentication
|
3152
3159
|
in the spec for a single request.
|
@@ -3174,7 +3181,8 @@ class PortfolioGroupsApi:
|
|
3174
3181
|
'_request_timeout',
|
3175
3182
|
'_request_auth',
|
3176
3183
|
'_content_type',
|
3177
|
-
'_headers'
|
3184
|
+
'_headers',
|
3185
|
+
'opts'
|
3178
3186
|
]
|
3179
3187
|
)
|
3180
3188
|
|
@@ -3243,6 +3251,7 @@ class PortfolioGroupsApi:
|
|
3243
3251
|
_return_http_data_only=_params.get('_return_http_data_only'), # noqa: E501
|
3244
3252
|
_preload_content=_params.get('_preload_content', True),
|
3245
3253
|
_request_timeout=_params.get('_request_timeout'),
|
3254
|
+
opts=_params.get('opts'),
|
3246
3255
|
collection_formats=_collection_formats,
|
3247
3256
|
_request_auth=_params.get('_request_auth'))
|
3248
3257
|
|
@@ -3283,10 +3292,9 @@ class PortfolioGroupsApi:
|
|
3283
3292
|
:type limit: int
|
3284
3293
|
:param async_req: Whether to execute the request asynchronously.
|
3285
3294
|
:type async_req: bool, optional
|
3286
|
-
:param _request_timeout:
|
3287
|
-
|
3288
|
-
|
3289
|
-
(connection, read) timeouts.
|
3295
|
+
:param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
|
3296
|
+
:param opts: Configuration options for this request
|
3297
|
+
:type opts: ConfigurationOptions, optional
|
3290
3298
|
:return: Returns the result object.
|
3291
3299
|
If the method is called asynchronously,
|
3292
3300
|
returns the request thread.
|
@@ -3337,10 +3345,9 @@ class PortfolioGroupsApi:
|
|
3337
3345
|
:param _return_http_data_only: response data instead of ApiResponse
|
3338
3346
|
object with status code, headers, etc
|
3339
3347
|
:type _return_http_data_only: bool, optional
|
3340
|
-
:param _request_timeout:
|
3341
|
-
|
3342
|
-
|
3343
|
-
(connection, read) timeouts.
|
3348
|
+
:param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
|
3349
|
+
:param opts: Configuration options for this request
|
3350
|
+
:type opts: ConfigurationOptions, optional
|
3344
3351
|
:param _request_auth: set to override the auth_settings for an a single
|
3345
3352
|
request; this effectively ignores the authentication
|
3346
3353
|
in the spec for a single request.
|
@@ -3372,7 +3379,8 @@ class PortfolioGroupsApi:
|
|
3372
3379
|
'_request_timeout',
|
3373
3380
|
'_request_auth',
|
3374
3381
|
'_content_type',
|
3375
|
-
'_headers'
|
3382
|
+
'_headers',
|
3383
|
+
'opts'
|
3376
3384
|
]
|
3377
3385
|
)
|
3378
3386
|
|
@@ -3453,6 +3461,7 @@ class PortfolioGroupsApi:
|
|
3453
3461
|
_return_http_data_only=_params.get('_return_http_data_only'), # noqa: E501
|
3454
3462
|
_preload_content=_params.get('_preload_content', True),
|
3455
3463
|
_request_timeout=_params.get('_request_timeout'),
|
3464
|
+
opts=_params.get('opts'),
|
3456
3465
|
collection_formats=_collection_formats,
|
3457
3466
|
_request_auth=_params.get('_request_auth'))
|
3458
3467
|
|
@@ -3489,10 +3498,9 @@ class PortfolioGroupsApi:
|
|
3489
3498
|
:type identifier_types: List[str]
|
3490
3499
|
:param async_req: Whether to execute the request asynchronously.
|
3491
3500
|
:type async_req: bool, optional
|
3492
|
-
:param _request_timeout:
|
3493
|
-
|
3494
|
-
|
3495
|
-
(connection, read) timeouts.
|
3501
|
+
:param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
|
3502
|
+
:param opts: Configuration options for this request
|
3503
|
+
:type opts: ConfigurationOptions, optional
|
3496
3504
|
:return: Returns the result object.
|
3497
3505
|
If the method is called asynchronously,
|
3498
3506
|
returns the request thread.
|
@@ -3539,10 +3547,9 @@ class PortfolioGroupsApi:
|
|
3539
3547
|
:param _return_http_data_only: response data instead of ApiResponse
|
3540
3548
|
object with status code, headers, etc
|
3541
3549
|
:type _return_http_data_only: bool, optional
|
3542
|
-
:param _request_timeout:
|
3543
|
-
|
3544
|
-
|
3545
|
-
(connection, read) timeouts.
|
3550
|
+
:param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
|
3551
|
+
:param opts: Configuration options for this request
|
3552
|
+
:type opts: ConfigurationOptions, optional
|
3546
3553
|
:param _request_auth: set to override the auth_settings for an a single
|
3547
3554
|
request; this effectively ignores the authentication
|
3548
3555
|
in the spec for a single request.
|
@@ -3572,7 +3579,8 @@ class PortfolioGroupsApi:
|
|
3572
3579
|
'_request_timeout',
|
3573
3580
|
'_request_auth',
|
3574
3581
|
'_content_type',
|
3575
|
-
'_headers'
|
3582
|
+
'_headers',
|
3583
|
+
'opts'
|
3576
3584
|
]
|
3577
3585
|
)
|
3578
3586
|
|
@@ -3648,6 +3656,7 @@ class PortfolioGroupsApi:
|
|
3648
3656
|
_return_http_data_only=_params.get('_return_http_data_only'), # noqa: E501
|
3649
3657
|
_preload_content=_params.get('_preload_content', True),
|
3650
3658
|
_request_timeout=_params.get('_request_timeout'),
|
3659
|
+
opts=_params.get('opts'),
|
3651
3660
|
collection_formats=_collection_formats,
|
3652
3661
|
_request_auth=_params.get('_request_auth'))
|
3653
3662
|
|
@@ -3684,10 +3693,9 @@ class PortfolioGroupsApi:
|
|
3684
3693
|
:type identifier_types: List[str]
|
3685
3694
|
:param async_req: Whether to execute the request asynchronously.
|
3686
3695
|
:type async_req: bool, optional
|
3687
|
-
:param _request_timeout:
|
3688
|
-
|
3689
|
-
|
3690
|
-
(connection, read) timeouts.
|
3696
|
+
:param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
|
3697
|
+
:param opts: Configuration options for this request
|
3698
|
+
:type opts: ConfigurationOptions, optional
|
3691
3699
|
:return: Returns the result object.
|
3692
3700
|
If the method is called asynchronously,
|
3693
3701
|
returns the request thread.
|
@@ -3734,10 +3742,9 @@ class PortfolioGroupsApi:
|
|
3734
3742
|
:param _return_http_data_only: response data instead of ApiResponse
|
3735
3743
|
object with status code, headers, etc
|
3736
3744
|
:type _return_http_data_only: bool, optional
|
3737
|
-
:param _request_timeout:
|
3738
|
-
|
3739
|
-
|
3740
|
-
(connection, read) timeouts.
|
3745
|
+
:param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
|
3746
|
+
:param opts: Configuration options for this request
|
3747
|
+
:type opts: ConfigurationOptions, optional
|
3741
3748
|
:param _request_auth: set to override the auth_settings for an a single
|
3742
3749
|
request; this effectively ignores the authentication
|
3743
3750
|
in the spec for a single request.
|
@@ -3767,7 +3774,8 @@ class PortfolioGroupsApi:
|
|
3767
3774
|
'_request_timeout',
|
3768
3775
|
'_request_auth',
|
3769
3776
|
'_content_type',
|
3770
|
-
'_headers'
|
3777
|
+
'_headers',
|
3778
|
+
'opts'
|
3771
3779
|
]
|
3772
3780
|
)
|
3773
3781
|
|
@@ -3843,19 +3851,20 @@ class PortfolioGroupsApi:
|
|
3843
3851
|
_return_http_data_only=_params.get('_return_http_data_only'), # noqa: E501
|
3844
3852
|
_preload_content=_params.get('_preload_content', True),
|
3845
3853
|
_request_timeout=_params.get('_request_timeout'),
|
3854
|
+
opts=_params.get('opts'),
|
3846
3855
|
collection_formats=_collection_formats,
|
3847
3856
|
_request_auth=_params.get('_request_auth'))
|
3848
3857
|
|
3849
3858
|
@overload
|
3850
|
-
async def get_transactions_for_portfolio_group(self, scope : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The scope of the portfolio group.")], code : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The code of the portfolio group. Together with the scope this uniquely identifies the portfolio group.")], from_transaction_date : Annotated[Optional[StrictStr], Field(description="The lower bound effective datetime or cut label (inclusive) from which to retrieve the transactions. There is no lower bound if this is not specified.")] = None, to_transaction_date : Annotated[Optional[StrictStr], Field(description="The upper bound effective datetime or cut label (inclusive) from which to retrieve transactions. There is no upper bound if this is not specified.")] = None, as_at : Annotated[Optional[datetime], Field(description="The asAt datetime at which to retrieve the transactions. Defaults to return the latest version of each transaction if not specified.")] = None, filter : Annotated[Optional[constr(strict=True, max_length=16384, min_length=0)], Field(description="Expression to filter the result set. For example, to filter on the Transaction Type, use \"type eq 'Buy'\" Read more about filtering results from LUSID here https://support.lusid.com/filtering-results-from-lusid.")] = None, property_keys : Annotated[Optional[conlist(StrictStr)], Field(description="A list of property keys from the \"Instrument\", \"Transaction\", \"LegalEntity\" or \"CustodianAccount\" domain to decorate onto the transactions. These take the format {domain}/{scope}/{code} e.g. \"Instrument/system/Name\" or \"Transaction/strategy/quantsignal\".")] = None, limit : Annotated[Optional[StrictInt], Field(description="When paginating, limit the number of returned results to this many. Defaults to 100 if not specified.")] = None, page : Annotated[Optional[constr(strict=True, max_length=500, min_length=1)], Field(description="The pagination token to use to continue listing transactions from a previous call to GetTransactions.")] = None, show_cancelled_transactions : Annotated[Optional[StrictBool], Field(description="Option to specify whether or not to include cancelled transactions, including previous versions of transactions which have since been amended. Defaults to False if not specified.")] = None, sort_by : Annotated[Optional[conlist(StrictStr)], Field(description="A list of field names or properties to sort by, each suffixed by \" ASC\" or \" DESC\"")] = None, **kwargs) -> VersionedResourceListOfTransaction: # noqa: E501
|
3859
|
+
async def get_transactions_for_portfolio_group(self, scope : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The scope of the portfolio group.")], code : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The code of the portfolio group. Together with the scope this uniquely identifies the portfolio group.")], from_transaction_date : Annotated[Optional[StrictStr], Field(description="The lower bound effective datetime or cut label (inclusive) from which to retrieve the transactions. There is no lower bound if this is not specified.")] = None, to_transaction_date : Annotated[Optional[StrictStr], Field(description="The upper bound effective datetime or cut label (inclusive) from which to retrieve transactions. There is no upper bound if this is not specified.")] = None, as_at : Annotated[Optional[datetime], Field(description="The asAt datetime at which to retrieve the transactions. Defaults to return the latest version of each transaction if not specified.")] = None, filter : Annotated[Optional[constr(strict=True, max_length=16384, min_length=0)], Field(description="Expression to filter the result set. For example, to filter on the Transaction Type, use \"type eq 'Buy'\" Read more about filtering results from LUSID here https://support.lusid.com/filtering-results-from-lusid.")] = None, property_keys : Annotated[Optional[conlist(StrictStr)], Field(description="A list of property keys from the \"Instrument\", \"Transaction\", \"LegalEntity\" or \"CustodianAccount\" domain to decorate onto the transactions. These take the format {domain}/{scope}/{code} e.g. \"Instrument/system/Name\" or \"Transaction/strategy/quantsignal\".")] = None, limit : Annotated[Optional[StrictInt], Field(description="When paginating, limit the number of returned results to this many. Defaults to 100 if not specified.")] = None, page : Annotated[Optional[constr(strict=True, max_length=500, min_length=1)], Field(description="The pagination token to use to continue listing transactions from a previous call to GetTransactions.")] = None, show_cancelled_transactions : Annotated[Optional[StrictBool], Field(description="Option to specify whether or not to include cancelled transactions, including previous versions of transactions which have since been amended. Defaults to False if not specified.")] = None, sort_by : Annotated[Optional[conlist(StrictStr)], Field(description="A list of field names or properties to sort by, each suffixed by \" ASC\" or \" DESC\".")] = None, **kwargs) -> VersionedResourceListOfTransaction: # noqa: E501
|
3851
3860
|
...
|
3852
3861
|
|
3853
3862
|
@overload
|
3854
|
-
def get_transactions_for_portfolio_group(self, scope : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The scope of the portfolio group.")], code : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The code of the portfolio group. Together with the scope this uniquely identifies the portfolio group.")], from_transaction_date : Annotated[Optional[StrictStr], Field(description="The lower bound effective datetime or cut label (inclusive) from which to retrieve the transactions. There is no lower bound if this is not specified.")] = None, to_transaction_date : Annotated[Optional[StrictStr], Field(description="The upper bound effective datetime or cut label (inclusive) from which to retrieve transactions. There is no upper bound if this is not specified.")] = None, as_at : Annotated[Optional[datetime], Field(description="The asAt datetime at which to retrieve the transactions. Defaults to return the latest version of each transaction if not specified.")] = None, filter : Annotated[Optional[constr(strict=True, max_length=16384, min_length=0)], Field(description="Expression to filter the result set. For example, to filter on the Transaction Type, use \"type eq 'Buy'\" Read more about filtering results from LUSID here https://support.lusid.com/filtering-results-from-lusid.")] = None, property_keys : Annotated[Optional[conlist(StrictStr)], Field(description="A list of property keys from the \"Instrument\", \"Transaction\", \"LegalEntity\" or \"CustodianAccount\" domain to decorate onto the transactions. These take the format {domain}/{scope}/{code} e.g. \"Instrument/system/Name\" or \"Transaction/strategy/quantsignal\".")] = None, limit : Annotated[Optional[StrictInt], Field(description="When paginating, limit the number of returned results to this many. Defaults to 100 if not specified.")] = None, page : Annotated[Optional[constr(strict=True, max_length=500, min_length=1)], Field(description="The pagination token to use to continue listing transactions from a previous call to GetTransactions.")] = None, show_cancelled_transactions : Annotated[Optional[StrictBool], Field(description="Option to specify whether or not to include cancelled transactions, including previous versions of transactions which have since been amended. Defaults to False if not specified.")] = None, sort_by : Annotated[Optional[conlist(StrictStr)], Field(description="A list of field names or properties to sort by, each suffixed by \" ASC\" or \" DESC\"")] = None, async_req: Optional[bool]=True, **kwargs) -> VersionedResourceListOfTransaction: # noqa: E501
|
3863
|
+
def get_transactions_for_portfolio_group(self, scope : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The scope of the portfolio group.")], code : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The code of the portfolio group. Together with the scope this uniquely identifies the portfolio group.")], from_transaction_date : Annotated[Optional[StrictStr], Field(description="The lower bound effective datetime or cut label (inclusive) from which to retrieve the transactions. There is no lower bound if this is not specified.")] = None, to_transaction_date : Annotated[Optional[StrictStr], Field(description="The upper bound effective datetime or cut label (inclusive) from which to retrieve transactions. There is no upper bound if this is not specified.")] = None, as_at : Annotated[Optional[datetime], Field(description="The asAt datetime at which to retrieve the transactions. Defaults to return the latest version of each transaction if not specified.")] = None, filter : Annotated[Optional[constr(strict=True, max_length=16384, min_length=0)], Field(description="Expression to filter the result set. For example, to filter on the Transaction Type, use \"type eq 'Buy'\" Read more about filtering results from LUSID here https://support.lusid.com/filtering-results-from-lusid.")] = None, property_keys : Annotated[Optional[conlist(StrictStr)], Field(description="A list of property keys from the \"Instrument\", \"Transaction\", \"LegalEntity\" or \"CustodianAccount\" domain to decorate onto the transactions. These take the format {domain}/{scope}/{code} e.g. \"Instrument/system/Name\" or \"Transaction/strategy/quantsignal\".")] = None, limit : Annotated[Optional[StrictInt], Field(description="When paginating, limit the number of returned results to this many. Defaults to 100 if not specified.")] = None, page : Annotated[Optional[constr(strict=True, max_length=500, min_length=1)], Field(description="The pagination token to use to continue listing transactions from a previous call to GetTransactions.")] = None, show_cancelled_transactions : Annotated[Optional[StrictBool], Field(description="Option to specify whether or not to include cancelled transactions, including previous versions of transactions which have since been amended. Defaults to False if not specified.")] = None, sort_by : Annotated[Optional[conlist(StrictStr)], Field(description="A list of field names or properties to sort by, each suffixed by \" ASC\" or \" DESC\".")] = None, async_req: Optional[bool]=True, **kwargs) -> VersionedResourceListOfTransaction: # noqa: E501
|
3855
3864
|
...
|
3856
3865
|
|
3857
3866
|
@validate_arguments
|
3858
|
-
def get_transactions_for_portfolio_group(self, scope : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The scope of the portfolio group.")], code : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The code of the portfolio group. Together with the scope this uniquely identifies the portfolio group.")], from_transaction_date : Annotated[Optional[StrictStr], Field(description="The lower bound effective datetime or cut label (inclusive) from which to retrieve the transactions. There is no lower bound if this is not specified.")] = None, to_transaction_date : Annotated[Optional[StrictStr], Field(description="The upper bound effective datetime or cut label (inclusive) from which to retrieve transactions. There is no upper bound if this is not specified.")] = None, as_at : Annotated[Optional[datetime], Field(description="The asAt datetime at which to retrieve the transactions. Defaults to return the latest version of each transaction if not specified.")] = None, filter : Annotated[Optional[constr(strict=True, max_length=16384, min_length=0)], Field(description="Expression to filter the result set. For example, to filter on the Transaction Type, use \"type eq 'Buy'\" Read more about filtering results from LUSID here https://support.lusid.com/filtering-results-from-lusid.")] = None, property_keys : Annotated[Optional[conlist(StrictStr)], Field(description="A list of property keys from the \"Instrument\", \"Transaction\", \"LegalEntity\" or \"CustodianAccount\" domain to decorate onto the transactions. These take the format {domain}/{scope}/{code} e.g. \"Instrument/system/Name\" or \"Transaction/strategy/quantsignal\".")] = None, limit : Annotated[Optional[StrictInt], Field(description="When paginating, limit the number of returned results to this many. Defaults to 100 if not specified.")] = None, page : Annotated[Optional[constr(strict=True, max_length=500, min_length=1)], Field(description="The pagination token to use to continue listing transactions from a previous call to GetTransactions.")] = None, show_cancelled_transactions : Annotated[Optional[StrictBool], Field(description="Option to specify whether or not to include cancelled transactions, including previous versions of transactions which have since been amended. Defaults to False if not specified.")] = None, sort_by : Annotated[Optional[conlist(StrictStr)], Field(description="A list of field names or properties to sort by, each suffixed by \" ASC\" or \" DESC\"")] = None, async_req: Optional[bool]=None, **kwargs) -> Union[VersionedResourceListOfTransaction, Awaitable[VersionedResourceListOfTransaction]]: # noqa: E501
|
3867
|
+
def get_transactions_for_portfolio_group(self, scope : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The scope of the portfolio group.")], code : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The code of the portfolio group. Together with the scope this uniquely identifies the portfolio group.")], from_transaction_date : Annotated[Optional[StrictStr], Field(description="The lower bound effective datetime or cut label (inclusive) from which to retrieve the transactions. There is no lower bound if this is not specified.")] = None, to_transaction_date : Annotated[Optional[StrictStr], Field(description="The upper bound effective datetime or cut label (inclusive) from which to retrieve transactions. There is no upper bound if this is not specified.")] = None, as_at : Annotated[Optional[datetime], Field(description="The asAt datetime at which to retrieve the transactions. Defaults to return the latest version of each transaction if not specified.")] = None, filter : Annotated[Optional[constr(strict=True, max_length=16384, min_length=0)], Field(description="Expression to filter the result set. For example, to filter on the Transaction Type, use \"type eq 'Buy'\" Read more about filtering results from LUSID here https://support.lusid.com/filtering-results-from-lusid.")] = None, property_keys : Annotated[Optional[conlist(StrictStr)], Field(description="A list of property keys from the \"Instrument\", \"Transaction\", \"LegalEntity\" or \"CustodianAccount\" domain to decorate onto the transactions. These take the format {domain}/{scope}/{code} e.g. \"Instrument/system/Name\" or \"Transaction/strategy/quantsignal\".")] = None, limit : Annotated[Optional[StrictInt], Field(description="When paginating, limit the number of returned results to this many. Defaults to 100 if not specified.")] = None, page : Annotated[Optional[constr(strict=True, max_length=500, min_length=1)], Field(description="The pagination token to use to continue listing transactions from a previous call to GetTransactions.")] = None, show_cancelled_transactions : Annotated[Optional[StrictBool], Field(description="Option to specify whether or not to include cancelled transactions, including previous versions of transactions which have since been amended. Defaults to False if not specified.")] = None, sort_by : Annotated[Optional[conlist(StrictStr)], Field(description="A list of field names or properties to sort by, each suffixed by \" ASC\" or \" DESC\".")] = None, async_req: Optional[bool]=None, **kwargs) -> Union[VersionedResourceListOfTransaction, Awaitable[VersionedResourceListOfTransaction]]: # noqa: E501
|
3859
3868
|
"""GetTransactionsForPortfolioGroup: Get transactions for transaction portfolios in a portfolio group # noqa: E501
|
3860
3869
|
|
3861
3870
|
Get transactions for transaction portfolios in a portfolio group over a given interval of effective time. When the specified portfolio in a portfolio group is a derived transaction portfolio, the returned set of transactions is the union set of all transactions of the parent (and any grandparents etc.) and the specified derived transaction portfolio itself. # noqa: E501
|
@@ -3885,14 +3894,13 @@ class PortfolioGroupsApi:
|
|
3885
3894
|
:type page: str
|
3886
3895
|
:param show_cancelled_transactions: Option to specify whether or not to include cancelled transactions, including previous versions of transactions which have since been amended. Defaults to False if not specified.
|
3887
3896
|
:type show_cancelled_transactions: bool
|
3888
|
-
:param sort_by: A list of field names or properties to sort by, each suffixed by \" ASC\" or \" DESC\"
|
3897
|
+
:param sort_by: A list of field names or properties to sort by, each suffixed by \" ASC\" or \" DESC\".
|
3889
3898
|
:type sort_by: List[str]
|
3890
3899
|
:param async_req: Whether to execute the request asynchronously.
|
3891
3900
|
:type async_req: bool, optional
|
3892
|
-
:param _request_timeout:
|
3893
|
-
|
3894
|
-
|
3895
|
-
(connection, read) timeouts.
|
3901
|
+
:param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
|
3902
|
+
:param opts: Configuration options for this request
|
3903
|
+
:type opts: ConfigurationOptions, optional
|
3896
3904
|
:return: Returns the result object.
|
3897
3905
|
If the method is called asynchronously,
|
3898
3906
|
returns the request thread.
|
@@ -3907,7 +3915,7 @@ class PortfolioGroupsApi:
|
|
3907
3915
|
return self.get_transactions_for_portfolio_group_with_http_info(scope, code, from_transaction_date, to_transaction_date, as_at, filter, property_keys, limit, page, show_cancelled_transactions, sort_by, **kwargs) # noqa: E501
|
3908
3916
|
|
3909
3917
|
@validate_arguments
|
3910
|
-
def get_transactions_for_portfolio_group_with_http_info(self, scope : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The scope of the portfolio group.")], code : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The code of the portfolio group. Together with the scope this uniquely identifies the portfolio group.")], from_transaction_date : Annotated[Optional[StrictStr], Field(description="The lower bound effective datetime or cut label (inclusive) from which to retrieve the transactions. There is no lower bound if this is not specified.")] = None, to_transaction_date : Annotated[Optional[StrictStr], Field(description="The upper bound effective datetime or cut label (inclusive) from which to retrieve transactions. There is no upper bound if this is not specified.")] = None, as_at : Annotated[Optional[datetime], Field(description="The asAt datetime at which to retrieve the transactions. Defaults to return the latest version of each transaction if not specified.")] = None, filter : Annotated[Optional[constr(strict=True, max_length=16384, min_length=0)], Field(description="Expression to filter the result set. For example, to filter on the Transaction Type, use \"type eq 'Buy'\" Read more about filtering results from LUSID here https://support.lusid.com/filtering-results-from-lusid.")] = None, property_keys : Annotated[Optional[conlist(StrictStr)], Field(description="A list of property keys from the \"Instrument\", \"Transaction\", \"LegalEntity\" or \"CustodianAccount\" domain to decorate onto the transactions. These take the format {domain}/{scope}/{code} e.g. \"Instrument/system/Name\" or \"Transaction/strategy/quantsignal\".")] = None, limit : Annotated[Optional[StrictInt], Field(description="When paginating, limit the number of returned results to this many. Defaults to 100 if not specified.")] = None, page : Annotated[Optional[constr(strict=True, max_length=500, min_length=1)], Field(description="The pagination token to use to continue listing transactions from a previous call to GetTransactions.")] = None, show_cancelled_transactions : Annotated[Optional[StrictBool], Field(description="Option to specify whether or not to include cancelled transactions, including previous versions of transactions which have since been amended. Defaults to False if not specified.")] = None, sort_by : Annotated[Optional[conlist(StrictStr)], Field(description="A list of field names or properties to sort by, each suffixed by \" ASC\" or \" DESC\"")] = None, **kwargs) -> ApiResponse: # noqa: E501
|
3918
|
+
def get_transactions_for_portfolio_group_with_http_info(self, scope : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The scope of the portfolio group.")], code : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The code of the portfolio group. Together with the scope this uniquely identifies the portfolio group.")], from_transaction_date : Annotated[Optional[StrictStr], Field(description="The lower bound effective datetime or cut label (inclusive) from which to retrieve the transactions. There is no lower bound if this is not specified.")] = None, to_transaction_date : Annotated[Optional[StrictStr], Field(description="The upper bound effective datetime or cut label (inclusive) from which to retrieve transactions. There is no upper bound if this is not specified.")] = None, as_at : Annotated[Optional[datetime], Field(description="The asAt datetime at which to retrieve the transactions. Defaults to return the latest version of each transaction if not specified.")] = None, filter : Annotated[Optional[constr(strict=True, max_length=16384, min_length=0)], Field(description="Expression to filter the result set. For example, to filter on the Transaction Type, use \"type eq 'Buy'\" Read more about filtering results from LUSID here https://support.lusid.com/filtering-results-from-lusid.")] = None, property_keys : Annotated[Optional[conlist(StrictStr)], Field(description="A list of property keys from the \"Instrument\", \"Transaction\", \"LegalEntity\" or \"CustodianAccount\" domain to decorate onto the transactions. These take the format {domain}/{scope}/{code} e.g. \"Instrument/system/Name\" or \"Transaction/strategy/quantsignal\".")] = None, limit : Annotated[Optional[StrictInt], Field(description="When paginating, limit the number of returned results to this many. Defaults to 100 if not specified.")] = None, page : Annotated[Optional[constr(strict=True, max_length=500, min_length=1)], Field(description="The pagination token to use to continue listing transactions from a previous call to GetTransactions.")] = None, show_cancelled_transactions : Annotated[Optional[StrictBool], Field(description="Option to specify whether or not to include cancelled transactions, including previous versions of transactions which have since been amended. Defaults to False if not specified.")] = None, sort_by : Annotated[Optional[conlist(StrictStr)], Field(description="A list of field names or properties to sort by, each suffixed by \" ASC\" or \" DESC\".")] = None, **kwargs) -> ApiResponse: # noqa: E501
|
3911
3919
|
"""GetTransactionsForPortfolioGroup: Get transactions for transaction portfolios in a portfolio group # noqa: E501
|
3912
3920
|
|
3913
3921
|
Get transactions for transaction portfolios in a portfolio group over a given interval of effective time. When the specified portfolio in a portfolio group is a derived transaction portfolio, the returned set of transactions is the union set of all transactions of the parent (and any grandparents etc.) and the specified derived transaction portfolio itself. # noqa: E501
|
@@ -3937,7 +3945,7 @@ class PortfolioGroupsApi:
|
|
3937
3945
|
:type page: str
|
3938
3946
|
:param show_cancelled_transactions: Option to specify whether or not to include cancelled transactions, including previous versions of transactions which have since been amended. Defaults to False if not specified.
|
3939
3947
|
:type show_cancelled_transactions: bool
|
3940
|
-
:param sort_by: A list of field names or properties to sort by, each suffixed by \" ASC\" or \" DESC\"
|
3948
|
+
:param sort_by: A list of field names or properties to sort by, each suffixed by \" ASC\" or \" DESC\".
|
3941
3949
|
:type sort_by: List[str]
|
3942
3950
|
:param async_req: Whether to execute the request asynchronously.
|
3943
3951
|
:type async_req: bool, optional
|
@@ -3949,10 +3957,9 @@ class PortfolioGroupsApi:
|
|
3949
3957
|
:param _return_http_data_only: response data instead of ApiResponse
|
3950
3958
|
object with status code, headers, etc
|
3951
3959
|
:type _return_http_data_only: bool, optional
|
3952
|
-
:param _request_timeout:
|
3953
|
-
|
3954
|
-
|
3955
|
-
(connection, read) timeouts.
|
3960
|
+
:param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
|
3961
|
+
:param opts: Configuration options for this request
|
3962
|
+
:type opts: ConfigurationOptions, optional
|
3956
3963
|
:param _request_auth: set to override the auth_settings for an a single
|
3957
3964
|
request; this effectively ignores the authentication
|
3958
3965
|
in the spec for a single request.
|
@@ -3987,7 +3994,8 @@ class PortfolioGroupsApi:
|
|
3987
3994
|
'_request_timeout',
|
3988
3995
|
'_request_auth',
|
3989
3996
|
'_content_type',
|
3990
|
-
'_headers'
|
3997
|
+
'_headers',
|
3998
|
+
'opts'
|
3991
3999
|
]
|
3992
4000
|
)
|
3993
4001
|
|
@@ -4079,6 +4087,7 @@ class PortfolioGroupsApi:
|
|
4079
4087
|
_return_http_data_only=_params.get('_return_http_data_only'), # noqa: E501
|
4080
4088
|
_preload_content=_params.get('_preload_content', True),
|
4081
4089
|
_request_timeout=_params.get('_request_timeout'),
|
4090
|
+
opts=_params.get('opts'),
|
4082
4091
|
collection_formats=_collection_formats,
|
4083
4092
|
_request_auth=_params.get('_request_auth'))
|
4084
4093
|
|
@@ -4092,7 +4101,7 @@ class PortfolioGroupsApi:
|
|
4092
4101
|
|
4093
4102
|
@validate_arguments
|
4094
4103
|
def list_portfolio_groups(self, scope : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The scope to list the portfolio groups in.")], effective_at : Annotated[Optional[constr(strict=True, max_length=256, min_length=0)], Field(description="The effective datetime or cut label at which to list the portfolio groups. Defaults to the current LUSID system datetime if not specified.")] = None, as_at : Annotated[Optional[datetime], Field(description="The asAt datetime at which to list the portfolio groups. Defaults to return the latest version of each portfolio group if not specified.")] = None, page : Annotated[Optional[constr(strict=True, max_length=500, min_length=1)], Field(description="The pagination token to use to continue listing portfolio groups from a previous call to list portfolio groups. This value is returned from the previous call. If a pagination token is provided the filter, effectiveAt, sortBy and asAt fields must not have changed since the original request.")] = None, limit : Annotated[Optional[conint(strict=True, le=5000, ge=1)], Field(description="When paginating, limit the number of returned results to this many. Defaults to no limit if not specified.")] = None, filter : Annotated[Optional[constr(strict=True, max_length=16384, min_length=0)], Field(description="Expression to filter the result set. For example, to filter on the Display Name, use \"displayName eq 'string'\" Read more about filtering results from LUSID here https://support.lusid.com/filtering-results-from-lusid.")] = None, sort_by : Annotated[Optional[conlist(StrictStr)], Field(description="A list of field names to sort by, each suffixed by \" ASC\" or \" DESC\"")] = None, related_entity_property_keys : Annotated[Optional[conlist(StrictStr)], Field(description="A list of property keys from any domain that supports relationships to decorate onto related entities. These must take the format {domain}/{scope}/{code}, for example 'Portfolio/Manager/Id'.")] = None, relationship_definition_ids : Annotated[Optional[conlist(StrictStr)], Field(description="A list of relationship definitions that are used to decorate related entities onto the portfolio groups in the response. These must take the form {relationshipDefinitionScope}/{relationshipDefinitionCode}.")] = None, async_req: Optional[bool]=None, **kwargs) -> Union[PagedResourceListOfPortfolioGroup, Awaitable[PagedResourceListOfPortfolioGroup]]: # noqa: E501
|
4095
|
-
"""
|
4104
|
+
"""ListPortfolioGroups: List portfolio groups # noqa: E501
|
4096
4105
|
|
4097
4106
|
List all the portfolio groups in a single scope. # noqa: E501
|
4098
4107
|
This method makes a synchronous HTTP request by default. To make an
|
@@ -4121,10 +4130,9 @@ class PortfolioGroupsApi:
|
|
4121
4130
|
:type relationship_definition_ids: List[str]
|
4122
4131
|
:param async_req: Whether to execute the request asynchronously.
|
4123
4132
|
:type async_req: bool, optional
|
4124
|
-
:param _request_timeout:
|
4125
|
-
|
4126
|
-
|
4127
|
-
(connection, read) timeouts.
|
4133
|
+
:param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
|
4134
|
+
:param opts: Configuration options for this request
|
4135
|
+
:type opts: ConfigurationOptions, optional
|
4128
4136
|
:return: Returns the result object.
|
4129
4137
|
If the method is called asynchronously,
|
4130
4138
|
returns the request thread.
|
@@ -4140,7 +4148,7 @@ class PortfolioGroupsApi:
|
|
4140
4148
|
|
4141
4149
|
@validate_arguments
|
4142
4150
|
def list_portfolio_groups_with_http_info(self, scope : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The scope to list the portfolio groups in.")], effective_at : Annotated[Optional[constr(strict=True, max_length=256, min_length=0)], Field(description="The effective datetime or cut label at which to list the portfolio groups. Defaults to the current LUSID system datetime if not specified.")] = None, as_at : Annotated[Optional[datetime], Field(description="The asAt datetime at which to list the portfolio groups. Defaults to return the latest version of each portfolio group if not specified.")] = None, page : Annotated[Optional[constr(strict=True, max_length=500, min_length=1)], Field(description="The pagination token to use to continue listing portfolio groups from a previous call to list portfolio groups. This value is returned from the previous call. If a pagination token is provided the filter, effectiveAt, sortBy and asAt fields must not have changed since the original request.")] = None, limit : Annotated[Optional[conint(strict=True, le=5000, ge=1)], Field(description="When paginating, limit the number of returned results to this many. Defaults to no limit if not specified.")] = None, filter : Annotated[Optional[constr(strict=True, max_length=16384, min_length=0)], Field(description="Expression to filter the result set. For example, to filter on the Display Name, use \"displayName eq 'string'\" Read more about filtering results from LUSID here https://support.lusid.com/filtering-results-from-lusid.")] = None, sort_by : Annotated[Optional[conlist(StrictStr)], Field(description="A list of field names to sort by, each suffixed by \" ASC\" or \" DESC\"")] = None, related_entity_property_keys : Annotated[Optional[conlist(StrictStr)], Field(description="A list of property keys from any domain that supports relationships to decorate onto related entities. These must take the format {domain}/{scope}/{code}, for example 'Portfolio/Manager/Id'.")] = None, relationship_definition_ids : Annotated[Optional[conlist(StrictStr)], Field(description="A list of relationship definitions that are used to decorate related entities onto the portfolio groups in the response. These must take the form {relationshipDefinitionScope}/{relationshipDefinitionCode}.")] = None, **kwargs) -> ApiResponse: # noqa: E501
|
4143
|
-
"""
|
4151
|
+
"""ListPortfolioGroups: List portfolio groups # noqa: E501
|
4144
4152
|
|
4145
4153
|
List all the portfolio groups in a single scope. # noqa: E501
|
4146
4154
|
This method makes a synchronous HTTP request by default. To make an
|
@@ -4177,10 +4185,9 @@ class PortfolioGroupsApi:
|
|
4177
4185
|
:param _return_http_data_only: response data instead of ApiResponse
|
4178
4186
|
object with status code, headers, etc
|
4179
4187
|
:type _return_http_data_only: bool, optional
|
4180
|
-
:param _request_timeout:
|
4181
|
-
|
4182
|
-
|
4183
|
-
(connection, read) timeouts.
|
4188
|
+
:param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
|
4189
|
+
:param opts: Configuration options for this request
|
4190
|
+
:type opts: ConfigurationOptions, optional
|
4184
4191
|
:param _request_auth: set to override the auth_settings for an a single
|
4185
4192
|
request; this effectively ignores the authentication
|
4186
4193
|
in the spec for a single request.
|
@@ -4213,7 +4220,8 @@ class PortfolioGroupsApi:
|
|
4213
4220
|
'_request_timeout',
|
4214
4221
|
'_request_auth',
|
4215
4222
|
'_content_type',
|
4216
|
-
'_headers'
|
4223
|
+
'_headers',
|
4224
|
+
'opts'
|
4217
4225
|
]
|
4218
4226
|
)
|
4219
4227
|
|
@@ -4300,6 +4308,7 @@ class PortfolioGroupsApi:
|
|
4300
4308
|
_return_http_data_only=_params.get('_return_http_data_only'), # noqa: E501
|
4301
4309
|
_preload_content=_params.get('_preload_content', True),
|
4302
4310
|
_request_timeout=_params.get('_request_timeout'),
|
4311
|
+
opts=_params.get('opts'),
|
4303
4312
|
collection_formats=_collection_formats,
|
4304
4313
|
_request_auth=_params.get('_request_auth'))
|
4305
4314
|
|
@@ -4334,10 +4343,9 @@ class PortfolioGroupsApi:
|
|
4334
4343
|
:type effective_until: datetime
|
4335
4344
|
:param async_req: Whether to execute the request asynchronously.
|
4336
4345
|
:type async_req: bool, optional
|
4337
|
-
:param _request_timeout:
|
4338
|
-
|
4339
|
-
|
4340
|
-
(connection, read) timeouts.
|
4346
|
+
:param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
|
4347
|
+
:param opts: Configuration options for this request
|
4348
|
+
:type opts: ConfigurationOptions, optional
|
4341
4349
|
:return: Returns the result object.
|
4342
4350
|
If the method is called asynchronously,
|
4343
4351
|
returns the request thread.
|
@@ -4382,10 +4390,9 @@ class PortfolioGroupsApi:
|
|
4382
4390
|
:param _return_http_data_only: response data instead of ApiResponse
|
4383
4391
|
object with status code, headers, etc
|
4384
4392
|
:type _return_http_data_only: bool, optional
|
4385
|
-
:param _request_timeout:
|
4386
|
-
|
4387
|
-
|
4388
|
-
(connection, read) timeouts.
|
4393
|
+
:param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
|
4394
|
+
:param opts: Configuration options for this request
|
4395
|
+
:type opts: ConfigurationOptions, optional
|
4389
4396
|
:param _request_auth: set to override the auth_settings for an a single
|
4390
4397
|
request; this effectively ignores the authentication
|
4391
4398
|
in the spec for a single request.
|
@@ -4414,7 +4421,8 @@ class PortfolioGroupsApi:
|
|
4414
4421
|
'_request_timeout',
|
4415
4422
|
'_request_auth',
|
4416
4423
|
'_content_type',
|
4417
|
-
'_headers'
|
4424
|
+
'_headers',
|
4425
|
+
'opts'
|
4418
4426
|
]
|
4419
4427
|
)
|
4420
4428
|
|
@@ -4493,6 +4501,7 @@ class PortfolioGroupsApi:
|
|
4493
4501
|
_return_http_data_only=_params.get('_return_http_data_only'), # noqa: E501
|
4494
4502
|
_preload_content=_params.get('_preload_content', True),
|
4495
4503
|
_request_timeout=_params.get('_request_timeout'),
|
4504
|
+
opts=_params.get('opts'),
|
4496
4505
|
collection_formats=_collection_formats,
|
4497
4506
|
_request_auth=_params.get('_request_auth'))
|
4498
4507
|
|
@@ -4525,10 +4534,9 @@ class PortfolioGroupsApi:
|
|
4525
4534
|
:type update_portfolio_group_request: UpdatePortfolioGroupRequest
|
4526
4535
|
:param async_req: Whether to execute the request asynchronously.
|
4527
4536
|
:type async_req: bool, optional
|
4528
|
-
:param _request_timeout:
|
4529
|
-
|
4530
|
-
|
4531
|
-
(connection, read) timeouts.
|
4537
|
+
:param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
|
4538
|
+
:param opts: Configuration options for this request
|
4539
|
+
:type opts: ConfigurationOptions, optional
|
4532
4540
|
:return: Returns the result object.
|
4533
4541
|
If the method is called asynchronously,
|
4534
4542
|
returns the request thread.
|
@@ -4571,10 +4579,9 @@ class PortfolioGroupsApi:
|
|
4571
4579
|
:param _return_http_data_only: response data instead of ApiResponse
|
4572
4580
|
object with status code, headers, etc
|
4573
4581
|
:type _return_http_data_only: bool, optional
|
4574
|
-
:param _request_timeout:
|
4575
|
-
|
4576
|
-
|
4577
|
-
(connection, read) timeouts.
|
4582
|
+
:param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
|
4583
|
+
:param opts: Configuration options for this request
|
4584
|
+
:type opts: ConfigurationOptions, optional
|
4578
4585
|
:param _request_auth: set to override the auth_settings for an a single
|
4579
4586
|
request; this effectively ignores the authentication
|
4580
4587
|
in the spec for a single request.
|
@@ -4602,7 +4609,8 @@ class PortfolioGroupsApi:
|
|
4602
4609
|
'_request_timeout',
|
4603
4610
|
'_request_auth',
|
4604
4611
|
'_content_type',
|
4605
|
-
'_headers'
|
4612
|
+
'_headers',
|
4613
|
+
'opts'
|
4606
4614
|
]
|
4607
4615
|
)
|
4608
4616
|
|
@@ -4675,6 +4683,7 @@ class PortfolioGroupsApi:
|
|
4675
4683
|
_return_http_data_only=_params.get('_return_http_data_only'), # noqa: E501
|
4676
4684
|
_preload_content=_params.get('_preload_content', True),
|
4677
4685
|
_request_timeout=_params.get('_request_timeout'),
|
4686
|
+
opts=_params.get('opts'),
|
4678
4687
|
collection_formats=_collection_formats,
|
4679
4688
|
_request_auth=_params.get('_request_auth'))
|
4680
4689
|
|
@@ -4705,10 +4714,9 @@ class PortfolioGroupsApi:
|
|
4705
4714
|
:type request_body: Dict[str, ModelProperty]
|
4706
4715
|
:param async_req: Whether to execute the request asynchronously.
|
4707
4716
|
:type async_req: bool, optional
|
4708
|
-
:param _request_timeout:
|
4709
|
-
|
4710
|
-
|
4711
|
-
(connection, read) timeouts.
|
4717
|
+
:param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
|
4718
|
+
:param opts: Configuration options for this request
|
4719
|
+
:type opts: ConfigurationOptions, optional
|
4712
4720
|
:return: Returns the result object.
|
4713
4721
|
If the method is called asynchronously,
|
4714
4722
|
returns the request thread.
|
@@ -4749,10 +4757,9 @@ class PortfolioGroupsApi:
|
|
4749
4757
|
:param _return_http_data_only: response data instead of ApiResponse
|
4750
4758
|
object with status code, headers, etc
|
4751
4759
|
:type _return_http_data_only: bool, optional
|
4752
|
-
:param _request_timeout:
|
4753
|
-
|
4754
|
-
|
4755
|
-
(connection, read) timeouts.
|
4760
|
+
:param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
|
4761
|
+
:param opts: Configuration options for this request
|
4762
|
+
:type opts: ConfigurationOptions, optional
|
4756
4763
|
:param _request_auth: set to override the auth_settings for an a single
|
4757
4764
|
request; this effectively ignores the authentication
|
4758
4765
|
in the spec for a single request.
|
@@ -4779,7 +4786,8 @@ class PortfolioGroupsApi:
|
|
4779
4786
|
'_request_timeout',
|
4780
4787
|
'_request_auth',
|
4781
4788
|
'_content_type',
|
4782
|
-
'_headers'
|
4789
|
+
'_headers',
|
4790
|
+
'opts'
|
4783
4791
|
]
|
4784
4792
|
)
|
4785
4793
|
|
@@ -4849,6 +4857,7 @@ class PortfolioGroupsApi:
|
|
4849
4857
|
_return_http_data_only=_params.get('_return_http_data_only'), # noqa: E501
|
4850
4858
|
_preload_content=_params.get('_preload_content', True),
|
4851
4859
|
_request_timeout=_params.get('_request_timeout'),
|
4860
|
+
opts=_params.get('opts'),
|
4852
4861
|
collection_formats=_collection_formats,
|
4853
4862
|
_request_auth=_params.get('_request_auth'))
|
4854
4863
|
|
@@ -4862,7 +4871,7 @@ class PortfolioGroupsApi:
|
|
4862
4871
|
|
4863
4872
|
@validate_arguments
|
4864
4873
|
def upsert_portfolio_group_access_metadata(self, scope : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The scope of the Portfolio Group")], code : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The Portfolio Group code")], metadata_key : Annotated[constr(strict=True, max_length=256, min_length=1), Field(..., description="Key of the access metadata entry to upsert")], upsert_portfolio_group_access_metadata_request : Annotated[UpsertPortfolioGroupAccessMetadataRequest, Field(..., description="The Portfolio Group Access Metadata rule to upsert")], effective_at : Annotated[Optional[StrictStr], Field(description="The date this rule will be 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
|
4865
|
-
"""
|
4874
|
+
"""UpsertPortfolioGroupAccessMetadata: Upsert a Portfolio Group Access Metadata entry associated with a specific metadataKey. This creates or updates the data in LUSID. # noqa: E501
|
4866
4875
|
|
4867
4876
|
Update or insert one Portfolio Group Access Metadata Entry 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 Group 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 exist with different effective at dates, when resources are accessed the rule that is active for the current time will be fetched. # noqa: E501
|
4868
4877
|
This method makes a synchronous HTTP request by default. To make an
|
@@ -4885,10 +4894,9 @@ class PortfolioGroupsApi:
|
|
4885
4894
|
:type effective_until: datetime
|
4886
4895
|
:param async_req: Whether to execute the request asynchronously.
|
4887
4896
|
:type async_req: bool, optional
|
4888
|
-
:param _request_timeout:
|
4889
|
-
|
4890
|
-
|
4891
|
-
(connection, read) timeouts.
|
4897
|
+
:param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
|
4898
|
+
:param opts: Configuration options for this request
|
4899
|
+
:type opts: ConfigurationOptions, optional
|
4892
4900
|
:return: Returns the result object.
|
4893
4901
|
If the method is called asynchronously,
|
4894
4902
|
returns the request thread.
|
@@ -4904,7 +4912,7 @@ class PortfolioGroupsApi:
|
|
4904
4912
|
|
4905
4913
|
@validate_arguments
|
4906
4914
|
def upsert_portfolio_group_access_metadata_with_http_info(self, scope : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The scope of the Portfolio Group")], code : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The Portfolio Group code")], metadata_key : Annotated[constr(strict=True, max_length=256, min_length=1), Field(..., description="Key of the access metadata entry to upsert")], upsert_portfolio_group_access_metadata_request : Annotated[UpsertPortfolioGroupAccessMetadataRequest, Field(..., description="The Portfolio Group Access Metadata rule to upsert")], effective_at : Annotated[Optional[StrictStr], Field(description="The date this rule will be 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
|
4907
|
-
"""
|
4915
|
+
"""UpsertPortfolioGroupAccessMetadata: Upsert a Portfolio Group Access Metadata entry associated with a specific metadataKey. This creates or updates the data in LUSID. # noqa: E501
|
4908
4916
|
|
4909
4917
|
Update or insert one Portfolio Group Access Metadata Entry 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 Group 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 exist with different effective at dates, when resources are accessed the rule that is active for the current time will be fetched. # noqa: E501
|
4910
4918
|
This method makes a synchronous HTTP request by default. To make an
|
@@ -4935,10 +4943,9 @@ class PortfolioGroupsApi:
|
|
4935
4943
|
:param _return_http_data_only: response data instead of ApiResponse
|
4936
4944
|
object with status code, headers, etc
|
4937
4945
|
:type _return_http_data_only: bool, optional
|
4938
|
-
:param _request_timeout:
|
4939
|
-
|
4940
|
-
|
4941
|
-
(connection, read) timeouts.
|
4946
|
+
:param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
|
4947
|
+
:param opts: Configuration options for this request
|
4948
|
+
:type opts: ConfigurationOptions, optional
|
4942
4949
|
:param _request_auth: set to override the auth_settings for an a single
|
4943
4950
|
request; this effectively ignores the authentication
|
4944
4951
|
in the spec for a single request.
|
@@ -4968,7 +4975,8 @@ class PortfolioGroupsApi:
|
|
4968
4975
|
'_request_timeout',
|
4969
4976
|
'_request_auth',
|
4970
4977
|
'_content_type',
|
4971
|
-
'_headers'
|
4978
|
+
'_headers',
|
4979
|
+
'opts'
|
4972
4980
|
]
|
4973
4981
|
)
|
4974
4982
|
|
@@ -5050,5 +5058,6 @@ class PortfolioGroupsApi:
|
|
5050
5058
|
_return_http_data_only=_params.get('_return_http_data_only'), # noqa: E501
|
5051
5059
|
_preload_content=_params.get('_preload_content', True),
|
5052
5060
|
_request_timeout=_params.get('_request_timeout'),
|
5061
|
+
opts=_params.get('opts'),
|
5053
5062
|
collection_formats=_collection_formats,
|
5054
5063
|
_request_auth=_params.get('_request_auth'))
|