lusid-sdk 2.1.405__py3-none-any.whl → 2.1.537__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- lusid/__init__.py +142 -8
- lusid/api/__init__.py +2 -2
- lusid/api/abor_api.py +126 -133
- lusid/api/abor_configuration_api.py +46 -45
- lusid/api/address_key_definition_api.py +28 -27
- lusid/api/aggregation_api.py +37 -36
- lusid/api/allocations_api.py +39 -38
- lusid/api/amortisation_rule_sets_api.py +55 -54
- lusid/api/application_metadata_api.py +28 -27
- lusid/api/blocks_api.py +37 -36
- lusid/api/calendars_api.py +469 -111
- lusid/api/chart_of_accounts_api.py +454 -279
- lusid/api/complex_market_data_api.py +37 -36
- lusid/api/compliance_api.py +136 -135
- lusid/api/configuration_recipe_api.py +100 -99
- lusid/api/conventions_api.py +109 -108
- lusid/api/corporate_action_sources_api.py +82 -81
- lusid/api/counterparties_api.py +73 -72
- lusid/api/custom_entities_api.py +102 -101
- lusid/api/custom_entity_definitions_api.py +37 -36
- lusid/api/custom_entity_types_api.py +37 -36
- lusid/api/cut_label_definitions_api.py +46 -45
- lusid/api/data_types_api.py +248 -72
- lusid/api/derived_transaction_portfolios_api.py +19 -18
- lusid/api/entities_api.py +431 -46
- lusid/api/executions_api.py +37 -36
- lusid/api/fee_types_api.py +55 -54
- lusid/api/{fund_configurations_api.py → fund_configuration_api.py} +222 -46
- lusid/api/funds_api.py +337 -162
- lusid/api/group_reconciliations_api.py +2182 -63
- lusid/api/instrument_event_types_api.py +64 -63
- lusid/api/instrument_events_api.py +46 -45
- lusid/api/instruments_api.py +374 -186
- lusid/api/legacy_compliance_api.py +73 -72
- lusid/api/legal_entities_api.py +167 -166
- lusid/api/order_graph_api.py +32 -31
- lusid/api/order_instructions_api.py +37 -36
- lusid/api/order_management_api.py +251 -90
- lusid/api/orders_api.py +37 -36
- lusid/api/packages_api.py +37 -36
- lusid/api/participations_api.py +37 -36
- lusid/api/persons_api.py +163 -162
- lusid/api/placements_api.py +37 -36
- lusid/api/portfolio_groups_api.py +235 -234
- lusid/api/portfolios_api.py +307 -309
- lusid/api/property_definitions_api.py +100 -99
- lusid/api/queryable_keys_api.py +10 -9
- lusid/api/quotes_api.py +82 -81
- lusid/api/reconciliations_api.py +136 -135
- lusid/api/reference_lists_api.py +39 -38
- lusid/api/reference_portfolio_api.py +213 -36
- lusid/api/relation_definitions_api.py +28 -27
- lusid/api/relations_api.py +19 -18
- lusid/api/relationship_definitions_api.py +46 -45
- lusid/api/relationships_api.py +19 -18
- lusid/api/schemas_api.py +37 -36
- lusid/api/scopes_api.py +19 -18
- lusid/api/scripted_translation_api.py +73 -72
- lusid/api/search_api.py +37 -36
- lusid/api/sequences_api.py +37 -36
- lusid/api/staged_modifications_api.py +37 -36
- lusid/api/staging_rule_set_api.py +46 -45
- lusid/api/structured_result_data_api.py +82 -81
- lusid/api/system_configuration_api.py +64 -63
- lusid/api/tax_rule_sets_api.py +46 -45
- lusid/api/transaction_configuration_api.py +100 -99
- lusid/api/transaction_fees_api.py +46 -45
- lusid/api/transaction_portfolios_api.py +771 -328
- lusid/api/translation_api.py +19 -18
- lusid/api/workspace_api.py +181 -180
- lusid/api_client.py +26 -17
- lusid/configuration.py +87 -2
- lusid/extensions/api_client.py +25 -17
- lusid/extensions/api_client_factory.py +14 -5
- lusid/extensions/api_configuration.py +50 -1
- lusid/extensions/configuration_loaders.py +39 -11
- lusid/extensions/configuration_options.py +67 -0
- lusid/extensions/rest.py +78 -26
- lusid/extensions/retry.py +109 -37
- lusid/models/__init__.py +140 -6
- lusid/models/access_metadata_value.py +1 -1
- lusid/models/accounting_method.py +7 -0
- lusid/models/accumulation_event.py +3 -3
- lusid/models/address_key_list.py +3 -3
- lusid/models/amortisation_event.py +3 -3
- lusid/models/amount.py +69 -0
- lusid/models/applicable_instrument_event.py +7 -2
- lusid/models/asset_leg.py +1 -1
- lusid/models/basket.py +3 -3
- lusid/models/batch_update_user_review_for_comparison_result_request.py +81 -0
- lusid/models/batch_update_user_review_for_comparison_result_response.py +146 -0
- lusid/models/batch_upsert_dates_for_calendar_response.py +146 -0
- lusid/models/batch_upsert_portfolio_access_metadata_request.py +27 -17
- lusid/models/batch_upsert_portfolio_access_metadata_response.py +56 -16
- lusid/models/{metadata_key_value.py → batch_upsert_portfolio_access_metadata_response_item.py} +15 -9
- lusid/models/bond.py +3 -3
- lusid/models/bond_coupon_event.py +10 -5
- lusid/models/bond_default_event.py +3 -3
- lusid/models/bond_principal_event.py +10 -5
- lusid/models/bonus_issue_event.py +166 -0
- lusid/models/{component_rule.py → break_code_source.py} +17 -21
- lusid/models/call_on_intermediate_securities_event.py +139 -0
- lusid/models/cancel_order_and_move_remaining_result.py +84 -0
- lusid/models/cancel_orders_and_move_remaining_request.py +83 -0
- lusid/models/cancel_orders_and_move_remaining_response.py +153 -0
- lusid/models/cap_floor.py +3 -3
- lusid/models/capital_distribution_event.py +3 -3
- lusid/models/cash.py +3 -3
- lusid/models/cash_dividend_event.py +3 -3
- lusid/models/cash_flow_event.py +3 -3
- lusid/models/cash_perpetual.py +3 -3
- lusid/models/cds_credit_event.py +6 -6
- lusid/models/cds_index.py +3 -3
- lusid/models/cdx_credit_event.py +6 -6
- lusid/models/change_interval.py +123 -0
- lusid/models/change_interval_with_order_management_detail.py +3 -3
- lusid/models/close_event.py +3 -3
- lusid/models/comparison_attribute_value_pair.py +71 -0
- lusid/models/complex_bond.py +3 -3
- lusid/models/component_transaction.py +10 -3
- lusid/models/contract_for_difference.py +3 -3
- lusid/models/create_derived_transaction_portfolio_request.py +3 -3
- lusid/models/create_group_reconciliation_definition_request.py +113 -0
- lusid/models/create_staging_rule_set_request.py +1 -6
- lusid/models/create_transaction_portfolio_request.py +3 -3
- lusid/models/credit_default_swap.py +3 -3
- lusid/models/credit_premium_cash_flow_event.py +3 -3
- lusid/models/custodian_account_request.py +1 -1
- lusid/models/custom_entity_entity.py +146 -0
- lusid/models/custom_entity_response.py +7 -1
- lusid/models/decimal_list.py +3 -3
- lusid/models/delete_instrument_properties_response.py +7 -1
- lusid/models/delete_instrument_response.py +7 -1
- lusid/models/delete_instruments_response.py +22 -1
- lusid/models/deleted_entity_response.py +7 -1
- lusid/models/diary_entry_request.py +10 -1
- lusid/models/dividend_option_event.py +3 -3
- lusid/models/dividend_reinvestment_event.py +9 -4
- lusid/models/effective_range.py +71 -0
- lusid/models/equity.py +3 -3
- lusid/models/equity_option.py +22 -7
- lusid/models/equity_swap.py +3 -3
- lusid/models/exchange_traded_option.py +3 -3
- lusid/models/exchange_traded_option_contract_details.py +1 -1
- lusid/models/exercise_event.py +3 -3
- lusid/models/exotic_instrument.py +3 -3
- lusid/models/expiry_event.py +3 -3
- lusid/models/fee.py +17 -10
- lusid/models/fee_request.py +20 -13
- lusid/models/fee_type.py +4 -4
- lusid/models/fee_type_request.py +3 -3
- lusid/models/fixed_leg.py +3 -3
- lusid/models/fixed_schedule.py +3 -3
- lusid/models/flexible_loan.py +3 -3
- lusid/models/float_schedule.py +4 -4
- lusid/models/floating_leg.py +3 -3
- lusid/models/flow_conventions.py +7 -1
- lusid/models/forward_rate_agreement.py +3 -3
- lusid/models/fund_configuration.py +44 -17
- lusid/models/fund_configuration_request.py +31 -19
- lusid/models/fund_id_list.py +99 -0
- lusid/models/fund_share_class.py +23 -8
- lusid/models/funding_leg.py +3 -3
- lusid/models/future.py +3 -3
- lusid/models/future_expiry_event.py +3 -3
- lusid/models/fx_forward.py +3 -3
- lusid/models/fx_forward_settlement_event.py +3 -3
- lusid/models/fx_option.py +3 -3
- lusid/models/fx_swap.py +3 -3
- lusid/models/group_reconciliation_aggregate_attribute_rule.py +2 -2
- lusid/models/group_reconciliation_aggregate_attribute_values.py +86 -0
- lusid/models/group_reconciliation_aggregate_comparison_rule_operand.py +1 -1
- lusid/models/group_reconciliation_comparison_result.py +148 -0
- lusid/models/group_reconciliation_core_attribute_values.py +86 -0
- lusid/models/group_reconciliation_core_comparison_rule_operand.py +1 -1
- lusid/models/group_reconciliation_date_pair.py +81 -0
- lusid/models/group_reconciliation_dates.py +78 -0
- lusid/models/group_reconciliation_definition.py +136 -0
- lusid/models/group_reconciliation_definition_comparison_ruleset_ids.py +83 -0
- lusid/models/group_reconciliation_definition_currencies.py +71 -0
- lusid/models/group_reconciliation_definition_portfolio_entity_ids.py +86 -0
- lusid/models/group_reconciliation_definition_recipe_ids.py +78 -0
- lusid/models/group_reconciliation_instance_id.py +71 -0
- lusid/models/group_reconciliation_result_statuses.py +89 -0
- lusid/models/group_reconciliation_result_types.py +96 -0
- lusid/models/group_reconciliation_review_statuses.py +96 -0
- lusid/models/group_reconciliation_run_details.py +76 -0
- lusid/models/group_reconciliation_run_request.py +75 -0
- lusid/models/{metadata_key_value_response.py → group_reconciliation_run_response.py} +20 -29
- lusid/models/group_reconciliation_summary.py +121 -0
- lusid/models/group_reconciliation_user_review.py +112 -0
- lusid/models/group_reconciliation_user_review_add.py +88 -0
- lusid/models/group_reconciliation_user_review_break_code.py +80 -0
- lusid/models/group_reconciliation_user_review_comment.py +80 -0
- lusid/models/group_reconciliation_user_review_match_key.py +80 -0
- lusid/models/group_reconciliation_user_review_remove.py +88 -0
- lusid/models/holding_contributor.py +11 -4
- lusid/models/holding_ids_request.py +69 -0
- lusid/models/inflation_leg.py +3 -3
- lusid/models/inflation_linked_bond.py +3 -3
- lusid/models/inflation_swap.py +3 -3
- lusid/models/informational_error_event.py +3 -3
- lusid/models/informational_event.py +3 -3
- lusid/models/instrument.py +7 -1
- lusid/models/instrument_definition.py +8 -2
- lusid/models/instrument_event.py +17 -5
- lusid/models/instrument_event_holder.py +9 -1
- lusid/models/instrument_event_type.py +12 -0
- lusid/models/instrument_leg.py +3 -3
- lusid/models/instrument_list.py +3 -3
- lusid/models/instrument_type.py +2 -0
- lusid/models/interest_rate_swap.py +3 -3
- lusid/models/interest_rate_swaption.py +3 -3
- lusid/models/intermediate_securities_distribution_event.py +140 -0
- lusid/models/lapse_election.py +73 -0
- lusid/models/loan_facility.py +97 -0
- lusid/models/lusid_instrument.py +7 -5
- lusid/models/market_data_key_rule.py +5 -3
- lusid/models/market_data_specific_rule.py +5 -3
- lusid/models/mastered_instrument.py +139 -0
- lusid/models/maturity_event.py +3 -3
- lusid/models/mbs_coupon_event.py +102 -0
- lusid/models/mbs_interest_deferral_event.py +102 -0
- lusid/models/mbs_interest_shortfall_event.py +102 -0
- lusid/models/mbs_principal_event.py +102 -0
- lusid/models/mbs_principal_write_off_event.py +102 -0
- lusid/models/merger_event.py +22 -22
- lusid/models/new_instrument.py +1 -1
- lusid/models/open_event.py +3 -3
- lusid/models/option_exercise_cash_event.py +144 -0
- lusid/models/option_exercise_election.py +73 -0
- lusid/models/option_exercise_physical_event.py +149 -0
- lusid/models/output_transaction.py +9 -2
- lusid/models/paged_resource_list_of_group_reconciliation_comparison_result.py +113 -0
- lusid/models/paged_resource_list_of_group_reconciliation_comparison_ruleset.py +113 -0
- lusid/models/paged_resource_list_of_group_reconciliation_definition.py +113 -0
- lusid/models/portfolio.py +3 -3
- lusid/models/portfolio_details.py +3 -3
- lusid/models/portfolio_group_id_list.py +3 -3
- lusid/models/portfolio_id_list.py +3 -3
- lusid/models/portfolio_without_href.py +3 -3
- lusid/models/pricing_options.py +8 -2
- lusid/models/property_list.py +3 -3
- lusid/models/protection_payout_cash_flow_event.py +102 -0
- lusid/models/raw_vendor_event.py +3 -3
- lusid/models/reference_instrument.py +3 -3
- lusid/models/reference_list.py +6 -5
- lusid/models/reference_list_type.py +1 -0
- lusid/models/repo.py +3 -3
- lusid/models/reset_event.py +3 -3
- lusid/models/resource_list_of_change_interval.py +113 -0
- lusid/models/resource_list_of_output_transaction.py +113 -0
- lusid/models/return_zero_pv_options.py +69 -0
- lusid/models/reverse_stock_split_event.py +21 -7
- lusid/models/scrip_dividend_event.py +3 -3
- lusid/models/settlement_cycle.py +79 -0
- lusid/models/share_class_dealing_breakdown.py +3 -2
- lusid/models/share_class_details.py +18 -1
- lusid/models/simple_cash_flow_loan.py +3 -3
- lusid/models/simple_instrument.py +3 -3
- lusid/models/simple_rounding_convention.py +76 -0
- lusid/models/spin_off_event.py +3 -3
- lusid/models/staged_modification_effective_range.py +2 -2
- lusid/models/stock_dividend_event.py +20 -6
- lusid/models/stock_split_event.py +3 -3
- lusid/models/string_list.py +3 -3
- lusid/models/swap_cash_flow_event.py +3 -3
- lusid/models/swap_principal_event.py +3 -3
- lusid/models/target_tax_lot.py +23 -2
- lusid/models/target_tax_lot_request.py +23 -2
- lusid/models/tender_event.py +172 -0
- lusid/models/term_deposit.py +3 -3
- lusid/models/total_return_swap.py +4 -4
- lusid/models/transaction.py +9 -2
- lusid/models/transaction_date_windows.py +85 -0
- lusid/models/transaction_price.py +3 -3
- lusid/models/transaction_price_type.py +2 -0
- lusid/models/transaction_request.py +9 -2
- lusid/models/transition_event.py +3 -3
- lusid/models/trigger_event.py +3 -3
- lusid/models/update_fee_type_request.py +4 -4
- lusid/models/update_group_reconciliation_comparison_ruleset_request.py +91 -0
- lusid/models/update_group_reconciliation_definition_request.py +107 -0
- lusid/models/update_reference_data_request.py +87 -0
- lusid/models/update_staging_rule_set_request.py +1 -6
- lusid/models/upsert_custom_entities_response.py +20 -1
- lusid/models/upsert_reference_portfolio_constituent_properties_request.py +84 -0
- lusid/models/upsert_reference_portfolio_constituent_properties_response.py +115 -0
- lusid/models/valuation_point_data_query_parameters.py +3 -3
- lusid/models/valuation_point_data_response.py +8 -13
- lusid/rest.py +70 -20
- {lusid_sdk-2.1.405.dist-info → lusid_sdk-2.1.537.dist-info}/METADATA +118 -26
- {lusid_sdk-2.1.405.dist-info → lusid_sdk-2.1.537.dist-info}/RECORD +294 -226
- {lusid_sdk-2.1.405.dist-info → lusid_sdk-2.1.537.dist-info}/WHEEL +0 -0
lusid/api/workspace_api.py
CHANGED
@@ -42,6 +42,7 @@ from lusid.exceptions import ( # noqa: F401
|
|
42
42
|
ApiTypeError,
|
43
43
|
ApiValueError
|
44
44
|
)
|
45
|
+
from lusid.extensions.configuration_options import ConfigurationOptions
|
45
46
|
|
46
47
|
|
47
48
|
class WorkspaceApi:
|
@@ -81,10 +82,9 @@ class WorkspaceApi:
|
|
81
82
|
:type workspace_item_creation_request: WorkspaceItemCreationRequest
|
82
83
|
:param async_req: Whether to execute the request asynchronously.
|
83
84
|
:type async_req: bool, optional
|
84
|
-
:param _request_timeout:
|
85
|
-
|
86
|
-
|
87
|
-
(connection, read) timeouts.
|
85
|
+
:param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
|
86
|
+
:param opts: Configuration options for this request
|
87
|
+
:type opts: ConfigurationOptions, optional
|
88
88
|
:return: Returns the result object.
|
89
89
|
If the method is called asynchronously,
|
90
90
|
returns the request thread.
|
@@ -123,10 +123,9 @@ class WorkspaceApi:
|
|
123
123
|
:param _return_http_data_only: response data instead of ApiResponse
|
124
124
|
object with status code, headers, etc
|
125
125
|
:type _return_http_data_only: bool, optional
|
126
|
-
:param _request_timeout:
|
127
|
-
|
128
|
-
|
129
|
-
(connection, read) timeouts.
|
126
|
+
:param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
|
127
|
+
:param opts: Configuration options for this request
|
128
|
+
:type opts: ConfigurationOptions, optional
|
130
129
|
:param _request_auth: set to override the auth_settings for an a single
|
131
130
|
request; this effectively ignores the authentication
|
132
131
|
in the spec for a single request.
|
@@ -152,7 +151,8 @@ class WorkspaceApi:
|
|
152
151
|
'_request_timeout',
|
153
152
|
'_request_auth',
|
154
153
|
'_content_type',
|
155
|
-
'_headers'
|
154
|
+
'_headers',
|
155
|
+
'opts'
|
156
156
|
]
|
157
157
|
)
|
158
158
|
|
@@ -219,6 +219,7 @@ class WorkspaceApi:
|
|
219
219
|
_return_http_data_only=_params.get('_return_http_data_only'), # noqa: E501
|
220
220
|
_preload_content=_params.get('_preload_content', True),
|
221
221
|
_request_timeout=_params.get('_request_timeout'),
|
222
|
+
opts=_params.get('opts'),
|
222
223
|
collection_formats=_collection_formats,
|
223
224
|
_request_auth=_params.get('_request_auth'))
|
224
225
|
|
@@ -245,10 +246,9 @@ class WorkspaceApi:
|
|
245
246
|
:type workspace_creation_request: WorkspaceCreationRequest
|
246
247
|
:param async_req: Whether to execute the request asynchronously.
|
247
248
|
:type async_req: bool, optional
|
248
|
-
:param _request_timeout:
|
249
|
-
|
250
|
-
|
251
|
-
(connection, read) timeouts.
|
249
|
+
:param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
|
250
|
+
:param opts: Configuration options for this request
|
251
|
+
:type opts: ConfigurationOptions, optional
|
252
252
|
:return: Returns the result object.
|
253
253
|
If the method is called asynchronously,
|
254
254
|
returns the request thread.
|
@@ -285,10 +285,9 @@ class WorkspaceApi:
|
|
285
285
|
:param _return_http_data_only: response data instead of ApiResponse
|
286
286
|
object with status code, headers, etc
|
287
287
|
:type _return_http_data_only: bool, optional
|
288
|
-
:param _request_timeout:
|
289
|
-
|
290
|
-
|
291
|
-
(connection, read) timeouts.
|
288
|
+
:param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
|
289
|
+
:param opts: Configuration options for this request
|
290
|
+
:type opts: ConfigurationOptions, optional
|
292
291
|
:param _request_auth: set to override the auth_settings for an a single
|
293
292
|
request; this effectively ignores the authentication
|
294
293
|
in the spec for a single request.
|
@@ -313,7 +312,8 @@ class WorkspaceApi:
|
|
313
312
|
'_request_timeout',
|
314
313
|
'_request_auth',
|
315
314
|
'_content_type',
|
316
|
-
'_headers'
|
315
|
+
'_headers',
|
316
|
+
'opts'
|
317
317
|
]
|
318
318
|
)
|
319
319
|
|
@@ -377,6 +377,7 @@ class WorkspaceApi:
|
|
377
377
|
_return_http_data_only=_params.get('_return_http_data_only'), # noqa: E501
|
378
378
|
_preload_content=_params.get('_preload_content', True),
|
379
379
|
_request_timeout=_params.get('_request_timeout'),
|
380
|
+
opts=_params.get('opts'),
|
380
381
|
collection_formats=_collection_formats,
|
381
382
|
_request_auth=_params.get('_request_auth'))
|
382
383
|
|
@@ -405,10 +406,9 @@ class WorkspaceApi:
|
|
405
406
|
:type workspace_item_creation_request: WorkspaceItemCreationRequest
|
406
407
|
:param async_req: Whether to execute the request asynchronously.
|
407
408
|
:type async_req: bool, optional
|
408
|
-
:param _request_timeout:
|
409
|
-
|
410
|
-
|
411
|
-
(connection, read) timeouts.
|
409
|
+
:param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
|
410
|
+
:param opts: Configuration options for this request
|
411
|
+
:type opts: ConfigurationOptions, optional
|
412
412
|
:return: Returns the result object.
|
413
413
|
If the method is called asynchronously,
|
414
414
|
returns the request thread.
|
@@ -447,10 +447,9 @@ class WorkspaceApi:
|
|
447
447
|
:param _return_http_data_only: response data instead of ApiResponse
|
448
448
|
object with status code, headers, etc
|
449
449
|
:type _return_http_data_only: bool, optional
|
450
|
-
:param _request_timeout:
|
451
|
-
|
452
|
-
|
453
|
-
(connection, read) timeouts.
|
450
|
+
:param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
|
451
|
+
:param opts: Configuration options for this request
|
452
|
+
:type opts: ConfigurationOptions, optional
|
454
453
|
:param _request_auth: set to override the auth_settings for an a single
|
455
454
|
request; this effectively ignores the authentication
|
456
455
|
in the spec for a single request.
|
@@ -476,7 +475,8 @@ class WorkspaceApi:
|
|
476
475
|
'_request_timeout',
|
477
476
|
'_request_auth',
|
478
477
|
'_content_type',
|
479
|
-
'_headers'
|
478
|
+
'_headers',
|
479
|
+
'opts'
|
480
480
|
]
|
481
481
|
)
|
482
482
|
|
@@ -543,6 +543,7 @@ class WorkspaceApi:
|
|
543
543
|
_return_http_data_only=_params.get('_return_http_data_only'), # noqa: E501
|
544
544
|
_preload_content=_params.get('_preload_content', True),
|
545
545
|
_request_timeout=_params.get('_request_timeout'),
|
546
|
+
opts=_params.get('opts'),
|
546
547
|
collection_formats=_collection_formats,
|
547
548
|
_request_auth=_params.get('_request_auth'))
|
548
549
|
|
@@ -569,10 +570,9 @@ class WorkspaceApi:
|
|
569
570
|
:type workspace_creation_request: WorkspaceCreationRequest
|
570
571
|
:param async_req: Whether to execute the request asynchronously.
|
571
572
|
:type async_req: bool, optional
|
572
|
-
:param _request_timeout:
|
573
|
-
|
574
|
-
|
575
|
-
(connection, read) timeouts.
|
573
|
+
:param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
|
574
|
+
:param opts: Configuration options for this request
|
575
|
+
:type opts: ConfigurationOptions, optional
|
576
576
|
:return: Returns the result object.
|
577
577
|
If the method is called asynchronously,
|
578
578
|
returns the request thread.
|
@@ -609,10 +609,9 @@ class WorkspaceApi:
|
|
609
609
|
:param _return_http_data_only: response data instead of ApiResponse
|
610
610
|
object with status code, headers, etc
|
611
611
|
:type _return_http_data_only: bool, optional
|
612
|
-
:param _request_timeout:
|
613
|
-
|
614
|
-
|
615
|
-
(connection, read) timeouts.
|
612
|
+
:param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
|
613
|
+
:param opts: Configuration options for this request
|
614
|
+
:type opts: ConfigurationOptions, optional
|
616
615
|
:param _request_auth: set to override the auth_settings for an a single
|
617
616
|
request; this effectively ignores the authentication
|
618
617
|
in the spec for a single request.
|
@@ -637,7 +636,8 @@ class WorkspaceApi:
|
|
637
636
|
'_request_timeout',
|
638
637
|
'_request_auth',
|
639
638
|
'_content_type',
|
640
|
-
'_headers'
|
639
|
+
'_headers',
|
640
|
+
'opts'
|
641
641
|
]
|
642
642
|
)
|
643
643
|
|
@@ -701,6 +701,7 @@ class WorkspaceApi:
|
|
701
701
|
_return_http_data_only=_params.get('_return_http_data_only'), # noqa: E501
|
702
702
|
_preload_content=_params.get('_preload_content', True),
|
703
703
|
_request_timeout=_params.get('_request_timeout'),
|
704
|
+
opts=_params.get('opts'),
|
704
705
|
collection_formats=_collection_formats,
|
705
706
|
_request_auth=_params.get('_request_auth'))
|
706
707
|
|
@@ -729,10 +730,9 @@ class WorkspaceApi:
|
|
729
730
|
:type item_name: str
|
730
731
|
:param async_req: Whether to execute the request asynchronously.
|
731
732
|
:type async_req: bool, optional
|
732
|
-
:param _request_timeout:
|
733
|
-
|
734
|
-
|
735
|
-
(connection, read) timeouts.
|
733
|
+
:param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
|
734
|
+
:param opts: Configuration options for this request
|
735
|
+
:type opts: ConfigurationOptions, optional
|
736
736
|
:return: Returns the result object.
|
737
737
|
If the method is called asynchronously,
|
738
738
|
returns the request thread.
|
@@ -771,10 +771,9 @@ class WorkspaceApi:
|
|
771
771
|
:param _return_http_data_only: response data instead of ApiResponse
|
772
772
|
object with status code, headers, etc
|
773
773
|
:type _return_http_data_only: bool, optional
|
774
|
-
:param _request_timeout:
|
775
|
-
|
776
|
-
|
777
|
-
(connection, read) timeouts.
|
774
|
+
:param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
|
775
|
+
:param opts: Configuration options for this request
|
776
|
+
:type opts: ConfigurationOptions, optional
|
778
777
|
:param _request_auth: set to override the auth_settings for an a single
|
779
778
|
request; this effectively ignores the authentication
|
780
779
|
in the spec for a single request.
|
@@ -800,7 +799,8 @@ class WorkspaceApi:
|
|
800
799
|
'_request_timeout',
|
801
800
|
'_request_auth',
|
802
801
|
'_content_type',
|
803
|
-
'_headers'
|
802
|
+
'_headers',
|
803
|
+
'opts'
|
804
804
|
]
|
805
805
|
)
|
806
806
|
|
@@ -860,6 +860,7 @@ class WorkspaceApi:
|
|
860
860
|
_return_http_data_only=_params.get('_return_http_data_only'), # noqa: E501
|
861
861
|
_preload_content=_params.get('_preload_content', True),
|
862
862
|
_request_timeout=_params.get('_request_timeout'),
|
863
|
+
opts=_params.get('opts'),
|
863
864
|
collection_formats=_collection_formats,
|
864
865
|
_request_auth=_params.get('_request_auth'))
|
865
866
|
|
@@ -886,10 +887,9 @@ class WorkspaceApi:
|
|
886
887
|
:type workspace_name: str
|
887
888
|
:param async_req: Whether to execute the request asynchronously.
|
888
889
|
:type async_req: bool, optional
|
889
|
-
:param _request_timeout:
|
890
|
-
|
891
|
-
|
892
|
-
(connection, read) timeouts.
|
890
|
+
:param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
|
891
|
+
:param opts: Configuration options for this request
|
892
|
+
:type opts: ConfigurationOptions, optional
|
893
893
|
:return: Returns the result object.
|
894
894
|
If the method is called asynchronously,
|
895
895
|
returns the request thread.
|
@@ -926,10 +926,9 @@ class WorkspaceApi:
|
|
926
926
|
:param _return_http_data_only: response data instead of ApiResponse
|
927
927
|
object with status code, headers, etc
|
928
928
|
:type _return_http_data_only: bool, optional
|
929
|
-
:param _request_timeout:
|
930
|
-
|
931
|
-
|
932
|
-
(connection, read) timeouts.
|
929
|
+
:param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
|
930
|
+
:param opts: Configuration options for this request
|
931
|
+
:type opts: ConfigurationOptions, optional
|
933
932
|
:param _request_auth: set to override the auth_settings for an a single
|
934
933
|
request; this effectively ignores the authentication
|
935
934
|
in the spec for a single request.
|
@@ -954,7 +953,8 @@ class WorkspaceApi:
|
|
954
953
|
'_request_timeout',
|
955
954
|
'_request_auth',
|
956
955
|
'_content_type',
|
957
|
-
'_headers'
|
956
|
+
'_headers',
|
957
|
+
'opts'
|
958
958
|
]
|
959
959
|
)
|
960
960
|
|
@@ -1011,6 +1011,7 @@ class WorkspaceApi:
|
|
1011
1011
|
_return_http_data_only=_params.get('_return_http_data_only'), # noqa: E501
|
1012
1012
|
_preload_content=_params.get('_preload_content', True),
|
1013
1013
|
_request_timeout=_params.get('_request_timeout'),
|
1014
|
+
opts=_params.get('opts'),
|
1014
1015
|
collection_formats=_collection_formats,
|
1015
1016
|
_request_auth=_params.get('_request_auth'))
|
1016
1017
|
|
@@ -1039,10 +1040,9 @@ class WorkspaceApi:
|
|
1039
1040
|
:type item_name: str
|
1040
1041
|
:param async_req: Whether to execute the request asynchronously.
|
1041
1042
|
:type async_req: bool, optional
|
1042
|
-
:param _request_timeout:
|
1043
|
-
|
1044
|
-
|
1045
|
-
(connection, read) timeouts.
|
1043
|
+
:param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
|
1044
|
+
:param opts: Configuration options for this request
|
1045
|
+
:type opts: ConfigurationOptions, optional
|
1046
1046
|
:return: Returns the result object.
|
1047
1047
|
If the method is called asynchronously,
|
1048
1048
|
returns the request thread.
|
@@ -1081,10 +1081,9 @@ class WorkspaceApi:
|
|
1081
1081
|
:param _return_http_data_only: response data instead of ApiResponse
|
1082
1082
|
object with status code, headers, etc
|
1083
1083
|
:type _return_http_data_only: bool, optional
|
1084
|
-
:param _request_timeout:
|
1085
|
-
|
1086
|
-
|
1087
|
-
(connection, read) timeouts.
|
1084
|
+
:param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
|
1085
|
+
:param opts: Configuration options for this request
|
1086
|
+
:type opts: ConfigurationOptions, optional
|
1088
1087
|
:param _request_auth: set to override the auth_settings for an a single
|
1089
1088
|
request; this effectively ignores the authentication
|
1090
1089
|
in the spec for a single request.
|
@@ -1110,7 +1109,8 @@ class WorkspaceApi:
|
|
1110
1109
|
'_request_timeout',
|
1111
1110
|
'_request_auth',
|
1112
1111
|
'_content_type',
|
1113
|
-
'_headers'
|
1112
|
+
'_headers',
|
1113
|
+
'opts'
|
1114
1114
|
]
|
1115
1115
|
)
|
1116
1116
|
|
@@ -1170,6 +1170,7 @@ class WorkspaceApi:
|
|
1170
1170
|
_return_http_data_only=_params.get('_return_http_data_only'), # noqa: E501
|
1171
1171
|
_preload_content=_params.get('_preload_content', True),
|
1172
1172
|
_request_timeout=_params.get('_request_timeout'),
|
1173
|
+
opts=_params.get('opts'),
|
1173
1174
|
collection_formats=_collection_formats,
|
1174
1175
|
_request_auth=_params.get('_request_auth'))
|
1175
1176
|
|
@@ -1196,10 +1197,9 @@ class WorkspaceApi:
|
|
1196
1197
|
:type workspace_name: str
|
1197
1198
|
:param async_req: Whether to execute the request asynchronously.
|
1198
1199
|
:type async_req: bool, optional
|
1199
|
-
:param _request_timeout:
|
1200
|
-
|
1201
|
-
|
1202
|
-
(connection, read) timeouts.
|
1200
|
+
:param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
|
1201
|
+
:param opts: Configuration options for this request
|
1202
|
+
:type opts: ConfigurationOptions, optional
|
1203
1203
|
:return: Returns the result object.
|
1204
1204
|
If the method is called asynchronously,
|
1205
1205
|
returns the request thread.
|
@@ -1236,10 +1236,9 @@ class WorkspaceApi:
|
|
1236
1236
|
:param _return_http_data_only: response data instead of ApiResponse
|
1237
1237
|
object with status code, headers, etc
|
1238
1238
|
:type _return_http_data_only: bool, optional
|
1239
|
-
:param _request_timeout:
|
1240
|
-
|
1241
|
-
|
1242
|
-
(connection, read) timeouts.
|
1239
|
+
:param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
|
1240
|
+
:param opts: Configuration options for this request
|
1241
|
+
:type opts: ConfigurationOptions, optional
|
1243
1242
|
:param _request_auth: set to override the auth_settings for an a single
|
1244
1243
|
request; this effectively ignores the authentication
|
1245
1244
|
in the spec for a single request.
|
@@ -1264,7 +1263,8 @@ class WorkspaceApi:
|
|
1264
1263
|
'_request_timeout',
|
1265
1264
|
'_request_auth',
|
1266
1265
|
'_content_type',
|
1267
|
-
'_headers'
|
1266
|
+
'_headers',
|
1267
|
+
'opts'
|
1268
1268
|
]
|
1269
1269
|
)
|
1270
1270
|
|
@@ -1321,6 +1321,7 @@ class WorkspaceApi:
|
|
1321
1321
|
_return_http_data_only=_params.get('_return_http_data_only'), # noqa: E501
|
1322
1322
|
_preload_content=_params.get('_preload_content', True),
|
1323
1323
|
_request_timeout=_params.get('_request_timeout'),
|
1324
|
+
opts=_params.get('opts'),
|
1324
1325
|
collection_formats=_collection_formats,
|
1325
1326
|
_request_auth=_params.get('_request_auth'))
|
1326
1327
|
|
@@ -1351,10 +1352,9 @@ class WorkspaceApi:
|
|
1351
1352
|
:type as_at: datetime
|
1352
1353
|
:param async_req: Whether to execute the request asynchronously.
|
1353
1354
|
:type async_req: bool, optional
|
1354
|
-
:param _request_timeout:
|
1355
|
-
|
1356
|
-
|
1357
|
-
(connection, read) timeouts.
|
1355
|
+
:param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
|
1356
|
+
:param opts: Configuration options for this request
|
1357
|
+
:type opts: ConfigurationOptions, optional
|
1358
1358
|
:return: Returns the result object.
|
1359
1359
|
If the method is called asynchronously,
|
1360
1360
|
returns the request thread.
|
@@ -1395,10 +1395,9 @@ class WorkspaceApi:
|
|
1395
1395
|
:param _return_http_data_only: response data instead of ApiResponse
|
1396
1396
|
object with status code, headers, etc
|
1397
1397
|
:type _return_http_data_only: bool, optional
|
1398
|
-
:param _request_timeout:
|
1399
|
-
|
1400
|
-
|
1401
|
-
(connection, read) timeouts.
|
1398
|
+
:param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
|
1399
|
+
:param opts: Configuration options for this request
|
1400
|
+
:type opts: ConfigurationOptions, optional
|
1402
1401
|
:param _request_auth: set to override the auth_settings for an a single
|
1403
1402
|
request; this effectively ignores the authentication
|
1404
1403
|
in the spec for a single request.
|
@@ -1425,7 +1424,8 @@ class WorkspaceApi:
|
|
1425
1424
|
'_request_timeout',
|
1426
1425
|
'_request_auth',
|
1427
1426
|
'_content_type',
|
1428
|
-
'_headers'
|
1427
|
+
'_headers',
|
1428
|
+
'opts'
|
1429
1429
|
]
|
1430
1430
|
)
|
1431
1431
|
|
@@ -1491,6 +1491,7 @@ class WorkspaceApi:
|
|
1491
1491
|
_return_http_data_only=_params.get('_return_http_data_only'), # noqa: E501
|
1492
1492
|
_preload_content=_params.get('_preload_content', True),
|
1493
1493
|
_request_timeout=_params.get('_request_timeout'),
|
1494
|
+
opts=_params.get('opts'),
|
1494
1495
|
collection_formats=_collection_formats,
|
1495
1496
|
_request_auth=_params.get('_request_auth'))
|
1496
1497
|
|
@@ -1519,10 +1520,9 @@ class WorkspaceApi:
|
|
1519
1520
|
:type as_at: datetime
|
1520
1521
|
:param async_req: Whether to execute the request asynchronously.
|
1521
1522
|
:type async_req: bool, optional
|
1522
|
-
:param _request_timeout:
|
1523
|
-
|
1524
|
-
|
1525
|
-
(connection, read) timeouts.
|
1523
|
+
:param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
|
1524
|
+
:param opts: Configuration options for this request
|
1525
|
+
:type opts: ConfigurationOptions, optional
|
1526
1526
|
:return: Returns the result object.
|
1527
1527
|
If the method is called asynchronously,
|
1528
1528
|
returns the request thread.
|
@@ -1561,10 +1561,9 @@ class WorkspaceApi:
|
|
1561
1561
|
:param _return_http_data_only: response data instead of ApiResponse
|
1562
1562
|
object with status code, headers, etc
|
1563
1563
|
:type _return_http_data_only: bool, optional
|
1564
|
-
:param _request_timeout:
|
1565
|
-
|
1566
|
-
|
1567
|
-
(connection, read) timeouts.
|
1564
|
+
:param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
|
1565
|
+
:param opts: Configuration options for this request
|
1566
|
+
:type opts: ConfigurationOptions, optional
|
1568
1567
|
:param _request_auth: set to override the auth_settings for an a single
|
1569
1568
|
request; this effectively ignores the authentication
|
1570
1569
|
in the spec for a single request.
|
@@ -1590,7 +1589,8 @@ class WorkspaceApi:
|
|
1590
1589
|
'_request_timeout',
|
1591
1590
|
'_request_auth',
|
1592
1591
|
'_content_type',
|
1593
|
-
'_headers'
|
1592
|
+
'_headers',
|
1593
|
+
'opts'
|
1594
1594
|
]
|
1595
1595
|
)
|
1596
1596
|
|
@@ -1653,6 +1653,7 @@ class WorkspaceApi:
|
|
1653
1653
|
_return_http_data_only=_params.get('_return_http_data_only'), # noqa: E501
|
1654
1654
|
_preload_content=_params.get('_preload_content', True),
|
1655
1655
|
_request_timeout=_params.get('_request_timeout'),
|
1656
|
+
opts=_params.get('opts'),
|
1656
1657
|
collection_formats=_collection_formats,
|
1657
1658
|
_request_auth=_params.get('_request_auth'))
|
1658
1659
|
|
@@ -1683,10 +1684,9 @@ class WorkspaceApi:
|
|
1683
1684
|
:type as_at: datetime
|
1684
1685
|
:param async_req: Whether to execute the request asynchronously.
|
1685
1686
|
:type async_req: bool, optional
|
1686
|
-
:param _request_timeout:
|
1687
|
-
|
1688
|
-
|
1689
|
-
(connection, read) timeouts.
|
1687
|
+
:param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
|
1688
|
+
:param opts: Configuration options for this request
|
1689
|
+
:type opts: ConfigurationOptions, optional
|
1690
1690
|
:return: Returns the result object.
|
1691
1691
|
If the method is called asynchronously,
|
1692
1692
|
returns the request thread.
|
@@ -1727,10 +1727,9 @@ class WorkspaceApi:
|
|
1727
1727
|
:param _return_http_data_only: response data instead of ApiResponse
|
1728
1728
|
object with status code, headers, etc
|
1729
1729
|
:type _return_http_data_only: bool, optional
|
1730
|
-
:param _request_timeout:
|
1731
|
-
|
1732
|
-
|
1733
|
-
(connection, read) timeouts.
|
1730
|
+
:param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
|
1731
|
+
:param opts: Configuration options for this request
|
1732
|
+
:type opts: ConfigurationOptions, optional
|
1734
1733
|
:param _request_auth: set to override the auth_settings for an a single
|
1735
1734
|
request; this effectively ignores the authentication
|
1736
1735
|
in the spec for a single request.
|
@@ -1757,7 +1756,8 @@ class WorkspaceApi:
|
|
1757
1756
|
'_request_timeout',
|
1758
1757
|
'_request_auth',
|
1759
1758
|
'_content_type',
|
1760
|
-
'_headers'
|
1759
|
+
'_headers',
|
1760
|
+
'opts'
|
1761
1761
|
]
|
1762
1762
|
)
|
1763
1763
|
|
@@ -1823,6 +1823,7 @@ class WorkspaceApi:
|
|
1823
1823
|
_return_http_data_only=_params.get('_return_http_data_only'), # noqa: E501
|
1824
1824
|
_preload_content=_params.get('_preload_content', True),
|
1825
1825
|
_request_timeout=_params.get('_request_timeout'),
|
1826
|
+
opts=_params.get('opts'),
|
1826
1827
|
collection_formats=_collection_formats,
|
1827
1828
|
_request_auth=_params.get('_request_auth'))
|
1828
1829
|
|
@@ -1851,10 +1852,9 @@ class WorkspaceApi:
|
|
1851
1852
|
:type as_at: datetime
|
1852
1853
|
:param async_req: Whether to execute the request asynchronously.
|
1853
1854
|
:type async_req: bool, optional
|
1854
|
-
:param _request_timeout:
|
1855
|
-
|
1856
|
-
|
1857
|
-
(connection, read) timeouts.
|
1855
|
+
:param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
|
1856
|
+
:param opts: Configuration options for this request
|
1857
|
+
:type opts: ConfigurationOptions, optional
|
1858
1858
|
:return: Returns the result object.
|
1859
1859
|
If the method is called asynchronously,
|
1860
1860
|
returns the request thread.
|
@@ -1893,10 +1893,9 @@ class WorkspaceApi:
|
|
1893
1893
|
:param _return_http_data_only: response data instead of ApiResponse
|
1894
1894
|
object with status code, headers, etc
|
1895
1895
|
:type _return_http_data_only: bool, optional
|
1896
|
-
:param _request_timeout:
|
1897
|
-
|
1898
|
-
|
1899
|
-
(connection, read) timeouts.
|
1896
|
+
:param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
|
1897
|
+
:param opts: Configuration options for this request
|
1898
|
+
:type opts: ConfigurationOptions, optional
|
1900
1899
|
:param _request_auth: set to override the auth_settings for an a single
|
1901
1900
|
request; this effectively ignores the authentication
|
1902
1901
|
in the spec for a single request.
|
@@ -1922,7 +1921,8 @@ class WorkspaceApi:
|
|
1922
1921
|
'_request_timeout',
|
1923
1922
|
'_request_auth',
|
1924
1923
|
'_content_type',
|
1925
|
-
'_headers'
|
1924
|
+
'_headers',
|
1925
|
+
'opts'
|
1926
1926
|
]
|
1927
1927
|
)
|
1928
1928
|
|
@@ -1985,6 +1985,7 @@ class WorkspaceApi:
|
|
1985
1985
|
_return_http_data_only=_params.get('_return_http_data_only'), # noqa: E501
|
1986
1986
|
_preload_content=_params.get('_preload_content', True),
|
1987
1987
|
_request_timeout=_params.get('_request_timeout'),
|
1988
|
+
opts=_params.get('opts'),
|
1988
1989
|
collection_formats=_collection_formats,
|
1989
1990
|
_request_auth=_params.get('_request_auth'))
|
1990
1991
|
|
@@ -2021,10 +2022,9 @@ class WorkspaceApi:
|
|
2021
2022
|
:type filter: str
|
2022
2023
|
:param async_req: Whether to execute the request asynchronously.
|
2023
2024
|
:type async_req: bool, optional
|
2024
|
-
:param _request_timeout:
|
2025
|
-
|
2026
|
-
|
2027
|
-
(connection, read) timeouts.
|
2025
|
+
:param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
|
2026
|
+
:param opts: Configuration options for this request
|
2027
|
+
:type opts: ConfigurationOptions, optional
|
2028
2028
|
:return: Returns the result object.
|
2029
2029
|
If the method is called asynchronously,
|
2030
2030
|
returns the request thread.
|
@@ -2071,10 +2071,9 @@ class WorkspaceApi:
|
|
2071
2071
|
:param _return_http_data_only: response data instead of ApiResponse
|
2072
2072
|
object with status code, headers, etc
|
2073
2073
|
:type _return_http_data_only: bool, optional
|
2074
|
-
:param _request_timeout:
|
2075
|
-
|
2076
|
-
|
2077
|
-
(connection, read) timeouts.
|
2074
|
+
:param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
|
2075
|
+
:param opts: Configuration options for this request
|
2076
|
+
:type opts: ConfigurationOptions, optional
|
2078
2077
|
:param _request_auth: set to override the auth_settings for an a single
|
2079
2078
|
request; this effectively ignores the authentication
|
2080
2079
|
in the spec for a single request.
|
@@ -2104,7 +2103,8 @@ class WorkspaceApi:
|
|
2104
2103
|
'_request_timeout',
|
2105
2104
|
'_request_auth',
|
2106
2105
|
'_content_type',
|
2107
|
-
'_headers'
|
2106
|
+
'_headers',
|
2107
|
+
'opts'
|
2108
2108
|
]
|
2109
2109
|
)
|
2110
2110
|
|
@@ -2180,6 +2180,7 @@ class WorkspaceApi:
|
|
2180
2180
|
_return_http_data_only=_params.get('_return_http_data_only'), # noqa: E501
|
2181
2181
|
_preload_content=_params.get('_preload_content', True),
|
2182
2182
|
_request_timeout=_params.get('_request_timeout'),
|
2183
|
+
opts=_params.get('opts'),
|
2183
2184
|
collection_formats=_collection_formats,
|
2184
2185
|
_request_auth=_params.get('_request_auth'))
|
2185
2186
|
|
@@ -2214,10 +2215,9 @@ class WorkspaceApi:
|
|
2214
2215
|
:type filter: str
|
2215
2216
|
:param async_req: Whether to execute the request asynchronously.
|
2216
2217
|
:type async_req: bool, optional
|
2217
|
-
:param _request_timeout:
|
2218
|
-
|
2219
|
-
|
2220
|
-
(connection, read) timeouts.
|
2218
|
+
:param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
|
2219
|
+
:param opts: Configuration options for this request
|
2220
|
+
:type opts: ConfigurationOptions, optional
|
2221
2221
|
:return: Returns the result object.
|
2222
2222
|
If the method is called asynchronously,
|
2223
2223
|
returns the request thread.
|
@@ -2262,10 +2262,9 @@ class WorkspaceApi:
|
|
2262
2262
|
:param _return_http_data_only: response data instead of ApiResponse
|
2263
2263
|
object with status code, headers, etc
|
2264
2264
|
:type _return_http_data_only: bool, optional
|
2265
|
-
:param _request_timeout:
|
2266
|
-
|
2267
|
-
|
2268
|
-
(connection, read) timeouts.
|
2265
|
+
:param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
|
2266
|
+
:param opts: Configuration options for this request
|
2267
|
+
:type opts: ConfigurationOptions, optional
|
2269
2268
|
:param _request_auth: set to override the auth_settings for an a single
|
2270
2269
|
request; this effectively ignores the authentication
|
2271
2270
|
in the spec for a single request.
|
@@ -2294,7 +2293,8 @@ class WorkspaceApi:
|
|
2294
2293
|
'_request_timeout',
|
2295
2294
|
'_request_auth',
|
2296
2295
|
'_content_type',
|
2297
|
-
'_headers'
|
2296
|
+
'_headers',
|
2297
|
+
'opts'
|
2298
2298
|
]
|
2299
2299
|
)
|
2300
2300
|
|
@@ -2367,6 +2367,7 @@ class WorkspaceApi:
|
|
2367
2367
|
_return_http_data_only=_params.get('_return_http_data_only'), # noqa: E501
|
2368
2368
|
_preload_content=_params.get('_preload_content', True),
|
2369
2369
|
_request_timeout=_params.get('_request_timeout'),
|
2370
|
+
opts=_params.get('opts'),
|
2370
2371
|
collection_formats=_collection_formats,
|
2371
2372
|
_request_auth=_params.get('_request_auth'))
|
2372
2373
|
|
@@ -2403,10 +2404,9 @@ class WorkspaceApi:
|
|
2403
2404
|
:type filter: str
|
2404
2405
|
:param async_req: Whether to execute the request asynchronously.
|
2405
2406
|
:type async_req: bool, optional
|
2406
|
-
:param _request_timeout:
|
2407
|
-
|
2408
|
-
|
2409
|
-
(connection, read) timeouts.
|
2407
|
+
:param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
|
2408
|
+
:param opts: Configuration options for this request
|
2409
|
+
:type opts: ConfigurationOptions, optional
|
2410
2410
|
:return: Returns the result object.
|
2411
2411
|
If the method is called asynchronously,
|
2412
2412
|
returns the request thread.
|
@@ -2453,10 +2453,9 @@ class WorkspaceApi:
|
|
2453
2453
|
:param _return_http_data_only: response data instead of ApiResponse
|
2454
2454
|
object with status code, headers, etc
|
2455
2455
|
:type _return_http_data_only: bool, optional
|
2456
|
-
:param _request_timeout:
|
2457
|
-
|
2458
|
-
|
2459
|
-
(connection, read) timeouts.
|
2456
|
+
:param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
|
2457
|
+
:param opts: Configuration options for this request
|
2458
|
+
:type opts: ConfigurationOptions, optional
|
2460
2459
|
:param _request_auth: set to override the auth_settings for an a single
|
2461
2460
|
request; this effectively ignores the authentication
|
2462
2461
|
in the spec for a single request.
|
@@ -2486,7 +2485,8 @@ class WorkspaceApi:
|
|
2486
2485
|
'_request_timeout',
|
2487
2486
|
'_request_auth',
|
2488
2487
|
'_content_type',
|
2489
|
-
'_headers'
|
2488
|
+
'_headers',
|
2489
|
+
'opts'
|
2490
2490
|
]
|
2491
2491
|
)
|
2492
2492
|
|
@@ -2562,6 +2562,7 @@ class WorkspaceApi:
|
|
2562
2562
|
_return_http_data_only=_params.get('_return_http_data_only'), # noqa: E501
|
2563
2563
|
_preload_content=_params.get('_preload_content', True),
|
2564
2564
|
_request_timeout=_params.get('_request_timeout'),
|
2565
|
+
opts=_params.get('opts'),
|
2565
2566
|
collection_formats=_collection_formats,
|
2566
2567
|
_request_auth=_params.get('_request_auth'))
|
2567
2568
|
|
@@ -2596,10 +2597,9 @@ class WorkspaceApi:
|
|
2596
2597
|
:type filter: str
|
2597
2598
|
:param async_req: Whether to execute the request asynchronously.
|
2598
2599
|
:type async_req: bool, optional
|
2599
|
-
:param _request_timeout:
|
2600
|
-
|
2601
|
-
|
2602
|
-
(connection, read) timeouts.
|
2600
|
+
:param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
|
2601
|
+
:param opts: Configuration options for this request
|
2602
|
+
:type opts: ConfigurationOptions, optional
|
2603
2603
|
:return: Returns the result object.
|
2604
2604
|
If the method is called asynchronously,
|
2605
2605
|
returns the request thread.
|
@@ -2644,10 +2644,9 @@ class WorkspaceApi:
|
|
2644
2644
|
:param _return_http_data_only: response data instead of ApiResponse
|
2645
2645
|
object with status code, headers, etc
|
2646
2646
|
:type _return_http_data_only: bool, optional
|
2647
|
-
:param _request_timeout:
|
2648
|
-
|
2649
|
-
|
2650
|
-
(connection, read) timeouts.
|
2647
|
+
:param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
|
2648
|
+
:param opts: Configuration options for this request
|
2649
|
+
:type opts: ConfigurationOptions, optional
|
2651
2650
|
:param _request_auth: set to override the auth_settings for an a single
|
2652
2651
|
request; this effectively ignores the authentication
|
2653
2652
|
in the spec for a single request.
|
@@ -2676,7 +2675,8 @@ class WorkspaceApi:
|
|
2676
2675
|
'_request_timeout',
|
2677
2676
|
'_request_auth',
|
2678
2677
|
'_content_type',
|
2679
|
-
'_headers'
|
2678
|
+
'_headers',
|
2679
|
+
'opts'
|
2680
2680
|
]
|
2681
2681
|
)
|
2682
2682
|
|
@@ -2749,6 +2749,7 @@ class WorkspaceApi:
|
|
2749
2749
|
_return_http_data_only=_params.get('_return_http_data_only'), # noqa: E501
|
2750
2750
|
_preload_content=_params.get('_preload_content', True),
|
2751
2751
|
_request_timeout=_params.get('_request_timeout'),
|
2752
|
+
opts=_params.get('opts'),
|
2752
2753
|
collection_formats=_collection_formats,
|
2753
2754
|
_request_auth=_params.get('_request_auth'))
|
2754
2755
|
|
@@ -2779,10 +2780,9 @@ class WorkspaceApi:
|
|
2779
2780
|
:type workspace_item_update_request: WorkspaceItemUpdateRequest
|
2780
2781
|
:param async_req: Whether to execute the request asynchronously.
|
2781
2782
|
:type async_req: bool, optional
|
2782
|
-
:param _request_timeout:
|
2783
|
-
|
2784
|
-
|
2785
|
-
(connection, read) timeouts.
|
2783
|
+
:param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
|
2784
|
+
:param opts: Configuration options for this request
|
2785
|
+
:type opts: ConfigurationOptions, optional
|
2786
2786
|
:return: Returns the result object.
|
2787
2787
|
If the method is called asynchronously,
|
2788
2788
|
returns the request thread.
|
@@ -2823,10 +2823,9 @@ class WorkspaceApi:
|
|
2823
2823
|
:param _return_http_data_only: response data instead of ApiResponse
|
2824
2824
|
object with status code, headers, etc
|
2825
2825
|
:type _return_http_data_only: bool, optional
|
2826
|
-
:param _request_timeout:
|
2827
|
-
|
2828
|
-
|
2829
|
-
(connection, read) timeouts.
|
2826
|
+
:param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
|
2827
|
+
:param opts: Configuration options for this request
|
2828
|
+
:type opts: ConfigurationOptions, optional
|
2830
2829
|
:param _request_auth: set to override the auth_settings for an a single
|
2831
2830
|
request; this effectively ignores the authentication
|
2832
2831
|
in the spec for a single request.
|
@@ -2853,7 +2852,8 @@ class WorkspaceApi:
|
|
2853
2852
|
'_request_timeout',
|
2854
2853
|
'_request_auth',
|
2855
2854
|
'_content_type',
|
2856
|
-
'_headers'
|
2855
|
+
'_headers',
|
2856
|
+
'opts'
|
2857
2857
|
]
|
2858
2858
|
)
|
2859
2859
|
|
@@ -2923,6 +2923,7 @@ class WorkspaceApi:
|
|
2923
2923
|
_return_http_data_only=_params.get('_return_http_data_only'), # noqa: E501
|
2924
2924
|
_preload_content=_params.get('_preload_content', True),
|
2925
2925
|
_request_timeout=_params.get('_request_timeout'),
|
2926
|
+
opts=_params.get('opts'),
|
2926
2927
|
collection_formats=_collection_formats,
|
2927
2928
|
_request_auth=_params.get('_request_auth'))
|
2928
2929
|
|
@@ -2951,10 +2952,9 @@ class WorkspaceApi:
|
|
2951
2952
|
:type workspace_update_request: WorkspaceUpdateRequest
|
2952
2953
|
:param async_req: Whether to execute the request asynchronously.
|
2953
2954
|
:type async_req: bool, optional
|
2954
|
-
:param _request_timeout:
|
2955
|
-
|
2956
|
-
|
2957
|
-
(connection, read) timeouts.
|
2955
|
+
:param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
|
2956
|
+
:param opts: Configuration options for this request
|
2957
|
+
:type opts: ConfigurationOptions, optional
|
2958
2958
|
:return: Returns the result object.
|
2959
2959
|
If the method is called asynchronously,
|
2960
2960
|
returns the request thread.
|
@@ -2993,10 +2993,9 @@ class WorkspaceApi:
|
|
2993
2993
|
:param _return_http_data_only: response data instead of ApiResponse
|
2994
2994
|
object with status code, headers, etc
|
2995
2995
|
:type _return_http_data_only: bool, optional
|
2996
|
-
:param _request_timeout:
|
2997
|
-
|
2998
|
-
|
2999
|
-
(connection, read) timeouts.
|
2996
|
+
:param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
|
2997
|
+
:param opts: Configuration options for this request
|
2998
|
+
:type opts: ConfigurationOptions, optional
|
3000
2999
|
:param _request_auth: set to override the auth_settings for an a single
|
3001
3000
|
request; this effectively ignores the authentication
|
3002
3001
|
in the spec for a single request.
|
@@ -3022,7 +3021,8 @@ class WorkspaceApi:
|
|
3022
3021
|
'_request_timeout',
|
3023
3022
|
'_request_auth',
|
3024
3023
|
'_content_type',
|
3025
|
-
'_headers'
|
3024
|
+
'_headers',
|
3025
|
+
'opts'
|
3026
3026
|
]
|
3027
3027
|
)
|
3028
3028
|
|
@@ -3089,6 +3089,7 @@ class WorkspaceApi:
|
|
3089
3089
|
_return_http_data_only=_params.get('_return_http_data_only'), # noqa: E501
|
3090
3090
|
_preload_content=_params.get('_preload_content', True),
|
3091
3091
|
_request_timeout=_params.get('_request_timeout'),
|
3092
|
+
opts=_params.get('opts'),
|
3092
3093
|
collection_formats=_collection_formats,
|
3093
3094
|
_request_auth=_params.get('_request_auth'))
|
3094
3095
|
|
@@ -3119,10 +3120,9 @@ class WorkspaceApi:
|
|
3119
3120
|
:type workspace_item_update_request: WorkspaceItemUpdateRequest
|
3120
3121
|
:param async_req: Whether to execute the request asynchronously.
|
3121
3122
|
:type async_req: bool, optional
|
3122
|
-
:param _request_timeout:
|
3123
|
-
|
3124
|
-
|
3125
|
-
(connection, read) timeouts.
|
3123
|
+
:param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
|
3124
|
+
:param opts: Configuration options for this request
|
3125
|
+
:type opts: ConfigurationOptions, optional
|
3126
3126
|
:return: Returns the result object.
|
3127
3127
|
If the method is called asynchronously,
|
3128
3128
|
returns the request thread.
|
@@ -3163,10 +3163,9 @@ class WorkspaceApi:
|
|
3163
3163
|
:param _return_http_data_only: response data instead of ApiResponse
|
3164
3164
|
object with status code, headers, etc
|
3165
3165
|
:type _return_http_data_only: bool, optional
|
3166
|
-
:param _request_timeout:
|
3167
|
-
|
3168
|
-
|
3169
|
-
(connection, read) timeouts.
|
3166
|
+
:param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
|
3167
|
+
:param opts: Configuration options for this request
|
3168
|
+
:type opts: ConfigurationOptions, optional
|
3170
3169
|
:param _request_auth: set to override the auth_settings for an a single
|
3171
3170
|
request; this effectively ignores the authentication
|
3172
3171
|
in the spec for a single request.
|
@@ -3193,7 +3192,8 @@ class WorkspaceApi:
|
|
3193
3192
|
'_request_timeout',
|
3194
3193
|
'_request_auth',
|
3195
3194
|
'_content_type',
|
3196
|
-
'_headers'
|
3195
|
+
'_headers',
|
3196
|
+
'opts'
|
3197
3197
|
]
|
3198
3198
|
)
|
3199
3199
|
|
@@ -3263,6 +3263,7 @@ class WorkspaceApi:
|
|
3263
3263
|
_return_http_data_only=_params.get('_return_http_data_only'), # noqa: E501
|
3264
3264
|
_preload_content=_params.get('_preload_content', True),
|
3265
3265
|
_request_timeout=_params.get('_request_timeout'),
|
3266
|
+
opts=_params.get('opts'),
|
3266
3267
|
collection_formats=_collection_formats,
|
3267
3268
|
_request_auth=_params.get('_request_auth'))
|
3268
3269
|
|
@@ -3291,10 +3292,9 @@ class WorkspaceApi:
|
|
3291
3292
|
:type workspace_update_request: WorkspaceUpdateRequest
|
3292
3293
|
:param async_req: Whether to execute the request asynchronously.
|
3293
3294
|
:type async_req: bool, optional
|
3294
|
-
:param _request_timeout:
|
3295
|
-
|
3296
|
-
|
3297
|
-
(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
|
3298
3298
|
:return: Returns the result object.
|
3299
3299
|
If the method is called asynchronously,
|
3300
3300
|
returns the request thread.
|
@@ -3333,10 +3333,9 @@ class WorkspaceApi:
|
|
3333
3333
|
:param _return_http_data_only: response data instead of ApiResponse
|
3334
3334
|
object with status code, headers, etc
|
3335
3335
|
:type _return_http_data_only: bool, optional
|
3336
|
-
:param _request_timeout:
|
3337
|
-
|
3338
|
-
|
3339
|
-
(connection, read) timeouts.
|
3336
|
+
:param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
|
3337
|
+
:param opts: Configuration options for this request
|
3338
|
+
:type opts: ConfigurationOptions, optional
|
3340
3339
|
:param _request_auth: set to override the auth_settings for an a single
|
3341
3340
|
request; this effectively ignores the authentication
|
3342
3341
|
in the spec for a single request.
|
@@ -3362,7 +3361,8 @@ class WorkspaceApi:
|
|
3362
3361
|
'_request_timeout',
|
3363
3362
|
'_request_auth',
|
3364
3363
|
'_content_type',
|
3365
|
-
'_headers'
|
3364
|
+
'_headers',
|
3365
|
+
'opts'
|
3366
3366
|
]
|
3367
3367
|
)
|
3368
3368
|
|
@@ -3429,5 +3429,6 @@ class WorkspaceApi:
|
|
3429
3429
|
_return_http_data_only=_params.get('_return_http_data_only'), # noqa: E501
|
3430
3430
|
_preload_content=_params.get('_preload_content', True),
|
3431
3431
|
_request_timeout=_params.get('_request_timeout'),
|
3432
|
+
opts=_params.get('opts'),
|
3432
3433
|
collection_formats=_collection_formats,
|
3433
3434
|
_request_auth=_params.get('_request_auth'))
|