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

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (72) hide show
  1. lusid/__init__.py +40 -8
  2. lusid/api/__init__.py +2 -2
  3. lusid/api/abor_api.py +8 -16
  4. lusid/api/allocations_api.py +2 -2
  5. lusid/api/chart_of_accounts_api.py +174 -0
  6. lusid/api/custom_entities_api.py +2 -2
  7. lusid/api/entities_api.py +180 -0
  8. lusid/api/{fund_configurations_api.py → fund_configuration_entities_api.py} +1 -1
  9. lusid/api/group_reconciliations_api.py +1418 -27
  10. lusid/api/instruments_api.py +6 -6
  11. lusid/api/legal_entities_api.py +4 -4
  12. lusid/api/order_graph_api.py +4 -4
  13. lusid/api/portfolios_api.py +27 -30
  14. lusid/api/reference_lists_api.py +2 -2
  15. lusid/api/reference_portfolio_api.py +176 -0
  16. lusid/api/transaction_portfolios_api.py +2 -2
  17. lusid/configuration.py +1 -1
  18. lusid/models/__init__.py +38 -6
  19. lusid/models/access_metadata_value.py +1 -1
  20. lusid/models/address_key_list.py +3 -3
  21. lusid/models/amount.py +69 -0
  22. lusid/models/batch_upsert_portfolio_access_metadata_request.py +27 -17
  23. lusid/models/batch_upsert_portfolio_access_metadata_response.py +56 -16
  24. lusid/models/{metadata_key_value.py → batch_upsert_portfolio_access_metadata_response_item.py} +15 -9
  25. lusid/models/{component_rule.py → break_code_source.py} +17 -21
  26. lusid/models/create_group_reconciliation_definition_request.py +113 -0
  27. lusid/models/custom_entity_entity.py +146 -0
  28. lusid/models/decimal_list.py +3 -3
  29. lusid/models/diary_entry_request.py +10 -1
  30. lusid/models/fixed_schedule.py +3 -3
  31. lusid/models/float_schedule.py +4 -4
  32. lusid/models/flow_conventions.py +7 -1
  33. lusid/models/fund_configuration.py +44 -17
  34. lusid/models/fund_configuration_request.py +31 -19
  35. lusid/models/fund_id_list.py +99 -0
  36. lusid/models/group_reconciliation_aggregate_attribute_rule.py +2 -2
  37. lusid/models/group_reconciliation_aggregate_comparison_rule_operand.py +1 -1
  38. lusid/models/group_reconciliation_core_comparison_rule_operand.py +1 -1
  39. lusid/models/group_reconciliation_definition.py +136 -0
  40. lusid/models/group_reconciliation_definition_comparison_ruleset_ids.py +83 -0
  41. lusid/models/group_reconciliation_definition_currencies.py +71 -0
  42. lusid/models/group_reconciliation_definition_portfolio_entity_ids.py +86 -0
  43. lusid/models/group_reconciliation_definition_recipe_ids.py +78 -0
  44. lusid/models/instrument.py +7 -1
  45. lusid/models/instrument_definition.py +8 -2
  46. lusid/models/instrument_list.py +3 -3
  47. lusid/models/market_data_key_rule.py +5 -3
  48. lusid/models/market_data_specific_rule.py +5 -3
  49. lusid/models/merger_event.py +19 -19
  50. lusid/models/output_transaction.py +9 -2
  51. lusid/models/paged_resource_list_of_group_reconciliation_comparison_ruleset.py +113 -0
  52. lusid/models/paged_resource_list_of_group_reconciliation_definition.py +113 -0
  53. lusid/models/portfolio_group_id_list.py +3 -3
  54. lusid/models/portfolio_id_list.py +3 -3
  55. lusid/models/property_list.py +3 -3
  56. lusid/models/reference_list.py +6 -5
  57. lusid/models/reference_list_type.py +1 -0
  58. lusid/models/settlement_cycle.py +79 -0
  59. lusid/models/share_class_dealing_breakdown.py +3 -2
  60. lusid/models/stock_dividend_event.py +17 -3
  61. lusid/models/string_list.py +3 -3
  62. lusid/models/transaction.py +9 -2
  63. lusid/models/transaction_date_windows.py +85 -0
  64. lusid/models/transaction_request.py +9 -2
  65. lusid/models/update_group_reconciliation_comparison_ruleset_request.py +91 -0
  66. lusid/models/update_group_reconciliation_definition_request.py +107 -0
  67. lusid/models/upsert_reference_portfolio_constituent_properties_request.py +84 -0
  68. lusid/models/upsert_reference_portfolio_constituent_properties_response.py +115 -0
  69. {lusid_sdk-2.1.405.dist-info → lusid_sdk-2.1.423.dist-info}/METADATA +50 -23
  70. {lusid_sdk-2.1.405.dist-info → lusid_sdk-2.1.423.dist-info}/RECORD +71 -55
  71. lusid/models/metadata_key_value_response.py +0 -86
  72. {lusid_sdk-2.1.405.dist-info → lusid_sdk-2.1.423.dist-info}/WHEEL +0 -0
lusid/__init__.py CHANGED
@@ -42,7 +42,7 @@ from lusid.api.derived_transaction_portfolios_api import DerivedTransactionPortf
42
42
  from lusid.api.entities_api import EntitiesApi
43
43
  from lusid.api.executions_api import ExecutionsApi
44
44
  from lusid.api.fee_types_api import FeeTypesApi
45
- from lusid.api.fund_configurations_api import FundConfigurationsApi
45
+ from lusid.api.fund_configuration_entities_api import FundConfigurationEntitiesApi
46
46
  from lusid.api.funds_api import FundsApi
47
47
  from lusid.api.group_reconciliations_api import GroupReconciliationsApi
48
48
  from lusid.api.instrument_event_types_api import InstrumentEventTypesApi
@@ -148,6 +148,7 @@ from lusid.models.allocation_set_request import AllocationSetRequest
148
148
  from lusid.models.amortisation_event import AmortisationEvent
149
149
  from lusid.models.amortisation_rule import AmortisationRule
150
150
  from lusid.models.amortisation_rule_set import AmortisationRuleSet
151
+ from lusid.models.amount import Amount
151
152
  from lusid.models.annul_quotes_response import AnnulQuotesResponse
152
153
  from lusid.models.annul_single_structured_data_response import AnnulSingleStructuredDataResponse
153
154
  from lusid.models.annul_structured_data_response import AnnulStructuredDataResponse
@@ -161,6 +162,7 @@ from lusid.models.batch_adjust_holdings_response import BatchAdjustHoldingsRespo
161
162
  from lusid.models.batch_upsert_instrument_properties_response import BatchUpsertInstrumentPropertiesResponse
162
163
  from lusid.models.batch_upsert_portfolio_access_metadata_request import BatchUpsertPortfolioAccessMetadataRequest
163
164
  from lusid.models.batch_upsert_portfolio_access_metadata_response import BatchUpsertPortfolioAccessMetadataResponse
165
+ from lusid.models.batch_upsert_portfolio_access_metadata_response_item import BatchUpsertPortfolioAccessMetadataResponseItem
164
166
  from lusid.models.batch_upsert_portfolio_transactions_response import BatchUpsertPortfolioTransactionsResponse
165
167
  from lusid.models.batch_upsert_property_definition_properties_response import BatchUpsertPropertyDefinitionPropertiesResponse
166
168
  from lusid.models.block import Block
@@ -183,6 +185,7 @@ from lusid.models.bool_compliance_parameter import BoolComplianceParameter
183
185
  from lusid.models.bool_list_compliance_parameter import BoolListComplianceParameter
184
186
  from lusid.models.branch_step import BranchStep
185
187
  from lusid.models.branch_step_request import BranchStepRequest
188
+ from lusid.models.break_code_source import BreakCodeSource
186
189
  from lusid.models.bucketed_cash_flow_request import BucketedCashFlowRequest
187
190
  from lusid.models.bucketed_cash_flow_response import BucketedCashFlowResponse
188
191
  from lusid.models.bucketing_schedule import BucketingSchedule
@@ -266,7 +269,6 @@ from lusid.models.compliance_template_variation import ComplianceTemplateVariati
266
269
  from lusid.models.compliance_template_variation_dto import ComplianceTemplateVariationDto
267
270
  from lusid.models.compliance_template_variation_request import ComplianceTemplateVariationRequest
268
271
  from lusid.models.component_filter import ComponentFilter
269
- from lusid.models.component_rule import ComponentRule
270
272
  from lusid.models.component_transaction import ComponentTransaction
271
273
  from lusid.models.composite_breakdown import CompositeBreakdown
272
274
  from lusid.models.composite_breakdown_request import CompositeBreakdownRequest
@@ -300,6 +302,7 @@ from lusid.models.create_date_request import CreateDateRequest
300
302
  from lusid.models.create_derived_property_definition_request import CreateDerivedPropertyDefinitionRequest
301
303
  from lusid.models.create_derived_transaction_portfolio_request import CreateDerivedTransactionPortfolioRequest
302
304
  from lusid.models.create_group_reconciliation_comparison_ruleset_request import CreateGroupReconciliationComparisonRulesetRequest
305
+ from lusid.models.create_group_reconciliation_definition_request import CreateGroupReconciliationDefinitionRequest
303
306
  from lusid.models.create_portfolio_details import CreatePortfolioDetails
304
307
  from lusid.models.create_portfolio_group_request import CreatePortfolioGroupRequest
305
308
  from lusid.models.create_property_definition_request import CreatePropertyDefinitionRequest
@@ -330,6 +333,7 @@ from lusid.models.custodian_account_request import CustodianAccountRequest
330
333
  from lusid.models.custodian_accounts_upsert_response import CustodianAccountsUpsertResponse
331
334
  from lusid.models.custom_entity_definition import CustomEntityDefinition
332
335
  from lusid.models.custom_entity_definition_request import CustomEntityDefinitionRequest
336
+ from lusid.models.custom_entity_entity import CustomEntityEntity
333
337
  from lusid.models.custom_entity_field import CustomEntityField
334
338
  from lusid.models.custom_entity_field_definition import CustomEntityFieldDefinition
335
339
  from lusid.models.custom_entity_id import CustomEntityId
@@ -441,6 +445,7 @@ from lusid.models.fund_configuration import FundConfiguration
441
445
  from lusid.models.fund_configuration_properties import FundConfigurationProperties
442
446
  from lusid.models.fund_configuration_request import FundConfigurationRequest
443
447
  from lusid.models.fund_details import FundDetails
448
+ from lusid.models.fund_id_list import FundIdList
444
449
  from lusid.models.fund_pnl_breakdown import FundPnlBreakdown
445
450
  from lusid.models.fund_previous_nav import FundPreviousNAV
446
451
  from lusid.models.fund_properties import FundProperties
@@ -503,6 +508,11 @@ from lusid.models.group_reconciliation_comparison_rule_tolerance import GroupRec
503
508
  from lusid.models.group_reconciliation_comparison_ruleset import GroupReconciliationComparisonRuleset
504
509
  from lusid.models.group_reconciliation_core_attribute_rule import GroupReconciliationCoreAttributeRule
505
510
  from lusid.models.group_reconciliation_core_comparison_rule_operand import GroupReconciliationCoreComparisonRuleOperand
511
+ from lusid.models.group_reconciliation_definition import GroupReconciliationDefinition
512
+ from lusid.models.group_reconciliation_definition_comparison_ruleset_ids import GroupReconciliationDefinitionComparisonRulesetIds
513
+ from lusid.models.group_reconciliation_definition_currencies import GroupReconciliationDefinitionCurrencies
514
+ from lusid.models.group_reconciliation_definition_portfolio_entity_ids import GroupReconciliationDefinitionPortfolioEntityIds
515
+ from lusid.models.group_reconciliation_definition_recipe_ids import GroupReconciliationDefinitionRecipeIds
506
516
  from lusid.models.grouped_result_of_address_key import GroupedResultOfAddressKey
507
517
  from lusid.models.holding_adjustment import HoldingAdjustment
508
518
  from lusid.models.holding_adjustment_with_date import HoldingAdjustmentWithDate
@@ -600,8 +610,6 @@ from lusid.models.market_quote import MarketQuote
600
610
  from lusid.models.match_criterion import MatchCriterion
601
611
  from lusid.models.maturity_event import MaturityEvent
602
612
  from lusid.models.merger_event import MergerEvent
603
- from lusid.models.metadata_key_value import MetadataKeyValue
604
- from lusid.models.metadata_key_value_response import MetadataKeyValueResponse
605
613
  from lusid.models.metric_value import MetricValue
606
614
  from lusid.models.model_options import ModelOptions
607
615
  from lusid.models.model_options_type import ModelOptionsType
@@ -689,6 +697,8 @@ from lusid.models.paged_resource_list_of_fee_type import PagedResourceListOfFeeT
689
697
  from lusid.models.paged_resource_list_of_fund import PagedResourceListOfFund
690
698
  from lusid.models.paged_resource_list_of_fund_configuration import PagedResourceListOfFundConfiguration
691
699
  from lusid.models.paged_resource_list_of_general_ledger_profile_response import PagedResourceListOfGeneralLedgerProfileResponse
700
+ from lusid.models.paged_resource_list_of_group_reconciliation_comparison_ruleset import PagedResourceListOfGroupReconciliationComparisonRuleset
701
+ from lusid.models.paged_resource_list_of_group_reconciliation_definition import PagedResourceListOfGroupReconciliationDefinition
692
702
  from lusid.models.paged_resource_list_of_instrument import PagedResourceListOfInstrument
693
703
  from lusid.models.paged_resource_list_of_instrument_event_holder import PagedResourceListOfInstrumentEventHolder
694
704
  from lusid.models.paged_resource_list_of_instrument_event_instruction import PagedResourceListOfInstrumentEventInstruction
@@ -954,6 +964,7 @@ from lusid.models.set_person_properties_request import SetPersonPropertiesReques
954
964
  from lusid.models.set_share_class_instruments_request import SetShareClassInstrumentsRequest
955
965
  from lusid.models.set_transaction_configuration_alias import SetTransactionConfigurationAlias
956
966
  from lusid.models.set_transaction_configuration_source_request import SetTransactionConfigurationSourceRequest
967
+ from lusid.models.settlement_cycle import SettlementCycle
957
968
  from lusid.models.settlement_schedule import SettlementSchedule
958
969
  from lusid.models.share_class_amount import ShareClassAmount
959
970
  from lusid.models.share_class_breakdown import ShareClassBreakdown
@@ -1013,6 +1024,7 @@ from lusid.models.transaction_configuration_movement_data import TransactionConf
1013
1024
  from lusid.models.transaction_configuration_movement_data_request import TransactionConfigurationMovementDataRequest
1014
1025
  from lusid.models.transaction_configuration_type_alias import TransactionConfigurationTypeAlias
1015
1026
  from lusid.models.transaction_currency_and_amount import TransactionCurrencyAndAmount
1027
+ from lusid.models.transaction_date_windows import TransactionDateWindows
1016
1028
  from lusid.models.transaction_diagnostics import TransactionDiagnostics
1017
1029
  from lusid.models.transaction_field_map import TransactionFieldMap
1018
1030
  from lusid.models.transaction_price import TransactionPrice
@@ -1070,6 +1082,8 @@ from lusid.models.update_cut_label_definition_request import UpdateCutLabelDefin
1070
1082
  from lusid.models.update_data_type_request import UpdateDataTypeRequest
1071
1083
  from lusid.models.update_derived_property_definition_request import UpdateDerivedPropertyDefinitionRequest
1072
1084
  from lusid.models.update_fee_type_request import UpdateFeeTypeRequest
1085
+ from lusid.models.update_group_reconciliation_comparison_ruleset_request import UpdateGroupReconciliationComparisonRulesetRequest
1086
+ from lusid.models.update_group_reconciliation_definition_request import UpdateGroupReconciliationDefinitionRequest
1073
1087
  from lusid.models.update_instrument_identifier_request import UpdateInstrumentIdentifierRequest
1074
1088
  from lusid.models.update_orders_response import UpdateOrdersResponse
1075
1089
  from lusid.models.update_placements_response import UpdatePlacementsResponse
@@ -1114,6 +1128,8 @@ from lusid.models.upsert_quote_request import UpsertQuoteRequest
1114
1128
  from lusid.models.upsert_quotes_response import UpsertQuotesResponse
1115
1129
  from lusid.models.upsert_recipe_composer_request import UpsertRecipeComposerRequest
1116
1130
  from lusid.models.upsert_recipe_request import UpsertRecipeRequest
1131
+ from lusid.models.upsert_reference_portfolio_constituent_properties_request import UpsertReferencePortfolioConstituentPropertiesRequest
1132
+ from lusid.models.upsert_reference_portfolio_constituent_properties_response import UpsertReferencePortfolioConstituentPropertiesResponse
1117
1133
  from lusid.models.upsert_reference_portfolio_constituents_request import UpsertReferencePortfolioConstituentsRequest
1118
1134
  from lusid.models.upsert_reference_portfolio_constituents_response import UpsertReferencePortfolioConstituentsResponse
1119
1135
  from lusid.models.upsert_result_values_data_request import UpsertResultValuesDataRequest
@@ -1202,7 +1218,7 @@ __all__ = [
1202
1218
  "EntitiesApi",
1203
1219
  "ExecutionsApi",
1204
1220
  "FeeTypesApi",
1205
- "FundConfigurationsApi",
1221
+ "FundConfigurationEntitiesApi",
1206
1222
  "FundsApi",
1207
1223
  "GroupReconciliationsApi",
1208
1224
  "InstrumentEventTypesApi",
@@ -1298,6 +1314,7 @@ __all__ = [
1298
1314
  "AmortisationEvent",
1299
1315
  "AmortisationRule",
1300
1316
  "AmortisationRuleSet",
1317
+ "Amount",
1301
1318
  "AnnulQuotesResponse",
1302
1319
  "AnnulSingleStructuredDataResponse",
1303
1320
  "AnnulStructuredDataResponse",
@@ -1311,6 +1328,7 @@ __all__ = [
1311
1328
  "BatchUpsertInstrumentPropertiesResponse",
1312
1329
  "BatchUpsertPortfolioAccessMetadataRequest",
1313
1330
  "BatchUpsertPortfolioAccessMetadataResponse",
1331
+ "BatchUpsertPortfolioAccessMetadataResponseItem",
1314
1332
  "BatchUpsertPortfolioTransactionsResponse",
1315
1333
  "BatchUpsertPropertyDefinitionPropertiesResponse",
1316
1334
  "Block",
@@ -1333,6 +1351,7 @@ __all__ = [
1333
1351
  "BoolListComplianceParameter",
1334
1352
  "BranchStep",
1335
1353
  "BranchStepRequest",
1354
+ "BreakCodeSource",
1336
1355
  "BucketedCashFlowRequest",
1337
1356
  "BucketedCashFlowResponse",
1338
1357
  "BucketingSchedule",
@@ -1416,7 +1435,6 @@ __all__ = [
1416
1435
  "ComplianceTemplateVariationDto",
1417
1436
  "ComplianceTemplateVariationRequest",
1418
1437
  "ComponentFilter",
1419
- "ComponentRule",
1420
1438
  "ComponentTransaction",
1421
1439
  "CompositeBreakdown",
1422
1440
  "CompositeBreakdownRequest",
@@ -1450,6 +1468,7 @@ __all__ = [
1450
1468
  "CreateDerivedPropertyDefinitionRequest",
1451
1469
  "CreateDerivedTransactionPortfolioRequest",
1452
1470
  "CreateGroupReconciliationComparisonRulesetRequest",
1471
+ "CreateGroupReconciliationDefinitionRequest",
1453
1472
  "CreatePortfolioDetails",
1454
1473
  "CreatePortfolioGroupRequest",
1455
1474
  "CreatePropertyDefinitionRequest",
@@ -1480,6 +1499,7 @@ __all__ = [
1480
1499
  "CustodianAccountsUpsertResponse",
1481
1500
  "CustomEntityDefinition",
1482
1501
  "CustomEntityDefinitionRequest",
1502
+ "CustomEntityEntity",
1483
1503
  "CustomEntityField",
1484
1504
  "CustomEntityFieldDefinition",
1485
1505
  "CustomEntityId",
@@ -1591,6 +1611,7 @@ __all__ = [
1591
1611
  "FundConfigurationProperties",
1592
1612
  "FundConfigurationRequest",
1593
1613
  "FundDetails",
1614
+ "FundIdList",
1594
1615
  "FundPnlBreakdown",
1595
1616
  "FundPreviousNAV",
1596
1617
  "FundProperties",
@@ -1653,6 +1674,11 @@ __all__ = [
1653
1674
  "GroupReconciliationComparisonRuleset",
1654
1675
  "GroupReconciliationCoreAttributeRule",
1655
1676
  "GroupReconciliationCoreComparisonRuleOperand",
1677
+ "GroupReconciliationDefinition",
1678
+ "GroupReconciliationDefinitionComparisonRulesetIds",
1679
+ "GroupReconciliationDefinitionCurrencies",
1680
+ "GroupReconciliationDefinitionPortfolioEntityIds",
1681
+ "GroupReconciliationDefinitionRecipeIds",
1656
1682
  "GroupedResultOfAddressKey",
1657
1683
  "HoldingAdjustment",
1658
1684
  "HoldingAdjustmentWithDate",
@@ -1750,8 +1776,6 @@ __all__ = [
1750
1776
  "MatchCriterion",
1751
1777
  "MaturityEvent",
1752
1778
  "MergerEvent",
1753
- "MetadataKeyValue",
1754
- "MetadataKeyValueResponse",
1755
1779
  "MetricValue",
1756
1780
  "ModelOptions",
1757
1781
  "ModelOptionsType",
@@ -1839,6 +1863,8 @@ __all__ = [
1839
1863
  "PagedResourceListOfFund",
1840
1864
  "PagedResourceListOfFundConfiguration",
1841
1865
  "PagedResourceListOfGeneralLedgerProfileResponse",
1866
+ "PagedResourceListOfGroupReconciliationComparisonRuleset",
1867
+ "PagedResourceListOfGroupReconciliationDefinition",
1842
1868
  "PagedResourceListOfInstrument",
1843
1869
  "PagedResourceListOfInstrumentEventHolder",
1844
1870
  "PagedResourceListOfInstrumentEventInstruction",
@@ -2104,6 +2130,7 @@ __all__ = [
2104
2130
  "SetShareClassInstrumentsRequest",
2105
2131
  "SetTransactionConfigurationAlias",
2106
2132
  "SetTransactionConfigurationSourceRequest",
2133
+ "SettlementCycle",
2107
2134
  "SettlementSchedule",
2108
2135
  "ShareClassAmount",
2109
2136
  "ShareClassBreakdown",
@@ -2163,6 +2190,7 @@ __all__ = [
2163
2190
  "TransactionConfigurationMovementDataRequest",
2164
2191
  "TransactionConfigurationTypeAlias",
2165
2192
  "TransactionCurrencyAndAmount",
2193
+ "TransactionDateWindows",
2166
2194
  "TransactionDiagnostics",
2167
2195
  "TransactionFieldMap",
2168
2196
  "TransactionPrice",
@@ -2220,6 +2248,8 @@ __all__ = [
2220
2248
  "UpdateDataTypeRequest",
2221
2249
  "UpdateDerivedPropertyDefinitionRequest",
2222
2250
  "UpdateFeeTypeRequest",
2251
+ "UpdateGroupReconciliationComparisonRulesetRequest",
2252
+ "UpdateGroupReconciliationDefinitionRequest",
2223
2253
  "UpdateInstrumentIdentifierRequest",
2224
2254
  "UpdateOrdersResponse",
2225
2255
  "UpdatePlacementsResponse",
@@ -2264,6 +2294,8 @@ __all__ = [
2264
2294
  "UpsertQuotesResponse",
2265
2295
  "UpsertRecipeComposerRequest",
2266
2296
  "UpsertRecipeRequest",
2297
+ "UpsertReferencePortfolioConstituentPropertiesRequest",
2298
+ "UpsertReferencePortfolioConstituentPropertiesResponse",
2267
2299
  "UpsertReferencePortfolioConstituentsRequest",
2268
2300
  "UpsertReferencePortfolioConstituentsResponse",
2269
2301
  "UpsertResultValuesDataRequest",
lusid/api/__init__.py CHANGED
@@ -26,7 +26,7 @@ from lusid.api.derived_transaction_portfolios_api import DerivedTransactionPortf
26
26
  from lusid.api.entities_api import EntitiesApi
27
27
  from lusid.api.executions_api import ExecutionsApi
28
28
  from lusid.api.fee_types_api import FeeTypesApi
29
- from lusid.api.fund_configurations_api import FundConfigurationsApi
29
+ from lusid.api.fund_configuration_entities_api import FundConfigurationEntitiesApi
30
30
  from lusid.api.funds_api import FundsApi
31
31
  from lusid.api.group_reconciliations_api import GroupReconciliationsApi
32
32
  from lusid.api.instrument_event_types_api import InstrumentEventTypesApi
@@ -97,7 +97,7 @@ __all__ = [
97
97
  "EntitiesApi",
98
98
  "ExecutionsApi",
99
99
  "FeeTypesApi",
100
- "FundConfigurationsApi",
100
+ "FundConfigurationEntitiesApi",
101
101
  "FundsApi",
102
102
  "GroupReconciliationsApi",
103
103
  "InstrumentEventTypesApi",
lusid/api/abor_api.py CHANGED
@@ -66,30 +66,28 @@ class AborApi:
66
66
  self.api_client = api_client
67
67
 
68
68
  @overload
69
- async def add_diary_entry(self, scope : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The scope of the Abor.")], code : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The code of the Abor.")], diary_entry_code : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="Diary entry code")], diary_entry_request : Annotated[DiaryEntryRequest, Field(..., description="The diary entry to add.")], **kwargs) -> DiaryEntry: # noqa: E501
69
+ async def add_diary_entry(self, scope : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The scope of the Abor.")], code : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The code of the Abor.")], diary_entry_request : Annotated[DiaryEntryRequest, Field(..., description="The diary entry to add.")], **kwargs) -> DiaryEntry: # noqa: E501
70
70
  ...
71
71
 
72
72
  @overload
73
- def add_diary_entry(self, scope : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The scope of the Abor.")], code : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The code of the Abor.")], diary_entry_code : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="Diary entry code")], diary_entry_request : Annotated[DiaryEntryRequest, Field(..., description="The diary entry to add.")], async_req: Optional[bool]=True, **kwargs) -> DiaryEntry: # noqa: E501
73
+ def add_diary_entry(self, scope : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The scope of the Abor.")], code : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The code of the Abor.")], diary_entry_request : Annotated[DiaryEntryRequest, Field(..., description="The diary entry to add.")], async_req: Optional[bool]=True, **kwargs) -> DiaryEntry: # noqa: E501
74
74
  ...
75
75
 
76
76
  @validate_arguments
77
- def add_diary_entry(self, scope : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The scope of the Abor.")], code : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The code of the Abor.")], diary_entry_code : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="Diary entry code")], diary_entry_request : Annotated[DiaryEntryRequest, Field(..., description="The diary entry to add.")], async_req: Optional[bool]=None, **kwargs) -> Union[DiaryEntry, Awaitable[DiaryEntry]]: # noqa: E501
77
+ def add_diary_entry(self, scope : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The scope of the Abor.")], code : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The code of the Abor.")], diary_entry_request : Annotated[DiaryEntryRequest, Field(..., description="The diary entry to add.")], async_req: Optional[bool]=None, **kwargs) -> Union[DiaryEntry, Awaitable[DiaryEntry]]: # noqa: E501
78
78
  """[EXPERIMENTAL] AddDiaryEntry: Add a diary entry to the specified Abor. # noqa: E501
79
79
 
80
80
  Adds a new diary entry to the specified Abor # noqa: E501
81
81
  This method makes a synchronous HTTP request by default. To make an
82
82
  asynchronous HTTP request, please pass async_req=True
83
83
 
84
- >>> thread = api.add_diary_entry(scope, code, diary_entry_code, diary_entry_request, async_req=True)
84
+ >>> thread = api.add_diary_entry(scope, code, diary_entry_request, async_req=True)
85
85
  >>> result = thread.get()
86
86
 
87
87
  :param scope: The scope of the Abor. (required)
88
88
  :type scope: str
89
89
  :param code: The code of the Abor. (required)
90
90
  :type code: str
91
- :param diary_entry_code: Diary entry code (required)
92
- :type diary_entry_code: str
93
91
  :param diary_entry_request: The diary entry to add. (required)
94
92
  :type diary_entry_request: DiaryEntryRequest
95
93
  :param async_req: Whether to execute the request asynchronously.
@@ -109,25 +107,23 @@ class AborApi:
109
107
  raise ValueError(message)
110
108
  if async_req is not None:
111
109
  kwargs['async_req'] = async_req
112
- return self.add_diary_entry_with_http_info(scope, code, diary_entry_code, diary_entry_request, **kwargs) # noqa: E501
110
+ return self.add_diary_entry_with_http_info(scope, code, diary_entry_request, **kwargs) # noqa: E501
113
111
 
114
112
  @validate_arguments
115
- def add_diary_entry_with_http_info(self, scope : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The scope of the Abor.")], code : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The code of the Abor.")], diary_entry_code : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="Diary entry code")], diary_entry_request : Annotated[DiaryEntryRequest, Field(..., description="The diary entry to add.")], **kwargs) -> ApiResponse: # noqa: E501
113
+ def add_diary_entry_with_http_info(self, scope : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The scope of the Abor.")], code : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The code of the Abor.")], diary_entry_request : Annotated[DiaryEntryRequest, Field(..., description="The diary entry to add.")], **kwargs) -> ApiResponse: # noqa: E501
116
114
  """[EXPERIMENTAL] AddDiaryEntry: Add a diary entry to the specified Abor. # noqa: E501
117
115
 
118
116
  Adds a new diary entry to the specified Abor # noqa: E501
119
117
  This method makes a synchronous HTTP request by default. To make an
120
118
  asynchronous HTTP request, please pass async_req=True
121
119
 
122
- >>> thread = api.add_diary_entry_with_http_info(scope, code, diary_entry_code, diary_entry_request, async_req=True)
120
+ >>> thread = api.add_diary_entry_with_http_info(scope, code, diary_entry_request, async_req=True)
123
121
  >>> result = thread.get()
124
122
 
125
123
  :param scope: The scope of the Abor. (required)
126
124
  :type scope: str
127
125
  :param code: The code of the Abor. (required)
128
126
  :type code: str
129
- :param diary_entry_code: Diary entry code (required)
130
- :type diary_entry_code: str
131
127
  :param diary_entry_request: The diary entry to add. (required)
132
128
  :type diary_entry_request: DiaryEntryRequest
133
129
  :param async_req: Whether to execute the request asynchronously.
@@ -160,7 +156,6 @@ class AborApi:
160
156
  _all_params = [
161
157
  'scope',
162
158
  'code',
163
- 'diary_entry_code',
164
159
  'diary_entry_request'
165
160
  ]
166
161
  _all_params.extend(
@@ -195,9 +190,6 @@ class AborApi:
195
190
  if _params['code']:
196
191
  _path_params['code'] = _params['code']
197
192
 
198
- if _params['diary_entry_code']:
199
- _path_params['diaryEntryCode'] = _params['diary_entry_code']
200
-
201
193
 
202
194
  # process the query parameters
203
195
  _query_params = []
@@ -231,7 +223,7 @@ class AborApi:
231
223
  }
232
224
 
233
225
  return self.api_client.call_api(
234
- '/api/abor/{scope}/{code}/accountingdiary/{diaryEntryCode}', 'POST',
226
+ '/api/abor/{scope}/{code}/accountingdiary', 'POST',
235
227
  _path_params,
236
228
  _query_params,
237
229
  _header_params,
@@ -400,7 +400,7 @@ class AllocationsApi:
400
400
 
401
401
  @validate_arguments
402
402
  def list_allocations(self, as_at : Annotated[Optional[datetime], Field(description="The asAt datetime at which to retrieve the allocation. Defaults to return the latest version of the allocation 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 allocations from a previous call to list allocations. This value is returned from the previous call. If a pagination token is provided the sortBy, filter, effectiveAt, and asAt fields must not have changed since the original request.")] = 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, limit : Annotated[Optional[conint(strict=True, le=5000, ge=1)], Field(description="When paginating, limit the number of returned results to this many.")] = 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 \"Allocations\" domain to decorate onto each allocation. These take the format {domain}/{scope}/{code} e.g. \"Allocations/system/Name\".")] = None, async_req: Optional[bool]=None, **kwargs) -> Union[PagedResourceListOfAllocation, Awaitable[PagedResourceListOfAllocation]]: # noqa: E501
403
- """[EARLY ACCESS] ListAllocations: List Allocations # noqa: E501
403
+ """ListAllocations: List Allocations # noqa: E501
404
404
 
405
405
  Fetch the last pre-AsAt date version of each allocation in scope (does not fetch the entire history). # noqa: E501
406
406
  This method makes a synchronous HTTP request by default. To make an
@@ -442,7 +442,7 @@ class AllocationsApi:
442
442
 
443
443
  @validate_arguments
444
444
  def list_allocations_with_http_info(self, as_at : Annotated[Optional[datetime], Field(description="The asAt datetime at which to retrieve the allocation. Defaults to return the latest version of the allocation 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 allocations from a previous call to list allocations. This value is returned from the previous call. If a pagination token is provided the sortBy, filter, effectiveAt, and asAt fields must not have changed since the original request.")] = 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, limit : Annotated[Optional[conint(strict=True, le=5000, ge=1)], Field(description="When paginating, limit the number of returned results to this many.")] = 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 \"Allocations\" domain to decorate onto each allocation. These take the format {domain}/{scope}/{code} e.g. \"Allocations/system/Name\".")] = None, **kwargs) -> ApiResponse: # noqa: E501
445
- """[EARLY ACCESS] ListAllocations: List Allocations # noqa: E501
445
+ """ListAllocations: List Allocations # noqa: E501
446
446
 
447
447
  Fetch the last pre-AsAt date version of each allocation in scope (does not fetch the entire history). # noqa: E501
448
448
  This method makes a synchronous HTTP request by default. To make an
@@ -3951,6 +3951,180 @@ class ChartOfAccountsApi:
3951
3951
  collection_formats=_collection_formats,
3952
3952
  _request_auth=_params.get('_request_auth'))
3953
3953
 
3954
+ @overload
3955
+ async def patch_chart_of_accounts(self, scope : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The scope of the Chart of Accounts.")], code : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The code of the Chart of Accounts. Together with the scope this uniquely identifies the Chart of Accounts.")], operation : Annotated[conlist(Operation), Field(..., description="The json patch document. For more information see: https://datatracker.ietf.org/doc/html/rfc6902.")], **kwargs) -> ChartOfAccounts: # noqa: E501
3956
+ ...
3957
+
3958
+ @overload
3959
+ def patch_chart_of_accounts(self, scope : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The scope of the Chart of Accounts.")], code : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The code of the Chart of Accounts. Together with the scope this uniquely identifies the Chart of Accounts.")], operation : Annotated[conlist(Operation), Field(..., description="The json patch document. For more information see: https://datatracker.ietf.org/doc/html/rfc6902.")], async_req: Optional[bool]=True, **kwargs) -> ChartOfAccounts: # noqa: E501
3960
+ ...
3961
+
3962
+ @validate_arguments
3963
+ def patch_chart_of_accounts(self, scope : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The scope of the Chart of Accounts.")], code : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The code of the Chart of Accounts. Together with the scope this uniquely identifies the Chart of Accounts.")], operation : Annotated[conlist(Operation), Field(..., description="The json patch document. For more information see: https://datatracker.ietf.org/doc/html/rfc6902.")], async_req: Optional[bool]=None, **kwargs) -> Union[ChartOfAccounts, Awaitable[ChartOfAccounts]]: # noqa: E501
3964
+ """[EXPERIMENTAL] PatchChartOfAccounts: Patch a Chart of Accounts. # noqa: E501
3965
+
3966
+ Update fields on a Chart of Accounts. The behaviour is defined by the JSON Patch specification. Currently supported fields are: DisplayName, Description. # noqa: E501
3967
+ This method makes a synchronous HTTP request by default. To make an
3968
+ asynchronous HTTP request, please pass async_req=True
3969
+
3970
+ >>> thread = api.patch_chart_of_accounts(scope, code, operation, async_req=True)
3971
+ >>> result = thread.get()
3972
+
3973
+ :param scope: The scope of the Chart of Accounts. (required)
3974
+ :type scope: str
3975
+ :param code: The code of the Chart of Accounts. Together with the scope this uniquely identifies the Chart of Accounts. (required)
3976
+ :type code: str
3977
+ :param operation: The json patch document. For more information see: https://datatracker.ietf.org/doc/html/rfc6902. (required)
3978
+ :type operation: List[Operation]
3979
+ :param async_req: Whether to execute the request asynchronously.
3980
+ :type async_req: bool, optional
3981
+ :param _request_timeout: timeout setting for this request.
3982
+ If one number provided, it will be total request
3983
+ timeout. It can also be a pair (tuple) of
3984
+ (connection, read) timeouts.
3985
+ :return: Returns the result object.
3986
+ If the method is called asynchronously,
3987
+ returns the request thread.
3988
+ :rtype: ChartOfAccounts
3989
+ """
3990
+ kwargs['_return_http_data_only'] = True
3991
+ if '_preload_content' in kwargs:
3992
+ message = "Error! Please call the patch_chart_of_accounts_with_http_info method with `_preload_content` instead and obtain raw data from ApiResponse.raw_data" # noqa: E501
3993
+ raise ValueError(message)
3994
+ if async_req is not None:
3995
+ kwargs['async_req'] = async_req
3996
+ return self.patch_chart_of_accounts_with_http_info(scope, code, operation, **kwargs) # noqa: E501
3997
+
3998
+ @validate_arguments
3999
+ def patch_chart_of_accounts_with_http_info(self, scope : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The scope of the Chart of Accounts.")], code : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The code of the Chart of Accounts. Together with the scope this uniquely identifies the Chart of Accounts.")], operation : Annotated[conlist(Operation), Field(..., description="The json patch document. For more information see: https://datatracker.ietf.org/doc/html/rfc6902.")], **kwargs) -> ApiResponse: # noqa: E501
4000
+ """[EXPERIMENTAL] PatchChartOfAccounts: Patch a Chart of Accounts. # noqa: E501
4001
+
4002
+ Update fields on a Chart of Accounts. The behaviour is defined by the JSON Patch specification. Currently supported fields are: DisplayName, Description. # noqa: E501
4003
+ This method makes a synchronous HTTP request by default. To make an
4004
+ asynchronous HTTP request, please pass async_req=True
4005
+
4006
+ >>> thread = api.patch_chart_of_accounts_with_http_info(scope, code, operation, async_req=True)
4007
+ >>> result = thread.get()
4008
+
4009
+ :param scope: The scope of the Chart of Accounts. (required)
4010
+ :type scope: str
4011
+ :param code: The code of the Chart of Accounts. Together with the scope this uniquely identifies the Chart of Accounts. (required)
4012
+ :type code: str
4013
+ :param operation: The json patch document. For more information see: https://datatracker.ietf.org/doc/html/rfc6902. (required)
4014
+ :type operation: List[Operation]
4015
+ :param async_req: Whether to execute the request asynchronously.
4016
+ :type async_req: bool, optional
4017
+ :param _preload_content: if False, the ApiResponse.data will
4018
+ be set to none and raw_data will store the
4019
+ HTTP response body without reading/decoding.
4020
+ Default is True.
4021
+ :type _preload_content: bool, optional
4022
+ :param _return_http_data_only: response data instead of ApiResponse
4023
+ object with status code, headers, etc
4024
+ :type _return_http_data_only: bool, optional
4025
+ :param _request_timeout: timeout setting for this request. If one
4026
+ number provided, it will be total request
4027
+ timeout. It can also be a pair (tuple) of
4028
+ (connection, read) timeouts.
4029
+ :param _request_auth: set to override the auth_settings for an a single
4030
+ request; this effectively ignores the authentication
4031
+ in the spec for a single request.
4032
+ :type _request_auth: dict, optional
4033
+ :type _content_type: string, optional: force content-type for the request
4034
+ :return: Returns the result object.
4035
+ If the method is called asynchronously,
4036
+ returns the request thread.
4037
+ :rtype: tuple(ChartOfAccounts, status_code(int), headers(HTTPHeaderDict))
4038
+ """
4039
+
4040
+ _params = locals()
4041
+
4042
+ _all_params = [
4043
+ 'scope',
4044
+ 'code',
4045
+ 'operation'
4046
+ ]
4047
+ _all_params.extend(
4048
+ [
4049
+ 'async_req',
4050
+ '_return_http_data_only',
4051
+ '_preload_content',
4052
+ '_request_timeout',
4053
+ '_request_auth',
4054
+ '_content_type',
4055
+ '_headers'
4056
+ ]
4057
+ )
4058
+
4059
+ # validate the arguments
4060
+ for _key, _val in _params['kwargs'].items():
4061
+ if _key not in _all_params:
4062
+ raise ApiTypeError(
4063
+ "Got an unexpected keyword argument '%s'"
4064
+ " to method patch_chart_of_accounts" % _key
4065
+ )
4066
+ _params[_key] = _val
4067
+ del _params['kwargs']
4068
+
4069
+ _collection_formats = {}
4070
+
4071
+ # process the path parameters
4072
+ _path_params = {}
4073
+ if _params['scope']:
4074
+ _path_params['scope'] = _params['scope']
4075
+
4076
+ if _params['code']:
4077
+ _path_params['code'] = _params['code']
4078
+
4079
+
4080
+ # process the query parameters
4081
+ _query_params = []
4082
+ # process the header parameters
4083
+ _header_params = dict(_params.get('_headers', {}))
4084
+ # process the form parameters
4085
+ _form_params = []
4086
+ _files = {}
4087
+ # process the body parameter
4088
+ _body_params = None
4089
+ if _params['operation'] is not None:
4090
+ _body_params = _params['operation']
4091
+
4092
+ # set the HTTP header `Accept`
4093
+ _header_params['Accept'] = self.api_client.select_header_accept(
4094
+ ['text/plain', 'application/json', 'text/json']) # noqa: E501
4095
+
4096
+ # set the HTTP header `Content-Type`
4097
+ _content_types_list = _params.get('_content_type',
4098
+ self.api_client.select_header_content_type(
4099
+ ['application/json-patch+json', 'application/json', 'text/json', 'application/*+json']))
4100
+ if _content_types_list:
4101
+ _header_params['Content-Type'] = _content_types_list
4102
+
4103
+ # authentication setting
4104
+ _auth_settings = ['oauth2'] # noqa: E501
4105
+
4106
+ _response_types_map = {
4107
+ '200': "ChartOfAccounts",
4108
+ '400': "LusidValidationProblemDetails",
4109
+ }
4110
+
4111
+ return self.api_client.call_api(
4112
+ '/api/chartofaccounts/{scope}/{code}', 'PATCH',
4113
+ _path_params,
4114
+ _query_params,
4115
+ _header_params,
4116
+ body=_body_params,
4117
+ post_params=_form_params,
4118
+ files=_files,
4119
+ response_types_map=_response_types_map,
4120
+ auth_settings=_auth_settings,
4121
+ async_req=_params.get('async_req'),
4122
+ _return_http_data_only=_params.get('_return_http_data_only'), # noqa: E501
4123
+ _preload_content=_params.get('_preload_content', True),
4124
+ _request_timeout=_params.get('_request_timeout'),
4125
+ collection_formats=_collection_formats,
4126
+ _request_auth=_params.get('_request_auth'))
4127
+
3954
4128
  @overload
3955
4129
  async def patch_cleardown_module(self, scope : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The scope of the Chart of Accounts.")], code : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The code of the Chart of Accounts. Together with the scope this uniquely identifies the Chart of Accounts.")], cleardown_module_code : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The code of the Cleardown Module to be updated.")], operation : Annotated[conlist(Operation), Field(..., description="The json patch document. For more information see: https://datatracker.ietf.org/doc/html/rfc6902.")], **kwargs) -> CleardownModuleResponse: # noqa: E501
3956
4130
  ...
@@ -66,7 +66,7 @@ class CustomEntitiesApi:
66
66
 
67
67
  @validate_arguments
68
68
  def delete_custom_entity(self, entity_type : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The type of Custom Entity to remove.")], identifier_type : Annotated[constr(strict=True, max_length=65, min_length=1), Field(..., description="An identifier type attached to the Custom Entity instance.")], identifier_value : Annotated[constr(strict=True, max_length=1024, min_length=1), Field(..., description="The identifier value.")], identifier_scope : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The identifier scope.")], async_req: Optional[bool]=None, **kwargs) -> Union[DeletedEntityResponse, Awaitable[DeletedEntityResponse]]: # noqa: E501
69
- """[EARLY ACCESS] DeleteCustomEntity: Delete a Custom Entity instance. # noqa: E501
69
+ """DeleteCustomEntity: Delete a Custom Entity instance. # noqa: E501
70
70
 
71
71
  Delete a Custom Entity instance by a specific entity type. # noqa: E501
72
72
  This method makes a synchronous HTTP request by default. To make an
@@ -104,7 +104,7 @@ class CustomEntitiesApi:
104
104
 
105
105
  @validate_arguments
106
106
  def delete_custom_entity_with_http_info(self, entity_type : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The type of Custom Entity to remove.")], identifier_type : Annotated[constr(strict=True, max_length=65, min_length=1), Field(..., description="An identifier type attached to the Custom Entity instance.")], identifier_value : Annotated[constr(strict=True, max_length=1024, min_length=1), Field(..., description="The identifier value.")], identifier_scope : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The identifier scope.")], **kwargs) -> ApiResponse: # noqa: E501
107
- """[EARLY ACCESS] DeleteCustomEntity: Delete a Custom Entity instance. # noqa: E501
107
+ """DeleteCustomEntity: Delete a Custom Entity instance. # noqa: E501
108
108
 
109
109
  Delete a Custom Entity instance by a specific entity type. # noqa: E501
110
110
  This method makes a synchronous HTTP request by default. To make an