waldur-api-client 7.7.7__py3-none-any.whl → 7.7.9__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.
Potentially problematic release.
This version of waldur-api-client might be problematic. Click here for more details.
- waldur_api_client/api/customer_permissions_reviews/customer_permissions_reviews_count.py +19 -0
- waldur_api_client/api/customer_permissions_reviews/customer_permissions_reviews_list.py +19 -0
- waldur_api_client/api/customers/customers_users_list.py +141 -53
- waldur_api_client/api/invoices/invoices_items_retrieve.py +20 -0
- waldur_api_client/api/managed_rancher_cluster_resources/__init__.py +1 -0
- waldur_api_client/api/managed_rancher_cluster_resources/managed_rancher_cluster_resources_add_node.py +162 -0
- waldur_api_client/api/managed_rancher_cluster_resources/managed_rancher_cluster_resources_count.py +172 -0
- waldur_api_client/api/managed_rancher_cluster_resources/managed_rancher_cluster_resources_list.py +196 -0
- waldur_api_client/api/managed_rancher_cluster_resources/managed_rancher_cluster_resources_retrieve.py +171 -0
- waldur_api_client/api/marketplace_course_accounts/__init__.py +1 -0
- waldur_api_client/api/marketplace_course_accounts/marketplace_course_accounts_count.py +244 -0
- waldur_api_client/api/marketplace_course_accounts/marketplace_course_accounts_create.py +148 -0
- waldur_api_client/api/marketplace_course_accounts/marketplace_course_accounts_create_bulk.py +152 -0
- waldur_api_client/api/marketplace_course_accounts/marketplace_course_accounts_destroy.py +89 -0
- waldur_api_client/api/marketplace_course_accounts/marketplace_course_accounts_list.py +245 -0
- waldur_api_client/api/marketplace_course_accounts/marketplace_course_accounts_retrieve.py +140 -0
- waldur_api_client/api/marketplace_customer_service_accounts/marketplace_customer_service_accounts_count.py +25 -0
- waldur_api_client/api/marketplace_customer_service_accounts/marketplace_customer_service_accounts_list.py +25 -0
- waldur_api_client/api/marketplace_project_service_accounts/marketplace_project_service_accounts_count.py +25 -0
- waldur_api_client/api/marketplace_project_service_accounts/marketplace_project_service_accounts_list.py +25 -0
- waldur_api_client/api/marketplace_provider_offerings/marketplace_provider_offerings_component_stats_list.py +30 -0
- waldur_api_client/api/marketplace_provider_offerings/marketplace_provider_offerings_costs_list.py +30 -0
- waldur_api_client/api/marketplace_provider_offerings/marketplace_provider_offerings_count.py +30 -0
- waldur_api_client/api/marketplace_provider_offerings/marketplace_provider_offerings_customers_list.py +30 -0
- waldur_api_client/api/marketplace_provider_offerings/marketplace_provider_offerings_groups_count.py +30 -0
- waldur_api_client/api/marketplace_provider_offerings/marketplace_provider_offerings_groups_list.py +30 -0
- waldur_api_client/api/marketplace_provider_offerings/marketplace_provider_offerings_list.py +30 -0
- waldur_api_client/api/marketplace_public_offerings/marketplace_public_offerings_count.py +30 -0
- waldur_api_client/api/marketplace_public_offerings/marketplace_public_offerings_list.py +30 -0
- waldur_api_client/api/marketplace_service_providers/marketplace_service_providers_course_accounts_list.py +284 -0
- waldur_api_client/api/marketplace_service_providers/marketplace_service_providers_offerings_list.py +30 -0
- waldur_api_client/api/marketplace_service_providers/marketplace_service_providers_project_service_accounts_list.py +29 -0
- waldur_api_client/api/project_permissions_reviews/__init__.py +1 -0
- waldur_api_client/api/project_permissions_reviews/project_permissions_reviews_close.py +91 -0
- waldur_api_client/api/project_permissions_reviews/project_permissions_reviews_count.py +266 -0
- waldur_api_client/api/project_permissions_reviews/project_permissions_reviews_list.py +269 -0
- waldur_api_client/api/project_permissions_reviews/project_permissions_reviews_retrieve.py +142 -0
- waldur_api_client/api/projects/projects_other_users_list.py +98 -23
- waldur_api_client/api/projects/projects_sync_user_roles.py +10 -9
- waldur_api_client/api/support_issue_statuses/__init__.py +1 -0
- waldur_api_client/api/support_issue_statuses/support_issue_statuses_count.py +172 -0
- waldur_api_client/api/support_issue_statuses/support_issue_statuses_create.py +148 -0
- waldur_api_client/api/support_issue_statuses/support_issue_statuses_destroy.py +89 -0
- waldur_api_client/api/support_issue_statuses/support_issue_statuses_list.py +173 -0
- waldur_api_client/api/support_issue_statuses/support_issue_statuses_partial_update.py +162 -0
- waldur_api_client/api/support_issue_statuses/support_issue_statuses_retrieve.py +140 -0
- waldur_api_client/api/support_issue_statuses/support_issue_statuses_update.py +162 -0
- waldur_api_client/api/user_group_invitations/user_group_invitations_submit_request.py +12 -12
- waldur_api_client/api/user_invitations/user_invitations_count.py +30 -0
- waldur_api_client/api/user_invitations/user_invitations_list.py +30 -0
- waldur_api_client/api/user_permission_requests/user_permission_requests_cancel_request.py +146 -0
- waldur_api_client/models/__init__.py +76 -2
- waldur_api_client/models/cancel_request_response.py +75 -0
- waldur_api_client/models/constance_settings.py +18 -0
- waldur_api_client/models/constance_settings_request.py +18 -0
- waldur_api_client/models/course_account.py +187 -0
- waldur_api_client/models/course_account_create_nested.py +68 -0
- waldur_api_client/models/course_account_create_nested_request.py +68 -0
- waldur_api_client/models/course_account_request.py +80 -0
- waldur_api_client/models/course_accounts_bulk_create.py +82 -0
- waldur_api_client/models/course_accounts_bulk_create_request.py +82 -0
- waldur_api_client/models/customer.py +9 -0
- waldur_api_client/models/customer_permission_review.py +16 -16
- waldur_api_client/models/customer_request.py +9 -0
- waldur_api_client/models/customer_service_account.py +9 -0
- waldur_api_client/models/customers_list_field_item.py +1 -0
- waldur_api_client/models/customers_retrieve_field_item.py +1 -0
- waldur_api_client/models/customers_users_list_o.py +9 -0
- waldur_api_client/models/customers_users_list_organization_role_item_type_0.py +10 -0
- waldur_api_client/models/customers_users_list_project_role_item_type_0.py +10 -0
- waldur_api_client/models/dependency_logic_operator_enum.py +9 -0
- waldur_api_client/models/event_subscription.py +1 -1
- waldur_api_client/models/event_types_enum.py +4 -0
- waldur_api_client/models/group_invitation.py +9 -0
- waldur_api_client/models/invitation.py +9 -0
- waldur_api_client/models/invoices_items_retrieve_o.py +15 -0
- waldur_api_client/models/issue_status.py +103 -0
- waldur_api_client/models/issue_status_request.py +78 -0
- waldur_api_client/models/issue_status_type_enum.py +9 -0
- waldur_api_client/models/kind_enum.py +10 -0
- waldur_api_client/models/managed_rancher_cluster_resources_list_field_item.py +82 -0
- waldur_api_client/models/managed_rancher_cluster_resources_retrieve_field_item.py +82 -0
- waldur_api_client/models/managed_rancher_create_node_request.py +186 -0
- waldur_api_client/models/marketplace_course_accounts_count_state_item.py +10 -0
- waldur_api_client/models/marketplace_course_accounts_list_state_item.py +10 -0
- waldur_api_client/models/marketplace_customer_service_accounts_count_state_item.py +10 -0
- waldur_api_client/models/marketplace_customer_service_accounts_list_state_item.py +10 -0
- waldur_api_client/models/marketplace_project_service_accounts_count_state_item.py +10 -0
- waldur_api_client/models/marketplace_project_service_accounts_list_state_item.py +10 -0
- waldur_api_client/models/marketplace_service_providers_course_accounts_list_state_item.py +10 -0
- waldur_api_client/models/marketplace_service_providers_project_service_accounts_list_state_item.py +10 -0
- waldur_api_client/models/marketplace_service_providers_projects_list_field_item.py +1 -0
- waldur_api_client/models/nested_security_group_rule.py +223 -0
- waldur_api_client/models/{open_stack_nested_security_group_rules_item.py → nested_security_group_rule_request.py} +67 -76
- waldur_api_client/models/open_stack_backup_restoration_request.py +0 -22
- waldur_api_client/models/open_stack_fixed_ip.py +13 -3
- waldur_api_client/models/open_stack_fixed_ip_request.py +7 -2
- waldur_api_client/models/open_stack_instance_create_order_attributes.py +20 -20
- waldur_api_client/models/open_stack_nested_security_group.py +16 -16
- waldur_api_client/models/open_stack_port_ip_update_request.py +6 -2
- waldur_api_client/models/open_stack_static_route.py +13 -4
- waldur_api_client/models/open_stack_static_route_request.py +7 -3
- waldur_api_client/models/open_stack_sub_net.py +15 -2
- waldur_api_client/models/open_stack_sub_net_allocation_pool.py +27 -8
- waldur_api_client/models/open_stack_sub_net_allocation_pool_request.py +14 -5
- waldur_api_client/models/open_stack_sub_net_request.py +15 -2
- waldur_api_client/models/patched_customer_request.py +9 -0
- waldur_api_client/models/patched_issue_status_request.py +76 -0
- waldur_api_client/models/patched_open_stack_sub_net_request.py +15 -2
- waldur_api_client/models/patched_project_request.py +17 -0
- waldur_api_client/models/patched_question_admin_request.py +17 -0
- waldur_api_client/models/patched_rancher_service_request.py +1 -1
- waldur_api_client/models/permission_request.py +16 -0
- waldur_api_client/models/project.py +17 -0
- waldur_api_client/models/project_permission_review.py +166 -0
- waldur_api_client/models/project_permissions_reviews_count_o_item.py +11 -0
- waldur_api_client/models/project_permissions_reviews_list_o_item.py +11 -0
- waldur_api_client/models/project_request.py +17 -0
- waldur_api_client/models/project_service_account.py +9 -0
- waldur_api_client/models/projects_list_field_item.py +1 -0
- waldur_api_client/models/projects_other_users_list_o.py +9 -0
- waldur_api_client/models/projects_retrieve_field_item.py +1 -0
- waldur_api_client/models/proposal.py +8 -0
- waldur_api_client/models/proposal_review.py +8 -0
- waldur_api_client/models/question_admin.py +17 -0
- waldur_api_client/models/question_admin_request.py +17 -0
- waldur_api_client/models/rancher_nested_public_ip.py +25 -7
- waldur_api_client/models/rancher_service.py +1 -1
- waldur_api_client/models/rancher_service_request.py +1 -1
- waldur_api_client/models/rmq_connection.py +8 -3
- waldur_api_client/models/rmq_subscription.py +7 -3
- waldur_api_client/models/robot_account.py +16 -16
- waldur_api_client/models/robot_account_details.py +16 -16
- waldur_api_client/models/service_account_state.py +10 -0
- waldur_api_client/models/submit_request_response.py +75 -0
- waldur_api_client/models/visible_invitation_details.py +9 -0
- {waldur_api_client-7.7.7.dist-info → waldur_api_client-7.7.9.dist-info}/METADATA +1 -1
- {waldur_api_client-7.7.7.dist-info → waldur_api_client-7.7.9.dist-info}/RECORD +140 -78
- {waldur_api_client-7.7.7.dist-info → waldur_api_client-7.7.9.dist-info}/LICENSE +0 -0
- {waldur_api_client-7.7.7.dist-info → waldur_api_client-7.7.9.dist-info}/WHEEL +0 -0
waldur_api_client/api/marketplace_provider_offerings/marketplace_provider_offerings_count.py
CHANGED
|
@@ -24,6 +24,8 @@ def _get_kwargs(
|
|
|
24
24
|
customer: Union[Unset, str] = UNSET,
|
|
25
25
|
customer_uuid: Union[Unset, UUID] = UNSET,
|
|
26
26
|
description: Union[Unset, str] = UNSET,
|
|
27
|
+
has_active_terms_of_service: Union[Unset, bool] = UNSET,
|
|
28
|
+
has_terms_of_service: Union[Unset, bool] = UNSET,
|
|
27
29
|
keyword: Union[Unset, str] = UNSET,
|
|
28
30
|
modified: Union[Unset, datetime.datetime] = UNSET,
|
|
29
31
|
name: Union[Unset, str] = UNSET,
|
|
@@ -80,6 +82,10 @@ def _get_kwargs(
|
|
|
80
82
|
|
|
81
83
|
params["description"] = description
|
|
82
84
|
|
|
85
|
+
params["has_active_terms_of_service"] = has_active_terms_of_service
|
|
86
|
+
|
|
87
|
+
params["has_terms_of_service"] = has_terms_of_service
|
|
88
|
+
|
|
83
89
|
params["keyword"] = keyword
|
|
84
90
|
|
|
85
91
|
json_modified: Union[Unset, str] = UNSET
|
|
@@ -207,6 +213,8 @@ def sync_detailed(
|
|
|
207
213
|
customer: Union[Unset, str] = UNSET,
|
|
208
214
|
customer_uuid: Union[Unset, UUID] = UNSET,
|
|
209
215
|
description: Union[Unset, str] = UNSET,
|
|
216
|
+
has_active_terms_of_service: Union[Unset, bool] = UNSET,
|
|
217
|
+
has_terms_of_service: Union[Unset, bool] = UNSET,
|
|
210
218
|
keyword: Union[Unset, str] = UNSET,
|
|
211
219
|
modified: Union[Unset, datetime.datetime] = UNSET,
|
|
212
220
|
name: Union[Unset, str] = UNSET,
|
|
@@ -239,6 +247,8 @@ def sync_detailed(
|
|
|
239
247
|
customer (Union[Unset, str]):
|
|
240
248
|
customer_uuid (Union[Unset, UUID]):
|
|
241
249
|
description (Union[Unset, str]):
|
|
250
|
+
has_active_terms_of_service (Union[Unset, bool]):
|
|
251
|
+
has_terms_of_service (Union[Unset, bool]):
|
|
242
252
|
keyword (Union[Unset, str]):
|
|
243
253
|
modified (Union[Unset, datetime.datetime]):
|
|
244
254
|
name (Union[Unset, str]):
|
|
@@ -277,6 +287,8 @@ def sync_detailed(
|
|
|
277
287
|
customer=customer,
|
|
278
288
|
customer_uuid=customer_uuid,
|
|
279
289
|
description=description,
|
|
290
|
+
has_active_terms_of_service=has_active_terms_of_service,
|
|
291
|
+
has_terms_of_service=has_terms_of_service,
|
|
280
292
|
keyword=keyword,
|
|
281
293
|
modified=modified,
|
|
282
294
|
name=name,
|
|
@@ -317,6 +329,8 @@ def sync(
|
|
|
317
329
|
customer: Union[Unset, str] = UNSET,
|
|
318
330
|
customer_uuid: Union[Unset, UUID] = UNSET,
|
|
319
331
|
description: Union[Unset, str] = UNSET,
|
|
332
|
+
has_active_terms_of_service: Union[Unset, bool] = UNSET,
|
|
333
|
+
has_terms_of_service: Union[Unset, bool] = UNSET,
|
|
320
334
|
keyword: Union[Unset, str] = UNSET,
|
|
321
335
|
modified: Union[Unset, datetime.datetime] = UNSET,
|
|
322
336
|
name: Union[Unset, str] = UNSET,
|
|
@@ -349,6 +363,8 @@ def sync(
|
|
|
349
363
|
customer (Union[Unset, str]):
|
|
350
364
|
customer_uuid (Union[Unset, UUID]):
|
|
351
365
|
description (Union[Unset, str]):
|
|
366
|
+
has_active_terms_of_service (Union[Unset, bool]):
|
|
367
|
+
has_terms_of_service (Union[Unset, bool]):
|
|
352
368
|
keyword (Union[Unset, str]):
|
|
353
369
|
modified (Union[Unset, datetime.datetime]):
|
|
354
370
|
name (Union[Unset, str]):
|
|
@@ -388,6 +404,8 @@ def sync(
|
|
|
388
404
|
customer=customer,
|
|
389
405
|
customer_uuid=customer_uuid,
|
|
390
406
|
description=description,
|
|
407
|
+
has_active_terms_of_service=has_active_terms_of_service,
|
|
408
|
+
has_terms_of_service=has_terms_of_service,
|
|
391
409
|
keyword=keyword,
|
|
392
410
|
modified=modified,
|
|
393
411
|
name=name,
|
|
@@ -422,6 +440,8 @@ async def asyncio_detailed(
|
|
|
422
440
|
customer: Union[Unset, str] = UNSET,
|
|
423
441
|
customer_uuid: Union[Unset, UUID] = UNSET,
|
|
424
442
|
description: Union[Unset, str] = UNSET,
|
|
443
|
+
has_active_terms_of_service: Union[Unset, bool] = UNSET,
|
|
444
|
+
has_terms_of_service: Union[Unset, bool] = UNSET,
|
|
425
445
|
keyword: Union[Unset, str] = UNSET,
|
|
426
446
|
modified: Union[Unset, datetime.datetime] = UNSET,
|
|
427
447
|
name: Union[Unset, str] = UNSET,
|
|
@@ -454,6 +474,8 @@ async def asyncio_detailed(
|
|
|
454
474
|
customer (Union[Unset, str]):
|
|
455
475
|
customer_uuid (Union[Unset, UUID]):
|
|
456
476
|
description (Union[Unset, str]):
|
|
477
|
+
has_active_terms_of_service (Union[Unset, bool]):
|
|
478
|
+
has_terms_of_service (Union[Unset, bool]):
|
|
457
479
|
keyword (Union[Unset, str]):
|
|
458
480
|
modified (Union[Unset, datetime.datetime]):
|
|
459
481
|
name (Union[Unset, str]):
|
|
@@ -492,6 +514,8 @@ async def asyncio_detailed(
|
|
|
492
514
|
customer=customer,
|
|
493
515
|
customer_uuid=customer_uuid,
|
|
494
516
|
description=description,
|
|
517
|
+
has_active_terms_of_service=has_active_terms_of_service,
|
|
518
|
+
has_terms_of_service=has_terms_of_service,
|
|
495
519
|
keyword=keyword,
|
|
496
520
|
modified=modified,
|
|
497
521
|
name=name,
|
|
@@ -530,6 +554,8 @@ async def asyncio(
|
|
|
530
554
|
customer: Union[Unset, str] = UNSET,
|
|
531
555
|
customer_uuid: Union[Unset, UUID] = UNSET,
|
|
532
556
|
description: Union[Unset, str] = UNSET,
|
|
557
|
+
has_active_terms_of_service: Union[Unset, bool] = UNSET,
|
|
558
|
+
has_terms_of_service: Union[Unset, bool] = UNSET,
|
|
533
559
|
keyword: Union[Unset, str] = UNSET,
|
|
534
560
|
modified: Union[Unset, datetime.datetime] = UNSET,
|
|
535
561
|
name: Union[Unset, str] = UNSET,
|
|
@@ -562,6 +588,8 @@ async def asyncio(
|
|
|
562
588
|
customer (Union[Unset, str]):
|
|
563
589
|
customer_uuid (Union[Unset, UUID]):
|
|
564
590
|
description (Union[Unset, str]):
|
|
591
|
+
has_active_terms_of_service (Union[Unset, bool]):
|
|
592
|
+
has_terms_of_service (Union[Unset, bool]):
|
|
565
593
|
keyword (Union[Unset, str]):
|
|
566
594
|
modified (Union[Unset, datetime.datetime]):
|
|
567
595
|
name (Union[Unset, str]):
|
|
@@ -602,6 +630,8 @@ async def asyncio(
|
|
|
602
630
|
customer=customer,
|
|
603
631
|
customer_uuid=customer_uuid,
|
|
604
632
|
description=description,
|
|
633
|
+
has_active_terms_of_service=has_active_terms_of_service,
|
|
634
|
+
has_terms_of_service=has_terms_of_service,
|
|
605
635
|
keyword=keyword,
|
|
606
636
|
modified=modified,
|
|
607
637
|
name=name,
|
|
@@ -30,6 +30,8 @@ def _get_kwargs(
|
|
|
30
30
|
customer: Union[Unset, str] = UNSET,
|
|
31
31
|
customer_uuid: Union[Unset, UUID] = UNSET,
|
|
32
32
|
description: Union[Unset, str] = UNSET,
|
|
33
|
+
has_active_terms_of_service: Union[Unset, bool] = UNSET,
|
|
34
|
+
has_terms_of_service: Union[Unset, bool] = UNSET,
|
|
33
35
|
keyword: Union[Unset, str] = UNSET,
|
|
34
36
|
modified: Union[Unset, datetime.datetime] = UNSET,
|
|
35
37
|
name: Union[Unset, str] = UNSET,
|
|
@@ -86,6 +88,10 @@ def _get_kwargs(
|
|
|
86
88
|
|
|
87
89
|
params["description"] = description
|
|
88
90
|
|
|
91
|
+
params["has_active_terms_of_service"] = has_active_terms_of_service
|
|
92
|
+
|
|
93
|
+
params["has_terms_of_service"] = has_terms_of_service
|
|
94
|
+
|
|
89
95
|
params["keyword"] = keyword
|
|
90
96
|
|
|
91
97
|
json_modified: Union[Unset, str] = UNSET
|
|
@@ -216,6 +222,8 @@ def sync_detailed(
|
|
|
216
222
|
customer: Union[Unset, str] = UNSET,
|
|
217
223
|
customer_uuid: Union[Unset, UUID] = UNSET,
|
|
218
224
|
description: Union[Unset, str] = UNSET,
|
|
225
|
+
has_active_terms_of_service: Union[Unset, bool] = UNSET,
|
|
226
|
+
has_terms_of_service: Union[Unset, bool] = UNSET,
|
|
219
227
|
keyword: Union[Unset, str] = UNSET,
|
|
220
228
|
modified: Union[Unset, datetime.datetime] = UNSET,
|
|
221
229
|
name: Union[Unset, str] = UNSET,
|
|
@@ -249,6 +257,8 @@ def sync_detailed(
|
|
|
249
257
|
customer (Union[Unset, str]):
|
|
250
258
|
customer_uuid (Union[Unset, UUID]):
|
|
251
259
|
description (Union[Unset, str]):
|
|
260
|
+
has_active_terms_of_service (Union[Unset, bool]):
|
|
261
|
+
has_terms_of_service (Union[Unset, bool]):
|
|
252
262
|
keyword (Union[Unset, str]):
|
|
253
263
|
modified (Union[Unset, datetime.datetime]):
|
|
254
264
|
name (Union[Unset, str]):
|
|
@@ -288,6 +298,8 @@ def sync_detailed(
|
|
|
288
298
|
customer=customer,
|
|
289
299
|
customer_uuid=customer_uuid,
|
|
290
300
|
description=description,
|
|
301
|
+
has_active_terms_of_service=has_active_terms_of_service,
|
|
302
|
+
has_terms_of_service=has_terms_of_service,
|
|
291
303
|
keyword=keyword,
|
|
292
304
|
modified=modified,
|
|
293
305
|
name=name,
|
|
@@ -329,6 +341,8 @@ def sync(
|
|
|
329
341
|
customer: Union[Unset, str] = UNSET,
|
|
330
342
|
customer_uuid: Union[Unset, UUID] = UNSET,
|
|
331
343
|
description: Union[Unset, str] = UNSET,
|
|
344
|
+
has_active_terms_of_service: Union[Unset, bool] = UNSET,
|
|
345
|
+
has_terms_of_service: Union[Unset, bool] = UNSET,
|
|
332
346
|
keyword: Union[Unset, str] = UNSET,
|
|
333
347
|
modified: Union[Unset, datetime.datetime] = UNSET,
|
|
334
348
|
name: Union[Unset, str] = UNSET,
|
|
@@ -362,6 +376,8 @@ def sync(
|
|
|
362
376
|
customer (Union[Unset, str]):
|
|
363
377
|
customer_uuid (Union[Unset, UUID]):
|
|
364
378
|
description (Union[Unset, str]):
|
|
379
|
+
has_active_terms_of_service (Union[Unset, bool]):
|
|
380
|
+
has_terms_of_service (Union[Unset, bool]):
|
|
365
381
|
keyword (Union[Unset, str]):
|
|
366
382
|
modified (Union[Unset, datetime.datetime]):
|
|
367
383
|
name (Union[Unset, str]):
|
|
@@ -402,6 +418,8 @@ def sync(
|
|
|
402
418
|
customer=customer,
|
|
403
419
|
customer_uuid=customer_uuid,
|
|
404
420
|
description=description,
|
|
421
|
+
has_active_terms_of_service=has_active_terms_of_service,
|
|
422
|
+
has_terms_of_service=has_terms_of_service,
|
|
405
423
|
keyword=keyword,
|
|
406
424
|
modified=modified,
|
|
407
425
|
name=name,
|
|
@@ -437,6 +455,8 @@ async def asyncio_detailed(
|
|
|
437
455
|
customer: Union[Unset, str] = UNSET,
|
|
438
456
|
customer_uuid: Union[Unset, UUID] = UNSET,
|
|
439
457
|
description: Union[Unset, str] = UNSET,
|
|
458
|
+
has_active_terms_of_service: Union[Unset, bool] = UNSET,
|
|
459
|
+
has_terms_of_service: Union[Unset, bool] = UNSET,
|
|
440
460
|
keyword: Union[Unset, str] = UNSET,
|
|
441
461
|
modified: Union[Unset, datetime.datetime] = UNSET,
|
|
442
462
|
name: Union[Unset, str] = UNSET,
|
|
@@ -470,6 +490,8 @@ async def asyncio_detailed(
|
|
|
470
490
|
customer (Union[Unset, str]):
|
|
471
491
|
customer_uuid (Union[Unset, UUID]):
|
|
472
492
|
description (Union[Unset, str]):
|
|
493
|
+
has_active_terms_of_service (Union[Unset, bool]):
|
|
494
|
+
has_terms_of_service (Union[Unset, bool]):
|
|
473
495
|
keyword (Union[Unset, str]):
|
|
474
496
|
modified (Union[Unset, datetime.datetime]):
|
|
475
497
|
name (Union[Unset, str]):
|
|
@@ -509,6 +531,8 @@ async def asyncio_detailed(
|
|
|
509
531
|
customer=customer,
|
|
510
532
|
customer_uuid=customer_uuid,
|
|
511
533
|
description=description,
|
|
534
|
+
has_active_terms_of_service=has_active_terms_of_service,
|
|
535
|
+
has_terms_of_service=has_terms_of_service,
|
|
512
536
|
keyword=keyword,
|
|
513
537
|
modified=modified,
|
|
514
538
|
name=name,
|
|
@@ -548,6 +572,8 @@ async def asyncio(
|
|
|
548
572
|
customer: Union[Unset, str] = UNSET,
|
|
549
573
|
customer_uuid: Union[Unset, UUID] = UNSET,
|
|
550
574
|
description: Union[Unset, str] = UNSET,
|
|
575
|
+
has_active_terms_of_service: Union[Unset, bool] = UNSET,
|
|
576
|
+
has_terms_of_service: Union[Unset, bool] = UNSET,
|
|
551
577
|
keyword: Union[Unset, str] = UNSET,
|
|
552
578
|
modified: Union[Unset, datetime.datetime] = UNSET,
|
|
553
579
|
name: Union[Unset, str] = UNSET,
|
|
@@ -581,6 +607,8 @@ async def asyncio(
|
|
|
581
607
|
customer (Union[Unset, str]):
|
|
582
608
|
customer_uuid (Union[Unset, UUID]):
|
|
583
609
|
description (Union[Unset, str]):
|
|
610
|
+
has_active_terms_of_service (Union[Unset, bool]):
|
|
611
|
+
has_terms_of_service (Union[Unset, bool]):
|
|
584
612
|
keyword (Union[Unset, str]):
|
|
585
613
|
modified (Union[Unset, datetime.datetime]):
|
|
586
614
|
name (Union[Unset, str]):
|
|
@@ -622,6 +650,8 @@ async def asyncio(
|
|
|
622
650
|
customer=customer,
|
|
623
651
|
customer_uuid=customer_uuid,
|
|
624
652
|
description=description,
|
|
653
|
+
has_active_terms_of_service=has_active_terms_of_service,
|
|
654
|
+
has_terms_of_service=has_terms_of_service,
|
|
625
655
|
keyword=keyword,
|
|
626
656
|
modified=modified,
|
|
627
657
|
name=name,
|
waldur_api_client/api/marketplace_provider_offerings/marketplace_provider_offerings_groups_count.py
CHANGED
|
@@ -26,6 +26,8 @@ def _get_kwargs(
|
|
|
26
26
|
customer: Union[Unset, str] = UNSET,
|
|
27
27
|
customer_uuid: Union[Unset, UUID] = UNSET,
|
|
28
28
|
description: Union[Unset, str] = UNSET,
|
|
29
|
+
has_active_terms_of_service: Union[Unset, bool] = UNSET,
|
|
30
|
+
has_terms_of_service: Union[Unset, bool] = UNSET,
|
|
29
31
|
keyword: Union[Unset, str] = UNSET,
|
|
30
32
|
modified: Union[Unset, datetime.datetime] = UNSET,
|
|
31
33
|
name: Union[Unset, str] = UNSET,
|
|
@@ -82,6 +84,10 @@ def _get_kwargs(
|
|
|
82
84
|
|
|
83
85
|
params["description"] = description
|
|
84
86
|
|
|
87
|
+
params["has_active_terms_of_service"] = has_active_terms_of_service
|
|
88
|
+
|
|
89
|
+
params["has_terms_of_service"] = has_terms_of_service
|
|
90
|
+
|
|
85
91
|
params["keyword"] = keyword
|
|
86
92
|
|
|
87
93
|
json_modified: Union[Unset, str] = UNSET
|
|
@@ -209,6 +215,8 @@ def sync_detailed(
|
|
|
209
215
|
customer: Union[Unset, str] = UNSET,
|
|
210
216
|
customer_uuid: Union[Unset, UUID] = UNSET,
|
|
211
217
|
description: Union[Unset, str] = UNSET,
|
|
218
|
+
has_active_terms_of_service: Union[Unset, bool] = UNSET,
|
|
219
|
+
has_terms_of_service: Union[Unset, bool] = UNSET,
|
|
212
220
|
keyword: Union[Unset, str] = UNSET,
|
|
213
221
|
modified: Union[Unset, datetime.datetime] = UNSET,
|
|
214
222
|
name: Union[Unset, str] = UNSET,
|
|
@@ -241,6 +249,8 @@ def sync_detailed(
|
|
|
241
249
|
customer (Union[Unset, str]):
|
|
242
250
|
customer_uuid (Union[Unset, UUID]):
|
|
243
251
|
description (Union[Unset, str]):
|
|
252
|
+
has_active_terms_of_service (Union[Unset, bool]):
|
|
253
|
+
has_terms_of_service (Union[Unset, bool]):
|
|
244
254
|
keyword (Union[Unset, str]):
|
|
245
255
|
modified (Union[Unset, datetime.datetime]):
|
|
246
256
|
name (Union[Unset, str]):
|
|
@@ -279,6 +289,8 @@ def sync_detailed(
|
|
|
279
289
|
customer=customer,
|
|
280
290
|
customer_uuid=customer_uuid,
|
|
281
291
|
description=description,
|
|
292
|
+
has_active_terms_of_service=has_active_terms_of_service,
|
|
293
|
+
has_terms_of_service=has_terms_of_service,
|
|
282
294
|
keyword=keyword,
|
|
283
295
|
modified=modified,
|
|
284
296
|
name=name,
|
|
@@ -319,6 +331,8 @@ def sync(
|
|
|
319
331
|
customer: Union[Unset, str] = UNSET,
|
|
320
332
|
customer_uuid: Union[Unset, UUID] = UNSET,
|
|
321
333
|
description: Union[Unset, str] = UNSET,
|
|
334
|
+
has_active_terms_of_service: Union[Unset, bool] = UNSET,
|
|
335
|
+
has_terms_of_service: Union[Unset, bool] = UNSET,
|
|
322
336
|
keyword: Union[Unset, str] = UNSET,
|
|
323
337
|
modified: Union[Unset, datetime.datetime] = UNSET,
|
|
324
338
|
name: Union[Unset, str] = UNSET,
|
|
@@ -351,6 +365,8 @@ def sync(
|
|
|
351
365
|
customer (Union[Unset, str]):
|
|
352
366
|
customer_uuid (Union[Unset, UUID]):
|
|
353
367
|
description (Union[Unset, str]):
|
|
368
|
+
has_active_terms_of_service (Union[Unset, bool]):
|
|
369
|
+
has_terms_of_service (Union[Unset, bool]):
|
|
354
370
|
keyword (Union[Unset, str]):
|
|
355
371
|
modified (Union[Unset, datetime.datetime]):
|
|
356
372
|
name (Union[Unset, str]):
|
|
@@ -390,6 +406,8 @@ def sync(
|
|
|
390
406
|
customer=customer,
|
|
391
407
|
customer_uuid=customer_uuid,
|
|
392
408
|
description=description,
|
|
409
|
+
has_active_terms_of_service=has_active_terms_of_service,
|
|
410
|
+
has_terms_of_service=has_terms_of_service,
|
|
393
411
|
keyword=keyword,
|
|
394
412
|
modified=modified,
|
|
395
413
|
name=name,
|
|
@@ -424,6 +442,8 @@ async def asyncio_detailed(
|
|
|
424
442
|
customer: Union[Unset, str] = UNSET,
|
|
425
443
|
customer_uuid: Union[Unset, UUID] = UNSET,
|
|
426
444
|
description: Union[Unset, str] = UNSET,
|
|
445
|
+
has_active_terms_of_service: Union[Unset, bool] = UNSET,
|
|
446
|
+
has_terms_of_service: Union[Unset, bool] = UNSET,
|
|
427
447
|
keyword: Union[Unset, str] = UNSET,
|
|
428
448
|
modified: Union[Unset, datetime.datetime] = UNSET,
|
|
429
449
|
name: Union[Unset, str] = UNSET,
|
|
@@ -456,6 +476,8 @@ async def asyncio_detailed(
|
|
|
456
476
|
customer (Union[Unset, str]):
|
|
457
477
|
customer_uuid (Union[Unset, UUID]):
|
|
458
478
|
description (Union[Unset, str]):
|
|
479
|
+
has_active_terms_of_service (Union[Unset, bool]):
|
|
480
|
+
has_terms_of_service (Union[Unset, bool]):
|
|
459
481
|
keyword (Union[Unset, str]):
|
|
460
482
|
modified (Union[Unset, datetime.datetime]):
|
|
461
483
|
name (Union[Unset, str]):
|
|
@@ -494,6 +516,8 @@ async def asyncio_detailed(
|
|
|
494
516
|
customer=customer,
|
|
495
517
|
customer_uuid=customer_uuid,
|
|
496
518
|
description=description,
|
|
519
|
+
has_active_terms_of_service=has_active_terms_of_service,
|
|
520
|
+
has_terms_of_service=has_terms_of_service,
|
|
497
521
|
keyword=keyword,
|
|
498
522
|
modified=modified,
|
|
499
523
|
name=name,
|
|
@@ -532,6 +556,8 @@ async def asyncio(
|
|
|
532
556
|
customer: Union[Unset, str] = UNSET,
|
|
533
557
|
customer_uuid: Union[Unset, UUID] = UNSET,
|
|
534
558
|
description: Union[Unset, str] = UNSET,
|
|
559
|
+
has_active_terms_of_service: Union[Unset, bool] = UNSET,
|
|
560
|
+
has_terms_of_service: Union[Unset, bool] = UNSET,
|
|
535
561
|
keyword: Union[Unset, str] = UNSET,
|
|
536
562
|
modified: Union[Unset, datetime.datetime] = UNSET,
|
|
537
563
|
name: Union[Unset, str] = UNSET,
|
|
@@ -564,6 +590,8 @@ async def asyncio(
|
|
|
564
590
|
customer (Union[Unset, str]):
|
|
565
591
|
customer_uuid (Union[Unset, UUID]):
|
|
566
592
|
description (Union[Unset, str]):
|
|
593
|
+
has_active_terms_of_service (Union[Unset, bool]):
|
|
594
|
+
has_terms_of_service (Union[Unset, bool]):
|
|
567
595
|
keyword (Union[Unset, str]):
|
|
568
596
|
modified (Union[Unset, datetime.datetime]):
|
|
569
597
|
name (Union[Unset, str]):
|
|
@@ -604,6 +632,8 @@ async def asyncio(
|
|
|
604
632
|
customer=customer,
|
|
605
633
|
customer_uuid=customer_uuid,
|
|
606
634
|
description=description,
|
|
635
|
+
has_active_terms_of_service=has_active_terms_of_service,
|
|
636
|
+
has_terms_of_service=has_terms_of_service,
|
|
607
637
|
keyword=keyword,
|
|
608
638
|
modified=modified,
|
|
609
639
|
name=name,
|
waldur_api_client/api/marketplace_provider_offerings/marketplace_provider_offerings_groups_list.py
CHANGED
|
@@ -27,6 +27,8 @@ def _get_kwargs(
|
|
|
27
27
|
customer: Union[Unset, str] = UNSET,
|
|
28
28
|
customer_uuid: Union[Unset, UUID] = UNSET,
|
|
29
29
|
description: Union[Unset, str] = UNSET,
|
|
30
|
+
has_active_terms_of_service: Union[Unset, bool] = UNSET,
|
|
31
|
+
has_terms_of_service: Union[Unset, bool] = UNSET,
|
|
30
32
|
keyword: Union[Unset, str] = UNSET,
|
|
31
33
|
modified: Union[Unset, datetime.datetime] = UNSET,
|
|
32
34
|
name: Union[Unset, str] = UNSET,
|
|
@@ -83,6 +85,10 @@ def _get_kwargs(
|
|
|
83
85
|
|
|
84
86
|
params["description"] = description
|
|
85
87
|
|
|
88
|
+
params["has_active_terms_of_service"] = has_active_terms_of_service
|
|
89
|
+
|
|
90
|
+
params["has_terms_of_service"] = has_terms_of_service
|
|
91
|
+
|
|
86
92
|
params["keyword"] = keyword
|
|
87
93
|
|
|
88
94
|
json_modified: Union[Unset, str] = UNSET
|
|
@@ -210,6 +216,8 @@ def sync_detailed(
|
|
|
210
216
|
customer: Union[Unset, str] = UNSET,
|
|
211
217
|
customer_uuid: Union[Unset, UUID] = UNSET,
|
|
212
218
|
description: Union[Unset, str] = UNSET,
|
|
219
|
+
has_active_terms_of_service: Union[Unset, bool] = UNSET,
|
|
220
|
+
has_terms_of_service: Union[Unset, bool] = UNSET,
|
|
213
221
|
keyword: Union[Unset, str] = UNSET,
|
|
214
222
|
modified: Union[Unset, datetime.datetime] = UNSET,
|
|
215
223
|
name: Union[Unset, str] = UNSET,
|
|
@@ -241,6 +249,8 @@ def sync_detailed(
|
|
|
241
249
|
customer (Union[Unset, str]):
|
|
242
250
|
customer_uuid (Union[Unset, UUID]):
|
|
243
251
|
description (Union[Unset, str]):
|
|
252
|
+
has_active_terms_of_service (Union[Unset, bool]):
|
|
253
|
+
has_terms_of_service (Union[Unset, bool]):
|
|
244
254
|
keyword (Union[Unset, str]):
|
|
245
255
|
modified (Union[Unset, datetime.datetime]):
|
|
246
256
|
name (Union[Unset, str]):
|
|
@@ -279,6 +289,8 @@ def sync_detailed(
|
|
|
279
289
|
customer=customer,
|
|
280
290
|
customer_uuid=customer_uuid,
|
|
281
291
|
description=description,
|
|
292
|
+
has_active_terms_of_service=has_active_terms_of_service,
|
|
293
|
+
has_terms_of_service=has_terms_of_service,
|
|
282
294
|
keyword=keyword,
|
|
283
295
|
modified=modified,
|
|
284
296
|
name=name,
|
|
@@ -319,6 +331,8 @@ def sync(
|
|
|
319
331
|
customer: Union[Unset, str] = UNSET,
|
|
320
332
|
customer_uuid: Union[Unset, UUID] = UNSET,
|
|
321
333
|
description: Union[Unset, str] = UNSET,
|
|
334
|
+
has_active_terms_of_service: Union[Unset, bool] = UNSET,
|
|
335
|
+
has_terms_of_service: Union[Unset, bool] = UNSET,
|
|
322
336
|
keyword: Union[Unset, str] = UNSET,
|
|
323
337
|
modified: Union[Unset, datetime.datetime] = UNSET,
|
|
324
338
|
name: Union[Unset, str] = UNSET,
|
|
@@ -350,6 +364,8 @@ def sync(
|
|
|
350
364
|
customer (Union[Unset, str]):
|
|
351
365
|
customer_uuid (Union[Unset, UUID]):
|
|
352
366
|
description (Union[Unset, str]):
|
|
367
|
+
has_active_terms_of_service (Union[Unset, bool]):
|
|
368
|
+
has_terms_of_service (Union[Unset, bool]):
|
|
353
369
|
keyword (Union[Unset, str]):
|
|
354
370
|
modified (Union[Unset, datetime.datetime]):
|
|
355
371
|
name (Union[Unset, str]):
|
|
@@ -389,6 +405,8 @@ def sync(
|
|
|
389
405
|
customer=customer,
|
|
390
406
|
customer_uuid=customer_uuid,
|
|
391
407
|
description=description,
|
|
408
|
+
has_active_terms_of_service=has_active_terms_of_service,
|
|
409
|
+
has_terms_of_service=has_terms_of_service,
|
|
392
410
|
keyword=keyword,
|
|
393
411
|
modified=modified,
|
|
394
412
|
name=name,
|
|
@@ -423,6 +441,8 @@ async def asyncio_detailed(
|
|
|
423
441
|
customer: Union[Unset, str] = UNSET,
|
|
424
442
|
customer_uuid: Union[Unset, UUID] = UNSET,
|
|
425
443
|
description: Union[Unset, str] = UNSET,
|
|
444
|
+
has_active_terms_of_service: Union[Unset, bool] = UNSET,
|
|
445
|
+
has_terms_of_service: Union[Unset, bool] = UNSET,
|
|
426
446
|
keyword: Union[Unset, str] = UNSET,
|
|
427
447
|
modified: Union[Unset, datetime.datetime] = UNSET,
|
|
428
448
|
name: Union[Unset, str] = UNSET,
|
|
@@ -454,6 +474,8 @@ async def asyncio_detailed(
|
|
|
454
474
|
customer (Union[Unset, str]):
|
|
455
475
|
customer_uuid (Union[Unset, UUID]):
|
|
456
476
|
description (Union[Unset, str]):
|
|
477
|
+
has_active_terms_of_service (Union[Unset, bool]):
|
|
478
|
+
has_terms_of_service (Union[Unset, bool]):
|
|
457
479
|
keyword (Union[Unset, str]):
|
|
458
480
|
modified (Union[Unset, datetime.datetime]):
|
|
459
481
|
name (Union[Unset, str]):
|
|
@@ -492,6 +514,8 @@ async def asyncio_detailed(
|
|
|
492
514
|
customer=customer,
|
|
493
515
|
customer_uuid=customer_uuid,
|
|
494
516
|
description=description,
|
|
517
|
+
has_active_terms_of_service=has_active_terms_of_service,
|
|
518
|
+
has_terms_of_service=has_terms_of_service,
|
|
495
519
|
keyword=keyword,
|
|
496
520
|
modified=modified,
|
|
497
521
|
name=name,
|
|
@@ -530,6 +554,8 @@ async def asyncio(
|
|
|
530
554
|
customer: Union[Unset, str] = UNSET,
|
|
531
555
|
customer_uuid: Union[Unset, UUID] = UNSET,
|
|
532
556
|
description: Union[Unset, str] = UNSET,
|
|
557
|
+
has_active_terms_of_service: Union[Unset, bool] = UNSET,
|
|
558
|
+
has_terms_of_service: Union[Unset, bool] = UNSET,
|
|
533
559
|
keyword: Union[Unset, str] = UNSET,
|
|
534
560
|
modified: Union[Unset, datetime.datetime] = UNSET,
|
|
535
561
|
name: Union[Unset, str] = UNSET,
|
|
@@ -561,6 +587,8 @@ async def asyncio(
|
|
|
561
587
|
customer (Union[Unset, str]):
|
|
562
588
|
customer_uuid (Union[Unset, UUID]):
|
|
563
589
|
description (Union[Unset, str]):
|
|
590
|
+
has_active_terms_of_service (Union[Unset, bool]):
|
|
591
|
+
has_terms_of_service (Union[Unset, bool]):
|
|
564
592
|
keyword (Union[Unset, str]):
|
|
565
593
|
modified (Union[Unset, datetime.datetime]):
|
|
566
594
|
name (Union[Unset, str]):
|
|
@@ -601,6 +629,8 @@ async def asyncio(
|
|
|
601
629
|
customer=customer,
|
|
602
630
|
customer_uuid=customer_uuid,
|
|
603
631
|
description=description,
|
|
632
|
+
has_active_terms_of_service=has_active_terms_of_service,
|
|
633
|
+
has_terms_of_service=has_terms_of_service,
|
|
604
634
|
keyword=keyword,
|
|
605
635
|
modified=modified,
|
|
606
636
|
name=name,
|
|
@@ -27,6 +27,8 @@ def _get_kwargs(
|
|
|
27
27
|
customer_uuid: Union[Unset, UUID] = UNSET,
|
|
28
28
|
description: Union[Unset, str] = UNSET,
|
|
29
29
|
field: Union[Unset, list[MarketplaceProviderOfferingsListFieldItem]] = UNSET,
|
|
30
|
+
has_active_terms_of_service: Union[Unset, bool] = UNSET,
|
|
31
|
+
has_terms_of_service: Union[Unset, bool] = UNSET,
|
|
30
32
|
keyword: Union[Unset, str] = UNSET,
|
|
31
33
|
modified: Union[Unset, datetime.datetime] = UNSET,
|
|
32
34
|
name: Union[Unset, str] = UNSET,
|
|
@@ -92,6 +94,10 @@ def _get_kwargs(
|
|
|
92
94
|
|
|
93
95
|
params["field"] = json_field
|
|
94
96
|
|
|
97
|
+
params["has_active_terms_of_service"] = has_active_terms_of_service
|
|
98
|
+
|
|
99
|
+
params["has_terms_of_service"] = has_terms_of_service
|
|
100
|
+
|
|
95
101
|
params["keyword"] = keyword
|
|
96
102
|
|
|
97
103
|
json_modified: Union[Unset, str] = UNSET
|
|
@@ -222,6 +228,8 @@ def sync_detailed(
|
|
|
222
228
|
customer_uuid: Union[Unset, UUID] = UNSET,
|
|
223
229
|
description: Union[Unset, str] = UNSET,
|
|
224
230
|
field: Union[Unset, list[MarketplaceProviderOfferingsListFieldItem]] = UNSET,
|
|
231
|
+
has_active_terms_of_service: Union[Unset, bool] = UNSET,
|
|
232
|
+
has_terms_of_service: Union[Unset, bool] = UNSET,
|
|
225
233
|
keyword: Union[Unset, str] = UNSET,
|
|
226
234
|
modified: Union[Unset, datetime.datetime] = UNSET,
|
|
227
235
|
name: Union[Unset, str] = UNSET,
|
|
@@ -255,6 +263,8 @@ def sync_detailed(
|
|
|
255
263
|
customer_uuid (Union[Unset, UUID]):
|
|
256
264
|
description (Union[Unset, str]):
|
|
257
265
|
field (Union[Unset, list[MarketplaceProviderOfferingsListFieldItem]]):
|
|
266
|
+
has_active_terms_of_service (Union[Unset, bool]):
|
|
267
|
+
has_terms_of_service (Union[Unset, bool]):
|
|
258
268
|
keyword (Union[Unset, str]):
|
|
259
269
|
modified (Union[Unset, datetime.datetime]):
|
|
260
270
|
name (Union[Unset, str]):
|
|
@@ -294,6 +304,8 @@ def sync_detailed(
|
|
|
294
304
|
customer_uuid=customer_uuid,
|
|
295
305
|
description=description,
|
|
296
306
|
field=field,
|
|
307
|
+
has_active_terms_of_service=has_active_terms_of_service,
|
|
308
|
+
has_terms_of_service=has_terms_of_service,
|
|
297
309
|
keyword=keyword,
|
|
298
310
|
modified=modified,
|
|
299
311
|
name=name,
|
|
@@ -335,6 +347,8 @@ def sync(
|
|
|
335
347
|
customer_uuid: Union[Unset, UUID] = UNSET,
|
|
336
348
|
description: Union[Unset, str] = UNSET,
|
|
337
349
|
field: Union[Unset, list[MarketplaceProviderOfferingsListFieldItem]] = UNSET,
|
|
350
|
+
has_active_terms_of_service: Union[Unset, bool] = UNSET,
|
|
351
|
+
has_terms_of_service: Union[Unset, bool] = UNSET,
|
|
338
352
|
keyword: Union[Unset, str] = UNSET,
|
|
339
353
|
modified: Union[Unset, datetime.datetime] = UNSET,
|
|
340
354
|
name: Union[Unset, str] = UNSET,
|
|
@@ -368,6 +382,8 @@ def sync(
|
|
|
368
382
|
customer_uuid (Union[Unset, UUID]):
|
|
369
383
|
description (Union[Unset, str]):
|
|
370
384
|
field (Union[Unset, list[MarketplaceProviderOfferingsListFieldItem]]):
|
|
385
|
+
has_active_terms_of_service (Union[Unset, bool]):
|
|
386
|
+
has_terms_of_service (Union[Unset, bool]):
|
|
371
387
|
keyword (Union[Unset, str]):
|
|
372
388
|
modified (Union[Unset, datetime.datetime]):
|
|
373
389
|
name (Union[Unset, str]):
|
|
@@ -408,6 +424,8 @@ def sync(
|
|
|
408
424
|
customer_uuid=customer_uuid,
|
|
409
425
|
description=description,
|
|
410
426
|
field=field,
|
|
427
|
+
has_active_terms_of_service=has_active_terms_of_service,
|
|
428
|
+
has_terms_of_service=has_terms_of_service,
|
|
411
429
|
keyword=keyword,
|
|
412
430
|
modified=modified,
|
|
413
431
|
name=name,
|
|
@@ -443,6 +461,8 @@ async def asyncio_detailed(
|
|
|
443
461
|
customer_uuid: Union[Unset, UUID] = UNSET,
|
|
444
462
|
description: Union[Unset, str] = UNSET,
|
|
445
463
|
field: Union[Unset, list[MarketplaceProviderOfferingsListFieldItem]] = UNSET,
|
|
464
|
+
has_active_terms_of_service: Union[Unset, bool] = UNSET,
|
|
465
|
+
has_terms_of_service: Union[Unset, bool] = UNSET,
|
|
446
466
|
keyword: Union[Unset, str] = UNSET,
|
|
447
467
|
modified: Union[Unset, datetime.datetime] = UNSET,
|
|
448
468
|
name: Union[Unset, str] = UNSET,
|
|
@@ -476,6 +496,8 @@ async def asyncio_detailed(
|
|
|
476
496
|
customer_uuid (Union[Unset, UUID]):
|
|
477
497
|
description (Union[Unset, str]):
|
|
478
498
|
field (Union[Unset, list[MarketplaceProviderOfferingsListFieldItem]]):
|
|
499
|
+
has_active_terms_of_service (Union[Unset, bool]):
|
|
500
|
+
has_terms_of_service (Union[Unset, bool]):
|
|
479
501
|
keyword (Union[Unset, str]):
|
|
480
502
|
modified (Union[Unset, datetime.datetime]):
|
|
481
503
|
name (Union[Unset, str]):
|
|
@@ -515,6 +537,8 @@ async def asyncio_detailed(
|
|
|
515
537
|
customer_uuid=customer_uuid,
|
|
516
538
|
description=description,
|
|
517
539
|
field=field,
|
|
540
|
+
has_active_terms_of_service=has_active_terms_of_service,
|
|
541
|
+
has_terms_of_service=has_terms_of_service,
|
|
518
542
|
keyword=keyword,
|
|
519
543
|
modified=modified,
|
|
520
544
|
name=name,
|
|
@@ -554,6 +578,8 @@ async def asyncio(
|
|
|
554
578
|
customer_uuid: Union[Unset, UUID] = UNSET,
|
|
555
579
|
description: Union[Unset, str] = UNSET,
|
|
556
580
|
field: Union[Unset, list[MarketplaceProviderOfferingsListFieldItem]] = UNSET,
|
|
581
|
+
has_active_terms_of_service: Union[Unset, bool] = UNSET,
|
|
582
|
+
has_terms_of_service: Union[Unset, bool] = UNSET,
|
|
557
583
|
keyword: Union[Unset, str] = UNSET,
|
|
558
584
|
modified: Union[Unset, datetime.datetime] = UNSET,
|
|
559
585
|
name: Union[Unset, str] = UNSET,
|
|
@@ -587,6 +613,8 @@ async def asyncio(
|
|
|
587
613
|
customer_uuid (Union[Unset, UUID]):
|
|
588
614
|
description (Union[Unset, str]):
|
|
589
615
|
field (Union[Unset, list[MarketplaceProviderOfferingsListFieldItem]]):
|
|
616
|
+
has_active_terms_of_service (Union[Unset, bool]):
|
|
617
|
+
has_terms_of_service (Union[Unset, bool]):
|
|
590
618
|
keyword (Union[Unset, str]):
|
|
591
619
|
modified (Union[Unset, datetime.datetime]):
|
|
592
620
|
name (Union[Unset, str]):
|
|
@@ -628,6 +656,8 @@ async def asyncio(
|
|
|
628
656
|
customer_uuid=customer_uuid,
|
|
629
657
|
description=description,
|
|
630
658
|
field=field,
|
|
659
|
+
has_active_terms_of_service=has_active_terms_of_service,
|
|
660
|
+
has_terms_of_service=has_terms_of_service,
|
|
631
661
|
keyword=keyword,
|
|
632
662
|
modified=modified,
|
|
633
663
|
name=name,
|